/*------------------------------------------------------------------
    File Name: custom.css
-------------------------------------------------------------------*/

/** ADD YOUR AWESOME CODES HERE **/

#loader {
    border: 12px solid #f3f3f3;
    border-radius: 50%;
    border-top: 12px solid #444444;
    width: 70px;
    height: 70px;
    animation: spin 1s linear infinite;
}

.center {
    position: absolute;
    left: 50%;
    top: 50%;
    right: 0;
    bottom: 0;
    /*width: 100%;
    height: 100%;*/
    z-index: 2;
    opacity: .8;
    background-color: rgba(255,255,255,0.8);
}
/*.center {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}*/

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}