:root {
    --theme-logo-primary-color: #96cfe2;
    --theme-logo-secondary-color: #10329e;

    --main-color: #0081B4;
    --theme-primary-color: #ECECEC;
    --theme-secondary-color: #DADADA;
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    height: auto;
    width: 100vw;
    overflow-x: hidden;
    background-image: linear-gradient(
        var(--theme-primary-color),
        var(--theme-secondary-color)
    );
    user-select: none;
}

#login_form_area {
     background-image: linear-gradient(
        var(--theme-logo-primary-color),
        var(--theme-logo-secondary-color)
    ) !important;
}

::-webkit-scrollbar {
    width: 7px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #96cfe2;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #1583c6;
}

body table {
    user-select: text;
}

#app {
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#login-card {
    min-height: 200px;
    height: auto;
    min-width: 400px;
    width: auto;
    padding: 20px;
}

#logo-empresa {
    margin: auto;
}

#logo-empresa img {
    width: 250px;
    height: auto;
}

.btn-candinho {
    background-color: var(--main-color) !important;
    color: #ffffff !important;
}

.btn-candinho:hover {
    background-color: #016e99 !important;
}

.color-candinho {
    color: var(--main-color);
}

/* Menu */

#menu-bar {
    align-self: flex-start;
    display: flex;
    width: 100vw;
    padding-left: 20px;
    position: absolute;
    top: 0;
}

#menu-openner {
    font-size: 60px;
    cursor: pointer;
    align-self: flex-start;
}

#menu {
    display: flex;
    flex-direction: column;
    height: 100vh;
    width: 350px;
    z-index: 99;
    background-color: #ffffff;
    position: absolute;
    left: -350px;
    top: 0;
    bottom: 0;
    transition: left ease-in-out 0.5s;
    padding: 20px;
}

#menu-top {
    display: flex;
    width: 100%;
    height: 25px;
    justify-content: flex-end;
}

#menu-user-session {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    align-items: center;
    border-bottom: 2px solid var(--main-color);
}

#user-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    width: 100px;
    border-radius: 50px;
    background-color: var(--main-color);
    box-shadow: 0 5px 5px #ccc;
}

#menu .list-group {
    border-radius: 0;
}

#menu .list-group a {
    text-decoration: none;
}

#menu .list-group a li {
    background-color: var(--main-color);
    color: #ffffff;
    margin-top: 8px;
    text-transform: uppercase;
    font-size: 15px;
    border: 0;
    transition: background-color, color ease-in-out 0.25s;
}

#menu .list-group a li:hover {
    background-color: #ffffff;
    color: var(--main-color);
}

#menu .list-group a li.active {
    background-color: #ffffff;
    color: #000000;
}

#menu .list-group a li.link-logout {
    background-color: #ffffff;
    color: var(--main-color);
}

#menu .list-group a li.link-logout:hover {
    color: #000000;
}

#menu-logout {
    display: flex;
    flex-grow: 1;
}

#menu-logout ul {
    width: 100%;
    align-self: flex-end;
}

#menu-app-version {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 50px;
    width: 100%;
}

.link-candinho {
    color: var(--main-color) !important;
}

.link-candinho:hover {
    color: #016e99 !important;
}

/*logo processos*/
.max-app-log {
    max-width: 800px;
}

#app-logo {
    max-width: 150px;
    height: auto;
}

/* Menu Fim */

/* Recisão */

#rescisao-ui,
#folha-ui,
#consult-rescisao-ui,
#consult-folha-ui,
#contabil-ui,
#consult-contabil-ui,
#consult-quarterizacao-ui,
#quarterizacao-ui {
    background-color: #ffffff;
    border-radius: 10px;
    width: 100%;
    border: 0;
    padding: 20px;
    height: auto;

}

#rescisao-ui--title,
#folha-ui--title,
#consult-rescisao-ui--title,
#consult-folha-ui--title,
#contabil-ui--title,
#consult-contabil-ui--title,
#consult-quarterizacao-ui--title,
#quarterizacao-ui--title {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

#rescisao-ui-selects,
#folha-ui-selects {
    display: flex;
    width: 100%;
}

.form-control-input {
    margin: auto;
    left: 0;
    right: 0;
    width: 100% !important;
}

.form-control-input::placeholder {
    background-color: var(--main-color) !important;
    color: #ffffff !important;
}

