/* LOGIN DE EMPLEADOS */

@media screen and (max-width: 1246px) {
    .login-form-content {
        width: 50%;
    }

    .dominio-email {
        top: 9.5px;
        right: 20px;
        font-size: 13px;
        width: 45%;
    }
}

@media screen and (max-width: 1001px) {
    .login-form-content {
        width: 60%;
    }

    .dominio-email {
        width: 60%;
    }

    .name-system>h1 {
        font-size: 25px;
    }
}

@media screen and (max-width: 851px) {
    .login-form-content {
        width: 100%;
    }
}

@media screen and (max-width: 576px) {
    .dominio-email {
        width: 50%;
    }

    .textbox-content>input::placeholder {
        font-size: 11px;
    }
}

@media screen and (max-width: 500px) {
    .name-system>h1 {
        font-size: 20px;
    }

    .name-page>p {
        font-size: 15px;
    }

    .form-content-login {
        width: 100%;
        padding-right: 20px;
        padding-left: 20px;
    }
}

@media screen and (max-width: 391px) {
    .dominio-email {
        width: 55%;
    }
}

/* ------------------MENU DE NAVEGACIÓN----------------------- */

@media screen and (max-width: 980px) {
    .header {
        display: none;
    }

    .header-nav {
        display: block;
        width: 100%;
        z-index: 99;
        height: 80px;
        position: relative;
        background-color: #152564;
    }

    label.logo a {
        font-size: 15px;
        padding: 0 30px;
        line-height: 80px;
        font-weight: 500;
        text-decoration: none;
        color: #fff;
        font-family: 'Inter', sans-serif;
    }

    #check {
        display: none;
    }

    .checkbtn {
        float: right;
        display: block;
        cursor: pointer;
        font-size: 30px;
        line-height: 80px;
        margin-right: 30px;
        color: #fff
    }

    .header-nav > nav ul {
        top: 80px;
        margin: 0;
        padding: 0;
        width: 30%;
        left: -100%;
        height: 100vh;
        position: fixed;
        text-align: left;
        transition: 0.5s linear;
        background: #152564;
    }

    .header-nav > nav ul li {
        display: block;
        margin: 50px 0;
        line-height: 30px;
    }

    .header-nav > nav ul li a {
        font-family: 'Inter', sans-serif;
        font-size: 15px;
        color: #fff;
        transition: 0.5s ease-in-out;
        text-decoration: none;
        padding-left: 30px;
        font-weight: 200;
    }

    .UsuarioLogeado {
        font-weight: 500 !important;
    }

    #check:checked ~ ul {
        left: 0;
    }
}

@media screen and (max-width: 800px) {
    .header-nav > nav ul {
        width: 40%;
    }
}

@media screen and (max-width: 640px) {
    .header-nav > nav ul {
        width: 50%;
    }
}

@media screen and (max-width: 490px) {
    .header-nav > nav ul {
        width: 100%;
    }
}

/* -------------------------MODAL SUBSERVICIOS----------------------- */

@media screen and (max-width: 1494px) {
    #form > select {
        display: block;
        width: 100%;
        margin-top: 30px;
    }
}

@media screen and (max-width: 1040px) {
    #formulario-modal-tickets > div {
        width: 70%;
    }
}

@media screen and (max-width: 780px) {
    #formulario-modal-tickets > div {
        width: 100%;
    }

    #form > h1 {
        font-size: 20px;
    }

    .des-subservicio {
        font-size: 11px;
    }

    #form {
        padding-left: 30px;
        padding-right: 30px;
        padding-top: 50px;
        padding-bottom: 50px;
    }

    #formulario-modal-tickets {
        background-color: #fff;
    }
}

/* -------------------------MODAL MENSAJES----------------------- */

@media screen and (max-width: 1045px) {
    #modal-mensajes-ticket > div {
        width: 70%;
    }
    .modal-content {
        width: 70%;
    }
}

@media screen and (max-width: 750px) {
    #modal-mensajes-ticket > div {
        width: 100%;
    }

    .modal-content {
        width: 100%;
    }

    #modal-mensajes-ticket {
        background-color: #fff;
    }

    #modal-opinion-ticket {
        background-color: #fff;
    }

    .contenedor-mensajes-modal {
        box-shadow: none;
    }
}