/* Eliminar el fondo azul del autocompletado */
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active {
    /* Crea una sombra interna blanca que tape el color del navegador */
    -webkit-box-shadow: 0 0 0px 1000px white inset !important;
    
    /* Si quieres que el texto siga siendo azul/gris original */
    -webkit-text-fill-color: #555 !important; 
}

.diseño1 {
    background-color: #1369d9ff;
    width: 50%;
    height: 100%;
    position: absolute;

    clip-path: polygon(0% 0%,
            60% 0%,
            100% 100%,
            0% 100%);

    animation: mover 3s infinite alternate ease-in-out;
}

@keyframes mover {
    from {
        clip-path: polygon(0% 0%,
                60% 0%,
                100% 100%,
                0% 100%);
    }

    to {
        clip-path: polygon(0% 0%,
                58% 0%,
                100% 100%,
                0% 100%);
    }
}

.diseño2 {
    background-color: #1571e8bc;
    width: 51%;
    height: 100%;
    position: absolute;

    clip-path: polygon(0% 0%,
            80% 0%,
            100% 100%,
            0% 100%);

    animation: mover2 6s infinite alternate ease-in-out;
}

@keyframes mover2 {
    from {
        clip-path: polygon(0% 0%,
                80% 0%,
                100% 100%,
                0% 100%);
    }

    to {
        clip-path: polygon(0% 0%,
                82% 0%,
                100% 100%,
                0% 100%);
    }
}

.diseño3 {
    background-color: #1571e8a4;
    width: 65%;
    height: 100%;
    position: absolute;

    clip-path: polygon(0% 0%,
            100% 0%,
            95% 100%,
            0% 100%);

    animation: mover3 5s infinite alternate ease-in-out;
}

@keyframes mover3 {
    from {
        clip-path: polygon(0% 0%,
                100% 0%,
                95% 100%,
                0% 100%);
    }

    to {
        clip-path: polygon(0% 0%,
                100% 0%,
                93% 100%,
                0% 100%);
    }
}

.logo {
    /* background-color: #ff0000a4; */
    width: 20%;
    height: 40%;
    position: absolute;
    right: 10%;
    top: 30%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.logo #status_focus {
    /* background-color: red; */
    display: flex;
    color: #00000051;
    width: 70%;
}

.logo #status_focus strong {
    margin-top: 1rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 0.5rem;
}

.dot-green {
    background-color: green;
}

/* .texto #textoBienvenida {
            position: absolute;
            font-family: Inter, sans-serif;
            font-weight: bold;
            color: white;
            font-size: 1.5rem;
        } */

.empresaConectado {
    position: absolute;
    z-index: 10;
    left: 5%;
    top: 20%;
    display: flex;
    flex-direction: column;
    width: 60%;
}

.texto .empresa {
    color: white;
    font-size: 3rem;
    font-family: Inter, sans-serif;
    font-weight: bold;
    margin: 0;
}

.texto .conectado {
    color: white;
    font-size: 1rem;
    font-family: Inter, sans-serif;
    font-weight: bold;
}

.fechaHora {
    position: absolute;
    display: flex;
    flex-direction: column;
    z-index: 10;
    color: white;
    font-size: 3rem;
    font-family: Inter, sans-serif;
    font-weight: bold;
    left: 5%;
    top: 40%;
}

.fechaHora .hora {
    /* background-color: red; */
    position: relative;
    top: -1.5rem;
}

.botones {
    position: absolute;
    display: flex;
    flex-direction: column;
    z-index: 10;
    top: 60%;
    left: 5%;
    gap: 1rem;
}

.botones .entradas {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.botones .salidas {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.botones .btnEntrada {
    border: none;
    border-radius: 5px;
    color: white;
    padding: 0.5rem 2rem;
    cursor: pointer;
    font-family: Inter, sans-serif;
    font-weight: bold;
    top: 60%;
    left: 5%;
    display: flex;
    align-items: center;
    width: 20rem;
    height: 4rem;
    justify-content: start;
    font-size: 1.5rem;
    color: #0a7d29;
    border-radius: 10px;
}

.botones .btnSalida {
    border: none;
    border-radius: 5px;
    color: white;
    padding: 0.5rem 2rem;
    cursor: pointer;
    font-family: Inter, sans-serif;
    font-weight: bold;
    top: 68%;
    left: 5%;
    display: flex;
    align-items: center;
    width: 20rem;
    height: 4rem;
    justify-content: start;
    font-size: 1.5rem;
    color: #af0000;
    border-radius: 10px;
}

.botones .btnMasVerde {
    border: none;
    border-radius: 5px;
    color: white;
    cursor: pointer;
    font-family: Inter, sans-serif;
    font-weight: bold;
    top: 60%;
    left: 21%;
    display: flex;
    align-items: center;
    width: 4rem;
    height: 4rem;
    justify-content: center;
    border-radius: 20%;
}

.botones .btnMasRojo {
    border: none;
    border-radius: 5px;
    color: white;
    cursor: pointer;
    font-family: Inter, sans-serif;
    font-weight: bold;
    top: 68%;
    left: 21%;
    display: flex;
    align-items: center;
    width: 4rem;
    height: 4rem;
    justify-content: center;
    border-radius: 20%;
}

.botones .btnEntrada img {
    width: 15%;
    margin-right: 1rem;
}

.botones .btnSalida img {
    width: 15%;
    margin-right: 1rem;
}

.botones .btnMasVerde img {
    width: 60%;
}

.botones .btnMasRojo img {
    width: 60%;
}

#modalHeader {
    margin-top: 3%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#modalHeader h3 {
    color: #1572e8;
    font-weight: bold;
}

#modalHeader img {
    width: 15%;
}

