﻿.cw-loader .loader-container-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

@-webkit-keyframes metro-slide {
    0% {
        left: -50%;
    }

    100% {
        left: 150%;
    }
}

@keyframes metro-slide {
    0% {
        left: -50%;
    }
    100% {
        left: 150%;
    }
}

@-webkit-keyframes metro-opacity {
    0% {
        opacity: 0;
    }

    0% {
        opacity: .5;
    }

    100% {
        opacity: 1;
    }
}

@keyframes metro-opacity {
    0% {
        opacity: 0;
    }

    0% {
        opacity: .5;
    }

    100% {
        opacity: 1;
    }
}


.preloader-metro {
    overflow: hidden;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 10px;
    background-color: transparent;
}

    .preloader-metro.color-style > .circle {
        background-color: #1ba1e2;
    }

    .preloader-metro > .circle {
        display: inline-block;
        position: absolute;
        width: 10px;
        height: 10px;
        background-color: #ffffff;
        opacity: 0;
        margin-left: 5px;
        -webkit-animation: metro-slide 3s cubic-bezier(0.1, 0.85, 0.9, 0.15) infinite, metro-opacity 2s ease-in-out infinite alternate;
        animation: metro-slide 3s cubic-bezier(0.1, 0.85, 0.9, 0.15) infinite, metro-opacity 2s ease-in-out infinite alternate;
    }

    .preloader-metro.color-style > .circle:nth-child(2) {
        background-color: #fa6800;
    }

    .preloader-metro > .circle:nth-child(2) {
        -webkit-animation-delay: .8s;
        animation-delay: .8s;
    }

    .preloader-metro.color-style > .circle:nth-child(3) {
        background-color: #60a917;
    }

    .preloader-metro > .circle:nth-child(3) {
        -webkit-animation-delay: .7s;
        animation-delay: .7s;
    }

    .preloader-metro.color-style > .circle:nth-child(4) {
        background-color: #ce352c;
    }

    .preloader-metro > .circle:nth-child(4) {
        -webkit-animation-delay: .6s;
        animation-delay: .6s;
    }

    .preloader-metro.color-style > .circle:nth-child(5) {
        background-color: #e3c800;
    }

    .preloader-metro > .circle:nth-child(5) {
        -webkit-animation-delay: .5s;
        animation-delay: .5s;
    }