﻿/*Spinner Area*/
/*Block all content in the page*/
.ajax-loader-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    opacity: .9;
    -webkit-opacity: .9;
    -moz-opacity: .9;
    filter: alpha(opacity=50);
    z-index: 7483646;
}

/*Spinner Properties*/
.spinner, .spinner:after {
    width: 64px;
    height: 64px;
    position: fixed;
    top: 50%;
    left: 50%;
    margin-top: -32px;
    margin-left: -32px;
    border-radius: 50%;
    z-index: 2147483646
}

.spinner {
    background-color: transparent;
    border-top: 10px solid rgb(0,149,136);
    border-right: 10px solid rgb(0,149,136);
    border-bottom: 10px solid rgb(0,149,136);
    border-left: 10px solid rgba(0,149,136,.2);
    transform: translateZ(0);
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-duration: .8s;
    animation-name: spinner-loading
}

/*Animation*/
@keyframes spinner-loading {
    0% {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(1turn)
    }
}