#contenedorSalida {
    width: 100%;
    padding: 1rem;
    display: flex;
    align-items: end;
    justify-content: end;
}

#id:-webkit-autofill,
#id:-webkit-autofill:hover, 
#id:-webkit-autofill:focus, 
#id:-webkit-autofill:active {
    /* Mantiene el fondo blanco del modal tapando el color del navegador */
    -webkit-box-shadow: 0 0 0px 1000px #ffffff inset !important;
}

#pwd:-webkit-autofill,
#pwd:-webkit-autofill:hover, 
#pwd:-webkit-autofill:focus, 
#pwd:-webkit-autofill:active {
    /* Mantiene el fondo blanco del modal tapando el color del navegador */
    -webkit-box-shadow: 0 0 0px 1000px #ffffff inset !important;
}

#id {
    border: none;
    border-bottom: 2px solid #1571e8ff;
    border-radius: 0;
    font-size: 1.3rem;
    padding: 0 1rem;
}

#id::placeholder {
    color: #1571e898 !important;
    font-size: 1.4rem;
    font-family: Inter, sans-serif;
    font-weight: bold;
}

#pwd {
    border: none;
    border-bottom: 2px solid #1571e8ff;
    border-radius: 0;
    font-size: 1.4rem;
    padding: 0 1rem;
}

#pwd::placeholder {
    color: #1571e898 !important;
    font-size: 1.3rem;
    font-family: Inter, sans-serif;
    font-weight: bold;
}

.modal-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.modal-body {
    /* background-color: #59ff00ff; */
    width: 80%;
}

#btnLoginContenedor {
    display: flex;
    justify-content: center;
    align-items: center;
}

#btnLogin {
    background-color: #1572e8;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-family: Inter, sans-serif;
    font-weight: bold;
    width: 10rem;
}

.wrapper {
    width: 100%;
    /* background-color: red; */
    height: 1px !important;
}

.modCerrar {
    width: 110%;
    display: flex;
    justify-content: end;
}

.titulo1 {
    font-size: 1.8rem;
    font-weight: bold;
    color: #1572e8;
    margin-bottom: 1rem;
}

.titulo2 {
    font-size: 1.1rem;
    font-weight: bold;
    color: #1571e8ba;
    margin-bottom: 3rem;
}

#idEmp {
    border: none;
    border-bottom: 2px solid #1571e8ff;
    border-radius: 0;
    font-size: 1.3rem;
    padding: 0 1rem;
}

#idEmp::placeholder {
    color: #1571e898 !important;
    font-size: 1.4rem;
    font-family: Inter, sans-serif;
    font-weight: bold;
}

.btnRegistrar {
    background-color: #1572e8;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 0.3rem 2rem;
    cursor: pointer;
    font-family: Inter, sans-serif;
    font-weight: bold;
    font-size: 1.3rem;
    width: 13rem;
    margin-bottom: 2rem;
    margin-top: 1rem;
    text-align: center;
}

.modalbody1 {
    width: 100%;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.modCerrarTipos {
    width: 100%;
    display: flex;
    justify-content: end;
    margin-bottom: 1rem;
}

.modalTipoMarcaje {
    display: flex;
    align-items: center;
    justify-content: start;
    background-color: #9999992d;
    border-radius: 12px;
    padding: 1rem;
    width: 90%;
    margin-bottom: 1rem;
    cursor: pointer;
}

.modalTipoMarcaje span {
    font-size: 1.4rem;
    font-family: Inter, sans-serif;
    font-weight: bold;
    color: #0a7d29;
}

.modalTipoMarcaje img {
    width: 12%;
    margin-right: 1rem;
}

#marcajesOtros {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#marcajesOtrosSalida {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#marcajesOtrosSalida {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#sort3 span,
#sort2 span,
#sort4 span {
    font-size: 1.4rem;
    font-family: Inter, sans-serif;
    font-weight: bold;
    color: #af0000;
}

