body::-webkit-scrollbar-track{
    /*-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);;*/
    border-radius: 0px;
    background-color: #fff;
}
body::-webkit-scrollbar{
    width: 9px;
    background-color: #fff;
}
body::-webkit-scrollbar-thumb{
    border-radius: 0px;
    /*-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);*/
    background-color: #d3d3d3;
}
#preloader {
    position: fixed;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background-color: #0093e4;
    /*background-color:rgba(255,255,255,0.9);  change if the mask should be a color other than white */
    opacity: 1px;
    z-index:9999999; /* makes sure it stays on top */
}

.spinner {
    width: 40px;
    height: 40px;

    position: relative;
    margin: 100px auto;
    margin-top: 24%;
}
@media screen and (max-width: 764px) {
    .spinner {
        width: 40px;
        height: 40px;

        position: relative;
        margin: 100px auto;
        margin-top: 75%;
    }

    #preloader {
        position: fixed;
        top:0;
        left:0;
        right:0;
        bottom:0;
        background-color: #0093e4;
        /*background-color:rgba(255,255,255,0.9);  change if the mask should be a color other than white */
        opacity: 1px;
        z-index:9999999; /* makes sure it stays on top */
    }

    #proloader {

        -webkit-animation: background 2.0s infinite ease-in-out;
        animation: background 2.0s infinite ease-in-out;
    }

}


.double-bounce1, .double-bounce2 {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #fff;
    opacity: 0.6;
    position: absolute;
    top: 0;
    left: 0;

    -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
    animation: sk-bounce 2.0s infinite ease-in-out;
}

.double-bounce2 {
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
}

@-webkit-keyframes sk-bounce {
    0%, 100% { -webkit-transform: scale(0.0) }
    50% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bounce {
    0%, 100% { 
        transform: scale(0.0);
        -webkit-transform: scale(0.0);
    } 50% { 
        transform: scale(1.0);
        -webkit-transform: scale(1.0);
    }
}
