@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap");

* {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  color: #212429;
}
*:focus-visible {
  outline: 3px solid rgba(0, 0, 0, 0.15);
}
/*****************************************************************/
/************************ CLASES DE LOGIN ************************/
/*****************************************************************/
.login {
  background: #f0f2f5;
  height: 100vh;
  padding-top: 20vh;
}
.login .login-card {
  border-radius: 6px;
  width: 400px;
  margin: 0 auto;
  box-shadow: 2px 2px 8px rgba(163, 172, 178, 0.2);
  padding: 24px;
  background: #fff;
}
.login .login-card .login-card-titulo {
  text-align: center;
  font-size: 24px;
  margin-bottom: 24px;
}
.login .login-card label {
  display: inline-block;
  color: #6c757e;
  font: normal 400 11px/13px Inter, sans-serif;
  margin-bottom: 4px;
}
.login .login-card input[type="text"],
.login .login-card input[type="password"] {
  display: block;
  width: 100%;
  height: 30px;
  border: 1px solid #dee1e6;
  border-radius: 4px;
  padding-inline: 8px;
}
.login .login-card input[type="text"]:focus,
.login .login-card input[type="password"]:focus {
  outline: none;
  border: 2px solid #0668d0;
}
.login .login-card input[type="submit"] {
  background-color: #0668d0;
  height: 32px;
  border: none;
  width: 100%;
  color: #fff;
  border-radius: 4px;
  font-weight: 600;
  margin-top: 16px;
  cursor: pointer;
}
.login .version {
  position: absolute;
  bottom: 16px;
  right: 16px;
  color: #6c757e;
  font-size: 11px;
}
.campo-invalido {
  font-size: 11px;
  margin-top: 2px;
  margin-bottom: 12px;
  color: #f44336;
  display: inline-block;
}

/*****************************************************************/
/********************** CLASES DE COMPONENTES ********************/
/*****************************************************************/

/********************** BANNER ************************/
.banner-error {
  background-color: #ffebee;
  color: #d32f2f;
  padding-inline: 8px;
  padding-block: 12px;
  border: 1px solid #d32f2f;
  border-radius: 3px;
  width: 100%;
  font-weight: 500;
}
.banner-exito {
  background-color: #e8f5e9;
  color: #2e7d32;
  padding-inline: 8px;
  padding-block: 12px;
  border: 1px solid #2e7d32;
  border-radius: 3px;
  width: 100%;
  font-weight: 500;
}

/********************** LAYOUT ************************/
.layout {
  display: flex;
}
.layout aside {
  width: 64px;
  padding-block: 24px;
  padding-inline: 12px;
  border-right: 1px solid #e8ecef;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  align-items: center;
}
.layout aside .logo {
  padding: 0;
  margin-bottom: 16px;
}
.layout aside .logo:hover {
  background: none;
}
.layout aside a,
.layout aside button {
  text-decoration: none;
  display: flex;
  padding: 6px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 4px;
  width: 32px;
}
.layout aside a i,
.layout aside button i {
  font-size: 20px;
  color: #6c757e;
  margin: 0;
}
.layout aside a:hover,
.layout aside button:hover {
  background: #e3f2fd;
}
.layout aside a:hover i,
.layout aside button:hover i {
  color: #2196f3;
}
.layout aside .active {
  background: #e3f2fd;
}
.layout aside .active i {
  color: #2196f3;
}
.layout aside .logout {
  position: absolute;
  bottom: 28px;
}
.layout aside .logout .logout-boton {
  background-color: #f0f2f5;
  color: #6c757e;
  border-radius: 50%;
  border: none;
  cursor: pointer;
}
.layout aside .logout .menu-flotante .menu-flotante-card {
  display: none;
}
.layout aside .logout .menu-flotante .menu-flotante-card-configuracion {
  bottom: 0;
  left: 45px;
  width: 250px;
}
.layout main {
  background: #f0f2f5;
  height: 100%;
  width: 100%;
  min-width: 1268px;
}
/********************** LAYOUT CONFIGURACION ************************/
.layout-configuracion {
  display: flex;
}
.layout-configuracion aside {
  width: 260px;
  min-width: 260px;
  padding: 16px;
  border-right: 1px solid #e8ecef;
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
}
.layout-configuracion aside .salir a {
  display: flex;
  align-items: center;
  color: #0556ad;
  font-size: 12px;
  padding-left: 6px;
  padding-block: 2px;
  margin-bottom: 8px;
  text-decoration: none;
}
.layout-configuracion aside .salir a i {
  color: #0556ad;
  padding-right: 4px;
}
.layout-configuracion aside .separador {
  width: 100%;
  height: 1px;
  background: #e8ecef;
  margin-bottom: 12px;
}
.layout-configuracion aside .titulo {
  display: flex;
  align-items: center;
  font-weight: 600;
  margin-bottom: 4px;
}
.layout-configuracion aside .titulo .icon-configuracion {
  color: #6c757e;
  font-size: 16px;
  padding-right: 8px;
}
.layout-configuracion aside .links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.layout-configuracion aside .links a {
  text-decoration: none;
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  color: #212429;
  line-height: 13px;
  display: block;
  padding-block: 4px;
  padding-left: 36px;
  padding-right: 8px;
}
.layout-configuracion aside .links a:hover {
  background: #f2f2f2f2;
}
.layout-configuracion aside .links .active {
  border-radius: 2px;
  background-color: #e3f2fd;
}
.layout-configuracion aside .links .active a {
  color: #1565c0;
  font-weight: 500;
}
.layout-configuracion aside .footer {
  position: absolute;
  bottom: 20px;
  width: 228px;
  text-align: center;
  color: #6c757e;
  font-size: 11px;
  opacity: 0.5;
}
.layout-configuracion main {
  background: #f0f2f5;
  height: 100vh;
  width: calc(100vw - 200px);
  min-width: 1080px;
}