#salidaOtras span {
    font-size: 1.4rem;
    font-family: Inter, sans-serif;
    font-weight: bold;
    color: #af0000;
}

/* responsive de 1600px */

/* Media query para quitar animaciones en pantallas pequeñas */
@media (max-width: 5700px) {
    .diseño1 {
        animation: none;
    }

    .diseño2 {
        animation: none;
    }

    .diseño3 {
        animation: none;
    }
}

@media (max-width: 1600px) {

    .empresaConectado {
        position: absolute;
        z-index: 10;
        left: 5%;
        top: 20%;
        display: flex;
        flex-direction: column;
    }

    .texto .empresa {
        color: rgb(255, 255, 255);
        font-size: 2.5rem;
        font-family: Inter, sans-serif;
        font-weight: bold;
        margin: 0;
    }

    .texto .conectado {
        color: white;
        font-size: 1rem;
        font-family: Inter, sans-serif;
        font-weight: bold;
    }

    .fechaHora {
        position: absolute;
        display: flex;
        flex-direction: column;
        z-index: 10;
        color: white;
        font-size: 2.5rem;
        font-family: Inter, sans-serif;
        font-weight: bold;
        left: 5%;
        top: 40%;
    }

    .fechaHora .hora {
        /* background-color: red; */
        position: relative;
        top: -1.3rem;
    }

    .botones .btnEntrada {
        border: none;
        border-radius: 5px;
        color: white;
        padding: 0.5rem 2rem;
        cursor: pointer;
        font-family: Inter, sans-serif;
        font-weight: bold;
        top: 60%;
        left: 5%;
        display: flex;
        align-items: center;
        width: 17rem;
        height: 4rem;
        justify-content: start;
        font-size: 1.5rem;
        color: #0a7d29;
        border-radius: 10px;
    }

    .botones .btnSalida {
        border: none;
        border-radius: 5px;
        color: white;
        padding: 0.5rem 2rem;
        cursor: pointer;
        font-family: Inter, sans-serif;
        font-weight: bold;
        top: 68%;
        left: 5%;
        display: flex;
        align-items: center;
        width: 17rem;
        height: 4rem;
        justify-content: start;
        font-size: 1.5rem;
        color: #af0000;
        border-radius: 10px;
    }

    .botones .btnMasVerde {
        border: none;
        border-radius: 5px;
        color: white;
        cursor: pointer;
        font-family: Inter, sans-serif;
        font-weight: bold;
        top: 60%;
        left: 21%;
        display: flex;
        align-items: center;
        width: 3.7rem;
        height: 4rem;
        justify-content: center;
        border-radius: 20%;
    }

    .botones .btnMasRojo {
        border: none;
        border-radius: 5px;
        color: white;
        cursor: pointer;
        font-family: Inter, sans-serif;
        font-weight: bold;
        top: 68%;
        left: 21%;
        display: flex;
        align-items: center;
        width: 3.7rem;
        height: 4rem;
        justify-content: center;
        border-radius: 20%;
    }

    .botones .btnEntrada img {
        width: 15%;
        margin-right: 1rem;
    }

    .botones .btnSalida img {
        width: 15%;
        margin-right: 1rem;
    }

    .botones .btnMasVerde img {
        width: 60%;
    }

    .botones .btnMasRojo img {
        width: 60%;
    }
}

