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

* {
  font-family: "Inter";
  font-size: 12px;
  color: #212429;
}

*:focus-visible {
  outline: 3px solid rgba(0, 0, 0, 0.15);
}

a {
  cursor: pointer;
  text-decoration: none;
}

.puntero-cursor {
  cursor: pointer;
}

input::placeholder {
  font-size: 12px;
}

/* Estiliza la barra de desplazamiento */
::-webkit-scrollbar {
  width: 10px; /* Ancho de la barra */
  height: 10px; /* Alto de la barra (para desplazamientos horizontales) */
}

/* Estiliza el fondo de la barra */
::-webkit-scrollbar-track {
  background: #f1f1f1; /* Color del fondo */
  border-radius: 10px; /* Bordes redondeados */
}

/* Estiliza el "thumb" (la parte que se mueve) */
::-webkit-scrollbar-thumb {
  background-color: #888; /* Color del thumb */
  border-radius: 10px; /* Bordes redondeados */
  border: 2px solid #f1f1f1; /* Espacio alrededor */
}

/* Estiliza el "hover" del thumb */
::-webkit-scrollbar-thumb:hover {
  background-color: #555; /* Color al pasar el mouse */
}

/*****************************************************************/
/************************ CLASES DE LOGIN ************************/
/*****************************************************************/
.login {
  background-image: url("../imagenes/keymaster-imagenes-background-login.jpg");
  background-size: cover;
  height: 100vh;
  padding-top: 30vh;
  padding-bottom: 30vh;
}

.login img {
  height: 32px;
}

.login .login-card {
  border-radius: 8px;
  width: 340px;
  height: 360px;
  margin: 0 auto;
  padding: 32px;
  background: #fff;
}

.login .login-card .login-card-titulo {
  text-align: center;
  font-size: 24px;
  margin-bottom: 20px;
  margin-top: 2px;
}
.login .login-card .inputs{
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.login .login-card .inputs input::placeholder{
  color: #A3ACB2;
}

.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: 28px;
  border: none;
  width: 100%;
  color: #fff;
  border-radius: 4px;
  font-weight: 600;
  bottom: 10px;
  cursor: pointer;
}

.login .version {
  position: absolute;
  bottom: 16px;
  right: 16px;
  color: #6c757e;
  font-size: 12px;
}

.campo-invalido {
  font-size: 12px;
  margin-top: 2px;
  margin-bottom: 2px;
  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-error-login {
  color: #d32f2f;
  padding-inline: 4px;
  padding-block: 0px;
  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;
}

/*****************************************************************/
/************************ INPUT CON ICONO ************************/
/*****************************************************************/

.input-con-icono-contenedor {
  position: relative;
  width: 100%;
}

.input-con-icono {
  padding-left: 30px !important;
}

.input-con-icono-derecha {
  padding-right: 30px !important;
}

.icono-input {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
}

.icono-input-derecha {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  height: 16px;
}

.icono-input-ver-password {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}

.icono-input-ver-password button {
  display: flex;
  align-items: center;
  text-align: center;
  background-color: transparent;
  border: none;
  height: 28px;
  cursor: pointer;
  padding: 0px;
}

.icono-input i {
  font-size: 14px;
  color: #A3ACB2;
}

.icono-input-derecha i {
  font-size: 16px;
  color: #A3ACB2;
}

/************************ TABLA GESTOR ************************/
.tabla-gestor {
  height: calc(100vh - 200px);
  width: 100%;
  overflow: auto;
  margin-top: 10px;
  min-width: 500px;
}

/* TABLE */
table {
  width: 100vh;
  background: #fff;
  border-collapse: collapse;
  border-top: 0px;
}

table thead {
  background: white;
  height: 32px;
  border-bottom: 1px solid #dee1e6;
  text-align: left;
  position: sticky;
  top: 0;
  z-index: 10;
}

.e-grid .e-gridheader {
  border-top: 0px solid;
}

table thead th {
  font-size: 12px;
}

table tbody tr {
  border-bottom: 1px solid #dee1e6;
  transition: background-color 0.3s ease;
}

table tbody tr:hover {
  background-color: #EEF7FD;
}

table tbody tr td {
  padding: 8px;
  padding-inline: 8px;
  padding-top: 10px;
  padding-bottom: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 32px;
}

.tabla-gestor .accionDetalle {
  color: #0D47A1;
  font-weight: 400;
}

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: 12px;
}

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 .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%;
}

/* DATA GRID */
.tabla-gestor .e-grid {
  border: 0;
}

.e-grid.e-device .e-rowcell,
.e-grid.e-device .e-summarycell,
.e-grid .e-rowcell,
.e-grid.e-device .e-headercell {
  padding-inline: 8px;
  line-height: 10px;
  font-size: 12px;
}

