<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.cta-fixed-wrapper {
    position: fixed;
    bottom: -100%;
    width: 360px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99;
    opacity: 0;
    transition: 0.5s ease-in;
}

.cta-fixed-wrapper.visible {
    opacity: 1;
    bottom: 0;
}

.cta-fixed-content {
    display: flex;
    align-items: center;
    border-radius: 12px 12px 6px 6px;
}

.cta-fixed-image {
    flex: 1 1 35%;
    text-align: center;
}

.cta-fixed-image img {
    height: 110px;
    margin-top: -35px;
    position: relative;
}

.cta-fixed-button {
    flex: 1 1 65%;
    padding: 0 10px;
    text-align: center;
}

.cta-fixed-button a.btn {
    padding: 5px 15px;
    margin: 5px 0 5px 0;
    width: 100%;
    border-radius: 5px;
}

.cta-fixed-text {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1rem;
    text-align: left;
    padding-top: 5px;
}

@media (max-width: 520px) {
    .cta-fixed-wrapper {
        width: calc(100% - 80px);
    }

    .cta-fixed-wrapper:not(.cta-above-cookie-message) {
        transform: none;
        left: 10px;
        bottom: 12px;
    }

    .cta-fixed-wrapper:not(.cta-above-cookie-message) .cta-fixed-content {
        height: 80px;
    }

    .cta-fixed-wrapper:not(.cta-above-cookie-message) .cta-fixed-image img {
        height: 110px;
    }

    .cta-fixed-text {
        text-align: center;
        padding-top: 0px;
        font-size: 0.8rem;
    }

    .cta-fixed-button a.btn {
        margin: 0px 0 5px 0;
        padding: 0px 10px;
    }
}
</pre></body></html>