.tour-archive {
  width: 100%;
}
.tour-archive__filterbar {
  display: none;
  margin-bottom: 30px;
}
@media only screen and (min-width: 992px) {
  .tour-archive__filterbar {
    display: block;
  }
}
.tour-archive__toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  margin-bottom: 30px;
}
@media only screen and (min-width: 992px) {
  .tour-archive__toolbar {
    display: none;
  }
}
.tour-archive__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  transition: opacity 0.25s ease-out;
}
@media only screen and (min-width: 768px) {
  .tour-archive__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 1200px) {
  .tour-archive__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.tour-archive__grid--loading {
  opacity: 0.5;
  pointer-events: none;
}
.tour-archive__active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 20px;
}
.tour-archive__active-filters:empty {
  display: none;
}
.tour-archive__results-count {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: rgba(0, 0, 0, 0.5);
  margin-bottom: 20px;
  display: none;
}
@media only screen and (min-width: 992px) {
  .tour-archive__results-count {
    font-size: 18px;
    line-height: 24px;
  }
}
.tour-archive__no-results {
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  line-height: 24px;
  text-align: center;
  padding: 60px 20px;
  color: rgba(0, 0, 0, 0.5);
}

.tour-filterbar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.tour-filterbar__row {
  display: flex;
  gap: 20px;
  align-items: center;
}
.tour-filterbar__row--between {
  justify-content: space-between;
}
.tour-filterbar__label {
  display: flex;
  gap: 6px;
  align-items: center;
  flex-shrink: 0;
}
.tour-filterbar__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.tour-filterbar__icon svg {
  width: 100%;
  height: 100%;
}
.tour-filterbar__label-text {
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  font-size: 30px;
  line-height: 36px;
  letter-spacing: -0.3px;
  color: #000;
  white-space: nowrap;
}
.tour-filterbar__clear-all {
  background: none;
  border: none;
  cursor: pointer;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  color: #000;
  padding: 0;
  height: unset;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  white-space: nowrap;
}
.tour-filterbar__clear-all:hover, .tour-filterbar__clear-all:focus {
  color: #F8AE43;
}
.tour-filterbar__clear-all::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #F8AE43;
}
.tour-filterbar__sort {
  display: flex;
  gap: 20px;
  align-items: center;
  width: 390px;
  flex-shrink: 0;
}
.tour-filterbar__select {
  flex: 1;
  padding: 7px 12px;
  background: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  color: #000;
  appearance: none;
  cursor: pointer;
  box-shadow: inset 2px 2px 5px 0 #d9d9d9;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7' fill='none'%3E%3Cpath d='M1 1L6 6L11 1' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}
.tour-filterbar__select::placeholder {
  color: rgba(0, 0, 0, 0.25);
}
.tour-filterbar__search {
  display: flex;
  gap: 20px;
  align-items: center;
  width: 530px;
  flex-shrink: 0;
}
.tour-filterbar__search-wrapper {
  display: flex;
  gap: 6px;
  align-items: center;
  flex: 1;
}
.tour-filterbar__search-input {
  flex: 1;
  padding: 7px 12px;
  background: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  color: #000;
  box-shadow: inset 2px 2px 5px 0 #d9d9d9;
}
.tour-filterbar__search-input::placeholder {
  color: rgba(0, 0, 0, 0.25);
}
.tour-filterbar__search-input:focus {
  outline: 2px solid #F8AE43;
  outline-offset: -2px;
}
.tour-filterbar__search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 5.5px;
  background: #F8AE43;
  border: none;
  border-radius: 40px;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.25s ease-out;
}
.tour-filterbar__search-btn .icon-jtc {
  font-size: 25px;
  width: 25px;
  height: 25px;
  color: #000;
}
.tour-filterbar__search-btn:hover, .tour-filterbar__search-btn:focus {
  background: #000;
}
.tour-filterbar__search-btn:hover .icon-jtc, .tour-filterbar__search-btn:focus .icon-jtc {
  color: #fff;
}

