/*============================================================================================*/


/* Your custom styles below */


/*============================================================================================*/

#loading {
    width: 100%;
    height: 100%;
    top: 1;
    left: 0;
    position: fixed;
    display: block;
    z-index: 99;
    text-align: center;
    /* opacity: 0.6; */
    /* background-color: #2C2E3A; */
}

.loader {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 1;
    border: 8px solid #f3f3f3;
    border-radius: 50%;
    border-top: 8px solid #1A1E4F;
    border-right: 8px solid #1A1E4F;
    border-bottom: 8px solid #F05F22;
    border-left: 8px solid #8D6956;
    width: 70px;
    height: 70px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}

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