/* Cookie banner styles */
.cookie {
    display: none;
}

.cookie.cookie--visible {
    display: block;
}

.cookie__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 12px;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.4;
    text-transform: uppercase;
    color: var(--Dark);
    background-color: var(--Neutral);
    border: 1px solid transparent;
    border-radius: 0;
    cursor: pointer;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    text-decoration: none;
    vertical-align: middle;
    user-select: none;
}

.cookie__btn:hover {
    box-shadow: 0 0 0 4px var(--Neutral);
}

.cookie__btn:active {
    background: #fff;
    box-shadow: 0 0 0 4px #fff;
}

.cookie__btn:focus {
    outline: 0;
}

@media (max-width: 768px) {
    .cookie__btn {
        width: 100%;
        max-width: none;
    }
}