* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}

body {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
}
/*barra superior*/
.content {
    min-height: 80px;
    background-color: rgb(2, 2, 2);
}

.menu {
    position: absolute;
    top: 10px;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 40px;
    color: white;
    text-transform: uppercase;
    font-weight: bold;
}

.log{
    font-size: 40px;
    color: white;
    text-transform: uppercase;
    font-weight: bold;
}

.menu .navbar ul li {
    position: relative;
    float: left;
}

.menu .navbar ul li a {
    font-size: 18px;
    padding: 20px;
    color: white;
    display: block;
    font-weight: bold;
}

.menu .navbar ul li a:hover {
    color: limegreen;
}

/*bara navegacion home*/
.menu .navbarh ul li {
    position: relative;
    float: left;
    top: 0;
    width: auto;
}

.menu .navbarh ul li a {
    font-size: 18px;
    padding: 15px;
    color: white;
    display: block;
    font-weight: bold;
}

.menu .navbarh ul li a:hover {
    color: limegreen;
    text-decoration:none;
}

/*fin*/
/*barra navegacion tabla regulares*/
.menu .navbart ul li {
    position: relative;
    float: left;
    top: 0;
    width: auto;
}

.menu .navbart ul li a {
    font-size: 18px;
    padding: 15px;
    color: white;
    display: block;
    font-weight: bold;
}

.menu .navbart ul li a:hover {
    color: limegreen;
    text-decoration:none;
}
/*fin*/

/*barra navegacion tabla recurrentes*/
.menu .navbari ul li {
    position: relative;
    float: left;
    top: 0;
    width: auto;
}

.menu .navbari ul li a {
    font-size: 18px;
    padding: 15px;
    color: white;
    display: block;
    font-weight: bold;
}

.menu .navbari ul li a:hover {
    color: limegreen;
    text-decoration:none;
}
/*fin*/

#menu {
    display: none;
}

.menu-icono {
    width: 25px;
}
/*tamaño logo new body de barra*/
.logo {
    width: 180px;
}

.log {
    width: 180px;
}
.loge {
    width: 180px;
    padding-top: 0 ;
}

.cerrar {
    width: 50px;
}

.menu label {
    cursor: pointer;
    display: none;
}

h1 {
    margin: 30px 0 0 100px;
    color: white;
    font-size: 300%;
}
.step__body h2 {
    color: black;
    font-size: 100%;
    text-align: center
}

@media(max-width:991px) {
    .content {
        min-height: 70px;
    }

    .menu {
        top: 0;
        padding: 20px;
    }

    .menu label {
        display: initial;
    }

    .menu .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: limegreen;
        display: none;
    }
    
    .menu .navbar ul li  {
        width: 100%;
    }

    #menu:checked ~ .navbar {
        display: initial;
    }   
}

body {
    background-image: url('imagenes/gim.png');
    background-size: cover;
}

/*contenedor principal*/
.root {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: auto; /* Permitir que la altura sea dinámica */
    font-size: 16px;
    font-family: sans-serif;
    overflow: visible; /* Permitir que el contenido se expanda */
    margin-top: 0; /* Elimina el margen negativo */
}

/*formulario*/
.form-registro {
    padding: 20px 15px;
    width: 100%;
    max-width: 500px;
}

/*header del formulario*/
/*progressbar*/
.progressbar {
    display: flex;
    list-style: none;
    margin-bottom: 15px;
    counter-reset: step;
}

.progressbar__option {
    width: 100%;
    text-align: center;
    font-size: .7rem;
    text-transform: uppercase;
    position: relative;
}

.progressbar__option:before {
    display: flex;
    content: counter(step);
    counter-increment: step;
    width: 20px;
    height: 20px;
    background-color: white;
    margin: 0 auto 5px;
    border-radius: 3px;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.progressbar__option:after {
    display: block;
    content: '';
    width: 100%;
    height: 2px;
    background-color: white;
    position: absolute;
    top: 10px;
    left:-50%;
    z-index: 1;
}

.progressbar__option:first-child:after {
    content: none;
}

.progressbar__option.active:before, 
.progressbar__option.active:after {
    background-color: limegreen;
}

/*titulo formulario*/
.form-registro__title {
    font-size: 1.4rem;
    text-align: center;
    margin-bottom: 15px;
}

/*body formulario*/
.form-registro__body {
    display: flex;
    align-items: flex-start;
}

/*step*/
.step {
    background-color: white;
    box-shadow: 5px 5px 5px 2px rgb(87, 84, 78);
    border-radius: 3px;
    width: 100%; /* Asegura que ocupe todo el ancho */
    height: auto; /* Ajustar la altura automáticamente */
    opacity: 1; /* Asegura que sea visible */
    transition: all 0.2s linear;
    overflow: visible; /* Permitir que el contenido se expanda */
}

.step.active {
    opacity: 1;
}

.step.to-left {
    margin-left: -100%;
}

.step.inactive {
    animation-name: scale;
    animation-duration: .2s;
    animation-direction: alternate;
    animation-iteration-count: 2;
}

@keyframes scale {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.1);
    }
}

