:root {
    --color-base-fuerte-6: #000;
    --color-base-fuerte-5: #0c131e;
    --color-base-fuerte-4: #121c2e;
    --color-base-fuerte-3: #18263d;
    --color-base-fuerte-2: #1d304c;
    --color-base-fuerte-1: #23395c;
    --color-base-medio-6: #29436b;
    --color-base-medio-5: #34a4e7;
    --color-base-medio-4: #4dafea;
    --color-base-medio-3: #67bbed;
    --color-base-medio-2: #80c6f0;
    --color-base-medio-1: #9ad1f3;
    --color-base-bajo-6: #b3ddf6;
    --color-base-bajo-5: #cce8f9;
    --color-base-bajo-4: #e6f4fc;
    --color-base-bajo-3: #effafb;
    --color-base-bajo-2: #f4fdfe;
    --color-base-bajo-1: #fff;

    --color-grafico-12: #77ffe8;
    --color-grafico-11: #c1fe7c;
    --color-grafico-10: #ff8cc0;
    --color-grafico-9: #f692ff;
    --color-grafico-8: #91a3ff;
    --color-grafico-7: #92ffb7;
    --color-grafico-6: #98d8f8;
    --color-grafico-5: #ffc392;
    --color-grafico-4: #fbff96;
    --color-grafico-3: #ff8f8f;
    --color-grafico-2: #d1f986;
    --color-grafico-1: #e0b0fd;

    /*--------------------------------- PARAMETROS BODY (INICIO) --------------------------------------------*/
    --backgroung-body: var(--color-base-bajo-2);
    /*--------------------------------- PARAMETROS BODY (FINAL) --------------------------------------------*/

    /*--------------------------------- COLORES MENU (INICIO) --------------------------------------------*/
    --color-header: var(--color-base-bajo-1);
    --color-btn-menu: var(--color-base-fuerte-1);
    --color-menu: url('../imgs/background-menu.png');
    --color-footer: url('../imgs/background-footer.png');
    /* --color-menu: var(--color-base-fuerte-1); */
    --color-contenedor-scroll: var(--color-base-fuerte-2);
    --color-linea-separador: rgba(255, 255, 255, .5);
    --color-linea-separador-oscuro: rgba(0, 0, 0, 0.5);
    --color-menu-li-padre: transparent;
    --color-menu-li-padre-active: rgba(255, 255, 255, 0.2);
    --color-menu-li-hijo: transparent;
    --color-menu-li-hijo-hover: rgba(255, 255, 255, 0.4);
    --color-menu-border-ul-hijo-hover: var(--color-base-medio-5);
    --color-menu-texto: var(--color-base-bajo-1);
    /*--------------------------------- COLORES MENU (FINAL) --------------------------------------------*/

    /*--------------------------------- COLORES SCROLL (INICIO) --------------------------------------------*/
    --color-barra-scroll: var(--color-base-bajo-1);
    --color-barra-scroll: var(--color-base-bajo-1);
    /*--------------------------------- COLORES SCROLL (FINAL) --------------------------------------------*/

    /*--------------------------------- COLORES MAIN (INICIO) --------------------------------------------*/
    --color-borde-main: var(--color-base-medio-4);
    --color-fondo-main: var(--color-base-bajo-2);
    /*--------------------------------- COLORES MAIN (FINAL) --------------------------------------------*/

    /*--------------------------------- COLORES PESTAÑAS (INICIO) --------------------------------------------*/
    --color-borde-tab: var(--color-base-medio-4);
    --color-background-tab: var(--color-base-medio-4);
    --color-background-tab-esquina: var(--color-base-fuerte-1);
    --color-texto-tab: var(--color-base-bajo-1);
    --color-background-tab-activo: var(--color-base-bajo-2);
    --color-texto-tab-activo: var(--color-base-fuerte-1);
    /*--------------------------------- COLORES PESTAÑAS (FINAL) --------------------------------------------*/

    /*--------------------------------- COLORES TABLA (INICIO) --------------------------------------------*/
    --color-texto-th: var(--color-base-fuerte-4);
    /* --color-texto-th: var(--color-base-fuerte-3); */
    --color-borde-tabla: var(--color-base-bajo-6);
    --color-background-th: var(--color-base-medio-2);
    --color-background-tr-1: transparent;
    --color-background-tr-2: var(--color-base-bajo-4);
    /* --color-background-tr-hover: var(--color-base-bajo-6); */
    --color-background-tr-hover: var(--color-base-bajo-5);
    --color-icon-acciones: var(--color-base-medio-6);
    --color-icon-acciones-hover: var(--color-base-fuerte-1);
    /*--------------------------------- COLORES TABLA (FINAL) --------------------------------------------*/
}

* {
    margin: 0px;
    padding: 0px;
}

/*--------------------------------< SCROLL (INICIO) >----------------------------------*/
/* Works on Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--color-contenedor-scroll) var(--color-barra-scroll);
}

/* Works on Chrome, Edge, and Safari */
*::-webkit-scrollbar {
    width: 12px;
}

*::-webkit-scrollbar-track {
    background: var(--color-contenedor-scroll);
}

*::-webkit-scrollbar-thumb {
    background-color: var(--color-barra-scroll);
    border-radius: 20px;
    border: 3px solid var(--color-contenedor-scroll);
}

/*--------------------------------< SCROLL (FINAL) >----------------------------------*/
html {
    font-size: 12px;
}

body {
    position: relative;
    height: 100vh;
    box-sizing: border-box;
    padding-top: 120px;
    font-family: "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
    background: var(--backgroung-body);
    /* background-attachment: fixed; */
    color: #555;
    /* padding-bottom: 80px; */
    display: flex;
    flex-direction: column;
}

body.active {
    padding-left: 25%;
}

#cuerpo {
    flex: 1;
}


/*--------------------------------- ENCABEZADO (INICIO) --------------------------------------------*/
header {
    position: fixed;
    top: 0;
    left: 0;
    height: 50px;
    background: var(--color-header);
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.3);
    box-shadow: -5px 0px 20px 5px rgba(0, 0, 0, 0.3);
    z-index: 100;
}