.tour-dropdown {
  position: relative;
  flex: 1;
  min-width: 0;
}
.tour-dropdown__trigger {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 7px 12px;
  background: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  cursor: pointer;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  color: rgba(0, 0, 0, 0.25);
  text-align: left;
  transition: all 0.25s ease-out;
  gap: 12px;
}
.tour-dropdown__trigger-text {
  display: flex;
  align-items: center;
  padding: 0;
  gap: 10px;
  flex: 1;
  min-width: 0;
  height: 22px;
}
.tour-dropdown__trigger-label {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.tour-dropdown__trigger-count {
  white-space: nowrap;
}
.tour-dropdown__trigger-count:empty {
  display: none;
}
.tour-dropdown__trigger-sep {
  display: none;
  padding: 0;
  width: 1px;
  align-self: stretch;
  background: rgba(0, 0, 0, 0.25);
  flex-shrink: 0;
}
.tour-dropdown__trigger-chevron {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  flex-shrink: 0;
  width: 12px;
  height: 7px;
  transition: transform 0.25s ease-out;
}
.tour-dropdown__trigger-chevron svg {
  width: 100%;
  height: 100%;
}
.tour-dropdown--active .tour-dropdown__trigger {
  background: #F8AE43;
  border-color: rgba(0, 0, 0, 0.25);
  color: #000;
}
.tour-dropdown--active .tour-dropdown__trigger-label {
  font-weight: 700;
}
.tour-dropdown--active .tour-dropdown__trigger-count {
  font-weight: 400;
}
.tour-dropdown--active .tour-dropdown__trigger-sep {
  display: block;
}
.tour-dropdown--open .tour-dropdown__trigger-chevron {
  transform: rotate(180deg);
}
.tour-dropdown__panel {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  min-width: 100%;
  width: max-content;
  max-width: 320px;
  max-height: 300px;
  overflow-y: auto;
  background: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 12px 16px;
  z-index: 100;
}
.tour-dropdown__panel[hidden] {
  display: none;
}
.tour-dropdown__fieldset {
  border: 0;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-card {
  position: relative;
  width: 100%;
  border-top-left-radius: 40px;
  border-bottom-right-radius: 40px;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.25);
  transition: all 0.25s ease-out;
}
@media only screen and (min-width: 1200px) {
  .product-card {
    border-top-left-radius: 80px;
    border-bottom-right-radius: 80px;
  }
}
.product-card:hover {
  box-shadow: 0 8px 24px 0 rgba(0, 0, 0, 0.25);
}
.product-card:hover .product-card__inner::before {
  opacity: 1;
}
.product-card:hover .product-card__content {
  background: #F8AE43;
}
.product-card:hover .product-card__title,
.product-card:hover .product-card__meta {
  color: #000;
}
.product-card:hover .product-card__button {
  background: #000;
  color: #f5f5f5;
  box-shadow: 0 3px 0 0 #fcb040;
}

.product-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
  border-top-left-radius: inherit;
  border-bottom-right-radius: inherit;
  overflow: hidden;
}

.product-card__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  min-height: 400px;
  padding: 10px;
  overflow: hidden;
  border-top-left-radius: inherit;
  border-bottom-right-radius: inherit;
}
@media only screen and (min-width: 1200px) {
  .product-card__inner {
    padding: 280px 20px 20px;
  }
}
.product-card__inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 2px solid #F8AE43;
  border-top-left-radius: inherit;
  border-bottom-right-radius: inherit;
  opacity: 0;
  transition: all 0.25s ease-out;
  pointer-events: none;
  z-index: 2;
}

.product-card__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  border-top-left-radius: inherit;
  border-bottom-right-radius: inherit;
}
.product-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.product-card__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  min-height: 280px;
  padding: 30px;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(30px);
  border-top-left-radius: 30px;
  border-bottom-right-radius: 30px;
  transition: all 0.25s ease-out;
}
@media only screen and (min-width: 1200px) {
  .product-card__content {
    gap: 20px;
    min-width: 400px;
    min-height: 410px;
    padding: 35px 40px 50px;
    border-top-left-radius: 50px;
    border-bottom-right-radius: 50px;
  }
}

.product-card__details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media only screen and (min-width: 1200px) {
  .product-card__details {
    gap: 20px;
  }
}

.product-card__category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 2px 8px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  border-radius: 40px;
  align-self: flex-start;
}
@media only screen and (min-width: 1200px) {
  .product-card__category {
    gap: 4px;
    padding: 4px 8px;
  }
}
.product-card__category i::before {
  flex-shrink: 0;
  font-size: 14px;
  line-height: 1;
  position: relative;
}
@media only screen and (min-width: 1200px) {
  .product-card__category i::before {
    width: 18px;
    height: 18px;
  }
}
.product-card__category span {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 10px;
  line-height: 18px;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  color: #000;
}
@media only screen and (min-width: 1200px) {
  .product-card__category span {
    font-size: 14px;
    letter-spacing: 0.28px;
  }
}

.product-card__title {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 28px;
  letter-spacing: 0.48px;
  text-transform: uppercase;
  color: #fff;
  transition: all 0.25s ease-out;
}
@media only screen and (min-width: 1200px) {
  .product-card__title {
    font-size: 30px;
    line-height: 32px;
    letter-spacing: 0.6px;
  }
}
.product-card__title::after {
  display: none;
}

