/* INDEX */

.mi-imagen {
    max-width: 40%;
}

@media screen and (max-width: 740px) {
    .mi-imagen {
        max-width: 100%;
        /* Ajusta la imagen al ancho del contenedor padre */
    }
}

.center {
    text-align: center;
}

/* Regla de estilo para dispositivos con ancho de pantalla menor a 250px */
@media screen and (min-width: 768px) and (max-width: 991px) {
    .mi-imagen {
        max-width: 70%;
        /* Ajusta la imagen al ancho del contenedor padre */
    }

    /* Ajusta el ancho de las columnas en pantallas pequeñas */
    .row-cols-1.row-cols-md-3>* {
        flex-basis: calc(50% - 10px);
        /* Ancho del 50% del contenedor con espacio de 10px entre elementos */

    }

    /* Centra el tercer elemento en la fila inferior */
    .row-cols-1.row-cols-md-3> :last-child {
        margin-left: auto;
        margin-right: auto;
    }
}

.rectangulo {
    cursor: pointer;
    margin: 0px auto;
    width: 300px;
    height: 300px;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0px 0px 38px 2px rgba(0, 0, 0, 0.30);
    font-size: 20pt;
    font-weight: bold;
}

.color-1 {
    color: #96262C;
    ;
}

.color-2 {
    color: #987323;
}

.color-a {
    color: #000000;
    /* Cambia esto al color deseado para los enlaces no visitados */
    text-decoration: none;
    /* Quitar la subrayado predeterminado */
}

.color-a:hover {
    color: #987323;
}

.text-t {
    text-align: center;
    top: 20px;
    position: relative;
}

.card-img-top {
    /* Aumentamos la anchura y altura durante 1 segundos */
    transition: width 1s, height 1s, transform 1s;
}

.card-img-top:hover {
    /* tranformamos el elemento al pasar el mouse por encima al doble de
     su tamaño con scale(1.1). */
    transform: scale(1.1);
}

.tarjeta-roja-arriba {
    width: 100%;
    height: 48px;
    border-radius: 20px 20px 0px 0px;
    background: #96262C;
}

.tarjetas {
    top: 46px;
    position: relative;
}

.tarjeta-roja-abajo {
    width: 100%;
    height: 48px;
    border-radius: 20px 20px 0px 0px;
    transform: matrix(1, 0, 0, -1, 0, 0);
    background: #96262C;
    position: relative;
}

.tarjeta-dorada {
    position: absolute;
    background: #987323;
    position: relative;
    width: 151px;
    height: 22px;
    border-radius: 0px 30px 0px 0px;
}

/* LOGIN */

.login-img {
    max-width: 60%;
}

.login-rec {
    margin: 0px auto;
    max-width: 385px;
    height: 455px;
    background-color: #FFFFFF;
    box-shadow: 0px 0px 38px 2px rgba(0, 0, 0, 0.30);
    border-radius: 20px;
}

.login-rect {
    margin: 0px auto;
    max-width: 785px;
    height: 555px;
    background-color: #FFFFFF;
    box-shadow: 0px 0px 38px 2px rgba(0, 0, 0, 0.30);
    border-radius: 20px;
}

.collogin {
    display: flex;
    align-items: center;
    justify-content: center;
}


.input-gr {
    width: 75%;
    margin: 0px auto;
    text-align: left;
}

.input1 {
    background-color: transparent !important;
    border: none;
    border-bottom: 1px solid #57595A;
    width: 100%;
    outline: none;
    height: 50px;
    /* border-radius: 10px; */
    padding: 0px 10px 0px 10px;

}

.input1:focus {
    border-bottom: 1px solid #987323 !important;
    box-shadow: 0 1px 0 0 #987323 !important;
}

.input1::placeholder input {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 650;
    font-size: 18px;
}

::selection {
    background-color: #96262C !important;
    color: white;
}


.text-12 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12pt;
}

.button-gr {
    display: flex;
    justify-content: center;
}

.button-do {
    margin-right: 5px;
    width: 120px;
    height: 50px;
    background: #CCCECE;
    border-radius: 20px;
    border: none;
}

.button-do:hover {
    background: #57595A;
    /* Cambia esto al color de fondo deseado al pasar el mouse */
}

/* TICKET */
.input-folio {
    border: none;
}