header h2 {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

header h2 .fa-times {
    display: none;
}

header h2 i {
    margin-right: 5px;
    font-size: 1.5rem;
}

.contenedor-head-menu {
    width: 130px;
    justify-content: space-between;
}

.logo {
    display: relative;
    /* width: 50px;
    height: 50px; */
    /* overflow: hidden; */
    cursor: pointer;
}

.logo img.max-ancho {
    width: 45px;
}

.logo img.max-alto {
    height: 45px;
}

.btn-menu {
    position: relative;
    height: 50px;
    width: 40px;
    cursor: pointer;
}

.btn-menu span {
    height: 2px;
    background: var(--color-btn-menu);
    display: block;
}

.btn-menu .linea-menu-1 {
    transform: translate(0px, 10px);
    width: 30px;
}

.btn-menu .linea-menu-2 {
    transform: translate(0, 20px);
    width: 40px;
}

.btn-menu .linea-menu-3 {
    transform: translate(0, 30px);
    width: 20px;
}

body.active .contenedor-head-menu {
    width: 25%;
    max-width: 300px;
}

body.active .contenedor-head-menu .btn-menu {
    margin-right: -5px;
}

body.active .contenedor-head-menu .btn-menu .linea-menu-1 {
    /* transform: translate(10px, 10px); */
    /* transform: translate(5px, 25px) rotate(135deg); */
    /* width: 40px; */
    margin-left: 10px;
}

body.active .contenedor-head-menu .btn-menu .linea-menu-2 {
    /* opacity: 0; */
}

body.active .contenedor-head-menu .btn-menu .linea-menu-3 {
    /* transform: translate(5px, 20px) rotate(45deg); */
    /* width: 40px; */
    margin-left: 20px;
}

.menu {
    position: fixed;
    top: 50px;
    left: -33%;
    background: var(--color-menu);
    background-image: no-repeat;
    background-image: fixed;
    background-image: center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    width: 25%;
    max-width: 300px;
    z-index: 99;
    height: calc(100% - 50px);
}

body.active .menu {
    left: 0;
}

.menu nav {
    height: 100%;
}

.menu nav ul {
    list-style: none;
    padding: 0;
    overflow-y: auto;
    height: 100%;
}

.menu ul a {
    display: block;
    color: var(--color-menu-texto);
    text-decoration: none;
    cursor: pointer;

    /* font-family:"HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif; */
    /* text-transform:uppercase; */
    /* text-transform para modificar mayusculas minusculas del texto */
    /* letter-spacing:1px; */
    /* letter-spacing para el espacio entre letras */
}

.menu nav>ul>li {
    color: #fff;
    padding: 5px;
    -o-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    width: 90%;
    margin: auto;
    font-weight: bold;
}

.menu nav>ul>li.active>ul {
    display: block;
}

.menu nav>ul>li>span {
    background: var(--color-menu-li-padre);
    /* width: 100%; */
    display: block;
    cursor: pointer;
    padding: 5px;
    color: var(--color-menu-texto);

    -o-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.menu nav>ul>li.active>span {
    background: var(--color-menu-li-padre-active);
    /* transform: translate(5px); */
    padding-left: 10px;
}

.menu nav>ul>li>span:hover {
    background: var(--color-menu-li-padre-active);
}

.menu nav>ul>li>ul {
    display: none;
}

.menu nav>ul>li.active>ul {
    display: block;
}

.menu nav>ul>li>span>i:last-child {
    float: right;
    color: var(--color-linea-separador);
    margin-right: 10px;
    margin-top: 3px;
    -o-transition: transform .3s ease;
    -moz-transition: transform .3s ease;
    -webkit-transition: transform .3s ease;
    transition: transform .3s ease;
}

.menu nav>ul>li.active>span>i:last-child {
    transform: rotate(90deg);
}

.menu nav>ul>li>ul>li {
    /* padding: 5px 5px 5px 5px; */
    margin-left: 10px;
    border: 0px solid var(--color-menu-border-ul-hijo-hover);
    margin-right: 10px;
    background: var(--color-menu-li-hijo-);
    font-weight: bold;
    -o-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.menu nav>ul>li>ul>li a {
    padding: 5px;
}

.menu nav>ul>li>ul>li:hover {
    border-left: 10px solid var(--color-menu-border-ul-hijo-hover);
    background: var(--color-menu-li-hijo-hover);
}

.header-derecho {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-derecho .campana-notificaciones,
.header-derecho .icono-pdf {
    font-size: 16px;
    margin-right: 10px;
    color: var(--color-base-fuerte-1);
    position: relative;
    cursor: pointer;
}

.header-derecho .campana-notificaciones>i,
.header-derecho .icono-pdf>i {
    border: 1px solid var(--color-base-fuerte-1);
    padding: 5px;
    border-radius: 100%;
}

@keyframes notificaciones-saturadas {
    0% {
        -webkit-transform: rotateZ(-5deg);
        border: 1px solid var(--color-base-fuerte-1);
        color: var(--color-base-fuerte-1);
    }

    50% {
        -webkit-transform: rotateZ(0deg) scale(.9);
    }

    100% {
        -webkit-transform: rotateZ(5deg);
        border: 1px solid #ff2525;
        color: #ff2525;
    }
}

.header-derecho .campana-notificaciones.sobrecarga>i {
    animation-name: notificaciones-saturadas;
    animation-duration: .5s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    -o-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.header-derecho .campana-notificaciones .numero-notificaciones {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    color: var(--color-base-bajo-1);
    background: red;
    border-radius: 100%;
    width: 16px;
    height: 16px;
    font-size: 11px;
    bottom: -3px;
    right: -3px;
}

.user-perfil {
    width: 200px;
    position: relative;
    cursor: pointer;
}

.user-perfil .foto-perfil {
    width: 45px;
    height: 45px;
    border: 2px solid var(--color-base-fuerte-1);
    border-radius: 100px;
    overflow: hidden;
}

.user-perfil img {
    width: 100%;
}

.user-perfil {
    display: flex;
    align-items: center;
    margin-right: 5px;
    /* background: #bbddfa; */
}

.user-perfil>i {
    float: right;
    font-size: 20px;
    -o-transition: transform .3s ease;
    -moz-transition: transform .3s ease;
    -webkit-transition: transform .3s ease;
    transition: transform .3s ease;
    color: var(--color-base-fuerte-1);
}

.user-perfil.active>i {
    transform: rotate(90deg);
}

.datos-perfil {
    margin-left: 5px;
    color: var(--color-base-fuerte-1);
}

.datos-perfil .nombre-usuario {
    white-space: nowrap;
    max-width: 140px;
    /* background: #000; */
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
    margin-right: 5px;
    font-weight: bold;
}

.datos-perfil .rol-usuario {
    white-space: nowrap;
    max-width: 140px;
    /* background: #000; */
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
    margin-right: 5px;
    font-weight: bold;
    font-size: 14px;
}

.user-perfil .opciones-perfil {
    position: absolute;
    background: #fff;
    width: 200px;
    max-height: 0;
    overflow: hidden;
    top: 47.50px;
    border: 1px;
    /* offset-x | offset-y | blur-radius | spread-radius | color */
    -webkit-box-shadow: -5px -5px 5px rgba(0, 0, 0, 0.4);
    box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.4);
    -o-transition: max-height .3s ease;
    -moz-transition: max-height .3s ease;
    -webkit-transition: max-height .3s ease;
    transition: max-height .3s ease;
    cursor: auto;
}

.user-perfil.active .opciones-perfil {
    border: 1px solid var(--color-base-fuerte-1);
}

.separador-opc {
    width: 90%;
    height: 1px;
    margin: auto;
    background: var(--color-base-medio-3);
}

.user-perfil .opciones-perfil .monto-disponible {
    background-color: var(--color-base-medio-6);
    color: var(--color-base-bajo-1);
    padding: 5px;
    font-weight: bold;
    line-height: 1.2;
}

.user-perfil .opciones-perfil .monto-disponible .titulito {
    font-size: 10px;
}

.user-perfil .opciones-perfil .monto-disponible .monto {
    position: relative;
    font-size: 16px;
    font-family: 'Lucida Console', monospace;
    width: 100%;
    display: inline-block;
    text-align: center;
}

.user-perfil .opciones-perfil .opc-perfil {
    padding: 5px;
    font-weight: bold;
    color: var(--color-base-fuerte-1);
    max-width: 90%;
    margin: auto;
    cursor: pointer;
}

.user-perfil .opciones-perfil .opc-perfil:hover {
    background: var(--color-base-fuerte-1);
    color: var(--color-base-bajo-1);
}


.user-perfil .opciones-perfil .opc-perfil:first-of-type {
    margin-top: 5px;
}

.user-perfil .opciones-perfil .opc-perfil:last-of-type {
    color: #ff2525;
    margin-bottom: 5px;
}

.user-perfil .opciones-perfil .opc-perfil:last-of-type:hover {
    background: #ff2525;
    color: #fff;
}

/*--------------------------------- ENCABEZADO (FINAL) --------------------------------------------*/

/*--------------------------------- PRINCIPAL (INICIO) --------------------------------------------*/
main {
    width: 90%;
    min-height: 300px;
    margin: auto;
    position: relative;
    background: var(--color-fondo-main);
    padding: 10px;
    border: 1px solid var(--color-borde-main);
    /* offset-x | offset-y | blur-radius | spread-radius | color */
    -webkit-box-shadow: -5px -5px 5px rgba(0, 0, 0, 0.4);
    box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.4);
}

main #contenidoMain {
    position: relative;
}

.menu nav>ul>li>ul>li i {
    font-size: .9rem;
}

/*--------------------------------- PRINCIPAL (FINAL) --------------------------------------------*/

/*--------------------------------- PESTAÑAS (INICIO) --------------------------------------------*/
.contenedor-tabs {
    display: flex;
    justify-content: flex-start;
    align-content: center;
    position: absolute;
    top: -39px;
    left: -1px;
    width: 100%;
    overflow-x: auto;
}

.tab {
    padding: 10px;
    border-left: 1px solid var(--color-fondo-main);
    /* border-top-right-radius: 20px; */
    background: var(--color-background-tab);
    white-space: nowrap;
    color: var(--color-texto-tab);
    font-weight: 100;
    cursor: pointer;
    position: relative;
    /* overflow-x: hidden; */
}

.contenedor-tabs .tab:first-child {
    border-left: 1px solid var(--color-borde-tab);
}

.tab.active+.tab {
    border-left: 1px solid var(--color-borde-tab);
}

.tab .triangulo i {
    display: none;
    position: absolute;
}

.tab .triangulo {
    -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3), -1px 1px 1px rgba(0, 0, 0, 0.2);
    border-color: var(--color-fondo-main) var(--color-fondo-main) var(--color-background-tab-esquina) var(--color-background-tab-esquina);
    /* color de borde */
    border-style: solid;
    border-width: 0 16px 16px 0;
    content: "";
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    width: 0;
    -o-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.tab.active {
    /* background: var(--color-base-bajo-1); */
    color: var(--color-texto-tab-activo);
    background: var(--color-background-tab-activo);
    font-weight: bold;
    border: 1px solid var(--color-borde-tab);
    border-top-right-radius: 0px;
    border-bottom: none;
}

.tab.active .triangulo {
    top: -30px;
    right: -30px;
}

.tab:hover .triangulo i {
    display: block;
    color: var(--color-texto-tab);
    font-size: 16px;
    left: 2px;
}

.tab:hover .triangulo {
    border-color: rgb(255, 52, 52);
    right: 0;
    top: 0;
}

/*--------------------------------- PESTAÑAS (FINAL) --------------------------------------------*/

/*--------------------------------- TABLA (INICIO) --------------------------------------------*/
.filtros-tabla {
    display: flex;
    justify-content: space-between;
}

.filtros-tabla #registrosPorPagina {
    display: flex;
    align-items: center;
}

.filtros-tabla #registrosPorPagina select {
    width: auto;
    border: none;
    border-bottom: 2px solid var(--color-borde-tab);
    border-radius: 0;
    outline: none !important;
    outline-width: 0 !important;
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
}

