/*------blocker indicator-----*/
.loadIndicator {
    position: fixed;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    cursor: wait !important;
    z-index: 20005;
}

.ball {
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;

    animation: 0.5s linear 0s normal none infinite spin;
    -webkit-animation: 0.5s linear 0s normal none infinite spin;
    -moz-animation: 0.5s linear 0s normal none infinite spin;
    -o-animation: 0.5s linear 0s normal none infinite spin;

    background-color: #ffffff;
    border-color: transparent rgba(0, 183, 229, 0.9) rgba(0, 183, 229, 0.9) transparent;
    border-image: none;
    border-radius: 50px 50px 50px 50px;
    border-style: solid;
    border-width: 2px;
    bottom: 125px;
    box-shadow: 0 0 35px #2187E7;
    height: 40px;
    margin: 0 auto;
    opacity: 0.9;
    position: absolute;
    right: 50%;
    width: 40px;
}

.loadIndicatorText {
    bottom: 106px;
    color: #000000;
    display: block;
    font-size: 14px;
    font-weight: bold;
    left: 50%;
    margin: 0 -23px 0 0;
    opacity: 1;
    position: absolute;
    right: 50%;
    text-align: center;
    width: 100px;
}

.ball1 {
    animation: 1s linear 0s normal none infinite spinoff;
    -webkit-animation: 1s linear 0s normal none infinite spinoff;
    -moz-animation: 1s linear 0s normal none infinite spinoff;
    -o-animation: 1s linear 0s normal none infinite spinoff;

    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;

    background-color: #ffffff;
    border-color: transparent rgba(0, 183, 229, 0.9) rgba(0, 183, 229, 0.9) transparent;
    border-image: none;
    border-radius: 50px 50px 50px 50px;
    border-style: solid;
    border-width: 2px;
    bottom: 125px;
    box-shadow: 0 0 15px #2187E7;
    height: 20px;
    margin: 10px;
    opacity: 0.9;
    position: absolute;
    right: 50%;
    width: 20px;
}

@-moz-keyframes spin {
    0% {
        -moz-transform: rotate(0deg);
    }
    100% {
        -moz-transform: rotate(360deg);
    }
}

@-moz-keyframes spinoff {
    0% {
        -moz-transform: rotate(0deg);
    }
    100% {
        -moz-transform: rotate(-360deg);
    }
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@-webkit-keyframes spinoff {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(-360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes spinoff {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(-360deg);
    }
}

.muteMislakaAjaxIndicator {
    display: none !important;
}