/* CSS file for design for the loader */
/* BASE */

/* SECTION */

.section {
    padding: 0;
    margin: 0;
    bottom: 0;
    right: 0;
    left: 0;
    top: 0;
    font-family: sans-serif;
    font-size: 40px;
    color: #FFFFFF;
    cursor: wait;
    text-align: center;
    /*background-color: #16A085;*/
    background-color: #FF0000;
    width: 100%;
    height: 100%;
    z-index: 8;
    position: fixed;
}

/* #### */
/* LOADER */

.loader {
    width: 50px;
    height: 50px;
    display: inline-block;
    vertical-align: middle;
    position: relative;
}

/* #### */
/* LOADER-QUART */

.loader-quart {
    border-radius: 50px;
    border: 6px solid rgba(255, 255, 255, 0.4);
}

.loader-quart:after {
    content: '';
    position: absolute;
    top: -6px;
    left: -6px;
    bottom: -6px;
    right: -6px;
    border-radius: 50px;
    border: 6px solid transparent;
    border-top-color: #FFFFFF;
    -webkit-animation: spin 1s linear infinite;
    -moz-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
}

/* #### */
/* ZONE-LOADER */

.zone-loader {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
}

/* #### */
/* ANIMATIONS */

@-webkit-keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
    }
}

@-moz-keyframes spin {
    from {
        -moz-transform: rotate(0deg);
    }
    to {
        -moz-transform: rotate(360deg);
    }
}

@keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/* #### */
/* MEDIA QUERIES */

@media screen and (max-width: 326px) {
    .loading {
        display: none;
    }
}

/* #### */

/* #### */