#contenedorBuscadorTabla #input-buscador {
    padding-right: 0;
}

#contenedorBuscadorTabla #select-columna {
    padding-left: 0;
    position: relative;
}

#contenedorBuscadorTabla #iconosAcciones i {
    cursor: pointer;
    font-size: 20px;
    color: var(--color-icon-acciones);
    /* width: 20px; */
}

#contenedorBuscadorTabla #iconosAcciones i:hover {
    color: var(--color-icon-acciones-hover);
}

#contenedorBuscadorTabla #input-buscador .form-control {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    outline: none !important;
    outline-width: 0 !important;
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
}

#contenedorBuscadorTabla #select-columna .form-select {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    outline: none !important;
    outline-width: 0 !important;
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    background: var(--bs-border-color);
}

#contenedorBuscadorTabla #select-columna .fa-angle-right {
    position: absolute;
    right: 15px;
    bottom: calc(50% - 6px);
    transform: rotate(90deg);
}

#contenedorBuscadorTabla #select-columna .form-select:focus {
    background: var(--color-base-fuerte-1);
    color: var(--color-base-bajo-1);
}

.contenedor-tabla {
    overflow: auto;
    max-height: 70vh;
    /* border: 1px solid var(--color-borde-tabla); */
}

.contenedor-tabla thead th {
    position: sticky;
    top: 0;
}

table {
    border-collapse: collapse;
    width: 100%;
}

.tabla-con-lineas-derecha table tr td {
    border-right: 1px solid var(--color-borde-tabla);
}

.tabla-con-lineas-derecha table tr td:last-child {
    border-right: none;
}

table tr {
    border-bottom: 1px solid var(--color-borde-tabla);
}

table th {
    color: var(--color-texto-th);
    background: var(--color-background-th);
    padding: 5px 10px;
    text-align: left;
    /* border-right: 1px solid var(--color-borde-tabla); */
    position: relative;
    font-weight: bold;
    white-space: nowrap;
}

table thead th:first-child {
    text-align: center;
}

table th i {
    position: absolute;
    top: 1px;
    right: 1px;
    font-size: .8rem;
    display: none !important;
}

table th.asc i[data-orden='asc'] {
    display: block !important;
}

table th.desc i[data-orden='desc'] {
    display: block !important;
}

table thead:last-child {
    border: none;
}

table td div:not(div.btn-checkbox) {
    white-space: nowrap;
    padding: 3px 10px;
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    /* text-align: center; */
}

table td.td-acciones {
    white-space: nowrap;
    padding: 3px 10px;
    text-align: center;
}

table td.td-acciones i {
    margin-left: 5px;
    margin-right: 5px;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--color-icon-acciones);
}

table td.td-acciones i:hover {
    color: var(--color-icon-acciones-hover);
}

table td.td-acciones i.texto-verde {
    color: #33b133;
}

table td.td-acciones i.texto-rojo {
    color: #ff2525;
}

table td.td-acciones button i {
    color: var(--color-base-bajo-1);
}

table td.td-acciones i.fa-trash-can,
table td.td-acciones i.fa-ban,
table td.td-acciones i.fa-file-pdf,
table td.td-acciones i.fa-trash-arrow-up {
    color: #ff2525;
}

table td.td-acciones i.fa-trash-can:hover,
table td.td-acciones i.fa-ban:hover,
table td.td-acciones i.fa-file-pdf:hover,
table td.td-acciones i.fa-trash-arrow-up:hover {
    color: #bb1f1f;
}

table thead:last-child {
    border: none;
}

table tbody tr:nth-child(2n) {
    background: var(--color-background-tr-1);
}

table tbody tr:nth-child(2n + 1) {
    background: var(--color-background-tr-2);
}

table tbody tr:hover {
    background: var(--color-background-tr-hover);
}

.contenedor-paginado {
    display: flex;
    justify-content: space-between;
}

.contenedor-paginado .paginado {
    display: flex;
    justify-content: end;
}

.contenedor-paginado .paginado button {
    background-color: transparent;
    padding: 5px;
    margin: 0;
    border: 1px solid var(--bs-border-color);
}

.contenedor-paginado .paginado button.deshabilitado {
    color: var(--bs-border-color) !important;
}

.contenedor-paginado .paginado button:hover:not(.deshabilitado) {
    background-color: var(--color-base-fuerte-1);
    color: var(--color-base-bajo-1);
}

.contenedor-paginado .paginado button.pagina-puntos {
    background-color: transparent;
}

.contenedor-paginado .paginado button.pagina-actual {
    background-color: var(--color-base-medio-2);
    color: #fff;
}

/*--------------------------------- TABLA (FINAL) --------------------------------------------*/

/*--------------------------------- MODALES (INICIO) --------------------------------------------*/
.contenedor-modal {
    background-color: rgba(0, 0, 0, .2);
    height: 100%;
    width: 100%;
    color: #000;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 200;
    display: flex;
    justify-content: center;
    align-items: center;
}


@keyframes aparecer-modal {
    0% {
        transform: scale(.9);
        opacity: 50;
    }

    50% {
        transform: scale(1.1);
        opacity: 75;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.contenedor-modal.active>div {
    opacity: 1;
    transform: 1;
    animation-name: aparecer-modal;
    animation-duration: .2s;
}

/*--- MODAL TABLA (INICIO) ---*/
#contenedorModalTabla,
#contenedorModalImagenGrande {
    /* display: grid;
    place-content: center; */
    display: flex;
    justify-content: center;
    align-items: center;
}

#contenedorModalTabla h2 {
    background: var(--color-base-fuerte-1);
    color: var(--color-base-bajo-1);
    text-align: center;
    margin: -10px -10px 10px -10px;
    padding: 5px;
}

.contenedor-modal .modal-tabla {
    border: 1px solid var(--color-borde-main);
    width: 90%;
    /* min-height: 300px; */
    max-width: 1000px;
    height: 85vh;
    margin: auto;
    position: relative;
    background: var(--color-fondo-main);
    padding: 10px;
    overflow-y: auto;
    /* offset-x | offset-y | blur-radius | spread-radius | color */
    -webkit-box-shadow: -5px -5px 5px rgba(0, 0, 0, 0.4);
    box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.4);
}

.contenedor-modal .modal-imagen {
    border: 2px solid var(--color-borde-main);
    background: var(--color-fondo-main);
    margin: auto;
    position: relative;
    padding: 10px;
    width: fit-content;
    /* offset-x | offset-y | blur-radius | spread-radius | color */
    -webkit-box-shadow: -5px -5px 5px rgba(0, 0, 0, 0.4);
    box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.4);
}

.contenedor-modal .modal-imagen img {
    max-width: 80vw;
    max-height: 80vh;
}

.contenedor-modal .modal-imagen h2 {
    text-align: center;
}

.contenedor-modal .modal-imagen .contenedor-botones {
    display: flex;
    justify-content: center;
    padding: 10px;
    margin: 10px -10px -10px -10px;
    background-color: var(--color-base-bajo-4);
}

.contenedor-modal .modal-imagen .contenedor-botones button {
    height: 40px;
    margin: 0 5%;
    cursor: pointer;
    font-weight: bold;
    border-radius: 5px;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
/*--- MODAL TABLA (FINAL) ---*/

/*--- MODAL WAARNING (INICIO) ---*/
#contenedorModalWarning,
#contenedorModalQuestion {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contenedor-modal .modal-warning,
.contenedor-modal .modal-question,
.contenedor-modal .modal-informativo {
    position: relative;
    width: 90%;
    max-width: 500px;
    /* height: 350px; */
    background: #fff;
    border-radius: 2px;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 0;
    padding-bottom: 85px;
    border: 1px solid var(--color-borde-main);
    /* offset-x | offset-y | blur-radius | spread-radius | color */
    -webkit-box-shadow: -5px -5px 5px rgba(0, 0, 0, 0.4);
    box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.4);
}

.contenedor-modal .modal-informativo {
    max-width: 800px;
}