/************************ HEADER GESTOR GLOBAL ************************/

.header-gestor-global {
  width: 100%;
  height: 50px;
  border-bottom: 1px solid #c7cbd1;
  background-color: #fff;
  display: flex;
  align-items: center;
  padding-inline: 32px;
  position: relative;
}
.header-gestor-global:first-child {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
}
.header-gestor-global .titulo {
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
}
.header-gestor-global .breadcrumbs a {
  font-size: 11px;
  color: #0556ad;
}
.header-gestor-global .breadcrumbs a:last-child {
  color: #495058;
}
.header-gestor-global .form-agregar {
  position: absolute;
  right: 32px;
  display: flex;
  gap: 8px;
}

/************************ BOTON ************************/
.boton {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 28px;
  padding: 0px 12px;
  border-radius: 4px;
  min-width: 106px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
}
.boton-primario {
  background: #0668d0;
  color: #fff;
}
.boton-secundario {
  color: #6c757e;
  background-color: #fff;
  border: 1px solid #6c757e;
}
.boton-eliminar {
  background: #e53935;
  color: #fff;
}
.boton-exito {
  background: #43a047;
  color: #fff;
}
.boton-buscar {
  border: 1px solid #0668d0;
  color: #0668d0;
  background: #fff;
  min-width: 65px;
}
.boton-buscar-form {
  border-radius: 4px;
  border: 1px solid #c7cbd1;
  background: #fff;
  min-width: 0;
  width: 28px;
  min-width: 28px;
  padding: 0;
}
.boton-buscar-form i {
  font-size: 16px;
  color: #6c757e;
}
.boton-limpiar {
  background: #fff;
  color: #212429;
  min-width: 70px;
  padding-inline: 6px;
  font-weight: 400;
}
.boton-limpiar i {
  color: #212429;
  margin-left: 4px;
}
.boton-agregar {
  background: transparent;
  color: #0556ad;
  padding-inline: 6px;
  font-weight: 400;
}
.boton-agregar i {
  color: #0556ad;
}
.boton-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.boton-primario:disabled {
  opacity: 1;
  cursor: not-allowed;
  color: #c7cbd1;
  background-color: #f0f2f5;
}
/************************ TABLA GESTOR ************************/
.tabla-gestor {
  height: calc(100vh - 98px);
  overflow: auto;
}
/* TABLE */
table {
  width: 100%;
  background: #fff;
  border-collapse: collapse;
}
table thead {
  background: #f8f9fb;
  height: 32px;
  /* border-top: 1px solid #dee1e6; */
  border-bottom: 1px solid #dee1e6;
  text-align: left;
  position: sticky;
  top: 0;
  z-index: 10;
}
table thead th {
  padding-inline: 8px;
  font-size: 11px;
}
table tbody tr {
  border-bottom: 1px solid #dee1e6;
  transition: background-color 0.3s ease;
}
table tbody tr:hover {
  background-color: #e1f5fe;
}
table tbody tr td {
  padding: 8px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 0;
  min-width: 31px;
}
table tbody tr .col-opciones {
  display: flex;
  justify-content: space-around;
  gap: 3px;
}
table tbody tr .col-opciones i {
  color: #6c757e;
  cursor: pointer;
}
table tbody tr .col-opciones img {
  width: 16px;
  cursor: pointer;
}
table .w3p {
  width: 3%;
}
table .w4p {
  width: 4%;
}
table .w5p {
  width: 5%;
}
table .w6p {
  width: 6%;
}
table .w7p {
  width: 7%;
}
table .w8p {
  width: 8%;
}
table .w10p {
  width: 10%;
}
table .w12p {
  width: 12%;
}
table .w15p {
  width: 15%;
}
table .w20p {
  width: 20%;
}
table .w25p {
  width: 25%;
}
table .w30p {
  width: 30%;
}
table .w35p {
  width: 35%;
}
table .w40p {
  width: 40%;
}
table .w45p {
  width: 45%;
}
table .w50p {
  width: 50%;
}
table .text-center {
  text-align: center;
}
table .text-right {
  text-align: right;
}
table tbody .label-sin-registros {
  text-align: center;
}
table tbody .label-sin-registros td {
  font-size: 11px;
}
/* DATA GRID */
.tabla-gestor .e-grid {
  border: 0;
}
/* TABLA BUSQUEDA */
.tabla-busqueda tbody tr {
  cursor: pointer;
}
/************************ TABLA DETALLE ************************/
.tabla-detalle {
  width: 100%;
  align-self: start;
  background: #fff;
  border-collapse: collapse;
  border-bottom: 1px solid #dee1e6;
}
.tabla-detalle tbody tr {
  border-bottom: 1px solid #dee1e6;
}
.tabla-detalle tbody tr th {
  padding: 8px;
  text-align: left;
  width: 12%;
  color: #6c757e;
  font-size: 11px;
  font-weight: 400;
}
.tabla-detalle tbody tr td {
  padding: 8px;
  width: 30%;
}

/************************ AREA DETALLE ************************/
.area-detalle {
  max-height: calc(100vh - 50px);
  width: 100%;
  overflow: auto;
  padding: 16px;
  display: flex;
  gap: 16px;
  height: 100vh;
  align-items: start;
}
.area-detalle .seccion-primaria {
  width: 70%;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  max-width: 1340px;
}
.area-detalle .seccion-secundaria {
  width: 30%;
}
.area-detalle .seccion-secundaria .card-secundaria {
  width: 100%;
  align-self: flex-start;
}
/************************ LINK ************************/
.link {
  text-decoration: none;
  color: #1e88e5;
}

