﻿:root {
    --corPrincipal: #0e7e37;
}

html, body {
    height: 100%;
    font-family: "Roboto", Arial, Tahoma, sans-serif;
}

.container {
    max-width: 1250px !important;
}

.separacao {
    margin-bottom: 1rem;
}

.laranja-claro-1 {
    background: #f45e29;
}

.laranja-claro-2 {
    background: #ed9834;
}

.laranja-escuro-1 {
    background: #b63d20;
}

.laranja-escuro-2 {
    background: #ca5830;
}

.marrom-escuro-1 {
    background: #5b1711;
}

.marrom-escuro-2 {
    background: #812c23;
}

.laranja-1 {
    background: #ef3f1a;
}

.laranja-2 {
    background: #f45e29;
}

.laranja-claro-g {
    background-image: linear-gradient(to right, #ed9834, #e57520);
}

.laranja-escuro-g {
    background-image: linear-gradient(to right, #ca5830, #b43a1e);
}

.marrom-escuro-g {
    background-image: linear-gradient(to right, #812c23, #5d1a15);
}

.laranja-g {
    background-image: linear-gradient(to right, #f45e2, #ef3f18);
}

.borda-direita {
    border-top-right-radius: 1.6rem;
    border-bottom-right-radius: 1.6rem;
}

.espaco {
    padding: 0.75rem 0;
}

h2 {
    text-transform: uppercase;
    font-size: 1.75rem;
    color: #fff;
    margin: 0.5rem 0.15rem;
    font-weight: bold;
}

h3 {
    font-size: 1.05rem;
    font-weight: bold;
    text-transform: uppercase;
}

    h3.Dia {
        font-size: 2.2rem;
    }

    h3 span {
        text-transform: none !important;
    }

h3, p {
    margin: 0;
}

h4 {
    font-size: 1rem;
    margin: 0;
    color: #595959;
    text-transform: uppercase;
}

.nav-section .text-section {
    text-align: center;
}

.fundo-cinza {
    background: #e2e2e2;
    border-radius: 0.5rem;
    margin-bottom: 0.25rem;
    margin-top: 0.25rem;
}

.cor-01 h3, .cor-01 p {
    color: #f45e29;
}

.cor-02 h3, .cor-02 p {
    color: #b63d20;
}

.cor-03 h3, .cor-03 p {
    color: #5b1711;
}

.cor-04 h3, .cor-04 p {
    color: #ef3f1a;
}

.centralizado {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.border-right {
    border-right: 1px solid #adadad !important;
}

.botao-mais {
    background: #ff9400;
    border-radius: 0.65rem;
}

    .botao-mais a {
        height: 20px;
    }

    .botao-mais i {
        color: #fff;
        font-size: 1rem;
    }

.custom-menu {
    display: none;
    position: absolute;
    padding: .3rem 0;
    border: 1px solid #000;
    list-style: none;
    border-radius: 4px;
    background-color: #fff;
    box-shadow: 2px 2px 5px gray;
    z-index: 100;
}

    .custom-menu li {
        padding: .1rem .5rem;
        cursor: pointer;
    }

        .custom-menu li:hover {
            background-color: rgba(0, 0, 0, 0.3);
            color: #000;
        }

        .custom-menu li i {
            margin-right: 0.4rem;
        }

        .custom-menu li a {
            text-decoration: none;
            color: #575962;
        }

.multiselect-container {
    max-height: calc(100vh - 400px);
    overflow-y: scroll;
}

.perfil {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

.Box {
    border: 1px solid #ebedf5;
    border-radius: 4px;
    overflow: auto;
    height: 170px;
    padding: 0.5rem 1rem;
}

    .Box#UsuariosTipo div {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        margin-bottom: 0.5rem;
    }

        .Box#UsuariosTipo div :nth-child(n+2) {
            margin-left: 1rem;
        }

        .Box#UsuariosTipo div select {
            width: initial;
            padding: .4rem 1rem
        }

.image {
    width: 100%;
    object-fit: contain;
    max-height: 200px;
}

.Arquivos .col-md-3 {
    align-self: center;
}

.page-item.active .page-link {
    background-color: var(--corPrincipal);
    border-color: var(--corPrincipal);
}

.modal-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--corPrincipal);
    text-transform: uppercase;
}

/*============== FILE INPUT ==============*/
.file-area {
    width: 100%;
    position: relative;
}

    .file-area input[type="file"] {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        opacity: 0;
        cursor: pointer;
    }

    .file-area .file-dummy {
        width: 100%;
        padding: 30px;
        background: rgba(0, 0, 0, 0.2);
        border: 2px dashed rgba(0, 0, 0, 0.2);
        text-align: center;
        transition: background 0.3s ease-in-out;
    }

        .file-area .file-dummy.dragenter {
            border: 2px solid rgba(12, 80, 203, 0.6);
            background: rgba(12, 80, 203, 0.2);
        }

        .file-area .file-dummy .success {
            display: none;
        }

    .file-area:hover .file-dummy {
        background: rgba(0, 0, 0, 0.1);
    }

    .file-area input[type="file"]:focus + .file-dummy {
        outline: 2px solid rgba(0, 0, 0, 0.5);
        outline: -webkit-focus-ring-color auto 5px;
    }

    .file-area input[type="file"].selected + .file-dummy {
        border-color: rgba(14, 126, 55, 0.4);
        background-color: rgba(14, 126, 55, 0.3);
    }

        .file-area input[type="file"].selected + .file-dummy .success {
            display: inline-block;
        }

        .file-area input[type="file"].selected + .file-dummy .default {
            display: none;
        }

/*============== FILE PERFIL ==============*/

.file-perfil {
    position: relative;
}

    .file-perfil input[type="file"] {
        position: absolute;
        width: 120px;
        height: 100%;
        top: 0;
        left: 10px;
        right: 0;
        bottom: 0;
        opacity: 0;
        cursor: pointer;
        z-index: 15;
    }

    .file-perfil .foto-perfil {
        height: 120px;
        width: 120px;
        border-radius: 50%;
        border: 1px solid;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
    }

        .file-perfil .foto-perfil .fa-user {
            font-size: 4.5rem;
            color: #000;
        }

        .file-perfil .foto-perfil img {
            height: 100%;
            width: 100%;
            object-fit: contain;
        }

        .file-perfil .foto-perfil span {
            position: absolute;
            bottom: 0;
            background: rgba(0,0,0,0.3);
            height: 30px;
            width: 100%;
            text-align: center;
            color: #fff;
            font-size: 1.2rem;
        }

        .file-perfil .foto-perfil img[src=""] {
            display: none;
        }

        .file-perfil .foto-perfil img[src^="/"] + .fa-user,
        .file-perfil .foto-perfil img[src^="data"] + .fa-user,
        .file-perfil .foto-perfil img[src^="http"] + .fa-user {
            display: none;
        }

/*============== BUTTONS'S ==============*/

.btn-exportar {
    background: #098940;
    border-color: #098940;
    color: #fff !important;
}

.btn-corPrincipal {
    background: var(--corPrincipal);
    border-color: var(--corPrincipal);
    color: #fff !important;
}

/*============== APURAÇÃO HORAS ==============*/

/*.table > thead > tr > td.Pendencias, 
.table > tbody > tr > td.Pendencias, 
.table > tfoot > tr > td.Pendencias, 
.table > thead > tr > th.Pendencias, 
.table > tbody > tr > th.Pendencias, 
.table > tfoot > tr > th.Pendencias, 
.table > thead > tr.Pendencias > td, 
.table > tbody > tr.Pendencias > td, 
.table > tfoot > tr.Pendencias > td, 
.table > thead > tr.Pendencias > th, 
.table > tbody > tr.Pendencias > th, 
.table > tfoot > tr.Pendencias > th {
    background-color: #f2dede;
    border-color: #eed3d7;
}*/

.table > tbody > tr.Pendencias {
    background-color: #f2dede;
    border-color: #eed3d7;
}

.ApuracaoAjustada {
    font-weight: bold !important;
}

/*============== RESPONSIVO ==============*/

@media (max-width: 425px) {
    .Box#UsuariosTipo div {
        justify-content: center;
        margin-bottom: 0.7rem;
    }

        .Box#UsuariosTipo div :nth-child(n+2) {
            margin-left: 0;
        }

        .Box#UsuariosTipo div span {
            margin-left: 1rem !important;
        }
}