.e-grid .e-rowcell:last-child,
.e-grid .e-summarycell:last-child {
  padding-right: 8px;
}

.e-grid.e-device .e-rowcell:last-child,
.e-grid.e-device .e-summarycell:last-child {
  padding-inline: 4px;
}

.e-grid .e-gridheader tr th:last-child {
  padding-right: 0px;
}

.e-grid .e-headercell,
.e-grid .e-detailheadercell {
  padding: 0px 0px 0px;
}


.e-grid.e-device .e-rowcell,
.e-grid.e-device .e-summarycell,
.e-grid .e-rowcell,
.e-grid.e-device .e-headercell {
  padding-inline: 0px;
}

.e-grid .e-headercell.e-mousepointer,
.e-grid .e-headercell, .e-grid .e-headercell.e-stackedheadercell, .e-grid .e-headercell.e-defaultcursor {
  cursor: move;
}

.e-grid .e-headercelldiv .e-headertext {
  font-weight: 600;
  font-size: 12px !important;
}

.e-grid .e-row:hover .e-rowcell {
  background: #EEF7FD !important;
}
.e-grid .e-rowcell.e-selectionbackground {
  background: #fff;
}

.e-grid .e-rowcell, .e-grid .e-headercell {
  padding-inline: 4px;
}

/************************ TOOLTIP ************************/
.tooltip-copiado {
  position: absolute;
  top: 0;
  left: 0;
  width: 160px;
  height: 20px;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 5px;
  border: 0px;
  display: block;
  align-items: center;
  justify-content: center;
  z-index: 1000000;
  padding: 2px;
  padding-left: 3px;
}

.tooltip-mensaje {
  font-weight: 500;
  color: #fff;
  font-size: 12px;
}

/************************ 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-limpiar {
  background: #fff;
  color: #212429;
  min-width: 70px;
  padding-inline: 6px;
  font-weight: 400;
}

.boton-limpiar:hover {
  background: #E3F2FD;
}

.boton-limpiar i {
  margin-left: 4px;
}

.boton-agregar {
  background: transparent;
  color: #0556ad;
  padding-inline: 6px;
  font-weight: 400;
}

.boton-agregar i {
  color: #0556ad;
}

.boton-primario:disabled {
  opacity: 1;
  cursor: not-allowed;
  color: #c7cbd1;
  background-color: #f0f2f5;
}

.ver-password {
  display: flex;
  flex-direction: row;
  gap: 3px;
  align-items: center;
}


/************************ 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-activo {
  background-color: #4caf50;
}

.status-global .bg-color-eliminado {
  background-color: #f44336;
}

/************************ FORM ************************/

form {
  display: flex;
  flex-flow: column;
  gap: 16px;
}

form label {
  color: #393d41;
  font-size: 12px;
  display: block;
  margin-bottom: 3px;
}

form label.requerido::after {
  content: " *";
  color: #f44336;
}

form input[type="text"],
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 textarea {
  padding-top: 7px;
}

form select{
  padding-left: 6px;
}

