@import url('https://fonts.googleapis.com/css2?family=Mulish:wght@200;300;400;500;600;700;800;900;1000&display=swap');

*{
    margin: 0;
    padding: 0;
    outline: 0;
    appearance: none;
    border: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
}

html{
    font-size: 14px;
}

body{
    position: relative;
    font-family: 'Mulish', sans-serif;
    color: var(--title-color);
    background-color: rgb(225, 225, 225);
}
body .container{
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

body #loading{
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(1px);
    z-index: 999;
}
#loading h5{
    color: white;
}
body #loading.hide{
    display: none;
}



body #modal_caixa{
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(1px);
    z-index: 800;
}
#modal_caixa.hide{
    display: none;
}
#modal_caixa .modal_caixa_box{
    width: 400px;
    height: auto;
    background-color: white;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
}
.modal_caixa_box .modal_caixa_box_header{
    width: 100%;
    min-height: 50px;
    border-bottom: 1px solid gray;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}
.modal_caixa_box_header h5{
    font-weight: 900;
}
.modal_caixa_box_header i{
    font-size: 24px;
    cursor: pointer;
    color: red;
}
.modal_caixa_box .modal_caixa_box_body{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
}
.modal_caixa_box_body .modal_input_div{
    width: 100%;
    display: flex;
    flex-direction: column;
}
.modal_input_div h6{
    font-weight: 900;
}
.modal_input_div input{
    width: 100%;
    height: 25px;
    border: 1px solid gray;
    border-bottom: 2px solid gray;
    padding-left: 10px;
    text-transform: uppercase;
}
.modal_input_div input:invalid{
    border-bottom: 2px solid red;
}
.modal_input_div textarea{
    width: 100%;
    height: 100px;
    border: 1px solid gray;
    border-bottom: 2px solid gray;
    padding: 10px;
    text-transform: uppercase;
    resize: none;
}
.modal_input_div textarea:invalid{
    border-bottom: 2px solid red;
}
.modal_caixa_box_body .btn_salvar_modal{
    width: 100%;
    height: 35px;
    border-radius: 4px;
    background-color: blue;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    opacity: 0.8;
    transition: all 200ms ease-in-out;
}
.modal_caixa_box_body .btn_salvar_modal:hover{
    opacity: 1;
}
.modal_caixa_box_body .btn_salvar_modal.hide{
    display: none;
}


.modal_caixa_box_body .btn_pagar_modal{
    width: 100%;
    height: 35px;
    border-radius: 4px;
    background-color: green;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    opacity: 0.8;
    transition: all 200ms ease-in-out;
}
.modal_caixa_box_body .btn_pagar_modal:hover{
    opacity: 1;
}
.modal_caixa_box_body .btn_pagar_modal.hide{
    display: none;
}


.modal_caixa_box_body .btn_excluir_modal{
    width: 100%;
    height: 35px;
    border-radius: 4px;
    background-color: red;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    opacity: 0.8;
    transition: all 200ms ease-in-out;
}
.modal_caixa_box_body .btn_excluir_modal:hover{
    opacity: 1;
}
.modal_caixa_box_body .btn_excluir_modal.hide{
    display: none;
}


.modal_caixa_box_body .btn_arquivar_modal{
    width: 100%;
    height: 35px;
    border-radius: 4px;
    background-color: orangered;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    opacity: 0.8;
    transition: all 200ms ease-in-out;
}
.modal_caixa_box_body .btn_arquivar_modal:hover{
    opacity: 1;
}
.modal_caixa_box_body .btn_arquivar_modal.hide{
    display: none;
}



.modal_caixa_box_body .btn_desarquivar_modal{
    width: 100%;
    height: 35px;
    border-radius: 4px;
    background-color: orangered;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    opacity: 0.8;
    transition: all 200ms ease-in-out;
}
.modal_caixa_box_body .btn_desarquivar_modal:hover{
    opacity: 1;
}
.modal_caixa_box_body .btn_desarquivar_modal.hide{
    display: none;
}



body .btn{
    width: 130px;
    height: 40px;
    border-radius: 4px;
    cursor: pointer;
    opacity: 0.8;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: all 200ms ease-in-out;
}
.btn h6{
    font-size: 14px;
    color: white;
}
.btn:hover{
    opacity: 1;
}

.container .header{
    position: relative;
    width: 100%;
    height: 50px;
    background-color: rgb(0, 81, 255);
    display: flex;
    align-items: center;
    justify-content: center;
}
.header h5{
    color: white;
    font-size: 18px;
}
.header img{
    width: 60px;
    height: auto;
}
.header .return{
    position: absolute;
    left: 20px;
    width: auto;
    height: 100%;
    border-right: 1px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 10px;
    cursor: pointer;
    color: white;
    transition: all 200ms ease-in-out;
}
.return h5{
    font-size: 12px;
    pointer-events: none;
    transition: all 200ms ease-in-out;
}
.return i{
    font-size: 24px;
    pointer-events: none;
    transition: all 200ms ease-in-out;
}
.header .return:hover{
    background-color: white;
}
.header .return:hover h5{
    color: rgb(0, 81, 255);
}
.header .return:hover i{
    color: rgb(0, 81, 255);
}
.header .user_div{
    position: absolute;
    right: 20px;
    width: auto;
    height: 100%;
    border-left: 1px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 10px;
}
.user_div img{
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid white;
    pointer-events: none;
}
.user_div h5{
    font-size: 12px;
    pointer-events: none;
}
.user_div i{
    width: 30px;
    height: 30px;
    background-color: white;
    font-size: 24px;
    color: rgb(255, 55, 55);
    cursor: pointer;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 200ms ease-in-out;
}
.user_div i:hover{
    color: red;
    height: 50px;
}

.container .page_name{
    width: 100%;
    height: 20px;
    background-color: gray;
    display: flex;
    align-items: center;
    justify-content: center;
}
.page_name h6{
    font-size: 12px;
    color: white;
}




/* LOGIN */
.container .login_container{
    width: 100%;
    height: 100%;
    padding: 10%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    gap: 10px;
}
.login_container h5{
    color: rgb(0, 81, 255);
    font-size: 18px;
}
.login_container input{
    width: 300px;
    height: 35px;
    border: 1px solid gray;
    border-radius: 4px;
    padding-left: 10px;
    border-bottom: 2px solid gray;
    text-transform: uppercase;
}
.login_container input:invalid{
    border-bottom: 2px solid red;
}
.login_container a{
    font-size: 11px;
    font-weight: 900;
    color: gray;
    width: 300px;
    height: 35px;
    border-bottom: 1px solid gray;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 4px;
    transition: all 200ms ease-in-out;
}
.login_container a:hover{
    color: orangered;
}







