/*
    LOADER DE AJAX
    ----------------------------------------------------------------------------
*/
.loading {
    display: none;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 70px;
    z-index: 9999;
    background-color: #f6f6f6;
    -webkit-box-shadow: 0px -3px 0px 2px rgba(0, 0, 0, 0.10), 0px 0px 50px 0px rgba(0,0,0,0.2);
    box-shadow: 0px -3px 0px 2px rgba(0, 0, 0, 0.10), 0px 0px 50px 0px rgba(0,0,0,0.2);
}

.loading-small-bar {
    height: 5px;
    bottom: 100%;
    position: absolute;
    background-color: #c15e62;
    animation: loading-bar 2.5s linear both infinite;
}

.loading-text {
    color: #a6a3a3;
    width: 100%;
    display: inline-block;
    line-height: 70px;
    text-align: center;
    text-transform: uppercase;
    font-family: 'Open Sans', sans-serif;
    font-weight: bold;
}

/* Chrome, Safari, Opera */
@-webkit-keyframes loading-bar {
    from {width: 1%}
    to {width: 100%}
}

/* Sintaxe padrão */
@keyframes loading-bar {
    from {width: 1%}
    to {width: 100%}
}