form input[type="password"]{
  display: block;
  width: 100%;
  height: 28px;
  border: 1px solid #dee1e6;
  border-radius: 4px;
  padding-left: 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 {
  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 .input-busqueda {
  display: flex;
  justify-content: space-between;
  gap: 4px;
}

form .input-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

form .form-controles {
  margin-top: auto;
  height: 76px;
  display: flex;
  justify-content: end;
  align-items: end;
  gap: 12px;
  padding-bottom: 24px;
  padding-right: 24px;
}

.titulo {
  font-size: 16px;
  font-weight: 600;
  color: #212429;
}

/************************ 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;
}

/************************ ALERT ************************/
.alert {
  position: relative;
  top: 2px;
  left: 0;
  right: 0;
  margin: 0px auto;
  width: 100%;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  animation: fadeInOut 5.4s forwards;
}

/************************ HEADER GLOBAL ************************/
.header-gestor-global {
  width: 100%;
  height: 40px;
  background-color: #FFF;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding-inline: 40px;
  gap: 7px;
  border-bottom: 1px solid #E8ECEF;
}

.header-gestor-global img {
  height: 24px;
}

.header-gestor-global .buttons-right {
  margin-left: auto;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2px;
}

.header-gestor-global .buttons-right i{
  color: #6C757E;
}

.button-configuracion {
  border-radius: 4px;
  background-color: #E3F2FD;
  border: 0px;
  padding: 8px;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.button-configuracion.active {
  background-color: transparent;
}

.button-configuracion.active:hover {
  background-color: #E3F2FD;
}

.button-configuracion i {
  color: #fff;
  font-size: 16px;
}

.menu-flotante .menu-flotante-card {
  display: none;
}

.menu-flotante .menu-flotante-card-configuracion {
  bottom: 0;
  right: 20px;
  top: 15px;
  width: 140px;
}

.logout-boton {
  width: 30px;
  height: 30px;
  background-color: #FFF;
  color: #6c757e;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  border: 1px solid white;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logout-boton:hover {
  background-color: #E3F2FD;
}

.logout-boton i {
  color: #fff;
  font-size: 16px;
}

/************************ MENU FLOTANTE  ************************/
.menu-flotante {
  position: relative;
  display: inline;
}

.menu-flotante-card {
  position: absolute;
  background-color: #fff;
  z-index: 100000;
}

.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;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

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


/************************ SIDEBAR ************************/

.sidebar {
  position: fixed;
  width: 220px;
  height: calc(100vh - 40px);
  padding: 20px;
  padding-bottom: 24px;
  border-right: 1px solid #E8ECEF;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background-color: #F5F7FA;
}
.sidebar .grupo:first-of-type {
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow: visible;
}

.sidebar .grupo {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-height: 280px;
  overflow: auto;
}

.sidebar .encabezado {
  font-weight: 600;
  font-size: 12px;
  margin-top: 8px;
}

.sidebar .encabezado:first-child {
  margin-top: 0px !important;
}

.sidebar .grupo a {
  padding-inline: 8px;
  position: relative;
  font-size: 12px;
  padding-block: 4px;
  height: 26px;
  line-height: 18px;
}

.sidebar .selected {
  background-color: #BBDEFB;
  color: #000000;
  font-weight: 500;
}
.sidebar a:hover{
  background-color: #BBDEFB;
  color: #000000;
  font-weight: 500;
}

/************************ SIDEBAR CONFIGURACION ************************/

.sidebar .regresar a {
  color: #0556ad;
  font-size: 12px;
  font-weight: 400;
  display: flex;
  align-items: center;
  height: 26px;
  text-align: center;
  justify-content: center;
  line-height: 26px;
}

.sidebar .regresar {
  text-align: center;
  padding-bottom: 8px;
  border-bottom: 1px solid #E8ECEF;
}

.sidebar-configuracion .encabezado{
  margin-bottom: 4px;
}

.sidebar-configuracion .grupo a {
  padding-inline: 16px;
}

/************************ ENCABEZADO GESTOR ************************/

.app {
  left: 220px;
  position: relative;
  padding: 16px;
  box-sizing: border-box;
  width: calc(100% - 220px);
}

.encabezado .titulo {
  font-size: 16px;
  font-weight: 600;
}

.encabezado .titulo-boton {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.agregar {
  margin-left: auto;
  position: relative;
  font-weight: 400;
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 4px;
  color: #0556AD;
}

.agregar:hover {
  background: #E3F2FD;
}

.encabezado .filtros-bar {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
}

.encabezado .filtros-bar input:focus {
  outline: 1px solid #0556ad;
  border: 1px solid #0556ad;
}

.encabezado .filtros-bar select:focus {
  outline: 1px solid #0556ad;
  border: 1px solid #0556ad;
}

.registros {
  margin-left: auto;
  padding-right: 12px;
  position: relative;
  font-weight: 400;
  color: #6C757E;
}
.app a {
  color: #0556ad;
}

.encabezado .filtros-bar .buscar {
  height: 28px;
  width: 360px;
  border: 1px #DEE1E6 solid;
  border-radius: 4px;
  padding-inline: 12px;
}

.encabezado .filtros-bar .compartido {
  gap: 8px;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.encabezado .filtros-bar .compartido select {
  width: 260px;
  height: 28px;
  border: 1px #DEE1E6 solid;
  border-radius: 4px;
  background-color: white;
  padding-inline: 12px;
}

.encabezado .filtros-bar .compartido label {
  font-weight: 400;
  color: #6C757E;
  font-size: 12px;
}

/************************ COMBOBOX ************************/


input,
.e-input-group.e-control-wrapper input.e-input,
.e-input-group.e-control-wrapper input {
  border-radius: 5px;
}

.e-combobox {
  margin: 0 !important;
  height: 28px;
  padding-left: 4px;
}

.e-input-group, .e-input-group.e-control-wrapper {
  border: 1px solid #dee1e6 !important;
  border-radius: 4px !important;
  padding-right: 4px;
}

.e-input-group:not(.e-float-icon-left):not(.e-float-input)::before,
.e-input-group.e-control-wrapper:not(.e-float-icon-left):not(.e-float-input)::before,
.e-input-group.e-control-wrapper:not(.e-float-icon-left):not(.e-float-input)::after,
.e-input-group.e-control-wrapper.e-float-icon-left:not(.e-float-input) .e-input-in-wrap::before,
.e-input-group.e-control-wrapper.e-float-icon-left:not(.e-float-input) .e-input-in-wrap::after {
  background: #0668d0;
}

input.e-input,
.e-input-group input.e-input,
.e-input-group.e-control-wrapper input.e-input {
  padding-left: 8px;
}

.e-input-group:not(.e-float-icon-left), .e-input-group.e-control-wrapper:not(.e-float-icon-left){
  border: 0px solid;
}

/************************ MULTISELECT ************************/
.filtros-bar .multiselect {
  width: 260px;
  max-width: 260px;
}

.e-multiselect {
  margin: 0 !important;
  height: 28px;
  border: 1px solid #dee1e6 !important;
  border-radius: 4px !important;
  padding-left: 12px;
  padding-right: 9px;
  align-items: center;
}

/* 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: 12px;
}

.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 {
  color: #212429;
  font-family: Inter;
  font-size: 12px;
}

.e-multi-select-wrapper {
  min-height: 28px;
}

.e-input-group.e-control-wrapper input {
  padding-left: 4px !important;
}

/************************ ETIQUETAS ************************/
.lead-etiqueta-contenedor {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  flex-direction: row;
  gap: 2px;
  width: fit-content;
}

.lead-etiqueta-chip {
  display: flex;
  align-items: center;
  height: 17px;
  border-radius: 16px;
  padding-inline: 8px;
  background: #CAE7FD;
  position: relative;
  cursor: default;
  width: fit-content;
}

.lead-etiqueta-titulo {
  width: 100%;
  height: 13px;
  font-size: 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #0D47A1;
  font-weight: 500;
  line-height: 13px;
}

.lead-etiqueta-icono-eliminar {
  font-size: 12px;
  cursor: pointer;
  border-radius: 6px;
  color: #00838F;
  opacity: 0;
  position: absolute;
  right: 6px;
}

.lead-etiqueta-contenido {
  display: flex;
  align-items: center;
}

.lead-etiqueta-chip-espacio-eliminar:hover {
  color: #00838F;
}

.lead-etiqueta-chip-espacio-eliminar:hover .lead-etiqueta-titulo {
  width: calc(100% - 12px);
}

.lead-etiqueta-chip-espacio-eliminar:hover .lead-etiqueta-icono-eliminar {
  opacity: 1;
  transition: opacity 0.2s;
}

/************************ MODAL ************************/
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: right;
  align-items: right;
  z-index: 9999;
}

.modal .modal-card {
  background-color: #fff;
  border-radius: 4px;
  width: 500px;
  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;
  padding: 0px;
}

.modal .modal-card form {
  gap: 16px;
  height: 100%;
}

.modal .modal-card .modal-header {
  display: flex;
  height: 54px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e8ecef;
  padding-inline: 24px;
  padding-top: 16px;
  padding-bottom: 15px;
}

.modal .modal-card .modal-header .modal-titulo {
  font-size: 19px;
  font-weight: 500;
}

.modal .modal-card .modal-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-inline: 24px;
  max-height: 100%;
  overflow-y: auto;
}
.modal .modal-card .modal-body textarea{
  height: 77px !important;
}

.modal .modal-card .modal-footer {
  height: 76px;
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 12px;
  padding-right: 24px;
}

.modal .modal-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}

.generar {
  display: flex;
  align-items: center;
}

.generar-contrasenia {
  margin-left: auto;
  position: relative;
  color: #0556AD;
  cursor: pointer;
}

/************************ MODAL EDITAR ************************/
.modal-editar {
  z-index: 11000;
}

.modal-editar form {
  height: 100%;
}

/************************ MODAL DETALLE ************************/
.modal-detalle .modal-card {
  padding: 24px 24px 24px 24px;
  width: 508px;
  border-radius: 0px;
  height: 100%;
}

.modal-detalle .modal-card .header-modal-detalle {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 0px;
}

.modal-detalle .modal-card .header-modal-detalle i {
  margin-left: auto;
  position: relative;
}

.modal-detalle .modal-card .header-modal-detalle .titulo {
  font-weight: 600;
  font-size: 16px;
}

.modal-detalle .modal-card .navbar {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: 8px;
  max-height: 30px;
}

.modal-detalle .modal-card table .contrasenia {
  word-wrap: break-word;
  max-width: 280px;

}

.modal-detalle .icon-ol-copiar {
  cursor: pointer;
}

.auditoria table {
  width: 250px;
}

.auditoria table td {
  padding-inline: 15px;
  padding-top: 2px;
  padding-bottom: 0px;
  font-size: 12px;
  font-weight: 600;
  color: #6C757E;
}

.auditoria table th {
  padding-top: 2px;
  padding-bottom: 0px;
  font-size: 12px;
  font-weight: 400;
  color: #6C757E;
  text-align: left;
}

.auditoria table tr td:first-child {
  padding-left: 0px;
}

.auditoria table tr {
  border-bottom: 0px solid;
}

.auditoria table tr:hover {
  background-color: #fff;
}

.auditoria table .actualizacion {
  border-left: 1px solid #DEE1E6;
  padding-left: 15px;
}

.modal-detalle .modal-card .navbar .herramientas {
  margin: 0px;
  margin-left: auto;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2px;
  height: 30px;
}

.modal-detalle .modal-card .navbar .herramientas i {
  color: #0556AD;
  font-size: 16px;
}

.modal-detalle .modal-card .navbar .herramientas .iconoBoton {
  padding: 4px;
  border-radius: 4px;
}

.modal-detalle .modal-card .navbar .herramientas .iconoBoton:hover {
  background-color: #E3F2FD;
  transition: background-color 0.3s ease;
}

.modal-detalle .modal-card .navbar .auditoria {
  margin: 0px;
}

.modal-detalle .modal-card .datos-generales th {
  width: 147px;
  font-size: 12px;
  font-weight: 400;
  color: #6C757E;
  text-align: left;
}

.modal-detalle .modal-card .datos-generales table {
  width: 100%;
  border-collapse: collapse;
}

.modal-detalle .modal-card .datos-generales table tr th:first-child {
  padding-left: 8px;
}

.modal-detalle .modal-card .datos-generales table td {
  max-width: 100px;
  overflow: visible;
  white-space: normal;
  max-height: 90px;
  word-wrap: break-word;
}

.modal-detalle .modal-card .datos-generales table th {
  height: 32px;
}

.modal-detalle .modal-card .datos-generales tr:first-child {
  width: 465px;
  font-size: 12px;
  font-weight: 500;
}

.modal-detalle .modal-card .datos-generales tr td:last-child {
  width: 24px;
  padding-inline: 4px;
  padding-block: 8px;
  display: table-cell;
  text-align: center;
  min-width: 24px;
}

.modal-detalle .modal-card .datos-generales tr .ver-contrasenia {
  width: 24px;
  min-width: 24px;
  padding-inline: 4px;
  padding-block: 8px;
  display: table-cell;
  text-align: center;
}

.modal-detalle .modal-card .titulo-div {
  font-size: 12px;
  font-weight: 600;
}

.modal-detalle .modal-card div {
  margin-block: 24px;
}

.modal-detalle .modal-card .etiquetas {
  border-bottom: 1px solid #DEE1E6;
}

.modal-detalle .modal-card .etiquetas .lead-etiqueta-contenedor {
  margin: 0px;
  margin-bottom: 16px;
  margin-top: 4px;
  height: fit-content;
}
.modal-detalle .modal-card .etiquetas .lead-etiqueta-contenedor .lead-etiqueta-chip {
  margin-block: 0px;
  margin-top: 4px !important;
}

.modal-detalle .modal-card .etiquetas .lead-etiqueta-contenedor .lead-etiqueta-chip .lead-etiqueta-titulo{
  margin: 0px;
}

.modal-detalle .modal-card .compartido tr td:first-child {
  width: 32px;
}

.modal-detalle .modal-card .compartido tr th:first-child {
  width: 32px;
}

.modal-detalle .modal-card .compartido {
  gap: 8px;
}

.modal-detalle .datos-generales table tr td {
  padding: 8px;
  padding-top: 7px;
  padding-bottom: 7px;
}

.modal-detalle .compartido table tr td {
  padding: 8px;
  padding-top: 7px;
  padding-bottom: 7px;
}

.modal-detalle .compartido table tr th {
  padding-left: 8px;
}

.modal-detalle .compartido table {
  width: 100%;
  max-height: 100%;
  overflow: auto;
}

.modal-detalle .compartido{
  height: calc(100% - 440px);
  overflow: auto;
  margin-block: 0px !important;
  margin-top: 8px !important;
}

.modal-detalle .compartido table .no-compartido{
  padding-top: 15px;
  text-align: center;
}

/************************ MODAL COMPARTIDO ************************/
.modal-compartido .modal-card {
  width: 460px;
  border-radius: 4px;
}

.modal-compartido .modal-card .header-modal-compartido {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 0px;
}

.modal-compartido .modal-card .header-modal-compartido i {
  margin-left: auto;
  position: relative;
}

.modal-compartido .modal-card .header-modal-compartido .titulo {
  font-weight: 600;
  font-size: 16px;
}


.modal-compartido .modal-card .compartido tr td:first-child {
  width: 32px;
}

.modal-compartido .modal-card .compartido {
  gap: 8px;
}

.modal-compartido .compartido table {
  width: 410px;
}

.modal-compartido .compartido table tr td {
  padding: 8px;
  padding-top: 7px;
  padding-bottom: 7px;
}



/******************************************************************/
/************************ USUARIOS GESTOR ************************/
/******************************************************************/

.app-usuarios {
  left: 220px;
  position: relative;
  padding: 16px;
  box-sizing: border-box;
  width: calc(100% - 220px);
}

.app-usuarios i {
  cursor: pointer;
}

.col-opciones {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.check-actualizar{
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 4px;
}

.label-checkbox{
  margin-bottom: 0px;
}

/******************************************************************/
/************************ ICONOS ************************/
/******************************************************************/
.icon-ol-enlace {
  color: #A3ACB2;
  font-size: 16px;
}

.icon-ol-enlace-enviado {
  color: #A3ACB2;
  font-size: 16px;
}

.icon-ol-compartir {
  color: #0556AD;
  font-size: 16px;
  cursor: pointer;
}

.icon-ol-compartido {
  color: #A3ACB2;
  font-size: 16px;
  cursor: pointer;
}

.icon-ol-editar {
  color: #0556AD;
  font-size: 16px;
}

.icon-ol-agregar {
  color: #0556AD;
  font-size: 16px;
}

.icon-ol-eliminar {
  color: #6C757E;
  font-size: 16px;
}

.icon-ol-copiar {
  color: #6C757E;
  font-size: 16px;
  cursor: pointer;
}

.icon-ol-sincronizar {
  color: #6C757E;
  font-size: 16px;
  cursor: pointer;
}

.icon-ol-visualizacion-abierta {
  color: #A3ACB2;
  font-size: 16px;
  cursor: pointer;
}

.icon-ol-visualizacion-cerrada {
  color: #A3ACB2;
  font-size: 16px;
  cursor: pointer;
}

.icon-ol-grupo-filled {
  color: #6C757E;
  font-size: 16px;
}

.icon-ol-usuario-filled {
  color: #6C757E;
  font-size: 16px;
}

.icon-ol-cerrar {
  cursor: pointer;
}

.icon-ol-limpiar {
  color: #0556AD;
}

.icon-ol-calendario {
  color: #6C757E;
  font-size: 16px;
  pointer-events: none;
}

.icon-ol-angulo-izquierdo {
  color: #0556AD;
  font-size: 12px;
  margin-right: 4px;
}

.icono-deshabilitado {
  color: #A3ACB2;
  cursor: not-allowed !important;
}

/************************ MODAL ELIMINAR USUARIOS ************************/
.modal-editar {
  z-index: 11000;
}

/************************ MODAL ELIMINAR ************************/
.modal-eliminar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.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: 200px;
}

.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 AGREGAR GRUPO ************************/

.modal-agregar-grupo {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal-agregar-grupo .modal-card .modal-body {
  min-height: 50px;
}

.modal-historico .modal-card {
  z-index: 11000;
  width: 600px;
  border-radius: 0px;
}

.modal-historico .modal-card .modal-body{
  height: calc(100vh - 54px);
  overflow-y: auto;
}

.modal-historico .modal-card .tabla-busqueda {
  width: 550px;
  max-width: 550px;
}

.modal-historico .modal-card .tabla-busqueda thead th {
  padding-inline: 8px;
}

.modal-historico .modal-card table .contrasenia {
  word-wrap: break-word;
  max-width: 280px;

}

/******************************************************************/
/************************ CAMBIAR CONTRASEÑA ************************/
/******************************************************************/
.cambiar-contrasenia {
  max-width: 500px;
}

.boton-izquierda {
  margin-top: 20px;
  justify-content: start !important;
  align-items: start !important;
}

.boton-izquierda .boton-primario {
  width: 246px;
}

/******************************************************************/
/******************** CARGA MASIVA CONTRASEÑAS ********************/
/******************************************************************/

.carga-masiva textarea{
  height: 100%;
  max-height: 100%;
}

.carga-masiva-app .encabezado{
  margin-bottom: 4px;
}

/************************ MODAL COMPARTIR ************************/
.tabla {
  width: 100%;
}

.modal-compartir {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal-compartir .modal-card {
  width: 600px;
  height: 500px;
  border-radius: 4px;
}

.modal .filtros-bar {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
}
.encabezado .filtros-bar .icon-ol-buscar{
  cursor: pointer;
}

.modal .filtros-bar .buscar {
  height: 28px;
  width: 100%;
  border: 1px #DEE1E6 solid;
  border-radius: 4px;
  padding-inline: 12px;
}

.modal .filtros-bar .compartido {
  gap: 8px;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.modal .filtros-bar .compartido label {
  margin-bottom: 0px;
}

.modal .filtros-bar .compartido select {
  width: 180px;
  height: 28px;
  border: 1px #DEE1E6 solid;
  border-radius: 4px;
  background-color: white;
  padding-inline: 12px;
}

.modal .filtros-bar .compartido label {
  font-weight: 400;
  color: #6C757E;
}
.modal-compartir .modal-card .contenedor-tabla {
  max-height: 300px;
  height: 300px;
  overflow-y: auto;
}

.modal-compartir table tbody tr td:first-child {
  width: 32px;
}

.modal-compartir table tbody tr td:last-child {
  width: 32px;
}

.modal-compartir table tr {
  height: 32px;
}

.modal-compartir table tr td {
  height: 32px;
  padding-top: 0px;
  padding-bottom: 0px;
}
.modal-compartir table tr th {
  padding-inline: 8px;
}

/************************ MODAL AGREGAR INTEGRANTES************************/
.modal-editar-integrantes {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal-editar-integrantes .modal-card {
  width: 600px;
  height: 500px;
  border-radius: 4px;
}

.modal-editar-integrantes .modal-card .contenedor-tabla {
  max-height: 225px;
  height: 225px;
  overflow-y: auto;
}

.modal-editar-integrantes .modal-card table thead tr th {
  padding-inline: 8px;
}

.modal-editar-integrantes .modal-card table thead tr th:first-child {
  width: 32px;
}

.modal-editar-integrantes .modal-card table thead tr th:last-child {
  width: 32px;
  padding-right: 40px;
}

/************************ MODAL COMPARTIR LINK ************************/
.modal-compartir-link {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
input[type="date"]::-webkit-calendar-picker-indicator {
  display: block;
  background: #fff;
  width: 20px;
  height: 20px;
  border-width: thin;
}

.modal-compartir-link .boton-primario {
  color: #fff;
}

.modal-compartir-link .modal-card {
  width: 420px;
  height: 300px;
  border-radius: 4px;
}

.modal-compartir-link .modal-card .modal-body {
  gap: 16px;
}

.modal-compartir-link .modal-card .modal-body .input .input-con-icono-contenedor input[type="date"]{
  padding-right: 0px !important;
}
.modal-compartir-link .modal-card .modal-body .input .input-con-icono-contenedor .date{
  pointer-events: none;
}

.modal-compartir-link .modal-card .modal-body .input:last-child div:first-child {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.modal-compartir-link .modal-card .modal-body .input:last-child div:first-child label:last-child {
  margin-left: auto;
  position: relative;
  color: #0556AD;
}

.modal-compartir-link .modal-body{
  overflow-y: visible !important;
}


/************************ MODAL GENERAR CONTRASEÑA ************************/
.modal-generar-contrasenia {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

.modal-generar-contrasenia .modal-card {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 300px;
  border-radius: 4px;
  padding: 0px;
}

.modal-generar-contrasenia .modal-card .modal-body {
  gap: 16px;
  padding: 16px;
}

.modal-generar-contrasenia .modal-card .modal-body .option {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
}

.modal-generar-contrasenia .modal-card .modal-body .option label {
  margin-bottom: 0px;
}

.modal-generar-contrasenia .modal-card .modal-body .sugerencia {
  padding: 0px;
}

.modal-generar-contrasenia .modal-card .modal-body .sugerencia div {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
  font-size: 12;
  font-weight: 500;
}

.modal-generar-contrasenia .modal-card .modal-body .sugerencia div label {
  font-size: 12px;
  font-weight: 500;
  color: #212429;
  max-width: 220px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.modal-generar-contrasenia .modal-card .modal-body .sugerencia .botones {
  margin-left: auto;
  position: relative;
}

.modal-generar-contrasenia .modal-card .modal-header {
  align-items: center;
  justify-content: space-between;
  height: auto;
  padding-inline: 16px;
  padding-top: 12px;
  padding-bottom: 0px;
  border-bottom: 0px solid #e8ecef;
}

.modal-generar-contrasenia .modal-card .modal-header label {
  font-size: 12px;
  font-weight: 500;
}

.modal-generar-contrasenia .modal-card form {
  gap: 0px;
}
.background-generar-contrasenia{
  background-color: transparent !important;
}

form input[type="range"] {
  height: 2px;
  border-radius: 0px;
  background-color: #0556AD;
}

.copiar {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
}

/*****************************************************************/
/************************ CLASES DE VISTA LINK *********************/
/*****************************************************************/
.link-vista {
  height: 100vh;
  padding-top: 8vh;
  padding-bottom: 40vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9vh;
}

.link-vista img {
  height: 32px;
  margin-bottom: 48px;
}

.link-card {
  width: 555px;
  height: 284px;
  margin: 0 auto;
  padding: 32px 32px 16px 32px;
  background: #fff;
  box-shadow: 0px 2px 10px 0px rgba(97, 97, 97, 0.15);
}

.link-card .link-card-titulo {
  text-align: center;
  font-size: 16px;
  margin-bottom: 4px;
  margin-top: 0px;
}

.link-card .link-card-subtitulo {
  text-align: center;
  font-size: 12px;
  font-weight: 400;
  margin-bottom: 24px;
  color: #6C757E;
}

.link-card .link-body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.link-card .link-body .tabla {
  margin-top: 30px;
  margin-bottom: 24px;
}

.link-card .link-body form {
  width: 65%;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 4px;
}

.link-card .link-body form button {
  width: 100%;
}

.link-card .link-body form .input {
  width: 100%;
  margin-bottom: 24px;
}

.link-card .link-body form .link-titulo {
  width: 100%;
  font-weight: 600;
  font-size: 12px;
  color: #353A40;
  margin-bottom: 8px;
}

.link-card .link-body .tabla td {
  padding-block: 7px;
}

.link-card .link-body .tabla th {
  font-weight: 400;
  font-size: 12px;
  text-align: left;
  color: #6C757E;
  width: 88px;
}

.link-card .link-body .tabla .botones-tabla {
  width: 24px;
  min-width: 24px;
}

.link-card .link-body input {
  display: block;
  width: 100%;
  height: 30px;
  border: 1px solid #dee1e6;
  border-radius: 4px;
  padding-inline: 8px;
}

.link-card .link-body input:focus {
  outline: 1px solid #0668d0;
  border: 1px solid #0668d0;
}

.link-card .caducidad {
  color: #6C757E;
  font-weight: 400;
  font-size: 12px;
}

.caducado {
  height: 100vh;
  padding-top: 8vh;
  padding-bottom: 40vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0px;
}

.link-caducado .link-titulo {
  font-size: 16px;
  font-weight: 600;
}

.link-caducado .link-subtitulo {
  font-size: 12px;
  font-weight: 400;
  color: #6C757E;
  margin-bottom: 50px;
}

.link-vista .link-caducado {
  width: 40%;
  align-items: center;
  display: flex;
  flex-direction: column;
}

.link-vista .link-caducado .imagen-link {
  width: 90%;
  height: 90%;
}

/*****************************************************************/
/************************ CLASES MODULO CLIENTES *********************/
/*****************************************************************/

.agregar-cliente {
  margin-top: 30px;
  height: calc(100vh - 120px);
  overflow-y: auto;
  padding-inline: 300px;
}

.titulo-clientes .titulo{
  margin-left: 300px;
}

.agregar-cliente .input {
  margin-top: 8px;
}
.editar-cliente{
  background-color: #6c757e;
  height: calc(100vh - 42px);
}
.editar-cliente form .modal-body{
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 30px;
  margin-top: 2px;
}

.editar-cliente form .modal-body div{
  width: 300px;
}

.editar-cliente form .modal-body div .input{
  margin-top: 10px;
}

.editar-cliente form .modal-body .form-controles{
  margin-top: 10px;
  height: 60px;
  display: flex;
  justify-content: end;
  align-items: end;
  gap: 12px;
  padding-bottom: 24px;
  padding-right: 2px;
}

.editar-cliente .card{
  width: 1000px;
  height: calc(100vh - 70px);
  background-color: #fff;
  padding: 15px;
  border-radius: 5px;
}
.editar-cliente .encabezado{
  background-color: #fff;
  width: 1000px;
}

.contenedor-comentario {
  max-height: 200px;
  overflow-y: auto;
  margin-block: 0px !important;
}

/* Para pantallas de teléfono (máx. 768px de ancho) */
@media screen and (max-width: 768px) {
  .sidebar {
    width: 130px; /* o el ancho que quieras para móviles */
  }
  .app,
  .app-usuarios {
    left: 130px;
  }
  .encabezado .filtros-bar .buscar{
    width: 200px;
  }
  .filtros-bar .multiselect{
    width: 150px;
  }
}

/* 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;
  }
}