﻿/* COOKIE BANNER */
.cookie-banner {
    position: fixed;
    left: auto;
    right: 20px;
    bottom: 24px;
    z-index: 1200;
    display: block;
    pointer-events: none;
}
.cookie-banner[hidden] {
    display: none;
}
.cookie-banner__inner {
    position: relative;
    width: min(420px, calc(100vw - 40px));
    padding: 14px 46px 14px 16px;
    border: 1px solid rgba(41, 40, 38, 0.12);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(18px);
    pointer-events: auto;
}
.cookie-banner__title {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.2;
}
.cookie-banner__text {
    margin-top: 6px;
    max-width: none;
    font-size: 13px;
    line-height: 1.35;
    color: rgba(41, 40, 38, 0.82);
}
.cookie-banner__accept {
    margin-top: 10px;
    min-width: 140px;
    padding: 10px 18px;
    font-size: 15px;
    border-radius: 12px;
}
.cookie-banner__close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 28px;
    height: 28px;
    border: 0;
    border-radius: 10px;
    background: transparent;
    color: #292826;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
}
.cookie-banner__close:hover {
    background: rgba(41, 40, 38, 0.06);
}

@media (max-width: 767px) {
    .cookie-banner {
        left: auto;
        right: 12px;
        bottom: 12px;
    }
    .cookie-banner__inner {
        width: min(360px, calc(100vw - 24px));
        padding: 14px 38px 14px 14px;
        border-radius: 14px;
    }
    .cookie-banner__title {
        padding-right: 24px;
        font-size: 15px;
    }
    .cookie-banner__text {
        margin-top: 6px;
        font-size: 12px;
        line-height: 1.3;
    }
    .cookie-banner__accept {
        margin-top: 10px;
        display: block;
        width: fit-content;
        min-width: 120px;
        margin-left: auto;
        margin-right: 0;
        padding: 9px 16px;
        font-size: 13px;
    }
    .cookie-banner__close {
        top: 6px;
        right: 6px;
        width: 26px;
        height: 26px;
        font-size: 18px;
    }
}