.product-card__waitlist {
  display: none;
  padding: 4px 12px;
  background: rgba(255, 0, 0, 0.8);
  border-radius: 4px;
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  font-size: 10px;
  line-height: normal;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  align-self: flex-start;
}
@media only screen and (min-width: 1200px) {
  .product-card__waitlist {
    font-size: 14px;
    letter-spacing: 0.28px;
    border-radius: 6px;
    padding: 4px 12px;
  }
}
.product-card--sold-out .product-card__waitlist {
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card__meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: #fff;
  transition: all 0.25s ease-out;
}
.product-card__meta p {
  margin: 0;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
}
@media only screen and (min-width: 1200px) {
  .product-card__meta p {
    font-size: 20px;
    line-height: 24px;
  }
}

.product-card__button {
  align-self: flex-start;
  transition: all 0.25s ease-out;
}

.tour-sidebar {
  background: #EEEEEE;
  border-top-left-radius: 50px;
  border-bottom-right-radius: 50px;
  padding: 40px 30px 60px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.tour-sidebar__active-tags {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
}
.tour-sidebar__section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.tour-sidebar__headline {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.tour-sidebar__heading-row {
  display: flex;
  align-items: center;
  gap: 6px;
}
.tour-sidebar__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.tour-sidebar__icon svg {
  width: 100%;
  height: 100%;
}
.tour-sidebar__heading {
  margin: 0;
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  font-size: 30px;
  line-height: 36px;
  letter-spacing: -0.3px;
  color: #000;
}
.tour-sidebar__heading::after {
  display: none;
}
.tour-sidebar__accent {
  width: 100px;
  height: 6px;
  background: #F8AE43;
}
.tour-sidebar__header {
  display: flex;
  align-items: center;
  gap: 10px;
}
.tour-sidebar__clear-all {
  margin-left: auto;
  background: none;
  border: none;
  cursor: pointer;
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: #000;
  padding: 0;
  height: unset;
  display: flex;
  flex-direction: column;
}
.tour-sidebar__clear-all:hover, .tour-sidebar__clear-all:focus {
  color: #F8AE43;
}
.tour-sidebar__clear-all::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #F8AE43;
}

.tour-sidebar__select {
  width: 100%;
  padding: 7px 12px;
  background: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: #000;
  appearance: none;
  cursor: pointer;
  box-shadow: inset 2px 2px 5px 0 #d9d9d9;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7' fill='none'%3E%3Cpath d='M1 1L6 6L11 1' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.tour-sidebar__fieldset {
  border: 0;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tour-sidebar__checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: #000;
}
.tour-sidebar__checkbox input[type=checkbox] {
  width: 20px;
  height: 20px;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  background: #fff;
  box-shadow: inset 1px 1px 4px 0 #d9d9d9;
  appearance: none;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
}
.tour-sidebar__checkbox input[type=checkbox]:checked {
  background: #F8AE43;
  border-color: #F8AE43;
}
.tour-sidebar__checkbox input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 6px;
  width: 5px;
  height: 10px;
  border: solid #000;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.tour-sidebar__checkbox input[type=checkbox]:focus-visible {
  outline: 2px solid #F8AE43;
  outline-offset: 2px;
}

.tour-sidebar__collapsible {
  padding-bottom: 20px;
}

.tour-sidebar__toggle {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 10px;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  cursor: pointer;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  color: #000;
  text-align: left;
  border-radius: 0;
}
.tour-sidebar__toggle span {
  flex: 1;
}
.tour-sidebar__toggle .icon-jtc {
  font-size: 18px;
  width: 15px;
  height: 18px;
  transition: transform 0.25s ease-out;
}
.tour-sidebar__toggle[aria-expanded=true] .icon-jtc {
  transform: rotate(180deg);
}

.tour-sidebar__panel {
  padding: 12px 10px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.tour-sidebar__panel[hidden] {
  display: none;
}

.tour-sidebar__search-wrapper {
  display: flex;
  gap: 10px;
  align-items: center;
}

.tour-sidebar__search {
  flex: 1;
  padding: 7px 12px;
  background: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: #000;
  box-shadow: inset 2px 2px 5px 0 #d9d9d9;
}
.tour-sidebar__search::placeholder {
  color: rgba(0, 0, 0, 0.25);
}
.tour-sidebar__search:focus {
  outline: 2px solid #F8AE43;
  outline-offset: -2px;
}

.tour-sidebar__search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 43px;
  height: 43px;
  padding: 9px;
  background: #F8AE43;
  border: none;
  border-radius: 40px;
  cursor: pointer;
  transition: all 0.25s ease-out;
}
.tour-sidebar__search-btn .icon-jtc {
  font-size: 25px;
  width: 25px;
  height: 25px;
  color: #000;
}
.tour-sidebar__search-btn:hover, .tour-sidebar__search-btn:focus {
  background: #000;
}
.tour-sidebar__search-btn:hover .icon-jtc, .tour-sidebar__search-btn:focus .icon-jtc {
  color: #fff;
}

