.archive-header {
  background: #F3F3F3;
  padding: 200px 0 60px;
  margin-top: -120px;
}
.archive-header h1 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
}
.archive-header .sub-cats {
  margin-top: 40px;
}
.archive-header .sub-cats .item {
  padding: 20px;
  background: #fff;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.archive-header .sub-cats .item .title {
  margin-top: 10px;
  font-size: 16px;
  font-weight: bold;
}

.archive-head {
  margin-bottom: 40px;
}

.filter-sort {
  text-align: left;
}

.archive-wrapper {
  padding: 60px 0;
  background: #F8F8F8;
}
.archive-wrapper h2 {
  font-weight: bold;
  font-size: 30px;
}
.archive-wrapper .product-item-swiper-alt {
  margin-bottom: calc(var(--bs-gutter-x) * 1);
  margin-bottom: calc(var(--bs-gutter-x) * 0);
}

.archive-head-banners img {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.archive-head-banners .left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.sort-select {
  padding: 10px 20px;
  position: relative;
  display: inline-block;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.sort-select:hover {
  background: #fff;
  -webkit-border-radius: 3px 3px 0 0;
  -moz-border-radius: 3px 3px 0 0;
  border-radius: 3px 3px 0 0;
}
.sort-select:hover .options-list {
  z-index: 3;
  opacity: 1;
  margin-top: 0;
}
.sort-select:hover img {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
  opacity: 1;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}
.sort-select img {
  width: 16px;
  height: auto;
  margin-left: 6px;
  -webkit-transition: all 0s;
  -moz-transition: all 0s;
  -ms-transition: all 0s;
  -o-transition: all 0s;
  transition: all 0s;
  opacity: 0.8;
}
.sort-select .options-list {
  position: absolute;
  background: #fff;
  right: 0;
  left: 0;
  top: 100%;
  padding: 10px;
  -webkit-border-radius: 0 0 3px 3px;
  -moz-border-radius: 0 0 3px 3px;
  border-radius: 0 0 3px 3px;
  z-index: -3;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  margin-top: -10px;
  opacity: 0;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}
.sort-select .options-list .item {
  display: block;
  padding: 5px 10px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  border: 1px solid #eee;
  margin-top: 5px;
}
.sort-select .options-list .item.active, .sort-select .options-list .item.active:hover {
  background: #333;
  color: #fff;
}
.sort-select .options-list .item:hover {
  background: #eee;
  color: #111;
  border-color: #ddd;
}

.filter-button {
  font-weight: bold;
  font-size: 16px;
  color: #333;
  margin-left: 15px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  border: 1px solid #ddd;
  padding: 10px 30px;
  background: rgba(255, 255, 255, 0.3);
}
.filter-button img {
  margin-left: 10px;
  width: 18px;
  height: auto;
  opacity: 0.8;
  transition: all 0s;
}
.filter-button.active {
  border: 1px solid #555;
  background: #222;
  color: #fff;
}
.filter-button:hover {
  border: 1px solid #aaa;
  background: rgba(255, 255, 255, 0.8);
}
.filter-button:hover img {
  transition: all 0.4s;
  transform: scale(-1, -1);
}

.list-filters {
  position: fixed;
  right: -40px;
  top: 0;
  opacity: 0;
  bottom: 0;
  width: 360px;
  background: #fff;
  height: 100%;
  z-index: 10;
  border-left: 1px solid #eee;
  padding: 20px;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
}
.list-filters.open {
  right: 0;
  opacity: 1;
  box-shadow: 20px 0px 50px rgba(0, 0, 0, 0.2);
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}
.list-filters > .in {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.list-filters > .in > .content {
  flex: 1 1 auto;
  margin-bottom: 20px;
  overflow-y: auto;
}
.list-filters .filter-sidebar-title {
  text-align: center;
  padding-bottom: 20px;
  margin: 0px -20px 20px;
  color: #333;
  background: #fff;
  font-size: 18px;
  font-weight: bold;
  border-bottom: 1px solid #eee;
  position: relative;
}
.list-filters .filter-sidebar-title:before {
  position: absolute;
  content: "";
  right: 50%;
  top: 100%;
  margin-right: -30px;
  border: 30px solid transparent;
  height: 0;
  width: 0;
  border-top: 10px solid #eee;
}
.list-filters .filter-sidebar-title:after {
  position: absolute;
  content: "";
  right: 50%;
  top: 100%;
  margin-right: -30px;
  border: 30px solid transparent;
  height: 0;
  width: 0;
  border-top: 10px solid #fff;
  margin-top: -1px;
}
.list-filters .filter-sidebar-title img {
  opacity: 0.7;
  height: 24px;
  width: auto;
  margin-left: 10px;
}
.list-filters .apply {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  background: #222;
  color: #fff;
  width: 100%;
  display: block;
  padding: 10px;
  text-align: center;
  border: none;
}

.widget-price {
  padding-bottom: 30px;
}
.widget-price .price-row {
  margin-bottom: 30px;
  /* Mouse-over effects */
  /* The slider handle (use -webkit- (Chrome, Opera, Safari, Edge) and -moz- (Firefox) to override default look) */
}
.widget-price .price-row .title {
  margin-bottom: 10px;
}
.widget-price .price-row .title strong {
  font-size: 18px;
  font-weight: bold;
  color: #333;
}
.widget-price .price-row .title span {
  float: left;
  color: #555;
  font-size: 16px;
}
.widget-price .price-row .slider-input {
  -webkit-appearance: none; /* Override default CSS styles */
  appearance: none;
  width: 100%; /* Full-width */
  height: 2px; /* Specified height */
  background: #666; /* Grey background */
  outline: none; /* Remove outline */
  opacity: 0.9;
}
.widget-price .price-row .slider-input:hover {
  opacity: 1; /* Fully shown on mouse-over */
}
.widget-price .price-row .slider-input::-webkit-slider-thumb {
  -webkit-appearance: none; /* Override default look */
  appearance: none;
  height: 8px;
  width: 8px;
  background: #333;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  cursor: pointer; /* Cursor on hover */
}
.widget-price .price-row .slider-input::-moz-range-thumb {
  height: 8px;
  width: 8px;
  background: #333;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  cursor: pointer; /* Cursor on hover */
}
.widget-price .price-row:last-of-type {
  margin-bottom: 0;
}

.filter-widget {
  margin-bottom: 10px;
  margin-top: 10px;
  padding: 0 30px 0px;
  border-bottom: 1px solid #eee;
}
.filter-widget .widget-title {
  font-weight: bold;
  color: #222;
  margin: 0px -30px;
  padding: 10px 30px 20px;
  cursor: pointer;
}
.filter-widget .widget-content {
  padding-bottom: 30px;
}

.widget-content .colors {
  display: flex;
  flex-wrap: wrap;
}
.widget-content .colors .item {
  flex: 0 0 50%;
  display: flex;
  margin: 7px 0;
  cursor: pointer;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.widget-content .colors .item .the-color {
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
  position: relative;
}
.widget-content .colors .item .the-color::after {
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  content: "";
  width: 12px;
  height: 12px;
  background: transparent;
  border: 1px solid transparent;
  top: 50%;
  right: 50%;
  margin-right: -6px;
  margin-top: -6px;
  position: absolute;
  z-index: 2;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -webkit-transform: rotate(-140deg);
  -moz-transform: rotate(-140deg);
  -ms-transform: rotate(-140deg);
  -o-transform: rotate(-140deg);
  transform: rotate(-140deg);
}
.widget-content .colors .item.selected .the-color {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
.widget-content .colors .item.selected .the-color::after {
  -webkit-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  -o-transform: rotate(-180deg);
  transform: rotate(-180deg);
  background: #fff;
  border: 1px solid #333;
}
.widget-content .colors .the-color {
  border: 1px solid #333;
  margin-left: 10px;
  display: inline-block;
  width: 20px;
  height: 20px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.widget-content .colors .name {
  display: inline-block;
}
.widget-content .toggles {
  font-size: 0;
}
.widget-content .toggles .item {
  margin: 3px;
  display: inline-block;
  padding: 4px 14px;
  border: 1px solid #888;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  cursor: pointer;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}
.widget-content .toggles .item .name {
  font-size: 16px;
}
.widget-content .toggles .item.selected {
  background: #333;
  color: #fff;
}
.widget-content .toggles .item:hover {
  background: #eee;
}

.list-page-nav {
  margin-top: 40px;
  border-top: 1px solid #eee;
}
.list-page-nav .links {
  text-align: left;
  margin-top: -1px;
}
.list-page-nav .current {
  background: #eee;
  padding: 2px 15px;
  position: relative;
  font-size: 16px;
  margin-top: -1px;
  display: inline-block;
  letter-spacing: 4px;
}
.list-page-nav .count {
  color: #888;
}
.list-page-nav a {
  display: inline-block;
  padding: 15px 30px;
  cursor:pointer;
}
.list-page-nav a img {
  width: 20px;
}
.list-page-nav a.next {
  background: #222;
  color: #fff;
  position: relative;
  z-index: 3;
}
.list-page-nav a.next img {
  margin-right: 15px;
}
.list-page-nav a.next:hover {
  padding: 15px 35px;
  margin-right: 0;
}
.list-page-nav a.prev {
  color: transparent;
  position: relative;
  z-index: 2;
  left: -80px;
  background: #ddd;
}
.list-page-nav a.prev:hover {
  color: #444;
  left: 0;
}
.list-page-nav a.prev img {
  margin-left: 15px;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

    .list-page-nav a.prev.last {
        color: #444;
    }

    @media only screen and (max-width: 1024px) {
        .list-filters {
    width: 310px;
  }
  .archive-header .sub-cats {
    margin-top: 30px;
  }
  .archive-header h1 {
    font-size: 28px;
  }
  .sort-select .title {
    display: flex;
  }
  .list-page-nav .count {
    display: inline-block;
    float: left;
  }
  .list-page-nav a.prev {
    z-index: 2;
    left: auto;
    width: 80px;
  }
  .list-page-nav a.prev span {
    display: none;
  }
  .list-page-nav .links {
    margin-top: 15px;
    display: flex;
  }
  .list-page-nav a.next {
    flex: 1 1 auto;
    text-align: center;
  }
  .filter-sort {
    display: flex;
    flex-direction: row;
    justify-content: center;
  }
  .filter-sort .sort-select {
    border: 1px solid #ddd;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
  }
  .filter-button {
    float: none;
  }
  .filter-button img {
    margin-left: 5px;
    padding-left: 0;
  }
  .archive-wrapper {
    padding: 20px 0 40px !important;
  }
  .archive-wrapper h2 {
    text-align: center;
    font-weight: bold;
    margin-bottom: 25px;
  }
  .sub-cats {
    position: relative;
  }
  .sub-cats::before {
    position: absolute;
    left: -10px;
    background: linear-gradient(to right, #f3f3f3 12px, rgba(243, 243, 243, 0.1));
    width: 30px;
    top: 0;
    bottom: 0;
    content: "";
    display: block;
    z-index: 2;
  }
  .sub-cats .row.g-1 {
    overflow: scroll;
    flex-wrap: nowrap;
    padding-left: 40px;
  }
  .sub-cats .row.g-1 .col-md-2 {
    flex: 0 0 48%;
  }
  .archive-header {
    padding: 30px 0 20px;
    margin: 0px 0 0;
  }
  .archive-header .archive-head-banners {
    margin-top: -10px;
  }
  .archive-header .archive-head-banners a {
    display: block;
    margin-top: 10px;
  }
}

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