/* BG-DARK ALKIRA */
.bg-alkira {
  --bg-opacity: 1;
  background-color: rgba(var(--alkira-rgb), var(--bg-opacity)) !important;
}

/* SIDEBAR ALKIRA */
.sidebar-alkira {
   --sidebar-bg: var(--alkira);
   --sidebar-color: #fff;
   --sidebar-border-color: transparent;
   color-scheme: dark
}

/* TEL INPUT */
.iti {
    width: 100%;
}

/* VH-80 */
.vh-80 {
   height: 80vh !important
}

/* CIFRA 18 */
.cifra-18 {
  font-size: 18px;
  height: 40px !important;
}

/* SELECT2 DE PREFIJO TELEFONO */
.select2-dropdown-full {
    width: 100% !important;
}

/* DATATABLE FOOTER */
@media (max-width: 576px) {
  .datatable-footer {
    flex-direction: column;      /* apila info y paginación */
    align-items: center;         /* centra horizontalmente */
    text-align: center;
  }

  .datatable-footer .dataTables_paginate {
    justify-content: center;     /* centra los botones */
    display: flex;               /* por si no viene flex */
    margin-top: .8rem;
  }

  .datatable-footer .dataTables_info {
    margin-bottom: .25rem;
  }
}

/* TABS CUSTOM*/
body:not([data-bs-theme="dark"]) .nav-link.active i.text-body {
	color: #fff !important;
}
@media (max-width: 768px) {
	.nav-tabs.nav-justified {
		flex-direction: column;
		align-items: stretch; /* asegura que los <li> ocupen todo el ancho */
		justify-content: flex-start !important; /* evita centrado */
		text-align: left; /* aplica a los textos dentro */
	}

	.nav-tabs.nav-justified .nav-item {
		width: 100%;
		margin-right: 0 !important;
		margin-bottom: 0;
	}

	.nav-tabs.nav-justified .nav-link {
		width: 100%;
		text-align: left !important; /* asegura el alineado del texto e ícono */
		justify-content: flex-start !important; /* fuerza al ícono y texto al inicio */
		display: flex; /* mantiene el ícono y texto alineados horizontalmente */
		align-items: center;
	}
}

/* SWEET ALERT CUSTOM */
.swal-modal-fix{
	margin-top: 7.75rem;
}

/* BACKDROP FAKE */
.modal-backdrop-fake {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: #000;
  opacity: 0;            /* Empieza invisible */
  z-index: 1040;
  pointer-events: none;
  border-radius: inherit;
  transition: opacity 0.3s ease;  /* Transición suave */
}

.modal-backdrop-fake.show {
  opacity: 0.9;          /* Cuando tenga clase show, opacidad 0.5 */
}

/* CARDS DISABLED */
.card.disabled {
	pointer-events: none;
	opacity: .55;
	cursor: not-allowed !important;
}

