﻿
.loader {
    border: 12px solid #f3f3f3;
    border-radius: 50%;
    border-top: 12px solid #3498db;
    border-right: 12px solid #16478e;
    border-bottom: 12px solid #16478e;
    border-left: 12px solid #16478e;
    width: 65px;
    height: 65px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}


.smloader {
    border: 4px solid #f3f3f3;
    border-radius: 50%;
    border-top: 6px solid #3498db;
    border-right: 6px solid #16478e;
    border-bottom: 6px solid #16478e;
    border-left: 6px solid #16478e;
    width: 20px;
    height: 20px;
    margin: 0 auto;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 1s linear infinite;
}

#loader {
    position: absolute;
    left: calc(50% + 120px);
    top: 50%;
    z-index: 1;
    width: 100px;
    height: 100px;
    margin: -76px 0 0 -76px;
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #3498db;
    border-right: 16px solid #16478e;
    border-bottom: 16px solid #16478e;
    border-left: 16px solid #16478e;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

.loader_div {
    width: 80px;
    height: 80px;
    margin: -76px 0 0 -76px;
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #3498db;
    border-right: 16px solid #16478e;
    border-bottom: 16px solid #16478e;
    border-left: 16px solid #16478e;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
    margin: 0 auto;
}


@-webkit-keyframes loader_div {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes loader_div {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


@media (max-width: 767px) {
    #loader {
        left: 55%;
        top: 50%;
    }
}


@media only screen and (min-width: 768px) and (max-width: 1024px) {
    #loader {
        left: calc(50% + 35px);
        top: 38%;
    }
}



@media (min-width: 1024px) {
    #loader {
        left: calc(50% + 25px);
        top: 50%;
    }
}











#cover-spin {
    position: fixed;
    width: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(255,255,255,0.7);
    z-index: 9999;
    display: none;
}

@-webkit-keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

#cover-spin::after {
    content: '';
    display: block;
    position: absolute;
    left: 48%;
    top: 40%;



/*    width: 40px;
    height: 40px;
    border-style: solid;
    border-color: black;
    border-top-color: transparent;
    border-width: 4px;
    border-radius: 50%;
    -webkit-animation: spin .8s linear infinite;
    animation: spin .8s linear infinite;*/



    width: 100px;
    height: 100px;
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #3498db;
    border-right: 16px solid #16478e;
    border-bottom: 16px solid #16478e;
    border-left: 16px solid #16478e;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}





.myloader {
    height: 180vh !important;
    position: fixed;
    z-index: 99999;
    width: calc(100% - 275px);
    padding-top: 25%;
    background-color: transparent;
    z-index: 9999;
}


/*.myloader {
    height: 80vh;
    position: absolute;
    z-index: 99999;
    width: calc(100% - 275px);
    padding-top: 25%;
    background-color: rgba(255,255,255,0.7);
    z-index: 9999;
}

*/