/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

/* News loader animation on ajax call */
.news-loader {
    border: 1px solid #f3f3f3;
    border-radius: 50%;
    border-top: 1px solid #cc0000;
    width: 80px;
    height: 80px;
    -webkit-animation: spin 1.75s linear infinite;
    animation: spin 1.75s linear infinite;
    /*margin: 118px auto 118px;*/
    position: relative;
    text-indent: -9999em;
}

@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