.filter-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 9px 12px 9px 16px;
  border: 2.5px solid #000;
  border-radius: 40px;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  color: #000;
  background: none;
  cursor: pointer;
  transition: all 0.25s ease-out;
}
.filter-tag:hover, .filter-tag:focus {
  background: #000;
  color: #fff;
}
.filter-tag:hover .filter-tag__close svg path, .filter-tag:focus .filter-tag__close svg path {
  fill: #fff;
}
.filter-tag__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  flex-shrink: 0;
  padding: 0;
}
.filter-tag__close svg {
  width: 100%;
  height: 100%;
  fill: #000;
}
.filter-tag__close svg path {
  transition: all 0.25s ease-out;
}

.tour-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.tour-toolbar__sort-btn, .tour-toolbar__filter-btn {
  flex: 1 1 auto;
  min-width: 107px;
  height: 43px;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding: 9px;
  background: #d9d9d9;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: #000;
  transition: all 0.25s ease-out;
}
.tour-toolbar__sort-btn:hover, .tour-toolbar__sort-btn:focus, .tour-toolbar__filter-btn:hover, .tour-toolbar__filter-btn:focus {
  background: #000;
  color: #fff;
}
.tour-toolbar__search-wrapper {
  flex: 1 1 173px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.tour-toolbar__search {
  flex: 1;
  min-width: 120px;
  padding: 7px 12px;
  background: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: #000;
  box-shadow: inset 2px 2px 5px 0 #d9d9d9;
}
.tour-toolbar__search::placeholder {
  color: rgba(0, 0, 0, 0.25);
}
.tour-toolbar__search:focus {
  outline: 2px solid #F8AE43;
  outline-offset: -2px;
}
.tour-toolbar__search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 43px;
  height: 43px;
  padding: 9px;
  background: #F8AE43;
  border: none;
  border-radius: 40px;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.25s ease-out;
}
.tour-toolbar__search-btn .icon-jtc {
  font-size: 25px;
  width: 25px;
  height: 25px;
  color: #000;
}
.tour-toolbar__search-btn:hover, .tour-toolbar__search-btn:focus {
  background: #000;
}
.tour-toolbar__search-btn:hover .icon-jtc, .tour-toolbar__search-btn:focus .icon-jtc {
  color: #fff;
}

.tour-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1002;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease-out;
}
.tour-modal--open {
  pointer-events: auto;
  opacity: 1;
}
.tour-modal--open .tour-modal__content {
  transform: translateY(0);
}
.tour-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}
.tour-modal__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  background: #EEEEEE;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  padding: 30px 20px 40px;
  transform: translateY(100%);
  transition: transform 0.3s ease-out;
}
.tour-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.tour-modal__title {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 28px;
  letter-spacing: -0.24px;
  color: #000;
}
.tour-modal__title::after {
  display: none;
}
.tour-modal__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.tour-modal__close svg {
  width: 100%;
  height: 100%;
}
.tour-modal__body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.tour-modal__apply {
  margin-top: 20px;
}
.tour-modal__radio-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.tour-modal__radio {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: #000;
}
.tour-modal__radio input[type=radio] {
  width: 20px;
  height: 20px;
  border: 1px solid #d9d9d9;
  border-radius: 50%;
  background: #fff;
  box-shadow: inset 1px 1px 4px 0 #d9d9d9;
  appearance: none;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
}
.tour-modal__radio input[type=radio]:checked {
  border-color: #F8AE43;
}
.tour-modal__radio input[type=radio]:checked::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 10px;
  height: 10px;
  background: #F8AE43;
  border-radius: 50%;
}
.tour-modal__radio input[type=radio]:focus-visible {
  outline: 2px solid #F8AE43;
  outline-offset: 2px;
}

.tour-archive__pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}
@media only screen and (min-width: 992px) {
  .tour-archive__pagination {
    margin-top: 60px;
  }
}
.tour-archive__pagination .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.tour-archive__pagination a,
.tour-archive__pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  font-family: "Oswald", sans-serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.36px;
  text-transform: uppercase;
  text-decoration: none;
  color: #000;
  transition: all 0.25s ease-out;
}
.tour-archive__pagination a:hover,
.tour-archive__pagination a:focus {
  background-color: #d9d9d9;
}
.tour-archive__pagination .current {
  background-color: #d9d9d9;
  font-weight: 700;
}
.tour-archive__pagination .prev svg,
.tour-archive__pagination .next svg {
  width: 32px;
  height: 32px;
}

/*# sourceMappingURL=tour-archive.css.map */