.contenedor-modal .modal-informativo .scroll-y {
    max-height: 50vh;
}

@media (min-width: 1000px) {

    /* .contenedor-modal .modal-warning,
    .contenedor-modal .modal-question{
        left: calc(50% - 250px);
    } */
}

.contenedor-modal .modal-warning .titulo,
.contenedor-modal .modal-question .titulo,
.contenedor-modal .modal-informativo .titulo {
    color: #7c8691;
    font-weight: bold;
    font-size: 30px;
    padding: 10px 10px 0 10px;
    text-align: center;
}

.contenedor-modal .modal-warning p,
.contenedor-modal .modal-question p,
.contenedor-modal .modal-informativo p {
    font-size: 18px;
    color: #a3a3a3;
    padding: 0 20px;
    text-align: center;
}

.contenedor-modal .modal-warning .contenedor-imagen {
    width: 132px;
    background: #eed026;
    border: 3px solid #f5d837;
    height: 132px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    margin-top: -60px;
    justify-content: center;
    -webkit-box-shadow: 0px 0px 5px 7px rgba(253, 232, 111, 0.2);
    box-shadow: 0px 0px 5px 7px rgba(253, 232, 111, 0.2);
}

.contenedor-modal .modal-warning .contenedor-imagen img {
    width: 100px;
    margin-top: -15px;
}

.contenedor-modal .modal-warning .contenedor-botones,
.contenedor-modal .modal-question .contenedor-botones,
.contenedor-modal .modal-informativo .contenedor-botones {
    position: absolute;
    bottom: 0px;
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    background: #f1f5f8;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.contenedor-modal .modal-warning .contenedor-botones,
.contenedor-modal .modal-question .contenedor-botones {
    justify-content: space-between;
}

.contenedor-modal .modal-warning .contenedor-botones button,
.contenedor-modal .modal-question .contenedor-botones button,
.contenedor-modal .modal-informativo .contenedor-botones button {
    width: 40%;
    height: 40px;
    margin: 0 5%;
    border: 1px solid transparent;
    cursor: pointer;
    font-weight: bold;
    color: #fff;
    border-radius: 5px;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.contenedor-modal .modal-warning .contenedor-botones .btn-cancelar,
.contenedor-modal .modal-question .contenedor-botones .btn-cancelar,
.contenedor-modal .modal-informativo .contenedor-botones .btn-cancelar {
    background: #a1b1c0;
    border: 1px solid transparent;
}

.contenedor-modal .modal-warning .contenedor-botones .btn-cancelar:hover,
.contenedor-modal .modal-question .contenedor-botones .btn-cancelar:hover,
.contenedor-modal .modal-informativo .contenedor-botones .btn-cancelar:hover {
    border: 1px solid #a1b1c0;
    background: #fff;
    color: #a1b1c0;
}

.contenedor-modal .modal-warning .contenedor-botones .btn-aceptar {
    background: #eed026;
}

.contenedor-modal .modal-warning .contenedor-botones .btn-aceptar:hover {
    background: #fff;
    color: #eed026;
    border: 1px solid #eed026;
}

/*--- MODAL WAARNING (FINAL) ---*/


/*--- MODAL QUESTION (INICIO) ---*/
.contenedor-modal .modal-question .contenedor-imagen img,
.contenedor-modal .modal-informativo .contenedor-imagen img {
    width: 100px;
    /* margin-top: -15px; */
}

.contenedor-modal .modal-question .contenedor-imagen,
.contenedor-modal .modal-informativo .contenedor-imagen {
    width: 132px;
    background: #00a7ea;
    border: 3px solid #2fb9ef;
    height: 132px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    margin-top: -60px;
    justify-content: center;
    -webkit-box-shadow: 0px 0px 5px 7px rgba(0, 167, 234 0.2);
    box-shadow: 0px 0px 5px 7px rgba(0, 167, 234, 0.2);
}

.contenedor-modal .modal-question .contenedor-botones .btn-aceptar,
.contenedor-modal .modal-informativo .contenedor-botones .btn-aceptar {
    background: #00a7ea;
}

.contenedor-modal .modal-question .contenedor-botones .btn-aceptar:hover,
.contenedor-modal .modal-informativo .contenedor-botones .btn-aceptar:hover {
    background: #fff;
    color: #00a7ea;
    border: 1px solid #00a7ea;
}

/*--- MODAL QUESTION (FINAL) ---*/
/*--------------------------------- MODALES (FINAL) --------------------------------------------*/

/*--------------------------------- PANTALLA DE CARGA (INICIO) --------------------------------------------*/
.pantalla-carga {
    /* background-color: rgba(0, 0, 0, .2); */
    background-color: var(--color-base-bajo-2);
    display: grid;
    place-content: center;
    height: calc(100% + 20px);
    min-height: 300px;
    margin: -10px;
    width: calc(100% + 20px);
    color: #000;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
}

.gif-carga {
    display: grid;
    place-content: center;
    height: calc(100% + 20px);
    min-height: 300px;
    width: calc(100% + 20px);
    color: #000;
}

.cargando {
    position: relative;
    /* color: rgb(23, 114, 171); */
    /* color: var(--color-base-fuerte-1); */
    color: var(--color-base-medio-5);
    margin-top: 20px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
}

.cargando .primer-punto {
    animation: subir 2s linear infinite;
}

.cargando .segundo-punto {
    animation: subir 2s linear infinite;
    animation-delay: .35s;
}

.cargando .tercer-punto {
    animation: subir 2s linear infinite;
    animation-delay: .70s;
}

.contenedor-carga {
    position: relative;
}

.rueda-carga {
    border: 10px solid var(--color-base-fuerte-1);
    /* border: 10px solid rgba(23, 114, 171, 0.6); */
    border-radius: 50%;
    /* border-left-color: rgb(23, 114, 171); */
    border-left-color: var(--color-base-bajo-4);
    width: 80px;
    height: 80px;
    animation: giro 1s linear infinite;
}

.rueda-chiquita {
    border-width: 3px;
    height: 15px;
    width: 15px;
}

#logo-carga {
    width: 60px;
    height: 60px;
    position: absolute;
    top: 10px;
    left: 10px;
    /* background: rgba(0, 0, 0, 0.4); */
    border: 10px solid transparent;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#logo-carga img {
    width: 100%;
}

@keyframes giro {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes subir {
    0% {
        transform: translateY(0);
        color: #1772ab;
    }

    50% {
        transform: translateY(-5px);
        color: #ffffff;
    }

    100% {
        transform: translateY(0);
        color: #1772ab;
    }
}

/* CARGA ONDA DE AGUA */
.contenedor-onda {
    position: relative;
    width: 80px;
    height: 80px;
    /* background: linear-gradient(45deg, #00aaff, #0077cc); */
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.onda {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 200%;
    height: 200%;
    background-color: rgba(52, 164, 231, .9);
    /* color: rgb(52, 164, 231); */
    border-radius: 45%;
    transform: translateX(-50%) translateY(100%);
    animation: onda 3s infinite ease-in-out;
}

.onda:nth-child(2) {
    animation-delay: -1.5s;
    opacity: 0.6;
}

@keyframes onda {
    0% {
        transform: translateX(-50%) translateY(95%) rotate(0deg);
    }

    50% {
        transform: translateX(-50%) translateY(80%) rotate(180deg);
    }

    100% {
        transform: translateX(-50%) translateY(95%) rotate(360deg);
    }
}

.logo-onda {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-onda img {
    width: 80%;
}

/*--------------------------------- PANTALLA DE CARGA (FINAL) --------------------------------------------*/

/*--------------------------------- NOTIFICACIONES (INICIO) --------------------------------------------*/
.contenedor-notificaciones {
    width: 400px;
    position: fixed;
    top: 50px;
    right: 10px;
    z-index: 200;
}


.contenedor-notificaciones .notificacion {
    width: 100%;
    background: var(--color-base-bajo-1);
    display: flex;
    padding: 10px;
    margin-top: 10px;
    position: relative;
    border-radius: 5px;
    -webkit-box-shadow: -2px 5px 5px rgba(0, 0, 0, 0.3);
    box-shadow: -2px 0px 5px 2px rgba(0, 0, 0, 0.3);
    -o-transition: opacity .01s ease;
    -moz-transition: opacity .01s ease;
    -webkit-transition: opacity .01s ease;
    transition: opacity .01s ease;
}

.notificacion.correcto {
    /* background: #20a43f; */
    /* border: 2px solid #20a43f; */
    border-left: 15px solid #20a43f;
}

.notificacion.error {
    /* background: #ff2525; */
    /* border: 2px solid #ff2525; */
    border-left: 15px solid #ff2525;
}

.notificacion.aviso {
    /* background: #ff2525; */
    /* border: 2px solid #ff2525; */
    border-left: 15px solid #0099ff;
}

.notificacion.aviso-rojo {
    /* background: #ff2525; */
    /* border: 2px solid #ff2525; */
    border-left: 15px solid #cc3333;
}

.contenedor-notificaciones .notificacion>i {
    position: absolute;
    top: 5px;
    right: 5px;
    font-size: 20px;
    /* color: var(--color-base-bajo-1); */
    cursor: pointer;
    -o-transition: transform .3s ease;
    -moz-transition: transform .3s ease;
    -webkit-transition: transform .3s ease;
    transition: transform .3s ease;
}

.contenedor-notificaciones .notificacion>i:hover {
    transform: rotate(90deg) scale(1.5, 1.5);
}

.contenedor-notificaciones .notificacion .icono-notificacion {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contenedor-notificaciones .notificacion .icono-notificacion img {
    width: 50px;
}

.contenedor-notificaciones .notificacion .textos {
    margin-left: 10px;
}

.contenedor-notificaciones .notificacion .textos .titulo {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: bold;
    width: 300px;
}

.contenedor-notificaciones .notificacion .textos span {
    position: absolute;
    right: 5px;
    bottom: 5px;
    font-size: 10px;
}

/*--------------------------------- NOTIFICACIONES (FINAL) --------------------------------------------*/

/*--------------------------------- CHECKBOX (INICIO) --------------------------------------------*/
.contenedor-btns-checkbox {
    display: flex;
    justify-content: center;
    align-items: center;
    /* width: 100%; */
    flex-wrap: wrap;
}

.btn-checkbox {
    border-radius: .2rem;
    /* border: 1px solid #ced4da; */
    border: 1px solid var(--color-base-bajo-4);
    width: auto;
    position: relative;
    margin: 5px;
    background-color: var(--bs-body-bg);
}

.btn-checkbox label .fa-check-circle,
.btn-checkbox label .fa-check-square,
.btn-checkbox label .fa-circle,
.btn-checkbox label .fa-square {
    position: absolute;
    left: 8px;
    top: 8px;
    width: 14px;
}

.btn-checkbox label div {
    display: inline-block;
}

.btn-checkbox label div i,
.btn-checkbox>i {
    margin-right: 5px;
    margin-left: 5px;
}

.btn-checkbox label img {
    margin-right: 5px;
    margin-left: 5px;
    width: 20px;
}

.btn-checkbox label .fa-check-circle,
.btn-checkbox label .fa-check-square {
    display: none;
}

.btn-checkbox label {
    padding: 5px;
    padding-left: 25px;
    cursor: pointer;
    margin: 0;
}

.btn-checkbox input:checked~label,
.btn-checkbox input:checked~label i {
    /* background-color: #3f80ea; */
    background-color: var(--color-base-medio-5);
    /* color: #fff; */
    color: var(--color-base-bajo-1);
}

.btn-checkbox input:checked~label .fa-circle,
.btn-checkbox input:checked~label .fa-square {
    display: none;
    /* color: #fff; */
    color: var(--color-base-bajo-1);
}

.btn-checkbox input:checked~label .fa-check-circle,
.btn-checkbox input:checked~label .fa-check-square {
    display: block;
}

td .btn-checkbox {
    /* width: 25px;
    height: 25px; */
    background: transparent;
    border: none;
}

td .btn-checkbox label {
    padding: 0;
}

td .btn-checkbox label .fa-check-square,
td .btn-checkbox label .fa-square {
    /* left: calc(50% - 5px);
    top: calc(50% - 5px); */
    position: static;
    font-size: 15px;
    text-align: center;
}

td .btn-checkbox input:checked~label,
td .btn-checkbox input:checked~label i {
    /* width: 25px;
    height: 25px; */
    background: transparent;
    color: var(--color-base-medio-5);
}

/*--------------------------------- CHECKBOX (FINAL) --------------------------------------------*/

/*--------------------------------- LOGIN (INICIO) --------------------------------------------*/
.contenedor-login {
    width: 100%;
    height: 100%;
    position: relative;
    height: 100%;
    background-image: url("../imgs/background.png");
    background-image: no-repeat;
    background-image: fixed;
    background-image: center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: 75% 75%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#formLogin {
    max-width: 500px;
    max-height: 80vh;
    width: 90%;
    background: rgba(0, 0, 0, 0.3);
    padding: 15px;
    -webkit-box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.4);
    box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.4);
    border-radius: 5px;
    /* border: 1px solid var(--color-base-bajo-1); */
}

#formLogin h2 {
    color: var(--color-base-bajo-3);
}

#formLogin a,
#formLogin label {
    color: var(--color-base-bajo-3);
}

.contenedor-login .pie p,
.contenedor-login .pie .desarrollador {
    color: var(--color-base-bajo-1);
}

.contenedor-login .pie .desarrollador {
    text-align: right;
}

.contenedor-login .formulario-login .logo-login {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 80%;
}

.contenedor-login .formulario-login .logo-login img {
    height: 200px;
    /* border-radius: 100%;
    -webkit-box-shadow: -5px -5px 5px rgba(0, 0, 0, 0.4);
    box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.4); */
}

.contenedor-login .pie {
    position: absolute;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 5px;
}

.contenedor-login .form-floating>.form-control-plaintext~label,
.contenedor-login .form-floating>.form-control:focus~label,
.contenedor-login .form-floating>.form-control:not(:placeholder-shown)~label,
.contenedor-login .form-floating>.form-select~label {
    transform: scale(.85) translateY(-.9rem) translateX(.4rem) !important;
}

.contenedor-login .form-floating label {
    font-weight: bold;
    color: #9e9e9e !important;
}

.contenedor-login form {
    width: 60%;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contenedor-login form>* {
    width: 100%;
}

.contenedor-login .row>div {
    padding-left: 0;
    padding-right: 0;
}

.contenedor-login div>input {
    width: 100%;
    border: none !important;
    border-left: 5px solid var(--color-base-fuerte-1) !important;
    background: #ebebeb;
    -o-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.contenedor-login input:focus {
    border-left: 8px solid var(--color-base-fuerte-1) !important;
    background: #dadada;
}

.contenedor-login button {
    width: 100% !important;
    padding: 10px;
}

.olvido-pass {
    display: flex;
    justify-content: center;
}

.olvido-pass>div {
    display: flex;
}

.olvido-pass>div label {
    margin-right: 20px;
    white-space: nowrap;
}

@media (min-width: 600px) {
    #formLogin {
        width: 500px;
    }
}

/*--------------------------------- LOGIN (FINAL) --------------------------------------------*/

/*--------------------------------- VISTA ASIGNAR ACTIVIDADES (INICIO) --------------------------------------------*/

/*--- MODAL QUE SIGUE EL PUNTERO (INICIO) ---*/
#modalSeguidor {
    position: fixed;
    background: var(--color-base-bajo-1);
    padding: 5px;
    border: 1px solid var(--color-borde-main);
    z-index: 3;
}

#modalSeguidor .linea-w9-h1 {
    background: var(--color-base-medio-3);
}

