@charset "UTF-8";
/**
* ! =========================================================
* ! fa-cm-styles.scss - Estilos base Fuentes Abasolo
* !
* ! Autor: David Murillo | Frontend Developer
* ! Versión: v1.0.0 | Fecha: 17/06/2025
* !
* ! Última Actualización: 12/08/2025 por David Murillo
* ! Changelog:
* ! - [v1.0.0] Versión inicial. Estilos base.
* !
* ! Dependencias:
* !
* !
* !
* ! Notas:
* ! - Este archivo contiene estilos generales para el sitio de Abasolo.
* !
* ! =========================================================
*/
/* ====================================================
*                     SYSTEM STRUCTURE
*
* 0. LIMPIEZA DE ETIQUETAS STYLE
* 1. IMPORTE EL CORE DE ESTILOS CORPORATIVO MERLOS
* 2. ABSTRACTS ESPECÍFICOS DEL PROYECTO
* 3. TEMAS
* 4. LAYOUTS ESPECÍFICOS DEL PROYECTO
* 5. PÁGINAS ESPECÍFICAS DEL PROYECTO
* ====================================================
*/
.fa-bg-login-image {
  background-image: url("/media/images/backgrounds/fa-bg-image.png");
}

.fa-login-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: var(--color-text-primary);
  font-family: var(--font-family-sans-serif);
}
.fa-login-logo__image {
  max-width: 150px;
  height: auto;
  display: block;
}
.fa-login-logo__text {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bolder;
  text-align: center;
  font-size: 2rem;
  color: black;
}

.house-profile {
  background-color: #f5f7fa;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin: 0 auto;
}
.house-profile__header {
  padding: 20px;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #eee;
}
.house-profile__title {
  font-size: 1.4rem;
  color: #2c3e50;
  margin: 0;
}
.house-profile__icon {
  margin-right: 10px;
  color: #2c3e50;
}
.house-profile__actions {
  display: flex;
  gap: 10px;
}
.house-profile__button {
  padding: 8px 16px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}
.house-profile__button--primary {
  background-color: #2c3e50;
  color: white;
}
.house-profile__button--secondary {
  background-color: #ecf0f1;
  color: #2c3e50;
}
.house-profile__content {
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.house-profile__overview {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 20px;
}
@media (max-width: 768px) {
  .house-profile__overview {
    grid-template-columns: 1fr;
  }
}

.house-card {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.house-card__header .house-card__image {
  height: 180px;
  background-size: cover;
  background-position: center center;
  position: relative;
  overflow: hidden;
}
.house-card__header .house-card__image img {
  width: 100%;
  height: auto;
}
.house-card__status {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 500;
}
.house-card__status--occupied {
  background-color: rgba(39, 174, 96, 0.1);
  color: #27ae60;
}
.house-card__status--vacant {
  background-color: rgba(243, 156, 18, 0.1);
  color: #f39c12;
}
.house-card__title {
  padding: 15px 20px 5px;
  font-size: 1.3rem;
  color: #2c3e50;
  margin: 0;
}
.house-card__address {
  padding: 0 20px 15px;
  color: #666;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  margin: 0;
}
.house-card__icon {
  color: #2c3e50;
}
.house-card__details {
  padding: 0 20px 20px;
}
.house-card__detail {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}
.house-card__detail:last-child {
  border-bottom: none;
}
.house-card__label {
  color: #666;
  font-weight: 500;
}
.house-card__value {
  color: #2c3e50;
  font-weight: 600;
}

.house-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}
.house-stats__item {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}
.house-stats__item--primary .house-stats__icon {
  background-color: #2c3e50;
}
.house-stats__item--success .house-stats__icon {
  background-color: #27ae60;
}
.house-stats__item--warning .house-stats__icon {
  background-color: #f39c12;
}
.house-stats__item--info .house-stats__icon {
  background-color: #3498db;
}
.house-stats__icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}
.house-stats__info {
  flex: 1;
}
.house-stats__label {
  font-size: 0.8rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
  margin-bottom: 5px;
}
.house-stats__value {
  font-size: 1.4rem;
  font-weight: 700;
  color: #2c3e50;
}

