.cookie-notification {
    display: none;
    position: fixed;
    bottom: 14vh;
    right: 2vw;
    background: #fff;
    padding: 25px;
    box-shadow: 0px 0px 20px -5px;
    z-index: 100;
    align-items: flex-start;
    width: calc(100% - 4vw);
}

.cookie-notification.show {
    display: flex !important;
}

.cookie-notification__description {
    margin-right: 30px;
}

.cookie-notification__text {
    margin: 0 0 5px;
}

.cookie-notification__cookie-policy-link {
    border: unset;
    background: unset;
    color: #ee4a52;
    font-weight: bold;
    padding: 0;
    transition: all .3s ease;
}

.cookie-notification__cookie-policy-link:hover {
    color: #f2797f;
    text-decoration: unset;
}

.cookie-notification__accept-btn {
    background: #ee4a52;
    border: unset;
    padding: 10px 35px;
    color: #fff;
    font-weight: bold;
    transition: all .3s ease;
}

.cookie-notification__accept-btn:hover {
    background: #f2797f;
}

/* @media(max-width: 840px) {
    .cookie-notification {
        flex-direction: column;
        bottom: 25vh;
    }

    .cookie-notification__description {
        margin: 0 0 15px 0;
    }

    .cookie-notification__accept-btn {
        width: 100%;
    }
} */

/* 18.06.25 */

.cookie-notification {
    padding: 20px 30px;
    max-width: 500px;
    left: 50%;
    bottom: 50px;
    right: auto;
    justify-content: space-between;
    gap: 10px 20px;
    align-items: center;
    box-shadow: 0px 0px 40px 0 #33333347;
    font-size: 14px;
    transform: translateX(-50%);
}

.cookie-notification p {
    margin: 0;
}

.cookie-notification button {
    padding: 5px 15px !important;
    background-color: transparent;
    border: 1px solid #ee4a52;
    color: #2d2d2d;
    white-space: nowrap;
    line-height: 120%;
    transition: all .3s;
}

.cookie-notification button:hover {
    background-color: #ee4a52;
    color: white;
}

@media screen and (max-width: 767px) {
    .cookie-notification {
        width: 100%;
        max-width: 100%;
        font-size: 12px;
        bottom: 0px;
        left: 0;
        transform: translateX(0%);
    }
}