﻿/*===============Loader===============*/
.loader-container {
    position: relative;
}

.loader-wrap {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    display: none;
}

    .loader-wrap .loader-backdrop {
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 9000;
        background-color: rgba(0, 0, 0, 0.6);
    }

    .loader-wrap .loading {
        position: fixed;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        color: white;
        z-index: 10000;
        font-size: 1rem;
    }

    .loader-wrap .blink {
        -webkit-animation: blinkAnimation 2s infinite;
        animation: blinkAnimation 2s infinite;
    }

    .loader-wrap .loader {
        position: fixed;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        z-index: 10000;
    }

        .loader-wrap .loader .spin {
            border: 2px solid #666;
            border-top: 3px solid #fff;
            width: 100px;
            height: 100px;
            border-radius: 50%;
            display: inline-block;
            -webkit-animation: spin 1.5s linear infinite;
            animation: spin 1.5s linear infinite;
            box-shadow: 0 0 80px rgba(255, 255, 255, 0.5);
        }

@-webkit-keyframes blinkAnimation {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes blinkAnimation {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

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

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

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

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
/*===============Loader===============*/
