﻿/*-----------------
	Loader
-----------------------*/

#loader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 999999;
}

.loader {
    display: inline-block;
    height: 50px;
    left: 50%;
    margin-left: -25px;
    margin-top: -25px;
    width: 50px;
    position: absolute;
    top: 50%;
}

    .loader span {
        -webkit-animation: loader 1.3s linear infinite;
        animation: loader 1.3s linear infinite;
        background-color: #e2137f;
        border-radius: 100%;
        display: inline-block;
        height: 50px;
        position: absolute;
        width: 50px;
    }

        .loader span:last-child {
            animation-delay: -0.8s;
            -webkit-animation-delay: -0.8s;
        }

@keyframes loader {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }

    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

@-webkit-keyframes loader {
    0% {
        -webkit-transform: scale(0, 0);
        opacity: 0.5;
    }

    100% {
        -webkit-transform: scale(1, 1);
        opacity: 0;
    }
}