.gymful-sticky-section-nav,
.gymful-sticky-section-nav * {
  box-sizing: border-box;
}

.gymful-sticky-section-nav {
  --gymful-sticky-nav-bottom: 32px;
  --gymful-sticky-nav-side: 32px;
  position: fixed;
  left: 0;
  right: 0;
  bottom: var(--gymful-sticky-nav-bottom);
  display: flex;
  width: auto;
  max-width: none;
  pointer-events: none;
  z-index: 999;
  transform: translateZ(0);
}

.gymful-sticky-section-nav--center {
  justify-content: center;
  padding-left: var(--gymful-sticky-nav-side);
  padding-right: var(--gymful-sticky-nav-side);
}

.gymful-sticky-section-nav--left {
  justify-content: flex-start;
  padding-left: var(--gymful-sticky-nav-side);
  padding-right: var(--gymful-sticky-nav-side);
}

.gymful-sticky-section-nav--right {
  justify-content: flex-end;
  padding-left: var(--gymful-sticky-nav-side);
  padding-right: var(--gymful-sticky-nav-side);
}

.gymful-sticky-section-nav__inner {
  width: fit-content;
  max-width: min(1200px, calc(100vw - (var(--gymful-sticky-nav-side) * 2)));
  pointer-events: auto;
  overflow: hidden;
  background-color: rgba(255,255,255,0.82);
  -webkit-backdrop-filter: saturate(120%) blur(18px);
  backdrop-filter: saturate(120%) blur(18px);
  border-radius: 999px;
  padding: 10px;
  box-shadow: 0 18px 50px rgba(40, 30, 15, 0.12);
  isolation: isolate;
}

.gymful-sticky-section-nav__list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 8px;
  width: max-content;
  max-width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.gymful-sticky-section-nav__list::-webkit-scrollbar {
  display: none;
}

.gymful-sticky-section-nav__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-width: max-content;
  border: 0;
  outline: 0;
  box-shadow: none;
  text-decoration: none !important;
  white-space: nowrap;
  color: #111;
  background-color: transparent;
  border-radius: 999px;
  padding: 16px 30px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  transition-property: background-color, color, transform, box-shadow;
  transition-duration: 250ms;
  transition-timing-function: ease;
  cursor: pointer;
}

.gymful-sticky-section-nav__link:hover,
.gymful-sticky-section-nav__link:focus-visible,
.gymful-sticky-section-nav__link.is-active {
  color: #111;
  background-color: #c6b04e;
}

.gymful-sticky-section-nav__link:focus-visible {
  box-shadow: 0 0 0 3px rgba(205,187,80,0.28);
}

.gymful-sticky-section-nav__link:active {
  transform: scale(0.98);
}

.gymful-sticky-section-nav__label {
  display: block;
  line-height: inherit;
}

/* Keep sticky bar from creating accidental layout height in Elementor. */
.elementor-widget-gymful_sticky_section_nav {
  min-height: 0 !important;
}

.gymful-sticky-section-nav.is-responsive-hidden {
  display: none !important;
}

@media (max-width: 1024px) {
  .gymful-sticky-section-nav--desktop-only {
    display: none !important;
  }
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .gymful-sticky-section-nav__inner {
    background-color: rgba(255,255,255,0.96);
  }
}
