﻿.cookie-banner {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 3000;
    display: block;
}

    .cookie-banner[hidden] {
        display: none !important;
    }

.cookie-banner__content {
    max-width: 1100px;
    margin: 0 auto;
    background: #ffffff;
    color: #071426;
    border: 1px solid rgba(7, 20, 38, 0.08);
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
}

.cookie-banner__text strong {
    display: block;
    margin-bottom: 6px;
}

.cookie-banner__text p {
    margin: 0;
    line-height: 1.7;
    color: rgba(7, 20, 38, 0.78);
}

.cookie-banner__actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

@media (max-width: 991px) {
    .cookie-banner__content {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-banner__actions {
        width: 100%;
        flex-direction: column;
    }

        .cookie-banner__actions .btn {
            width: 100%;
        }
}
