.pantai-red {
  color: #ea3424;
}

.pantai-grey {
  color: #6d6f71;
}

.appointment-choice-button-list {
  display: flex;
  justify-content: center;
  gap: var(--space-s);
}
.appointment-choice-button-list .appointment-choice-button {
  flex: 0 0 9.75rem;
  border: 2px solid var(--pantai-light-blue);
  border-radius: 0.5rem;
  color: var(--pantai-light-blue);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--space-m) var(--space-xs);
  text-align: center;
  line-height: 1.15;
  aspect-ratio: 1;
  transition: all 0.15s ease;
}
.appointment-choice-button-list .appointment-choice-button img {
  width: 100%;
  height: 4rem;
  object-fit: contain;
  margin-bottom: 1rem;
  filter: brightness(0) saturate(100%) invert(66%) sepia(88%) saturate(1259%)
    hue-rotate(159deg) brightness(96%) contrast(94%);
}
.appointment-choice-button-list .appointment-choice-button:hover,
.appointment-choice-button-list .appointment-choice-button.active {
  background-color: var(--pantai-light-blue);
  color: white;
}
.appointment-choice-button-list .appointment-choice-button:hover img,
.appointment-choice-button-list .appointment-choice-button.active img {
  filter: brightness(0) saturate(100%) invert(97%) sepia(16%) saturate(0%)
    hue-rotate(81deg) brightness(117%) contrast(100%);
}
@media screen and (width < 768px) {
  .appointment-choice-button-list {
    flex-direction: column;
  }
  .appointment-choice-button-list .appointment-choice-button {
    flex-direction: row;
    padding: var(--space-s);
    justify-content: center;
    gap: var(--space-2xs);
    text-align: left;
    flex: 0 0 auto;
    aspect-ratio: auto;
    align-items: center;
  }
  .appointment-choice-button-list .appointment-choice-button img {
    height: 3rem;
    width: 3rem;
    object-position: center;
    margin-bottom: 0;
  }
  .appointment-choice-button-list .appointment-choice-button > div {
    width: 8rem;
  }
}

.appointment-banner {
  background-color: #d0e0f3;
  text-align: center;
  border-radius: 0.5rem;
  max-width: 60rem;
  padding: var(--space-m);
}
.appointment-banner > div {
  max-width: 45rem;
  margin: auto;
}
.appointment-banner.orange {
  background-color: #ffbc29;
  color: black;
}

.maternity-appointment .select2 .default-dropdown-select,
.appointment .select2 .default-dropdown-select {
  border-width: 1px;
  border-color: gray;
}
.maternity-appointment
  .select2
  .select2-selection--single
  .select2-selection__arrow
  b,
.appointment .select2 .select2-selection--single .select2-selection__arrow b {
  border-color: gray !important;
}
.maternity-appointment .select2.select2-container,
.appointment .select2.select2-container {
  height: fit-content;
}
.maternity-appointment
  .select2
  .select2-selection__rendered
  .select2-selection__placeholder,
