:root {
  /* --checkrh-primary: #075e54; */
  --checkrh-primary: #009879;
  --checkrh-primary-dark: #007f63;
  --checkrh-primary-disabled: rgb(181, 181, 181);
  /* --checkrh-primary-hover: #1b9447; */
  --checkrh-primary-hover: #00a67e;
  /* --checkrh-secondary: #25d366; */
  --checkrh-secondary: #00c292;
  --checkrh-primary-cards: #ced4da;
  --checkrh-white: #fff;
  --checkrh-bg-white: #fefefe;
  --checkrh-full-white: #ffffff;
  --checkrh-colapse: #0c6b5c;
  --checkrh-modal: #246c63;
  --color-primario: #009879; /* verde principal */
  --color-primario-oscuro: #007f63; /* hover y bordes */
  /* --color-secundario: #00c292; acento */
  --color-texto: #ffffff;
  --color-fondo: #f4f6f8; /* gris suave */
  --color-hover: #00a67e;
  --checkrh-panel-primary: #0b8a5f;
  --checkrh-diamond: #5cb3ff;
}

body {
  background-color: #f0f2f5;
  color: #1c1c1e;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

/* Menú lateral */
#menuLateral,
.menuMobile,
.menuMobile .offcanvas.offcanvas-start {
  /* background-color: var(--checkrh-primary) !important; */
  background-color: var(--checkrh-panel-primary);
  color: white !important;
}

.nav-link {
  color: white;
  font-size: 0.95rem;
  padding: 8px 12px;
  border-radius: 4px;
  transition: background-color 0.2s ease-in-out;
}

.nav-link:hover {
  background-color: transparent;
  color: var(--checkrh-white) !important;
  border-radius: 0.75rem;
}

.nav-link.active {
  /* background-color: transparent; */
  /* background-color: var(--color-secundario);
  color: var(--checkrh-white) !important;
  border-left: 4px solid #fff;
  font-weight: bold; */
  background: var(--checkrh-bg-white);
  border-radius: 0.75rem;
  color: #1e293b;
}

.nav-link:hover {
  background-color: var(--checkrh-primary-hover);
  transition: background 0.2s ease-in-out;
}

.accordion-button {
  background-color: var(--checkrh-panel-primary);
  color: white;
  font-size: 0.95rem;
  box-shadow: none;
  border: none;
  padding: 0.6rem 0.75rem;
}

.accordion-button:not(.collapsed) {
  background-color: var(--checkrh-panel-primary);
  color: white;
  box-shadow: none;
}

.accordion-button::after {
  filter: invert(1);
}

.accordion-body,
.accordion-collapse {
  background-color: var(--checkrh-panel-primary);
  padding: 0.5rem 1rem;
}

#adminMenu .accordion-item {
  background-color: var(--checkrh-panel-primary);
  margin-top: -0.7rem;
}

.nav-section__title {
  font-size: 0.75rem;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.5rem 0.75rem;
}

.btn-primary,
.btn-primary:focus-visible,
.btn-primary:active {
  background-color: var(--checkrh-secondary) !important;
  border-color: var(--checkrh-secondary) !important;
}

.btn-primary:hover {
  background-color: var(--checkrh-primary-hover) !important;
  border-color: var(--checkrh-primary-hover) !important;
}

.btn-primary:disabled {
  background-color: var(--checkrh-primary-disabled);
  border-color: var(--checkrh-primary-disabled);
  cursor: not-allowed;
}

.card,
.modal-content {
  background-color: var(--checkrh-full-white);
  border: 1px solid var(--checkrh-primary-cards);
  border-radius: 8px;
}

.table thead {
  background-color: #dcf8c6;
}

.modal-header {
  border-bottom: 1px solid var(--checkrh-primary-cards);
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  z-index: 1055;
  border-bottom: 1px solid #e9ecef;
}

.list-group-item strong {
  color: var(--checkrh-primary);
  font-weight: 600;
}

/* Header superior */
header {
  background-color: var(--checkrh-full-white);
  border-bottom: 1px solid var(--checkrh-primary-cards);
}

header a {
  color: #1c1c1e;
  text-decoration: none;
}

header a:hover {
  color: var(--checkrh-primary);
}

/* Estilo para menú desplegable en d-flex align-items-center gap-3 */
.menu-top-container {
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--checkrh-full-white);
  border-bottom: 1px solid var(--checkrh-primary-cards);
}

