/* ====== Tokens ====== */
:root {
  --colour-smile-orange: #FF6200;
  --colour-squid-ink:    #161D26;
  --colour-rose:         #F74622;
  --colour-salmon:       #FF8756;
  --colour-ivory:        #E5E1D6;
  --colour-amber:        #E59214;
  --colour-sandstone:        #FFD98E;
  --colour-sandstone-tint:   #FFE3A6;
  --colour-sandstone-shade:  #F4C86E;
  --colour-off-white:    #F5F3EF;
  --colour-prime-blue:   #0275FF;
  --colour-aqua-blue:    #9EE4F0;
  --colour-white:        #FFFFFF;

  --header: 'EmberModernDisplay', 'EmberModernText', sans-serif;
  --body:   'EmberModernText', sans-serif;

  --card-shadow:
    -3px 4px 5px rgba(22, 29, 38, 0.28),
    -10px 16px 14px -2px rgba(22, 29, 38, 0.42);
}


/* ====== Global / reset ====== */
html {
  overflow-x: clip;
  background-color: var(--colour-off-white) !important;
}

body {
  background-color: var(--colour-off-white) !important;
  color: var(--colour-squid-ink);
  font-family: var(--body);
  padding-top: 5rem;
}


/* ====== Editor-mode escape hatch ====== */
/* In Bizzabo admin iframe, undo the fixed positioning on relocated
   sections so editors can still click and edit them in the canvas. */
html.in-editor .custom-navbar,
html.in-editor .section-logo,
html.in-editor .section-countdown {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  transform: none !important;
  z-index: auto !important;
}

html.in-editor body {
  padding-top: 0 !important;
}


/* ====== Navbar ====== */
nav.navbar,
nav.template-nav {
  display: none !important;
}

/* Bizzabo modal / registration popup must sit above our fixed navbar (z-index: 100-102).
   The modal-backdrop wraps the modal content as its parent and uses opacity to dim,
   which dims the form too. Force opacity:1 and use alpha-channel rgba for the dim. */
.modal-backdrop,
.modal-overlay {
  opacity: 1 !important;
  background-color: rgba(0, 0, 0, 0.5) !important;
  z-index: 99998 !important;
}

.modal-root,
[role="dialog"],
.modal-dialog,
.modal-content,
.bz-modal {
  z-index: 99999 !important;
}

.custom-navbar {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  height: 5rem !important;
  background-color: var(--colour-off-white) !important;
  border: 0 !important;
  z-index: 100 !important;
}


/* ====== Logo (relocated from .section-logo into the navbar centre) ====== */
.section-logo {
  position: fixed !important;
  top: 0 !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  height: 5rem !important;
  width: auto !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  z-index: 101 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  pointer-events: auto !important;
}

