<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#cookies-notification {
    z-index: 99999;
    background: var(--theme-payment-methods-provider-box-background);
    box-shadow: 0px 2px 12px 2px rgba(0, 0, 0, 0.17);
    position: fixed;
    right: 4rem;
    bottom: 2rem;
    padding-bottom: 2rem;
}

#cookies-notification .cookies-notification-text {
    width: 100%;
    padding: 2rem;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    /* identical to box height, or 143% */

    letter-spacing: 0.4px;
}

#cookies-notification .actions {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

#cookies-notification .action {
    width: 50%;
    text-align: center;
}

#cookies-notification .accept-button {
    color: white;
    background: var(--theme-header-color);
    border: 1px solid var(--theme-header-color);
    box-sizing: border-box;
    border-radius: 40px;
    padding: 1rem 3rem;
    margin-left: 2rem;
    width: 100%;
}

#cookies-notification .action.small-button {
    padding-right: 4rem;
}

#cookies-notification .read-more {
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.4px;
    text-decoration-line: underline;
    color: var(--theme-header-color);
    padding-top: 0.5rem;
}

#cookies-notification .action.big-text {
    padding-right: 2rem;
}

#cookies-notification .read-more a {
    color: var(--theme-header-color);
}

@media only screen and (max-width: 960px) {
    #cookies-notification {
        left: 0;
        bottom: 0;
        width: 100%;
        border: 1px solid #DDE2E5;
    }

    #cookies-notification.with-filter {
        bottom: 8rem;
    }

    #cookies-notification .cookies-notification-text {
        font-size: 12px;
        line-height: 16px;
    }
}
</pre></body></html>