
.common_fillSpace {
    width: 80%;
}


/*#region loader*/
.common_loaderMask {
    width: 1200px;
    min-height: 650px;
    position: fixed;
    left: 50%;
    top: 0;
    bottom: -50px;
    background: #fff;
    z-index: 2;
    margin-left: -600px;
    background: #000000;
    opacity: 0.3;
    cursor: wait;
}

.common_loader {
    border: 16px solid#f3f3f3;
    border-top: 10px solid #3498db;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    animation: spin 2s linear infinite;
    position: absolute;
    left: 45%;
    top: 30%;
    /*width: 100%;*/
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*#endregion*/