/*header step*/
.step__header {
    padding: 20px 15px;
    background-color: limegreen;
    border-radius: 3px 3px 0 0;
}

.step__title {
    text-align: center;
}

/*body de step*/
.step__body {
    padding: 20px 15px 0;
}

/*step imputs*/
.step__input {
    display: block;
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 3px;
    border: 1px solid black;
}

/*step footer*/
.step__footer {
    padding: 20px 15px;
    text-align: center;
}


/*step botones*/
.step__button {
    display: inline-block;
    padding: 10px;
    background-color: limegreen;
    border: none;
    color: black;
    border-radius: 3px;
    cursor: pointer;
}

.form-registro p {
    height: 40px;
    text-align: center;
    font-size: 14px;
    line-height: 40px;
}

.form-registro a {
    color: red;
    text-decoration: none;
}

.form-registro a:hover {
    color: rgb(21, 0, 255);
    text-decoration: underline;
}

button:hover, button:focus {
    background-color: black;
    outline: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #fff;
}

h4 {
    margin: auto;
    font-family: 'arial';
    font-size: 170%;
}

h5 {
    margin: auto;
    font-family: 'arial';
    font-size: 142%;
}

h6 {
    margin: auto;
    font-family: 'arial';
    font-size: 170%;
}

/*formulario inicio*/
.form-inicio {
    padding: 20px 15px;
    width: 100%;
    max-width: 400px; /* Limita el ancho máximo */
    height: auto; /* Ajusta la altura automáticamente */
    background-color: transparent; /* Fondo blanco */
    border-radius: 10px; /* Bordes redondeados */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Sombra para darle profundidad */
    box-sizing: border-box; /* Asegura que el padding no afecte el tamaño total */
}

.form-inicio h1 {
    margin: 0.5em auto 1em;
    font-family: 'arial';
    font-size: 170%;
    color: black;
    text-align: center;
}

/*titulo formulario inicio*/
.form-inicio__title {
    font-size: 1.4rem;
    text-align: center;
    margin-bottom: 15px;
}

/*body formulario inicio*/
.form-inicio__body {
    display: flex;
    flex-direction: column; /* Asegura que los elementos estén en columna */
    align-items: flex-start;
}

.form-inicio p {
    height: 40px;
    text-align: center;
    font-size: 14px;
    line-height: 40px;
}

.form-inicio a {
    color: red;
    text-decoration: none;
}

.form-inicio a:hover {
    color: rgb(21, 0, 255);
    text-decoration: underline;
}

.form-inicio .step__header {
    padding: 20px 15px;
    background-color: black;
    border-radius: 3px 3px 0 0;
}

/* Diseño responsivo */
@media (max-width: 600px) {
    .form-inicio {
        padding: 15px; /* Reduce el padding en pantallas pequeñas */
    }

    .form-inicio h1 {
        font-size: 150%; /* Reduce el tamaño del título */
    }

    .form-inicio__title {
        font-size: 1.2rem; /* Reduce el tamaño del subtítulo */
    }

    .form-inicio p {
        font-size: 12px; /* Reduce el tamaño del texto */
    }
}

/*formulario regular*/
.form-regulares {
    padding: 75px 50px 75px 100px;
    width: 100%;
    max-width: 700px;
}

/*titulo formulario regulares*/
.form-regulares__title {
    font-size: 1.4rem;
    text-align: center;
    margin-bottom: 15px;
}

/*body formulario regulares*/
.form-regulares__body {
    display: flex;
    align-items: flex-start;
}

.form-regulares p {
    height: 40px;
    text-align: center;
    font-size: 14px;
    line-height: 40px;
}

.form-regulares a {
    color: red;
    text-decoration: none;
}

.form-regulares a:hover {
    color: rgb(21, 0, 255);
    text-decoration: underline;
}

/*formulario planes*/
.form-planes {
    padding: 20px 15px;
    width: 100%;
    max-width: 500px;
}

/*titulo formulario planes*/
.form-planes__title {
    font-size: 1.4rem;
    text-align: center;
    margin-bottom: 15px;
}

/*body formulario planes*/
.form-planes__body {
    display: flex;
    align-items: flex-start;
}

.form-planes p {
    height: 40px;
    text-align: center;
    font-size: 14px;
    line-height: 40px;
}

.form-planes a {
    color: red;
    text-decoration: none;
}

.form-planes a:hover {
    color: rgb(21, 0, 255);
    text-decoration: underline;
}

/* VISTA CONTRATO*/
.transparente dialog{
    opacity: 0.8;
    -moz-opacity: 0.8;
    filter: alpha(opacity=80);
    -khtml-opacity: 0.8;
    width: 500px;
    margin: auto
}
.transparente h1{
    color: black;
    text-align: center;
    font-size: 15px;
    font-weight: bold;
    text-decoration: underline;
}

