@keyframes beat {
  to {
    transform: scale(1.4);
  }
}
main {
  padding-top: 130px;
}
main .ss {
  position: relative;
  z-index: 1;
  width: calc(100% - 60px);
  max-width: 400px;
  margin: 0 auto;
  transition: left 0.3s ease;
}
main .ss input {
  display: block;
  width: 100%;
  padding: 0 40px 10px 0;
  background: none;
  outline: none;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid #fff;
}
main .ss input::-moz-placeholder {
  color: #fff;
  font-size: 14px;
  opacity: 1;
}
main .ss input, main .ss input::placeholder {
  color: #fff;
  font-size: 14px;
  opacity: 1;
}
main .ss::before {
  content: "";
  width: 20px;
  height: 20px;
  background: url("../img/web/icons/search.webp");
  background-size: cover;
  position: absolute;
  bottom: 10px;
  right: 0;
  z-index: 2;
  pointer-events: none;
}
main .ss .search_box {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 0px;
  overflow: scroll;
  color: #fff;
  transition: all 0.3s ease;
  padding-top: 10px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
main .ss .search_box::-webkit-scrollbar {
  display: none;
}
main .ss .search_box.active {
  height: 300px;
}
main .ss .search_box.active .sbh::after {
  content: "";
  position: fixed;
  top: 160px;
  left: 0;
  width: 100%;
  height: 300px;
  background: rgba(0, 0, 0, 0.3019607843);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  z-index: -1;
  border-radius: 15px;
  transition: all 0.3s ease;
}
main .ss .search_box p.s {
  display: none;
}
main .ss .search_box.searching {
  height: 100px;
}
main .ss .search_box.searching p.s {
  display: block;
  text-align: center;
  color: #fff;
  font-weight: bold;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  padding-top: 20px;
  pointer-events: none;
}
main .ss .search_box .sbh {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 0;
}
main .ss .search_box .sbh p.em {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
  text-align: center;
  padding-top: 20px;
  font-size: 14px;
}
main .ss .search_box .sbh .box {
  padding: 20px;
}
main .ss .search_box .sbh .box p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5019607843);
  padding-bottom: 15px;
}
main .ss .search_box .sbh .box a {
  text-decoration: none;
  color: #fff;
  display: flex;
  align-items: center;
  max-width: -moz-max-content;
  max-width: max-content;
  font-size: 14px;
}
main .ss .search_box .sbh .box a:not(:last-of-type) {
  margin-bottom: 15px;
}
main .ss .search_box .sbh .box a img {
  max-width: 50px;
  margin-right: 10px;
}
main .info {
  width: calc(100% - 60px);
  max-width: 400px;
  margin: 40px auto 0;
  position: relative;
  z-index: 0;
}
main .info .i p {
  text-align: center;
}
main .info .i .cs {
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  font-size: 12px;
}
main .info .i p.se {
  color: #fff;
  font-size: 32px;
  font-family: "Oswald";
  margin: 5px 0;
  text-transform: uppercase;
}
main .info .i p.li {
  color: #fff;
  font-size: 12px;
  font-weight: bold;
}
main .info .filters {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
}
main .info .filters button {
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
}
main .info .filters button#brand {
  color: #fff;
  font-weight: bold;
  padding-bottom: 3px;
  border-bottom: 1px solid #fff;
}
main .info .filters button#filter img {
  width: 25px;
}
main .info .filters button#filter span {
  display: none;
}
main .offers {
  position: relative;
  z-index: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
main .offers p.emp {
  text-align: center;
  color: #fff;
  font-size: 14px;
  padding: 100px 0 200px;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
main .offers::before {
  content: "Loading..";
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  font-family: "Oswald";
  font-weight: bold;
  color: #fff;
  font-size: 36px;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: opacity 0.1s linear;
}
main .offers::after {
  content: "";
  height: calc(100% - 50px);
  width: 100%;
  position: absolute;
  bottom: 10px;
  left: 0;
  background: rgba(0, 0, 0, 0.5019607843);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: opacity 0.1s linear;
}
main .offers.load::before, main .offers.load::after {
  opacity: 1;
  pointer-events: initial;
  -webkit-user-select: initial;
     -moz-user-select: initial;
          user-select: initial;
}
main .o {
  padding: 40px 0 0;
  position: relative;
  z-index: 0;
}
main .o .header {
  width: 100%;
  aspect-ratio: 1/0.65;
  overflow: hidden;
  position: relative;
}
main .o .header::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 90%);
}
main .o .header img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
main .o button#fav {
  width: 50px;
  height: 50px;
  background: #000;
  position: absolute;
  z-index: 10;
  top: 40px;
  right: 0;
  border-bottom-left-radius: 10px;
  padding: 5px;
  outline: none;
  border: none;
  cursor: pointer;
}
main .o button#fav svg path.heart {
  fill: #000;
  stroke: #fff;
  stroke-miterlimit: 10;
  stroke-width: 8px;
  transition: all 0.1s linear;
}
main .o button#fav.f svg path.heart {
  animation: beat 0.25s;
  animation-iteration-count: 4;
  stroke: #fff;
  animation-direction: alternate;
  transform-origin: center;
  fill: #fff;
}
main .o .data {
  padding: 40px 30px;
  color: #fff;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.5019607843);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
main .o .data .b div:not(.rms) p {
  font-size: 12px;
}
main .o .data .b .rms {
  display: flex;
  margin-top: 10px;
}
main .o .data .b .rms .rm {
  display: flex;
  align-items: center;
  margin-right: 20px;
}
main .o .data .b .rms .rm img {
  height: 20px;
  margin-right: 3px;
}
main .o .data .b p.price {
  font-size: 24px;
  font-weight: bold;
  font-family: "Oswald";
  margin-bottom: 10px;
  line-height: 1;
}
main .o .data .b p.crypto_price_field {
  display: flex;
  align-items: center;
  font-size: 14px;
  margin-bottom: 15px;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
main .o .data .b p.crypto_price_field img {
  width: 20px;
  margin-right: 5px;
}
main .o .data .b p.crypto_price_field.hidden {
  opacity: 0;
  height: 0px;
}
main .o .data .b p:not(.price, .crypto_price_field) {
  margin-top: 8px;
}
main .o .data a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
main .pages {
  width: 200px;
  height: 33px;
  margin: 30px auto 10px;
  display: flex;
  justify-content: center;
}
main .pages button.sk {
  display: flex;
  align-items: center;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
}
main .pages button.sk img {
  height: 15px;
}
main .pages button.sk:nth-of-type(1) img {
  transform: rotate(180deg);
}
main .pages button.sk:nth-of-type(1) img:nth-of-type(2) {
  margin-left: -2px;
}
main .pages button.sk:nth-of-type(2) img:nth-of-type(1) {
  margin-right: -2px;
}
main .pages .phol {
  padding: 0 20px;
}
main .pages .phol button {
  width: 20px;
  height: 33px;
  text-align: center;
  position: relative;
  z-index: 0;
  color: #fff;
  font-weight: bold;
  font-family: "Oswald";
  font-size: 16px;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  transition: opacity 0.4s ease;
  opacity: 0.6;
}
main .pages .phol button:nth-of-type(even) {
  margin: 0 16px;
}
main .pages .phol button.c {
  opacity: 1;
}
main .dynamic_pages {
  width: 200px;
  height: 54px;
  margin: 30px auto 10px;
  display: flex;
  justify-content: center;
  background: #000;
  position: fixed;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 0 13px;
  border-radius: 15px;
  transition: all 0.4s ease;
}
main .dynamic_pages:not(.active) {
  bottom: -70px;
}
main .dynamic_pages button.sk {
  display: flex;
  align-items: center;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
}
main .dynamic_pages button.sk img {
  height: 15px;
}
main .dynamic_pages button.sk:nth-of-type(1) img {
  transform: rotate(180deg);
}
main .dynamic_pages button.sk:nth-of-type(1) img:nth-of-type(2) {
  margin-left: -2px;
}
main .dynamic_pages button.sk:nth-of-type(2) img:nth-of-type(1) {
  margin-right: -2px;
}
main .dynamic_pages .phol {
  padding: 0 20px;
}
main .dynamic_pages .phol button {
  width: 20px;
  height: 33px;
  text-align: center;
  position: relative;
  z-index: 0;
  color: #fff;
  font-weight: bold;
  font-family: "Oswald";
  font-size: 16px;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  transition: opacity 0.4s ease;
  opacity: 0.6;
}
main .dynamic_pages .phol button:nth-of-type(even) {
  margin: 0 16px;
}
main .dynamic_pages .phol button.c {
  opacity: 1;
}
main .special_offers {
  margin: 60px 0 80px;
  position: relative;
  z-index: 0;
}
main .special_offers .controls {
  position: absolute;
  top: calc(25% + 30px);
  left: 0;
  z-index: 1;
  transform: translateY(-50%);
  width: 100%;
}
main .special_offers .controls button {
  position: absolute;
  width: 45px;
  aspect-ratio: 1;
  background: none;
  outline: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.5s ease;
}
main .special_offers .controls button:nth-of-type(1) {
  left: 10px;
  transform: rotate(180deg);
}
main .special_offers .controls button:nth-of-type(2) {
  right: 10px;
}
main .special_offers .controls button.hidden {
  opacity: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
main .special_offers .holder {
  display: flex;
  overflow-x: hidden;
  transition: all 0.5s ease;
}
main .special_offers .holder .o {
  flex-shrink: 0;
  width: 100%;
}
main .popular {
  padding-top: 40px;
  position: relative;
  z-index: 0;
}
main .popular h3 {
  font-size: 32px;
  text-align: center;
  color: #fff;
}
main .popular button {
  position: absolute;
  right: 15px;
  top: 62.5%;
  z-index: 1;
  transform: translateY(-50%);
  background: none;
  outline: none;
  border: none;
}
main .popular button img {
  width: 20px;
}
main .popular .holder {
  display: flex;
  padding: 30px 0;
  position: relative;
  z-index: 0;
  overflow-x: hidden;
}
main .popular .holder .search {
  flex-shrink: 0;
  width: 100%;
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
}
main .popular .holder .search img {
  width: 40%;
}
main .popular .holder .search .data {
  color: #fff;
  padding: 0 30px 0 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}
main .popular .holder .search .data p {
  font-size: 12px;
}
main .popular .holder .search .data a {
  max-width: -moz-max-content;
  max-width: max-content;
  text-decoration: none;
  color: #fff;
  border-bottom: 1px solid #fff;
  font-weight: bold;
  font-size: 14px;
}

.filters_holder {
  display: none;
  position: fixed;
  z-index: 999;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  opacity: 0;
  width: 1px;
  height: 100%;
  background: rgba(0, 0, 0, 0.5019607843);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  padding: 40px;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
  transition: all 0.3s ease;
}
.filters_holder::-webkit-scrollbar {
  display: none;
}
.filters_holder.show {
  display: block;
}
.filters_holder.active {
  width: 100%;
  opacity: 1;
}
.filters_holder .head, .filters_holder .holder, .filters_holder .buttons {
  max-width: 400px;
  margin: 0 auto;
}
.filters_holder .head {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.filters_holder .head p {
  font-size: 18px;
  color: #fff;
}
.filters_holder .head img {
  position: absolute;
  left: 50%;
  height: 20px;
  transform: translateX(-50%);
}
.filters_holder .head button {
  position: relative;
  z-index: 0;
  width: 25px;
  height: 25px;
  cursor: pointer;
  background: none;
  outline: none;
  border: none;
}
.filters_holder .head button div {
  position: absolute;
  width: 20px;
  height: 3px;
  background: #fff;
  border-radius: 10px;
  top: 50%;
  left: 50%;
}
.filters_holder .head button div:nth-of-type(1) {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.filters_holder .head button div:nth-of-type(2) {
  transform: translate(-50%, -50%) rotate(45deg);
}
.filters_holder .holder {
  padding-top: 60px;
}
.filters_holder .holder p {
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
}
.filters_holder .holder a {
  display: block;
  max-width: -moz-max-content;
  max-width: max-content;
  margin: 0 60px 30px 0;
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
}
.filters_holder .holder .f {
  width: 100%;
}
.filters_holder .holder .f .dropdown, .filters_holder .holder .f select {
  width: 100%;
  font-size: 14px;
  color: #fff;
  padding: 10px 8px 10px 0;
  font-weight: normal;
  background: none;
  outline: none;
  border: none;
  -webkit-appearance: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #fff;
  margin-bottom: 30px;
}
.filters_holder .holder .f .dropdown option, .filters_holder .holder .f select option {
  background: #fff;
  color: #000;
}
.filters_holder .holder .f .dropdown.disabled, .filters_holder .holder .f select.disabled {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  opacity: 0.55;
}
.filters_holder .buttons {
  display: flex;
  align-items: center;
  width: 100%;
}
.filters_holder .buttons a, .filters_holder .buttons button {
  display: block;
  max-width: -moz-max-content;
  max-width: max-content;
  font-size: 14px;
  padding: 8px 6px;
  font-weight: bold;
  color: #fff;
  height: 35px;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  text-decoration: none;
}
.filters_holder .buttons a {
  margin: 0 40px 0 0;
}

.ranges .r {
  margin-bottom: 30px;
}
.ranges .r p {
  margin: 0 0 5px;
  font-weight: normal;
}
.ranges .r .minmax {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ranges .r .minmax span {
  color: #fff;
  padding-top: 15px;
  font-size: 14px;
}
.ranges .r .minmax input {
  width: 40%;
  border-radius: 0;
  border: none;
  outline: none;
  background: none;
  border-bottom: 1px solid #fff;
  margin-top: 15px;
  padding: 0 5px 5px;
}
.ranges .r .minmax input::-moz-placeholder {
  color: #fff;
}
.ranges .r .minmax input, .ranges .r .minmax input::placeholder {
  color: #fff;
}
.ranges .r input.i {
  width: 100%;
  border-radius: 0;
  border: none;
  outline: none;
  background: none;
  border-bottom: 1px solid #fff;
  margin-top: 15px;
  padding: 0 10px 5px;
}
.ranges .r input.i::-moz-placeholder {
  color: #fff;
}
.ranges .r input.i, .ranges .r input.i::placeholder {
  color: #fff;
}

.toggles[data-input=brand], .toggles[data-input=body], .toggles[data-input=drive], .toggles[data-input=outdoor], .toggles[data-input=indoor], .toggles[data-input=view], .toggles[data-input=type], .toggles[data-input=dialcolor], .toggles[data-input=dials], .toggles[data-input=glass], .toggles[data-input=material], .toggles[data-input=bezels], .toggles[data-input=movement], .toggles[data-input=worn], .toggles[data-input=case], .toggles[data-input=gender], .toggles[data-input=category], .toggles[data-input=gemstone], .toggles[data-input=color], .toggles[data-input=framedoptions], .toggles[data-input=colorpalette], .toggles[data-input=orientation], .toggles[data-input=style], .toggles[data-input=medium] {
  margin-top: 10px;
}
.toggles .t {
  margin-bottom: 40px;
}
.toggles .t p {
  margin: 0 0 10px;
  clear: both;
}
.toggles .t .i {
  display: inline-block;
  width: 50%;
  float: left;
  margin-bottom: 5px;
}
.toggles .t .i label {
  color: #fff;
  font-size: 14px;
  padding-left: 5px;
}
.toggles .t .clear {
  width: 100%;
  clear: both;
}
.toggles button {
  padding: 10px 20px;
  background: #fff;
  color: #000;
  border: none;
  outline: none;
  margin-top: 20px;
  border-radius: 10px;
  cursor: pointer;
}

.ranges .r p, .toggles .t p {
  font-size: 16px;
}

div.filter_toggles {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 400px;
  z-index: 999;
  height: 600px;
  max-height: 80vh;
  padding: 40px 30px;
  background: #000;
  border-radius: 10px;
  color: #fff;
  transition: all 0.3s ease;
}
div.filter_toggles:not(.active) {
  opacity: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transform: translate(-50%, calc(-50% + 100px));
}
div.filter_toggles .toggles:not(.active) {
  display: none;
}
div.filter_toggles .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0 20px;
}
div.filter_toggles .header p {
  font-weight: bold;
  font-size: 18px;
}
div.filter_toggles .header button {
  width: 20px;
  height: 20px;
  position: relative;
  z-index: 0;
  background: none;
  outline: none;
  border: none;
  cursor: pointer;
}
div.filter_toggles .header button div {
  width: 20px;
  height: 1px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
div.filter_toggles .header button div:nth-of-type(2) {
  transform: translate(-50%, -50%) rotate(-45deg);
}
div.filter_toggles input {
  width: 100%;
  padding: 8px 10px;
  outline: none;
  border: none;
  border-radius: 8px;
  position: sticky;
  top: 0;
  margin-bottom: 20px;
}
div.filter_toggles .holder {
  height: 100%;
  overflow-y: scroll;
  padding-bottom: 20px;
}
div.filter_toggles .holder div.toggle {
  font-size: 14px;
  margin-bottom: 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
div.filter_toggles .holder div.toggle .checkbox {
  width: 12px;
  height: 12px;
  display: flex;
  align-items: center;
  margin: 0 10px;
  position: relative;
  z-index: 0;
}
div.filter_toggles .holder div.toggle .checkbox::before {
  content: "";
  width: 20px;
  height: 20px;
  border: 1px solid rgba(255, 255, 255, 0.5019607843);
  background: none;
  border-radius: 5px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
div.filter_toggles .holder div.toggle .checkbox svg {
  width: 100%;
  height: 100%;
  fill: rgba(255, 255, 255, 0);
  transition: all 0.3s ease;
}
div.filter_toggles .holder div.toggle.checked .checkbox::before {
  border-color: #fff;
}
div.filter_toggles .holder div.toggle.checked .checkbox svg {
  fill: #fff;
}
div.filter_toggles .holder div.toggle.h {
  display: none;
}

@media screen and (min-width: 600px) {
  main .offers {
    padding: 40px 0 0;
  }
  main .o {
    padding: 0;
  }
  main .o .data .b {
    padding-right: 10px;
  }
  main .o .data .b p.price {
    font-size: 20px;
  }
  main .o .data .b div p {
    font-size: 10px;
  }
  main .o button#fav {
    top: 0;
  }
  main .special_offers .holder {
    margin-top: 30px;
  }
}
@media screen and (min-width: 700px) {
  main .special_offers .holder .o {
    width: 50%;
  }
}
@media screen and (min-width: 750px) {
  main .popular {
    position: relative;
    z-index: 0;
  }
  main .popular button {
    display: none;
  }
  main .popular .holder .search {
    width: initial;
    flex: 1;
    padding: 0;
    overflow: hidden;
    position: relative;
    z-index: 0;
    height: 300px;
  }
  main .popular .holder .search img {
    position: absolute;
    z-index: -1;
    width: initial;
    min-width: 100%;
    min-height: 100%;
    max-height: 100%;
    top: 50%;
    left: 50%;
    pointer-events: none;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    transform: translate(-50%, -50%);
  }
  main .popular .holder .search .data {
    background: rgba(0, 0, 0, 0.7490196078);
    width: 100%;
    height: 100%;
    padding: 30px;
    justify-content: flex-end;
    opacity: 0;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    transition: all 0.1s linear;
  }
  main .popular .holder .search .data .b {
    margin-bottom: 15px;
  }
  main .popular .holder .search .data .b h4 {
    font-size: 20px;
  }
  main .popular .holder .search .data .b p {
    font-size: 14px;
  }
  main .popular .holder .search .data a {
    font-size: 16px;
  }
  main .popular .holder .search:hover .data {
    opacity: 1;
  }
}
@media screen and (min-width: 900px) {
  .filters_holder {
    position: static;
    width: 100%;
    max-width: 1000px;
    height: 1px;
    transform: none;
    padding: 0 40px;
  }
  .filters_holder.active {
    height: 400px;
  }
  .filters_holder.active.long {
    height: 450px;
  }
  .filters_holder.brands.active {
    height: 120px;
  }
  .filters_holder .holder, .filters_holder .buttons {
    max-width: 100%;
  }
  .filters_holder .head {
    display: none;
  }
  .filters_holder .holder {
    display: flex;
    width: 100%;
  }
  .filters_holder .holder .ranges {
    width: 50%;
    max-width: 350px;
    padding-right: 60px;
  }
  .filters_holder .holder .ranges p {
    margin: 0;
  }
  .filters_holder .holder .ranges .r input.i {
    width: 50%;
  }
  .filters_holder .holder .toggles {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    height: -moz-max-content;
    height: max-content;
  }
  .filters_holder .holder .toggles .f {
    width: calc(50% - 20px);
  }
  .filters_holder .buttons {
    justify-content: center;
  }
  .filters_holder .buttons a {
    margin-right: 40px;
  }
}
@media screen and (min-width: 1024px) {
  main {
    padding: 100px 0 0 200px;
  }
  main .ss {
    position: fixed;
    top: 35px;
    left: calc(50% - 85px);
    transform: translateX(-50%);
    z-index: 999;
    margin: 0;
  }
  main .ss .search_box.active .sbh::after {
    top: 28px;
  }
  main .info {
    max-width: 100%;
    margin: 40px 40px 0;
    display: flex;
    align-items: flex-end;
  }
  main .info .i {
    width: 450px;
  }
  main .info .i p, main .info .i .cs {
    text-align: left;
  }
  main .info .i p.se, main .info .i p.li {
    display: inline-block;
  }
  main .info .i p.se {
    margin: 5px 10px 0 0;
    font-size: 40px;
    line-height: 1;
  }
  main .info .filters {
    position: static;
    justify-content: flex-start;
    align-items: center;
    transform: none;
    flex-direction: row;
  }
  main .info .filters button {
    margin-right: 20px;
    font-size: 16px;
  }
  main .info .filters button#filter {
    padding-bottom: 3px;
    border-bottom: 1px solid #fff;
  }
  main .info .filters button#filter img {
    display: none;
  }
  main .info .filters button#filter span {
    display: initial;
    color: #fff;
    font-weight: bold;
  }
  main .offers {
    padding-top: 50px;
  }
  main .offers::before {
    left: 50%;
  }
  main .offers::after {
    bottom: 0;
  }
  main .o {
    position: relative;
    z-index: 0;
    padding: 0;
  }
  main .o .header::after {
    display: none;
  }
  main .o .data {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    z-index: 0;
    pointer-events: none;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    transition: all 0.2s linear;
  }
  main .o:hover .data {
    opacity: 1;
    pointer-events: initial;
  }
  main .special_offers .holder {
    margin-top: 40px;
  }
  main .special_offers .holder .o {
    width: 33.33%;
  }
  main .dynamic_pages {
    left: calc(50% + 100px);
  }
}
@media screen and (min-width: 1200px) {
  main .ss {
    left: 50%;
  }
  main .offers {
    padding-top: 60px;
    grid-template-columns: repeat(3, 1fr);
  }
  main .o .header {
    aspect-ratio: 1/0.7;
  }
  main .pages {
    margin-top: 50px;
  }
}
@media screen and (min-width: 1280px) {
  main .o .data .b p.price {
    font-size: 24px;
  }
  main .o .data .b div p {
    font-size: 12px;
  }
  main .popular .holder .search {
    aspect-ratio: 16/10;
    height: auto;
  }
  main .popular .holder .search .data {
    justify-content: space-between;
    align-items: flex-end;
    flex-direction: row;
  }
  main .popular .holder .search .data .b {
    margin-bottom: 0;
  }
  .filters_holder {
    max-width: 1100px;
  }
  .filters_holder:not(.watches) {
    overflow-y: hidden;
  }
  .filters_holder.active {
    height: 400px;
  }
  .filters_holder.active.long {
    height: 500px;
  }
  .filters_holder .holder .ranges {
    width: 400px;
  }
  .filters_holder .holder .toggles {
    height: -moz-max-content;
    height: max-content;
  }
  .filters_holder .holder .toggles .toggles {
    height: -moz-max-content;
    height: max-content;
  }
  .filters_holder .holder .toggles:not(.nfl) {
    display: flex;
    flex-wrap: wrap;
    flex: 1;
  }
  .filters_holder .holder .toggles .t {
    width: 50%;
  }
  .filters_holder .holder .ranges .r p, .filters_holder .holder .toggles .t p {
    font-weight: bold;
  }
  .filters_holder .holder .ranges .r {
    margin-bottom: 60px;
  }
  .filters_holder .buttons {
    max-width: -moz-max-content;
    max-width: max-content;
    margin: 0 0 0 auto;
    transform: translateX(-90%) translateY(-80px);
  }
  .filters_holder.watches .buttons, .filters_holder.btns_moved .buttons {
    transform: translateX(-60%);
  }
}
@media screen and (min-width: 1440px) {
  main .popular .holder .search .data .b h4 {
    font-size: 24px;
  }
  main .o .data .b p.price {
    font-size: 30px;
  }
}/*# sourceMappingURL=listings.css.map */