﻿/* PRELOADER CSS */
.chartloader-rating, .chartloader-recommendation, .chartloader-nps, .mainSearchPageLoader, .chartloader-ratings-star {
    width: 100%;
    height: 100%;
    position: absolute;
    background: #ecececf5;
    z-index: 99999;
    overflow-y: hidden;
    top: 0;
    left: 0;
    right: 0;
    border-radius: 0;
}

    .chartloader-rating .txt, .chartloader-recommendation .txt, chartloader-nps .txt, .mainSearchPageLoader .txt, .chartloader-ratings-star .txt{
        color: #ffffff;
        text-align: center;
        top: 40%;
        position: relative;
        text-transform: uppercase;
        letter-spacing: 0.3rem;
        font-weight: bold;
        line-height: 1.5;
    }
/* SPINNER ANIMATION */
.spinner-ad {
    position: relative;
    top: 45%;
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background-color: #7a7a7a;
    border-radius: 100%;
    -webkit-animation: sk-scaleout 1s infinite ease-in-out;
    animation: sk-scaleout 1s infinite ease-in-out;
}

@-webkit-keyframes sk-scaleout {
    0% {
        -webkit-transform: scale(0);
    }

    100% {
        -webkit-transform: scale(1);
        opacity: 0;
    }
}

@keyframes sk-scaleout {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}