@media (max-width: 1340px) {

    .empresaConectado {
        position: absolute;
        z-index: 10;
        left: 5%;
        top: 20%;
        display: flex;
        flex-direction: column;
    }

    .logo #status_focus {
        /* background-color: red; */
        display: flex;
        color: #00000051;
        width: 100%;
        /* background-color: red; */
    }

    .texto .empresa {
        color: rgb(255, 255, 255);
        font-size: 2rem;
        font-family: Inter, sans-serif;
        font-weight: bold;
        margin: 0;
    }

    .texto .conectado {
        color: white;
        font-size: 1rem;
        font-family: Inter, sans-serif;
        font-weight: bold;
    }

    .fechaHora {
        position: absolute;
        display: flex;
        flex-direction: column;
        z-index: 10;
        color: white;
        font-size: 2rem;
        font-family: Inter, sans-serif;
        font-weight: bold;
        left: 5%;
        top: 40%;
    }

    .fechaHora .hora {
        /* background-color: red; */
        position: relative;
        top: -1rem;
    }

    .botones .btnEntrada {
        border: none;
        border-radius: 5px;
        color: white;
        padding: 0.5rem 2rem;
        cursor: pointer;
        font-family: Inter, sans-serif;
        font-weight: bold;
        top: 60%;
        left: 5%;
        display: flex;
        align-items: center;
        width: 15rem;
        height: 3.7rem;
        justify-content: start;
        font-size: 1.5rem;
        color: #0a7d29;
        border-radius: 10px;
    }

    .botones .btnSalida {
        border: none;
        border-radius: 5px;
        color: white;
        padding: 0.5rem 2rem;
        cursor: pointer;
        font-family: Inter, sans-serif;
        font-weight: bold;
        top: 68%;
        left: 5%;
        display: flex;
        align-items: center;
        width: 15rem;
        height: 3.7rem;
        justify-content: start;
        font-size: 1.5rem;
        color: #af0000;
        border-radius: 10px;
    }

    .botones .btnMasVerde {
        border: none;
        border-radius: 5px;
        color: white;
        cursor: pointer;
        font-family: Inter, sans-serif;
        font-weight: bold;
        top: 60%;
        left: 21%;
        display: flex;
        align-items: center;
        width: 3.7rem;
        height: 4rem;
        justify-content: center;
        border-radius: 20%;
    }

    .botones .btnMasRojo {
        border: none;
        border-radius: 5px;
        color: white;
        cursor: pointer;
        font-family: Inter, sans-serif;
        font-weight: bold;
        top: 68%;
        left: 21%;
        display: flex;
        align-items: center;
        width: 3.7rem;
        height: 4rem;
        justify-content: center;
        border-radius: 20%;
    }

    .botones .btnEntrada img {
        width: 15%;
        margin-right: 1rem;
    }

    .botones .btnSalida img {
        width: 15%;
        margin-right: 1rem;
    }

    .botones .btnMasVerde img {
        width: 60%;
    }

    .botones .btnMasRojo img {
        width: 60%;
    }
}

@media (max-width: 1248px) {
    .empresaConectado {
        position: absolute;
        z-index: 10;
        left: 5%;
        top: 20%;
        display: flex;
        flex-direction: column;
    }

    .texto .empresa {
        color: rgb(255, 255, 255);
        font-size: 2rem;
        font-family: Inter, sans-serif;
        font-weight: bold;
        margin: 0;
    }

    .texto .conectado {
        color: white;
        font-size: 1rem;
        font-family: Inter, sans-serif;
        font-weight: bold;
    }
}

@media (max-width: 1068px) {
    .logo #status_focus {
        /* background-color: red; */
        display: flex;
        color: #00000051;
        width: 100%;
        /* background-color: red; */
    }

    .logo #status_focus strong {
        margin-top: 0rem;
        font-size: 0.8rem;
    }

    .empresaConectado {
        position: absolute;
        z-index: 10;
        left: 5%;
        top: 22%;
        display: flex;
        flex-direction: column;
    }

    .texto .empresa {
        color: rgb(255, 255, 255);
        font-size: 1.5rem;
        font-family: Inter, sans-serif;
        font-weight: bold;
        margin: 0;
    }

    .texto .conectado {
        color: white;
        font-size: 1rem;
        font-family: Inter, sans-serif;
        font-weight: bold;
    }

    .fechaHora {
        position: absolute;
        display: flex;
        flex-direction: column;
        z-index: 10;
        color: white;
        font-size: 1.7rem;
        font-family: Inter, sans-serif;
        font-weight: bold;
        left: 5%;
        top: 40%;
    }

    .fechaHora .hora {
        /* background-color: red; */
        position: relative;
        top: -0.7rem;
    }

    .botones .btnEntrada {
        border: none;
        border-radius: 5px;
        color: white;
        padding: 0.5rem 2rem;
        cursor: pointer;
        font-family: Inter, sans-serif;
        font-weight: bold;
        top: 60%;
        left: 5%;
        display: flex;
        align-items: center;
        width: 15rem;
        height: 3.5rem;
        justify-content: start;
        font-size: 1.2rem;
        color: #0a7d29;
        border-radius: 10px;
    }

    .botones .btnSalida {
        border: none;
        border-radius: 5px;
        color: white;
        padding: 0.5rem 2rem;
        cursor: pointer;
        font-family: Inter, sans-serif;
        font-weight: bold;
        top: 68%;
        left: 5%;
        display: flex;
        align-items: center;
        width: 15rem;
        height: 3.5rem;
        justify-content: start;
        font-size: 1.2rem;
        color: #af0000;
        border-radius: 10px;
    }

    .botones .btnMasVerde {
        border: none;
        border-radius: 5px;
        color: white;
        cursor: pointer;
        font-family: Inter, sans-serif;
        font-weight: bold;
        top: 60%;
        left: 21%;
        display: flex;
        align-items: center;
        width: 3.3rem;
        height: 3.5rem;
        justify-content: center;
        border-radius: 20%;
    }

    .botones .btnMasRojo {
        border: none;
        border-radius: 5px;
        color: white;
        cursor: pointer;
        font-family: Inter, sans-serif;
        font-weight: bold;
        top: 68%;
        left: 21%;
        display: flex;
        align-items: center;
        width: 3.3rem;
        height: 3.5rem;
        justify-content: center;
        border-radius: 20%;
    }

    .botones .btnEntrada img {
        width: 20%;
        margin-right: 1rem;
    }

    .botones .btnSalida img {
        width: 20%;
        margin-right: 1rem;
    }

    .botones .btnMasVerde img {
        width: 50%;
    }

    .botones .btnMasRojo img {
        width: 50%;
    }
}

