﻿body {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-light-rgb),var(--bs-bg-opacity)) !important;
}

.bg-login {
    background-color: #00948b;
}

.login-title {
    font-size: 24px;
}

.img-login-left {
    /*width: 130px;*/
    width: 180px;
}

.img-login-right {
    width: 130px;
}

.btn-primary,
.btn-primary:hover,
.btn-primary:active,
.btn-primary:visited,
.btn-primary:focus,
.btn-primary:disabled {
    background-color: #00948b;
    border-color: #00948b;
}

.bg-dark {
    background-color: #00948b !important;
}

.img-logo-container {
    height: 72px;
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-light-rgb),var(--bs-bg-opacity)) !important;
    width: 150px;
    text-align: center;
    position: absolute;
}

.logo-menu {
    height: 60px;
    padding-top: 4px;
}

.card {
    padding: 25px 40px;
    border: 1px solid #ddd;
    background-color: #ffffff;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    -moz-border-radius: 5px;
}

#loading {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 50px;
}

#loading i {
    font-size: 64px !important;
    color: #00948b;
}

.loadingClass {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 50px;
}

    .loadingClass i {
        font-size: 64px !important;
        color: #00948b;
    }

.big-warning {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 50px;
    color: #00948b;
}

    .big-warning i {
        font-size: 64px !important;
        color: #00948b;
    }

    .big-warning p {
        font-size: 16px;
        margin-top: 15px;
    }

    .btn-table i {
        font-size: 18px;
    }

    .screen-full {

    }

        .screen-full .row {
            margin-bottom: 10px;
        }

    .screen-full .form-label {
        margin-bottom: 0px;
    }

.card-box {
    border: 1px solid #ddd;
    padding: 5px 10px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    -moz-border-radius: 5px;
    overflow: auto;
}

.bootstrap-select {
    width: 100% !important;
}

    .bootstrap-select > .dropdown-toggle {
        background: white !important;
        border: 1px solid #ced4da !important;
    }

    .bootstrap-select .dropdown-item.active,
    .bootstrap-select .dropdown-item:active {
        background-color: #00948b !important;
    }


    .bootstrap-select .dropdown-item.active .text,
    .bootstrap-select .dropdown-item:active .text {
        color: white !important;
    }

.nav-tabs .nav-item .nav-link {
    color: #00948b !important;
}

.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
    background-color: #00948b !important;
    color: #FFF !important;
}

#div-filtros {
    margin-left: 3%;
    margin-top: 10px;
    width: 90%;
}

.nav-link {
    padding: .5rem .8rem;
}

/* Estilos para o loader */
.loader {
    position: fixed; /* Alterado para posição fixa */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    z-index: 1050; /* Ajustado para um valor maior que o z-index do modal */
    display: none;
}

    .loader::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        border: 16px solid #f3f3f3;
        border-radius: 50%;
        border-top: 16px solid #00948b;
        width: 120px;
        height: 120px;
        animation: spin 2s linear infinite; /* Adicionei o prefixo -webkit- para compatibilidade com navegadores antigos */
        transform: translate(-50%, -50%); /* Ajusta a posição do spin */
    }

@keyframes spin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    /* Ajusta a posição e a rotação do spin */
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
    /* Ajusta a posição e a rotação do spin */
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: translate(-50%, -50%) rotate(0deg);
    }
    /* Ajusta a posição e a rotação do spin */
    100% {
        -webkit-transform: translate(-50%, -50%) rotate(360deg);
    }
    /* Ajusta a posição e a rotação do spin */
}