<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* COOKIE POPUP STYLES */

.cookie-popup {
    font-size: 0.875rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: fixed;
    border-radius: var(--border-radius);
    bottom: -6.25rem;
    left: 1.25rem;
    right: 1.25rem;
    padding: 0.625rem 0.9375rem;
    box-shadow: 0 0 0.625rem 0 rgba(0, 0, 0, 0.15);
    line-height: 150%;
    transition: all ease 0.5s;
    opacity: 0;
    z-index: 10;
}

.cookie-popup--short {
    right: none;
    width: 15rem;
}

.cookie-popup--dark {
    background: var(--primary-color);
    color: white;
}

.cookie-popup--not-accepted {
    opacity: 1;
    animation: cookie-popup-in 0.5s ease forwards;
}

.cookie-popup--hidden {
    left: -100%;
    opacity: 0;
}

.cookie-popup a {
    color: white;
    font-weight: bold;
}

.cookie-popup a:hover {
    color: white;
    text-decoration: underline;
}

.cookie-popup a:visited {
    color: white;
}

.cookie-popup-actions {
    flex: 1;
    text-align: right;
    padding-top: 0.625rem;
}

.cookie-popup-actions button {
    color: white;
    border: none;
    background: none;
    font-family: var(--regular-font-family);
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.75rem;
    cursor: pointer;
}

.cookie-popup-actions button:hover {
    text-decoration: underline;
}

.cookie-button-wrapper {
    margin: 1.875rem 0 0.625rem 0;
}

.cookie-button {
    font-weight: 700;
    font-family: var(--regular-font-family);
    text-decoration: none;
    padding: 0.938rem;
    text-transform: uppercase;
    background-color: var(--primary-color);
    border-radius: var(--border-radius);
    transition: all 0.2s ease-in-out;
    color: white;
}

a.cookie-button:hover {
    box-shadow: 0 0 0.313rem 0 #aaa;
    color: white;
}

a.cookie-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
}

a.cookie-link:hover {
    color: var(--secondary-color);
    font-weight: bold;
}

@keyframes cookie-popup-in {
    from {
        bottom: -6.25rem;
    }
    to {
        bottom: 1.25rem;
    }
}
</pre></body></html>