@media (max-width: 900px) {
    .empresaConectado {
        position: absolute;
        z-index: 10;
        left: 5%;
        top: 22%;
        display: flex;
        flex-direction: column;
    }

    .texto .empresa {
        display: block;
        color: rgb(255, 255, 255);
        font-size: 1.5rem;
        font-family: Inter, sans-serif;
        font-weight: bold;
        margin: 0;
    }

    .texto .conectado {
        color: white;
        font-size: 1.1rem;
        font-family: Inter, sans-serif;
        font-weight: bold;
    }
}

@media (max-width: 762px) {
    .empresaConectado {
        position: absolute;
        z-index: 10;
        left: 5%;
        top: 22%;
        display: flex;
        flex-direction: column;
    }

    .texto .empresa {
        color: rgb(255, 255, 255);
        font-size: 1.5rem;
        font-family: Inter, sans-serif;
        font-weight: bold;
        margin: 0;
    }

    .texto .conectado {
        color: white;
        font-size: 1rem;
        font-family: Inter, sans-serif;
        font-weight: bold;
    }
}

@media (max-width: 570px) {
    body {
        width: 100vw;
        background-color: #e1ded5;
    }

    .diseño1 {
        background-color: #1369d9ff;
        width: 100%;
        height: 100%;
        position: absolute;


        clip-path: polygon(0% 0%,
                0% 0%,
                120% 100%,
                0% 100%);

    }

    .diseño2 {
        background-color: #1571e800;
        width: 100%;
        height: 100%;
        position: absolute;

        clip-path: polygon(0% 0%,
                100% 0%,
                120% 100%,
                0% 100%);

    }

    .diseño3 {
        background-color: #1571e8af;
        width: 100%;
        height: 100%;
        position: absolute;

        clip-path: polygon(0% 0%,
                25% 0%,
                120% 100%,
                0% 100%);

    }

    .logo {
        /* background-color: #ff0000a4; */
        width: 40%;
        height: 40%;
        position: absolute;
        right: 6%;
        top: 3%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .logo #status_focus {
        /* background-color: red; */
        display: flex;
        color: #00000000;
        width: 100%;
        display: none;
        position: absolute;
        /* background-color: red; */
    }

    .logo #status_focus strong {
        margin-top: 0rem;
        font-size: 0.8rem;
    }

    .logo #status_focus img {
        display: none;
    }

    .empresaConectado {
        position: absolute;
        z-index: 11;
        left: 5%;
        top: 38%;
        display: flex;
        flex-direction: column;
        width: 90%;
    }

    .texto .empresa {
        color: rgb(255, 255, 255);
        font-size: 1.7rem;
        font-family: Inter, sans-serif;
        font-weight: bold;
        max-width: 100%;
    }

    .texto .conectado {
        color: white;
        font-size: 1rem;
        font-family: Inter, sans-serif;
        font-weight: bold;
    }

    .fechaHora {
        position: absolute;
        display: flex;
        flex-direction: column;
        z-index: 10;
        color: white;
        font-size: 1.7rem;
        font-family: Inter, sans-serif;
        font-weight: bold;
        left: 5%;
        top: 55%;
    }

    .fechaHora .hora {
        /* background-color: red; */
        position: relative;
        top: -0.7rem;
    }

    .botones {
        position: absolute;
        display: flex;
        flex-direction: column;
        z-index: 10;
        top: 70%;
        left: 5%;
        gap: 1rem;
    }

    .botones .btnEntrada {
        border: none;
        border-radius: 5px;
        color: white;
        padding: 0.5rem 2rem;
        cursor: pointer;
        font-family: Inter, sans-serif;
        font-weight: bold;
        top: 60%;
        left: 5%;
        display: flex;
        align-items: center;
        width: 18rem;
        height: 3.5rem;
        justify-content: start;
        font-size: 1.2rem;
        color: #0a7d29;
        border-radius: 10px;
    }

    .botones .btnSalida {
        border: none;
        border-radius: 5px;
        color: white;
        padding: 0.5rem 2rem;
        cursor: pointer;
        font-family: Inter, sans-serif;
        font-weight: bold;
        top: 68%;
        left: 5%;
        display: flex;
        align-items: center;
        width: 18rem;
        height: 3.5rem;
        justify-content: start;
        font-size: 1.2rem;
        color: #af0000;
        border-radius: 10px;
    }

    .botones .btnMasVerde {
        border: none;
        border-radius: 5px;
        color: white;
        cursor: pointer;
        font-family: Inter, sans-serif;
        font-weight: bold;
        top: 60%;
        left: 21%;
        display: flex;
        align-items: center;
        width: 3.3rem;
        height: 3.5rem;
        justify-content: center;
        border-radius: 20%;
    }

    .botones .btnMasRojo {
        border: none;
        border-radius: 5px;
        color: white;
        cursor: pointer;
        font-family: Inter, sans-serif;
        font-weight: bold;
        top: 68%;
        left: 21%;
        display: flex;
        align-items: center;
        width: 3.3rem;
        height: 3.5rem;
        justify-content: center;
        border-radius: 20%;
    }

    .botones .btnEntrada img {
        width: 20%;
        margin-right: 1rem;
    }

    .botones .btnSalida img {
        width: 20%;
        margin-right: 1rem;
    }

    .botones .btnMasVerde img {
        width: 50%;
    }

    .botones .btnMasRojo img {
        width: 50%;
    }

    #barraNav {
        /* display: none; */
        width: 100%;
    }
}