.ipt-cnpj {
    background-color: var(--main-color) !important;
    border: 1px solid var(--main-color);
    color: #ffffff !important;
    font-weight: bolder;
    letter-spacing: 2px;
    text-align: center;
}

.ipt-cnpj::placeholder {
    color: #ffffff !important;
}

.ipt-cnpj:focus {
    background-color: var(--main-color);
}

.form-control.ipt-cnpj:focus {
    box-shadow: unset;
}

#rescisao-ui-selects select,
#rescisao-ui-selects .form-group {
    width: 100%;
    margin-right: 10px;
}

#rescisao-ui-selects select,
#rescisao-ui-selects .form-group:last-child {
    margin-right: 0;
}

#select-funcs,
#select-emp {
    height: 400px;
}

#rescisao-ui-options-area {
    height: 160px;
    border-radius: 8px;
    border: 1px solid #d2d2d2;
    display: grid;
    grid-template-columns: 1fr 2fr;
    align-items: center;
}

.overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    background-color: #00000026;
}

.ui-option,
.ui-option-folha {
    height: 120px;
    width: 100%;
    padding: 0 10px;
    position: relative;
}

.ui-option-folha {
    height: unset;
}

.ui-option:first-child {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    border-right: 2px solid #ccc;
}

.ui-option:last-child {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

.option {
    margin-top: 5px;
}

#sel-causa-rescisao .options {
    display: grid;
    column-gap: 5px;
    grid-template-areas:
        "item1 item2 item3"
        "item4 item5 item6";
}

.option1 {
    grid-area: item1;
}

.option2 {
    grid-area: item2;
}

.option3 {
    grid-area: item3;
}

.option4 {
    grid-area: item4;
}

.option5 {
    grid-area: item5;
}

.option6 {
    grid-area: item6;
}

.list-title {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-color: var(--main-color);
    color: #ffffff;
    font-weight: 700;
    padding: 5px;
    border-radius: 8px;
    font-size: 18px;
    box-shadow: 0 5px 5px #ccc;
}

/* Modal de alerta */
#modal-success span,
#modal-error span,
#modal-warning span {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
    width: 70px;
    font-size: 60px;
}
/* Modal de alerta fim */

/*Modal Warning Table */

#modal-warning-table span {
    margin-top: -3vh;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    font-size: 50px;
}

#tabela-warning-rescisao {
    margin-top: -6rem;
    border: none;
}

#modal-warning-message {
    font-size: 18px;
}

#btn-warning-evento {
    margin-left: 40rem;
}
/*Fim Modal warning Table*/

/*Modal warning exclusao telas consulta rescisão e consulta folha*/
#modal-consulta-rescisao-span,
#modal-consulta-folha-span {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    font-size: 60px;
}
/*FIM warning exclusao telas consulta rescisão e consulta folha*/

th {
    color: var(--main-color);
}

#area-tabela,
#area-tabela-folha,
#area-tabela-quarterizacao {
    display: none;
    flex-grow: 1;
    /* max-height: 300px;
    overflow-y: scroll; */
}

/* #area-tabela-folha {
    max-height: 380px;
} */

#area-tabela-eventos {
    width: 100%;
    display: none;
    flex-grow: 1;
    max-height: 350px;
    overflow-y: scroll;
}

#select-eventos {
    height: 225px;
}

#area-tabela::-webkit-scrollbar {
    width: 10px;
}

#area-tabela::-webkit-scrollbar-track {
    background-color: #e9e9e9;
}

#area-tabela::-webkit-scrollbar-thumb {
    width: 8px;
    background-color: var(--main-color);
    border-radius: 3px;
}

#area-tabela-eventos::-webkit-scrollbar {
    width: 10px;
}

#area-tabela-eventos::-webkit-scrollbar-track {
    background-color: #e9e9e9;
}

#area-tabela-eventos::-webkit-scrollbar-thumb {
    width: 8px;
    background-color: var(--main-color);
    border-radius: 3px;
}

.cursor-pointer {
    cursor: pointer;
}

.bg-green {
    background-color: #2ec82e !important;
}

.bg-red {
    background-color: #cf1f1f !important;
}

.alert-position {
    position: fixed !important;
    bottom: 0;
    left: 20px;
}

/* Tela de configurações */

#configuracoes {
    background-color: #ffffff;
    border-radius: 5px;
    height: auto;
    width: 100%;
    border: 0;
    padding: 10px 0px 0px 10px;
}

