/*.cookies-notification {*/
/*    position: fixed;*/
/*    top: 50%;*/
/*    left: 50%;*/
/*    transform: translate(-50%, -50%); !* Центрирование *!*/
/*    width: 90%;*/
/*    max-width: 300px; !* Ограничение ширины на больших экранах *!*/
/*    !*padding: 20px;*!*/
/*    background: none;*/
/*    border-radius: 8px;*/
/*    box-shadow: none;*/
/*    z-index: 1000; !* Должен быть выше других элементов *!*/
/*    text-align: center;*/
/*    max-height: 80%;*/
/*}*/
.cookies-notification {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    background: #6d904de6;
    border-radius: 8px;
    box-shadow: none;
    z-index: 1000;
    text-align: center;
    max-height: 100%;
    justify-content: center;
    height: 100%;
    justify-content: center;
    align-items: center;
}

.cookies-notification .a_banner_popup img {
    width: 300px;
}

.cookies-notice__text {
    flex: 1;
    margin-right: 15px;
    font-size: 14px;
    line-height: 1.4;
}

.cookies-notification a {
    color: #6d904d;
}

.cookies-notification a:hover {
    text-decoration: underline;
}

.cookies-notice__button {
    background: #6d904d;
    color: white;
    border: none;
    padding: 8px 20px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s ease;
    white-space: nowrap;
    border: 1px solid #6d904d;
}

.cookies-notice__button:hover {
    background: #fff;
    color: #6d904d;
}

.a_banner_popup {
    position: relative;
}

.a_banner_popup .popup-modal-close {
    position: absolute;
    right: 0;
    top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 2rem;
    color: #6d904d;
    background: transparent;
    -webkit-transition: 0.3s linear;
    transition: 0.3s linear;
    z-index: 2;
}

.a_banner_popup .popup-modal-close:hover {
    background: #6d904d;
}

.a_banner_popup .popup-modal-close svg {
    stroke: #424242;
}

/* Мобильная адаптация */
@media (max-width: 768px) {
    .cookies-notification {
        flex-direction: column;
        text-align: center;
        padding: 15px;
        max-width: 100%;
        border-radius: 0;
        bottom: 0;
    }

    .cookies-notice__text {
        margin-right: 0;
        margin-bottom: 12px;
    }

    .cookies-notice__button {
        width: 100%;
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .cookies-notification {
        font-size: 13px;
        /*height: fit-content;*/
    }
}