@media (max-width: 480px) {
    body {
        width: 100%;
        background-color: rgba(213, 209, 209, 0.829);
    }

    .diseño1 {
        background-color: #1369d9ff;
        width: 100%;
        height: 100%;
        position: absolute;


        clip-path: polygon(0% 0%,
                0% 0%,
                120% 100%,
                0% 100%);

    }


    .diseño2 {
        background-color: #1571e800;
        width: 100%;
        height: 100%;
        position: absolute;

        clip-path: polygon(0% 0%,
                100% 0%,
                120% 100%,
                0% 100%);

    }


    .diseño3 {
        background-color: #1571e8a2;
        width: 100%;
        height: 100%;
        position: absolute;

        clip-path: polygon(0% 0%,
                25% 0%,
                120% 100%,
                0% 100%);

    }


    .logo {
        /* background-color: #ff0000a4; */
        width: 40%;
        height: 40%;
        position: absolute;
        right: 8%;
        top: 0%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .logo #status_focus {
        /* background-color: red; */
        display: flex;
        color: #00000000;
        width: 100%;
        display: none;
        position: absolute;
        /* background-color: red; */
    }

    .logo #status_focus strong {
        margin-top: 0rem;
        font-size: 0.8rem;
    }

    .logo #status_focus img {
        display: none;
    }

    .empresaConectado {
        position: absolute;
        z-index: 11;
        left: 5%;
        top: 33%;
        display: flex;
        flex-direction: column;
    }

    .texto .empresa {
        color: rgb(255, 255, 255);
        font-size: 1.5rem;
        font-family: Inter, sans-serif;
        font-weight: bold;
        max-width: 100%;
    }

    .texto .conectado {
        color: white;
        font-size: 1rem;
        font-family: Inter, sans-serif;
        font-weight: bold;
    }

    .fechaHora {
        position: absolute;
        display: flex;
        flex-direction: column;
        z-index: 10;
        color: white;
        font-size: 1.7rem;
        font-family: Inter, sans-serif;
        font-weight: bold;
        left: 5%;
        top: 50%;
    }

    .fechaHora .hora {
        /* background-color: red; */
        position: relative;
        top: -0.7rem;
    }

    .botones {
        position: absolute;
        display: flex;
        flex-direction: column;
        z-index: 10;
        top: 62%;
        left: 5%;
        gap: 1rem;
    }

    .botones .btnEntrada {
        border: none;
        border-radius: 5px;
        color: white;
        padding: 0.5rem 2rem;
        cursor: pointer;
        font-family: Inter, sans-serif;
        font-weight: bold;
        top: 60%;
        left: 5%;
        display: flex;
        align-items: center;
        width: 16rem;
        height: 3.5rem;
        justify-content: start;
        font-size: 1.2rem;
        color: #0a7d29;
        border-radius: 10px;
    }

    .botones .btnSalida {
        border: none;
        border-radius: 5px;
        color: white;
        padding: 0.5rem 2rem;
        cursor: pointer;
        font-family: Inter, sans-serif;
        font-weight: bold;
        top: 68%;
        left: 5%;
        display: flex;
        align-items: center;
        width: 16rem;
        height: 3.5rem;
        justify-content: start;
        font-size: 1.2rem;
        color: #af0000;
        border-radius: 10px;
    }

    .botones .btnMasVerde {
        border: none;
        border-radius: 5px;
        color: white;
        cursor: pointer;
        font-family: Inter, sans-serif;
        font-weight: bold;
        top: 60%;
        left: 21%;
        display: flex;
        align-items: center;
        width: 3.3rem;
        height: 3.5rem;
        justify-content: center;
        border-radius: 20%;
    }

    .botones .btnMasRojo {
        border: none;
        border-radius: 5px;
        color: white;
        cursor: pointer;
        font-family: Inter, sans-serif;
        font-weight: bold;
        top: 68%;
        left: 21%;
        display: flex;
        align-items: center;
        width: 3.3rem;
        height: 3.5rem;
        justify-content: center;
        border-radius: 20%;
    }

    .botones .btnEntrada img {
        width: 20%;
        margin-right: 1rem;
    }

    .botones .btnSalida img {
        width: 20%;
        margin-right: 1rem;
    }

    .botones .btnMasVerde img {
        width: 50%;
    }

    .botones .btnMasRojo img {
        width: 50%;
    }

    #barraNav {
        /* display: none; */
        width: 100%;
    }
}