.link-candinho {
    color: var(--main-color);
    font-weight: bold;
}

.link-candinho:hover {
    color: #575757;
}

#config-info {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    align-items: center;
    padding-top: 20px;
    overflow-y: scroll;
}

#config-section-title {
    display: flex;
    align-items: center;
    justify-content: end;
    margin-top: 10px;
}

/* Tela de eventos - Eventos.js*/
.text-sel-tipo-evento {
    width: 40%;
    margin-right: 19px;
}

.input-eventos-percent,
.input-eventos-limite {
    margin-left: 25px;
    width: 80px;
}

.input-eventos {
    width: 19%;
}

.span-eventos {
    width: 37%;
}

.span-eventos-limite {
    width: 20%;
}

.span-eventos-percent {
    margin-left: 30px;
    width: 100px;
}

/*Consulta*/

#consulta-ui {
    background-color: #ffffff;
    border-radius: 8px;
    height: 95vh;
    width: 88vw;
    border: 0;
    padding: 20px;
}

#consulta-ui--title {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120%;
}

#area-tabela-processos {
    max-height: 500px;
    overflow-y: scroll;
    overflow-x: hidden;
}

#area-tabela-processos::-webkit-scrollbar {
    width: 5px;
}

#area-tabela-processos::-webkit-scrollbar-track {
    background-color: #e9e9e9;
}

#area-tabela-processos::-webkit-scrollbar-thumb {
    width: 5px;
    background-color: var(--main-color);
    border-radius: 1px;
}

.validarData {
    width: 50vh;
}

#spanInicio {
    width: 60vh;
}

#spanFim {
    width: 50vh;
}

#btn-atualizar {
    margin-left: 155%;
    position: absolute;
}

#periodo {
    margin-left: 60%;
}

#status_falha {
    color: #cf1f1f;
}

#status_aguardando {
    color: #0000cd;
}

#status_processando {
    color: #800080;
}

#status_concluido {
    color: #0d9006;
}

#status_concluido_alerta {
    color: orange;
}

/*Fim Consulta*/

#menu-options--area {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-items: center;
    width: 800px;
    height: 100%;
}

#menu-options--area div {
    display: flex;
    height: 100%;
    width: 100%;
    padding: 10px;
}

/* Section home */

#home {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80vh;
    width: 90vw;
    gap: 20px;
    padding: 20px;
}

#home a {
    text-decoration: none;
    height: 200px;
}

.card {
    border: 0;
}

.card-modulo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 200px;
    width: 350px;
    background-color: #fff;
    border-radius: 16px;
}

.module-content {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: opacity ease-in-out 0.25s;
}

.module-content:hover {
    opacity: 1;
}

.module-legend {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.671);
    text-transform: uppercase;
    font-weight: 900;
    color: rgb(34, 23, 23);
}

#dep-pessoal,
#proc-res,
#proc-fol {
    background-position: center;
    background-size: cover;
    filter: brightness(70%);
}

#dep-pessoal {
    background-image: url("../img/departamento-pessoal.jpg");
}

#proc-res {
    background-image: url("../img/rescisao-simulacao.jpg");
}

#proc-fol {
    background-image: url("../img/calculo-folha-pagamento.jpg");
}

input[type="color"] {
    height: 50px;
    width: 200px;
}

#dep-pessoal:hover,
#proc-res:hover,
#proc-fol:hover {
    filter: brightness(100%);
}

/* Sessões da página de configurações */
#sessaoApp,
#sessaoRes,
#sessaoFiscal,
#sessaoFol {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 20px;
    max-width: 800px;
    width: 100%;
    margin: auto;
    overflow-y: scroll;
}

#ssl {
    height: 20px;
    width: 20px;
    margin-right: 10px;
}

/*Mostrar e ocutar senha*/
#eye_button,
#eye_button_folha,
#eye_button_fiscal {
    position: relative;
    left: 330px;
    bottom: 30px;
}

/*Aguardar a autenticacao tela de login*/
.spinner-grow-login {
    position: relative;
    bottom: 35px;
    left: 110px;
}

.login_clients {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 0 100px 0 100px;
}

.login_clients--logo img {
    max-width: 200px;
    height: auto;
}

.form-divider {
    display: flex;
    height: 3px;
    width: 100%;
    background-color: var(--main-color);
    border-radius: 2px;
}

