/* VARIABLES */
:root{
    --blanco-contraste: rgb(240,240,240);
}

/* SHARED */
::-webkit-scrollbar{
    display: none;
}
#contenedor-principal{
    height: 100vh;
    padding-left: 57px;
}
#aviso{
    position: fixed;
    max-width: 500px;
    z-index: 1300;
    top: 20px;
    right: -600px;
    transition: all .4s;
}
.contenedor-tabla{
    overflow-x: auto;
    position: relative;
}
.input-coincidencia{
    position: relative;
}
.card{
    cursor: pointer;
}
.filtro-orden{
    cursor: pointer;
    color: rgb(13, 110, 253) !important;
}

/* MENÚ */
#menu{
    background-color: white;
    position: fixed;
    left: 0px;
    top: 0px;
    height: 100vh;
    width: 55px;
    padding: 0;
    z-index: 1100;
    overflow-x: hidden;
    overflow-y: auto;
    /* transition: all .2s; */
    user-select: none;
}
#menu-despliegue{
    height: 50px;
}
#menu-perfil{
    height: 120px;
}
#menu-items{
    height: calc(100vh - 190px);
    overflow-y: auto;
}
#menu .text-danger, .page-item, .list-group-item{
    cursor: pointer;
    user-select: none;
}
.menu-icono{
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.menu-item, #menu svg{
    cursor: pointer;
}
.menu-item:hover{
    background-color: rgb(209, 209, 209);
}

/* MODAL CONFIRMACIÓN */
#contenedor-modal-confirmacion{
    position: fixed;
    z-index: 1200;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(255,255,255,.6);
    transition: all .4s;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
}
#modal-confirmacion{
    width: 500px;
}
#modal-confirmacion-titulo{
    font-size: 1.2rem;
    font-weight: 600;
}
#modal-confirmacion-cuerpo{
    background-color: var(--blanco-contraste);
    padding: 25px 15px;
    font-size: 1.1rem;
}
#modal-confirmacion-botones{
    background-color: var(--blanco-contraste);
    border-top: solid 1px rgb(170, 170, 170);
    padding: 15px 15px;
    display: flex;
    justify-content: end;
}

/* LOGIN */
.imagen-login{
    height: 100vh;
    background-image: url("../img/urbanizacion.jpg");
    background-size: cover;
    padding: 0;
}
.mascara-imagen-login{
    height: 100%;
    width: 100%;
    background-color: rgba(255,255,255,.6);
}
.formulario-login{
    width: 70%;
}
label{
    user-select: none;
}

@media (max-width: 575.98px) {
    /* SHARED */
    /* LOGIN */
    .formulario-login{
        width: 95%;
    }
    #modal-confirmacion{
        width: 95%;
    }
}

@media (max-width: 767.98px) { 
    /* SHARED */
    /* LOGIN */
}

@media (max-width: 991.98px) { 
    /* SHARED */
    /* LOGIN */
}

@media (max-width: 1199.98px) { 
    /* SHARED */
    /* LOGIN */
}

@media (max-width: 1399.98px) { 
    /* SHARED */
    /* LOGIN */
}