html {
    min-height: 100vh;
 }
 
body{
    min-height: 100%;
}

.login-card{
    /* background:url("../img/login_bg.jpg"); */
    /* background:url("../img/login_bg_3.png"); */


    background: rgb(255,255,255);
background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(1,47,140,1) 100%);
    
}

.bg-white{
    background-color: white !important;
}

.w-logo-ingreso{
    width: 160px;
}


@media (max-width: 768px) { /* Este es un punto de quiebre común para dispositivos móviles */
    .w-logo-ingreso {
        width: 140px; /* Ajusta este valor según tus necesidades */
    }
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}


.w-full {
    position: relative;
    width: 100% !important;
}



@media (max-width: 768px) { /* Este es un punto de quiebre común para dispositivos móviles */

    .w-full-mobile{
        position: relative;
        width: 100% !important;
    }
}




/* Clase para sombra pequeña */
.shadow-sm {
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

/* Clase para sombra mediana */
.shadow-md {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Clase para sombra grande */
.shadow-lg {
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
}

/* Clase para sombra extra grande */
.shadow-xl {
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.2);
}

/* Clase para sombra 2xl */
.shadow-2xl {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

/* Clase para sombra interior */
.shadow-inner {
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06);
}

/* Clase para sombra sin borde */
.shadow-none {
    box-shadow: none;
}


.bg-card-inicio{
    border-radius: 10px;
    pointer-events: auto;
    padding: 10px;
}

.form-control{
    border: 1px solid rgb(211, 211, 211) !important;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}

.text-left{
    text-align: left !important;
}

.text-semibold {
    font-weight: 600;
}

.margin-registro {
    margin-top: 0px !important;
}

@media (max-width: 768px) { /* Este es un punto de quiebre común para dispositivos móviles */
    .margin-registro {
        margin-top: 50px !important; /* Ajusta este valor según tus necesidades */
    }
}


.float-right {
    float: right;
}


/* Márgenes superiores */
.mt-1 { margin-top: 0.25rem !important; }
.mt-2 { margin-top: 0.5rem !important; }
.mt-3 { margin-top: 0.75rem !important; }
.mt-4 { margin-top: 1rem !important; }
.mt-5 { margin-top: 1.25rem !important; }
.mt-6 { margin-top: 1.5rem !important; }
.mt-7 { margin-top: 1.75rem !important; }
.mt-8 { margin-top: 2rem !important; }
.mt-9 { margin-top: 2.25rem !important; }
.mt-10 { margin-top: 2.5rem !important; }

/* Márgenes inferiores */
.mb-1 { margin-bottom: 0.25rem !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.mb-3 { margin-bottom: 0.75rem !important; }
.mb-4 { margin-bottom: 1rem !important; }
.mb-5 { margin-bottom: 1.25rem !important; }
.mb-6 { margin-bottom: 1.5rem !important; }
.mb-7 { margin-bottom: 1.75rem !important; }
.mb-8 { margin-bottom: 2rem !important; }
.mb-9 { margin-bottom: 2.25rem !important; }
.mb-10 { margin-bottom: 2.5rem !important; }


@media (min-width: 992px) {
    .p-3-pc{
        padding: 0.75rem;
    }
}

.form-select {
    display: block;
    width: 100%;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    appearance: none;

    padding-left: 15px !important;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}

.form-select:focus {
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}




.form-select-2 {
    width: 100%;
    font-size: 1rem;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    appearance: none;

    padding-left: 15px !important;
    padding-top: 8px !important;
    padding-bottom: 8px !important;
    font-size: 14px;
    font-weight: 400;
    padding-right: 30px !important;
}

.form-select-2:focus {
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.min-width-registro-empresa{
    min-width: 600px;
}


@media (max-width: 768px) { /* Este es un punto de quiebre común para dispositivos móviles */
    .min-width-registro-empresa{
        min-width: auto !important;
    }
    
}


.text-white{
    color: white !important;
}

.text-red{
    color: red;
}

.text-orange{
    color: rgb(255, 145, 0);
}



.hidden{
    display: none;
}

.img-logo-dashboard{
    height: 60px;
}



/* Para dispositivos móviles */
.view-mobile {
    display: none; /* Oculta por defecto */
  }
  
  @media (max-width: 768px) {
    .view-mobile {
        display: inline-block;
    }


  }
  
  /* Para computadoras de escritorio */
  .view-pc {
    display: inline-block;
  }
  
  @media (max-width: 768px) {
    .view-pc {
        display: none !important; /* Oculta en dispositivos con ancho máximo de 768px (ajusta este valor según tus necesidades) */
    }
  }
  

.text-slate-400{
color: rgb(148 163 184);
}

.text-title-navbar{
font-size: 20px;
}

.btn-mio-blue{
    background-color: #3366FF;
    color: white;
    border: none;
    border-radius: 2px;
    padding: 10px ;
    padding-top: 24px ;
    padding-bottom: 24px ;
}

.btn-mio-blue:hover{
    background-color: #2c59df;
}



.btn-mio-red{
    background-color: #e62323;
    color: white;
    border: none;
    border-radius: 2px;
    padding: 10px ;
    padding-top: 24px ;
    padding-bottom: 24px ;
    text-wrap: nowrap;
}

.btn-mio-red:hover{
    background-color: #cc2323;
}


.btn-mio-blue-2{
    background-color: #3366FF;
    color: white;
    border: none;
    border-radius: 2px;
    padding: 10px ;
    text-decoration: none;
    cursor: pointer;
    text-wrap: nowrap;
}

.btn-mio-blue-2:hover{
    background-color: #2c59df;
}


/* Estilo para el botón deshabilitado */
.btn-mio-blue-2:disabled {
    background-color: grey;  /* Cambia este color al que prefieras */
    color: rgb(228, 228, 228);         /* Cambia este color al que prefieras */
    cursor: not-allowed;     /* Cambia el cursor para indicar que está deshabilitado */
  }


.btn-mio-green-2{
    background-color: #2dc04d;
    color: white;
    border: none;
    border-radius: 2px;
    padding: 10px ;
    text-decoration: none;
    text-wrap: nowrap;
}


.btn-mio-green-2:disabled {
    background-color: rgb(84, 119, 91);
    color: white;
    cursor: not-allowed; /* Cambia el cursor cuando está deshabilitado */
}
.btn-mio-green-2:hover:not(:disabled) {
    background-color: #27b345;
    cursor: pointer;
}


.btn-mio-red-2{
    background-color: #e62323;
    color: white;
    border: none;
    border-radius: 2px;
    padding: 10px ;
    text-decoration: none;
    text-wrap: nowrap;
}

.btn-mio-red-2:hover{
    background-color: #cc2323;
    cursor: pointer;
}



.btn-mio-gray{
    background-color: #ececec;
    color: rgb(0, 0, 0);
    border: none;
    border-radius: 2px;
    padding: 10px ;
    text-decoration: none;
    text-wrap: nowrap;
}

.btn-mio-gray:hover{
    background-color: #cecece;
}

.btn-mio-gray:disabled{
    cursor: not-allowed;     /* Cambia el cursor para indicar que está deshabilitado */
}






.a_link_nav{
    color: gray;
    text-decoration: none;
}

.a_link_nav:hover{
    color: #3366FF;
    text-decoration: underline;
}

.nav-sub-width{
    width: 500px !important;
}



@media (max-width: 768px) { /* Este es un punto de quiebre común para dispositivos móviles */

    .nav-sub-width{
        width: auto !important;
    }
    
    
}



.nav-sub-item {
margin-bottom: 10px; /* Ajusta el valor según tus necesidades */
}



/* Margen derecho (mr-1 a mr-10) */
.mr-1 { margin-right: 4px; }
.mr-2 { margin-right: 8px; }
.mr-3 { margin-right: 12px; }
.mr-4 { margin-right: 16px; }
.mr-5 { margin-right: 20px; }
.mr-6 { margin-right: 24px; }
.mr-7 { margin-right: 28px; }
.mr-8 { margin-right: 32px; }
.mr-9 { margin-right: 36px; }
.mr-10 { margin-right: 40px; }


/* Media Query para aplicar estilos solo en dispositivos de escritorio */
@media (min-width: 1024px) {
    .mr-1-pc { margin-right: 4px; }
    .mr-2-pc { margin-right: 8px; }
    .mr-3-pc { margin-right: 12px; }
    .mr-4-pc { margin-right: 16px; }
    .mr-5-pc { margin-right: 20px; }
    .mr-6-pc { margin-right: 24px; }
    .mr-7-pc { margin-right: 28px; }
    .mr-8-pc { margin-right: 32px; }
    .mr-9-pc { margin-right: 36px; }
    .mr-10-pc { margin-right: 40px; }
  }

/* Margen izquierdo (ml-1 a ml-10) */
.ml-1 { margin-left: 4px; }
.ml-2 { margin-left: 8px; }
.ml-3 { margin-left: 12px; }
.ml-4 { margin-left: 16px; }
.ml-5 { margin-left: 20px; }
.ml-6 { margin-left: 24px; }
.ml-7 { margin-left: 28px; }
.ml-8 { margin-left: 32px; }
.ml-9 { margin-left: 36px; }
.ml-10 { margin-left: 40px; }


.form-control{
    border-radius: 3px !important;
}

.thead-blue{
    background-color: rgba(1,47,140,1) !important;
    color: white;
}


.thead-blue tr th{
    background-color: rgba(0, 0, 0, 0) !important;
    color: white !important;
}


/* Oculta el checkbox original */
.checkbox-table {
    display: none;
}

/* Estilo para el contenedor del checkbox */
.custom-checkbox {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 1px solid #ccc;
    border-radius: 3px;
    background-color: #f7f7f7;
    text-align: center;
    line-height: 20px;
    font-size: 16px;
    color: transparent; /* Esconde el icono inicialmente */
}

/* Estilo cuando el checkbox está marcado */
.checkbox-table:checked + .custom-checkbox {
    color: blue; /* Muestra el icono en azul cuando está marcado */
}

/* Estilo cuando el checkbox está deshabilitado */
.checkbox-table:disabled + .custom-checkbox {
    background-color: #eeeeee;
}

/* Estilo cuando el checkbox está marcado y deshabilitado */
.checkbox-table:checked:disabled + .custom-checkbox {
    color: blue;
}



.custom-scrollbar::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

.custom-scrollbar::-webkit-scrollbar-track {
  background-color: transparent;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
  border-radius: 3px;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
  background-color: rgb(231, 231, 231);
  border-radius: 3px;
  border: none;
}



.hover-tr:hover td{
    background-color: #f8faff !important;
}



.alerta-seleccionar-pago{
    width: 400px !important;
}


@media (max-width: 768px) { /* Este es un punto de quiebre común para dispositivos móviles */

    .alerta-seleccionar-pago{
        width: 260px !important;
    }
    
}

.pdf-viewer canvas{
    width: 100%;
    height: auto !important;
}



@media (max-width: 768px) { /* Este es un punto de quiebre común para dispositivos móviles */

    .pdf-viewer canvas{
        
        min-width: 800px !important;
    }
    
    
}

.paginate_button{
    border-radius: 2px !important;
}

.page-link{
    background-color: transparent !important;
    width: auto !important;
}


.paginate_button.page-item.active {
    background-color: #012F8C !important; /* Cambia esto al color que desees */
}




.table-responsive {
    overflow-x: auto;
    overflow-y: hidden;
    position: relative;
}

.table-responsive > .table {
    margin-bottom: 0;
}

.table-responsive > .table > thead {
    position: sticky;
    top: -0.5px;
    z-index: 1;
}

/* Agrega un pequeño ajuste para evitar superposición de contenido bajo el encabezado fijo */
.table-responsive > .table > tbody tr:first-child th {
    margin-top: 40px;
}


.form-control[readonly] {
    background-color: #e9ecef !important; /* Elige el color que prefieras */
    opacity: 1; /* Asegúrate de que la opacidad esté al 100% */
}

.text-area{

    border: 1px solid rgb(194, 194, 194);
    border-radius: 3px;

}



.mb-4-mobile { margin-bottom: 1rem !important; }

@media (min-width: 992px) {
    .mt-5-pc {
        margin-top: 1.25rem; /* Ajusta el valor según tus necesidades */
    }

    

.equal-height-row {
    display: flex;
    flex-wrap: wrap;
  }
  
  .equal-height-col {
    display: flex;
    flex-direction: column;
    flex: 1;
  }

.mb-4-mobile { margin-bottom: 0rem !important; }

  
}