/* PRE LOADER */

.spinner-wrap {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 848484;
    /*opacity: 0.75;*/
}

.leftside {
    position: absolute;
    left: 0;
    width: 50%;
    height: 100%;
    background: #fff;
}

.rightside {
    position: absolute;
    right: 0;
    width: 50%;
    height: 100%;
    background: #fff;
}

.spinner {
    position: absolute;
    text-align: center;
    padding: 0 10px;
    margin: 0;
    top: 50%;
    left: 50%;
    width: 100%;
    transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
}

    .spinner > div {
        width: 15px;
        height: 15px;
        background-color: #022b64;
        border-radius: 100%;
        display: inline-block;
        -webkit-animation: bouncedelay 1.4s infinite ease-in-out;
        animation: bouncedelay 1.4s infinite ease-in-out;
        -webkit-animation-fill-mode: both;
        animation-fill-mode: both;
    }

    .spinner .bounce1 {
        -webkit-animation-delay: -.32s;
        animation-delay: -.32s;
    }

    .spinner .bounce2 {
        -webkit-animation-delay: -.16s;
        animation-delay: -.16s;
    }

@-webkit-keyframes bouncedelay {
    0%,80%,100% {
        -webkit-transform: scale(0.0);
    }

    40% {
        -webkit-transform: scale(1.0);
    }
}

@keyframes bouncedelay {
    0%,80%,100% {
        transform: scale(0.0);
        -webkit-transform: scale(0.0);
    }

    40% {
        transform: scale(1.0);
        -webkit-transform: scale(1.0);
    }
}
