﻿

/* Animation */
@-webkit-keyframes loading {
    to

{
    -webkit-transform: rotate(360deg);
}

}

@-moz-keyframes loading {
    to {
        -moz-transform: rotate(360deg);
    }
}

@-ms-keyframes loading {
    to {
        -ms-transform: rotate(360deg);
    }
}

@keyframes loading {
    to {
        transform: rotate(360deg);
    }
}
/* Loader (*/
#loading {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: transparent;
    border-top: 3px solid transparent;
    border-right: 3px solid #fff;
    border-bottom: 3px solid #fff;
    border-left: 3px solid #fff;
    -webkit-animation: loading 0.8s infinite linear;
    -moz-animation: loading 0.8s infinite linear;
    -ms-animation: loading 0.8s infinite linear;
    animation: loading 0.8s infinite linear;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -20px 0 0 -20px;
}

.loadin-board {
    width: 100%;
    background: black;
    height: 100%;
    opacity: 0.5;
    top: 0;
    z-index: 999999;
    left: 0;
    position: fixed;
    display: none;
}