.admin_sidebar {
    height: 100vh !important;
    min-width: 100px;
    max-width: 90px;
    width: 100%;
    background-color: #c0cfdc !important;
    z-index: 998;
}

.header-scrolled {
    height: auto !important;
}

.ml-90 {
    margin-left: 90px;
}

.admin_sidebar--logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
}

.admin_sidebar--logo img {
    height: 50px;
    width: auto;
}

.admin_sidebar--menu-divider {
    display: flex;
    height: 3px;
    width: 100%;
    border-radius: 2px;
    background-color: var(--main-color);
}

.info--menu-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 20px;
    width: 100%;
}

.admin_sidebar--menu-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
    width: 100%;
}

.admin_sidebar--menu-item img {
    height: 35px;
}

.admin_header {
    min-height: 70px;
    background-color: var(--main-color) !important;
}

/* Dashboard master */

.text-candinho {
    color: var(--main-color) !important;
}

.svg-grow {
    height: 100px;
    width: auto;
}

/*DASBOARD*/

#title-dashboard {
    align-items: center;
    text-align: center;
    /* font-size: 50px; */
}

.dashboard-card-info {
    min-height: 300;
    height: auto;
}

.btn-candinho-orange {
    background-color: #f0950d !important;
    border-color: #f0950d !important;
}

.btn-candinho-orange:hover {
    background-color: #e77619 !important;
    border-color: #e77619 !important;
}

.processes_dropdown {
    cursor: pointer;
}

.processes_dropdown ul {
    width: 250px;
}

/* Gráficos */

/* #line-horizontal{
    width: 100%;
    font-size: small;
    border: 0.2px solid #000;
} */

.horizontal {
    margin-top: -10px;
    margin-bottom: -10px;
}

#clients_chart_area {
    width: auto;
    max-height: 400px;

}

#used_proccess_chart {
    max-height: 280px;
}

#used_proccess_chart_rescisao {
    max-height: 400px;
    width: auto;
}

#used_proccess_chart_types_employees {
    max-height: 480px;
}

#clients_chart_area_general_rescisao {
    max-height: 400px;
    width: auto;
}

#clients_chart_area_general_folha {
    max-height: 400px;
}

#clients_chart_area_general_rescisao_day {
    max-height: 400px;
    width: auto;
}

#clients_chart_area_general_folha_day {
    max-height: 400px;
}

#clients_chart_area_sindicato_rescisao {
    max-height: 400px;
    width: auto;
}

#clients_chart_area_sindicato_folha {
    max-height: 200px;
}

#dashboard-card-users {
    max-height: 40px;
}

#dashboard-control-users div {
    /* background: rgb(136, 56, 249) ; */
    background-image: linear-gradient(
        45deg,
        rgb(149, 98, 199),
        rgb(136, 56, 249)
    );
    background-attachment: fixed;
}

#dashboard-control-users h4 {
    color: #ffffff;
    font-size: 15px;
}

#dashboard-control-users {
    max-height: 250px;
}

.icon-person {
    font-size: 40px;
    color: #ffffff;
    /* float: right; */
    padding: 15px;
    background: rgb(116, 47, 205);
    border-radius: 200px;
    position: absolute;
    top: 5px;
    right: 15px;
}

.btn-details {
    font-size: 15px;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    /* float: right; */
    background-image: linear-gradient(
        45deg,
        rgb(149, 98, 199),
        rgb(136, 56, 249)
    );
    background-attachment: fixed;
    border: none;
}

#dashboard-control-rescisao h4 {
    color: #ffffff;
    font-size: 15px;
}

#dashboard-control-amount h4 {
    color: #ffffff;
    font-size: 15px;
}


.dashboard-control-card-One-rescisao,
.dashboard-control-card-two-rescisao,
.dashboard-control-card-three-rescisao {
    background-image: linear-gradient(
        45deg,
        rgb(54, 162, 235),
        rgb(0, 81, 134)
    ) !important;
    background-attachment: fixed !important;
}

.dashboard-control-card-One-geral {
    background-image: linear-gradient(
        45deg,
        rgb(149, 98, 199),
        rgb(136, 56, 249)
    );
    background-attachment: fixed;
}

.btn-details-rescisao-one,
.btn-details-rescisao-two,
.btn-details-rescisao-three {
    font-size: 15px;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    background-image: linear-gradient(
        45deg,
        rgb(54, 162, 235),
        rgb(0, 81, 134)
    ) !important;
    background-attachment: fixed !important;
    border: none;
}