.input-total {
    width: 110%;
    border: none;
    text-align: center;
}

.input-fecha {
    width: 55px;
    border: none;
    text-align: right;
    background-color: transparent;
}


.icon-eliminar {
    width: 30px;
    cursor: pointer;
}

.mi-navbar {
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    font-size: 20px;
}

.navbar-tam {
    width: 200px !important;
}

.dropdown-item.active,
.dropdown-item:active {
    color: #FFFFFF;
    text-decoration: none;
    background-color: #96262C;
}

.dropdown-item:focus,
.dropdown-item:hover {
    color: #ffffff;
    background-color: #96262C;
}

.span-center {
    margin: 0px auto;
}

.buscar-contenedor {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 100px;
    padding: 0px 10px 0px 10px;
}

.div_margin {
    margin-bottom: 10rem !important;
}

.div_margin_top {
    margin-top: 5rem !important;
}

.buscar {
    background: #CCCECE;
    width: 450px;
    padding: 15px 55px 15px 15px;
    border: 0;
    border-radius: 10px;
}

.buscar:focus {
    outline: 0;
    border: 0;
}

.div_ticket {
     width: 302px; /* 80 mm */
    padding: 10px;
    margin: 0px auto;
    position: relative;
    background-color: #ffffff;
    border-radius: 10px;
}

.div_informacion p {
    margin-bottom: 0px;
    text-align: center;
    /* Ajusta el valor para la separación deseada */
}

.div_cont_aten p {
    margin-bottom: 0px;
    margin-top: 5px;
}

.text-14 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
}

.text-16 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
}

.text-20 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
}

.table-ticket table {
    font-size: 10pt;
    font-family: Arial, Helvetica, sans-serif;
    border-collapse: collapse;
}

.table-ticket th,
td {
    border-top: 1px solid #000000;
    text-align: center;
}

.table-ticket tfoot {
    font-weight: bold;
}

.table-ticket td.columna1,
th.columna1 {
    max-width: 45px;
    word-wrap: break-word;
}


.table-ticket td.columna3,
th.columna3 {
    max-width: 80px;

}

.table-ticket td.columna5,
th.columna5 {
    min-width: 71px;
    word-wrap: break-word;
}

.div-btn {
    text-align: center;
}

.btn-confirmar {
    background-color: #987323;
    color: #ffffff;
}

.btn-confirmar:hover {
    background-color: #987323;
    color: #ffffff;
}

@media print {

    .div-oculto,
    .div-oculto * {
        display: none !important;
    }
}

.modal-contribuyente {
    max-width: 600px;
}



/* PAGOS */
.title {
    background: #96262C;
    color: white;
    padding: 0px 10px 0px 10px;
    border-radius: 5px;
}

.row-form-group {
    width: 320px;
    margin: 0px auto;
}

.input-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.input-group input {
    width: 100%;
    padding: 10px;
    border: 2px solid #ccc;
    border-radius: 5px;
    outline: none;
    font-size: 16px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}



.input-group label {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    font-size: 16px;
    color: #999;
    pointer-events: none;
    transition: all 0.3s ease-in-out;
    background: white;
    padding: 0 5px;
}

.input-group input:focus + label,
.input-group input:not(:placeholder-shown) + label {
    top: 0;
    font-size: 12px;
    color: #96262C;
    background: white;
    transform: translateY(-50%) scale(0.9);
}

.checkbox-group {
    margin-top: 10px;
}

.checkbox-group input {
    margin-right: 10px;
}

.checkbox-group label {
    font-size: 14px;
    color: #57595A;
}



.modal-folio {
    max-width: 220px;
    margin: 60px auto;
}

/* MANIFESTAR */
.container-modal {
    width: 800px;
    max-width: 100%;
    margin-top: 6rem;
}

.btn-manifestar {
    display: block;
    margin-top: -100px;
    text-align: initial;
}

.img-thumbnail {
    cursor: pointer;
    width: 140px;
    height: 140px;

}

.ocultarColum {
    display: none;
}

/* MANIFESTADOS */
.input_infor {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    height: 40px;
    width: 100%
}

.imgDocument {
    margin: 0px auto;
    width: 11cm;
    height: 11cm;
    outline: 10px;
    border-radius: 10px;
    border: 1px dashed rgb(0, 0, 0) !important;
}