/************************ CARD ************************/
.card {
  border-radius: 4px;
  background: #fff;
  align-self: start;
  padding: 16px;
}
.card .titulo {
  color: #495058;
  font-size: 16px;
  font-weight: 500;
}
.card-detalle {
  width: 100%;
  padding: 16px 24px 32px;
}
.card-detalle .card-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
  align-items: center;
}
.card-detalle .card-header .card-header-opciones {
  display: flex;
  gap: 8px;
  align-items: center;
}
.card-detalle .card-header .icono-accion {
  font-size: 12px;
  color: #0556ad;
  cursor: pointer;
  padding: 5px;
  display: inline-block;
  transition: background-color 0.3s ease;
  border-radius: 4px;
}
.card-detalle .card-header .icono-accion:hover {
  background-color: #e3f2fd;
}
.card-detalle .card-header .menu-flotante-card {
  top: 16px;
  right: -5px;
}
.card-detalle .card-header .menu-flotante-card a,
.card-detalle .card-header .menu-flotante-card button {
  font-size: 11px;
}

/************************ AREA ALTA ************************/
.area-alta {
  max-height: calc(100vh - 50px);
  height: 100vh;
  width: 100%;
  overflow: auto;
  padding: 16px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.area-alta .titulo-seccion {
  color: #212429;
  font-size: 19px;
  font-weight: 500;
  margin-block: 8px;
}
.area-alta form {
  width: 420px;
  background: #fff;
  padding: 24px;
  border-radius: 4px;
}
/************************ FORM ************************/
form {
  display: flex;
  flex-flow: column;
  gap: 16px;
}
form label {
  color: #6c757e;
  font-size: 11px;
  display: block;
  margin-bottom: 3px;
}
form label.requerido::after {
  content: " *";
  color: #f44336;
}
form input[type="text"],
form input[type="password"],
form input[type="date"],
form input[type="time"],
form textarea {
  display: block;
  width: 100%;
  height: 28px;
  border: 1px solid #dee1e6;
  border-radius: 4px;
  padding-inline: 8px;
}
form input[type="checkbox"] {
  width: 16px;
  height: 16px;
  cursor: pointer;
}
form input[type="text"]:focus,
form input[type="password"]:focus,
form input[type="date"]:focus,
form input[type="time"]:focus,
form textarea:focus {
  outline: 1px solid #0668d0;
  border: 1px solid #0668d0;
}
form input:disabled,
form select:disabled,
form textarea:disabled {
  cursor: not-allowed;
  background-color: #f0f2f5;
}
form .checkbox-disabled:hover {
  cursor: not-allowed;
}
form select {
  display: block;
  width: 100%;
  height: 28px;
  border: 1px solid #dee1e6;
  border-radius: 4px;
  background-color: #fff;
}
form select:focus {
  outline: 1px solid #0668d0;
  border: 1px solid #0668d0;
}
form textarea {
  resize: none;
  height: 50px;
  padding-block: 4px;
}
form .input-busqueda {
  display: flex;
  justify-content: space-between;
  gap: 4px;
}
form .input-checkbox {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 4px;
}
form .input-checkbox label {
  line-height: 16px;
  margin-bottom: 0;
}
form .input-checkbox .label-checkbox {
  font-size: 12px;
  color: #212429;
}
form .input-doble {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
}
form .input-doble > div {
  width: 100%;
}
form .form-controles {
  height: 100%;
  display: flex;
  justify-content: end;
  align-items: end;
  gap: 12px;
}

/************************ MODAL ************************/
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.modal .modal-card {
  background-color: #fff;
  border-radius: 4px;
  width: 430px;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.15);
  z-index: 10000;
  animation-name: fade;
  animation-duration: 0.1s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
}
.modal .modal-card form {
  gap: 0;
}
.modal .modal-card .modal-header {
  display: flex;
  height: 54px;
  align-items: center;
  justify-content: space-between;
  padding-inline: 24px;
  border-bottom: 1px solid #e8ecef;
}
.modal .modal-card .modal-header .modal-titulo {
  font-size: 19px;
  font-weight: 500;
}
.modal .modal-card .modal-header .icon-cerrar {
  font-size: 16px;
  color: #6c757e;
  cursor: pointer;
  padding: 4px;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}
.modal .modal-card .modal-header .icon-cerrar:hover {
  background-color: #e3e3e3;
}
.modal .modal-card .modal-body {
  min-height: 150px;
  padding-inline: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.modal .modal-card .modal-footer {
  height: 76px;
  padding-right: 24px;
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 12px;
}
.modal .modal-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}