.icon-person-importacao-one {
    font-size: 40px;
    color: #ddd;
    /* float: right; */
    padding: 15px;
    background: rgb(96, 186, 99);
    border-radius: 200px;
    position: absolute;
    top: 5px;
    right: 15px;
}

.icon-person-importacao-two {
    font-size: 40px;
    color: #ffffff;
    padding: 15px;
    background: rgb(246, 181, 70);
    border-radius: 200px;
    position: absolute;
    top: 5px;
    right: 15px;
}

.icon-person-importacao-three {
    font-size: 40px;
    color: #ffffff;
    padding: 15px;
    background: #b22222;
    border-radius: 200px;
    position: absolute;
    top: 5px;
    right: 15px;
}

.btn-details-folha-three {
    font-size: 15px;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    background-image: linear-gradient(
        45deg,
        rgb(54, 162, 235),
        rgb(0, 81, 134)
    ) !important;
    background-attachment: fixed !important;
    border: none;
}

.btn-dashboard-view {
    text-align: center;
    padding: 3px 19px 3px 19px;
    background-image: linear-gradient(
        45deg,
        rgb(149, 98, 199),
        rgb(136, 56, 249)
    );
    background-attachment: fixed;
    border: none;
    border-radius: 15px 15px 15px 15px;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
    -webkit-transition-property: -webkit-transform;
    transition-property: transform;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    box-shadow: 0px 4px 2px 0px rgba(98, 98, 98, 0.69);
}

.btn-dashboard-view:hover {
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
    box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.69);
}

.text-dashboard-view {
    color: #ffffff;
}

/*Dashboard Fiscal - Gerente*/
#dashboard-control-geral-fiscal {
    max-height: 250px;
}

#dashboard-control-geral-fiscal h4 {
    color: #ffffff;
    font-size: 15px;
}

.dashboard-control-fiscal {
    background-image: linear-gradient(
        80deg,
        rgb(149, 98, 199),
        rgb(136, 56, 249)
    );
    background-attachment: fixed;
}

#clients_chart_area_general_importacao {
    max-height: 400px;
}

#clients_chart_area_general_importacao_day {
    max-height: 400px;
}

#clients_chart_area_general_quart {
    max-height: 400px;
}

#clients_chart_area_general_quart_day {
    max-height: 400px;
}

#clients_chart_area_importacao {
    max-height: 400px;
}
#clients_chart_area_quarteirizacao {
    max-height: 400px;
}

.dashboard-card-not-process-import-card-one {
    background-image: linear-gradient(
        45deg,
        rgb(96, 186, 99),
        rgb(67, 164, 70)
    );
    background-attachment: fixed;
}

.dashboard-card-not-process-import-card-two {
    background-image: linear-gradient(45deg, #dd4c39, #dd4c39);
    background-attachment: fixed;
}

.dashboard-card-not-process-import-card-three {
    background-color: #f0950d !important;
    border-color: #f0950d !important;
}

.dashboard-card-not-process-import-card-three h4,
.dashboard-card-not-process-import-card-one h4,
.dashboard-card-not-process-import-card-two h4 {
    color: #ffffff;
    font-size: 15px;
}

.btn-details-importacao {
    font-size: 15px;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    background-color: #f0950d !important;
    border: none;
}

/*colocar todas as tables responsivas*/

/* .table_responsive {
    overflow-x: auto;
} */

/*Regras da convenção*/
.btn-control {
    margin: 5px 1px 7px 1px;
    padding: 3px 0 25px 0;
    height: 40px;
    width: 120px !important;
}
.btn-control::placeholder {
    background-color: var(--main-color) !important;
    color: #ffffff !important;
}

/* Tela Regra da convenção */
.rules {
    padding-top: 10px;
}

.rules .bi::before{
    width: 10px;
    margin-left: 35px;
    display: flex;
    align-items: center;
    font-size: medium;
}

#ModalLicencaMaternidade,
#ModalAfastDoenca,
#ModalAfasTrab {
    width: 100%;
}