.section-logo .atom-sectionMain,
.section-logo .rowHolder,
.section-logo .main-app-container,
.section-logo .row,
.section-logo [class*="col-"],
.section-logo .element-groups,
.section-logo [class*="element-"] {
  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
  width: auto !important;
  max-width: none !important;
  height: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.section-logo img {
  display: block !important;
  height: auto !important;
  max-height: 3rem !important;
  min-height: 0 !important;
  width: auto !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  object-fit: contain !important;
  background: transparent !important;
  filter: none !important;
}


/* ====== Native countdown overlaid on navbar ====== */
.section-countdown {
  position: fixed !important;
  top: 2.5rem !important;
  left: 2rem !important;
  transform: translateY(-50%) !important;
  height: auto !important;
  width: auto !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  z-index: 101 !important;
  display: flex !important;
  align-items: center !important;
  pointer-events: auto !important;
}

.section-countdown .atom-sectionMain,
.section-countdown .rowHolder,
.section-countdown .main-app-container,
.section-countdown .row,
.section-countdown [class*="col-"],
.section-countdown [class*="element-"] {
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  width: auto !important;
  max-width: none !important;
  min-width: 0 !important;
  display: flex !important;
  align-items: center !important;
}

.section-countdown .countdown-header-container,
.section-countdown .countdown-view-container {
  display: none !important;
}

.section-countdown .countdown-view-holder {
  display: flex !important;
  align-items: stretch !important;
  flex-wrap: nowrap !important;
  background-color: var(--colour-sandstone-tint) !important;
  border: 0 !important;
  border-radius: .65rem !important;
  padding: .55rem 0 !important;
  width: auto !important;
  max-width: none !important;
  margin: 0 !important;
}

.section-countdown .count-container {
  flex: 0 0 auto !important;
  width: auto !important;
  max-width: none !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 .9rem !important;
  border: 0 !important;
  border-right: 1px solid var(--colour-smile-orange) !important;
  background: transparent !important;
  margin: 0 !important;
}

.section-countdown .count-container:last-child {
  border-right: 0 !important;
}

.section-countdown .count-container .atom-main,
.section-countdown .count-container .count-number {
  color: var(--colour-smile-orange) !important;
  font-family: var(--body) !important;
  font-size: 1.6rem !important;
  font-weight: 400 !important;
  line-height: 1 !important;
  margin: 0 !important;
  padding: 0 !important;
  background: none !important;
  border: 0 !important;
  filter: none !important;
  text-transform: none !important;
}

.section-countdown .count-container .atom-text,
.section-countdown .count-container .count-unit {
  color: var(--colour-smile-orange) !important;
  font-family: var(--body) !important;
  font-size: .55rem !important;
  font-weight: 600 !important;
  line-height: 1 !important;
  letter-spacing: .04em !important;
  margin-top: .3rem !important;
  padding: 0 !important;
  background: none !important;
  border: 0 !important;
  text-transform: uppercase !important;
}


/* ====== Navbar Register button section ====== */
/* Editor types `section-register-nav` as the SECTION's custom class in admin,
   exactly like .section-logo / .section-countdown. No JS, no :has(), no widget-level class. */
.section-register-nav {
  position: fixed !important;
  top: 0 !important;
  right: 0 !important;
  left: auto !important;
  bottom: auto !important;
  height: 5rem !important;
  width: auto !important;
  z-index: 101 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  padding: 0 1.5rem !important;
  margin: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  min-height: 0 !important;
}

.section-register-nav .main-app-container,
.section-register-nav .rowHolder,
.section-register-nav .row,
.section-register-nav [class*="col-"],
.section-register-nav .element-groups,
.section-register-nav [class*="element-"] {
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  height: auto !important;
  min-height: 0 !important;
  width: auto !important;
  max-width: none !important;
}

.section-register-nav .btn,
.section-register-nav a.btn {
  background-color: var(--colour-smile-orange) !important;
  color: var(--colour-white) !important;
  font-family: var(--header) !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  padding: .65rem 1.5rem !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: .65rem !important;
  cursor: pointer !important;
  transition: background-color .15s ease !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: auto !important;
  height: auto !important;
  line-height: 1.2 !important;
  white-space: nowrap !important;
  box-shadow: none !important;
}

.section-register-nav .btn:hover,
.section-register-nav .btn:focus,
.section-register-nav a.btn:hover,
.section-register-nav a.btn:focus {
  background-color: var(--colour-squid-ink) !important;
  color: var(--colour-white) !important;
  text-decoration: none !important;
}

html.in-editor .section-register-nav {
  position: relative !important;
  top: auto !important;
  right: auto !important;
  left: auto !important;
  height: auto !important;
  z-index: auto !important;
  justify-content: flex-start !important;
}


/* ====== Text selection ====== */
::selection {
  background-color: var(--colour-smile-orange);
  color: var(--colour-off-white);
}

::-moz-selection {
  background-color: var(--colour-smile-orange);
  color: var(--colour-off-white);
}

/* On the speaker tiles' coloured panels, flip the highlight so it stays visible. */
.section-featuring .entity-photo-holder ::selection {
  background-color: var(--colour-off-white);
  color: var(--colour-smile-orange);
}

.section-featuring .entity-photo-holder ::-moz-selection {
  background-color: var(--colour-off-white);
  color: var(--colour-smile-orange);
}


/* ====== Universal: Bizzabo Section Title -> Wooden Plank ====== */
body .atom-sectionMain h2.atom-main.custom-font:not(:empty):not(.countdown-header) {
  display: block !important;
  float: none !important;
  background-image: url('https://cdn-static.bizzabo.com/bizzabo.users.files/skizfiYHTv2OpScO3dFE_Find%20us%20plank%20title.png') !important;
  background-size: 100% 100% !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  color: var(--colour-off-white) !important;
  font-family: var(--header) !important;
  font-weight: 700 !important;
  font-size: clamp(1.5rem, 2vw, 2.2rem) !important;
  line-height: 1 !important;
  text-align: center !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  padding: 1.75rem 4rem !important;
  margin-left: auto !important;
  margin-right: auto !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  width: clamp(20rem, 30vw, 28rem) !important;
  min-width: 0 !important;
  max-width: 90vw !important;
  filter: url(#deboss-effect);
}


/* ====== Reusable: wood-plank divider strip ====== */
.has-wood-plank-top,
#site-footer {
  position: relative !important;
  overflow: visible !important;
}

.has-wood-plank-top::before,
#site-footer::before {
  content: "" !important;
  position: absolute !important;
  top: -1.5rem !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 100vw !important;
  height: 3rem !important;
  background-image: url('https://s3.amazonaws.com/bizzabo.users.files/E1m6j6aS0y0osF3sayfx_Divider.png') !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  z-index: 10 !important;
  pointer-events: none !important;
}


