
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: 50svh;
  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;
}

/* 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 */
}

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