.imgDocument img {
    width: 95%;
    height: 95%;
    margin: 10px 0px 0px 10px;
}

.topHistorial {
    margin-top: 280px;
}

.hidden {
    display: none;
}

/* USUARIOS */

.dataTables_filter {
    float: right;
}

.div_margin_top_usuarios {
    margin-top: 8rem !important;
}

.login-recadd {
    margin: 0px auto;
    max-width: 385px;
    height: 385px;
    background-color: #FFFFFF;
    box-shadow: 0px 0px 38px 2px rgba(0, 0, 0, 0.30);
    border-radius: 20px;
}

/* MANIFESTADOS */

.input-sin-borde{
    border: none;
}

.salto-con-arriba{
    margin-top: -80px !important; 
}

.con-borrar{
    display: none;
}

.custom-row {
    display: flex;
    justify-content: space-between;
    text-align: center;
    align-items: center;

  }

  div .h6 {
    width: 330%;
    text-align: right;
    background-color: rgba(217, 217, 217, 255);
  }

  .input-container {
    display: flex;
    align-items: center;
    height: 40px;
    margin: 10px;
  }

  .input-container input {
    text-align: center;
    height: 100%;
    width: 100%;
  }

  .input-container label {
    text-align: left;
    width: 100%;

  }

  .fechaInscrip {
    width: 50%;
    margin: auto;
    border-left: none;
    border-right: none;
    border-top: none;
    text-align: center;
  }

  .divDatos {
    display: flex;
    width: 100%;
  }

  .inputDatos {
    border-left: none;
    border-right: none;
    border-top: none;
    flex: 1;
  }

  .widInput {
    text-align: center;
    width: 105%;
  }

  .widInput2 {
    text-align: center;
    width: 100%;
  }

  .footerUnidad {
    color: white;
    align-content: center;
    display: grid;
    text-align: center;
    background-color: #96262C;
  }

  .footerAncho {
    background-color: #96262C;
    height: 30px;
    margin-top: 20px;
  }

  .etiquetaFooter {
    margin-top: 40px;
  }

  .etiquetaFootertop {
    margin-top: -20px;
  }
  #cer_id {
    background-image: url('/img/fondo-centro.png'); /* Ruta de la imagen */
    background-size: auto; /* Mantiene el tamaño original de la imagen */
    background-repeat: no-repeat;
    background-position: bottom center; /* Coloca la imagen en la parte inferior y centrada horizontalmente */
}

  /* Estilos para ajustar los inputs y columnas */
  .justificar {
    text-align: justify;
  }

  .colCancelar input {
    width: 100%;
    /* Ajusta el ancho de los inputs al 100% del contenedor */
    height: 40px;
    box-sizing: border-box;
    /* Incluye el tamaño del borde y el padding en el ancho total */
  }

  /* Estilos opcionales para los labels encima de los inputs */
  .colCancelar label {
    display: block;
    /* Hace que los labels ocupen una línea completa */
    margin-bottom: 5px;
    /* Añade un margen inferior para separar los labels de los inputs */
  }

  .edit {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .inputs-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    text-align: center;
  }

  .inputs-wrapper input {
    border-left: none;
    border-right: none;
    border-top: none;
    margin-right: 10px;
    width: 300px;
    text-align: center;
  }

  .modal_quinto {
    max-width: 21.59cm !important;
    /* 8.5 pulgadas */
    height: 27.94cm !important;
    /* 11 pulgadas */

  }

  .em {
    width: 120%;
  }

  .imgPerfil {
    float: left;
    margin-right: 10px;
  }

  .imgPerfil div {
    width: 2.6cm;
    height: 3.1cm;
    outline: 10px;
    border: 1px solid rgb(0, 0, 0) !important
  }

  .saltolinea {
    line-height: 125%;
  }

  /* SPERAR BOTONES */
  .swal2-styled{
    margin: 10px;
  }



  .fa-eye {
    position: absolute;
    margin-left: -30px;
    margin-top: 25px;
    cursor: pointer;
}

.input1::-ms-reveal,
.input1::-ms-clear {
    display: none;
}

.input1::-webkit-password-eye {
    display: none;
}

.campo-contrasena {
    opacity: 0.4;
}

.campo-contrasena-oculto {
    opacity: 1;
}

.registro{
    font-size: 18px;

}