.dropdown-menu-box {
    position: relative;
    bottom: 100px;
    left: 70px;
    background: #ffffff;
    padding: 10px;
    margin: 10px;
    border-radius: 10px;
    border-style: solid;
    border-width: thin;
    border-color: #ddd;
    list-style: none;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown a {
    color: #000000;
    text-decoration: none;
}

.dropdown a:hover {
    background-color: #ddd !important;
}

.dropdown-submenu a {
    color: #000000;
    text-decoration: none;
}

.dropdown-submenu a:hover {
    background-color: #ddd;
}

/*Consultas*/

.btn-upgrade {
    float: right;
}

.dt-process div {
    display: inline-block;
    margin: 0.8rem 0.2rem 0.8rem 0;
}

.reason-resignation div {
    display: inline-block;
}

.orde-resignation div {
    display: inline-block;
}

.demise div {
    display: inline-block;
}

.deal-resignation {
    position: relative;
    margin-left: 43px;
}

.agreement {
    margin-left: 100px;
}

.teste05 div {
    display: inline-block;
}

/*Tela servidores*/

.header-login-buddyWin {
    background-color: #0081b4;
}

.header-login-buddyWin h1 {
    color: #ffffff;
}

.header-login-buddyWin .modal-title-Win {
    color: rgb(255, 170, 49);
}

#check-server {
    width: 80px;
}

#msgProcess {
    color: #cf1f1f;
}

#search-data {
    margin-left: 5px;
}


@media only screen and (max-width: 1669px) {
    /* body {
        overflow-x: auto;
    } */
}

@media only screen and (max-width: 1337px) {
    .select-dashboard-process {
        width: 30% !important;
    }

    #select-dashboard {
        margin-top: 0px !important;
    }
}

@media only screen and (max-width: 1200px) {
    #dashboard-control-amount,
    #dashboard-general,
    #dashboard-control-geral-fiscal,
    #dashboard-general-fiscal,
    #dashboard-control-not-process-import,
    #dashboard-importacao,
    #dashboard-Quarteirizacao,
    #dashboard-folha,
    #dashboard-control-rescisao,
    #dashboard-rescisao,
    #select-dashboard-manager {
        position: relative;
        flex-direction: column !important;
    }

}

@media only screen  and (max-width: 991px) {
    #ipt-secondary-color, #ipt-primary-color, #ipt-text-color{
        width: 110px;
    }
}

.table-response {
    width: 100% !important;
}

@media only screen and (max-width: 1770px) {
    #tabela-processos {
        display: block !important;
        width: 100% !important;
        overflow-x: auto !important;
        white-space: nowrap !important;
    }

}


@media only screen and (max-width: 1600px) {
    .table_response, .table_response_empresa{
        display: block !important;
        width: 100% !important;
        overflow-x: auto !important;
        white-space: nowrap !important;
    }

}

@media only screen and (max-width: 750px) {
    .table-little-response {
        display: block;
        width: 100% !important;
        overflow-x: auto;
        white-space: nowrap;
    }
}


@media only screen and (max-width: 1400px) {
    .table_response_rules {
        display: block;
        width: 100%;
        overflow-x: auto;
        white-space: nowrap;
    }
}

@media only screen and (max-width: 929px) {
    #tabela-funcionarios-rescisao, #tabela-empresas-folha {
        display: block;
        width: 100%;
        overflow-x: auto;
        white-space: nowrap;
    }
}

@media only screen and (max-width: 760px) {
    #visualizar {
        position: relative;
        flex-direction: column !important;
    }

    #visualizar select {
        width: 220px;
    }

    #visualizar input {
        width: 220px;
    }
}

@media only screen and (max-width: 648px) {
    #select-dashboard-show {
        position: relative;
        flex-direction: column !important;
    }
    #select-dashboard-show select {
        width: 280px;
        margin: 8px;
    }

    #select-dashboard-show button {
        margin: 8px;
    }

    .table-small-response{
        display: block;
        width: 100%;
        overflow-x: auto;
        white-space: nowrap;
    }
}

/*Reset de cores*/
#reset-colors{
    margin-top: 10px;
    width: 200px;
}

/* Tela de Carregamento */

#loading-spinner {
    height: 100%;
    width: 100%;
    background-color: rgba(255,255,255,0.7);
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 2000;
}


div.password-box {
    display: flex;
    align-items: center;
    border: solid 1px var(--main-color);
    background-color: #fff;
    border-radius: 6px;
    color: var(--main-color);;
}
label .bi {
    font-size: 25px;
}
.password-box .bi {
    font-size: 25px;
    padding-left: 8px;
    padding-right: 8px;
}

.modal-logs {
    display: none;
    flex-grow: 1;
    max-height: 300px;
    overflow-x: scroll;
}