@media (max-width: 430px) {
    body {
        width: 100%;
        background-color: rgba(213, 209, 209, 0.829);
    }

    .diseño1 {
        background-color: #1369d9ff;
        width: 100%;
        height: 100%;
        position: absolute;


        clip-path: polygon(0% 0%,
                0% 0%,
                120% 100%,
                0% 100%);

    }

    .diseño2 {
        background-color: #1571e800;
        width: 100%;
        height: 100%;
        position: absolute;

        clip-path: polygon(0% 0%,
                50% 0%,
                105% 100%,
                0% 100%);

    }

    .diseño3 {
        background-color: #1571e8a2;
        width: 100%;
        height: 100%;
        position: absolute;

        clip-path: polygon(0% 0%,
                35% 0%,
                115% 100%,
                0% 100%);

    }

    .logo {
        width: 43%;
        height: 40%;
        position: absolute;
        right: 4%;
        top: 1%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .logo #status_focus {
        display: flex;
        color: #00000000;
        width: 100%;
        display: none;
        position: absolute;
    }

    .logo #status_focus strong {
        margin-top: 0rem;
        font-size: 0.8rem;
    }

    .logo #status_focus img {
        display: none;
    }

    .empresaConectado {
        position: absolute;
        z-index: 11;
        left: 5%;
        top: 36%;
        display: flex;
        flex-direction: column;
    }


    .texto .empresa {
        color: rgb(255, 255, 255);
        font-size: 1.4rem;
        font-family: Inter, sans-serif;
        font-weight: bold;
        max-width: 100%;
    }

    .texto .conectado {
        color: white;
        font-size: 1rem;
        font-family: Inter, sans-serif;
        font-weight: bold;
    }

    .fechaHora {
        position: absolute;
        display: flex;
        flex-direction: column;
        z-index: 10;
        color: white;
        font-size: 1.7rem;
        font-family: Inter, sans-serif;
        font-weight: bold;
        left: 5%;
        top: 53%;
    }

    .fechaHora .hora {
        /* background-color: red; */
        position: relative;
        top: -0.7rem;
    }

    .botones {
        position: absolute;
        display: flex;
        flex-direction: column;
        z-index: 10;
        top: 66%;
        left: 5%;
        gap: 1rem;
    }

    .botones .btnEntrada {
        border: none;
        border-radius: 5px;
        color: white;
        padding: 0.5rem 2rem;
        cursor: pointer;
        font-family: Inter, sans-serif;
        font-weight: bold;
        top: 60%;
        left: 5%;
        display: flex;
        align-items: center;
        width: 16rem;
        height: 3.5rem;
        justify-content: start;
        font-size: 1.2rem;
        color: #0a7d29;
        border-radius: 10px;
    }

    .botones .btnSalida {
        border: none;
        border-radius: 5px;
        color: white;
        padding: 0.5rem 2rem;
        cursor: pointer;
        font-family: Inter, sans-serif;
        font-weight: bold;
        top: 68%;
        left: 5%;
        display: flex;
        align-items: center;
        width: 16rem;
        height: 3.5rem;
        justify-content: start;
        font-size: 1.2rem;
        color: #af0000;
        border-radius: 10px;
    }

    .botones .btnMasVerde {
        border: none;
        border-radius: 5px;
        color: white;
        cursor: pointer;
        font-family: Inter, sans-serif;
        font-weight: bold;
        top: 60%;
        left: 21%;
        display: flex;
        align-items: center;
        width: 3.3rem;
        height: 3.5rem;
        justify-content: center;
        border-radius: 20%;
    }

    .botones .btnMasRojo {
        border: none;
        border-radius: 5px;
        color: white;
        cursor: pointer;
        font-family: Inter, sans-serif;
        font-weight: bold;
        top: 68%;
        left: 21%;
        display: flex;
        align-items: center;
        width: 3.3rem;
        height: 3.5rem;
        justify-content: center;
        border-radius: 20%;
    }

    .botones .btnEntrada img {
        width: 20%;
        margin-right: 1rem;
    }

    .botones .btnSalida img {
        width: 20%;
        margin-right: 1rem;
    }

    .botones .btnMasVerde img {
        width: 50%;
    }

    .botones .btnMasRojo img {
        width: 50%;
    }

    #barraNav {
        /* display: none; */
        width: 100%;
    }
}

