#loader-wrapper .logo {
    left: 48.7%;
    position: absolute;
    top: 48%;
}
#loader-wrapper .logo a {
    font-weight: 700;
    color: #3498db;
    font-size: 12px;
}
.logo span {
    color: #f85654;
}
#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    background-color: #0000003f !important;
    /*opacity: 0.9;*/
}

#loader {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1;
    width: 170px;
    height: 170px;
    margin: -75px 0 0 -75px;
    /* border-radius : 50%;
    border : 16px solid #f3f3f3;
    border-top-color : #3498db;
    animation : spin 2s linear infinite; */
    /* background: url("../images/loading.gif") no-repeat center center; */
}
/*#loader:before {
    content : "";
    position : absolute;
    top : 5px;
    left : 5px;
    right : 5px;
    bottom : 5px;
    border-radius : 50%;
    border : 16px solid #f3f3f3;
    border-top-color : #444;
    animation : spin 3s linear infinite;
    }*/
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
