.cookie-banner {
    position: fixed;
    left: 40px;
    right: 40px;
    bottom: 40px;
    z-index: 9999;

    display: none;

    background: #777777;
    backdrop-filter: blur(10px);

    border: 1px solid rgba(243, 238, 230, 0.18);
    border-radius: 12px;

    animation: cookieShow .4s ease;
}

.cookie-banner.show {
    display: block;
}

.cookie-banner__content {
    padding: 18px 24px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cookie-banner__text {
    margin: 0;

    font-size: 14px;
    line-height: 1.5;
    color: rgba(243, 238, 230, 0.88);

    max-width: 900px;
}

.cookie-banner__btn {
    flex-shrink: 0;

    min-width: 140px;
    height: 44px;

    border: 1px solid rgba(243, 238, 230, 0.4);
    border-radius: 8px;

    background: transparent;
    color: #f3eee6;

    cursor: pointer;
    transition: .25s ease;
}

.cookie-banner__btn:hover {
    background: rgba(243, 238, 230, 0.08);
}

@keyframes cookieShow {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 767px) {
    .cookie-banner {
        left: 12px;
        right: 12px;
        bottom: 12px;
    }

    .cookie-banner__content {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }

    .cookie-banner__btn {
        width: 100%;
    }
}