
/* Loading Screen ---------------------*/
div#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--bs-white);
    z-index: 99999;
}

.loader {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -50px;
    margin-left: -50px;
}

.loading {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: block;
    margin-bottom: 10%;
    margin-left: 18%;
    border-top: 3px solid var(--bs-danger);
    border-right: 3px solid transparent;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
/*--------------------------------------*/

.form-control {
    border-radius: 0.175rem;
}

main {
    margin-bottom: 210px; 
}

h1:not(.modal-title) {
    margin-top: 50px;
    margin-bottom: 50px;
    font-weight: 600;
    text-transform: uppercase;
}

h4 {
    text-transform: uppercase;
}

i {
    margin-right: 7px;
}

#back-to-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: none;
    z-index: 1000;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0,0,0,.125);
}

.btn[title] i {
    margin-right: 0px;
}

.valor {
    text-align: right;
}

.sac_det {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.sac_det td {
    white-space: nowrap;
    width: 1px;
    padding-right: 15px;
}

.sac_det td:last-child {
    width: 85%;
    white-space: normal;
}

.sac_det tr.border-top td {
    padding-bottom: 20px;
}

.inativo td {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-danger-rgb),var(--bs-text-opacity)) !important;
}

.suspenso td {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-warning-rgb),var(--bs-text-opacity)) !important;
}

.ativar td, .fechado td {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-success-rgb),var(--bs-text-opacity)) !important;
}