.house-tabs {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.house-tabs__nav {
  border-bottom: 1px solid #eee;
}
.house-tabs__list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
.house-tabs__item {
  margin-bottom: -1px;
}
.house-tabs__item--active .house-tabs__link {
  color: #2c3e50;
  border-bottom: 3px solid #2c3e50;
}
.house-tabs__link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 15px 20px;
  text-decoration: none;
  color: #666;
  font-weight: 500;
  border-bottom: 3px solid transparent;
  transition: all 0.2s ease;
}
.house-tabs__link:hover {
  color: #2c3e50;
}
.house-tabs__icon {
  font-size: 0.9rem;
}
.house-tabs__content {
  padding: 20px;
}

.house-tab {
  display: none;
}
.house-tab--active {
  display: block;
}

.house-summary {
  margin-top: 30px;
}
.house-summary__card {
  background-color: white;
  padding: 20px;
  max-width: 500px;
}
.house-summary__title {
  margin-bottom: 20px;
  color: #2c3e50;
}
.house-summary__progress {
  height: 30px;
  background-color: #eee;
  border-radius: 15px;
  margin-bottom: 20px;
  overflow: hidden;
}
.house-summary__progress-bar {
  height: 100%;
  background-color: #27ae60;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.8rem;
  font-weight: 500;
}
.house-summary__progress-text {
  padding: 0 10px;
}
.house-summary__details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
.house-summary__detail span {
  display: block;
  font-size: 0.8rem;
  color: #666;
  margin-bottom: 5px;
}
.house-summary__detail strong {
  font-size: 1.1rem;
}
.house-summary__value--danger {
  color: #e74c3c;
}

.condominio {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: #f5f5f5;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.condominio__header {
  background-color: #0d6efd;
  color: white;
  padding: 1rem 0;
}
.condominio__header .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100px;
}
.condominio__title {
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.condominio__subtitle {
  opacity: 0.9;
  margin-bottom: 0;
}
.condominio__main {
  padding: 2rem 0;
  flex-grow: 1;
}
.condominio__footer {
  background-color: #f8f9fa;
  padding: 1rem 0;
  margin-top: auto;
}
.condominio__footer-text {
  color: #6c757d;
  margin-bottom: 0;
  text-align: center;
}

.condominio-search {
  margin-bottom: 1.5rem;
}
.condominio-search__card {
  border: none;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}
.condominio-search__body {
  padding: 1.5rem;
}
.condominio-search__title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.condominio-search__text {
  margin-bottom: 1rem;
}
.condominio-search__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .condominio-search__grid {
    grid-template-columns: 2fr 1fr;
  }
}
.condominio-search__input-group {
  display: flex;
  flex-direction: column;
}
.condominio-search__input {
  padding: 0.5rem 1rem;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  margin-bottom: 0.25rem;
}
.condominio-search__button {
  background-color: #0d6efd;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  cursor: pointer;
}
.condominio-search__select {
  width: 100%;
  padding: 0.5rem 1rem;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
}
.condominio-search__hint {
  color: #6c757d;
  font-size: 0.875rem;
}

.condominio-results__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 992px) {
  .condominio-results__grid {
    grid-template-columns: 3fr 7fr;
  }
}
.condominio-results__profile-col {
  order: 1;
}
@media (min-width: 992px) {
  .condominio-results__profile-col {
    order: 0;
  }
}

