/*progres bar*/
#work-in-progress {
    position: absolute;
    top: 50%;
    left:50%;
    /* width: 100%;
    height: 100%; */
    font-size: 150px;
    text-align: center;
    vertical-align: middle;
    color: #000000;
    z-index: 200000;
    background-color: #0f0f0f;
    
}
.center{
    top:50%;
    left:45%;
    position: absolute;
}
.work-spinner {
    background-color: rgba(0,0,0,0);
    border: 9px solid rgba(27,61,226,0.9);
    opacity: .9;
    border-left: 5px solid rgba(0,0,0,0);
    border-radius: 120px;
    -webkit-box-shadow: 0 0 35px #1B3DE2;
    box-shadow: 0 0 35px #1B3DE2;
    width: 100px;
    height: 100px;
    margin: 0 auto;
    -moz-animation: spin .5s infinite linear;
    -webkit-animation: spin .5s infinite linear;
    -o-animation: spin .5s infinite linear;
    animation: spin .5s infinite linear;
}

@-moz-keyframes spin {
from {
    -moz-transform: rotate(0deg);
}
to {
    -moz-transform: rotate(360deg);
}
}

@-webkit-keyframes spin {
from {
    -webkit-transform: rotate(0deg);
}
to {
    -webkit-transform: rotate(360deg);
}
}

@keyframes spin {
from {
    transform: rotate(0deg);
}
to {
    transform: rotate(360deg);
}
}
@-o-keyframes spin {
from {
    transform: rotate(0deg);
}
to {
    transform: rotate(360deg);
}
}