/* =========================================================
   COOKIE BANNER
========================================================= */

.cookie-banner {
    display: none;

    position: fixed;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 9999;

    padding: 18px;

    background: #ffffff;
    border: 1px solid #dbe7eb;
    border-radius: 22px;
    box-shadow: var(--shadow);

    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.cookie-banner.is-visible {
    display: flex;
}

.cookie-banner p {
    margin: 0.25rem 0 0;
    color: var(--muted);
}

.cookie-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 700px) {

    .cookie-banner {
        flex-direction: column;
        align-items: flex-start;

        bottom: 86px;
    }
}