#modalSeguidor h2 {
    background: var(--color-base-fuerte-1);
    color: var(--color-base-bajo-1);
    margin: -5px;
    margin-bottom: 5px;
    text-align: center;
}

/*--- MODAL QUE SIGUE EL PUNTERO (FINAL) ---*/

/*--- AGENDA (INICIO) ---*/
#tablaAgenda {
    user-select: none;
}

#tablaAgenda th {
    z-index: 3;
}

#tablaAgenda th,
.backgroundOscuro td,
.backgroundClaro td {
    border-left: 1px solid var(--color-borde-tabla);
    border-right: 1px solid var(--color-borde-tabla);
    border-bottom: 1px solid var(--color-base-bajo-3);
}

#tablaAgenda tr:last-child {
    border-bottom: 1px solid var(--color-borde-tabla);
}

#tablaAgenda td.celda-marcada {
    background: #6fc8ff;
}

.backgroundOscuro td,
.backgroundClaro td {
    height: 25px;
    padding: 6px;
}

.backgroundOscuro {
    background-color: var(--color-background-tr-1) !important;
    border: none;
}

.backgroundClaro {
    background-color: var(--color-background-tr-2) !important;
    border: none;
}

.backgroundOscuro>td:first-child,
.backgroundClaro>td:first-child {
    padding: 3px;
}

.backgroundOscuro td.background-1,
.backgroundClaro td.background-1 {
    border: 1px solid var(--color-grafico-1) !important;
}

.backgroundOscuro td.background-2,
.backgroundClaro td.background-2 {
    border: 1px solid var(--color-grafico-2) !important;
}

