.cookie_alert_wrapper{
  left: 0;
  width: 100%;
  position: fixed;
  transition: all .8s cubic-bezier(.85,.07,.64,.76);
  z-index: 1500;
  transform: translateY(100%);
  bottom: 0;
  opacity: 0;
  visibility: hidden;
}

.cookie_alert_wrapper.active{
   transform: translateY(0%); 
   bottom: 20px;
   opacity: 1;
   visibility: visible;
}
.cookie_alert{
    background: #fff;
    box-shadow: 0 2px 9px rgba(0,0,0,.15);
    border-radius: 12px;
    margin: 0 auto;
    max-width: 740px;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    color: #032542;
    align-items: center;
}
.cookie_alert a:hover{
    text-decoration: none;
}
.cookie_alert .field--name-body{
    font-size: 12px;
}
.cookie_alert .btn{
    font-size: 15px;
    padding: 14px 25px;
    min-width: 127px;
}
.cookie_alert .btn-default:hover{
    color: #032542;
}
.cookie_alert p{
    margin-bottom: 0;
}
.close-zone{
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40px;
}
.close-zone .close-el{
    width: 38px;
    height: 4px;
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translate(-50%);
    background: #dddde1;
    border-radius: 2px;
}
@media screen and (max-width: 767px) {
    .close-zone{
        display: block;
    }
    .cookie_alert_wrapper{
        transform: translateY(0%);
    }
    .cookie_alert_wrapper.active{
        bottom: 0;
    }
    /* .cookie_alert_wrapper:after{
        content:'';
        background: rgba(75,75,79,.5);
        position: absolute;
        width: 100vw;
        height: 100vh;
        bottom: 0;
        left: 0;
        z-index: -1;
    } */
    .cookie_alert{
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
        padding: 32px 15px 15px;
    }
    .cookie_alert_wrapper .btn{
        z-index: 5;
        position: relative;
    }
}
@media screen and (max-width: 480px) {
    .cookie_alert{
        display: block;
    }
    .cookie_alert .group-right{
        margin-top: 10px;
    }
    .cookie_alert .group-right .btn{
        width: 100%;
        font-size: 14px;
        padding: 11px 25px;
    }
}