/*----------------------------------------------------------------------------------------
										PRELOADER
----------------------------------------------------------------------------------------*/

#preloader {
    background: #fff;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    left: 0;
    position: fixed;
    z-index: 999;
}


/*----------------------------------------------------------------------------------------
										CLOCK PRELOADER
----------------------------------------------------------------------------------------*/

.clock {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    margin: -20px 0 0 -20px;
    border: 1px solid rgba(0, 0, 0, 0.25);
    border-radius: 50%;
}

.clock .arrow_sec {
    position: absolute;
    height: 15px;
    width: 1px;
    top: 50%;
    left: 50%;
    margin: -15px 0 0 -1px;
    background: #000;
    -webkit-animation: rotation 1s linear 0s infinite;
    animation: rotation 1s linear 0s infinite;
    -webkit-transform-origin: center bottom;
    -ms-transform-origin: center bottom;
    transform-origin: center bottom;
}

.clock .arrow_min {
    position: absolute;
    height: 10px;
    width: 1px;
    top: 50%;
    left: 50%;
    margin: -10px 0 0 -1px;
    background: #000;
    -webkit-animation: rotation 6s linear 0s infinite;
    animation: rotation 6s linear 0s infinite;
    -webkit-transform-origin: center bottom;
    -ms-transform-origin: center bottom;
    transform-origin: center bottom;
}

@-webkit-keyframes rotation {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes rotation {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}


/*----------------------------------------------------------------------------------------
										CIRCLES PRELOADER
----------------------------------------------------------------------------------------*/

#preloader .circles {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 20px;
    margin: -10px 0 0 -30px;
    text-align: center;
}

.circles div {
    width: 15px;
    height: 15px;
    background-color: #000;
    border-radius: 50%;
    display: inline-block;
    -webkit-animation: threeBounceDelay 2.1s infinite ease-in-out;
    animation: threeBounceDelay 2.1s infinite ease-in-out;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    margin: 0 1px;
}

.circles .bounce2 {
    -webkit-animation-delay: -1.4s;
    animation-delay: -1.4s;
}

.circles .bounce3 {
    -webkit-animation-delay: -0.7s;
    animation-delay: -0.7s;
}

@-webkit-keyframes threeBounceDelay {
    0%,
    30%,
    100% {
        -webkit-transform: scale(0.25);
        transform: scale(0.25);
        opacity: 0.25;
    }
    15% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes threeBounceDelay {
    0%,
    30%,
    100% {
        -webkit-transform: scale(0.25);
        transform: scale(0.25);
        opacity: 0.25;
    }
    15% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}