.cookie-notification {
    position: fixed;
    bottom: 20px;
    left: 50%;
    right: 50%;
    transform: translateX(-50%);
    z-index: 99999;
    width: 100%;
    max-width: 750px;
}

@media (max-width:768px) {
    .cookie-notification {
        margin: 0 20px;
        left: auto;
        right: auto;
        width: inherit;
        transform: inherit;
    }
}
.cookie-notification--hidden {
    display: none
}
.cookie-notification__container {
    background: rgba(255,255,255,.95);
    border-radius: 12px;
    -webkit-box-shadow: 0 8px 32px rgba(0,0,0,.1);
    box-shadow: 0 8px 32px rgba(0,0,0,.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.2);
    position: relative;
    padding: 24px;
    -webkit-animation: slideUpCookie .3s ease-out;
    animation: slideUpCookie .3s ease-out
}
@media (max-width:576px) {
    .cookie-notification__container{
        padding: 12px;
    }
}
.cookie-notification__close {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 32px;
    height: 32px;
    background: 0 0;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap
}
@media (max-width:576px) {
    .cookie-notification__close{
        display: none;
    }
}
.cookie-notification__close-icon {
    font-size: 24px;
    line-height: 1;
    color: #343a40;
    display: block;
    -webkit-transition: color .3s ease;
    transition: color .3s ease
}
.cookie-notification__content {
    padding-right: 16px
}
@media (max-width:576px) {
    .cookie-notification__content{
        padding-right: 0;
    }
}
.cookie-notification__text {
    font-size: 12px;
    color: #343a40;
    margin: 0 0 16px 0;
    line-height: 1.5
}
@media (max-width:576px) {
    .cookie-notification__text {
        font-size: 10px;
    }
}
.cookie-notification__link {
    color: #343a40;
    text-decoration: underline;
    -webkit-transition: color .3s ease;
    transition: color .3s ease
}
.cookie-notification__link:hover {
    color: #004a99
}
.cookie-notification__actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 12px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}
@media (max-width:576px) {
    .cookie-notification__actions {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
}
.cookie-notification__button {
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 400;
    font-size: 15px;
    cursor: pointer;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    border: 1px solid transparent;
    white-space: nowrap
}
@media (max-width:576px) {
    .cookie-notification__button {
        font-size: 12px;
    }
}
.cookie-notification__button--primary {
    background-color: #004a99;
    color: #fff;
    border-color: #004a99
}
.cookie-notification__button--primary:hover {
    -webkit-transform: translateY(-1px);
    transform: translateY(-1px)
}
.cookie-notification__button--primary:active {
    -webkit-transform: translateY(0);
    transform: translateY(0)
}
.cookie-notification__button--secondary {
    background-color: transparent;
    color: #343a40;
    border-color: #e9ecef
}
@media (max-width:576px) {
    .cookie-notification__button--secondary{
        display: none;
    }
}
.cookie-notification__button--secondary:hover {
    background-color: #f8f9fa;
    border-color: #ced4da
}
.cookie-notification__close:hover .cookie-notification__close-icon {
    color: #ee312c
}
@-webkit-keyframes slideUpCookie {
    from {
        opacity: 0;
        -webkit-transform: translateY(32px);
        transform: translateY(32px)
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}
@keyframes slideUpCookie {
    from {
        opacity: 0;
        -webkit-transform: translateY(32px);
        transform: translateY(32px)
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}
.cookie-notification--hiding {
    -webkit-animation: slideDownCookie .3s ease-in forwards;
    animation: slideDownCookie .3s ease-in forwards
}
@-webkit-keyframes slideDownCookie {
    from {
        opacity: 1;
        -webkit-transform: translate(-50%, 0);
        transform: translate(-50%, 0);
    }
    to {
        opacity: 0;
        -webkit-transform: translate(-50%, 32px);
        transform: translate(-50%, 32px)
    }
}
@keyframes slideDownCookie {
    from {
        opacity: 1;
        -webkit-transform: translate(-50%, 0);
        transform: translate(-50%, 0)
    }
    to {
        opacity: 0;
        -webkit-transform: translate(-50%, 32px);
        transform: translate(-50%, 32px)
    }
}
@media (max-width: 768px) {
    .cookie-notification--hiding {
        -webkit-animation: slideDownCookieMobile .3s ease-in forwards;
        animation: slideDownCookieMobile .3s ease-in forwards;
    }
}

@media (max-width: 768px) {
    @-webkit-keyframes slideDownCookieMobile {
        from {
            opacity: 1;
            -webkit-transform: translateY(0);
            transform: translateY(0);
        }
        to {
            opacity: 0;
            -webkit-transform: translateY(32px);
            transform: translateY(32px);
        }
    }

    @keyframes slideDownCookieMobile {
        from {
            opacity: 1;
            -webkit-transform: translateY(0);
            transform: translateY(0);
        }
        to {
            opacity: 0;
            -webkit-transform: translateY(32px);
            transform: translateY(32px);
        }
    }
}
