/* Loading -------------- */

#loaderbg {
    display: none;
    position:absolute;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    background-color: #456;
    z-index: 1111;
    -moz-opacity: 0.4;
    opacity: .4;
    filter: alpha(opacity=10);
}

#loader {
    display: none;
    position: absolute;
    top:43%;
    left:43%;
    width: 60px;
    height: 60px;
    padding-top:9px;
    border: 3px solid #ababab;
    box-shadow:1px 1px 10px #ababab;
    border-radius:10px;
    background-color: white;
    z-index: 1111;
    text-align:center;
    overflow: auto;
}

@media (min-width: 768px) {

    #loader {
        display: none;
        position: absolute;
        top:40%;
        left:48%;
        width: 60px;
        height: 60px;
        padding-top:9px;
        border: 3px solid #ababab;
        box-shadow:1px 1px 10px #ababab;
        border-radius:10px;
        background-color: white;
        z-index: 1111;
        text-align:center;
        overflow: auto;
    }

}