.transparente p{
    text-align: start;
    line-height: 1.5;
}

.transparente h2{
    color: black;
    text-align: center;
    font-size: 15px;
    font-weight: bold;
    text-decoration: underline;
}

/*desplegable en diamante*/
.desplegable body {
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto;
     height: 100vh; 
     background-color: #f1f1f1;
   }

.desplegable input {
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto;
   }

.desplegable label {
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto;
   }

.desplegable select {
     margin-bottom: 10px;
     margin-top: 10px;
   }

/*GALERIA DE IMAGENES DEL INICIO*/
.carousel-inner > .item > img,
  .carousel-inner > .item > a > img {
      width: 60%;
      margin: auto;
  }

.table tr {
    color: white;
}

.col-lg-12 h5 {
    color: white;
}

/*formulario caja*/
.form-cajadiaria {
    padding: 20px 15px;
    width: 100%;
    max-width: 500px;
}

/*titulo formulario caja*/
.form-cajadiaria__title {
    font-size: 1.4rem;
    text-align: center;
    margin-bottom: 15px;
}
/*body formulario caja*/
.form-cajadiaria__body {
    display: flex;
    align-items: flex-start;
}


/*formato de recuadros en caja diaria con respecto a totales*/
.total-box {
    width: 30%; /* Ajusta el tamaño de los cuadros */
    padding: 10px; /* Espaciado interno */
    border: 1px solid #ccc; /* Borde del cuadro */
    border-radius: 5px; /* Esquinas redondeadas */
    background-color: #f9f9f9; /* Fondo del cuadro */
    text-align: center; /* Centrar el contenido */
}

/* Ajustar la distribución de los cuadros en una fila */
.d-flex {
    display: flex;
    justify-content: space-between;
}

/* Hacer que se adapten a pantallas más pequeñas */
@media (max-width: 768px) {
    .total-box {
        width: 100%; /* En pantallas pequeñas, los cuadros ocupan el 100% del ancho */
        margin-bottom: 10px; /* Espacio entre los cuadros */
    }
}

/*FORMATO DE DIV EN TOTAL-BOX*/
/* Fija el ancho del label para que no se expanda */
.fixed-label {
    width: 180px; /* Ajusta este valor según lo necesites */
    text-align: center; /* Centra el texto */
}

/* Espaciado entre cada input-group */
.custom-group {
    margin-bottom: 8px; /* Añade espacio entre los grupos */
}

/*FORMATO EN HOME .PHP*/
/* Barra de navegación */
.navbar-custom {
    background-color: black;
    color: white;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo de la barra de navegación */
.navbar-brand {
    color: white;
    display: flex;
    align-items: center;
    margin-left: 20px;
    font-size: 1.8rem;
    font-weight: bold;
}

/* Información del usuario */
.user-info {
    margin-left: 20px;
    padding: 5px 10px;
    border: 2px solid #04ff00;
    border-radius: 20px;
    color: white;
    background-color: #333;
}

/* Botón de cerrar sesión */
.logout-btn {
    margin-left: 20px;
    padding: 5px 10px;
    border: 2px solid #04ff00;
    border-radius: 20px;
    color: white;
    background-color: #333;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.logout-btn img {
    width: 20px;
    height: 20px;
    margin-right: 5px;
}

/* Elementos del menú */
.navbar-nav {
    margin-right: 0;
    display: flex;
    align-items: center;
}

.navbar-nav > li {
    margin-left: 20px;
    font-family: 'Montserrat', sans-serif;
    color: white !important; /* Aquí estamos asegurándonos de que el color sea blanco */
    font-weight: 600;
}

.navbar-nav > li > a {
    margin-left: 20px;
    font-family: 'Montserrat', sans-serif;
    color: white !important; /* Aquí estamos asegurándonos de que el color sea blanco */
    font-weight: 600;
}

/* Ajuste para el contenedor de los enlaces */
.navbar-collapse {
    display: flex;
    justify-content: flex-end;
}

/* Barra de navegación en dispositivos pequeños */
@media (max-width: 991px) {
    .navbar-collapse {
        background-color:black;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        display: none;
    }

    .navbar-toggler {
        display: block;
    }

    .navbar-collapse.show {
        display: block;
    }

    .navbar-nav {
        flex-direction: column;
        text-align: center;
    }

    .navbar-nav .nav-item {
        width: 100%;
    }

    .navbar-nav .nav-link {
        padding: 10px 15px;
        border-bottom: 1px solid white;
    }

    .navbar-nav .nav-link:hover {
        background-color: WHI;
        color: black;
    }
}


/*ESTILO BOTONES DESHABILITADOS*/
button.disabled {
    pointer-events: none;
    opacity: 0.6;
}