.cookie_alert{
    display: flex;
    position: fixed;
    bottom: 0;
    width: 100%;
    min-height: 80px;
    height: auto;
    background-color: rgba(0,0,0,0.75);
    z-index: 999;
}

.alert_content{
    padding: 0 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;   
}

.cookie_choose{
    display: flex;
}

.alert_confirm{
    margin-right: 30px;
}

.cookie_confirm_button{
    background-color: #5C9AE3;
    color: #fff;
    border-radius: 2px!important;
    border: 1px solid #5C9AE3;
    width: 80px;
    height: 37px;
    cursor: pointer;
}

.cookie_close_button{
    border: none;
    background: none;
}

.cookie_close_button > i{
    font-size: 2rem!important;
    color: rgb(100,100,130);
}

.alert_text{
    color: white;
    margin-top: 1rem;
    font-size: 13px;
    padding-right: 30px;
}

.alert_close{
    position: absolute;
    right: 20px;
    top: 10px;
}

@media (max-width:700px) {
  .alert_content{
    padding: 0 10px;
  }

  .alert_text{
    font-size: 11px;
    padding-right: 9px;
  }

  .alert_confirm{
    margin-right: 0;
  }

  .alert_close{
    right: 0;
  }
}