﻿#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 9999
}

#status {
    width: 40px;
    height: 40px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -20px 0 0 -20px
}

.spinner-chase {
    margin: 0 auto;
    width: 40px;
    height: 40px;
    position: relative;
    -webkit-animation: spinner-chase 2.5s infinite linear both;
    animation: spinner-chase 2.5s infinite linear both
}

.chase-dot {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-animation: chase-dot 2s infinite ease-in-out both;
    animation: chase-dot 2s infinite ease-in-out both
}

    .chase-dot:before {
        content: "";
        display: block;
        width: 25%;
        height: 25%;
        background-color: #556ee6;
        border-radius: 100%;
        -webkit-animation: chase-dot-before 2s infinite ease-in-out both;
        animation: chase-dot-before 2s infinite ease-in-out both
    }

    .chase-dot:nth-child(1) {
        -webkit-animation-delay: -1.1s;
        animation-delay: -1.1s
    }

        .chase-dot:nth-child(1):before {
            -webkit-animation-delay: -1.1s;
            animation-delay: -1.1s
        }

    .chase-dot:nth-child(2) {
        -webkit-animation-delay: -1s;
        animation-delay: -1s
    }

        .chase-dot:nth-child(2):before {
            -webkit-animation-delay: -1s;
            animation-delay: -1s
        }

    .chase-dot:nth-child(3) {
        -webkit-animation-delay: -.9s;
        animation-delay: -.9s
    }

        .chase-dot:nth-child(3):before {
            -webkit-animation-delay: -.9s;
            animation-delay: -.9s
        }

    .chase-dot:nth-child(4) {
        -webkit-animation-delay: -.8s;
        animation-delay: -.8s
    }

        .chase-dot:nth-child(4):before {
            -webkit-animation-delay: -.8s;
            animation-delay: -.8s
        }

    .chase-dot:nth-child(5) {
        -webkit-animation-delay: -.7s;
        animation-delay: -.7s
    }

        .chase-dot:nth-child(5):before {
            -webkit-animation-delay: -.7s;
            animation-delay: -.7s
        }

    .chase-dot:nth-child(6) {
        -webkit-animation-delay: -.6s;
        animation-delay: -.6s
    }

        .chase-dot:nth-child(6):before {
            -webkit-animation-delay: -.6s;
            animation-delay: -.6s
        }

@-webkit-keyframes spinner-chase {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes spinner-chase {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@-webkit-keyframes chase-dot {
    100%,80% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes chase-dot {
    100%,80% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@-webkit-keyframes chase-dot-before {
    50% {
        -webkit-transform: scale(.4);
        transform: scale(.4)
    }

    0%,100% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes chase-dot-before {
    50% {
        -webkit-transform: scale(.4);
        transform: scale(.4)
    }

    0%,100% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}