.menu-top-container .dropdown-menu {
  border-radius: 8px;
  border: 1px solid #ccc;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.dropdown-divider {
  background-color: #f1f1f1;
  height: 1px;
}
.menu-top-container .dropdown-item:hover {
  background-color: #f1f1f1;
  color: var(--checkrh-primary);
}

.menu-top-container .form-control {
  width: 250px;
}

.menu-top-container .btn-icon {
  background: none;
  border: none;
  color: #333;
  font-size: 1.2rem;
}

.menu-top-container .btn-icon:hover {
  color: var(--checkrh-primary);
  cursor: pointer;
}

/* Centrado y tamaño del formulario */
.card {
  border-radius: 10px;
  border: 1px solid var(--checkrh-primary-cards);
  background-color: var(--checkrh-full-white);
}

/* Etiquetas del formulario */
.card .form-label {
  font-weight: 500;
  color: #333;
}

.form-label {
  margin-bottom: 0;
}

/* Campos compactos y homogéneos */
.card .form-control,
.card .form-select {
  border-radius: 9px;
  font-size: 0.9rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  background-color: var(--checkrh-white);
}

/* Botón */
.card button[type="submit"] {
  min-width: 120px;
}

/* Responsive mejorado para pantallas pequeñas */
@media (max-width: 576px) {
  .card {
    padding: 1rem;
  }

  .form-control,
  .form-select {
    font-size: 0.85rem;
  }
}

/* Mejora del placeholder */
.card .form-control::placeholder {
  color: #aaa;
}

.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-toggler {
  border: 0;
}

.menuMobile .btn-outline-secondary {
  border: 1px solid white;
  color: white;
}

.menuMobile__user button {
  outline: 0;
  border: 0;
  background-color: transparent;
  color: white;
}

.menuMobile__user span {
  display: none;
}

.menuMobile__user .dropdown-menu[data-bs-popper] {
  left: -132px;
  right: 0;
}

.menuMobile__config .dropdown-menu[data-bs-popper] {
  left: -132px;
  right: 0;
}

.empresaSeleccionadaMobile span {
  color: white !important;
  font-size: small !important;
}

.empresaSeleccionadaMobile button {
  background-color: transparent;
  border: 0;
  color: white;
}

main {
  max-width: 100%;
  overflow-x: auto;
  height: 100vh;
  background-color: var(--checkrh-full-white);
}

:root {
  --bs-body-font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  --bs-body-bg: #f6f7fb;
  --bs-body-color: #1b1f24;

  --bs-primary: #3b82f6;
  --bs-primary-rgb: 59, 130, 246;
  --bs-secondary: #64748b;
  --bs-success: #10b981;
  --bs-warning: #f59e0b;
  --bs-danger: #ef4444;

  --bs-border-radius: 14px;
  --bs-border-radius-sm: 12px;
  --bs-border-radius-lg: 18px;

  --bs-btn-border-radius: 12px;
  --bs-btn-padding-y: 0.6rem;
  --bs-btn-padding-x: 1rem;

  --bs-card-bg: var(--checkrh-full-white);
  --bs-card-border-color: #eef0f4;
  --bs-card-cap-bg: transparent;
  --bs-link-color: #0f172a;
  --bs-link-hover-color: #334155;
}

.card {
  box-shadow: 0 8px 30px rgba(2, 6, 23, 0.06);
  border: 1px solid #eef0f4;
}
.input-group-text {
  background: var(--checkrh-white);
  border-right: 0;
}

.form-control {
  border-radius: 10px;
  padding: 0.5rem;
}
.form-control:focus {
  box-shadow: 0 0 0 0.2rem rgba(59, 130, 246, 0.15);
  border-color: var(--checkrh-primary);
}

.form-select {
  padding: 0.5rem;
}

.btn-primary {
  box-shadow: 0 6px 16px rgba(59, 130, 246, 0.25);
}

.btn {
  min-height: 40px;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.btn-outline-primary {
  border: 1px solid var(--checkrh-primary) !important;
  color: var(--checkrh-primary) !important;
}

.btn-outline-primary:hover {
  background-color: var(--checkrh-primary);
  border: 1px solid var(--checkrh-primary);
  color: white !important;
}

.btn-outline-primary:active,
.btn-outline-primary:focus-visible {
  background-color: transparent !important;
  border: 1px solid var(--checkrh-primary) !important;
  color: var(--checkrh-primary);
}

table .btn-outline-primary {
  border: 0 !important;
}

#loading {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.6);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.dots-loader {
  display: flex;
  gap: 8px;
}

