.loader-overlay {
    display: none!important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    align-items: center;
    justify-content: center;
    z-index: 2147483647;
}

.loader-overlay.show {
    display: flex!important;
}

.content-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/*.spinner {*/
/*    position: fixed;*/
/*    top: 50%;*/
/*    left: 50%;*/
/*    width: 60px;*/
/*    height: 60px;*/
/*    border: 6px solid #ccc;*/
/*    border-top: 6px solid #3498db;*/
/*    border-radius: 50%;*/
/*    animation: spin 1s linear infinite;*/
/*}*/

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



/* Bar Loader */
/*.bar-loader {*/
/*    position: fixed;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 4px;*/
/*    background: linear-gradient(90deg, #3498db, #9b59b6, #3498db);*/
/*    background-size: 200% 100%;*/
/*    animation: loading-bar 1.2s linear infinite;*/
/*    z-index: 9999;*/
/*    opacity: 0; !* começa invisível *!*/
/*    transition: opacity 0.3s ease;*/
/*}*/

/*.bar-loader.show {*/
/*    opacity: 1; !* visível quando showLoader() é chamado *!*/
/*}*/

/*@keyframes loading-bar {*/
/*    0% { background-position: 200% 0; }*/
/*    100% { background-position: -200% 0; }*/
/*}*/


/* Barra com carregamento */
.bar-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: transparent;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.bar-loader.show {
    opacity: 1;
}

.bar-inner {
    height: 100%;
    width: 0%;
    /*background: linear-gradient(90deg, #e11111, #8a2333, #e11111);*/
    background: rgb(236, 0, 140);
    background-size: 200% 100%;
    animation: loading-gradient 1.2s linear infinite;
    transition: width 0.3s ease;
}

@keyframes loading-gradient {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}