.backgroundOscuro td.background-3,
.backgroundClaro td.background-3 {
    border: 1px solid var(--color-grafico-3) !important;
}

.backgroundOscuro td.background-4,
.backgroundClaro td.background-4 {
    border: 1px solid var(--color-grafico-4) !important;
}

.backgroundOscuro td.background-5,
.backgroundClaro td.background-5 {
    border: 1px solid var(--color-grafico-5) !important;
}

.backgroundOscuro td.background-6,
.backgroundClaro td.background-6 {
    border: 1px solid var(--color-grafico-6) !important;
}

.backgroundOscuro td.background-7,
.backgroundClaro td.background-7 {
    border: 1px solid var(--color-grafico-7) !important;
}

.backgroundOscuro td.background-8,
.backgroundClaro td.background-8 {
    border: 1px solid var(--color-grafico-8) !important;
}

.backgroundOscuro td.background-9,
.backgroundClaro td.background-9 {
    border: 1px solid var(--color-grafico-9) !important;
}

.backgroundOscuro td.background-10,
.backgroundClaro td.background-10 {
    border: 1px solid var(--color-grafico-10) !important;
}

.backgroundOscuro td.background-11,
.backgroundClaro td.background-11 {
    border: 1px solid var(--color-grafico-11) !important;
}

.backgroundOscuro td.background-12,
.backgroundClaro td.background-12 {
    border: 1px solid var(--color-grafico-12) !important;
}

.contenedor-agenda .btn-anterior,
.contenedor-agenda .btn-siguiente {
    z-index: 2;
    position: absolute;
    top: calc(50% + 20px);
    height: 40px;
    width: 40px;
    background: rgba(0, 0, 0, .2);
    color: #fff;
    cursor: pointer;
    border-radius: 100%;
    /* transform: translate(-20px); */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    animation-name: movimientos-laterales-negativos;
    animation-duration: 4s;
    animation-iteration-count: infinite;
}

.contenedor-agenda .btn-anterior {
    left: 0;
    animation-name: movimientos-laterales-negativos;
}

.contenedor-agenda .btn-siguiente {
    right: 0;
    animation-name: movimientos-laterales-positivos;
}

.contenedor-agenda .btn-anterior:hover,
.contenedor-agenda .btn-siguiente:hover {
    background: rgba(0, 0, 0, .5);
}

@keyframes movimientos-laterales-negativos {
    0% {
        -webkit-transform: translate(-25px);
        transform: translate(-25px);
    }

    50% {
        -webkit-transform: translate(-15px);
        transform: translate(-15px);
    }

    100% {
        -webkit-transform: translate(-25px);
        transform: translate(-25px);
    }
}

@keyframes movimientos-laterales-positivos {
    0% {
        -webkit-transform: translate(25px);
        transform: translate(25px);
    }

    50% {
        -webkit-transform: translate(15px);
        transform: translate(15px);
    }

    100% {
        -webkit-transform: translate(25px);
        transform: translate(25px);
    }
}

.contenedor-agenda #tablaAgenda .fecha-actual {
    background: var(--color-base-medio-4);
}

.contenedor-agenda #tablaAgenda tbody tr td {
    position: relative;
}

.contenedor-agenda #tablaAgenda .hora-actual::after {
    content: "";
    position: absolute;
    top: inherit;
    left: 0;
    display: inline-block;
    width: 100%;
    height: 1px;
    background: red;
}

/*--- AGENDA (FINAL) ---*/
/*--------------------------------- VISTA ASIGNAR ACTIVIDADES (FINAL) --------------------------------------------*/

/*--------------------------------- MODALES FORMULARIOS (INICIO) --------------------------------------------*/
.contenedor-modal-formulario {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .2);
    z-index: 100;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contenedor-modal-formulario .modal-formulario {
    width: 90%;
    max-width: 1000px;
    max-height: 70vh;
    min-height: 500px;
    background: var(--color-base-bajo-2);
    padding: 10px;
    border: 1px solid var(--color-borde-main);
    /* offset-x | offset-y | blur-radius | spread-radius | color */
    -webkit-box-shadow: -5px -5px 5px rgba(0, 0, 0, 0.4);
    box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.4);
    overflow-y: auto;
    position: relative;
}

.contenedor-modal-formulario .modal-formulario h2 {
    padding: 10px;
    margin: -10px -10px 10px -10px;
    color: var(--color-base-bajo-1);
    background-color: var(--color-borde-main);
    text-align: center;
    position: static;
}


.contenedor-modal-formulario .modal-formulario .btns-fijos {
    position: sticky;
    right: 0;
    bottom: 0;
    background-color: var(--color-base-bajo-2);
    width: 100%;
}

/*--------------------------------- MODALES FORMULARIOS (FINAL) --------------------------------------------*/

/*--------------------------------- ACCIONES RAPIDAS (INICIO) --------------------------------------------*/
.acciones-rapidas {
    display: flex;
    justify-content: space-between;
}

.acciones-rapidas .accion-rapida {
    border: 1px solid var(--color-base-fuerte-1);
    background: var(--color-base-medio-3);
    color: var(--color-base-bajo-1);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px;
    padding: 5px;
    height: 30px;
    cursor: pointer;
}

.acciones-rapidas .accion-rapida i {
    background: var(--color-base-medio-5);
    height: 29px;
    margin: -5px 10px -5px -5px;
    padding: 5px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.acciones-rapidas .accion-rapida:hover {
    background: var(--color-base-medio-4);
}

.acciones-rapidas .accion-rapida:hover i {
    background: var(--color-base-medio-6);
}

/*--------------------------------- ACCIONES RAPIDAS (FINAL) --------------------------------------------*/

/*--------------------------------- DROPZONE (INICIO) --------------------------------------------*/
.contenedor-dropzone {
    border: 1px solid var(--color-base-fuerte-1);
    padding: 0px 10px 10px 10px;
    border-radius: 3px;
}

.contenedor-dropzone h2 {
    color: var(--color-base-bajo-1);
    background: var(--color-base-fuerte-1);
    padding: 2px 10px;
    margin: 0px -10px 10px -10px;
    font-size: 16px;
    text-align: center;
}

.dropzone {
    /* max-width: 90%; */
    min-width: 300px;
    height: 200px;
    border: 2px dashed #ccc;
    text-align: center;
    font-size: 20px;
    color: #999;
    background-image: url('../imgs/fondo-dropZone.png');
    background-size: 150px 150px;
    background-position: center center;
    background-repeat: no-repeat;
    overflow-x: auto;
    overflow-y: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    cursor: pointer;
}

.dropzone.dragover {
    border-color: #00bfff;
    color: #00bfff;
}

.dropzone .iconos-miniaturas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    /* z-index: 2; */
}

.dropzone .iconos-miniaturas .icono-miniatura {
    width: 180px;
    height: 180px;
    position: relative;
    padding: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dropzone .iconos-miniaturas .icono-miniatura .extension-file {
    position: absolute;
    left: 10px;
    background: #000;
    color: #fff;
    padding: 0px 5px;
    border: 4px solid #000;
    border-radius: 5px;
    font-weight: bold;
    top: 50px;
    -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.3);
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.3);
}

.dropzone .iconos-miniaturas .icono-miniatura i {
    position: absolute;
    top: 5px;
    right: 5px;
    /* z-index: 2; */
    line-height: auto;
    color: red;
    background-color: #fff;
    border-radius: 100%;
    cursor: pointer;
    -o-transition: transform .3s ease;
    -moz-transition: transform .3s ease;
    -webkit-transition: transform .3s ease;
    transition: transform .3s ease;
    transform: rotate(0deg) scale(1);
    -webkit-transform: rotate(0deg) scale(1);
}

.dropzone .iconos-miniaturas .icono-miniatura i:hover {
    transform: rotate(90deg) scale(1.3);
    -webkit-transform: rotate(90deg) scale(1.3);
}

.dropzone .iconos-miniaturas .icono-miniatura img {
    width: 100%;
    border-radius: 5px;
}

.dropzone .iconos-miniaturas .icono-miniatura img:hover~.nombre-imagen {
    display: block;
}

.dropzone .iconos-miniaturas .icono-miniatura .nombre-imagen {
    position: absolute;
    margin: auto;
    background: rgba(255, 255, 255, .5);
    display: none;
    max-width: 160px;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 14px;
    color: black;
    padding: 5px;
    white-space: nowrap;
}

/*--------------------------------- DROPZONE (FINAL) --------------------------------------------*/

/*--------------------------------- OBJETIVOS (INICIO) --------------------------------------------*/
h4[data-click="mostrarDatosPerfil"] {
    cursor: pointer;
    transform: rotate(0deg);
}