/* ====== Hero section override ====== */
/* Hero is built manually by Jensen; Bizzabo's default `.custom-space-bottom`
   utility class adds bottom padding that becomes a growing white chunk under
   the cover image as the viewport narrows. Zero it out only when scoped to
   `.section-hero` so other sections that use the same utility class are unaffected.
   Editor needs to type `section-hero` as the hero section's custom class in admin. */
.section-hero .custom-space-bottom,
.section-hero .main-app-container.custom-space-bottom {
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}


/* ====== Event Details section ====== */
.section-event-details {
  background-color: var(--colour-sandstone-tint) !important;
  padding: 3rem 1.5rem 5rem !important;
  text-align: center !important;
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  position: relative !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  border: 0 !important;
}

.section-event-details > *,
.section-event-details .atom-sectionMain,
.section-event-details .rowHolder,
.section-event-details .main-app-container,
.section-event-details .atom-main,
.section-event-details .full-width,
.section-event-details .margin-custom-element,
.section-event-details .bz-flex-col,
.section-event-details [class*="padding-horizontal"],
.section-event-details [class*="overflow"] {
  border-radius: 0 !important;
  box-shadow: none !important;
  border: 0 !important;
  overflow: visible !important;
}

/* Nuclear: force overflow:visible on every descendant so the card's drop
   shadow can escape any Bizzabo wrapper we have not specifically targeted. */
.section-event-details,
.section-event-details *:not(.event-details-card) {
  overflow: visible !important;
}

.section-event-details div.main-app-container,
.section-event-details div.rowHolder,
.section-event-details div.row,
.section-event-details div[class*="col-"],
.section-event-details div.element-groups,
.section-event-details div[class*="element-"] {
  background: transparent !important;
  text-align: center !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: auto !important;
  margin-right: auto !important;
  float: none !important;
  width: 100% !important;
  max-width: 100% !important;
  display: block !important;
  overflow: visible !important;
}

/* White card — wrap the body copy HTML in <div class="event-details-card">...</div>
   inside the Text widget (via its source/HTML view) or as a Custom HTML widget. */
body .section-event-details div.event-details-card,
body .atom-sectionMain div.event-details-card,
body div.event-details-card,
.event-details-card {
  display: block !important;
  background-color: var(--colour-off-white) !important;
  border-radius: 1.25rem !important;
  padding: 3rem 4rem !important;
  margin: 2rem auto 0 !important;
  max-width: 56rem !important;
  width: auto !important;
  box-shadow: var(--card-shadow) !important;
  text-align: center !important;
  color: var(--colour-squid-ink) !important;
  border: 0 !important;
  overflow: visible !important;
}

.event-details-card h1,
.event-details-card h2,
.event-details-card h3,
.event-details-card h4 {
  font-family: var(--header);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--colour-squid-ink);
  margin: 0 0 1.25rem;
  padding: 0;
  background: none !important;
  filter: none !important;
  text-transform: none !important;
}

