@charset "UTF-8";
/* ----------------------------------------------------------------------------
 * Easy!Appointments - Online Appointment Scheduler
 *
 * @package     EasyAppointments
 * @author      A.Tselegidis <alextselegidis@gmail.com>
 * @copyright   Copyright (c) Alex Tselegidis
 * @license     https://opensource.org/licenses/GPL-3.0 - GPLv3
 * @link        https://easyappointments.org
 * @since       v1.5.0
 * ---------------------------------------------------------------------------- */
/* Responsive booking wizard styles (rounded corners and shadow on md+ screens) */
@media (min-width: 768px) {
  #book-appointment-wizard {
    border-radius: var(--bs-border-radius) !important;
    box-shadow: var(--bs-box-shadow-sm) !important;
  }
}
/* Active step indicator - dynamic state that changes via JavaScript */
#book-appointment-wizard .book-step.active-step {
  height: 45px !important;
  width: 45px !important;
  background: var(--bs-white) !important;
  padding: 7px !important;
  margin-right: 13px !important;
  margin-top: 0 !important;
}

#book-appointment-wizard .book-step.active-step strong {
  color: var(--bs-primary) !important;
  font-size: 21px !important;
}

/* Inactive step indicator - ensures consistent styling when step becomes inactive */
#book-appointment-wizard .book-step:not(.active-step) {
  height: 35px !important;
  width: 35px !important;
  background: rgba(0, 0, 0, 0.2) !important;
  padding: 8px !important;
  margin-right: 12px !important;
  margin-top: 6px !important;
}

#book-appointment-wizard .book-step:not(.active-step) strong {
  color: rgba(255, 255, 255, 0.5) !important;
  font-size: 12px !important;
}

/* Selected hour button state */
#book-appointment-wizard #available-hours .available-hour {
  margin-bottom: 10px;
}

#book-appointment-wizard #available-hours .selected-hour {
  background-color: var(--bs-primary) !important;
  border-color: var(--bs-primary) !important;
  color: var(--bs-white) !important;
}

/* Captcha refresh icon hover effect */
#book-appointment-wizard .captcha-title .fa-sync-alt {
  cursor: pointer;
  transition: all 0.3s linear;
}

#book-appointment-wizard .captcha-title .fa-sync-alt:hover {
  color: var(--bs-primary);
}

/* Language popover list */
.popover .popover-title {
  text-align: center;
}

.popover .popover-content #language-list .language {
  margin: 15px 0;
}

#book-appointment-wizard .flatpickr-calendar.inline {
  margin: auto;
}

/* Embedded booking (iframe) — full width, no outer chrome, earlier two-column breakpoints */
body.booking-embedded {
  margin: 0;
  min-height: auto !important;
}
body.booking-embedded #main.booking-embedded-main,
body.booking-embedded .booking-embedded-main {
  padding: 0 !important;
  margin: 0 !important;
  max-width: 100% !important;
  min-height: auto !important;
}
body.booking-embedded .wrapper {
  margin: 0 !important;
  padding: 0 !important;
  min-height: auto !important;
}
body.booking-embedded #book-appointment-wizard,
body.booking-embedded #message-frame {
  border-radius: 0 !important;
  box-shadow: none !important;
  margin: 0 !important;
}
body.booking-embedded .wizard-frame {
  padding: 0.75rem !important;
}
body.booking-embedded .frame-container {
  min-height: auto !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
body.booking-embedded .frame-title {
  display: none !important;
}
body.booking-embedded .frame-container[style*=min-height] {
  min-height: auto !important;
}
body.booking-embedded #select-time {
  max-width: 100% !important;
}
@media (min-width: 600px) {
  body.booking-embedded .booking-embed-columns {
    flex-wrap: nowrap !important;
  }
}
body.booking-embedded .booking-embed-column {
  flex: 0 0 100%;
  max-width: 100%;
  width: 100%;
}
@media (min-width: 600px) {
  body.booking-embedded .booking-embed-column {
    flex: 0 0 50% !important;
    max-width: 50% !important;
    width: 50% !important;
  }
}
@media (min-width: 600px) {
  body.booking-embedded #book-appointment-wizard .frame-content > .col-12.col-lg-6,
  body.booking-embedded #book-appointment-wizard .frame-content > .field-col.col-lg-6 {
    flex: 0 0 50% !important;
    max-width: 50% !important;
    width: 50% !important;
  }
}
@media (min-width: 600px) {
  body.booking-embedded #book-appointment-wizard .frame-content > .col.col-lg-8,
  body.booking-embedded #book-appointment-wizard .frame-content > .col-lg-8 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    margin-left: 0;
  }
}
body.booking-embedded #wizard-frame-2 .flatpickr-calendar.inline {
  margin-left: 0;
  margin-right: auto;
}
body.booking-embedded .booking-embed-service-name {
  color: var(--bs-body-color);
  font-size: 1.1rem;
  line-height: 1.3;
}
body.booking-embedded #frame-footer {
  padding: 0.5rem !important;
}