.caixa-verde {
    width: 20px;
    height: 20px;
    background-color: green;
}

.caixa-vermelha {
    width: 20px;
    height: 20px;
    background-color: red;
}

.apexcharts-legend.apx-legend-position-bottom.apexcharts-align-left, .apexcharts-legend.apx-legend-position-top.apexcharts-align-left, .apexcharts-legend.apx-legend-position-right, .apexcharts-legend.apx-legend-position-left {
    width: 150px !important;
    overflow-x: hidden;
}

#HorasCliente, #HorasClienteMedia {
    height: 94%;
}

.box {
    padding: 30px 10px;
    height: 100%;
    border-radius: 5px;
    background-color: #fff;
    margin-bottom: 30px !important;
    -webkit-box-shadow: 2px 6px 15px 0 rgba(69,65,78,.1);
    -moz-box-shadow: 2px 6px 15px 0 rgba(69, 65, 78, .1);
    box-shadow: 2px 6px 15px 0 rgba(69,65,78,.1);
    border: 0;
}

.farol {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    position: relative
}

.farol::after{
    content: "";
    width: 8px;
    height: 3px;
    top: 4px;
    right: 2.5px;
    transform: rotateZ(25deg);
    background-color: #fff;
    position:absolute;
    border-radius: 50%;
}

.Verde {
    background: var(--green);
}

.Vermelho {
    background: var(--red);
}

.Amarelo {
    background: var(--yellow);
}