h4[data-click="mostrarDatosPerfil"] i {
    -o-transition: transform .3s ease;
    -moz-transition: transform .3s ease;
    -webkit-transition: transform .3s ease;
    transition: transform .3s ease;
}

h4[data-click="mostrarDatosPerfil"].active i {
    transform: rotate(90deg);
}

.contenedor-objetivos {
    border: 1px solid var(--color-base-bajo-5);
    padding: 5px;
    background: var(--color-base-bajo-3);
    margin: 5px;
}

.contenedor-objetivos .contenedor-objetivo {
    position: relative;
}

.contenedor-objetivos .contenedor-objetivo>i {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: calc(50% - 10px);
    right: 20px;
    z-index: 2;
    line-height: auto;
    color: red;
    background-color: #fff;
    border: 2px solid red;
    width: 20px;
    height: 20px;
    border-radius: 100%;
    cursor: pointer;
    -o-transition: transform .3s ease;
    -moz-transition: transform .3s ease;
    -webkit-transition: transform .3s ease;
    transition: transform .3s ease;
    transform: rotate(0deg) scale(1);
    -webkit-transform: rotate(0deg) scale(1);
}

.contenedor-objetivos .contenedor-objetivo>i:hover {
    transform: rotate(90deg) scale(1.3);
    -webkit-transform: rotate(90deg) scale(1.3);
}

/*--------------------------------- OBJETIVOS (FINAL) --------------------------------------------*/

/*--------------------------------- VISTA PERFIL (INICIO) --------------------------------------------*/
.contenedor-perfil {
    width: 100%;
}

.icono-editar-perfil {
    font-size: 16px;
    background: var(--color-base-medio-4);
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 3px;
    border-top: 1px solid transparent;
    border-left: 1px solid transparent;
    border-bottom: 1px solid var(--color-base-fuerte-1);
    border-right: 1px solid var(--color-base-fuerte-1);
    color: var(--color-base-bajo-1);
    position: absolute;
    right: 0;
    cursor: pointer;
    -webkit-box-shadow: -5px -5px 5px rgba(0, 0, 0, 0.4);
    box-shadow: 2px 3px 6px 0px rgba(0, 0, 0, 0.4);
    -o-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.icono-editar-perfil:hover {
    color: var(--color-base-medio-4);
    background: var(--color-base-bajo-1);
    font-size: 18px;
    border: 1px solid var(--color-base-fuerte-1);
}

.contenedor-perfil .foto-perfil {
    width: 300px;
    height: 300px;
    margin: auto;
}


.contenedor-perfil .foto-perfil .contenedor-imagen {
    width: 100%;
    height: 100%;
    margin: auto;
    border-radius: 100%;
    overflow: hidden;
    outline: 3px solid var(--color-base-fuerte-1);
    position: relative;
}

.contenedor-perfil .foto-perfil .contenedor-imagen img {
    /* border-top-left-radius: 100%; */
    border: 1px solid var(--color-borde-main);
    position: relative;
    z-index: 2;
    background-color: var(--color-base-bajo-1);
    /* offset-x | offset-y | blur-radius | spread-radius | color */
    -webkit-box-shadow: -5px -5px 5px rgba(0, 0, 0, 0.4);
    box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.4);
    position: absolute;
    left: -100%;
    right: -100%;
    top: -100%;
    bottom: -100%;
    margin: auto;
    min-height: 100%;
    min-width: 100%;
    cursor: auto;
}

.imagen-alta {
    width: 300px;
}

.imagen-ancha {
    height: 300px;
}

.contenedor-perfil .foto-perfil h2 {
    position: relative;
    /* background: var(--color-base-bajo-2); */
    background: var(--color-base-fuerte-1);
    color: var(--color-base-bajo-1);
    padding: 5px;
    margin: auto;
    text-align: center;
    margin-top: -35.8px;
    z-index: 3;
    font-weight: bold;
    /* offset-x | offset-y | blur-radius | spread-radius | color */
    -webkit-box-shadow: -5px -5px 5px rgba(0, 0, 0, 0.4);
    box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.4);
}

.contenedor-vision-board {
    margin-top: 20px;
    width: 100%;
}

.contenedor-vision-board .imagen-vision-board {
    margin: auto;
    max-width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 10px;
    background-color: var(--color-base-bajo-6);
    border: 1px solid var(--color-base-fuerte-1);
}

.contenedor-vision-board .imagen-vision-board .fondo-carga {
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--color-base-medio-4);
    height: 100%;
    -o-transition: width .3s ease;
    -moz-transition: width .3s ease;
    -webkit-transition: width .3s ease;
    transition: width .3s ease;
}

.contenedor-vision-board .imagen-vision-board img {
    margin: auto;
    position: relative;
    max-width: 100%;
    max-height: 70vh;
    cursor: pointer;
}

.contenedor-vision-board .imagen-vision-board h2 {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 7px;
    right: 15px;
    width: 65px;
    height: 65px;
    background: var(--color-base-fuerte-1);
    color: var(--color-base-bajo-1);
    border-radius: 100%;
    /* offset-x | offset-y | blur-radius | spread-radius | color */
    -webkit-box-shadow: -5px -5px 5px rgba(0, 0, 0, 0.4);
    box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.4);
}

.contenedor-vision-board .imagen-vision-board h2 span {
    font-size: 14px;
}

.listado-metas {
    max-width: 90%;
    margin: auto;
    border: 1px solid var(--color-base-fuerte-1);
    border-top: none;
}



.btn-checkbox-table {
    border-radius: .2rem;
    /* border: 1px solid #ced4da; */
    border: 1px solid var(--color-base-bajo-4);
    width: 25px;
    height: 25px;
    position: relative;
    margin: 5px;
    /* background-color: var(--bs-body-bg); */
    padding: 0;
}

.btn-checkbox-table label .fa-circle,
.btn-checkbox-table label .fa-square {
    position: absolute;
    left: calc(50% - 6px);
    top: calc(50% - 6px);
}

.btn-checkbox-table label .fa-check {
    color: var(--color-base-fuerte-1);
    display: none;
    font-size: 20px;
    position: absolute;
    left: 20%;
    top: -3%;
}

.btn-checkbox-table label {
    width: 25px;
    height: 25px;
    cursor: pointer;
    margin: 0;
}

.btn-checkbox-table input:checked~label {
    /* background-color: #3f80ea; */
    /* background-color: var(--color-base-medio-5) !important; */
    /* color: #fff; */
}

.btn-checkbox-table input:checked~label .fa-circle {
    /* display: none; */
    /* color: #fff; */
    /* color: var(--color-base-bajo-1); */
}

.btn-checkbox-table input:checked~label .fa-check {
    display: block;
}

table.tr-mismo-color tbody tr:nth-child(2n+1) {
    background: var(--color-background-tr-1);
}

table.tr-mismo-color tbody tr:hover {
    background: var(--color-background-tr-1);
}

.texto-rayado {
    text-decoration: line-through;
}

/*--------------------------------- VISTA PERFIL (FINAL) --------------------------------------------*/


/*--------------------------------- ICONOS CON CIRCULO Y NUMERO (INICIO) --------------------------------------------*/
.contenedor-icono-con-numero {
    font-size: 16px;
    color: var(--color-base-fuerte-1);
    position: relative;
    cursor: pointer;
    width: fit-content;
    padding: 0;
}

.iconos-intercambiables i:last-of-type {
    position: absolute;
    left: 0;
    opacity: 0;
    animation-name: aparecer-icono;
    animation-duration: 4s;
    animation-iteration-count: infinite;
    /* animation-direction: alternate; */
}

.iconos-intercambiables i:first-of-type {
    opacity: 1;
    animation-name: desaparecer-icono;
    animation-duration: 4s;
    animation-iteration-count: infinite;
    /* animation-direction: alternate; */
}

.contenedor-icono-con-numero>i {
    /* border: 1px solid var(--color-base-fuerte-1); */
    padding: 5px;
    /* border-radius: 100%; */
    margin-right: 8px;
}

.contenedor-icono-con-numero .circulo-con-numero {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    color: var(--color-base-bajo-1);
    background: red;
    border-radius: 100%;
    width: 16px;
    height: 16px;
    font-size: 11px;
    bottom: 0;
    right: 0;
    padding: 0;
}


