.sv-festival-dance-filters {
  position: relative;
  z-index: 4;
  margin: 0 1rem;
  background: transparent;
}

.sv-festival-dance-filters__bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 14px;
  min-height: 62px;
  padding: 10px 0 9px;
  box-sizing: border-box;
}

.sv-festival-dance-filters__label {
  color: #6c6259;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .045em;
  line-height: 1.2;
  text-transform: uppercase;
}

.sv-festival-dance-filters__styles {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sv-festival-dance-filters__count {
  margin-left: auto;
  color: #796f65;
  font-size: 12.5px;
  font-weight: 650;
  line-height: 1.2;
  white-space: nowrap;
}

.sv-festival-dance-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 42px;
  margin: 0;
  padding: 8px 15px;
  border: 1px solid #d9c9b2;
  border-radius: 999px;
  background: #fffdf9;
  color: #342d27 !important;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: none;
  cursor: pointer;
  transition: border-color 150ms ease, background-color 150ms ease, color 150ms ease, box-shadow 150ms ease;
}

.sv-festival-dance-chip[data-sv-dance-style="salsa"].is-selected,
.sv-festival-dance-chip[data-sv-dance-style="salsa"][aria-pressed="true"] {
  border-color: #c93f2f;
  background: #c93f2f;
  color: #fff !important;
}

.sv-festival-dance-chip[data-sv-dance-style="bachata"].is-selected,
.sv-festival-dance-chip[data-sv-dance-style="bachata"][aria-pressed="true"] {
  border-color: #3769bc;
  background: #3769bc;
  color: #fff !important;
}

.sv-festival-dance-chip[data-sv-dance-style="salsa"]:not(.is-selected) {
  border-color: #d9897f;
  background: #fffdf9;
  color: #a92d1e !important;
}

.sv-festival-dance-chip[data-sv-dance-style="bachata"]:not(.is-selected) {
  border-color: #84a2d6;
  background: #fffdf9;
  color: #315fa6 !important;
}

.sv-festival-dance-chip__check {
  display: none;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 18px;
  height: 18px;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, .82);
  border-radius: 50%;
  background: rgba(255, 255, 255, .14);
  flex: 0 0 auto;
}

.sv-festival-dance-chip__check::after {
  width: 7px;
  height: 4px;
  border-bottom: 2px solid currentColor;
  border-left: 2px solid currentColor;
  content: "";
  transform: translateY(-1px) rotate(-45deg);
}

.sv-festival-dance-chip.is-selected .sv-festival-dance-chip__check,
.sv-festival-dance-chip[aria-pressed="true"] .sv-festival-dance-chip__check {
  display: inline-flex;
}

.sv-festival-dance-chip.is-last-selected {
  cursor: default;
}

.sv-festival-dance-chip:focus-visible {
  outline: 3px solid rgba(74, 100, 145, .32);
  outline-offset: 2px;
}

.sv-child-location-nav:not(.sv-child-location-nav--selector) .sv-child-location-nav__label {
  margin-bottom: 8px;
  color: #6f675f;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
}

.sv-child-location-nav:not(.sv-child-location-nav--selector) .sv-child-location-nav__bubbles {
  gap: 7px;
}

.sv-child-location-nav:not(.sv-child-location-nav--selector) .sv-location-bubble {
  gap: 6px;
  padding: 6px 10px;
  border-color: #e3d8c8;
  border-radius: 8px;
  background: rgba(255, 255, 255, .24);
  color: #716960;
  font-size: 12.5px;
  font-weight: 700;
}

.sv-child-location-nav:not(.sv-child-location-nav--selector) .sv-location-bubble:hover,
.sv-child-location-nav:not(.sv-child-location-nav--selector) .sv-location-bubble:focus-visible {
  border-color: #cdbb9d;
  background: rgba(255, 255, 255, .68);
  color: #342d27;
}

.sv-festival-filter-empty {
  margin: 0 1rem 2rem;
  padding: 1rem;
  border: 1px solid #e0d6c9;
  border-radius: 8px;
  background: #fff;
  color: #625a52;
  text-align: center;
}

.sv-festival-filter-empty[hidden],
[data-sv-festival-item][hidden],
[data-sv-festival-section][hidden],
[data-sv-festival-jump][hidden],
.jump-nav-row[hidden] {
  display: none !important;
}

@media (hover: hover) {
  .sv-festival-dance-chip[data-sv-dance-style="salsa"]:not(.is-selected):hover {
    border-color: #c93f2f;
    background: #fff2ef;
    color: #a92d1e !important;
  }

  .sv-festival-dance-chip[data-sv-dance-style="bachata"]:not(.is-selected):hover {
    border-color: #3769bc;
    background: #f0f5ff;
    color: #315fa6 !important;
  }

  .sv-festival-dance-chip[data-sv-dance-style="salsa"].is-selected:hover {
    border-color: #b63327;
    background: #b63327;
  }

  .sv-festival-dance-chip[data-sv-dance-style="bachata"].is-selected:hover {
    border-color: #2e5ca7;
    background: #2e5ca7;
  }
}

@media (max-width: 600px) {
  .sv-festival-dance-filters {
    margin-right: .5rem;
    margin-left: .5rem;
  }

  .sv-festival-dance-filters__bar {
    min-height: 70px;
    gap: 8px 10px;
    padding-top: 10px;
    padding-bottom: 8px;
  }

  .sv-festival-dance-filters__label {
    font-size: 11px;
  }

  .sv-festival-dance-filters__styles {
    gap: 7px;
  }

  .sv-festival-dance-filters__count {
    flex: 0 0 100%;
    margin: -1px 0 0;
    font-size: 11.5px;
  }

  .sv-festival-dance-chip {
    min-height: 44px;
    padding: 8px 13px;
    font-size: 13.5px;
  }

  .sv-child-location-nav:not(.sv-child-location-nav--selector) .sv-child-location-nav__label {
    margin-bottom: 7px;
    font-size: 12.5px;
  }

  .sv-child-location-nav:not(.sv-child-location-nav--selector) .sv-child-location-nav__bubbles {
    gap: 6px;
  }

  .sv-child-location-nav:not(.sv-child-location-nav--selector) .sv-location-bubble {
    gap: 5px;
    padding: 5px 8px;
    font-size: 12px;
  }
}
