/*! purgecss start ignore */
/* Style for Fastspring Spinner */

@-webkit-keyframes fsb-fadeIn {
    from {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

@keyframes fsb-fadeIn {
    from {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

@-webkit-keyframes fsb-revfadeIn {
    from {
        opacity: 1
    }
    to {
        opacity: 0
    }
}

@keyframes fsb-revfadeIn {
    from {
        opacity: 1
    }
    to {
        opacity: 0
    }
}

#fastspring_spinner {
    width: 100%;
    height: 100%;
    z-index: 99999998;
    background: rgba(0, 0, 0, 0.4);
    position: fixed;
    top: 0;
    left: 0;
    -webkit-animation-duration: .4s;
    animation-duration: .4s;
    background: rgba(0,0,0,.3);
}

#fastspring_spinner img {
    -webkit-animation-duration: .4s;
    animation-duration: .4s;
    -webkit-animation-delay: .4s;
    animation-delay: .4s;
    -webkit-animation-name: fsb-fadeIn;
    animation-name: fsb-fadeIn;
    position: fixed;
    top: 50%;
    margin-top: -50px;
    left: 50%;
    margin-left: -50px;
    z-index: 99999999;
}

/*! purgecss end ignore */