
body {
  background-color: #fbfdfe;
  min-height: 100vh;
  max-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: 'Lato', sans-serif;
}

input[type="text"],input[type="email"],input[type="tel"] {
  background-color : #ffffff;
}

.wh-bg {
  background-color : #ffffff;
}

/* INDEX BUTTON */

.index-btn:hover {
  transform: scale(1.15);
}

.index-btn {
  margin: 10px;
  transition: transform .2s;
  font-size: x-large;
  color: black;
  background-color: transparent;
  border-color: transparent;
  height: 20%;
}

/* ! INDEX BUTTON */

/* LOGO STYLES */
.logo-index {
  text-align: center;
}
.logo-index>img {
  max-width: 25vh;
  margin-bottom: 2em;
}

.logo-div {
  text-align: center;
}
.logo-div>img {
  max-width: 30svh;
  margin-bottom: 2em;
}

@media (max-width:1024px) {
  /* Ajustar tamaño para celular o tablet */
  .logo-div>img {
      max-width: 50svw;
  }
}

.logo-secondary {
  text-align: center;
  max-width: 40px;
}
/* ! LOGO STYLES */

/* CONTAINERS */

.container-exito {
  justify-content: center;
  align-items: center;
  margin-top: 15vh;
  max-width: 50%;
  border-radius: 10px;
  padding: 15px;
}

.container-select {
  display: flex;
  align-items: center;
}

.card-select {
  width: 50%;
}

.card-select:hover {
  transform: scale(1.15);
}

.input-search {
  margin-bottom: 1%;
}

@media (max-width:700px) {
  /* Ajustar tamaño para celular o tablet */
  .container-select {
      flex-direction: column;
  }
  .vr-select {
    margin-top: 5%;
    margin-bottom: 5%;
  }
  .card-select {
    width: 80%;
  }
}

/* SEGMENTED CONTROL */

.flight-types {
  display: flex;
  max-width: 360px;
  width: 100%;
  position: relative;
  user-select: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  position: relative;
  z-index: 1;
  margin: 0 auto;
  font-size: 12px;
  border: 1px solid #3A90C5;
  border-radius: 3px;
  color: #3A90C5;
}
.flight-types > input {
  display: none;
}
.flight-types > input:checked + label {
  color: white;
}
.flight-types > input:nth-of-type(1):checked ~ label:last-of-type:before {
  transform: translateX(calc(0% + 0px));
}
.flight-types > input:nth-of-type(2):checked ~ label:last-of-type:before {
  transform: translateX(calc(100% + 0px));
}
.flight-types > input:nth-of-type(3):checked ~ label:last-of-type:before {
  transform: translateX(calc(200% + 0px));
}
.flight-types label {
  flex: 1;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer;
}
.flight-types label:last-of-type:before {
  content: "";
  display: block;
  max-width: calc(33.3333333333% - 0px);
  margin: 0px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  transform: translateX(0);
}
.flight-types label {
  padding: 6px 3px;
  transition: color 250ms cubic-bezier(0, 0.95, 0.38, 0.98);
}
.flight-types label:before {
  background: #3A90C5;
  transition: all 250ms cubic-bezier(0, 0.95, 0.38, 0.98);
}
.flight-types label:not(:last-child) {
  border-right: 1px solid #3A90C5;
}

/* ! SEGMENTED CONTROL */

/* UNIQUE CODE BOX */

.otp-input {
  display: inline-block;
  margin-right: 10px;
}

.otp-input input {
  width: 40px;
  height: 40px;
  text-align: center;
  border: 1px solid #ced4da;
  border-radius: 5px;
  background: #D9D9D9;
}

/* ! UNIQUE CODE BOX */

/* BUTTONS */

