:root {
  --custom-color: #322b7c;
  --custom-color-hover: rgba(36, 31, 89, 0.8); /* para hover si quieres */
  --custom-color-10: rgba(36, 31, 89, 0.1);   /* para outline hover */
  --custom-color-20: rgba(36, 31, 89, 0.2);   /* opcional */
  --yellowTH: #FFCB05;
  --yellowTH-hover: rgba(255, 203, 5, 0.8);
  --yellowTH-10: rgba(255, 203, 5, 0.1);
  --yellowTH-90: rgba(255, 203, 5, 0.9);
}


#logoQR,
#logoQR2 {
  width: 100%;
  max-height: 100px;
  max-width: 250px;
}

#preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 9999;
  overflow: hidden;
  background-color: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #322b7c;
  border-top-color: #e7e4fe;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.bg-label-purple {
  background-color: #ddc9fc !important;
  color: #6500d1 !important;
}
.text-purple {
  --bs-text-opacity: 1;
  color: rgb(101, 0, 209) !important;
}

@media (min-width: 1200px) {
  .modal-xl {
      max-width: 1450px;
  }
}
.bg-bluerow {
  --bs-bg-opacity: 1;
  background-color: rgba(225, 233, 255, 0.3) !important;
}
.reservation-card {
  opacity: 0.95;
  transition: all 0.2s ease-in-out;
  z-index: 10;
}
.reservation-card2 {
  opacity: 0.45;
  transition: all 0.2s ease-in-out;
  z-index: 5;
}
.reservation-card:hover {
  opacity: 1;
  background-color: #0d6efd;
}
#roomsFeed {
  position: relative;
}


.btn-custom {
  background-color: var(--custom-color);
  color: white;
  border: 1px solid var(--custom-color);
}

.btn-custom:hover,
.btn-custom:focus,
.btn-custom:active {
  background-color: var(--custom-color-hover);
  color: white;
  border-color: var(--custom-color);
}
.btn-outline-custom {
  background-color: transparent;
  color: var(--custom-color);
  border: 1px solid var(--custom-color);
}

.btn-outline-custom:hover,
.btn-outline-custom:focus,
.btn-outline-custom:active {
  background-color: var(--custom-color);
  color: var(--yellowTH);
  border-color: var(--custom-color);
}
.text-custom {
color: var(--custom-color) !important;
}

.border-custom {
  border-color: var(--custom-color) !important;
}

.btn-yellowTH {
background-color: var(--yellowTH);
color: #322b7c;
border: 1px solid var(--yellowTH);
}

.btn-yellowTH:hover,
.btn-yellowTH:focus,
.btn-yellowTH:active {
background-color: var(--yellowTH-hover);
color: black;
border-color: var(--yellowTH);
}
.btn-outline-yellowTH {
background-color: transparent;
color: var(--yellowTH);
border: 1px solid var(--yellowTH);
}

.btn-outline-yellowTH:hover,
.btn-outline-yellowTH:focus,
.btn-outline-yellowTH:active {
background-color: var(--yellowTH-10);
color: var(--yellowTH);
border-color: var(--yellowTH);
}
.text-yellowTH {
color: var(--yellowTH) !important;
}
/* pro */
.form-check-input:checked {
background-color:  var(--custom-color);
border-color: var(--custom-color);
box-shadow: 0 .125rem .25rem 0 rgba(105, 108, 255, .4);
}
.nav-pills .nav-link.active, .nav-pills .nav-link.active:hover, .nav-pills .nav-link.active:focus {
background-color: var(--yellowTH) ;
color: var(--custom-color );
}
.bg-label-yellowTH {
  background-color: var(--yellowTH-90) !important;
  color: var(--custom-color) !important;
}
.confirmation-card {
  max-width: 600px;
  margin: 40px auto;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.confirmation-header {
  color: white;
  padding: 20px;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
}
.confirmation-body {
  padding: 30px;
}
.info-box {
  background-color: #f5f7ff;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
}
.info-icon {
  font-size: 1.5rem;
  color: #241F59;
}
.footer-buttons {
  background-color: #f8f9fa;
  padding: 20px;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  text-align: center;
}
.bg-custom{
  background-color: #241F59;
}