<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* 
 * Custom CSS for keywordDomainName template
 * Contains custom styles and overrides
 */

/* Paragraph Styles */
p {
    text-align: justify;
}

/* Header Button Animation */
.header-button a {
    background-image: repeating-linear-gradient(to right, #bd0f11, #f3e160);
    animation-fill-mode: forwards;
    animation-timing-function: linear;
    background-size: 200% auto;
    background-position: 0 100%;
    animation: 2s infinite gradient;
    color: #ffffff !important;
}

@keyframes gradient {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Download Button Styles */
body .btn-red-pt {
    background: #fa5656;
    color: #FFF;
    display: inline-flex;
}

.box-get {
    text-align: center;
}

.box-get-coupon:hover {
    background: #fa5656;
    color: #FFF;
}

.box-get-coupon {
    background: #FFF;
    padding: 12px 20px;
    cursor: pointer;
    font-weight: bold;
    font-size: 15px;
    border: 2px dashed #fa5656;
    border-radius: 5px;
    -webkit-transition: ease all .4s;
    -o-transition: ease all .4s;
    transition: ease all .4s;
}
</pre></body></html>