.kiosko-btn {
  background: linear-gradient(to right, #005379, #002e49);
  color: white;
}

.kiosko-btn:hover {
  color: white;
  background: linear-gradient(to right, #002e49, #005379);
}

.btn-custom {
  background: linear-gradient(to right, #005379, #002e49);
  color: white;
}

.btn-custom:hover {
  background: linear-gradient(to right, #002e49, #005379);
}

.success-btn {
  display: grid;
  width: 100%;
  max-width: 450px;
  margin: auto;
}

/* ! BUTTONS */

/* DESGLOSE */

.desglose-box {
  background: linear-gradient(to top, #ececec, white);
  border-top: 2px solid #000;
  padding: 10px 0;
}

.desglose-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.desglose-x-btn {
  background-color: #005379;
  color: white;
  border-color: #005379;
  border-radius: 50%;
  flex-shrink: 0;
  width: 40px;

  height: 40px;
  font-size: 16px;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

.desglose-x-btn:hover {
  background-color: #c82333;
  border-color: #c82333;
}

.desglose-content .desglose-x-btn {
  margin-left: 120px;
}

.form-control {
  background-color: #f5f5f5;
}

/* ! DESGLOSE */


/* ONBOARDINGS */

.column-blue {
  background: #002E49;
  color: white;
}

.column-white {
  background-color: white;
}

.card-img-logo {
  width: 15rem;
  height: auto;
  padding-bottom: 2em;
}

.btn-onboarding {
  background-color: white;
  color: black;
  border: 1px solid black;
  border-radius: 20px;
  padding: 10px 20px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

.btn-onboarding:hover {
  background-color: black;
  color: white;
}

.btn-onboarding.left-arrow::before {
  content: "\2190";
  /* Unicode arrow left symbol */
  margin-right: 10px;
  /* Adjust spacing as needed */
}

.btn-onboarding.right-arrow::after {
  content: "\2192";
  /* Unicode arrow right symbol */
  margin-left: 10px;
  /* Adjust spacing as needed */
}

.logo-onboarding {
  text-align: center;
  margin-top: 5vh;
}
.logo-onboarding>img {
  max-width: 150px;
  margin-bottom: 2em;
}

@media (max-width: 1000px) {
  .column-white, .column-blue {
      width: 100%;
  }

  .column-white {
      height: 25vh; /* El 25% de la altura de la ventana gráfica */
  }

  .logo-onboarding {
    margin-top: 2vh;
    height: 60%;
  }
}


/* MODALS */
/* Custom CSS to adjust modal width and height */
.custom-modal-dialog {
  max-width: 800px;
}

.custom-modal-content {
  height: 95%;
  overflow-y: auto;
  /* Enable vertical scrolling if content exceeds height */
}

.alert-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5); /* Transparencia negra */
  z-index: 999; /* Asegúrate de que el fondo sea menor que el cuadro de diálogo */
}

.alert-box {
  position: fixed;
  bottom: 45%;
  left: 50%;
  transform: translateX(-50%);
  background-color: white;
  color: black;
  border-radius: 10px;
  border: 1px solid black;
  padding: 20px;
  z-index: 1000; /* Asegúrate de que el cuadro de diálogo esté por encima del fondo */
  /* Otros estilos aquí */
}

.alert-box {
  max-width: 50%;
  flex-direction: column;
}

.alert-message:first-letter {
  text-transform: capitalize;
}

.item-pill-title {
  background-color: lightgray;
  margin-bottom: 1.5%;
  width: fit-content;
  padding-right: 1rem; 
  padding-left: 1rem;
  text-align: center;
}

/* Tooltips */
.custom-tooltip {
  --bs-tooltip-bg: var(--bs-primary);
}




/* ONboardings */
.columns {
  display: flex;
  height: 100vh;
  width: auto;
  margin: 0;
  padding: 0;
}

.column-blue {
  background: #002E49;
  padding: 20px;
  box-sizing: border-box;
  width: 110vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
}

/* Estilo para la columna blanca */
.column-white {
  background-color: white;
  padding: 20px;
  box-sizing: border-box;
  width: 110vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

}

/* Define the btn-onboarding class */
.btn-onboarding {
  background-color: white;
  color: black;
  border: 1px solid black;
  border-radius: 20px;
  padding: 10px 20px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

/* Add hover effect */
.btn-onboarding:hover {
  background-color: black;
  color: white;
}

/* Define the btn-onboarding class with left arrow */
.btn-onboarding.left-arrow::before {
  content: "\2190";
  /* Unicode arrow left symbol */
  margin-right: 10px;
  /* Adjust spacing as needed */
}

/* Define the btn-onboarding class with right arrow */
.btn-onboarding.right-arrow::after {
  content: "\2192";
  /* Unicode arrow right symbol */
  margin-left: 10px;
  /* Adjust spacing as needed */
}

/* TEXT */

.h2-text-select {
  font-size: 2rem;
}

.h4-text-select {
  font-size: 1.5rem;
}

.highlight-empty-input {
  border: 1px solid red;
  /* Example: Red border for highlighting */
  /* Add any other styling to visually highlight the empty input */
}

/* Progress bar */

#progressBarContainer {
  position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparente */
    z-index: 1001; /* Asegúrate de que esté por encima de otros elementos */
}

.progress-circular-bar {
  border: 8px solid #f3f3f3; /* Color de fondo */
  border-top: 8px solid #3A90C5; /* Color del spinner */
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.tippy-box[data-theme~='tomato']  {
  background-color: red;
  color: white;
}

.tippy-box[data-theme~='tomato'][data-placement^='bottom'] > .tippy-arrow::before  {
  border-bottom-color: red;
}

