.favorite-experience-icon-box,
.favorite-article-icon-box,
.favorite-suggested-product-icon-box {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 7px;
  right: 10px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  z-index: 9;
}
.favorite-experience-icon-box .favorite-experience,
.favorite-experience-icon-box .favorite-article,
.favorite-experience-icon-box .favorite-suggested-product,
.favorite-article-icon-box .favorite-experience,
.favorite-article-icon-box .favorite-article,
.favorite-article-icon-box .favorite-suggested-product,
.favorite-suggested-product-icon-box .favorite-experience,
.favorite-suggested-product-icon-box .favorite-article,
.favorite-suggested-product-icon-box .favorite-suggested-product {
  display: inline-block;
  width: 28px;
  height: 28px;
  background-color: transparent;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.favorite-experience-icon-box .favorite-experience::after,
.favorite-experience-icon-box .favorite-article::after,
.favorite-experience-icon-box .favorite-suggested-product::after,
.favorite-article-icon-box .favorite-experience::after,
.favorite-article-icon-box .favorite-article::after,
.favorite-article-icon-box .favorite-suggested-product::after,
.favorite-suggested-product-icon-box .favorite-experience::after,
.favorite-suggested-product-icon-box .favorite-article::after,
.favorite-suggested-product-icon-box .favorite-suggested-product::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: var(--color-primary);
  -webkit-mask: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/general-icons-sprite-dcc6f44af9.svg#heart_white") no-repeat center;
          mask: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/general-icons-sprite-dcc6f44af9.svg#heart_white") no-repeat center;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  z-index: 2;
}
.favorite-experience-icon-box .favorite-article-checked,
.favorite-experience-icon-box .favorite-experience-checked,
.favorite-experience-icon-box .favorite-suggested-product-checked,
.favorite-article-icon-box .favorite-article-checked,
.favorite-article-icon-box .favorite-experience-checked,
.favorite-article-icon-box .favorite-suggested-product-checked,
.favorite-suggested-product-icon-box .favorite-article-checked,
.favorite-suggested-product-icon-box .favorite-experience-checked,
.favorite-suggested-product-icon-box .favorite-suggested-product-checked {
  -webkit-mask: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/general-icons-sprite-dcc6f44af9.svg#heart_checked") no-repeat center;
          mask: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/general-icons-sprite-dcc6f44af9.svg#heart_checked") no-repeat center;
  background: var(--color-primary);
}
.favorite-experience-icon-box .favorite-article-checked::after,
.favorite-experience-icon-box .favorite-experience-checked::after,
.favorite-experience-icon-box .favorite-suggested-product-checked::after,
.favorite-article-icon-box .favorite-article-checked::after,
.favorite-article-icon-box .favorite-experience-checked::after,
.favorite-article-icon-box .favorite-suggested-product-checked::after,
.favorite-suggested-product-icon-box .favorite-article-checked::after,
.favorite-suggested-product-icon-box .favorite-experience-checked::after,
.favorite-suggested-product-icon-box .favorite-suggested-product-checked::after {
  display: none;
}
@media screen and (min-width: 520px) {
  .favorite-experience-icon-box,
  .favorite-article-icon-box,
  .favorite-suggested-product-icon-box {
    width: 40px;
    height: 40px;
    top: 7px;
  }
  .favorite-experience-icon-box .favorite-experience,
  .favorite-experience-icon-box .favorite-article,
  .favorite-article-icon-box .favorite-experience,
  .favorite-article-icon-box .favorite-article,
  .favorite-suggested-product-icon-box .favorite-experience,
  .favorite-suggested-product-icon-box .favorite-article {
    width: 38px;
    height: 38px;
  }
}

.favorite-suggested-product-icon-box {
  width: 34px;
  height: 34px;
  background: var(--color-white);
  border-radius: 50%;
  top: 13px;
  right: 13px;
}
.favorite-suggested-product-icon-box .favorite-suggested-product {
  width: 20px;
  height: 20px;
}
.favorite-suggested-product-icon-box .favorite-suggested-product::after {
  width: 20px;
  height: 20px;
}

