﻿/*-------------------------------------------------------------------------------
****************************Loader**************************
----------------------------------------------------------------------------------*/
.c-loader-bg {
    display: none;
    background-color: black;
    opacity: .47;
    width: 100%;
    height: 100%;
    z-index: 10010;
    position: fixed !important;
    top: 0;
}

.c-loader {
    display: none;
    position: fixed !important;
    z-index: 10011;
    border: 5px solid #f3f3f3; /* Light grey */
    border-top: 5px solid #FC4D03; /* Blue */
    border-radius: 50%;
    left: calc(50% - 30px);
    top: calc(50% - 30px);
    width: 60px;
    height: 60px;
    animation: spin 2s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