.resident-card {
  border: none;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.resident-card__header {
  background-color: #0d6efd;
  color: white;
  padding: 1rem;
  font-weight: 600;
}
.resident-card__body {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.resident-card__image-container {
  text-align: center;
  margin-bottom: 1.5rem;
}
.resident-card__image-placeholder {
  width: 100%;
  height: 180px;
  background-color: #e9ecef;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  color: #6c757d;
  font-size: 3rem;
  margin-bottom: 0.5rem;
}
.resident-card__image-button {
  background: none;
  border: 1px solid #0d6efd;
  color: #0d6efd;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.875rem;
  cursor: pointer;
}
.resident-card__id {
  color: #0d6efd;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}
.resident-card__name {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.resident-card__info-list {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}
.resident-card__info-item {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.resident-card__info-label {
  font-weight: 500;
  color: #6c757d;
}
.resident-card__info-value {
  font-weight: 400;
}
.resident-card__info-badge {
  background-color: #198754;
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 500;
}
.resident-card__actions {
  display: grid;
  gap: 0.75rem;
  margin-top: auto;
}
.resident-card__action {
  padding: 0.5rem;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
}
.resident-card__action--primary {
  background-color: #0d6efd;
  color: white;
  border: none;
}
.resident-card__action--secondary {
  background: none;
  border: 1px solid #6c757d;
  color: #6c757d;
}

.resident-info {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
}
.resident-info__header {
  background-color: #0d6efd;
  color: white;
  padding: 1rem;
  font-weight: 600;
}
.resident-info__body {
  padding: 1.5rem;
  flex-grow: 1;
}
.resident-info__tabs {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  border-bottom: 2px solid #dee2e6;
}
.resident-info__tab-item {
  margin-right: 0.5rem;
}
.resident-info__tab-link {
  padding: 0.75rem 1.25rem;
  background: none;
  border: none;
  color: #6c757d;
  font-weight: 500;
  cursor: pointer;
  position: relative;
}
.resident-info__tab-link:hover {
  color: #0d6efd;
}
.resident-info__tab-link--active {
  color: #0d6efd;
  font-weight: 600;
}
.resident-info__tab-link--active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 3px;
  background-color: #0d6efd;
}
.resident-info__table-container {
  overflow-x: auto;
}
.resident-info__table {
  width: 100%;
  border-collapse: collapse;
}
.resident-info__table th {
  background-color: #f8f9fa;
  color: #6c757d;
  font-weight: 600;
  padding: 0.75rem;
  text-align: left;
}
.resident-info__table td {
  padding: 0.75rem;
  border-bottom: 1px solid #dee2e6;
  vertical-align: middle;
}
.resident-info__badge {
  background-color: #198754;
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 500;
}
.resident-info__button {
  background: none;
  border: 1px solid #0d6efd;
  color: #0d6efd;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.875rem;
  cursor: pointer;
}
.resident-info__alert {
  padding: 0.75rem 1rem;
  border-radius: 4px;
  margin-top: 1rem;
  font-size: 0.875rem;
}

@media (max-width: 991px) {
  .condominio-results__grid {
    grid-template-columns: 1fr;
  }
  .resident-card,
  .resident-info {
    margin-bottom: 1.5rem;
  }
}
.pleca-textos {
  background-color: #7fb73c !important;
}

.selection .select2-selection__rendered {
  height: 40px !important;
}
.selection .select2-selection__clear {
  display: none !important;
}

:root {
  --primary-color: #2c3e50;
  --secondary-color: #3498db;
  --accent-color: #e74c3c;
  --light-color: #ecf0f1;
  --dark-color: #34495e;
  --success-color: #27ae60;
  --warning-color: #f39c12;
}

body {
  background-color: #f5f7fa;
  color: var(--dark-color);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.header {
  background: var(--primary-color);
  color: white;
  padding: 2rem 1rem;
  margin-bottom: 1.5rem;
}

.house-badge {
  background: #7fb73c;
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: bold;
  text-align: center;
}

.resident-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.resident-card .image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: auto;
  overflow: hidden;
}
.resident-card .pet-photo {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  border: 2px solid #7fb73c;
}
.resident-card .tab-content {
  width: 100%;
}
.resident-card ul li.nav-item {
  width: 100%;
  display: block;
}
.resident-card ul li.nav-item button {
  width: 100%;
  display: block;
}
.resident-card .nav-tabs .nav-link {
  width: 100%;
  color: #7f8c8d;
  font-weight: 500;
  border: none;
  padding: 0.8rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.resident-card .nav-tabs .nav-link:hover {
  color: #7fb73c !important;
}
.resident-card .nav-tabs .nav-link.active {
  color: #7fb73c;
  background: transparent;
  border-bottom: 3px solid #7fb73c;
  margin-bottom: 10px;
  width: 100%;
  display: block;
}
.resident-card .nav-tabs .nav-link:hover:not(.active) {
  color: #7fb73c;
}

.info-group {
  margin-bottom: 1rem;
  display: flex;
  flex-wrap: wrap;
}

.info-label {
  font-size: 0.85rem;
  color: #7f8c8d;
  width: 120px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.info-value {
  font-weight: 500;
  flex: 1;
  min-width: 200px;
}

.contact-item {
  background: #f8f9fa;
  padding: 0.8rem;
  border-radius: 6px;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.contact-icon {
  font-size: 1.2rem;
  color: var(--accent-color);
  width: 30px;
  text-align: center;
}

.parking-badge {
  background: #e8f4fc;
  color: #2980b9;
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  font-size: 0.8rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}

.vehicle-item {
  background: #f8f9fa;
  padding: 0.8rem;
  border-radius: 6px;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.pet-profile {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #f8f9fa;
  padding: 0.8rem;
  border-radius: 8px;
  margin-bottom: 0.8rem;
}

.badge-owner {
  background-color: #d5f5e3;
  color: var(--success-color);
}

.badge-tenant {
  background-color: #fdebd0;
  color: var(--warning-color);
}

.badge-pets {
  background-color: #fadbd8;
  color: var(--accent-color);
}

.badge-emergency {
  background-color: var(--accent-color);
  color: white;
}

@media (max-width: 768px) {
  .info-group {
    flex-direction: column;
    gap: 0.2rem;
  }
  .info-label {
    width: 100%;
  }
  .nav-tabs .nav-link {
    padding: 0.6rem 0.8rem;
    font-size: 0.9rem;
  }
}
.text-right {
  text-align: right !important;
}

.text-left {
  text-align: left !important;
}

.text-center {
  text-align: center !important;
}

.requerido {
  color: red;
}

.select2-selection__choice {
  background: #0665d0 !important;
  border-color: #0665d0 !important;
  color: white !important;
}

.modal div.modal-dialog div.modal-content div.modal-body div span {
  display: block;
  width: 100%;
  text-align: center;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  color: white !important;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  margin-right: 10px;
}

#overlay {
  position: fixed;
  top: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  display: none;
  background: rgba(0, 0, 0, 0.6);
}

.cv-spinner {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px #ddd solid;
  border-top: 4px #2e93e6 solid;
  border-radius: 50%;
  animation: sp-anime 0.8s infinite linear;
}

@keyframes sp-anime {
  100% {
    transform: rotate(360deg);
  }
}
.text-right {
  text-align: right !important;
}

.text-left {
  text-align: left !important;
}

.text-center {
  text-align: center !important;
}

.requerido {
  color: red;
}

.hide {
  display: none !important;
}

.show {
  display: inline !important;
}

.select2-selection__choice {
  background: #0665d0 !important;
  border-color: #0665d0 !important;
  color: white !important;
}

.modal div.modal-dialog div.modal-content div.modal-body div span {
  display: block;
  width: 100%;
  text-align: center;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  color: white !important;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  margin-right: 10px;
}

.nav-tabs-alt .nav-item .show {
  position: relative;
  float: left;
}

.input-uniform {
  height: 40px !important;
  font-size: 14px !important;
  padding: 0.375rem 0.75rem !important;
  line-height: 1.5 !important;
  border-radius: 0.25rem !important;
}

.input-uniform::placeholder {
  color: #6c757d !important;
}

.form-select.input-uniform {
  padding-right: 2.25rem !important;
}

body {
  font-family: "Arimo", "Helvetica Neue", Helvetica, Arial, sans-serif !important;
}

.sidebar-user-info {
  padding: 30px 10px;
  background-color: #2c3e50;
  color: #ecf0f1;
  border-bottom: 1px solid #34495e;
  font-size: 13px;
}

.sidebar-user-info-inner {
  text-align: center;
}

.user-profile {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #ecf0f1;
  margin-bottom: 15px;
}

.user-profile img {
  border: 2px solid #3498db;
  width: 50px;
  height: 50px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.user-profile img:hover {
  transform: scale(1.1);
  border-color: #2980b9;
}

.user-profile span {
  margin-left: 8px;
  text-align: left;
  font-size: 10px;
}

.user-profile span strong {
  display: block;
  font-size: 14px;
  font-weight: bold;
}

.user-profile span strong,
.user-profile span {
  transition: color 0.3s ease;
}

.user-profile:hover span strong,
.user-profile:hover span {
  color: #3498db;
}

.user-links {
  margin-top: 8px;
  padding: 0;
}

.user-links li {
  width: 50%;
  margin-bottom: 8px;
  float: left;
}

.user-links li a {
  color: #ecf0f1;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
  font-size: 12px;
}

.user-links li a:hover {
  color: #3498db;
}

.user-links li a i {
  margin-right: 6px;
  font-size: 12px;
}

.logout-link a {
  color: #e74c3c;
  font-size: 12px;
}

.logout-link a:hover {
  color: #c0392b;
}

.user-profile img {
  border: 2px solid #3498db;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: transform 0.3s ease, border-color 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.user-profile img:hover {
  transform: scale(1.1);
  border-color: #2980b9;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.row-squares {
  align-items: center;
  justify-content: center;
}

.logo-icon {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
  max-width: 200px;
}

.logo-icon img {
  width: 100%;
  height: auto;
}

.form-alta input.datepicker {
  z-index: 0 !important;
}

.form-alta .dark-mode .datepicker {
  background-color: #343a40; /* Color oscuro */
  color: #fff;
  border-color: #6c757d;
}

.form-alta .dark-mode .datepicker table {
  background-color: #343a40;
  color: #fff;
}

.form-alta .dark-mode .datepicker td,
.form-alta .dark-mode .datepicker th {
  color: #fff;
}

.form-alta .dark-mode .datepicker .day:hover,
.form-alta .dark-mode .datepicker .focused {
  background-color: #495057;
}

#btnAgregarSolicitud {
  max-width: 200px;
  margin: 0 auto;
}

.select2-container .select2-selection--single {
  display: inline-block;
  height: auto;
  line-height: 40px !important;
  width: 100%;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  line-height: 40px !important;
  height: 40px;
  width: 40px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 40px !important;
}

.smini-hidden {
  font-size: 14px;
}

.select-w-x span span span span span.select2-selection__clear {
  display: none !important;
}

ul.nav-tabs-abasolo {
  width: 100%;
  border-bottom: 2px solid #7f8c8d;
}
ul.nav-tabs-abasolo li button {
  font-weight: 400;
}
ul.nav-tabs-abasolo li button.nav-link {
  background-color: transparent !important;
  color: #7f8c8d !important;
}
ul.nav-tabs-abasolo li button:hover {
  background-color: lightgray !important;
}
ul.nav-tabs-abasolo li button.active {
  background: #7fb73c !important;
  color: white !important;
}
ul.pagination .page-link.active,
ul.pagination .active > .page-link {
  background: #7fb73c !important;
  border: 1px solid #7f8c8d !important;
}

.house-badge i {
  width: 100%;
  display: block;
  text-align: center;
}

.btn-primary-fa {
  background-color: #f8f9fc !important;
  border: 1px solid #7f8c8d !important;
  color: #7f8c8d !important;
  font-weight: 400;
}
.btn-primary-fa:hover {
  background: #7fb73c !important;
  border: 1px solid #7f8c8d !important;
  font-weight: 400;
  color: white !important;
}

.fa-green-text {
  color: #7f8c8d !important;
  font-weight: 400 !important;
  font-size: 16px;
}

.block.block-themed > .block-header {
  background: #7fb73c !important;
}

.select2-container--default.select2-container--open .select2-selection--single {
  border-color: #7fb73c;
  box-shadow: inherit;
  outline: 0;
}

.select2-container--default.select2-container--open .select2-selection--single {
  border-color: #7fb73c;
  box-shadow: inherit;
  outline: 0;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #7fb73c !important;
  color: white;
}