/* INDEX */
body .index_container{
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.index_container .buttons_container{
    width: 60%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}
.buttons_container a{
    width: 250px;
    height: 50px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: start;
    color: white;
    transition: all 200ms ease-in-out;
}
.buttons_container a i{
    width: 20%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    border-start-start-radius: 4px;
    border-end-start-radius: 4px;
}
.buttons_container a h4{
    width: 80%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-start-end-radius: 4px;
    border-end-end-radius: 4px;
    opacity: 0.7;
    transition: all 200ms ease-in-out;
}
.buttons_container a h4:hover{
    opacity: 0.9;
}

.index_container .alert{
    position: relative;
    width: 790px;
    height: 40px;
    display: flex;
    align-items: center;
    background-color: white;
    border-radius: 4px;
    box-shadow: 0 0 10px gray;
    cursor: pointer;
}
.alert .alert_left{
    width: 50px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-start-start-radius: 4px;
    border-end-start-radius: 4px;
    color: white;
}
.alert .alert_right{
    width: 750px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: start;
    padding-left: 20px;
}
.alert_right h6{
    font-size: 11px;
}
.alert .btn_alert{
    position: absolute;
    right: 10px;
    width: 150px;
    height: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    gap: 5px;
    border-radius: 4px;
    cursor: pointer;
    opacity: 0.8;
    transition: all 200ms ease-in-out;
}
.alert .btn_alert:hover{
    opacity: 1;
}

.index_container .alert_container{
    width: 770px;
    height: auto;
    display: flex;
    flex-direction: row;
    background-color: white;
    border-end-start-radius: 8px;
    border-end-end-radius: 8px;
    box-shadow: 0 0 10px gray;
    padding: 10px;
    cursor: default;
}
.alert_container .alert_container_left{
    width: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    padding-right: 10px;
}
.alert_container .alert_container_right{
    width: auto;
    height: auto;
    display: flex;
    flex-direction: column;
}






.container .page_container{
    width: 100vw;
    height: 90vh;
    overflow-x: hidden;
    overflow-y: scroll;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container .page_container .page_container_buttons_container{
    width: 90%;
    height: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.page_container_buttons_container .btn_toggle_opcoes{
    width: 35px;
    height: 35px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    opacity: 0.8;
    transition: all 200ms ease-in-out;
}
.page_container_buttons_container .btn_toggle_opcoes:hover{
    opacity: 1;
}
.page_container_buttons_container .btn_gerar_mensalidades{
    width: 280px;
    height: 35px;
    background-color: indigo;
    color: white;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    opacity: 0.8;
    transition: all 200ms ease-in-out;
}
.page_container_buttons_container .btn_gerar_mensalidades:hover{
    opacity: 1;
}

.page_container .btn_adicionar{
    width: 150px;
    height: 35px;
    background-color: green;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: white;
    border-radius: 4px;
    cursor: pointer;
}

.page_container .table{
    width: 90%;
    height: 100%;
    border: 1px solid gray;
    display: flex;
    flex-direction: column;
}
.table .table_header{
    width: 100%;
    height: 30px;
    display: flex;
    align-items: center;
    background-color: rgb(0, 81, 255);
    padding: 0 30px 0 10px;
    color: white;
}
.table .table_container{
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: scroll;
}
.table_container .table_container_scroll{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.table_container_scroll .table_item{
    width: 100%;
    height: 35px;
    background-color: white;
    border: 1px solid gray;
    display: flex;
    align-items: center;
    padding: 0 10px;
    cursor: pointer;
    transition: all 200ms ease-in-out;
}
.table_item .btn_qrcode{
    height: 80%;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: white;
    cursor: pointer;
}

.table_container_scroll:has(.table_item:hover) .table_item:not(:hover){
    opacity: 0.7;
}



.page_container .protocol_box{
    width: 700px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}
.protocol_box .input_div_response{
    width: 400px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.protocol_box .input_div{
    position: relative;
    width: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 5px;
}

.input_div input{
    height: 30px;
    padding-left: 10px;
    border: 1px solid gray;
    border-bottom: 2px solid gray;
    text-transform: uppercase;
}
.input_div input:invalid{
    border-bottom: 2px solid red;
}

.input_div select{
    height: 30px;
    padding-left: 10px;
    border: 2px solid blue;
    text-transform: uppercase;
    cursor: pointer;
    color: blue;
}
.input_div i{
    position: absolute;
    right: 10px;
    bottom: 8px;
    color: blue;
}

.input_div textarea{
    height: 150px;
    padding: 10px;
    border: 1px solid gray;
    border-bottom: 2px solid gray;
    text-transform: uppercase;
    resize: none;
}

.protocol_box .btn_salvar{
    margin-top: 10px;
    width: 120px;
    min-height: 35px;
    background-color: green;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: white;
    cursor: pointer;
    opacity: 0.8;
    transition: all 200ms ease-in-out;
}
.protocol_box .btn_salvar:hover{
    opacity: 1;
}






.protocol_box .input_checks{
    width: 400px;
    height: auto;
    display: flex;
    flex-direction: column;
}

.input_checks .check_container{
    width: 100%;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    border: 1px solid gray;
    padding: 5px;
}
.check_container .check{
    width: 30%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.check_container .check h6{
    font-weight: 900;
}
.check_container .check .fa-square-check{
    display: none;
    font-size: 24px;
    color: green;
}
.check_container .check .fa-square{
    display: block;
    font-size: 24px;
}
.check_container .check.checked .fa-square-check{
    display: block;
}
.check_container .check.checked .fa-square{
    display: none;
}






.page_container .vertical_box{
    width: 100vw;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.table_container .table_container_scroll_mobile{
    display: none;
}



.page_container .grid_container{
    width: 90%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: scroll;
}
.grid_container .grid_scroll{
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.grid_scroll .grid_card{
    width: 300px;
    height: auto;
    display: flex;
    flex-direction: column;
    background-color: white;
    border: 2px solid gray;
    border-radius: 8px;
    padding: 10px;
    cursor: pointer;
    transition: all 200ms ease-in-out;
}
.grid_card:hover{
    border: 2px solid rgb(0, 81, 255);
}
.grid_card .card_top{
    width: 100%;
    min-height: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.card_top h5{
    font-weight: 900;
    font-size: 16px;
    color: rgb(0, 81, 255);
}
.card_top i{
    font-size: 24px;
    color: rgb(0, 81, 255);
}
.grid_card.hoje .card_top h5,
.grid_card.hoje .card_top i{
    color: indigo;
}
.grid_card .card_bottom{
    width: 100%;
    height: auto;
    display: flex;
    margin-top: 10px;
}
.card_bottom .card_bottom_left{
    width: 40%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.card_bottom_left h6{
    font-weight: 900;
}
.card_bottom .card_bottom_right{
    width: 60%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.card_bottom_right .periodos_container{
    width: auto;
    height: auto;
    display: flex;
    gap: 10px;
}
.periodos_container .periodo{
    width: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}




.page_container .page_caixa{
    width: 90%;
    height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.page_caixa .page_abas{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.page_abas .aba{
    position: relative;
    width: 90px;
    height: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgb(231, 231, 231);
    gap: 5px;
    padding: 5px;
    cursor: pointer;
    transition: all 200ms ease-in-out;
}
.aba i{
    font-size: 18px;
}
.aba span{
    position: absolute;
    bottom: -4px;
    width: 100%;
    height: 4px;
    background-color: gray;
}
.aba:hover{
    background-color: white;
}
.aba.active{
    background-color: white;
}

.aba.active span{
    background-color: blue;
}

.page_caixa .aba_container{
    width: 90%;
    height: 72vh;
    margin-top: 20px;
    display: none;
    padding: 10px;
    border-radius: 8px;
}
.page_caixa .aba_container.active{
    display: flex;
    flex-direction: column;
}
.aba_container .btn_add{
    width: 170px;
    height: 35px;
    background-color: blue;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: white;
    cursor: pointer;
    opacity: 0.8;
    transition: all 200ms ease-in-out;
}
.aba_container .btn_add:hover{
    opacity: 1;
}

.aba_container .aba_container_list{
    width: 100%;
    height: 55vh;
    overflow-x: hidden;
    overflow-y: scroll;
}
.aba_container_list .aba_container_list_scroll{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.aba_container_list_scroll:has(.aba_container_item:hover) .aba_container_item:not(:hover){
    opacity: 0.7;
}

.aba_container_list_scroll .aba_container_item{
    position: relative;
    width: 99%;
    height: auto;
    display: flex;
    background-color: white;
    cursor: pointer;
    transition: all 200ms ease-in-out;
}
.aba_container_item .aba_container_item_left{
    min-width: 100px;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-start-start-radius: 4px;
    border-end-start-radius: 4px;
    gap: 5px;
}
.aba_container_item .aba_container_item_center{
    width: auto;
    display: flex;
    flex-direction: column;
    gap: 5px;
    background-color: white;
    padding: 10px;
}
.aba_container_item_center h6{
    font-weight: 900;
}
.aba_container_item .aba_container_item_right{ 
    width: auto;
    display: flex;
    flex-direction: column;
    gap: 5px;
    background-color: white;
    padding: 10px;
}
.aba_container_item .aba_container_item_buttons{ 
    position: absolute;
    right: 10px;
    width: auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 5px;
}
.aba_container_item_buttons:has(){
    opacity: 0.7;
}
.aba_container_item_buttons .aba_container_item_buttom{
    width: 100px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border-radius: 4px;
    cursor: pointer;
    color: white;
    opacity: 0.8;
    transition: all 200ms ease-in-out;
}
.aba_container_item_buttons .aba_container_item_buttom:nth-child(1){
    background-color: green;
}
.aba_container_item_buttons .aba_container_item_buttom:nth-child(2){
    background-color: red;
}
.aba_container_item_buttons .aba_container_item_buttom:nth-child(3){
    background-color: orangered;
}
.aba_container_item_buttons .aba_container_item_buttom:nth-child(4){
    background-color: orangered;
}
.aba_container_item_buttons .aba_container_item_buttom:hover{
    opacity: 1;
}


.aba_container .cobranca_container{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.cobranca_container .qrcode_div{
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid gray;
    border-radius: 8px;
}
.qrcode_div .qrcode_image{
    width: 130px;
    height: 130px;
    border: 2px solid gray;
    border-radius: 4px;
}
.cobranca_container #copia_cola{
    width: 350px;
    text-align: center;
    margin-top: 10px;
    color: red;
}






.page_caixa .page_filters{
    width: 90%;
    min-height: 50px;
    background-color: white;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0 10px;
    gap: 20px;
    margin-top: 20px;
    border: 1px solid gray;
}
.page_filters .div_inputs_extrato{
    width: auto;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 5px;
}
.div_inputs_extrato .filter_div{
    width: auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
}
.filter_div input{
    border: 1px solid gray;
    width: 100px;
    height: 25px;
    padding-left: 10px;
}
.div_inputs_extrato .btn_filtrar{
    width: 100px;
    height: 25px;
    border-radius: 4px;
    background-color: green;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    margin-top: 12px;
}
.page_filters .div_hotkeys_extrato{
    width: auto;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 5px;
}
.div_hotkeys_extrato .hotkey{
    width: 100px;
    height: 25px;
    border-radius: 4px;
    background-color: gray;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    margin-top: 12px;
    gap: 5px;
}
.div_hotkeys_extrato .hotkey.active{
    background-color: blue;
}

.page_filters .btn_pix_avulso{
    width: 120px;
    height: 35px;
    background-color: indigo;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border-radius: 4px;
    color: white;
    opacity: 0.8;
    cursor: pointer;
    transition: all 200ms ease-in-out;
}
.page_filters .btn_pix_avulso:hover{
    opacity: 1;
}

.aba_container .extrato_header{
    width: 100%;
    height: 25px;
    background-color: gray;
    display: flex;
    align-items: center;
    padding: 0 30px 0 10px;
    color: white;
    margin-top: 10px;
}
.aba_container .extrato_list{
    width: 100%;
    height: 55vh;
    overflow-x: hidden;
    overflow-y: scroll;
}
.extrato_list .extrato_scroll{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.extrato_scroll .extrato_item{
    width: 100%;
    height: 20px;
    display: flex;
    align-items: center;
    cursor: pointer;
    background-color: white;
    padding: 0 10px;
}


.aba_container .recibo_container{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    padding-top: 10px;
    gap: 10px;
}

.recibo_container .div_input_tipo_seletor{
    width: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.div_input_tipo_seletor h4{
    font-weight: 900;
}
.div_input_tipo_seletor .seletor_container{
    width: 300px;
    height: 30px;
    padding: 0 20px;
    text-transform: uppercase;
    border: 1px solid rgb(173, 173, 173);
    background-color: white;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 300ms ease-in-out;
}
.seletor_container .recebimento_txt{
    font-weight: 900;
    color: gray;
    pointer-events: none;
    transition: all 300ms ease-in-out;
}
.seletor_container.left .recebimento_txt{
    color: green;
}
.seletor_container .pagamento_txt{
    font-weight: 900;
    color: gray;
    pointer-events: none;
    transition: all 300ms ease-in-out;
}
.seletor_container.right .pagamento_txt{
    color: red;
}
.seletor_container .tipo_seletor_slider{
    position: relative;
    width: 50px;
    height: 24px;
    background-color: gray;
    border-radius: 50px;
    display: flex;
    align-items: center;
    transition: all 300ms ease-in-out;
}
.seletor_container .tipo_seletor_slider span{
    width: 19px;
    height: 19px;
    background-color: white;
    border-radius: 50%;
    position: absolute;
}
.seletor_container.left .tipo_seletor_slider{
    background-color: green;
}
.seletor_container.right .tipo_seletor_slider{
    background-color: red;
}
.seletor_container.left .tipo_seletor_slider span{
    left: 3px;
}
.seletor_container.right .tipo_seletor_slider span{
    right: 3px;
}



.recibo_container .div_input_recibo{
    width: auto;
    height: auto;
    display: flex;
    flex-direction: column;
}


.recibo_container .inline_div{
    position: relative;
    width: auto;
    height: auto;
    display: flex;
}
.inline_div i{
    position: absolute;
    right: 0;
    bottom: 0;
    width: 40px;
    height: 30px;
    background-color: rgb(0, 81, 255);
    border-start-start-radius: 4px;
    border-end-start-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    z-index: 10;
    cursor: pointer;
    transition: all 200ms ease-in-out;
}
.inline_div h6{
    position: absolute;
    right: 10px;
    bottom: 10px;
    color: white;
    z-index: 12;
    pointer-events: none;
    opacity: 0;
    transition: all 200ms ease-in-out;
}
.inline_div:hover i{
    width: 80px;
    padding-left: 10px;
    justify-content: start;
}
.inline_div:hover h6{
    opacity: 1;
}


.div_input_recibo h5{
    font-weight: 700;
}
.div_input_recibo input{
    width: 400px;
    height: 30px;
    padding-left: 10px;
    text-transform: uppercase;
    border: 1px solid rgb(173, 173, 173);
    border-bottom: 2px solid gray;
}
.div_input_recibo input:invalid{
    border-bottom: 2px solid red;
}
.recibo_container .btn_gerar_recibo{
    width: 400px;
    min-height: 35px;
    background-color: blue;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    opacity: 0.8;
    transition: all 300ms ease-in-out;
}
.recibo_container .btn_gerar_recibo:hover{
    opacity: 1;
}


#modal_abas{
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(1px);
    z-index: 900;
}
#modal_abas.hide{
    display: none;
}
#modal_abas .modal_abas_box{
    width: 40%;
    height: auto;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgb(100, 100, 100);
}
.modal_abas_box .modal_abas_header{
    width: 100%;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    border-bottom: 1px solid gray;
}
.modal_abas_header h5{
    font-weight: 900;
}
.modal_abas_header i{
    font-size: 24px;
    color: red;
    cursor: pointer;
    opacity: 0.8;
    transition: all 200ms ease-in-out;
}
.modal_abas_header i:hover{
    opacity: 1;
}
.modal_abas_box .modal_abas_body{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.modal_abas_body .modal_abas_abas{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    border-bottom: 1px solid gray;
    padding: 5px 0;
}
.modal_abas_abas .modal_abas_aba{
    position: relative;
    width: 100px;
    height: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgb(228, 228, 228);
    cursor: pointer;
    opacity: 0.8;
    transition: all 200ms ease-in-out;
}
.modal_abas_aba:hover{
    opacity: 1;
}
.modal_abas_aba span{
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 4px;
    background-color: gray;
}
.modal_abas_aba.active{
    opacity: 1;
}
.modal_abas_aba.active span{
    background-color: blue;
}

.modal_abas_body .modal_abas_container_header{
    width: 100%;
    height: 20px;
    background-color: rgb(78, 78, 78);
    display: flex;
    align-items: center;
    color: white;
    padding: 0 30px 0 20px;
}

.modal_abas_body .modal_abas_container{
    width: 100%;
    height: 60vh;
    overflow-x: hidden;
    overflow-y: scroll;
    display: none;
    background-color: rgb(221, 221, 221);
}
.modal_abas_container.active{
    display: flex;
}

.modal_abas_container .modal_abas_container_scroll{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.modal_abas_container_scroll .modal_abas_container_item{
    width: 98%;
    height: 30px;
    background-color: white;
    display: flex;
    align-items: center;
    padding: 0 0 0 20px;
    border-top: 1px solid gray;
    border-bottom: 1px solid gray;
    opacity: 0.8;
    transition: all 200ms ease-in-out;
    cursor: pointer;
}
.modal_abas_container_item:hover{
    opacity: 1;
}






.container .page_faturas{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items:start;
    padding: 20px 110px;
    overflow: hidden;
}
.page_faturas .page_faturas_buttons{
    width: 100%;
    height: 35px;
    display: flex;
    align-items: center;
    margin-top: 20px;
    border: 1px solid gray;
    background-color: white;
    padding-left: 10px;
    border-radius: 8px;
    gap: 10px;
}
.page_faturas_buttons h5{
    color: black;
}
.page_faturas_buttons h5 span{
    font-weight: 900;
    color: red;
    font-size: 16px;
}

.page_faturas .page_faturas_container{
    width: 100%;
    height: 75%;
    overflow-x: hidden;
    overflow-y: scroll;
    margin-top: 20px;
}
.page_faturas_container .page_faturas_container_scroll{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}
.page_faturas_container_scroll .fatura_card{
    position: relative;
    width: 300px;
    height: 130px;
    padding: 10px;
    border: 1px solid gray;
    border-radius: 8px;
    background-color: white;
    cursor: pointer;
    transition: all 200ms ease-in-out;
}
.fatura_card .fatura_card_multi_select{
    position: absolute;
    right: 0;
    top: 0;
    width: 40px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(218, 218, 218);
    border-start-end-radius: 8px;
    border-end-start-radius: 8px;
    border-left: 1px solid gray;
    border-bottom: 1px solid gray;
    z-index: 100;
    cursor: pointer;
}
.fatura_card_multi_select .fa-square{
    display: block;
    color: black;
}
.fatura_card_multi_select .fa-square-check{
    display: none;
    color: white;
}
.fatura_card.selected .fatura_card_multi_select{
    background-color: rgb(0, 81, 255);
}
.fatura_card.selected .fatura_card_multi_select .fa-square{
    display: none;
    color: black;
}
.fatura_card.selected .fatura_card_multi_select .fa-square-check{
    display: block;
    color: white;
}
.fatura_card .fatura_card_box{
    width: 100%;
    height: 100%;
    background-color: white;
    padding: 10px;
    border-radius: 8px;
    display: flex;
}
.fatura_card.selected .fatura_card_box{
    background-color: rgb(140, 177, 255);
}
.fatura_card.aguardando_pagamento .fatura_card_box{
    background-color: rgb(255, 180, 140);
}
.fatura_card.pago .fatura_card_box{
    background-color: rgb(112, 255, 117);
}
.fatura_card_box .fatura_card_left{
    width: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 10px;
    padding-right: 20px;
}
.fatura_card_left .fatura_card_situacao{
    width: auto;
    height: auto;
    text-align: center;
    border-radius: 10px;
    padding: 3px 15px;
    color: white;
}
.fatura_card_left .fatura_card_vencimento{
    width: 100%;
    height: auto;
    display: flex;
    gap: 10px;
}
.fatura_card_box .fatura_card_right{
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.fatura_card_right .fatura_card_qrcode_box{
    width: 80px;
    height: 80px;
    background-color: rgb(229, 229, 229);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.fatura_card_right .fatura_card_qrcode_box i{
    font-size: 36px;
    color: white;
}
.fatura_card.selected .fatura_card_box .fatura_card_right .fatura_card_qrcode_box{
    background-color:  white;
}
.fatura_card.selected .fatura_card_box .fatura_card_right .fatura_card_qrcode_box i{
    color:  rgb(140, 177, 255);
}

.container .footer_faturamento{
    position: relative;
    width: 100%;
    height: 50px;
    background-color: rgba(0, 61, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer_faturamento .btn_pagar{
    position: absolute;
    bottom: 20px;
    width: auto;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border-radius: 8px;
    background-color: green;
    border: 6px solid rgb(225, 225, 225);
    color: white;
    padding: 5px 10px;
    cursor: pointer;
    transition: all 200ms ease-in-out;
}
.footer_faturamento .btn_pagar:hover{
    background-color: rgb(0, 163, 0);
}


body #modal_pix{
    position: absolute;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(1px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 900;
}
#modal_pix.hide{
    display: none;
}
#modal_pix .modal_pix_box{
    width: 400px;
    height: 77vh;
    background-color: white;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.modal_pix_box .modal_pix_header{
    width: 100%;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(221, 221, 221);
    border-start-start-radius: 8px;
    border-start-end-radius: 8px;
    border-bottom: 1px solid gray;
}
.modal_pix_box .modal_pix_body{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    gap: 5px;
}
.modal_pix_body .modal_pix_qrcode_box{
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(220, 220, 220);
    border-radius: 8px;
}
.modal_pix_qrcode_box #modal_pix_qrcode{
    width: 130px;
    height: 130px;
    background-color: white;
    border-radius: 8px;
}
.modal_pix_qrcode_box .modal_caption{
    font-weight: 900;
    font-size: 12px;
}
.modal_pix_qrcode_box #modal_pix_copia_cola{
    font-size: 9px;
}

.modal_pix_body #modal_meses_referentes{
    max-width: 90%;
    word-wrap: break-word;
    text-align: center;
    color: rgb(50, 50, 50);
}

.modal_pix_body .btn_copia_cola{
    width: 300px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border-radius: 4px;
    background-color: rgb(0, 81, 255);
    cursor: pointer;
    gap: 5px;
    opacity: 0.8;
    transition: all 200ms ease-in-out;
}

.modal_pix_body .btn_container{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.btn_container .btn_finalizar_pagamento{
    width: 300px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border-radius: 4px;
    background-color: green;
    cursor: pointer;
    gap: 5px;
    opacity: 0.8;
    transition: all 200ms ease-in-out;
}
.btn_container .btn_finalizar_pagamento:hover{
    opacity: 1;
}

.btn_container .btn_cancelar_pagamento{
    width: 300px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border-radius: 4px;
    background-color: red;
    cursor: pointer;
    gap: 5px;
    opacity: 0.8;
    transition: all 200ms ease-in-out;
}
.btn_container .btn_cancelar_pagamento:hover{
    opacity: 1;
}


#modal_confirmar_pagamento{
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(1px);
    z-index: 900;
}
#modal_confirmar_pagamento.hide{
    display: none;
}
#modal_confirmar_pagamento .modal_confirmar_pagamento_box{
    width: 400px;
    height: auto;
    display: flex;
    flex-direction: column;
    background-color: white;
    border-radius: 8px;
}
.modal_confirmar_pagamento_box .modal_confirmar_pagamento_header{
    width: 100%;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid gray;
}
.modal_confirmar_pagamento_box .modal_confirmar_pagamento_body{
    width: 100%;
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgb(231, 231, 231);
    padding: 20px;
    gap: 10px;
}
.modal_confirmar_pagamento_body .modal_input_pagamento{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.modal_input_pagamento h6{
    font-weight: 900;
}
.modal_input_pagamento input{
    width: 100%;
    height: 30px;
    border: 1px solid gray;
    text-align: center;
    text-transform: uppercase;
}
.modal_confirmar_pagamento_box .modal_confirmar_pagamento_buttons{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-top: 1px solid gray;
    padding: 10px 20px;
    gap: 10px;
}
.modal_confirmar_pagamento_buttons .btn_modal_pagamento{
    width: 100%;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border-radius: 4px;
    opacity: 0.8;
    transition: all 200ms ease-in-out;
    cursor: pointer;
}
.modal_confirmar_pagamento_buttons .btn_modal_pagamento:hover{
    opacity: 1;
}
.modal_confirmar_pagamento_body .modal_check_pagamento{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 200ms ease-in-out;
}
.modal_check_pagamento .modal_check_pagamento_checks{
    width: 20px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 200ms ease-in-out;
}
.modal_check_pagamento_checks i.hide{
    display: none;
}
.modal_check_pagamento_checks .fa-toggle-off{
    color: black;
    font-size: 24px;
    transition: all 200ms ease-in-out;
}
.modal_check_pagamento_checks .fa-toggle-on{
    color: blue;
    font-size: 24px;
    transition: all 200ms ease-in-out;
}


#modal_info{
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(1px);
    z-index: 500;
}
#modal_info.hide{
    display: none;
}
#modal_info .modal_info_box{
    width: 400px;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: white;
    border-radius: 8px;
}
.modal_info_box .modal_info_header{
    width: 100%;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0 20px;
    border-bottom: 1px solid gray;
}
.modal_info_box .modal_info_body{
    width: 100%;
    min-height: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    gap: 5px;
    background-color: rgb(223, 223, 223);
}
.modal_info_body .modal_info_input{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.modal_info_input h6{
    font-weight: 900;
}
.modal_info_input input{
    width: 100%;
    height: 25px;
    border: 1px solid gray;
    text-align: center;
    outline: none;
    border-radius: 4px;
    cursor: default;
    font-weight: 900;
}
.modal_info_body .btn_modal_info{
    width: 100%;
    height: 35px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    color: white;
    cursor: pointer;
    gap: 10px;
    opacity: 0.8;
    transition: all 200ms ease-in-out;
}
.btn_modal_info:hover{
    opacity: 1;
}


.table_container .table_container_scroll_mensalidades{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.table_container_scroll_mensalidades .table_item_anotacao{
    width: 100%;
    height: 35px;
    background-color: white;
    border: 1px solid gray;
    display: flex;
    align-items: center;
    padding: 0 10px;
    cursor: pointer;
    transition: all 200ms ease-in-out;
}

.table_container_scroll_mensalidades .pessoa_mensalidade{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    cursor: default;
    border-bottom: 1px solid gray;
    padding: 5px 0;
}
.pessoa_mensalidade .pessoas_mensalidade_left{
    width: 15%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: start;
}
.pessoas_mensalidade_left .checkout{
    width: 40px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.pessoas_mensalidade_left .checkout.hide{
    display: none;
}
.pessoas_mensalidade_left .checkout .fa-square{
    display: block;
}
.pessoas_mensalidade_left .checkout .fa-square-check{
    color: indigo;
    display: none;
}

.table_container_scroll_mensalidades .pessoa_mensalidade.selected .pessoas_mensalidade_left .checkout .fa-square{
    display: none;
}
.table_container_scroll_mensalidades .pessoa_mensalidade.selected .pessoas_mensalidade_left .checkout .fa-square-check{
    display: block;
}

.pessoas_mensalidade_left h6{
    font-weight: 900;
    color: rgb(0, 81, 255);
    cursor: pointer;
    transition: all 200ms ease-in-out;
}
.pessoas_mensalidade_left h6:hover{
    text-decoration: underline;
}
.pessoa_mensalidade .pessoa_mensalidade_right{
    width: 85%;
    height: auto;
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}
.pessoa_mensalidade_right .pessoa_mensalidade_card{
    width: 80px;
    height: 50px;
    border: 1px solid gray;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3px;
    cursor: pointer;
    transition: all 200ms ease-in-out;
}
.pessoa_mensalidade_card .pessoa_mensalidade_card_box{
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--bc);
    padding: 5px;
    border-radius: 4px;
    transition: all 200ms ease-in-out;
}
.pessoa_mensalidade_card_box i{
    position: absolute;
    z-index: 900;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 89, 255, 0.3);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    display: none;
    cursor: pointer;
    transition: all 200ms ease-in-out;
}
.pessoa_mensalidade_card_box:hover i{
    display: flex;
}
.pessoa_mensalidade_card_box h5{
    font-weight: 900;
}
.pessoa_mensalidade_card_box h6{
    font-weight: 900;
    text-align: center;
}





















































/* MOBILE ---------------------------------------------------------------------------------------------------------- */
@media only screen and (max-width: 450px) {
    
    body #modal_caixa{
        position: absolute;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(1px);
        z-index: 800;
    }
    #modal_caixa.hide{
        display: none;
    }
    #modal_caixa .modal_caixa_box{
        width: 400px;
        height: auto;
        background-color: white;
        border-radius: 4px;
        display: flex;
        flex-direction: column;
    }
    .modal_caixa_box .modal_caixa_box_header{
        width: 100%;
        min-height: 50px;
        border-bottom: 1px solid gray;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 20px;
    }
    .modal_caixa_box_header h5{
        font-weight: 900;
    }
    .modal_caixa_box_header i{
        font-size: 24px;
        cursor: pointer;
        color: red;
    }
    .modal_caixa_box .modal_caixa_box_body{
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        padding: 10px 20px;
    }
    .modal_caixa_box_body .modal_input_div{
        width: 100%;
        display: flex;
        flex-direction: column;
    }
    .modal_input_div h6{
        font-weight: 900;
    }
    .modal_input_div input{
        width: 100%;
        height: 25px;
        border: 1px solid gray;
        border-bottom: 2px solid gray;
        padding-left: 10px;
        text-transform: uppercase;
    }
    .modal_input_div input:invalid{
        border-bottom: 2px solid red;
    }
    .modal_input_div textarea{
        width: 100%;
        height: 100px;
        border: 1px solid gray;
        border-bottom: 2px solid gray;
        padding: 10px;
        text-transform: uppercase;
        resize: none;
    }
    .modal_input_div textarea:invalid{
        border-bottom: 2px solid red;
    }
    .modal_caixa_box_body .btn_salvar_modal{
        width: 100%;
        height: 35px;
        border-radius: 4px;
        background-color: blue;
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        cursor: pointer;
        opacity: 0.8;
        transition: all 200ms ease-in-out;
    }
    .modal_caixa_box_body .btn_salvar_modal:hover{
        opacity: 1;
    }
    .modal_caixa_box_body .btn_salvar_modal.hide{
        display: none;
    }
    
    
    .modal_caixa_box_body .btn_pagar_modal{
        width: 100%;
        height: 35px;
        border-radius: 4px;
        background-color: green;
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        cursor: pointer;
        opacity: 0.8;
        transition: all 200ms ease-in-out;
    }
    .modal_caixa_box_body .btn_pagar_modal:hover{
        opacity: 1;
    }
    .modal_caixa_box_body .btn_pagar_modal.hide{
        display: none;
    }
    
    
    .modal_caixa_box_body .btn_excluir_modal{
        width: 100%;
        height: 35px;
        border-radius: 4px;
        background-color: red;
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        cursor: pointer;
        opacity: 0.8;
        transition: all 200ms ease-in-out;
    }
    .modal_caixa_box_body .btn_excluir_modal:hover{
        opacity: 1;
    }
    .modal_caixa_box_body .btn_excluir_modal.hide{
        display: none;
    }
    
    
    .modal_caixa_box_body .btn_arquivar_modal{
        width: 100%;
        height: 35px;
        border-radius: 4px;
        background-color: orangered;
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        cursor: pointer;
        opacity: 0.8;
        transition: all 200ms ease-in-out;
    }
    .modal_caixa_box_body .btn_arquivar_modal:hover{
        opacity: 1;
    }
    .modal_caixa_box_body .btn_arquivar_modal.hide{
        display: none;
    }
    
    
    
    .modal_caixa_box_body .btn_desarquivar_modal{
        width: 100%;
        height: 35px;
        border-radius: 4px;
        background-color: orangered;
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        cursor: pointer;
        opacity: 0.8;
        transition: all 200ms ease-in-out;
    }
    .modal_caixa_box_body .btn_desarquivar_modal:hover{
        opacity: 1;
    }
    .modal_caixa_box_body .btn_desarquivar_modal.hide{
        display: none;
    }
    
    
    
    body .btn{
        width: 130px;
        height: 40px;
        border-radius: 4px;
        cursor: pointer;
        opacity: 0.8;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 5px;
        transition: all 200ms ease-in-out;
    }
    .btn h6{
        font-size: 14px;
        color: white;
    }
    .btn:hover{
        opacity: 1;
    }
    
    .container .header{
        position: relative;
        width: 100vw;
        min-height: 100px;
        background-color: rgb(0, 81, 255);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
    }
    .header h5{
        color: white;
        font-size: 16px;
    }
    .header img{
        width: 40px;
        height: auto;
    }
    .header .return{
        position: absolute;
        left: 0;
        width: auto;
        height: 100%;
        border-right: 1px solid white;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 0 10px;
        cursor: pointer;
        color: white;
        transition: all 200ms ease-in-out;
    }
    .return h5{
        font-size: 12px;
        pointer-events: none;
        transition: all 200ms ease-in-out;
    }
    .return i{
        font-size: 24px;
        pointer-events: none;
        transition: all 200ms ease-in-out;
    }
    .header .return:hover{
        background-color: white;
    }
    .header .return:hover h5{
        color: rgb(0, 81, 255);
    }
    .header .return:hover i{
        color: rgb(0, 81, 255);
    }
    .header .user_div{
        position: relative;
        right: 0;
        width: 100%;
        height: auto;
        border-left: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 0 10px;
    }
    .user_div img{
        width: 35px;
        height: 35px;
        border-radius: 50%;
        border: 2px solid white;
        pointer-events: none;
    }
    .user_div h5{
        font-size: 12px;
        pointer-events: none;
    }
    .user_div i{
        width: 30px;
        height: 30px;
        background-color: white;
        font-size: 24px;
        color: rgb(255, 55, 55);
        cursor: pointer;
        border-radius: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 200ms ease-in-out;
    }
    .user_div i:hover{
        color: red;
        height: 50px;
    }
    
    .container .page_name{
        width: 100%;
        height: 20px;
        background-color: gray;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .page_name h6{
        font-size: 12px;
        color: white;
    }
    
    
    
    
    /* LOGIN */
    .container .login_container{
        width: 100vw;
        height: 100vh;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }
    .login_container h5{
        color: rgb(0, 81, 255);
        font-size: 18px;
    }
    .login_container input{
        width: 300px;
        height: 35px;
        border: 1px solid gray;
        border-radius: 4px;
        padding-left: 10px;
        border-bottom: 2px solid gray;
        text-transform: uppercase;
    }
    .login_container input:invalid{
        border-bottom: 2px solid red;
    }
    .login_container a{
        font-size: 11px;
        font-weight: 900;
        color: gray;
        width: 300px;
        height: 35px;
        border-bottom: 1px solid gray;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        border-radius: 4px;
        transition: all 200ms ease-in-out;
    }
    .login_container a:hover{
        color: orangered;
    }
    
    
    
    
    
    
    
    /* INDEX */
    body .index_container{
        width: 100vw;
        height: 100vh;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .index_container .buttons_container{
        width: 90%;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        margin-top: 20px;
        flex-wrap: wrap;
    }
    .buttons_container a{
        width: 100%;
        height: 50px;
        border-radius: 4px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: start;
        color: white;
        transition: all 200ms ease-in-out;
    }
    .buttons_container a i{
        width: 15%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        border-start-start-radius: 4px;
        border-end-start-radius: 4px;
    }
    .buttons_container a h4{
        width: 85%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        border-start-end-radius: 4px;
        border-end-end-radius: 4px;
        opacity: 0.7;
        transition: all 200ms ease-in-out;
    }
    .buttons_container a h4:hover{
        opacity: 0.9;
    }
    
    .index_container .alert{
        position: relative;
        width: 90vw;
        min-height: 40px;
        display: flex;
        align-items: center;
        background-color: white;
        border-radius: 4px;
        box-shadow: 0 0 10px gray;
        cursor: pointer;
    }
    .alert .alert_left{
        min-width: 30px;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        border-start-start-radius: 4px;
        border-end-start-radius: 4px;
        color: white;
    }
    .alert .alert_right{
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: start;
        padding-left: 20px;
    }
    .alert_right h6{
        font-size: 11px;
    }
    .alert .btn_alert{
        position: absolute;
        right: 10px;
        width: 50px;
        height: 80%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        gap: 5px;
        border-radius: 4px;
        cursor: pointer;
        opacity: 0.8;
        transition: all 200ms ease-in-out;
    }
    .alert .btn_alert h6{
        display: none;
    }
    .alert .btn_alert:hover{
        opacity: 1;
    }
    
    .index_container .alert_container{
        width: 90vw;
        height: auto;
        display: flex;
        flex-direction: row;
        background-color: white;
        border-end-start-radius: 8px;
        border-end-end-radius: 8px;
        box-shadow: 0 0 10px gray;
        padding: 10px;
        cursor: default;
    }
    .alert_container .alert_container_left{
        width: auto;
        height: auto;
        display: flex;
        flex-direction: column;
        padding-right: 10px;
    }
    .alert_container .alert_container_right{
        width: auto;
        height: auto;
        display: flex;
        flex-direction: column;
    }
    
    
    
    
    
    
    .container .page_container{
        width: 90vw;
        height: 100vh;
        overflow-x: hidden;
        overflow-y: scroll;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .container .page_container .page_container_buttons_container{
        width: 100%;
        height: 50px;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .page_container_buttons_container .btn_toggle_opcoes{
        width: 35px;
        height: 35px;
        border-radius: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        cursor: pointer;
        opacity: 0.8;
        transition: all 200ms ease-in-out;
    }
    .page_container_buttons_container .btn_toggle_opcoes:hover{
        opacity: 1;
    }
    .page_container_buttons_container .btn_gerar_mensalidades{
        width: 280px;
        height: 35px;
        background-color: indigo;
        color: white;
        border-radius: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 5px;
        cursor: pointer;
        opacity: 0.8;
        transition: all 200ms ease-in-out;
    }
    .page_container_buttons_container .btn_gerar_mensalidades:hover{
        opacity: 1;
    }
    
    .page_container .btn_adicionar{
        width: 150px;
        height: 35px;
        background-color: green;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        color: white;
        border-radius: 4px;
        cursor: pointer;
    }
    
    .page_container .table{
        width: 100%;
        height: 100%;
        border: 1px solid gray;
        display: flex;
        flex-direction: column;
    }
    .table .table_header{
        display: none;
    }
    .table .table_container{
        width: 100%;
        height: 100%;
        overflow-x: hidden;
        overflow-y: scroll;
    }
    .table_container .table_container_scroll{
        display: none;
    }

    .table_container .table_container_scroll_mobile{
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 5px;
    }
    .table_container_scroll_mobile .table_item_mobile{
        width: 100%;
        height: auto;
        display: flex;
        border: 1px solid gray;
        padding: 5px;
    }
    .table_item_mobile .table_item_mobile_left{
        width: 30px;
        height: 110px;
        background-color: rgb(0, 81, 255);
        
        color: white;
    }
    .table_item_mobile_left i{
        width: 30px;
        height: 110px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .table_item_mobile .table_item_mobile_right{
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 5px;
        margin-left: 5px;
    }
    .table_item_mobile_right .btn_qrcode{
        width: 50%;
        height: 25px;
        border-radius: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 5px;
        color: white;
        cursor: pointer;
    }
    
    
    .page_container .protocol_box{
        width: 100vw;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 5px;
        margin-top: 10px;
    }
    .protocol_box .input_div_response{
        width: 90% !important;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .protocol_box .input_div{
        position: relative;
        width: 90% !important;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }
    
    .input_div input{
        width: 100% !important;
        height: 35px;
        padding-left: 10px;
        border: 1px solid gray;
        border-bottom: 2px solid gray;
        text-transform: uppercase;
    }
    .input_div input:invalid{
        border-bottom: 2px solid red;
    }
    
    .input_div select{
        width: 100% !important;
        height: 35px;
        padding-left: 10px;
        border: 2px solid blue;
        text-transform: uppercase;
        cursor: pointer;
        color: blue;
    }
    .input_div i{
        position: absolute;
        right: 10px;
        bottom: 8px;
        color: blue;
    }
    
    .input_div textarea{
        width: 100% !important;
        height: 150px;
        padding: 10px;
        border: 1px solid gray;
        border-bottom: 2px solid gray;
        text-transform: uppercase;
        resize: none;
    }
    
    .protocol_box .btn_salvar{
        margin-top: 20px;
        width: 100%;
        min-height: 50px;
        background-color: green;
        border-radius: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        color: white;
        cursor: pointer;
        opacity: 0.8;
        transition: all 200ms ease-in-out;
    }
    .protocol_box .btn_salvar:hover{
        opacity: 1;
    }
    
    
    
    
    
    
    .protocol_box .input_checks{
        width: 400px;
        height: auto;
        display: flex;
        flex-direction: column;
    }
    
    .input_checks .check_container{
        width: 100%;
        min-height: 50px;
        display: flex;
        align-items: center;
        justify-content: space-around;
        border: 1px solid gray;
        padding: 5px;
    }
    .check_container .check{
        width: 30%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }
    .check_container .check h6{
        font-weight: 900;
    }
    .check_container .check .fa-square-check{
        display: none;
        font-size: 24px;
        color: green;
    }
    .check_container .check .fa-square{
        display: block;
        font-size: 24px;
    }
    .check_container .check.checked .fa-square-check{
        display: block;
    }
    .check_container .check.checked .fa-square{
        display: none;
    }
    
    
    
    
    
    
    .page_container .vertical_box{
        width: 100vw;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    
    
    .page_container .grid_container{
        width: 90%;
        height: 100%;
        overflow-x: hidden;
        overflow-y: scroll;
    }
    .grid_container .grid_scroll{
        width: 100%;
        height: auto;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }
    .grid_scroll .grid_card{
        width: 300px;
        height: auto;
        display: flex;
        flex-direction: column;
        background-color: white;
        border: 2px solid gray;
        border-radius: 8px;
        padding: 10px;
        cursor: pointer;
        transition: all 200ms ease-in-out;
    }
    .grid_card:hover{
        border: 2px solid rgb(0, 81, 255);
    }
    .grid_card .card_top{
        width: 100%;
        min-height: 25px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .card_top h5{
        font-weight: 900;
        font-size: 16px;
        color: rgb(0, 81, 255);
    }
    .card_top i{
        font-size: 24px;
        color: rgb(0, 81, 255);
    }
    .grid_card.hoje .card_top h5,
    .grid_card.hoje .card_top i{
        color: indigo;
    }
    .grid_card .card_bottom{
        width: 100%;
        height: auto;
        display: flex;
        margin-top: 10px;
    }
    .card_bottom .card_bottom_left{
        width: 40%;
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 5px;
    }
    .card_bottom_left h6{
        font-weight: 900;
    }
    .card_bottom .card_bottom_right{
        width: 60%;
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 5px;
    }
    .card_bottom_right .periodos_container{
        width: auto;
        height: auto;
        display: flex;
        gap: 10px;
    }
    .periodos_container .periodo{
        width: auto;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    
    
    
    .page_container .page_caixa{
        width: 100vw;
        height: 85vh;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .page_caixa .page_abas{
        width: 100%;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1px;
    }
    .page_abas .aba{
        position: relative;
        width: 60px;
        height: 50px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background-color: rgb(231, 231, 231);
        gap: 5px;
        padding: 3px;
        cursor: pointer;
        transition: all 200ms ease-in-out;
    }
    .aba i{
        font-size: 16px;
    }
    .aba h5{
        font-size: 8px;
    }
    .aba span{
        position: absolute;
        bottom: -4px;
        width: 100%;
        height: 4px;
        background-color: gray;
    }
    .aba:hover{
        background-color: white;
    }
    .aba.active{
        background-color: white;
    }
    
    .aba.active span{
        background-color: blue;
    }
    
    .page_caixa .aba_container{
        width: 100vw;
        height: 72vh;
        margin-top: 10px;
        display: none;
        padding: 0;
        border-radius: 8px;
        align-items: center;
    }
    .page_caixa .aba_container.active{
        display: flex;
        flex-direction: column;
    }
    .aba_container .btn_add{
        width: 170px;
        height: 35px;
        background-color: blue;
        border-radius: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 5px;
        color: white;
        cursor: pointer;
        opacity: 0.8;
        transition: all 200ms ease-in-out;
    }
    .aba_container .btn_add:hover{
        opacity: 1;
    }
    
    .aba_container .aba_container_list{
        width: 100%;
        height: 55vh;
        overflow-x: hidden;
        overflow-y: scroll;
    }
    .aba_container_list .aba_container_list_scroll{
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 5px;
    }
    
    .aba_container_list_scroll:has(.aba_container_item:hover) .aba_container_item:not(:hover){
        opacity: 0.7;
    }
    
    .aba_container_list_scroll .aba_container_item{
        position: relative;
        width: 100%;
        min-height: 100px;
        height: auto;
        display: flex;
        flex-direction: column;
        background-color: white;
        cursor: pointer;
        transition: all 200ms ease-in-out;
    }
    .aba_container_item .aba_container_item_left{
        width: 100%;
        min-height: 20px;
        color: white;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        border-start-start-radius: 4px;
        border-end-start-radius: 4px;
        gap: 5px;
    }
    .aba_container_item .aba_container_item_center{
        display: none;
    }
    .aba_container_item_center h6{
        font-weight: 900;
    }
    .aba_container_item .aba_container_item_right{ 
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 5px;
        background-color: white;
        padding: 10px;
    }
    .aba_container_item:nth-last-child(){ 
        display: none;
    }
    .aba_container_item .aba_container_item_buttons{ 
        position: relative;
        right: 0;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 5px;
        padding: 5px;
    }
    .aba_container_item_buttons:has(){
        opacity: 0.7;
    }
    .aba_container_item_buttons .aba_container_item_buttom{
        width: 100px;
        height: 25px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 5px;
        border-radius: 4px;
        cursor: pointer;
        color: white;
        opacity: 0.8;
        transition: all 200ms ease-in-out;
    }
    .aba_container_item_buttons .aba_container_item_buttom:nth-child(1){
        background-color: green;
    }
    .aba_container_item_buttons .aba_container_item_buttom:nth-child(2){
        background-color: red;
    }
    .aba_container_item_buttons .aba_container_item_buttom:nth-child(3){
        background-color: orangered;
    }
    .aba_container_item_buttons .aba_container_item_buttom:nth-child(4){
        background-color: orangered;
    }
    .aba_container_item_buttons .aba_container_item_buttom:hover{
        opacity: 1;
    }
    
    
    .aba_container .cobranca_container{
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .cobranca_container .qrcode_div{
        width: 150px;
        height: 150px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid gray;
        border-radius: 8px;
    }
    .qrcode_div .qrcode_image{
        width: 130px;
        height: 130px;
        border: 2px solid gray;
        border-radius: 4px;
    }
    .cobranca_container #copia_cola{
        width: 350px;
        text-align: center;
        margin-top: 10px;
        color: red;
    }
    
    
    
    
    
    
    .page_caixa .page_filters{
        width: 100vw;
        min-height: 120px;
        background-color: white;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0;
        gap: 5px;
        margin-top: 10px;
        border: 1px solid gray;
    }
    .page_filters .div_inputs_extrato{
        width: auto;
        height: 100%;
        display: flex;
        align-items: center;
        gap: 5px;
    }
    .div_inputs_extrato .filter_div{
        width: auto;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: start;
        justify-content: center;
    }
    .filter_div input{
        border: 1px solid gray;
        width: 100px;
        height: 25px;
        padding-left: 10px;
    }
    .div_inputs_extrato .btn_filtrar{
        width: 100px;
        height: 25px;
        border-radius: 4px;
        background-color: green;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        cursor: pointer;
        margin-top: 12px;
    }
    .page_filters .div_hotkeys_extrato{
        width: 100%;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 5px;
        padding-bottom: 10px;
    }
    .div_hotkeys_extrato .hotkey{
        width: 60px;
        height: auto;
        border-radius: 4px;
        background-color: gray;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: white;
        cursor: pointer;
        margin-top: 12px;
        padding: 5px 0;
        gap: 5px;
    }
    .div_hotkeys_extrato .hotkey.active{
        background-color: blue;
    }
    
    .aba_container .extrato_header{
        width: 100%;
        height: 25px;
        background-color: gray;
        display: flex;
        align-items: center;
        padding: 0 30px 0 10px;
        color: white;
        margin-top: 10px;
    }
    .aba_container .extrato_list{
        width: 100%;
        height: 55vh;
        overflow-x: hidden;
        overflow-y: scroll;
    }
    .extrato_list .extrato_scroll{
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 3px;
    }
    .extrato_scroll .extrato_item{
        width: 100%;
        height: 20px;
        display: flex;
        align-items: center;
        cursor: pointer;
        background-color: white;
        padding: 0 10px;
    }
    
    
    .aba_container .recibo_container{
        width: 100vw;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: start;
        padding-top: 30px;
        gap: 10px;
    }
    
    .recibo_container .div_input_tipo_seletor{
        width: auto;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .div_input_tipo_seletor h4{
        font-weight: 900;
    }
    .div_input_tipo_seletor .seletor_container{
        width: 300px;
        height: 30px;
        padding: 0 20px;
        text-transform: uppercase;
        border: 1px solid rgb(173, 173, 173);
        background-color: white;
        border-radius: 4px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: space-between;
        transition: all 300ms ease-in-out;
    }
    .seletor_container .recebimento_txt{
        font-weight: 900;
        color: gray;
        pointer-events: none;
        transition: all 300ms ease-in-out;
    }
    .seletor_container.left .recebimento_txt{
        color: green;
    }
    .seletor_container .pagamento_txt{
        font-weight: 900;
        color: gray;
        pointer-events: none;
        transition: all 300ms ease-in-out;
    }
    .seletor_container.right .pagamento_txt{
        color: red;
    }
    .seletor_container .tipo_seletor_slider{
        position: relative;
        width: 50px;
        height: 24px;
        background-color: gray;
        border-radius: 50px;
        display: flex;
        align-items: center;
        transition: all 300ms ease-in-out;
    }
    .seletor_container .tipo_seletor_slider span{
        width: 19px;
        height: 19px;
        background-color: white;
        border-radius: 50%;
        position: absolute;
    }
    .seletor_container.left .tipo_seletor_slider{
        background-color: green;
    }
    .seletor_container.right .tipo_seletor_slider{
        background-color: red;
    }
    .seletor_container.left .tipo_seletor_slider span{
        left: 3px;
    }
    .seletor_container.right .tipo_seletor_slider span{
        right: 3px;
    }
    
    
    
    .recibo_container .div_input_recibo{
        width: 90%;
        height: auto;
        display: flex;
        flex-direction: column;
    }
    
    
    .recibo_container .inline_div{
        position: relative;
        width: 90%;
        height: auto;
        display: flex;
    }
    .inline_div i{
        position: absolute;
        right: 0;
        bottom: 0;
        width: 40px;
        height: 30px;
        background-color: rgb(0, 81, 255);
        border-start-start-radius: 4px;
        border-end-start-radius: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        z-index: 10;
        cursor: pointer;
        transition: all 200ms ease-in-out;
    }
    .inline_div h6{
        position: absolute;
        right: 10px;
        bottom: 10px;
        color: white;
        z-index: 12;
        pointer-events: none;
        opacity: 0;
        transition: all 200ms ease-in-out;
    }
    .inline_div:hover i{
        width: 80px;
        padding-left: 10px;
        justify-content: start;
    }
    .inline_div:hover h6{
        opacity: 1;
    }
    
    
    .div_input_recibo h5{
        font-weight: 700;
    }
    .div_input_recibo input{
        width: 100%;
        height: 30px;
        padding-left: 10px;
        text-transform: uppercase;
        border: 1px solid rgb(173, 173, 173);
        border-bottom: 2px solid gray;
    }
    .div_input_recibo input:invalid{
        border-bottom: 2px solid red;
    }
    .recibo_container .btn_gerar_recibo{
        width: 400px;
        height: 35px;
        background-color: blue;
        border-radius: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        cursor: pointer;
        opacity: 0.8;
        transition: all 300ms ease-in-out;
    }
    .recibo_container .btn_gerar_recibo:hover{
        opacity: 1;
    }
    
    
    #modal_abas{
        position: absolute;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(1px);
        z-index: 900;
    }
    #modal_abas.hide{
        display: none;
    }
    #modal_abas .modal_abas_box{
        width: 40%;
        height: auto;
        max-height: 80vh;
        display: flex;
        flex-direction: column;
        align-items: center;
        background-color: white;
        border-radius: 8px;
        box-shadow: 0 0 10px rgb(100, 100, 100);
    }
    .modal_abas_box .modal_abas_header{
        width: 100%;
        min-height: 50px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 20px;
        border-bottom: 1px solid gray;
    }
    .modal_abas_header h5{
        font-weight: 900;
    }
    .modal_abas_header i{
        font-size: 24px;
        color: red;
        cursor: pointer;
        opacity: 0.8;
        transition: all 200ms ease-in-out;
    }
    .modal_abas_header i:hover{
        opacity: 1;
    }
    .modal_abas_box .modal_abas_body{
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .modal_abas_body .modal_abas_abas{
        width: 100%;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
        border-bottom: 1px solid gray;
        padding: 5px 0;
    }
    .modal_abas_abas .modal_abas_aba{
        position: relative;
        width: 100px;
        height: 50px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background-color: rgb(228, 228, 228);
        cursor: pointer;
        opacity: 0.8;
        transition: all 200ms ease-in-out;
    }
    .modal_abas_aba:hover{
        opacity: 1;
    }
    .modal_abas_aba span{
        position: absolute;
        bottom: 0;
        width: 100%;
        height: 4px;
        background-color: gray;
    }
    .modal_abas_aba.active{
        opacity: 1;
    }
    .modal_abas_aba.active span{
        background-color: blue;
    }
    
    .modal_abas_body .modal_abas_container_header{
        width: 100%;
        height: 20px;
        background-color: rgb(78, 78, 78);
        display: flex;
        align-items: center;
        color: white;
        padding: 0 30px 0 20px;
    }
    
    .modal_abas_body .modal_abas_container{
        width: 100%;
        height: 60vh;
        overflow-x: hidden;
        overflow-y: scroll;
        display: none;
        background-color: rgb(221, 221, 221);
    }
    .modal_abas_container.active{
        display: flex;
    }
    
    .modal_abas_container .modal_abas_container_scroll{
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 3px;
    }
    .modal_abas_container_scroll .modal_abas_container_item{
        width: 98%;
        height: 30px;
        background-color: white;
        display: flex;
        align-items: center;
        padding: 0 0 0 20px;
        border-top: 1px solid gray;
        border-bottom: 1px solid gray;
        opacity: 0.8;
        transition: all 200ms ease-in-out;
        cursor: pointer;
    }
    .modal_abas_container_item:hover{
        opacity: 1;
    }
    
    
    
    
    
    
    .container .page_faturas{
        width: 100vw;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items:center;
        padding: 10px;
        overflow: hidden;
    }
    .page_faturas .page_faturas_buttons{
        width: 100%;
        height: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 20px;
        border: 1px solid gray;
        background-color: white;
        padding-left: 0;
        border-radius: 8px;
        gap: 10px;
    }
    .page_faturas_buttons h5{
        color: black;
        font-size: 9px;
    }
    .page_faturas_buttons h5 span{
        font-weight: 900;
        color: red;
        font-size: 12px;
    }
    
    .page_faturas .page_faturas_container{
        width: 100%;
        height: 75%;
        overflow-x: hidden;
        overflow-y: scroll;
        margin-top: 20px;
    }
    .page_faturas_container .page_faturas_container_scroll{
        width: 100%;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
    }
    .page_faturas_container_scroll .fatura_card{
        position: relative;
        width: 300px;
        height: 130px;
        padding: 10px;
        border: 1px solid gray;
        border-radius: 8px;
        background-color: white;
        cursor: pointer;
        transition: all 200ms ease-in-out;
    }
    .fatura_card .fatura_card_multi_select{
        position: absolute;
        right: 0;
        top: 0;
        width: 40px;
        height: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: rgb(218, 218, 218);
        border-start-end-radius: 8px;
        border-end-start-radius: 8px;
        border-left: 1px solid gray;
        border-bottom: 1px solid gray;
        z-index: 100;
        cursor: pointer;
    }
    .fatura_card_multi_select .fa-square{
        display: block;
        color: black;
    }
    .fatura_card_multi_select .fa-square-check{
        display: none;
        color: white;
    }
    .fatura_card.selected .fatura_card_multi_select{
        background-color: rgb(0, 81, 255);
    }
    .fatura_card.selected .fatura_card_multi_select .fa-square{
        display: none;
        color: black;
    }
    .fatura_card.selected .fatura_card_multi_select .fa-square-check{
        display: block;
        color: white;
    }
    .fatura_card .fatura_card_box{
        width: 100%;
        height: 100%;
        background-color: white;
        padding: 10px;
        border-radius: 8px;
        display: flex;
    }
    .fatura_card.selected .fatura_card_box{
        background-color: rgb(140, 177, 255);
    }
    .fatura_card.aguardando_pagamento .fatura_card_box{
        background-color: rgb(255, 180, 140);
    }
    .fatura_card.pago .fatura_card_box{
        background-color: rgb(112, 255, 117);
    }
    .fatura_card_box .fatura_card_left{
        width: auto;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: start;
        gap: 10px;
        padding-right: 20px;
    }
    .fatura_card_left .fatura_card_situacao{
        width: auto;
        height: auto;
        text-align: center;
        border-radius: 10px;
        padding: 3px 15px;
        color: white;
    }
    .fatura_card_left .fatura_card_vencimento{
        width: 100%;
        height: auto;
        display: flex;
        gap: 10px;
    }
    .fatura_card_box .fatura_card_right{
        width: auto;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .fatura_card_right .fatura_card_qrcode_box{
        width: 80px;
        height: 80px;
        background-color: rgb(229, 229, 229);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .fatura_card_right .fatura_card_qrcode_box i{
        font-size: 36px;
        color: white;
    }
    .fatura_card.selected .fatura_card_box .fatura_card_right .fatura_card_qrcode_box{
        background-color:  white;
    }
    .fatura_card.selected .fatura_card_box .fatura_card_right .fatura_card_qrcode_box i{
        color:  rgb(140, 177, 255);
    }
    
    .container .footer_faturamento{
        position: relative;
        width: 100%;
        height: 50px;
        background-color: rgba(0, 61, 0, 0.5);
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .footer_faturamento .btn_pagar{
        position: absolute;
        bottom: 20px;
        width: auto;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 5px;
        border-radius: 8px;
        background-color: green;
        border: 6px solid rgb(225, 225, 225);
        color: white;
        padding: 5px 10px;
        cursor: pointer;
        transition: all 200ms ease-in-out;
    }
    .footer_faturamento .btn_pagar:hover{
        background-color: rgb(0, 163, 0);
    }
    
    
    body #modal_pix{
        position: absolute;
        width: 100vw;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(1px);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 900;
    }
    #modal_pix.hide{
        display: none;
    }
    #modal_pix .modal_pix_box{
        width: 400px;
        height: 90vh;
        background-color: white;
        border-radius: 8px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .modal_pix_box .modal_pix_header{
        width: 100%;
        min-height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: rgb(221, 221, 221);
        border-start-start-radius: 8px;
        border-start-end-radius: 8px;
        border-bottom: 1px solid gray;
    }
    .modal_pix_box .modal_pix_body{
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 20px;
        gap: 5px;
    }
    .modal_pix_body .modal_pix_qrcode_box{
        width: 150px;
        height: 150px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: rgb(220, 220, 220);
        border-radius: 8px;
    }
    .modal_pix_qrcode_box #modal_pix_qrcode{
        width: 130px;
        height: 130px;
        background-color: white;
        border-radius: 8px;
    }
    .modal_pix_qrcode_box .modal_caption{
        font-weight: 900;
        font-size: 12px;
    }
    .modal_pix_qrcode_box #modal_pix_copia_cola{
        font-size: 9px;
    }
    
    .modal_pix_body #modal_meses_referentes{
        max-width: 90%;
        word-wrap: break-word;
        text-align: center;
        color: rgb(50, 50, 50);
    }
    
    .modal_pix_body .btn_copia_cola{
        width: 300px;
        height: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        border-radius: 4px;
        background-color: rgb(0, 81, 255);
        cursor: pointer;
        gap: 5px;
        opacity: 0.8;
        transition: all 200ms ease-in-out;
    }
    
    .modal_pix_body .btn_container{
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: center;
        justify-content: center;
    }
    
    .btn_container .btn_finalizar_pagamento{
        width: 300px;
        height: 55px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        border-radius: 4px;
        background-color: green;
        cursor: pointer;
        gap: 5px;
        opacity: 0.8;
        transition: all 200ms ease-in-out;
    }
    .btn_container .btn_finalizar_pagamento:hover{
        opacity: 1;
    }
    
    .btn_container .btn_cancelar_pagamento{
        width: 300px;
        height: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        border-radius: 4px;
        background-color: red;
        cursor: pointer;
        gap: 5px;
        opacity: 0.8;
        transition: all 200ms ease-in-out;
    }
    .btn_container .btn_cancelar_pagamento:hover{
        opacity: 1;
    }
    
    
    #modal_confirmar_pagamento{
        position: absolute;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(1px);
        z-index: 900;
    }
    #modal_confirmar_pagamento.hide{
        display: none;
    }
    #modal_confirmar_pagamento .modal_confirmar_pagamento_box{
        width: 400px;
        height: auto;
        display: flex;
        flex-direction: column;
        background-color: white;
        border-radius: 8px;
    }
    .modal_confirmar_pagamento_box .modal_confirmar_pagamento_header{
        width: 100%;
        min-height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-bottom: 1px solid gray;
    }
    .modal_confirmar_pagamento_box .modal_confirmar_pagamento_body{
        width: 100%;
        min-height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background-color: rgb(231, 231, 231);
        padding: 20px;
        gap: 10px;
    }
    .modal_confirmar_pagamento_body .modal_input_pagamento{
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .modal_input_pagamento h6{
        font-weight: 900;
    }
    .modal_input_pagamento input{
        width: 100%;
        height: 30px;
        border: 1px solid gray;
        text-align: center;
        text-transform: uppercase;
    }
    .modal_confirmar_pagamento_box .modal_confirmar_pagamento_buttons{
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        border-top: 1px solid gray;
        padding: 10px 20px;
        gap: 10px;
    }
    .modal_confirmar_pagamento_buttons .btn_modal_pagamento{
        width: 100%;
        height: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        border-radius: 4px;
        opacity: 0.8;
        transition: all 200ms ease-in-out;
        cursor: pointer;
    }
    .modal_confirmar_pagamento_buttons .btn_modal_pagamento:hover{
        opacity: 1;
    }
    .modal_confirmar_pagamento_body .modal_check_pagamento{
        width: 100%;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        cursor: pointer;
        transition: all 200ms ease-in-out;
    }
    .modal_check_pagamento .modal_check_pagamento_checks{
        width: 20px;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 200ms ease-in-out;
    }
    .modal_check_pagamento_checks i.hide{
        display: none;
    }
    .modal_check_pagamento_checks .fa-toggle-off{
        color: black;
        font-size: 24px;
        transition: all 200ms ease-in-out;
    }
    .modal_check_pagamento_checks .fa-toggle-on{
        color: blue;
        font-size: 24px;
        transition: all 200ms ease-in-out;
    }
    
    
    #modal_info{
        position: absolute;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(1px);
        z-index: 500;
    }
    #modal_info.hide{
        display: none;
    }
    #modal_info .modal_info_box{
        width: 400px;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        background-color: white;
        border-radius: 8px;
    }
    .modal_info_box .modal_info_header{
        width: 100%;
        min-height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        padding: 0 20px;
        border-bottom: 1px solid gray;
    }
    .modal_info_box .modal_info_body{
        width: 100%;
        min-height: 50px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 20px;
        gap: 5px;
        background-color: rgb(223, 223, 223);
    }
    .modal_info_body .modal_info_input{
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .modal_info_input h6{
        font-weight: 900;
    }
    .modal_info_input input{
        width: 100%;
        height: 25px;
        border: 1px solid gray;
        text-align: center;
        outline: none;
        border-radius: 4px;
        cursor: default;
        font-weight: 900;
    }
    .modal_info_body .btn_modal_info{
        width: 100%;
        height: 35px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        border-radius: 4px;
        color: white;
        cursor: pointer;
        gap: 10px;
        opacity: 0.8;
        transition: all 200ms ease-in-out;
    }
    .btn_modal_info:hover{
        opacity: 1;
    }
    
    
    
    .table_container .table_container_scroll_mensalidades{
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .table_container_scroll_mensalidades .table_item_anotacao{
        width: 100%;
        min-height: 30px;
        background-color: white;
        border: 1px solid gray;
        display: flex;
        align-items: center;
        padding: 0 10px;
        cursor: pointer;
        transition: all 200ms ease-in-out;
    }
    .table_item_anotacao h6:nth-child(1){
        min-width: 20%;
        height: auto;
        display: flex;
        font-size: 8px;
    }
    .table_item_anotacao h6:nth-child(2){
        min-width: 25%;
        height: auto;
        display: flex;
        font-size: 8px;
        color: rgb(0, 81, 255);
        font-weight: 900;
    }
    .table_item_anotacao h6:nth-child(3){
        min-width: 55%;
        height: auto;
        display: flex;
        font-size: 8px;
        font-weight: 900;
    }
    
    .table_container_scroll_mensalidades .pessoa_mensalidade{
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: row;
        align-items: center;
        cursor: default;
        border-bottom: 1px solid gray;
        padding: 5px 0;
    }
    .pessoa_mensalidade .pessoas_mensalidade_left{
        min-width: 45%;
        height: 100%;
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        align-items: center;
        justify-content: start;
        gap: 20px;
    }
    .pessoas_mensalidade_left .checkout{
        width: 40px;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }
    .pessoas_mensalidade_left .checkout.hide{
        display: none;
    }
    .pessoas_mensalidade_left .checkout .fa-square{
        display: block;
        font-size: 28px;
    }
    .pessoas_mensalidade_left .checkout .fa-square-check{
        color: indigo;
        display: none;
        font-size: 28px;
    }
    
    .table_container_scroll_mensalidades .pessoa_mensalidade.selected .pessoas_mensalidade_left .checkout .fa-square{
        display: none;
    }
    .table_container_scroll_mensalidades .pessoa_mensalidade.selected .pessoas_mensalidade_left .checkout .fa-square-check{
        display: block;
    }
    
    .pessoas_mensalidade_left h6{
        font-weight: 900;
        color: rgb(0, 81, 255);
        cursor: pointer;
        transition: all 200ms ease-in-out;
    }
    .pessoas_mensalidade_left h6:hover{
        text-decoration: underline;
    }
    .pessoa_mensalidade .pessoa_mensalidade_right{
        width: 85%;
        height: auto;
        display: flex;
        gap: 5px;
        flex-wrap: wrap;
    }
    .pessoa_mensalidade_right .pessoa_mensalidade_card{
        width: 80px;
        height: 50px;
        border: 1px solid gray;
        border-radius: 4px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 3px;
        cursor: pointer;
        transition: all 200ms ease-in-out;
    }
    .pessoa_mensalidade_card .pessoa_mensalidade_card_box{
        position: relative;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background-color: var(--bc);
        padding: 5px;
        border-radius: 4px;
        transition: all 200ms ease-in-out;
    }
    .pessoa_mensalidade_card_box i{
        position: absolute;
        z-index: 900;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 89, 255, 0.3);
        border-radius: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        display: none;
        cursor: pointer;
        transition: all 200ms ease-in-out;
    }
    .pessoa_mensalidade_card_box:hover i{
        display: flex;
    }
    .pessoa_mensalidade_card_box h5{
        font-weight: 900;
    }
    .pessoa_mensalidade_card_box h6{
        font-weight: 900;
        text-align: center;
    }


}