.appointment
  .select2
  .select2-selection__rendered
  .select2-selection__placeholder {
  color: gray;
}
.maternity-appointment .default-search-box,
.appointment .default-search-box {
  border: 1px solid gray;
}
.maternity-appointment .default-search-box input::placeholder,
.appointment .default-search-box input::placeholder {
  color: gray;
}
.maternity-appointment textarea,
.appointment textarea {
  height: 2.5rem;
  width: 100%;
  padding: var(--space-2xs) var(--space-2xs);
  border-radius: 0.35rem;
}
.maternity-appointment textarea::placeholder,
.appointment textarea::placeholder {
  font-size: var(--step--1);
}
.maternity-appointment .preferred-date-input,
.appointment .preferred-date-input {
  width: 100%;
  border: 1px solid var(--pantai-blue);
  padding: var(--space-2xs) var(--space-xs);
}
.maternity-appointment .air-datepicker.-inline-,
.appointment .air-datepicker.-inline- {
  width: calc(100% - 1px);
  border-radius: 0;
  border: 1px solid var(--pantai-blue);
  --adp-day-cell-height: auto;
  --adp-border-color-inner: var(--pantai-blue);
}
@media screen and (width >= 1400px) {
  .maternity-appointment .air-datepicker.-inline-,
  .appointment .air-datepicker.-inline- {
    width: calc(100% - 2px);
  }
}
.maternity-appointment .air-datepicker-body--day-name,
.appointment .air-datepicker-body--day-name {
  color: var(--pantai-blue);
  font-weight: bold;
}
.maternity-appointment .air-datepicker-cell.-day-,
.appointment .air-datepicker-cell.-day- {
  aspect-ratio: 1;
  border-radius: 50%;
}
.maternity-appointment .air-datepicker-cell.-day-.-selected-,
.appointment .air-datepicker-cell.-day-.-selected- {
  background-color: transparent;
  color: inherit;
  border: 2px solid var(--pantai-blue);
}
.maternity-appointment .air-datepicker-cell.-day-.-selected-.-focus-,
.appointment .air-datepicker-cell.-day-.-selected-.-focus- {
  background-color: var(--adp-cell-background-color-hover);
}
.maternity-appointment .air-datepicker-cell.-day-.-current-,
.appointment .air-datepicker-cell.-day-.-current- {
  color: var(--adp-color-current-date) !important;
}
.maternity-appointment .preferred-time-list,
.appointment .preferred-time-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2xs);
}
.maternity-appointment .preferred-time-list .preferred-time,
.appointment .preferred-time-list .preferred-time {
  flex: 0 0 calc(50% - var(--space-2xs) * 0.5);
  background-color: white;
  border: 1px solid var(--pantai-blue);
  padding: var(--space-2xs) var(--space-xs);
  text-align: center;
  border-radius: 0.35rem;
  overflow: hidden;
  font-weight: bold;
  color: var(--pantai-blue);
  cursor: pointer;
  line-height: 1.3;
  transition: all 0.15s ease;
}
.maternity-appointment .preferred-time-list .preferred-time:hover,
.appointment .preferred-time-list .preferred-time:hover {
  background-color: var(--pantai-light-blue-blue);
}
.maternity-appointment .preferred-time-list .preferred-time.active,
.appointment .preferred-time-list .preferred-time.active {
  background-color: var(--pantai-blue);
  color: white;
}

body:has(.appointment) .default-dropdown-dropdown {
  border-color: gray !important;
}

.maternity-appointment .error-label,
.appointment .error-label,
#appointmentSummaryModal .error-label {
  opacity: 0;
  user-select: none;
  pointer-events: none;
  color: red;
  font-size: var(--step--2);
  margin-bottom: var(--space-3xs);
}

.appointment select {
  border: 1px solid gray;
}
.appointment textarea::placeholder {
  font-size: 1rem !important;
}
@media screen and (width < 576px) {
  .appointment textarea {
    padding: var(--space-2xs) var(--space-xs) !important;
    min-height: 7rem;
  }
}

.sticky-side-inner .appointment .default-search-box {
  height: 2rem;
}
.sticky-side-inner .appointment .error-label {
  line-height: 1.15;
}
.sticky-side-inner .appointment .default-button {
  padding: var(--space-2xs) var(--space-m);
  cursor: pointer;
}

.search-box .verify-btn {
  position: absolute;
  right: 8px;
  padding: 5px 15px;
  background-color: #e6e6e6;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  color: #777;
  cursor: pointer;
}

.search-box .verify-btn:hover {
  background-color: #d5d5d5;
}

.info-icon {
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 20px;
  background-color: #32c2ee;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  cursor: pointer;
}

.info-icon:hover::after {
  content: "You can find your voucher code in the confirmation email sent after your package purchase.";
  position: absolute;
  top: 25px;
  right: -10px;
  background-color: #333;
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 12px;
  z-index: 1000;
  white-space: normal;
  word-wrap: break-word;
  width: 300px;
}

#voucher-container button.verify-btn-enable {
  background-color: var(--pantai-light-blue);
  color: white;
}

.icon-calendar {
  width: 60px;
}

@media (min-resolution: 1dppx) and (max-resolution: 1.25dppx) {
  .mb-custom {
    margin-top: 19px;
  }
}
@media (resolution: 1.5dppx) {
  .mb-custom {
    margin-top: 45px;
  }
}
.appointment-grey .preferred-date-input {
  border: 1px solid #808080 !important;
}

.appointment-grey .air-datepicker-nav {
  border-bottom: 1px solid #808080 !important;
}

.appointment-grey .air-datepicker.-inline- {
  border: 1px solid #808080;
  --adp-border-color-inner: #808080;
}

.appointment-grey .air-datepicker--content {
  padding: 20px 5px;
}

@media (resolution: 1.5dppx) {
  .appointment-grey #txtMedicalConcernOrRequest {
    height: 16.5rem;
  }
}
@media (min-resolution: 1dppx) and (max-resolution: 1.25dppx) {
  .appointment-grey #txtMedicalConcernOrRequest {
    height: 336px;
  }
}
.text-red-underline {
  color: #ea3424;
  text-decoration: underline;
}

/*# sourceMappingURL=appointment.css.map */
