/* Loading Div */

#loading-div {
    position: fixed;
    display: flex;
    width: 100%;
    height: 100%;
    opacity: 0.7;
    background-color: #000;
    z-index: 999999;
    align-items: center;
    justify-content: center;
}

#loading-image {
    z-index: 1000000;
    height: 100px;
    width: 100px;
}


/* Loading Div END*/



/* My Custom Small Loader START*/

.m-small-loader {
    height: 32px;
    width: 32px;
    -webkit-animation: m-small-loader-1 4.8s linear infinite;
    animation: m-small-loader-1 4.8s linear infinite;
}

@-webkit-keyframes m-small-loader-1 {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes m-small-loader-1 {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.m-small-loader span {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    height: 32px;
    width: 32px;
    clip: rect(0, 32px, 32px, 16px);
    -webkit-animation: m-small-loader-2 1.2s linear infinite;
    animation: m-small-loader-2 1.2s linear infinite;
}

@-webkit-keyframes m-small-loader-2 {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(220deg);
    }
}

@keyframes m-small-loader-2 {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(220deg);
    }
}

.m-small-loader span::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    height: 32px;
    width: 32px;
    clip: rect(0, 32px, 32px, 16px);
    border: 3px solid #fc5a34;
    border-radius: 50%;
    -webkit-animation: m-small-loader-3 1.2s cubic-bezier(0.770, 0.000, 0.175, 1.000) infinite;
    animation: m-small-loader-3 1.2s cubic-bezier(0.770, 0.000, 0.175, 1.000) infinite;
}

@-webkit-keyframes m-small-loader-3 {
    0% {
        -webkit-transform: rotate(-140deg);
    }

    50% {
        -webkit-transform: rotate(-160deg);
    }

    100% {
        -webkit-transform: rotate(140deg);
    }
}

@keyframes m-small-loader-3 {
    0% {
        transform: rotate(-140deg);
    }

    50% {
        transform: rotate(-160deg);
    }

    100% {
        transform: rotate(140deg);
    }
}

/* My Custom Small Loader END*/