@keyframes desaparecer-icono {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes aparecer-icono {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

/*--------------------------------- ICONOS CON CIRCULO Y NUMERO (FINAL) --------------------------------------------*/

/*--------------------------------- PERFIL EN MENÚ (INICIO) --------------------------------------------*/
.perfil-chiquito {
    width: 100%;
    position: absolute;
    bottom: 0;
    padding: 5px;
    background: var(--color-base-fuerte-1);
    cursor: pointer;
}

.perfil-chiquito .contenedor-imagen {
    width: 100%;
    border: 1px solid var(--color-base-bajo-6);
    background: var(--color-base-bajo-6);
    display: flex;
}

.perfil-chiquito .contenedor-imagen img {
    max-width: 100%;
    max-height: 400px;
    margin: auto;
}

.perfil-chiquito .contenedor-metas {
    padding: 5px;
    background: var(--color-base-bajo-6);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.perfil-chiquito .contenedor-metas .contenedor-meta {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    line-height: .8;
}

.perfil-chiquito .contenedor-metas .nombre-meta {
    color: var(--color-base-fuerte-1);
    font-weight: bold;
    font-style: italic;
    text-transform: uppercase;
}

.perfil-chiquito .contenedor-metas .meta {
    color: #004aad;
    font-weight: bold;
    font-size: 23px;
    padding: 0;
    margin-bottom: 20px;
}

.perfil-chiquito .contenedor-tabla {
    /* color: var(--color-base-bajo-1); */
    background: var(--color-base-bajo-2);
    border: 1px solid var(--color-base-bajo-6);
}

.perfil-chiquito td {
    font-size: 10px;
    padding: 2px;
}

/*--------------------------------- PERFIL EN MENÚ (FINAL) --------------------------------------------*/

/*--------------------------------- CATALOG DE ICONOS (INICIO) --------------------------------------------*/
.catalogo-de-iconos .contenedor-iconos {
    width: fit-content;
}

.catalogo-de-iconos h4 {
    width: fit-content;
    margin: auto;
    color: #fff;
    background: var(--color-base-fuerte-1);
    padding: 5px;
    margin-bottom: -13px;
    border-radius: 3px;
}

.catalogo-de-iconos .contenedor-iconos {
    width: fit-content;
    margin: auto;
    padding: 10px;
    border: 1px solid var(--color-base-fuerte-1);
    display: flex;
    justify-content: center;
    max-width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    max-height: 322px;
    overflow-y: auto;
}

.catalogo-de-iconos .contenedor-iconos .contenedor-icono {
    padding: 5px;
    border: 1px solid var(--color-base-bajo-6);
    border-radius: 3px;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px;
    cursor: pointer;
}

.catalogo-de-iconos .contenedor-iconos .contenedor-icono:hover {
    background-color: var(--color-base-bajo-5);
}

.catalogo-de-iconos .contenedor-iconos>div input:checked~.contenedor-icono {
    background-color: var(--color-base-fuerte-1);
    color: var(--color-base-bajo-1);
}

.catalogo-de-iconos .contenedor-icono {
    /* margin: auto; */
}

/*--------------------------------- CATALOG DE ICONOS (FINAL) --------------------------------------------*/

/*--------------------------------- CONTENEDOR ELEMENTOS BORRABLES (INICIO) --------------------------------------------*/
.contenedor-elementos-borrables {
    padding: 10px;
    background-color: var(--color-base-bajo-3);
    border: 1px solid var(--color-base-medio-1);
    border-radius: 3px;
}

.contenedor-elementos-borrables h4 {
    width: fit-content;
    margin: auto;
    margin-bottom: auto;
    color: #fff;
    background: var(--color-base-fuerte-1);
    padding: 5px;
    margin-top: -26px;
    border-radius: 3px;
}

/*--------------------------------- CONTENEDOR ELEMENTOS BORRABLES (FINAL) --------------------------------------------*/

/*--------------------------------- FOOTER (INICIO) --------------------------------------------*/
footer {
    /* position: fixed;
    bottom: 0; */
    justify-content: space-between;
    display: flex;
    align-items: center;
    width: -moz-available;
    width: -webkit-fill-available;
    margin-top: 80px;
    padding: 5px;
    -webkit-box-shadow: 5px 5px 10px 12px rgba(0, 0, 0, 0.4);
    box-shadow: 5px 5px 10px 12px rgba(0, 0, 0, 0.4);
    background: var(--color-footer);
    background-image: no-repeat;
    background-image: fixed;
    background-image: center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    color: var(--color-base-bajo-1);
}

footer img {
    width: 95px;
}

/*--------------------------------- FOOTER (FINAL) --------------------------------------------*/

/*--------------------------------- INPUTS EN TABLAS (INICIO) --------------------------------------------*/
.input-tabla-editable {
    position: relative;
}

.input-tabla-editable input[type="text"] {
    background: transparent;
    border: none;
    outline: none;
    width: 99%;
}

.input-tabla-editable i {
    position: absolute;
    right: 10px;
    top: calc(50% - 6px);
    color: var(--color-base-fuerte-1);
    cursor: pointer;
}

/*--------------------------------- INPUTS EN TABLAS (FINAL) --------------------------------------------*/

/*--------------------------------- NUMERO DE CLIENTES Y PROSPECTOS (INICIO) --------------------------------------------*/
.contenedor-clientes-prospectos {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contenedor-clientes-prospectos>* {
    padding: 5px;
    margin: auto 10px 10px 10px;
    background-color: var(--color-base-bajo-5);
}

/*--------------------------------- NUMERO DE CLIENTES Y PROSPECTOS (FINAL) --------------------------------------------*/


/*--------------------------------- ICONO INFORMATIVO (INICIO) --------------------------------------------*/
.icon-ayuda {
    width: 100%;
    position: relative;
    height: 22px;
}

h2 .icon-ayuda {
    width: initial;
    height: initial;
    display: inline-block;
    float: right;
}

.icon-ayuda i {
    position: absolute;
    right: 10px;
    color: #fff;
    background-color: #0099ff;
    font-size: 12px;
    cursor: pointer;
    border: 1px;
    width: 20px;
    height: 20px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

h2 .icon-ayuda i {
    position: initial;
    width: 17px;
    height: 17px;
    right: initial;
}

.icon-ayuda i:hover {
    color: #0099ff;
    background-color: #fff;
    border: 1px solid #0099ff;
}

/*--------------------------------- ICONO INFORMATIVO (FINAL) --------------------------------------------*/

.cuadro-cerrar {
    background-color: #cc3333;
    position: absolute;
    top: 0;
    right: 0;
}

.cuadro-remarcado {
    border: 1px solid var(--color-base-bajo-5);
    padding: 5px;
}

.muestra-imagen-grande {
    display: flex;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
}

.muestra-imagen-grande img {
    max-width: 150px;
    max-height: 150px;
    padding: 5px;
    background: var(--color-base-bajo-4);
}

img[data-click=crearModalImagenGrande] {
    cursor: zoom-in;
}

.mostrar-celular {
    display: none;
}



@media (min-width: 1200px) {
    body.active {
        padding-left: 300px;
    }
}

@media (max-width: 650px) {
    .oculto-celular {
        display: none !important;
    }

    .mostrar-celular {
        display: flex;
    }

    body .user-perfil.mostrar-celular {
        background-color: var(--color-header);
        position: absolute;
        left: -100%;
        padding-left: 10px;
        height: 50px;
        -o-transition: left .3s ease;
        -moz-transition: left .3s ease;
        -webkit-transition: left .3s ease;
        transition: left .3s ease;
        cursor: auto;
    }

    body.active .user-perfil.mostrar-celular {
        margin-left: 10px;
        left: 0px;
    }

    .contenedor-paginado .paginado {
        justify-content: center;
    }

    /*--------------------------------- HEADER CELULAR (INICIO) --------------------------------------------*/
    .contenedor-head-menu {
        width: 100%;
        margin-right: 10px;
    }

    .btn-menu {
        position: relative;
        height: 50px;
        width: 40px;
        cursor: pointer;
    }

    .btn-menu span {
        height: 2px;
        background: var(--color-btn-menu);
        display: block;
    }

    .btn-menu .linea-menu-1 {
        transform: translate(0px, 10px);
        width: 40px;
    }

    .btn-menu .linea-menu-2 {
        transform: translate(0, 20px);
        width: 40px;
    }

    .btn-menu .linea-menu-3 {
        transform: translate(0, 30px);
        width: 40px;
    }

    body.active .contenedor-head-menu {
        width: 100%;
        max-width: 100%;
    }

    body.active .contenedor-head-menu .btn-menu .linea-menu-1 {
        transform: translate(-16px, 25px) rotate(135deg);
        width: 40px;
        /* margin-left: 10px; */
    }

    body.active .contenedor-head-menu .btn-menu .linea-menu-2 {
        opacity: 0;
        width: 0px;
    }

    body.active .contenedor-head-menu .btn-menu .linea-menu-3 {
        transform: translate(-25px, 20px) rotate(45deg);
        width: 40px;
        /* margin-left: 20px; */
    }

    .menu {
        top: 50px;
        left: -100%;
        width: 100%;
        max-width: 100%;
    }

    /*--------------------------------- HEADER CELULAR (FINAL) --------------------------------------------*/
}