body {
    background-color: #fff;
    color: #777777;
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    padding: 0;
    margin: 0;
    /*overflow: hidden !important;*/
}

#togglePassword {
    display: flex; /* Usa flexbox para alinhar os itens */
    align-items: center; /* Centraliza verticalmente */
}

.section-container {
    width: 100%;
    max-width: 400px;
    padding-top: 3rem;
    padding-left: 2rem;
    padding-right: 2rem;
    text-align: center;
}

.logo {
    margin-bottom: 1rem;
}

.logo img {
    max-width: 150px;
}

.form-title {
    font-size: 18px;
    color: #212121;
    margin-bottom: 1.5rem;
}

.form-control {
    background-color: #f3f3f3;
    color: #6c6b69;
    border: 1px solid #ccc;
    width: 100%;
    height: 50px;
    font-size: 16px;
}

.form-control:focus {
    border-color: #e30613;
    background-color: #f3f3f3;
    box-shadow: none;
    caret-color: #e30613;
}

.form-label {
    color: #777;
    font-size: 14px;
    text-align: left;
    width: 100%;
    display: block;
}

.btn-login {
    width: 90%;
    height: 40px;
    background-color: #e30613;
    border: none;
    font-weight: bold;
    font-size: 16px;
    color: #fff;
    margin-top: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}



.btn-login:hover {
    background-color: #D4000C !important;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15) !important;
    color: #fff;
}

.btn-gera-qrcode {
    width: 90%;
    height: 40px;
    background-color: #e30613;
    border: none;
    font-weight: bold;
    font-size: 16px;
    color: #fff;
    margin-top: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    display: block;
}

.btn-gera-qrcode:hover {
    background-color: #D4000C !important;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15) !important;
    color: #fff;
}


.btn-resetar-senha {
    width: 90%;
    height: 40px;
    background-color: #e30613;
    border: none;
    font-weight: bold;
    font-size: 16px;
    color: #fff;
    margin-top: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    display: block;
}

.btn-resetar-senha:hover {
    background-color: #D4000C !important;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15) !important;
    color: #fff;
}

.required {
    color: #e30613;
}

small {
    font-size: 12px;
}

.modal-content {
    background-color: #d9534f;
    color: #fff;
}

.modal-header {
    background-color: #d2322d;
    border-bottom: hidden;
}

.modal-footer {
    border-top: hidden;
}

.modal-icon {
    /*float: left;*/
}

.modal-text {
    float: left;
    margin-left: 20px;
    padding-top: 15px;
    font-size: 18px;
}

.conteudo_qrcode {
    display: none;
    width: 100%;
    max-width: 400px;
    /*padding: 2rem;*/
    margin-top: 5px;
    background-color: #e30613;
    /*background-color: #181818;*/
    border-radius: 10px;
    justify-content: center; /* Alinha horizontalmente */
    color: #fff;
}

.conteudo_qrcode_lido {
    display: none;
    width: 100%;
    max-width: 400px;
    padding-top: 20px;
    justify-content: center;
    color: #212121;
}

.conteudo_tela_bloqueio {
    display: none;
    width: 100%;
    max-width: 400px;
    padding-top: 20px;
    justify-content: center;
    color: #212121;
}

.conteudo_lista_tickets {
    display: none;
    width: 100%;
    max-width: 400px;
    justify-content: center;
    color: #212121;
}





#icon_check_lido {
    color: #47a447;
}

#icon_erro {
    color: red;
}



.dados_ticket {
    font-size: 12px;
    padding: 12px;
    color: #fff;
    background-color: #1e1e1e;
    border-radius: 10px;
    text-align: left;
}

.titulo_ticket {
    font-size: 16px;
    text-align: center !important;
}

.hr_ticket {
    margin-top: 5px;
    margin-bottom: 5px;
}

#qrcode {
    display: flex;
    justify-content: center;
}

    #qrcode img, #qrcode canvas {
        border: 8px solid #fff;
        border-radius: 10px;
    }

#codigo_token {
    font-size: 25px;
    font-weight: bold;
    letter-spacing: 1px;
}

#nome {
    font-size: 16px;
}

/*Estilo para orientação vertical*/
/*
.vertical-only {
    transform: rotate(0deg);
}
    */
        
/* Estilo para orientação horizontal */
/*.horizontal-only {
    transform: rotate(-90deg);
    width: 100vh;
    height: 100vw;
    overflow: hidden;
}
    */
       
/*
@media screen and (orientation: landscape) {
   body {
       transform: rotate(-90deg);
       transform-origin: left top;
       width: 100vh;
       height: 100vw;
       overflow-x: hidden;
       position: absolute;
       top: 100%;
       left: 0;
                    }
}
*/              

.dados_funcionario {
    padding-top: 5px;
    padding-bottom: 5px;
}

.listaTicketsTable {
    width: 100%;
}

    .listaTicketsTable thead tr th:first-child {
        border-top-left-radius: 10px;
    }

    .listaTicketsTable thead tr th:last-child {
        border-top-right-radius: 10px;
    }

    .listaTicketsTable thead tr th {
        font-size: 14px;
        padding-top: .1rem;
        padding-bottom: .1rem;
        background-color: #1e1e1e;
        color: #fff;
    }

    .listaTicketsTable tbody tr td {
        font-size: 10px;
        padding-top: .1rem;
        padding-bottom: .1rem;
        text-align: left;
        vertical-align: middle;
    }

.dataTables_filter input {
    height: 28px;
    /*padding-right: 1px;*/
}

.dataTables_filter label {
    font-size: 13px;
}

.odd {
    background-color: #ffffff !important; /* Cor da linha ímpar */
}

.even {
    background-color: #f9f9f9 !important; /* Cor da linha par */
}


#div_mes_atual, #div_mes_anterior{
    font-size: 14px;
}

/*
#div_mes_atual {
    border: 1px solid #575757;
    /*margin-left: 5px;
    margin-right: 5px;
}
    */




    .div_tot_tickets {
        padding: .5rem;
        font-size: 16px;
        font-weight: bold;
        color: #fff;
        background-color: #1e1e1e;
        border-radius: 10px;
        margin-bottom: 10px;
    }

.div_codigo_tickets {
    padding: .5rem;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    background-color: #1e1e1e;
    border-radius: 10px;
    margin-bottom: 10px;
}

.div_codigo_tickets #codigo {
    text-transform: uppercase;
    font-weight: bold;
    height: 30px;
}

.div_codigo_tickets #codigo::placeholder {
   font-weight: normal;
   text-transform: none;
   font-size: 13px;
}


    .icon_center {
        text-align: center !important;
    }

.span_estabelecimento {
    font-size: 14px;
}

.repetir_senha {
    display: none;
}

#conteudo_login {
    display: none;
}



/*
.btn-logoff {
    margin-right: 20px;
    margin-top: 10px;
    float: right !important;
    text-align: right !important;
    color: #000 !important;
    text-decoration: none;
    display: none;
}
*/

.class_menu{
    display: none;
}

    /* Estilo personalizado para o menu */
    .class_menu .nav-link {
        padding: 15px;
        border-bottom: 1px solid #555;
    }

        .class_menu .nav-link:hover {
            background-color: #333;
        }

    .class_menu .collapse .nav-link {
        padding-left: 30px;
    }

    .class_menu .offcanvas-body {
        padding-top: 20px;
    }


.btn-pdf {
    color: #fff;
    text-decoration: none;
}


.text_align{
    text-align: right !important;
}

.total_tickets_func{
    font-size: 12px;
}