.dots-loader div {
  width: 10px;
  height: 10px;
  background: var(--checkrh-primary);
  border-radius: 50%;
  animation: bounce 0.6s infinite alternate;
}

.dots-loader div:nth-child(2) {
  animation-delay: 0.2s;
}

.dots-loader div:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes bounce {
  to {
    opacity: 0.3;
    transform: translateY(-6px);
  }
}

.table-checkrh thead {
  background: linear-gradient(90deg, #4e73df, #224abe);
  color: white;
}

.modal-checkrh {
  background-color: var(--checkrh-modal);
  border-radius: 0;
}

.modal-content {
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.table-checkrh__btn {
  border-radius: 50px;
  padding: 4px 12px;
}

.perfil {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.perfil__nombre,
.perfil__empresa {
  font-size: 0.9rem !important;
  margin-left: 0.3rem;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .w-md-50 {
    width: 50% !important;
  }
  .w-md-20 {
    width: 20% !important;
  }

  .w-md-25 {
    width: 25% !important;
  }
}

@media (min-width: 992px) {
  .w-lg-20 {
    width: 20% !important;
  }
  .w-lg-25 {
    width: 25% !important;
  }
  .w-lg-15 {
    width: 15% !important;
  }
}

@media (min-width: 1200px) {
  .w-xl-25 {
    width: 25% !important;
  }
  .w-xl-20 {
    width: 20% !important;
  }
  .w-xl-10 {
    width: 10% !important;
  }
}

@media (min-width: 1400px) {
  .w-2xl-25 {
    width: 25% !important;
  }
  .w-2xl-10 {
    width: 10% !important;
  }
}

@media (min-width: 2560px) {
  .w-uhd-10 {
    width: 10% !important;
  }
  .w-uhd-8 {
    width: 8% !important;
  }
}

/* CARD DE INFO DE ASISTENCIAS */

.leaflet-container .md-popup .leaflet-popup-content-wrapper {
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18), 0 1px 3px rgba(0, 0, 0, 0.12);
  padding: 0;
  overflow: hidden;
  background: #fff;
  border: none;
}

.leaflet-container .md-popup .leaflet-popup-tip {
  background: #fff;
}

.leaflet-container .md-popup .leaflet-popup-content {
  margin: 0 !important;
}

.md-card {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji",
    "Segoe UI Emoji";
}

.md-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid #f0f0f0;
}

.md-card__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #e3f2fd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--checkrh-primary) !important;
}

.md-card__headings {
  min-width: 0;
}

.md-card__title {
  font-weight: 600;
  font-size: 14px;
  color: #111827;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.md-card__subtitle {
  font-size: 12px;
  color: #6b7280;
  display: flex;
  align-items: center;
  gap: 6px;
}

.md-card__body {
  padding: 12px 16px;
  font-size: 12px;
  color: #374151;
  line-height: 1.35;
  padding-bottom: 0;
  display: flex;
  gap: 0.6rem;
}

.md-row {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}

.md-row i {
  margin-top: 2px;
}

.md-card__actions {
  display: flex;
  justify-content: center;
  padding: 10px 12px 12px;
  border-top: 1px solid #f0f0f0;
}