.event-details-card p {
  font-family: var(--body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--colour-squid-ink);
  margin: 0 0 1rem;
  padding: 0;
}

.event-details-card em,
.event-details-card i {
  font-style: italic;
}

.event-details-card a {
  color: var(--colour-smile-orange);
  text-decoration: underline;
}

.event-details-card p:last-child {
  margin-bottom: 0;
}


/* ====== Featuring (Speakers) section ====== */
.section-featuring {
  position: relative !important;
  width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  padding: 0 !important;
  background-color: var(--colour-off-white) !important;
  background-image: url('https://assets-ext.bizzabo.com/bizzaboprod/image/upload/q_auto,f_auto,c_scale,c_crop,g_custom/v1779060430/wfahmuiii5sr5c2mueir') !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  overflow: hidden !important;
}

.section-featuring * { box-sizing: border-box !important; }

/* Reset Bizzabo wrapper layers so they do not restrict width or paint
   their own backgrounds. .entity-photo-holder is excluded — it's the
   styled tile and owns its own background + padding. */
.section-featuring .html-container,
.section-featuring .main-app-container,
.section-featuring .atom-sectionMain,
.section-featuring .rowHolder,
.section-featuring .row,
.section-featuring [class*="col-"]:not(.entity-photo-holder),
.section-featuring .bz-flex-col,
.section-featuring .atom-main,
.section-featuring .element-groups,
.section-featuring .fr-view,
.section-featuring [class*="element-"]:not(.entity-photo-holder),
.section-featuring [class*="CustomElement-"] {
  max-width: none !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
}

.section-featuring .main-app-container {
  padding: 2rem 5vw 5rem 5vw !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
}

/* Speaker grid — flattenSpeakersGrid() lifts every tile into .speakers-grid-flat */
.section-featuring .speakers-grid-flat {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  align-items: flex-start !important;
  gap: 2.25rem !important;
  width: 100% !important;
  max-width: 56rem !important;
  margin: 2rem auto 0 !important;
  padding: 3rem 4rem !important;
  background-color: var(--colour-off-white) !important;
  background-image: none !important;
  border-radius: 1.25rem !important;
  box-shadow: var(--card-shadow) !important;
  overflow: visible !important;
}

.section-featuring .speakers-grid-flat > .entity-photo-holder {
  flex: 0 0 calc(25% - 1.6875rem) !important;
  width: calc(25% - 1.6875rem) !important;
  max-width: calc(25% - 1.6875rem) !important;
  min-width: 0 !important;
}

.section-featuring .entity-photo-holder {
  position: relative !important;
  box-sizing: border-box !important;
  border: none !important;
  border-radius: .5rem !important;
  overflow: hidden !important;
  padding: .4rem !important;
  margin: 0 !important;
  box-shadow: var(--card-shadow) !important;
  transition: transform .15s ease, box-shadow .15s ease !important;
  cursor: pointer !important;
}

.section-featuring .entity-photo-holder:hover {
  transform: translate(-1px, 2px) !important;
  box-shadow:
    -2px 3px 4px rgba(22, 29, 38, 0.24),
    -6px 10px 10px -2px rgba(22, 29, 38, 0.34) !important;
}

.section-featuring .entity-photo-holder a {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 auto .3rem auto !important;
  width: 100% !important;
  aspect-ratio: 1 / 1 !important;
  background-color: transparent !important;
  border-radius: .35rem !important;
  overflow: hidden !important;
}

.section-featuring .entity-photo-holder .speaker-text {
  background-color: transparent !important;
  padding: .3rem .4rem .5rem .4rem !important;
  text-align: left !important;
  margin: 0 !important;
  min-height: 5.5rem !important;
}

.section-featuring .object-trade-thumbnail,
.section-featuring .entity-photo-holder img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  border-radius: .35rem !important;
  margin: 0 !important;
  background: transparent !important;
}

.section-featuring .entity-photo-holder .attendee-name,
.section-featuring .entity-photo-holder .atom-fullname {
  color: var(--colour-squid-ink) !important;
  font-family: var(--body) !important;
  font-size: .95rem !important;
  font-weight: 700 !important;
  line-height: 120% !important;
  margin: 0 0 .15rem 0 !important;
  background: transparent !important;
  text-transform: none !important;
}

