.aom-book-a-meeting,
.aom-book-a-meeting-overlay {
  --aom-bm-primary: #7d4cff;
  --aom-bm-primary-shadow: rgba(125, 76, 255, 0.35);
  --aom-bm-border: #eaeaea;
  --aom-bm-ink: #2a2a2a;
  --aom-bm-muted: #737373;
}

.aom-book-a-meeting .screen-reader-text,
.aom-book-a-meeting-overlay .screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body.aom-book-a-meeting-open .aom-ask-danita-fab {
  display: none;
}

header .header-row .nav .btn [data-aom-book-open] {
  cursor: pointer;
  color: #fff;
  background-color: #2a2a2a;
  border-color: #2a2a2a;
}

header .header-row .nav .btn [data-aom-book-open]:hover {
  color: #fff;
  background-color: #555555;
  border-color: #555555;
}

header.color-reverse .header-row .nav .btn [data-aom-book-open],
header.show .header-row .nav .btn [data-aom-book-open],
header .header-row:has(.hamburger.open) .nav .btn [data-aom-book-open],
header.less-sticky .header-row .nav .btn [data-aom-book-open],
header.is-sticky .header-row .nav .btn [data-aom-book-open] {
  color: #fff;
  background-color: #2a2a2a;
  border-color: #2a2a2a;
}

.aom-book-a-meeting-overlay {
  position: fixed;
  inset: 0;
  z-index: 100070;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(61, 48, 97, 0.85);
}

.aom-book-a-meeting-overlay[hidden] {
  display: none !important;
}

.aom-book-a-meeting-modal {
  position: relative;
  width: min(80vw, 100%);
  max-height: min(90vh, 840px);
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(42, 42, 42, 0.28);
  overflow: hidden;
  color: var(--aom-bm-ink);
  font: 15px/1.45 system-ui, -apple-system, sans-serif;
}

.aom-book-a-meeting-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  width: 30px;
  height: 30px;
  border: none;
  background: transparent;
  color: var(--aom-bm-muted);
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
}

.aom-book-a-meeting-close:hover {
  background: #f8f8f8;
  color: var(--aom-bm-primary);
}

.aom-book-a-meeting-body {
  flex: 1 1 auto;
  min-height: 0;
  overflow: auto;
  padding: 1.1rem 2.5rem 1.1rem 1rem;
  background: #fafbfd;
}

.aom-book-a-meeting-body .timetics-shortcode-wrapper,
.aom-book-a-meeting-body .timetics-single-booking-wrapper {
  width: 100%;
  max-width: none;
  margin: 0;
}

.aom-staff-stage {
  width: 100%;
}

.aom-staff-stage[hidden] {
  display: none !important;
}

.aom-book-step-title {
  margin: 0 0 1rem;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--aom-bm-ink);
}

.aom-staff-picker {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.7rem;
  width: 100%;
  max-width: 36rem;
}

.aom-staff-picker[hidden] {
  display: none !important;
}

.aom-staff-card {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.9rem;
  margin: 0;
  padding: 0.7rem 0.85rem;
  text-align: left;
  border: 1px solid var(--aom-bm-border);
  border-radius: 16px;
  background: #fff;
  color: inherit;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(42, 42, 42, 0.05);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.aom-staff-card.has-location {
  padding-right: 8.25rem;
}

.aom-staff-card-location {
  position: absolute;
  top: 0.7rem;
  right: 0.85rem;
  max-width: 7.4rem;
  font-size: 0.75rem;
  line-height: 1.3;
  font-weight: 500;
  text-align: right;
  white-space: pre-line;
  color: var(--aom-bm-muted);
}

.aom-staff-card:hover,
.aom-staff-card.is-selected {
  border-color: var(--aom-bm-primary);
  box-shadow: 0 8px 20px var(--aom-bm-primary-shadow);
}

.aom-staff-card:focus-visible {
  outline: 2px solid var(--aom-bm-primary);
  outline-offset: 2px;
}

.aom-staff-card-photo-wrap {
  position: relative;
  flex: 0 0 36.7%;
  width: 36.7%;
  min-width: 100px;
  max-width: 144px;
  aspect-ratio: 144 / 108;
  border-radius: 8px;
  overflow: hidden;
  background-color: #4c1ff2;
  background-image: url("team-card-bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.aom-staff-card-photo-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-color: rgba(0, 0, 0, 0.2);
}

.aom-staff-card-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  position: relative;
  z-index: 0;
}

.aom-staff-card-body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.12rem;
}

.aom-staff-card-name {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.3;
  color: var(--aom-bm-ink);
}

.aom-staff-card-role {
  font-size: 0.9375rem;
  line-height: 1.35;
  font-weight: 400;
  color: var(--aom-bm-muted);
}

.aom-staff-card-contact,
.aom-staff-card-linkedin {
  margin-top: 0.12rem;
  font-size: 0.8125rem;
  line-height: 1.4;
  color: var(--aom-bm-primary);
  text-decoration: none;
  word-break: break-all;
}

.aom-staff-card-contact:hover,
.aom-staff-card-linkedin:hover {
  text-decoration: underline;
}

.tt-booking-body-wrap .aom-staff-stage {
  padding: 0.25rem 0 0.5rem;
}

.aom-book-a-meeting-overlay:not(.has-staff) h2.tt-section-title,
.aom-book-a-meeting-overlay:not(.has-staff) .tt-host-item,
.aom-book-a-meeting-overlay:not(.has-staff) .timetics-timezone-select {
  display: none !important;
}

.aom-book-a-meeting-overlay:not(.has-staff) .tt-booking-body-wrap > *:not(.aom-staff-stage) {
  display: none !important;
}

.aom-book-a-meeting-overlay.has-staff .aom-staff-stage {
  display: none !important;
}

@media (max-width: 767.98px) {
  .aom-book-a-meeting-overlay {
    padding: 0;
    align-items: stretch;
  }

  .aom-book-a-meeting-modal {
    width: 100%;
    max-height: none;
    height: 100%;
    border-radius: 0;
  }

  .aom-staff-card {
    align-items: flex-start;
  }

  .aom-staff-card-photo-wrap {
    flex-basis: 100px;
    width: 100px;
  }
}
