<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.cookie-popup {
    position: fixed;
    bottom: 24px;
    left: 50%;
    z-index: 500;
    background-color: rgba(0, 0, 0, .85);
    width: calc(100% - 24px);
    max-width: 480px;
    transform: translateX(-50%);
    padding: 12px;
    border-radius: 8px;
}

.cookie-popup__wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
}

.cookie-popup__icon {
    --size: 24px;
    flex-shrink: 0;
    width: var(--size);
    height: var(--size);
}

.cookie-popup__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.btn.cookie-popup__close {
    --size: 16px;
    flex-shrink: 0;
    width: var(--size);
    height: var(--size);
    padding: 0;
    border: none;
    border-radius: 0;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-image: url('../img/close.svg');
}

.cookie-popup__text {
    font-size: 12px;
    color: #fff;
}

.btn.cookie-popup__btn {
    display: inline-block;
    margin-top: 8px;
    padding: 0;
    border: none;
    border-radius: 0;
    text-align: left;
    width: fit-content;
    font-size: 12px;
    font-weight: 700;
}</pre></body></html>