.suggested-product-card {
  background-color: var(--color-neutral-lighter);
  margin: 5px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  -webkit-transition: opacity 1s, -webkit-transform 0.5s;
  transition: opacity 1s, -webkit-transform 0.5s;
  transition: transform 0.5s, opacity 1s;
  transition: transform 0.5s, opacity 1s, -webkit-transform 0.5s;
  -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
}
.suggested-product-card .subst {
  text-decoration: none;
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.suggested-product-card .card-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
}
.suggested-product-card .card-content .card-half-block {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.suggested-product-card .card-content .img-content {
  position: relative;
  width: 100%;
  height: 93px;
}
.suggested-product-card .card-content .img-content img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.suggested-product-card .card-content .img-content a {
  display: block;
}
.suggested-product-card .card-content .img-content i {
  position: absolute;
}
.suggested-product-card .card-content .img-content .city-name {
  font-size: clamp(10px, 1.1vw, 14px);
  line-height: clamp(10px, 1.1vw, 14px);
  text-align: center;
  color: var(--color-primary-light);
  background-color: var(--color-neutral-lightest);
  font-family: roc-grotesk, sans-serif;
  font-weight: 500;
  margin: 5px 0 10px;
}
.suggested-product-card .card-content .img-content .new-label {
  position: absolute;
  top: -11px;
  left: -49px;
  font-size: 9px;
  font-weight: 700;
  background: var(--red-basic);
  width: 120px;
  text-align: center;
  padding: 25px 0 10px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  color: var(--white);
}
.suggested-product-card .card-content .suggested-product-owner-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 41.67vw;
  min-height: 30px;
  overflow-wrap: anywhere;
  position: absolute;
  bottom: -15px;
  left: 12px;
  padding: 3px 7px 3px 0;
  text-align: left;
  background-color: var(--color-primary);
  font: 500 10px roc-grotesk, sans-serif;
  border-radius: 10px;
  max-width: 182px;
}
.suggested-product-card .card-content .suggested-product-owner-block .owner-name {
  font-size: clamp(10px, 1.1vw, 11px);
}
.suggested-product-card .card-content .suggested-product-owner-block .img-content-label {
  width: 40px !important;
  height: 40px;
  position: absolute !important;
  left: -11px;
  overflow: initial;
  margin: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.suggested-product-card .card-content .suggested-product-owner-block .img-content-label img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 2px solid var(--white);
  background: var(--white);
  -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1607843137);
          box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1607843137);
}
.suggested-product-card .card-content .suggested-product-owner-block .info-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--white);
  position: relative;
  padding-left: 31px;
}
.suggested-product-card .text-content {
  position: relative;
  padding: 20px 10px 10px 18px;
  color: var(--blue-basic);
  min-height: 125px;
  height: auto;
  text-align: left;
}
.suggested-product-card .text-content .title {
  margin: 0 0 10px 0 !important;
}
.suggested-product-card .text-content .experience-title {
  font-size: 17px !important;
  line-height: 1.3 !important;
  color: var(--blue-basic);
  text-align: left;
}
.suggested-product-card .text-content .ellipsis-span {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 2.6em;
  line-height: 1.3em !important;
  word-break: normal;
  overflow-wrap: break-word;
  max-width: 98%;
}
.suggested-product-card .text-content .sub-description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
}
.suggested-product-card .text-content .sub-description p {
  position: relative;
  font-size: clamp(12px, 1.1vw, 14px);
  line-height: clamp(12px, 1.1vw, 14px);
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.suggested-product-card .text-content .sub-description .partner-price-text {
  position: relative;
  left: 25px;
  color: var(--color-accent-rose);
  font: 600 12px Architects-Daughter, sans-serif;
  font-size: clamp(12px, 1.1vw, 14px);
}
.suggested-product-card .text-content .sub-description .partner-price-text:before {
  content: "";
  display: block;
  width: 15px;
  height: 24px;
  background-color: var(--color-accent-rose);
  -webkit-mask: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/experience-single-sprite-c9e9aeff34.svg#arrow") no-repeat center;
          mask: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/experience-single-sprite-c9e9aeff34.svg#arrow") no-repeat center;
  -webkit-mask-size: cover;
          mask-size: cover;
  position: absolute;
  left: -14px;
  bottom: -16px;
  -webkit-transform: rotate(-10deg);
          transform: rotate(-10deg);
}
.suggested-product-card .text-content .sub-description .partner-price-decore {
  position: relative;
}
.suggested-product-card .text-content .sub-description .partner-price-decore::after {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  background-color: var(--color-accent-rose);
  -webkit-mask: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/experience-single-sprite-c9e9aeff34.svg#line") no-repeat center;
          mask: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/experience-single-sprite-c9e9aeff34.svg#line") no-repeat center;
  -webkit-mask-size: contain;
          mask-size: contain;
  position: absolute;
  left: 29px;
  top: -10px;
}
.suggested-product-card .text-content .sub-description .description {
  font: 500 12px roc-grotesk, sans-serif;
  display: none;
  margin: 0 0 5px;
}
.suggested-product-card .text-content .sub-description .doodle-icon {
  display: block;
  width: clamp(15px, 1.1vw, 18px);
  height: clamp(15px, 1.1vw, 18px);
  margin-right: 5px;
}
.suggested-product-card .text-content .sub-description .duration-doodle {
  background: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/general-icons-sprite-dcc6f44af9.svg#icon-duration_blue") no-repeat;
  background-size: contain;
}
.suggested-product-card .text-content .sub-description .price-doodle {
  background: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/general-icons-sprite-dcc6f44af9.svg#icon-price_blue") no-repeat;
  background-size: contain;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.suggested-product-card .text-content .reviews {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 5px 0 5px 0;
  background-color: var(--color-neutral-lighter);
  margin-top: 5px;
  height: 20px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.suggested-product-card .text-content .reviews .list-star {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
  list-style: none;
  padding: 0;
}
.suggested-product-card .text-content .reviews .list-star li:last-child {
  margin: 0;
}
.suggested-product-card .text-content .reviews .list-star li .star-icon {
  display: block;
  width: clamp(15px, 1.1vw, 25px);
  height: clamp(15px, 1.1vw, 25px);
  background: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/general-icons-sprite-dcc6f44af9.svg#star_yellow") no-repeat;
  background-size: contain;
}
.suggested-product-card .text-content .reviews-count {
  margin: 0;
  padding-top: 3px;
  font-size: clamp(11px, 1.1vw, 13px);
}
.suggested-product-card .text-content.show-creator-label {
  padding: 25px 10px 10px 18px;
}
.suggested-product-card .text-content.show-creator-label .city-name {
  display: inline-block;
  width: 100%;
  text-align: left;
  font-size: clamp(13px, 1.1vw, 12px);
  line-height: 1.2;
  color: var(--color-primary-light);
  background-color: transparent;
  font-family: roc-grotesk, sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  margin: 0;
}
.suggested-product-card .text-content:hover .title {
  color: var(--yellow-basic);
}
.suggested-product-card:hover {
  -webkit-transform: scale(1.01);
          transform: scale(1.01);
}
.suggested-product-card:hover .img-content {
  -webkit-filter: brightness(80%);
          filter: brightness(80%);
}
.suggested-product-card:hover .img-content img {
  height: 96%;
}
.suggested-product-card:hover .img-content .suggested-product-owner-block {
  left: 13px;
}

@media screen and (min-width: 992px) {
  .suggested-product-card {
    margin: 5px;
    height: initial;
  }
  .suggested-product-card .img-content {
    height: initial;
  }
  .suggested-product-card .card-content .suggested-product-owner-block {
    width: 164px;
  }
  .suggested-product-card .text-content .sub-description {
    margin-top: 15px;
  }
  .suggested-product-card .text-content .sub-description .description {
    display: block;
  }
  .suggested-product-card .text-content .experience-title {
    font-size: 15px !important;
  }
  .suggested-product-card .text-content .reviews {
    margin-top: 10px;
    padding-bottom: 10px;
  }
}
@media screen and (min-width: 1200px) {
  .suggested-product-card .card-content .suggested-product-owner-block {
    width: 182px;
  }
}
@media screen and (min-width: 1440px) {
  .suggested-product-card .card-content .suggested-product-owner-block {
    width: 190px;
  }
  .suggested-product-card .text-content .sub-description {
    margin-top: 13px;
  }
  .suggested-product-card .text-content.show-creator-label {
    padding-top: 25px;
  }
}
@media screen and (min-width: 1600px) {
  .suggested-product-card .card-content .img-content .city-name {
    line-height: 13px;
  }
  .suggested-product-card .text-content .sub-description p {
    line-height: 16px;
  }
  .suggested-product-card .text-content.show-creator-label .city-name {
    line-height: 13px;
  }
}
@media screen and (min-width: 1905px) {
  .suggested-product-card .text-content .sub-description p {
    line-height: 18px;
  }
  .suggested-product-card .text-content .reviews {
    height: 25px;
  }
}
.search-page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  padding: 0;
}
.search-page .search-tool-section {
  padding: 25px 0;
}
.search-page .search-page-container {
  padding: 0 0 25px;
}
.search-page .search-page-container .search-page-title {
  font-size: 12px;
  background-color: var(--blue-basic);
  color: var(--white);
  padding: 5px 10px;
  text-align: center;
}
.search-page .search-page-container .filter-nav-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px 19px 7px;
  background: var(--white);
  z-index: 1111;
  position: sticky;
  top: var(--nav-bar-height);
}
.search-page .search-page-container .filter-nav-section .nav-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: none;
  height: 7.8vw;
  background: #F4F4F4;
  padding: 0 10px 0 0;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 70vw;
}
.search-page .search-page-container .filter-nav-section .nav-item span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 100%;
  text-align: left;
  font-size: 3.6vw;
  color: #626060;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.search-page .search-page-container .filter-nav-section .nav-item.result-info-block {
  background: var(--white);
  cursor: initial;
}
.search-page .search-page-container .filter-nav-section .nav-item.result-info-block span {
  font-family: roc-grotesk, sans-serif;
  font-size: 3.35vw;
  font-weight: 600;
  overflow-wrap: anywhere;
  min-height: 33px;
  width: auto;
}
.search-page .search-page-container .filter-nav-section .nav-item.filter-btn {
  width: 21.3vw;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.search-page .search-page-container .filter-nav-section .nav-item.filter-btn span {
  display: block;
  text-align: center;
}
.search-page .search-page-container .filter-nav-section .nav-item:hover {
  -webkit-transform: scale(1.01);
          transform: scale(1.01);
}
.search-page .search-page-container .filter-nav-section.fixed {
  position: fixed;
  top: 75px;
}
.search-page .search-page-container .matched-info-container {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0 15px;
}
.search-page .search-page-container .matched-info-container .title {
  font-family: roc-grotesk, sans-serif;
  font-weight: 700;
  font-size: 6.2vw;
  line-height: 6.7vw;
  text-align: left;
  margin: 0;
}
.search-page .search-page-container .matched-info-container .similar-searches-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  margin: 0 auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
  overflow-y: auto;
  overflow-x: auto;
}
.search-page .search-page-container .matched-info-container .similar-searches-container .similar-searches {
  font-size: 4.5vw;
  line-height: 5.7vw;
  width: 100%;
  padding: 10px 0 15px;
  white-space: nowrap;
  overflow-x: auto;
  margin: 0;
}
.search-page .search-page-container .matched-info-container .similar-searches-container .similar-searches .similar-search {
  color: var(--blue-basic);
  text-decoration: none;
  margin: 0 15px 0 2px;
  cursor: pointer;
  font-family: roc-grotesk, sans-serif;
  font-weight: 600;
  position: relative;
}
.search-page .search-page-container .matched-info-container .similar-searches-container .similar-searches .similar-search span {
  color: var(--blue-basic);
  font-size: 4.5vw;
  line-height: 5.7vw;
  cursor: pointer;
}
.search-page .search-page-container .matched-info-container .similar-searches-container .similar-searches .similar-search::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background-color: var(--blue-basic);
}
.search-page .search-page-container .close-icon {
  width: 15px;
  height: 15px;
  margin-right: 5px;
  position: relative;
  display: block;
  width: 20px;
  height: 20px;
  background: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/header-common-icons-sprite-c916c930c9.svg#close-icon") center/cover no-repeat;
}
.search-page .search-page-container .results-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.search-page .search-page-container .clear-results-btn {
  background: transparent;
  border: none;
}
.search-page .search-page-container .results-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0;
  margin: 0;
  min-height: 77vh;
  position: relative;
}
.search-page .search-page-container .results-container .load-more {
  position: absolute;
  bottom: -120px;
}
.search-page .search-page-container .suggested-products-container,
.search-page .search-page-container .empty-products-section {
  padding: 15px 19px 10px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.search-page .search-page-container .suggested-products-container .suggested-product-card,
.search-page .search-page-container .empty-products-section .suggested-product-card {
  width: calc(50% - 10px);
  min-height: 245px;
  height: auto;
}
.search-page .search-page-container .suggested-products-container {
  padding: 15px 15px 10px;
}
.search-page .search-page-container .promo-unit-card {
  position: relative;
  margin: 5px;
  -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.search-page .search-page-container .promo-unit-card .promo-unit-link {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
}
.search-page .search-page-container .promo-unit-card .image-contaiener {
  height: 100%;
}
.search-page .search-page-container .promo-unit-card .image-contaiener img {
  width: 100%;
  height: 100%;
}
.search-page .search-page-container .promo-unit-card:hover {
  -webkit-transform: scale(1.01);
          transform: scale(1.01);
}
.search-page .search-page-container .promo-unit-card:hover .image-contaiener {
  -webkit-filter: brightness(80%);
          filter: brightness(80%);
}
.search-page .search-page-container .empty-products-section {
  grid-template-columns: repeat(1, 1fr);
}
.search-page .search-page-container .empty-products-section .text-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  font-family: roc-grotesk, sans-serif;
  font-size: clamp(20px, 1.1vw, 24px);
  line-height: clamp(24px, 1.1vw, 28px);
  width: 100%;
  overflow-wrap: anywhere;
}
.search-page .search-page-container .filters-section {
  position: fixed;
  overflow: hidden;
  z-index: 2000;
  left: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  line-height: 27px;
  font-size: 16px;
  height: 100%;
  max-width: 430px;
  padding-bottom: 15px;
  background: var(--white);
  bottom: -100%;
}
@-webkit-keyframes slideIn {
  from {
    bottom: -100%;
  }
  to {
    bottom: calc(var(--nav-bar-height) * -1);
  }
}
@keyframes slideIn {
  from {
    bottom: -100%;
  }
  to {
    bottom: calc(var(--nav-bar-height) * -1);
  }
}
@-webkit-keyframes slideOut {
  from {
    bottom: calc(var(--nav-bar-height) * -1);
  }
  to {
    bottom: -100%;
  }
}
@keyframes slideOut {
  from {
    bottom: calc(var(--nav-bar-height) * -1);
  }
  to {
    bottom: -100%;
  }
}
.search-page .search-page-container .filters-section.show {
  -webkit-animation: slideIn 0.5s forwards;
          animation: slideIn 0.5s forwards;
}
.search-page .search-page-container .filters-section.hide {
  -webkit-animation: slideOut 0.5s forwards;
          animation: slideOut 0.5s forwards;
}
.search-page .search-page-container .filters-section .applied-filters-container {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}
.search-page .search-page-container .filters-section .applied-filters-container .clear-btn {
  background: transparent;
  color: var(--blue-basic);
  border: none;
  font-size: 14px;
  text-align: left;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 125px;
  padding: 0;
  margin: 10px 0;
}
.search-page .search-page-container .filters-section .applied-filters-container .clear-btn span {
  text-decoration: underline;
  display: inline-block;
  text-align: left;
  width: 100%;
}
.search-page .search-page-container .filters-section .applied-filters-container .star-icon {
  display: none;
  width: 15px;
  height: 14px;
  background: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/general-icons-sprite-dcc6f44af9.svg#star_yellow") no-repeat;
  background-size: contain;
  margin-left: 0;
  margin-right: 3px;
  margin-top: 0;
}
.search-page .search-page-container .filters-section .filters {
  background: var(--white);
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
      flex-grow: 1;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  max-height: calc(100% - 150px);
  padding-top: 10px;
}
.search-page .search-page-container .filters-section .top-title {
  width: 100%;
  font: roc-grotesk, sans-serif;
  font-size: 16px;
  margin-bottom: 0;
  padding: 0;
}
.search-page .search-page-container .filters-section .accordion-content {
  display: none;
  max-height: 250px;
  overflow-y: auto;
}
.search-page .search-page-container .filters-section .accordion-content.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0;
  margin: 0;
}
.search-page .search-page-container .filters-section .filters-list {
  max-height: 100%;
  padding: 0 20px;
  overflow-y: scroll;
  scroll-behavior: smooth;
  scrollbar-width: thin;
}
.search-page .search-page-container .filters-section .filters-list::-webkit-scrollbar {
  width: 2px;
}
.search-page .search-page-container .filters-section .filter-block,
.search-page .search-page-container .filters-section .accordion-filters {
  border-bottom: 1px solid var(--blue-basic);
  padding: 10px 0;
}
.search-page .search-page-container .filters-section .accordion-filters .name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  cursor: pointer;
}
.search-page .search-page-container .filters-section .accordion-filters .name i {
  display: inline-block;
  margin-left: 10px;
  width: 15px;
  background: var(--color-primary);
  -webkit-mask: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/main-icons-sprite-b93235c577.svg#icon-arrow-down") no-repeat;
          mask: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/main-icons-sprite-b93235c577.svg#icon-arrow-down") no-repeat;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  margin-top: 7px;
  height: 15px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.search-page .search-page-container .filters-section .accordion-filters .name i.down {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}
.search-page .search-page-container .filters-section .accordion-filters .name i:hover {
  background: var(--color-accent-gold);
}
.search-page .search-page-container .filters-section .accordion-filters:last-child {
  border-bottom: none;
}
.search-page .search-page-container .filters-section .filter-title {
  font-family: roc-grotesk, sans-serif;
  margin: 0 0 10px;
  font-weight: 600;
}
.search-page .search-page-container .filters-section .input-checkbox-holder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 3px 0;
}
.search-page .search-page-container .filters-section .input-checkbox-holder input[type=checkbox] {
  position: relative;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 16px;
  height: 16px;
  background: var(--white);
  cursor: pointer;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border: 1px solid var(--blue-basic);
  margin-right: 7px;
  margin-top: 0;
  border-radius: 2px;
}
.search-page .search-page-container .filters-section .input-checkbox-holder input[type=checkbox]::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 14px;
  height: 14px;
  pointer-events: none;
}
.search-page .search-page-container .filters-section .input-checkbox-holder input[type=checkbox]:checked::after {
  background: var(--color-neutral-lightest);
  -webkit-mask: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/general-icons-sprite-dcc6f44af9.svg#icon-angle-down") center/contain no-repeat;
          mask: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/general-icons-sprite-dcc6f44af9.svg#icon-angle-down") center/contain no-repeat;
}
.search-page .search-page-container .filters-section .input-checkbox-holder input[type=checkbox]:checked {
  background: var(--blue-basic);
}
.search-page .search-page-container .filters-section .input-checkbox-holder input[type=checkbox]:focus {
  outline: none !important;
}
.search-page .search-page-container .filters-section .input-checkbox-holder label {
  cursor: pointer;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 26px;
  font-weight: initial;
  padding-top: 3px;
}
.search-page .search-page-container .filters-section .input-checkbox-holder label .star-icon {
  display: inline-block;
  width: 15px;
  height: 14px;
  background: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/general-icons-sprite-dcc6f44af9.svg#star_yellow") no-repeat;
  background-size: contain;
  margin-left: 0;
  margin-top: 3px;
}
.search-page .search-page-container .filters-section .rating-block-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  width: 302px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.search-page .search-page-container .filters-section .rating-block-container .input-checkbox-holder {
  margin-right: 5px;
  padding-top: 10px;
}
.search-page .search-page-container .filters-section .rating-block-container .input-checkbox-holder:first-child {
  margin-top: initial;
}
.search-page .search-page-container .filters-section .footer-box {
  position: absolute;
  left: 0;
  bottom: var(--nav-bar-height);
  width: 100vw;
  margin: 0;
  padding-top: 10px;
  background: var(--white);
}
.search-page .search-page-container .filters-section .footer-buttons {
  width: 100%;
  max-width: 430px;
  height: 75px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 1rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: var(--blue-basic);
}
.search-page .search-page-container .filters-section .footer-buttons .clear-btn,
.search-page .search-page-container .filters-section .footer-buttons .apply-btn {
  width: 45%;
  height: 40px;
  color: var(--blue-basic);
  font-size: 15px;
  line-height: 40px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
  background: #F8F8F8;
  cursor: pointer;
}
.search-page .search-page-container .filters-section .footer-buttons .clear-btn:hover,
.search-page .search-page-container .filters-section .footer-buttons .apply-btn:hover {
  -webkit-transform: scale(1.01);
          transform: scale(1.01);
}
.search-page .search-page-container .filters-section .footer-buttons .apply-btn {
  background: var(--yellow-basic);
}
.search-page .search-page-container .price-range-section-container {
  margin-top: 20px;
  width: 100%;
}
.search-page .search-page-container .price-range-section-container .slider-track {
  width: 100%;
  height: 5px;
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  border-radius: 5px;
}
.search-page .search-page-container .price-range-section-container input[type=range] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  outline: none;
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  background-color: transparent;
  pointer-events: none;
  z-index: 1;
}
.search-page .search-page-container .price-range-section-container .slider-track {
  width: 100%;
  height: 5px;
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  border-radius: 5px;
}
.search-page .search-page-container .price-range-section-container input[type=range]::-webkit-slider-runnable-track {
  -webkit-appearance: none;
  height: 5px;
}
.search-page .search-page-container .price-range-section-container input[type=range]::-moz-range-track {
  -moz-appearance: none;
  height: 5px;
}
.search-page .search-page-container .price-range-section-container input[type=range]::-ms-track {
  appearance: none;
  height: 5px;
}
.search-page .search-page-container .price-range-section-container input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 1.7em;
  width: 1.7em;
  background-color: var(--white);
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
          box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  margin-top: -9px;
  pointer-events: auto;
  border-radius: 50%;
}
.search-page .search-page-container .price-range-section-container input[type=range]::-moz-range-thumb {
  -webkit-appearance: none;
  height: 1.7em;
  width: 1.7em;
  cursor: pointer;
  border-radius: 50%;
  background-color: var(--white);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  pointer-events: auto;
  border: none;
}
.search-page .search-page-container .price-range-section-container input[type=range]::-ms-thumb {
  appearance: none;
  height: 1.7em;
  width: 1.7em;
  cursor: pointer;
  border-radius: 50%;
  background-color: var(--white);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  pointer-events: auto;
}
.search-page .search-page-container .wrapper,
.search-page .search-page-container .range-labels {
  width: 234px;
  margin: 0;
}
.search-page .search-page-container .range-labels {
  font-size: 14px;
  line-height: 17px;
  text-align: right;
  margin-bottom: 10px;
  padding-right: 10px;
}
.search-page .search-page-container .range-slider {
  position: relative;
  width: 100%;
  display: grid;
  margin-bottom: 0;
}
.search-page .search-page-container .range-slider .range-labels {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 10px;
}
.search-page .search-page-container .range-slider .range-labels .range-label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 16px;
  color: white;
  line-height: 1;
}
.search-page .search-page-container .range-slider .range-labels .range-label-start {
  -ms-flex-item-align: start;
      align-self: flex-start;
}
.search-page .search-page-container .range-slider .range-labels .range-label-end {
  -ms-flex-item-align: end;
      align-self: flex-end;
}
.search-page .search-page-container .labels-box {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-top: 35px;
}
.search-page .search-page-container .add-to-filter-price {
  display: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

@media screen and (min-width: 768px) {
  .search-page .search-page-container .filter-nav-section .nav-item {
    height: 35px;
    width: 70%;
  }
  .search-page .search-page-container .filter-nav-section .nav-item span {
    font-size: 20px;
  }
  .search-page .search-page-container .filter-nav-section .nav-item.result-info-block span {
    font-size: 18px;
    min-height: 35px;
  }
  .search-page .search-page-container .filter-nav-section .nav-item.filter-btn {
    width: 22%;
  }
  @-webkit-keyframes slideIn {
    from {
      bottom: -100%;
    }
    to {
      bottom: calc(var(--nav-bar-height) * -1);
    }
  }
  @keyframes slideIn {
    from {
      bottom: -100%;
    }
    to {
      bottom: calc(var(--nav-bar-height) * -1);
    }
  }
  @-webkit-keyframes slideOut {
    from {
      bottom: -155px;
    }
    to {
      bottom: -100%;
    }
  }
  @keyframes slideOut {
    from {
      bottom: -155px;
    }
    to {
      bottom: -100%;
    }
  }
  .search-page .search-page-container .filters-section .filters {
    max-height: calc(100% - 160px);
    padding-top: 5px;
  }
  .search-page .search-page-container .filters-section .filters-list {
    overflow-y: auto;
  }
  .search-page .search-page-container .filters-section .footer-box {
    bottom: 75px;
    width: 100%;
    margin: 0;
  }
  .search-page .search-page-container .filters-section .footer-buttons {
    width: 100%;
  }
  .search-page .search-page-container .filters-section .footer-buttons .apply-btn,
  .search-page .search-page-container .filters-section .footer-buttons .clear-btn {
    width: 40%;
  }
}
@media screen and (min-width: 992px) {
  .search-page {
    max-width: 1905px;
    margin: 0 auto;
  }
  .search-page ::-webkit-scrollbar {
    width: 2px;
  }
  .search-page .search-page-container {
    padding: 0 0 45px 0;
  }
  .search-page .search-page-container .filter-nav-section {
    display: none;
  }
  .search-page .search-page-container .search-page-title {
    font-size: 14px;
  }
  .search-page .search-page-container .matched-info-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition: top 1s ease-in-out;
    transition: top 1s ease-in-out;
    background: var(--color-neutral-lightest);
    position: sticky;
    top: 90px;
    z-index: 1001;
    width: 100%;
    padding-top: 40px;
    padding-bottom: 10px;
    left: 0;
    padding-left: 5.37109375vw;
  }
  .search-page .search-page-container .matched-info-container .results-title {
    margin-bottom: 10px;
  }
  .search-page .search-page-container .matched-info-container .title {
    font-size: 24px;
    line-height: 24px;
  }
  .search-page .search-page-container .matched-info-container .similar-searches-container .similar-searches {
    font-size: 16px;
    line-height: 24px;
    padding: 10px 0 15px;
  }
  .search-page .search-page-container .matched-info-container .similar-searches-container .similar-searches .similar-search span {
    color: var(--blue-basic);
    font-size: 16px;
    line-height: 24px;
    cursor: pointer;
  }
  .search-page .search-page-container .results-container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    width: 100%;
    padding: 0 40px;
  }
  .search-page .search-page-container .suggested-products-container,
  .search-page .search-page-container .empty-products-section {
    width: 67.59vw;
    padding-top: 0;
    padding-left: 20px;
  }
  .search-page .search-page-container .suggested-products-container .suggested-product-card,
  .search-page .search-page-container .empty-products-section .suggested-product-card {
    width: calc(33.3333333333% - 10px);
  }
  .search-page .search-page-container .empty-products-section {
    grid-template-columns: repeat(1, 1fr);
  }
  .search-page .search-page-container .empty-products-section .text-info {
    font-size: clamp(24px, 1.1vw, 28px);
    line-height: clamp(28px, 1.1vw, 32px);
  }
  .search-page .search-page-container .remove-applied-item-btn {
    width: 15px;
    height: 100%;
    border: none;
    background: transparent;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: var(--blue-basic);
  }
  .search-page .search-page-container .remove-applied-item-btn:hover {
    color: var(--yellow-basic);
  }
  .search-page .search-page-container .filters-section {
    width: 26.63vw;
    line-height: 27px;
    font-size: 16px;
    max-width: 355px;
    z-index: 1000;
    background: var(--color-neutral-lighter);
    position: relative;
    -webkit-transition: top 1s ease-in-out;
    transition: top 1s ease-in-out;
  }
  .search-page .search-page-container .filters-section .applied-filters-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .search-page .search-page-container .filters-section .applied-filters-container .applied-filters {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding-top: 15px;
  }
  .search-page .search-page-container .filters-section .applied-filters-container .applied-filters .applied-item-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-right: 7px;
    margin-bottom: 7px;
    font-size: 14px;
    line-height: 14px;
    padding: 2px 8px;
    color: var(--blue-basic);
    border: 1px solid var(--blue-basic);
    border-radius: 30px;
    font-family: Poppins, sans-serif;
    min-height: 24px;
    cursor: pointer;
  }
  .search-page .search-page-container .filters-section .applied-filters-container .applied-filters .applied-item-box span {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-right: 4px;
    font-size: 14px;
    line-height: 15px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .search-page .search-page-container .filters-section .applied-filters-container .applied-filters .applied-item-box span .star-icon {
    width: 15px;
    height: 13px;
  }
  .search-page .search-page-container .filters-section .applied-filters-container .applied-filters .applied-item-box span .radio-input-all-description {
    font-size: 10px;
    line-height: 12px;
    margin-left: 2px;
    margin-right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .search-page .search-page-container .filters-section .applied-filters-container .clear-btn {
    margin: 12px 0;
    font-size: 13px;
  }
  .search-page .search-page-container .filters-section .applied-filters-container .clear-btn span {
    text-decoration: underline;
    display: inline-block;
    text-align: left;
    width: 100%;
  }
  .search-page .search-page-container .filters-section .filters {
    background: var(--color-neutral-lighter);
    max-height: initial;
  }
  .search-page .search-page-container .filters-section .top-title {
    display: none;
  }
  .search-page .search-page-container .filters-section .accordion-content {
    display: none;
    background: var(--color-neutral-lighter);
  }
  .search-page .search-page-container .filters-section .accordion-content.price-range-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    cursor: initial;
  }
  .search-page .search-page-container .filters-section .filters-list {
    background: var(--color-neutral-lighter);
    overflow-y: auto;
    padding-left: 15px;
  }
  .search-page .search-page-container .filters-section .filter-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 5px;
  }
  .search-page .search-page-container .filters-section .filter-block,
  .search-page .search-page-container .filters-section .accordion-filters {
    border-bottom: 1px solid var(--blue-basic);
    padding: 11px 0;
    width: 19.7vw;
  }
  .search-page .search-page-container .filters-section .accordion-filters .name i {
    display: inline-block;
    width: 13px;
  }
  .search-page .search-page-container .filters-section .accordion-filters .name i.price-range-list {
    display: none;
  }
  .search-page .search-page-container .filters-section .sort-block {
    display: none;
  }
  .search-page .search-page-container .filters-section .input-checkbox-holder {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 3px 0;
  }
  .search-page .search-page-container .filters-section .input-checkbox-holder:first-child {
    margin-top: 10px;
  }
  .search-page .search-page-container .filters-section .input-checkbox-holder input[type=checkbox] {
    width: 14px;
    height: 14px;
    margin-right: 5px;
  }
  .search-page .search-page-container .filters-section .input-checkbox-holder input[type=checkbox]::after {
    width: 12px;
    height: 12px;
  }
  .search-page .search-page-container .filters-section .input-checkbox-holder input[type=checkbox]:checked {
    background: var(--white);
  }
  .search-page .search-page-container .filters-section .input-checkbox-holder input[type=checkbox]:checked::after {
    background: var(--color-primary);
  }
  .search-page .search-page-container .filters-section .input-checkbox-holder label {
    font-size: 14px;
    line-height: 27px;
    padding-top: 0;
  }
  .search-page .search-page-container .filters-section .input-checkbox-holder label .star-icon {
    width: 15px;
    height: 13px;
  }
  .search-page .search-page-container .filters-section .rating-block-container {
    width: 100%;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: 10px;
  }
  .search-page .search-page-container .filters-section .rating-block-container .input-checkbox-holder {
    padding-top: 0;
    margin-right: 15px;
  }
  .search-page .search-page-container .filters-section .rating-block-container .input-checkbox-holder:first-child {
    margin-top: 3px;
  }
  .search-page .search-page-container .filters-section .footer-box {
    display: none;
  }
  .search-page .search-page-container .filters-section .footer-buttons .clear-btn,
  .search-page .search-page-container .filters-section .footer-buttons .apply-btn {
    font-family: roc-grotesk, sans-serif;
    font-weight: 500;
  }
  .search-page .search-page-container .filters-section.sort-desktop {
    background: var(--white);
    position: absolute;
    top: 63px;
    left: initial;
    right: 0;
    overflow: visible;
    height: 45px;
    min-width: 200px;
    width: initial;
    max-width: 370px;
  }
  .search-page .search-page-container .filters-section.sort-desktop .filters,
  .search-page .search-page-container .filters-section.sort-desktop .filters-list,
  .search-page .search-page-container .filters-section.sort-desktop .accordion-content {
    background: var(--white);
  }
  .search-page .search-page-container .filters-section.sort-desktop .filters {
    max-height: initial;
  }
  .search-page .search-page-container .filters-section.sort-desktop .filters-list {
    overflow-y: initial;
    max-height: initial;
    height: auto;
  }
  .search-page .search-page-container .filters-section.sort-desktop .sort-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: var(--white);
  }
  .search-page .search-page-container .filters-section.sort-desktop .accordion-filters {
    position: relative;
    border-bottom: none;
    padding: 12px 40px 12px 0;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    width: 100%;
  }
  .search-page .search-page-container .filters-section.sort-desktop .accordion-filters .name i {
    display: inline-block;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    margin-top: 7px;
    height: 15px;
  }
  .search-page .search-page-container .filters-section.sort-desktop .accordion-filters .name i.down {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
    webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
  }
  .search-page .search-page-container .filters-section.sort-desktop .accordion-filters .name.selected-sort {
    min-width: 220px;
  }
  .search-page .search-page-container .filters-section.sort-desktop .accordion-filters .accordion-content {
    position: absolute;
    top: 50px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    min-height: 185px;
    background: var(--color-neutral-lighter);
    width: 100%;
    padding-right: 20px;
    -webkit-box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.3);
            box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.3);
    border-radius: 6px;
    left: -24px;
  }
  .search-page .search-page-container .filters-section.sort-desktop .accordion-filters .filter-title {
    font-size: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .search-page .search-page-container .filters-section.sort-desktop .accordion-filters .filter-title .checked-sort-value {
    font-family: freight-sans-pro, sans-serif;
    font-weight: 400;
  }
  .search-page .search-page-container .filters-section.sort-desktop .accordion-filters .input-checkbox-holder {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .search-page .search-page-container .filters-section.sort-desktop .accordion-filters .input-checkbox-holder input[type=checkbox] {
    display: none;
  }
  .search-page .search-page-container .filters-section.sort-desktop .accordion-filters .input-checkbox-holder input[type=checkbox]::after {
    display: none;
  }
  .search-page .search-page-container .filters-section.sort-desktop .accordion-filters .input-checkbox-holder input[type=checkbox]:checked + label {
    font-family: roc-grotesk, sans-serif;
    font-weight: 600;
    color: #BCBCBC;
  }
  .search-page .search-page-container .filters-section.sort-desktop .accordion-filters .input-checkbox-holder label {
    line-height: 24px;
  }
  .search-page .search-page-container .wrapper,
  .search-page .search-page-container .range-labels {
    width: 100%;
  }
  .search-page .search-page-container .range-labels {
    font-size: 13px;
    text-align: left;
    padding-right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .search-page .search-page-container .add-to-filter-price {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    border: none;
    background: var(--blue-basic);
    color: var(--white);
    cursor: pointer;
    border-radius: 20px;
    font-size: 13px;
    padding: 5px;
    text-align: center;
    width: 50px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 7px;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
@media screen and (min-width: 1200px) {
  .search-page .search-page-container .filters-section .filters-list {
    padding-left: 30px;
  }
  .search-page .search-page-container .price-range-section-container {
    margin-top: 25px;
  }
  .search-page .search-page-container .range-labels {
    font-size: 14px;
    text-align: right;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .search-page .search-page-container .add-to-filter-price {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
    margin-right: 0;
    margin-top: 0;
  }
}
@media screen and (min-width: 1440px) {
  .search-page .search-page-container .suggested-products-container .suggested-product-card {
    width: calc(25% - 10px);
  }
  .search-page .search-page-container .filters-section {
    width: 23.63vw;
  }
  .search-page .search-page-container .filters-section .filter-title {
    font-size: 16px;
  }
  .search-page .search-page-container .filters-section .filter-block,
  .search-page .search-page-container .filters-section .accordion-filters {
    width: 17.8vw;
    max-width: 280px;
  }
  .search-page .search-page-container .filters-section .accordion-filters .name i {
    width: 15px;
  }
  .search-page .search-page-container .filters-section.sort-desktop .accordion-filters {
    max-width: initial;
  }
  .search-page .search-page-container .suggested-products-container,
  .search-page .search-page-container .empty-products-section {
    width: 73vw;
  }
}
@media screen and (min-width: 1600px) {
  .search-page .search-page-container .suggested-products-container,
  .search-page .search-page-container .empty-products-section {
    width: 74.59vw;
  }
}
@media screen and (min-width: 1920px) {
  .search-page .search-page-container .matched-info-container {
    padding-left: 66px;
    left: calc((100% - 1820px) / 2);
    -webkit-box-shadow: none;
            box-shadow: none;
    top: 90px;
    width: 1795px;
    padding-top: 55px;
  }
  .search-page .search-page-container .matched-info-container .results-title {
    margin-bottom: 20px;
  }
  .search-page .search-page-container .matched-info-container .title {
    font-size: 32px;
    line-height: 27px;
  }
  .search-page .search-page-container .matched-info-container .similar-searches-container .similar-searches {
    font-size: 20px;
    line-height: 27px;
    padding: 10px 0 20px;
  }
  .search-page .search-page-container .matched-info-container .similar-searches-container .similar-searches .similar-search span {
    font-size: 20px;
    line-height: 27px;
  }
  .search-page .search-page-container .suggested-products-container,
  .search-page .search-page-container .empty-products-section {
    width: 1425px;
    padding-left: 15px;
  }
  .search-page .search-page-container .filters-section {
    width: 355px;
    line-height: 27px;
    padding: 0 10px;
  }
  .search-page .search-page-container .filters-section .filter-title {
    font-size: 21px;
  }
  .search-page .search-page-container .filters-section .filter-block,
  .search-page .search-page-container .filters-section .accordion-filters {
    width: 275px;
    padding: 20px 0;
  }
  .search-page .search-page-container .filters-section .input-checkbox-holder input[type=checkbox] {
    width: 17px;
    height: 17px;
  }
  .search-page .search-page-container .filters-section .input-checkbox-holder input[type=checkbox]::after {
    width: 15px;
    height: 15px;
  }
  .search-page .search-page-container .filters-section .input-checkbox-holder label {
    font-size: 17px;
    line-height: 31px;
  }
  .search-page .search-page-container .filters-section .input-checkbox-holder label .star-icon {
    width: 16px;
    height: 15px;
  }
  .search-page .search-page-container .filters-section .applied-filters-container .applied-filters {
    padding-top: 20px;
  }
  .search-page .search-page-container .filters-section .applied-filters-container .applied-filters .applied-item-box {
    font-size: 16px;
    line-height: 16px;
    min-height: 26px;
  }
  .search-page .search-page-container .filters-section .applied-filters-container .applied-filters .applied-item-box span {
    font-size: 16px;
    line-height: 16px;
  }
  .search-page .search-page-container .filters-section .applied-filters-container .applied-filters .applied-item-box span .radio-input-all-description {
    font-size: 15px;
    line-height: 15px;
  }
  .search-page .search-page-container .filters-section .applied-filters-container .applied-filters .applied-item-box .remove-applied-item-btn {
    width: 20px;
  }
  .search-page .search-page-container .filters-section .applied-filters-container .clear-btn {
    width: 100px;
    font-size: 14px;
  }
  .search-page .search-page-container .filters-section .footer-buttons {
    padding: 16px;
  }
  .search-page .search-page-container .filters-section .footer-buttons .clear-btn,
  .search-page .search-page-container .filters-section .footer-buttons .apply-btn {
    font-size: 17px;
  }
  .search-page .search-page-container .filters-section.sort-desktop {
    top: 90px;
    width: 100%;
    max-width: 445px;
  }
  .search-page .search-page-container .filters-section.sort-desktop .accordion-filters {
    padding-right: 0;
  }
  .search-page .search-page-container .filters-section.sort-desktop .accordion-filters .filter-title {
    font-size: 21px;
  }
  .search-page .search-page-container .filters-section.sort-desktop .accordion-filters .input-checkbox-holder label {
    line-height: 27px;
  }
  .search-page .search-page-container .filters-section.sort-desktop .accordion-filters .accordion-content {
    min-height: 200px;
    left: 10px;
  }
}
/*# sourceMappingURL=frontend-search-page.min.css.map */
