/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

.affsc-banner {
    padding: 30px 20px;
    border-radius: 10px;
    margin-bottom: 30px;
}
.affise-banner.shortcode-wrap {
    padding: 0;
}
.personalized-block {
    display: none;
}
.affsc-gradient {
    background: rgb(255, 255, 255);
    background: linear-gradient(176deg, rgba(255, 255, 255, 1) 0%, rgba(235, 245, 255, 1) 100%);
}

.affsc-banner.affsc-gray {
    background: #F4F6F8;
}

.affsc-banner h3 {
    color: #272742;
    font-size: 16px;
    line-height: 25px;
}

.affsc-subheading {
    font-size: 14px;
    line-height: 23px;
    font-weight: 400;
}

a.affsc-cta-btn {
    color: #ffffff;
}

@media only screen and (min-width: 576px) {
    .affsc-banner {
        padding: 60px 80px;
    }
    .affise-banner.shortcode-wrap {
        padding: 0;
    }
}

@media only screen and (min-width: 992px) {
    .affsc-banner h3 {
        font-size: 26px;
        line-height: 32px;
    }

    .affsc-subheading {
        font-size: 22px;
        line-height: 28px;
    }
}
/*
.affsc-loading .container>.row>div>*,
.affsc-loading>.personalized-block,*/
.affsc-loading>* {
    color: rgba(0, 0, 0, 0);
    border: 0;
    animation: loader 1s infinite ease-in-out;
    -webkit-animation: loader 1s infinite ease-in-out;
}

@keyframes loader {
    0% {
        background-color: rgba(165, 165, 165, 0.1);
    }

    50% {
        background-color: rgba(165, 165, 165, 0.3);
    }

    100% {
        background-color: rgba(165, 165, 165, 0.1);
    }
}

@-webkit-keyframes loader {
    0% {
        background-color: rgba(165, 165, 165, 0.1);
    }

    50% {
        background-color: rgba(165, 165, 165, 0.3);
    }

    100% {
        background-color: rgba(165, 165, 165, 0.1);
    }
}