.section-featuring .entity-photo-holder .attendee-title,
.section-featuring .entity-photo-holder .attendee-company,
.section-featuring .entity-photo-holder .atom-text1,
.section-featuring .entity-photo-holder .atom-text2 {
  color: var(--colour-squid-ink) !important;
  font-family: var(--body) !important;
  font-size: .8rem !important;
  font-weight: 400 !important;
  line-height: 130% !important;
  margin: 0 !important;
  background: transparent !important;
  text-transform: none !important;
}

/* 11-step colour cycle — Salmon / Amber / Sandstone */
.section-featuring .entity-photo-holder:nth-child(11n+1),
.section-featuring .entity-photo-holder:nth-child(11n+4),
.section-featuring .entity-photo-holder:nth-child(11n+8) {
  background-color: var(--colour-salmon) !important;
}

.section-featuring .entity-photo-holder:nth-child(11n+2),
.section-featuring .entity-photo-holder:nth-child(11n+6),
.section-featuring .entity-photo-holder:nth-child(11n+7),
.section-featuring .entity-photo-holder:nth-child(11n+10) {
  background-color: var(--colour-amber) !important;
}

.section-featuring .entity-photo-holder:nth-child(11n+3),
.section-featuring .entity-photo-holder:nth-child(11n+5),
.section-featuring .entity-photo-holder:nth-child(11n+9),
.section-featuring .entity-photo-holder:nth-child(11n) {
  background-color: var(--colour-sandstone) !important;
}


/* ====== Footer ====== */
footer:has(#site-footer),
footer:has(#site-footer) .main-app-container,
footer:has(#site-footer) .row,
footer:has(#site-footer) [class*="col-"],
footer:has(#site-footer) .rowHolder,
footer:has(#site-footer) .element-groups,
footer:has(#site-footer) [class*="element-"] {
  background-color: var(--colour-squid-ink) !important;
  margin: 0 !important;
  padding: 0 !important;
}

#site-footer {
  padding: 2rem;
  background-color: var(--colour-squid-ink);
  color: var(--colour-off-white);
  font-family: var(--body);
  line-height: 1.4 !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
}

#site-footer a {
  color: var(--colour-off-white);
  text-decoration: underline;
}

#site-footer a:hover { opacity: 0.75; }

#site-footer img {
  filter: brightness(1000) grayscale(1);
}

#site-footer .disclaimer {
  margin-bottom: 1.5rem;
}

#site-footer .disclaimer p {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 400;
}

#site-footer .legal {
  display: block;
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

#site-footer .legal a { margin: 0 0.8em; }
#site-footer .legal a:first-child { margin-left: 0; }
#site-footer .legal a:last-child { margin-right: 0; }

#site-footer .socials {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}

#site-footer .socials a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

#site-footer .socials img {
  width: 1.25rem;
  height: 1.25rem;
  object-fit: contain;
}

#site-footer .bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 1rem;
  border-top: 1px dashed rgba(255, 255, 255, 0.3);
  padding-top: 1.75rem;
}

#site-footer .bottom .logos {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

#site-footer .bottom .logos a { display: inline-flex; align-items: center; }
#site-footer .bottom .logos img { height: 3rem; }

#site-footer .copyright {
  align-self: flex-end;
  margin-left: auto;
}

#site-footer .copyright p {
  margin: 0;
  font-size: 0.85rem;
}


/* ====== Mobile (<=767px) ====== */
@media (max-width: 767px) {
  /* Speakers grid drops from 4 to 2 columns and tightens its panel chrome. */
  .section-featuring .speakers-grid-flat {
    gap: 1.25rem !important;
    max-width: 22rem !important;
    padding: 1.5rem !important;
    margin: 1.5rem auto 0 !important;
  }

  .section-featuring .speakers-grid-flat > .entity-photo-holder {
    flex: 0 0 calc(50% - .625rem) !important;
    width: calc(50% - .625rem) !important;
    max-width: calc(50% - .625rem) !important;
  }
}

/*
	giovani.g, ZD: 216695
	Fix the registration modal overlay position 
*/
body > div.modal-backdrop.in {
	z-index: 100 !important;
}