@media (max-width: 374px) {
    body {
        width: 100%;
        background-color: rgba(213, 209, 209, 0.829);
    }

    .diseño1 {
        background-color: #1369d9ff;
        width: 100%;
        height: 108%;
        position: absolute;


        clip-path: polygon(0% 0%,
                0% 0%,
                140% 100%,
                0% 100%);

    }

    .diseño2 {
        background-color: #1571e800;
        width: 100%;
        height: 100%;
        position: absolute;

        clip-path: polygon(0% 0%,
                50% 0%,
                105% 100%,
                0% 100%);

    }

    .diseño3 {
        background-color: #1571e8a2;
        width: 100%;
        height: 108%;
        position: absolute;

        clip-path: polygon(0% 0%,
                35% 0%,
                130% 100%,
                0% 100%);

    }

    .logo {
        /* background-color: #ff0000a4; */
        width: 47%;
        height: 39%;
        position: absolute;
        right: 2%;
        top: 0%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .logo #status_focus {
        /* background-color: red; */
        display: flex;
        color: #00000000;
        width: 100%;
        display: none;
        position: absolute;
        /* background-color: red; */
    }

    .logo #status_focus strong {
        margin-top: 0rem;
        font-size: 0.8rem;
    }

    .logo #status_focus img {
        display: none;
    }

    .empresaConectado {
        position: absolute;
        z-index: 11;
        left: 5%;
        top: 36%;
        display: flex;
        flex-direction: column;
    }

    .texto .empresa {
        color: rgb(255, 255, 255);
        font-size: 1.3rem;
        font-family: Inter, sans-serif;
        font-weight: bold;
    }

    .texto .conectado {
        color: white;
        font-size: 1rem;
        font-family: Inter, sans-serif;
        font-weight: bold;
    }

    .fechaHora {
        position: absolute;
        display: flex;
        flex-direction: column;
        z-index: 10;
        color: white;
        font-size: 1.6rem;
        font-family: Inter, sans-serif;
        font-weight: bold;
        left: 5%;
        top: 52%;
    }

    .fechaHora .hora {
        /* background-color: red; */
        position: relative;
        top: -0.7rem;
    }

    .botones {
        position: absolute;
        display: flex;
        flex-direction: column;
        z-index: 10;
        top: 63%;
        left: 5%;
        gap: 1rem;
    }

    .botones .btnEntrada {
        border: none;
        border-radius: 5px;
        color: white;
        padding: 0.5rem 2rem;
        cursor: pointer;
        font-family: Inter, sans-serif;
        font-weight: bold;
        top: 60%;
        left: 5%;
        display: flex;
        align-items: center;
        width: 16rem;
        height: 3.5rem;
        justify-content: start;
        font-size: 1.2rem;
        color: #0a7d29;
        border-radius: 10px;
    }

    .botones .btnSalida {
        border: none;
        border-radius: 5px;
        color: white;
        padding: 0.5rem 2rem;
        cursor: pointer;
        font-family: Inter, sans-serif;
        font-weight: bold;
        top: 68%;
        left: 5%;
        display: flex;
        align-items: center;
        width: 16rem;
        height: 3.5rem;
        justify-content: start;
        font-size: 1.2rem;
        color: #af0000;
        border-radius: 10px;
    }

    .botones .btnMasVerde {
        border: none;
        border-radius: 5px;
        color: white;
        cursor: pointer;
        font-family: Inter, sans-serif;
        font-weight: bold;
        top: 60%;
        left: 21%;
        display: flex;
        align-items: center;
        width: 3.3rem;
        height: 3.5rem;
        justify-content: center;
        border-radius: 20%;
    }

    .botones .btnMasRojo {
        border: none;
        border-radius: 5px;
        color: white;
        cursor: pointer;
        font-family: Inter, sans-serif;
        font-weight: bold;
        top: 68%;
        left: 21%;
        display: flex;
        align-items: center;
        width: 3.3rem;
        height: 3.5rem;
        justify-content: center;
        border-radius: 20%;
    }

    .botones .btnEntrada img {
        width: 20%;
        margin-right: 1rem;
    }

    .botones .btnSalida img {
        width: 20%;
        margin-right: 1rem;
    }

    .botones .btnMasVerde img {
        width: 50%;
    }

    .botones .btnMasRojo img {
        width: 50%;
    }

    #barraNav {
        /* display: none; */
        width: 100%;
    }
}