/************************ MODAL ACCION ************************/
.modal-accion .modal-card .modal-body {
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/************************ MODAL ELIMINAR ************************/
.modal-eliminar .modal-card {
  width: 404px;
}
.modal-eliminar .modal-card .modal-header {
  justify-content: end;
  height: 40px;
  padding-top: 16px;
  border: none;
  padding-bottom: 8px;
}
.modal-eliminar .modal-card .modal-body {
  min-height: 270px;
}
.modal-eliminar .modal-card .modal-body .advertencia {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-bottom: 12px;
}
.modal-eliminar .modal-card .modal-body .advertencia p {
  font-size: 19px;
  font-weight: 500;
  margin-top: 16px;
  margin-bottom: 8px;
}
.modal-eliminar .modal-card .modal-body .advertencia div {
  line-height: 18px;
  text-align: center;
}
.modal-eliminar .modal-card .modal-footer {
  justify-content: center;
  padding-right: 0;
}
/************************ MODAL BUSQUEDA ************************/
.modal-busqueda .modal-card {
  width: 852px;
}
.modal-busqueda .modal-card .modal-filtros {
  height: 60px;
  display: flex;
  gap: 12px;
  align-items: center;
  padding-inline: 24px;
}
.modal-busqueda .modal-card .modal-filtros input {
  width: 229px;
}
.modal-busqueda .modal-card .modal-filtros .label-registros {
  font-size: 11px;
  color: #6c757e;
  margin-left: auto;
}
.modal-busqueda .modal-card .modal-body {
  height: 350px;
  overflow-y: auto;
  padding-right: 0;
  margin-right: 24px;
  margin-bottom: 24px;
}

/************************ MODAL CONFIRMAR ************************/
.modal-confirmar .modal-card {
  width: 400px;
}
.modal-confirmar .modal-card .modal-header {
  border-bottom: 0;
}
.modal-confirmar .modal-card .modal-body {
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.modal-confirmar .modal-card .modal-body .icon-confirmar {
  font-size: 20px;
  color: #1976d2;
  background-color: #e3f2fd;
  padding: 10px;
  border-radius: 50%;
}
.modal-confirmar .modal-card .modal-body h5 {
  font-size: 19px;
  font-weight: 500;
  line-height: 23px;
  margin: 0;
}
.modal-confirmar .modal-card .modal-body .loader-contenedor {
  margin-bottom: 24px;
}
.modal-confirmar .modal-card .modal-body > div {
  text-align: center;
  line-height: 18px;
}
.modal-confirmar .modal-card .modal-footer {
  justify-content: center;
  padding-right: 0;
}

/************************ MODAL CONFIRMACION ************************/
.modal-confirmacion .modal-card .modal-header {
  border-bottom: 0;
}
.modal-confirmacion .modal-card .modal-body {
  align-items: center;
  gap: 8px;
}
.modal-confirmacion .modal-card .modal-body img {
  width: 40px;
  margin-bottom: 8px;
}
.modal-confirmacion .modal-card .modal-body h5 {
  font-size: 19px;
  font-weight: 500;
  line-height: 23px;
  margin: 0;
}
.modal-confirmacion .modal-card .modal-body > div {
  text-align: center;
  line-height: 18px;
}
.modal-confirmacion .modal-card .modal-footer {
  justify-content: center;
  padding-right: 0;
}
/************************ MODAL SUBIR ARCHIVO ************************/
.modal-subir-archivo .modal-card {
  width: 404px;
}
.modal-subir-archivo .modal-card .modal-header {
  justify-content: end;
  height: 40px;
  padding-top: 16px;
  border: none;
  padding-bottom: 8px;
}
.modal-subir-archivo .modal-card .modal-body {
  min-height: 256px;
}
.modal-subir-archivo .modal-card .modal-body .advertencia {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-bottom: 12px;
}
.modal-subir-archivo .modal-card .modal-body .advertencia p {
  font-size: 19px;
  font-weight: 500;
  margin-top: 16px;
  margin-bottom: 8px;
}
.modal-subir-archivo .modal-card .modal-body .advertencia div {
  line-height: 18px;
  text-align: center;
}

/************************ INPUT ARCHIVO ************************/
.input-archivo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: relative;
}
.input-archivo-contenedor {
  border: 1px dashed #a3acb2;
  background: #f0f2f5;
  border-radius: 4px;
  cursor: pointer;
}
.input-archivo-contenedor-seleccionado {
  border: 1px solid #dee1e6;
  border-radius: 4px;
  height: 85px;
  padding-inline: 8px;
}
.input-archivo > input {
  opacity: 0 !important;
  width: 100%;
  height: 85px;
  position: absolute;
  cursor: pointer;
}
.input-archivo .input-oculto {
  width: 80%;
}
.input-archivo-label {
  color: #6c757e;
  font-size: 12px;
  font-weight: 500;
}
.input-archivo-label span {
  color: #1e88e5;
}
.input-archivo-label-seleccionado {
  display: flex;
  justify-content: space-between;
  gap: 4px;
  align-items: center;
  width: 100%;
  color: #212429;
}
.input-archivo-label-seleccionado .archivo-seleccionado-icono-nombre {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: start;
  width: 70%;
}
.input-archivo-label-seleccionado .archivo-seleccionado-icono-nombre span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.input-archivo-label-seleccionado .archivo-seleccionado-icono-nombre img {
  width: 16px;
  margin-right: 4px;
}
.input-archivo-label-seleccionado .archivo-seleccionado-tamanio {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.input-archivo-label-seleccionado .archivo-seleccionado-icono-cerrar {
  color: #6c757e;
  font-size: 13px;
  padding: 4px;
  cursor: pointer;
}
.input-archivo-contenedor:hover {
  background: #e3f2fd;
  transition: background-color 0.2s;
}

/************************ ALERT ************************/
.alert {
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  margin: 0px auto;
  width: 60%;
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  animation: fadeInOut 3s forwards;
}
/************************ MENU FLOTANTE  ************************/
.menu-flotante {
  position: relative;
  display: inline;
}

.menu-flotante-card {
  position: absolute;
  background-color: #fff;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 100;
  width: 148px;
}

.menu-flotante-card a,
.menu-flotante-card button {
  display: flex !important;
  padding: 8px 16px !important;
  text-decoration: none;
  color: #212429;
  width: 100% !important;
  text-align: left;
  border: none;
  background: #fff;
  align-items: center;
  justify-content: left !important;
}
.menu-flotante-card a i,
.menu-flotante-card button i {
  color: #6c757e !important;
  font-size: 14px !important;
  padding-left: 0 !important;
  padding-right: 6px !important;
}

.menu-flotante-card a:hover,
.menu-flotante-card button:hover {
  background-color: #f1f1f1 !important;
}

/************************ A ************************/
a {
  text-decoration: none;
  color: #1e88e5;
}
a i {
  color: #1e88e5;
  font-size: 12px;
  margin-left: 4px;
}

/************************ FILTROS BAR ************************/
.filtros-bar {
  height: 48px;
  background-color: #fff;
  display: flex;
  align-items: center;
  padding-inline: 32px;
  position: relative;
}
.filtros-bar form {
  width: 100%;
  flex-flow: row;
  align-items: center;
  gap: 8px;
}
.filtros-bar form label {
  color: #212429;
  font-size: 12px;
}
.filtros-bar form input[type="text"],
.filtros-bar form input[type="date"],
.filtros-bar form select,
.filtros-bar form .multiselect {
  width: 17%;
  margin-right: 8px;
}
.filtros-bar form input[type="text"] {
  max-width: 296px;
}
.filtros-bar form select,
.filtros-bar form .multiselect {
  max-width: 180px;
}
.filtros-bar form input[type="date"] {
  max-width: 160px;
}
.filtros-bar form .input-busqueda {
  width: 20% !important;
}
.filtros-bar form label {
  margin-bottom: 0;
}
.filtros-bar .boton-agregar {
  position: absolute;
  right: 32px;
}

/************************ TOOLTIP ************************/
.e-control {
  font-family: Inter;
}
.e-tooltip {
  font-size: 11px;
}
.e-tooltip-wrap.e-popup {
  border-radius: 2px;
  background: #495058;
  opacity: 1;
  border: none;
}
.e-tooltip-wrap .e-tip-content {
  font-family: Inter;
  font-size: 11px;
  font-weight: 500;
}

/************************ MULTISELECT ************************/
.e-multiselect {
  margin: 0 !important;
  height: 30px;
  border: 1px solid #dee1e6 !important;
  border-radius: 4px !important;
  padding-inline: 8px;
}
/* background-color: red; */
/* width: 10%; */
.e-multiselect.e-input-group .e-multi-select-wrapper .e-searcher input {
  min-height: 15px !important;
  height: 20px !important;
  width: 100%;
}
.e-multiselect.e-input-group .e-multi-select-wrapper .e-searcher input:focus {
  border: none;
  outline: none;
}
.e-multiselect .e-delim-values {
  color: #212429;
  font-family: Inter;
  font-size: 12px;
}
.e-multiselect.e-input-group .e-input-group-icon,
.e-multiselect.e-input-group.e-control-wrapper .e-input-group-icon:hover {
  font-size: 11px;
}
.e-multiselect.e-input-group.e-control-wrapper.e-input-focus::before,
.e-multiselect.e-input-group.e-control-wrapper.e-input-focus::after {
  background-color: #0668d0;
}
.e-multiselect input.e-dropdownbase::placeholder {
  color: #212429;
  font-family: Inter;
  font-size: 12px;
}
.e-popup .e-checkbox-wrapper .e-frame.e-check,
.e-popup .e-checkbox-wrapper:hover .e-frame.e-check {
  background-color: #0668d0;
  color: #fff;
}

.e-dropdownbase .e-list-item,
.e-dropdownbase .e-list-item.e-item-focus {
  height: 30px;
  color: #212429;
  font-family: Inter;
  font-size: 12px;
}

/************************ DATAGRID ************************/
.e-grid .e-toolbar.e-control[class*="e-toolbar"] {
  height: 25px;
  min-height: 25px;
}
.e-grid .e-toolbar .e-toolbar-left .e-toolbar-item {
  padding-bottom: 0;
}
.e-grid .e-toolbar .e-toolbar-left .e-toolbar-item button span::before {
  font-size: 16px;
  font-weight: 500;
  color: #6c757e;
}
.e-grid .e-toolbar .e-toolbar-item {
  height: 25px;
  min-height: 25px;
  padding-top: 0;
}
.e-grid .e-toolbar .e-toolbar-item .e-tbar-btn {
  margin: 0;
}
.e-toolbar .e-toolbar-item .e-tbar-btn:focus {
  background-color: transparent;
}
.e-grid .e-toolbar .e-toolbar-item .e-tbar-btn .e-tbar-btn-text {
  font-size: 11px;
  color: #212429;
  letter-spacing: normal;
}
.e-grid .e-gridheader .e-table th .e-sortfilterdiv {
  cursor: pointer;
}
.e-grid .e-gridheader .e-table th {
  background: #f8f9fb;
  color: #212429;
  padding-inline: 8px;
  height: 24px;
  min-height: 24px;
  cursor: move;
}
.e-grid .e-gridheader .e-table th .e-headertext {
  font-size: 11px;
  font-weight: 600;
}
.e-grid .e-gridheader .e-sortfilter .e-headercelldiv {
  padding-right: 18px;
}
.e-grid .e-gridheader tr th:first-child {
  padding-left: 8px;
}
.e-grid .e-gridcontent .e-table tr td {
  font-size: 12px;
  color: #212429;
  padding: 2px 8px;
  height: 32px;
}
.e-grid .e-gridcontent .e-table .e-emptyrow td {
  text-align: center;
}
.e-grid:not(.e-grid-min-height) .e-gridcontent tr.e-row .e-rowcell:empty {
  height: auto !important;
  min-height: auto !important;
}
.e-grid .e-rowcell:not(.e-editedbatchcell):not(.e-updatedtd) {
  color: #212429;
}
.e-grid .e-row:hover .e-rowcell {
  background: #e1f5fe !important;
}
.e-grid .e-rowcell.e-selectionbackground {
  background: #e1f5fe;
}
/* TABLE FOOTER */
.e-grid .e-gridfooter .e-summarycontent table tfoot tr td {
  background: #f8f9fb;
  padding: 4px 8px;
  color: #212429;
  font-weight: 500;
  font-size: 12px;
}
.e-grid .e-gridpager .e-pagercontainer .e-currentitem.e-active {
  background-color: #0668d0;
}
.e-grid .e-gridpager .e-pagercontainer {
  margin: 0;
  padding-top: 4px;
}
.e-grid .e-pager .e-parentmsgbar {
  padding-block: 10px;
}
.e-grid .e-gridpager .e-pagercontainer .e-icons {
  padding-top: 5px;
}
/* MENU COLUMNS */
.e-ccdlg .e-dlg-header-content {
  padding: 12px;
}
.e-ccdlg .e-dlg-header-content .e-dlg-header {
  font-size: 13px;
  color: #212429;
  font-weight: 500;
}
.e-ccdlg .e-footer-content .e-control {
  font-size: 12px;
}
.e-ccdlg .e-dlg-content .e-cc-contentdiv .e-ccul-ele {
  margin: 0;
}
.e-ccdlg .e-dlg-content .e-cc-contentdiv .e-ccul-ele .e-cclist {
  padding-block: 4px;
}
.e-ccdlg .e-dlg-content .e-cc-contentdiv .e-ccul-ele .e-cclist .e-label {
  font-size: 12px;
  color: #212429;
}
.e-filter-popup li {
  font-size: 12px;
  height: 25px;
  color: #212429;
}
.e-filter-popup .e-dlg-content {
  padding-block: 8px;
}
.e-filter-popup .e-ftrchk {
  font-size: 12px;
  padding-block: 4px;
}
.e-filter-popup .e-ftrchk .e-label {
  font-size: 12px;
  color: #212429;
}
.e-filter-popup .e-footer-content .e-control {
  font-size: 12px;
}
.e-contextmenu-wrapper .e-excel-menu li {
  font-size: 12px;
  color: #212429;
}

/************************ TABS ************************/
.tabs-bar {
  background-color: #fff;
  width: 100%;
  height: 40px;
  display: flex;
  gap: 16px;
  align-items: center;
  padding-inline: 32px;
}
.tabs-bar .tab-opcion {
  cursor: pointer;
  padding: 8px;
  transition: background-color 0.3s ease;
  color: #495058;
  font-size: 12px;
  height: 32px;
}
.tabs-bar .tab-opcion-active {
  font-weight: 600;
  border-bottom: 2px solid #0668d0;
}
.tabs-bar .tab-opcion:hover {
  cursor: pointer;
  background-color: #f0f2f5;
}
.tab-area .area-detalle {
  max-height: calc(100vh - 90px);
}

/************************ TABS PILLS ************************/
.tabs-pill {
  display: flex;
}
.tabs-pill .tab-opcion {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  padding-inline: 12px;
  color: #1565c0;
  font-size: 11px;
  border-width: 1px 0px 1px 1px;
  border-color: #2196f3;
  border-style: solid;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.tabs-pill .tab-opcion:hover {
  background-color: #94c7fc;
}
.tabs-pill div:first-child,
.tabs-pill a:first-child {
  border-radius: 10px 0px 0px 10px !important;
}
.tabs-pill div:last-child,
.tabs-pill a:last-child {
  border-radius: 0px 10px 10px 0px;
  border-width: 1px;
}
.tabs-pill .tab-opcion-active {
  background-color: #2196f3;
  color: #fff;
  font-weight: 600;
}
/************************ LOADER ************************/
.loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
}
.loader {
  width: 11.2px;
  height: 11.2px;
  animation: spinner 1s infinite linear;
  border-radius: 11.2px;
  box-shadow: 28px 0px 0 0 #6c757e, 17.4px 21.8px 0 0 #6c757e,
    -6.2px 27.2px 0 0 #6c757e, -25.2px 12px 0 0 #6c757e,
    -25.2px -12px 0 0 #6c757e, -6.2px -27.2px 0 0 #6c757e,
    17.4px -21.8px 0 0 #6c757e;
}

/************************ SEPARADOR VERTICAL ************************/
.separador-v {
  height: auto;
  width: 1px;
  background-color: #dee1e6;
}

/************************ STATUS GLOBAL ************************/
.status-global {
  display: flex;
  align-items: center;
}
.status-global .status-div-color {
  border-radius: 2px;
  height: 12px;
  width: 12px;
  min-height: 12px;
  min-width: 12px;
  margin-right: 6px;
}
.status-global .bg-color-pendiente {
  background-color: #a3acb2;
}
.status-global .bg-color-activo {
  background-color: #4caf50;
}
.status-global .bg-color-eliminado {
  background-color: #f44336;
}
.status-global .bg-color-proceso {
  background-color: #2196f3;
}
/****************** COMIENZAN ESTILOS DE SCROLL GLOBAL *****************/
/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #c7cbd1 #fff;
}

/* Works on Chrome, Edge, and Safari */
*::-webkit-scrollbar,
*::-webkit-scrollbar:horizontal {
  width: 6px;
  height: 6px;
}
*::-webkit-scrollbar-track {
  background: #f0f2f5;
}
*::-webkit-scrollbar-thumb {
  background-color: #c7cbd1; /* color of the scroll thumb */
  border-radius: 8px; /* roundness of the scroll thumb */
}
::-webkit-scrollbar-corner {
  background-color: inherit;
}

/*****************************************************************/
/************************ CLASES DE MODULOS **********************/
/*****************************************************************/

/************************ CLIENTE DETALLE ************************/
.cliente-detalle .card-detalle {
  width: 100%;
}
.cliente-detalle .seccion-primaria {
  display: flex;
  gap: 16px;
  width: 100%;
  flex-wrap: wrap;
}
.cliente-detalle .seccion-secundaria {
  display: flex;
  gap: 16px;
  width: 30%;
  flex-wrap: wrap;
}
.cliente-detalle .seccion-secundaria .card-secundaria {
  width: 100%;
  align-self: flex-start;
}
.cliente-detalle .seccion-secundaria .card-secundaria table th {
  width: 15%;
}
.cliente-detalle .seccion-primaria .tabla-vehiculos {
  min-height: 200px;
  height: auto;
  max-height: calc(100vh - 674px);
}
.cliente-detalle .seccion-primaria .tabla-domicilios {
  height: auto;
  max-height: 150px;
}
.cliente-detalle .seccion-primaria .tabla-domicilios .col-opciones i {
  color: #0668d0;
  font-size: 14px;
}

/************************ MARCAS MODELOS ************************/
.area-marcas-modelos {
  padding: 24px;
  display: flex;
}
.marcas-modelos-card {
  width: 380px;
  outline: 1px solid #dee1e6;
}
.marcas-modelos-card .marcas-modelos-header {
  background-color: #f8f9fb;
  padding-inline: 24px;
  padding-block: 16px;
  display: flex;
  justify-content: space-between;
}
.marcas-modelos-card .marcas-modelos-header .titulo {
  font-size: 16px;
  font-weight: 500;
  color: #495058;
}
.marcas-modelos-card .marcas-modelos-header .boton-agregar {
  cursor: pointer;
  color: #0668d0;
  font-size: 20px;
  padding-inline: 0;
  min-width: 0;
}
.marcas-modelos-card .marcas-modelos-contenido {
  background-color: #fff;
  align-items: center;
  color: #212429;
  padding-block: 16px;
  padding-left: 24px;
  padding-right: 8px;
}
.marcas-modelos-card .marcas-modelos-contenido .scroll-area {
  max-height: 510px;
  height: calc(100vh - 200px);
  padding-right: 16px;
  overflow-y: auto;
  text-align: center;
}
.marcas-modelos-card .marcas-modelos-contenido .marca-modelo-item {
  height: 36px;
  margin-bottom: 8px;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.marcas-modelos-card
  .marcas-modelos-contenido
  .marca-modelo-item
  .contenido-item-iconos {
  display: flex;
  gap: 6px;
}
.marcas-modelos-card
  .marcas-modelos-contenido
  .marca-modelo-item
  .contenido-item-iconos
  i {
  color: #0668d0;
  cursor: pointer;
  padding: 4px;
  border-radius: 3px;
  transition: all 0.2s ease;
}
.marcas-modelos-card
  .marcas-modelos-contenido
  .marca-modelo-item
  .contenido-item-iconos
  i:hover {
  background: #94c7fc;
}
.marcas-modelos-card .marcas-modelos-contenido .marca-modelo-item-marca {
  cursor: pointer;
}
.marcas-modelos-card .marcas-modelos-contenido .marca-modelo-item-marca:hover {
  background-color: #f8f9fb;
}
.marcas-modelos-card .marcas-modelos-contenido .marca-modelo-item-seleccionado {
  color: #1565c0;
  background-color: #e3f2fd;
}

/************************ FOLIOS ************************/
.area-folios {
  padding: 24px;
  display: flex;
}
.area-folios .card-folios-agregar {
  background-color: #fff;
  width: 500px;
  outline: 1px solid #dee1e6;
  padding: 48px;
}
.area-folios .card-folios-agregar form > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.area-folios .card-folios-agregar form > div label {
  width: 30%;
  margin-bottom: 0;
}
.area-folios .card-folios-agregar form > div input,
.area-folios .card-folios-agregar form > div select {
  width: 70%;
}
.area-folios .card-folios-agregar form .guardar {
  justify-content: center;
  padding-top: 20px;
}
.area-folios .card-folios-agregar form .guardar .boton {
  width: 40%;
}

/************************ VEHICULO DETALLE ************************/
.vehiculo-detalle .seccion-primaria {
  width: 100%;
  display: flex;
  gap: 16px;
}
.vehiculo-detalle .seccion-primaria .card-detalle {
  height: 450px;
}
.vehiculo-detalle .seccion-primaria .card-detalle:first-child {
  width: 55%;
}
.vehiculo-detalle .seccion-primaria .card-detalle:last-child {
  width: 35%;
}
.vehiculo-detalle
  .seccion-primaria
  .card-detalle
  .tabla-detalle
  .cell-domicilio {
  text-overflow: inherit;
  white-space: wrap;
}
.vehiculo-verificaciones .card-detalle {
  max-width: 1340px;
}
.vehiculo-verificaciones .card-body {
  min-height: 300px;
  max-height: calc(100vh - 210px);
  overflow: auto;
}
.vehiculo-verificaciones table .col-opciones i {
  color: #0668d0;
  font-size: 15px;
}

/************************ ORDEN TRABAJO ALTA ************************/
.area-alta-orden-trabajo {
  padding: 0;
  gap: 0;
}
.area-alta-orden-trabajo .area-alta-orden-trabajo-footer {
  width: 100%;
  height: 56px;
  background-color: #fff;
  border-top: 1px solid #dee1e6;
  align-self: flex-end;
  display: flex;
  align-items: center;
  padding-inline: 24px;
  justify-content: space-between;
}
.area-alta-orden-trabajo .area-alta-orden-trabajo-body {
  width: 100%;
  height: calc(100% - 56px);
  display: flex;
}
.area-alta-orden-trabajo .seccion-vehiculos {
  width: 100%;
  background-color: #fff;
}
.area-alta-orden-trabajo .seccion-vehiculos.step1 {
  max-width: calc(100% - 560px);
}
.area-alta-orden-trabajo .seccion-vehiculos-titulo {
  height: 50px;
  background-color: #fff;
  display: flex;
  align-items: center;
  padding-left: 8px;
  border-bottom: 1px solid #dee1e6;
  font-weight: 600;
}
.seccion-vehiculos .tabla-vehiculos {
  height: calc(100% - 50px);
  overflow: auto;
}
.seccion-vehiculos .tabla-vehiculos table {
  min-width: 800px;
}
.seccion-vehiculos .tabla-vehiculos table .icon-eliminar {
  color: #6c757e;
  font-size: 15px;
  cursor: pointer;
}
.area-alta-orden-trabajo .card-captura {
  width: 280px;
  min-width: 280px;
  background-color: #fff;
  padding: 16px;
  overflow-y: auto;
}
.area-alta-orden-trabajo .card-captura h5 {
  margin-top: 0;
  margin-bottom: 16px;
  font-weight: 600;
}
.area-alta-orden-trabajo .card-captura form {
  width: 100%;
  padding: 0;
  height: calc(100% - 30px);
}
.area-alta-orden-trabajo .card-captura form .boton-primario {
  max-width: 72px;
  min-width: 72px;
  margin: 8px 0 0 auto;
}
.area-alta-orden-trabajo .card-cliente {
  border-right: 1px solid #dee1e6;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.area-alta-orden-trabajo .card-vehiculo {
  border-left: 1px solid #dee1e6;
}
.modal-confirmar-orden-trabajo .modal-card .modal-body {
  min-height: 270px;
  width: 80%;
  margin: 0 auto;
}
.modal-confirmar-orden-trabajo .modal-body .loader.static {
  width: 8px;
  height: 8px;
  animation: none;
  border-radius: 8px;
  box-shadow: 20px 0px 0 0 #6c757e, 12.4px 15.6px 0 0 #6c757e,
    -4.4px 19.4px 0 0 #6c757e, -18px 8.6px 0 0 #6c757e, -18px -8.6px 0 0 #6c757e,
    -4.4px -19.4px 0 0 #6c757e, 12.4px -15.6px 0 0 #6c757e;
}
.modal-confirmar-orden-trabajo .modal-body .loader {
  width: 8px;
  height: 8px;
  animation: spinner 1s infinite linear;
  border-radius: 8px;
  box-shadow: 20px 0px 0 0 #6c757e, 12.4px 15.6px 0 0 #6c757e,
    -4.4px 19.4px 0 0 #6c757e, -18px 8.6px 0 0 #6c757e, -18px -8.6px 0 0 #6c757e,
    -4.4px -19.4px 0 0 #6c757e, 12.4px -15.6px 0 0 #6c757e;
}
/************************ ORDEN TRABAJO GESTOR ************************/
.orden-trabajo-gestor .filtros-bar > a {
  min-width: 160px;
}
/************************ ORDEN TRABAJO DETALLE ************************/
.orden-trabajo-detalle {
  max-width: 1590px;
}
.orden-trabajo-detalle .seccion-primaria {
  width: 100%;
  max-width: none;
}
.orden-trabajo-detalle .seccion-primaria .tabla-orden-trabajo-detalles {
  min-height: 300px;
  max-height: calc(100vh - 410px);
  overflow: auto;
}
.orden-trabajo-detalle .seccion-primaria .tabla-orden-trabajo-detalles table {
  min-width: 1400px;
}
.orden-trabajo-detalle
  .seccion-primaria
  .tabla-orden-trabajo-detalles
  table
  .w3p {
  padding-inline: 4px;
  width: 2%;
  max-width: 25px;
  min-width: 0px;
}
.orden-trabajo-detalle .tabla-orden-trabajo-detalles .col-opciones i {
  color: #0668d0;
  font-size: 16px;
}
/************************ ORDEN TRABAJO MODAL ASIGNAR ************************/
.modal-orden-trabajo-asignar .modal-card {
  width: 737px;
}
.modal-orden-trabajo-asignar .modal-body {
  flex-direction: row !important;
}
.modal-orden-trabajo-asignar .modal-body .seccion {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 50%;
  margin-bottom: 24px;
}
.modal-orden-trabajo-asignar .modal-body .seccion .date-verificacion-anterior {
  width: 156px;
}
.modal-orden-trabajo-asignar .modal-body .seccion input[type="date"] {
  min-width: 120px;
}
.modal-orden-trabajo-asignar .modal-body .seccion .busqueda-folio {
  max-width: 156px;
}
/************************ ORDEN TRABAJO MODAL ASIGNAR ************************/
.modal-orden-trabajo-folios .modal-card {
  width: 608px;
}
.modal-orden-trabajo-folios .modal-card .modal-body {
  height: 314px;
}
/************************ ORDEN TRABAJO MODAL ASIGNAR ************************/
.modal-orden-trabajo-cerrar-proceso .modal-card .modal-header {
  height: 40px;
}
.modal-orden-trabajo-cerrar-proceso .modal-card .modal-body .advertencia {
  margin-bottom: 8px;
}
.modal-orden-trabajo-cerrar-proceso .modal-card form {
  width: 100%;
  gap: 12px;
}
/************************ USUARIOS ************************/
.usuarios-gestor .tabla-gestor {
  height: calc(100vh - 226px);
  padding-inline: 16px;
}
.usuarios-gestor .tabla-gestor .e-grid {
  border-inline: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}
.usuarios-gestor .header-cards-usuarios {
  max-width: 800px;
  height: 112px;
  padding-left: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.usuarios-gestor .header-cards-usuarios .card-usuarios {
  padding-block: 16px;
  padding-inline: 24px;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  color: #495058;
  height: 80px;
  background: #fff;
  box-shadow: 0px 2px 8px rgba(163, 172, 178, 0.2);
  border-radius: 6px;
  flex-grow: 1;
}
.usuarios-gestor .header-cards-usuarios .card-usuarios .numerador {
  margin-top: 6px;
  font-size: 19px;
  font-weight: 600;
  line-height: 23px;
}
/************************ ALTA DE VEHICULOS ************************/
.area-alta-vehiculo form .textarea-domicilio {
  margin-top: 6px;
}
/************************ REPORTE VERIFICACIONES ************************/
.reporte-verificaciones-gestor .label-tipo {
  font-weight: 500;
}
/*****************************************************************/
/************************** KEYFRAMES ****************************/
/*****************************************************************/
/* ALERT */
@keyframes fadeInOut {
  0%,
  100% {
    opacity: 0;
  }
  10%,
  90% {
    opacity: 1;
  }
}
/* LOADER */
@keyframes spinner {
  to {
    transform: rotate(360deg);
  }
}
/* MODAL */
@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