.md-btn {
  border: none;
  background: transparent;
  /* color: #1a73e8; */
  color: var(--checkrh-primary) !important;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.md-btn:hover {
  background: rgba(26, 115, 232, 0.08);
  text-decoration: none;
}

.leaflet-container .md-popup {
  max-width: 320px;
}

.marker-label {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 2px 6px;
  font-size: 12px;
  line-height: 1.2;
  white-space: nowrap;
  pointer-events: none;
}

.version,
.geoemp__grado {
  font-size: small;
  text-align: right;
  margin-top: 2rem;
  color: #b3b3b3;
  font-weight: 500;
}

.nav-tabs .nav-link {
  color: var(--checkrh-secondary);
}

.card-header-tabs .nav-link.active {
  color: var(--checkrh-primary) !important;
}

.icon-maps {
  color: var(--checkrh-primary) !important;
}

.pagination .active > .page-link,
.page-link.active {
  background-color: var(--checkrh-primary);
  border-color: var(--checkrh-secondary);
}

@media (min-width: 992px) {
  .overflow-lg-visible {
    max-height: none;
    overflow: visible !important;
  }
}

/*****************************************************CHECK ASISTENCIA**************************************************/
.checkrh-container {
  padding: 40px 20px;
  text-align: center;
  height: 90vh !important;
  padding-bottom: 10px;
}

.checkrh {
  background-color: var(--checkrh-bg-white);
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.checkrh__title {
  text-align: center;
  font-weight: bolder;
}

.checkrh__description {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.checkrh-footer {
  background-color: #eee;
  padding: 20px;
  text-align: center;
  font-size: 0.9rem;
  color: #666;
  height: 10vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.checkrh-footer__container p {
  margin: 0;
}

.wrapper-sucursal__timezone div {
  margin-bottom: 0 !important;
}

.wrapper-sucursal__ubication {
  font-size: 0.9rem;
  color: var(--checkrh-primary);
  display: inline-flex;
  justify-content: start;
  align-items: center;
}

.wrapper-sucursal__ubication:hover {
  text-decoration: none;
  color: var(--checkrh-secondary);
}

.cursor-pointer {
  cursor: pointer;
  color: var(--checkrh-primary);
}

.w-full {
  width: 100%;
}

option {
  width: 200px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.invalid-feedback {
  font-size: 0.75rem;
  margin-top: 0;
}

:root {
  --row-gap: 6px;
  --radius: 10px;
}

/* Tabla estilo “cards” compacta */
.table-modern {
  border-collapse: separate !important;
  border-spacing: 0 var(--row-gap);
  background: transparent;
}
.table-modern thead th {
  font-weight: 600;
  font-size: 0.86rem;
  color: #475467;
  background: #f8fafc;
  border: none !important;
  position: sticky;
  top: 0;
  z-index: 1;
}
.table-modern tbody tr {
  background: #fff;
  box-shadow: 0 4px 12px rgba(2, 6, 23, 0.06);
}
.table-modern tbody td {
  border: none !important;
  vertical-align: middle;
  padding-top: 0.55rem;
  padding-bottom: 0.55rem;
}
.table-modern tbody td:first-child {
  border-top-left-radius: var(--radius);
  border-bottom-left-radius: var(--radius);
}
.table-modern tbody td:last-child {
  border-top-right-radius: var(--radius);
  border-bottom-right-radius: var(--radius);
}
.table-modern tbody tr:hover {
  box-shadow: 0 8px 20px rgba(2, 6, 23, 0.1);
  transform: translateY(-1px);
  transition: all 0.12s ease;
}

/* Sucursal / Nombre más pequeños */
.cell-stack {
  display: grid;
  gap: 1px;
}
.cell-stack.compact .title {
  font-weight: 600;
  font-size: 0.92rem; /* ↓ más pequeño */
  color: #0f172a;
}
.cell-stack.compact .sub {
  font-size: 0.74rem; /* ↓ más pequeño */
  color: #64748b;
}

/* Texto simple para días */
.day-text {
  font-size: 0.82rem;
  color: #0f172a;
  white-space: nowrap;
}

.btn-edit {
  background-color: var(--checkrh-secondary); /* verde principal */
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.35rem 0.65rem;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.2s ease-in-out;
}

.btn-edit:hover {
  background-color: var(--checkrh-primary); /* verde más oscuro al pasar el mouse */
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0, 152, 121, 0.3);
}

/* Ancho sugerido */
.col-id {
  width: 200px;
}

/* DataTables opcional */
.dataTables_wrapper .dataTables_filter input,
.dataTables_wrapper .dataTables_length select {
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

table.dataTable {
  margin-top: 15px !important;
}

.cell-stack.compact .title {
  font-weight: 400; /* texto normal */
  font-size: 0.9rem; /* un poco más pequeño */
  color: #344054; /* gris oscuro, menos fuerte que el negro */
}

/* Subtexto (si lo usas en sucursales o jornadas) */
.cell-stack.compact .sub {
  font-weight: 400;
  font-size: 0.75rem;
  color: #667085; /* gris medio */
}

.modal-content {
  height: auto;
  max-height: 98vh;
  overflow: auto;
}

@media (width >= 48rem) {
  .modal-content {
    max-height: 75vh;
  }
}

/* .modal-content-auto {
  height: auto !important;
} */
.h-full {
  height: 100%;
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 70vw;
  }
}

.wrapper-sucursal__tipoCheck {
  height: auto;
}

.customRadioButtons {
  box-shadow: 0 8px 30px rgba(2, 6, 23, 0.06);
  border: 1px solid #eef0f4;
  cursor: pointer;
  font-size: small;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  justify-items: center;
}

.customRadioButtons:hover {
  box-shadow: 0 6px 14px rgba(2, 6, 23, 0.06);
  border: 1px solid #eef0f4;
  border-bottom: 2px solid #eef0f4;
  cursor: pointer;
}

.customRadioButtons:checked {
  background-color: var(--checkrh-panel-primary);
}

.btn-check:checked + .customRadioButtons {
  background-color: var(--checkrh-panel-primary);
  color: var(--checkrh-bg-white);
}

.btn-check-facial:checked + .customRadioButtons {
  background-color: #5cb3ff;
  color: var(--checkrh-bg-white);
}

.tipo-check {
  font-size: 4.2rem !important;
}

.form-control,
.form-select {
  background-color: white;
}

.modal-actions {
  position: sticky;
  bottom: 0;
  left: 0;
  right: 0;
  padding-left: 0 !important;
  padding-right: 0 !important;
  background: #fff;
  border-top: 1px solid #e9ecef;
  z-index: 1055;
  border-radius: 0;
}

.action-primary {
  padding: 0.55rem 2rem;
  font-size: 0.95rem;
  font-weight: 600;
  background-color: #009879;
  border-color: #009879;
}

.action-primary:hover {
  filter: brightness(0.95);
}
.action-primary:active {
  filter: brightness(0.9);
}

.action-link {
  padding: 0.55rem 1.25rem;
  font-size: 0.9rem;
  text-decoration: none;
}
.action-link:hover {
  text-decoration: underline;
}

.modal-body {
  padding-bottom: 0;
}

/* En móvil: botones a 100% */
@media (max-width: 576px) {
  .modal-actions .actions-group {
    width: 100%;
    flex-direction: column-reverse;
    align-items: stretch;
    gap: 0.5rem;
  }
  .modal-actions .action-primary,
  .modal-actions .action-link {
    width: 100%;
    text-align: center;
  }
}

.dataTables_empty,
.dataTables_info {
  font-size: small;
}

.dataTables_info {
  font-weight: 500;
}

/* .jconfirm-title-c {
  font-weight: 400;
  display: flex !important;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  padding-top: 2rem;
}

.jconfirm-icon-c i {
  font-size: 4rem;
}

.jconfirm-title {
  font-weight: 600;
  font-size: 1.2rem;
}

.jconfirm-content-pane {
  font-size: 0.8rem;
  text-align: center;
  color: gray;
}

.jconfirm-buttons {
  width: 100%;
}

.jconfirm-buttons button {
  width: 100%;
  padding: 0.55rem 2rem !important;
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  background-color: #009879 !important;
  border-color: #009879 !important;
  color: var(--checkrh-bg-white) !important;
}

.jconfirm-buttons button:hover {
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-hover-bg);
  border-color: var(--bs-btn-hover-border-color);
}

.jconfirm-buttons .btn-default {
  min-height: 40px;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  --bs-text-opacity: 1;
  color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important;
  font-weight: 500 !important;
  padding: 0.55rem 1.25rem;
  font-size: 0.9rem;
  background-color: var(--checkrh-bg-white) !important;
} */

/* .toggle-container.active {
  background: var(--checkrh-panel-primary);
} */

.text-secondary {
  --bs-text-opacity: 1;
  color: gray !important;
}
/* 
.text-black {
  color: black !important;
} */

a.disabled {
  pointer-events: none;
  opacity: 0.6;
  text-decoration: none;
  cursor: not-allowed;
}

.badge-success {
  background-color: var(--checkrh-secondary);
}

.text-green {
  color: rgb(34, 197, 94) !important;
}

.text-warning {
  color: rgb(156, 163, 175) !important;
}

.check-ubicacion {
  background-color: var(--checkrh-secondary);
}

.check-facial {
  background-color: var(--checkrh-diamond);
}

.check-ubicacion,
.check-facial {
  color: var(--checkrh-white);
  font-weight: 500;
}

.line-clamp-2 {
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  word-break: break-word;
  width: 250px;
}
