.collection-banner {
  position: relative;
  min-height: 230px;
  display: flex;
  justify-content: center;
  align-items: center; }
  .collection-banner .collection-banner-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none; }
    .collection-banner .collection-banner-img img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: 50% 50%; }
    .collection-banner .collection-banner-img .col-banner__overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%); }
  .collection-banner .collection-banner-heading {
    position: relative;
    text-align: center; }
    .collection-banner .collection-banner-heading h1 {
      margin: 0;
      font-size: 32px;
      font-weight: 500;
      line-height: 40px;
      color: #fff; }

.product-count {
  padding: 32px 0;
  font-size: 18px;
  font-weight: 600; }

.product-sort {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px; }
  .product-sort .sort-left {
    color: #A4A7AE;
    font-size: 18px;
    font-weight: 600; }
  .product-sort .sort-right {
    flex: 1;
    position: relative; }
  .product-sort .title {
    border-radius: 8px;
    background: transparent;
    border: 1px solid var(--shop-color-main);
    margin: 0;
    padding: 8px 16px;
    cursor: pointer;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center; }
    .product-sort .title .text {
      font-size: 18px;
      font-weight: 600; }
    .product-sort .title .icon {
      padding-left: 10px; }
      .product-sort .title .icon svg {
        width: 24px;
        height: 24px; }
  .product-sort .sort-by-content {
    background: #FFFEFC;
    border: 1px solid var(--shop-color-main);
    border-radius: 8px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0;
    top: calc(100% + 10px);
    z-index: 999;
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
    padding: 5px 10px;
    min-width: 180px; }
    .product-sort .sort-by-content li {
      position: relative;
      cursor: pointer;
      padding: 4px 10px 4px 25px;
      font-size: 18px;
      font-weight: 600; }
      .product-sort .sort-by-content li::before {
        content: "";
        position: absolute;
        left: 5px;
        top: 10px;
        margin: auto;
        z-index: 1;
        width: 12px;
        height: 6px;
        border: 1.5px solid var(--shop-color-main);
        border-top-style: none;
        border-right-style: none;
        -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
        -moz-transition: -moz-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
        transition: transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
        -webkit-transform: rotate(-45deg) scale(0, 0);
        -moz-transform: rotate(-45deg) scale(0, 0);
        -ms-transform: rotate(-45deg) scale(0, 0);
        -o-transform: rotate(-45deg) scale(0, 0);
        transform: rotate(-45deg) scale(0, 0); }
      .product-sort .sort-by-content li.active::before, .product-sort .sort-by-content li:hover::before {
        -webkit-transform: rotate(-45deg) scale(1, 1);
        -moz-transform: rotate(-45deg) scale(1, 1);
        -ms-transform: rotate(-45deg) scale(1, 1);
        -o-transform: rotate(-45deg) scale(1, 1);
        transform: rotate(-45deg) scale(1, 1); }
    @media (min-width: 992px) {
      .product-sort .sort-by-content {
        border-top: none; } }
  .product-sort:hover .sort-by-content {
    pointer-events: auto;
    visibility: visible;
    top: 100%;
    opacity: 1; }

/*SIDEBAR*/
.checkbox-list li {
  position: relative;
  margin: 0 0 12px;
  padding: 0 0 0 40px;
  cursor: pointer; }

.checkbox-list li:last-child {
  margin: 0; }

.checkbox-list li label {
  cursor: pointer;
  font-size: 16px;
  margin-bottom: 0; }

.checkbox-list input[type='checkbox'], .checkbox-list input[type='radio'] {
  position: absolute;
  top: 0px;
  left: 0px;
  margin-top: 0;
  vertical-align: top;
  width: 20px;
  height: 20px;
  cursor: pointer;
  outline: none;
  border: 1px solid transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none; }

.checkbox-list input[type='checkbox']:after, .checkbox-list input[type='radio']:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0px;
  width: 20px;
  height: 20px;
  background: #fff;
  border: 1px solid #A4A7AE;
  cursor: pointer;
  border-radius: 4px; }

.checkbox-list input[type='checkbox']:before, .checkbox-list input[type='radio']:before {
  content: "";
  position: absolute;
  left: 5px;
  top: 6px;
  margin: auto;
  z-index: 1;
  width: 10px;
  height: 5px;
  border: 2px solid #ffffff;
  border-top-style: none;
  border-right-style: none;
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
  -moz-transition: -moz-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
  transition: transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
  -webkit-transform: rotate(-45deg) scale(0, 0);
  -moz-transform: rotate(-45deg) scale(0, 0);
  -ms-transform: rotate(-45deg) scale(0, 0);
  -o-transform: rotate(-45deg) scale(0, 0);
  transform: rotate(-45deg) scale(0, 0); }

.checkbox-list input[type='checkbox']:checked:after, .checkbox-list input[type='radio']:checked:after {
  background: var(--shop-color-main); }

.checkbox-list input[type='checkbox']:checked:before, .checkbox-list input[type='radio']:checked:before {
  -webkit-transform: rotate(-45deg) scale(1, 1);
  -moz-transform: rotate(-45deg) scale(1, 1);
  -ms-transform: rotate(-45deg) scale(1, 1);
  -o-transform: rotate(-45deg) scale(1, 1);
  transform: rotate(-45deg) scale(1, 1); }

.checkbox-list li:hover {
  color: var(--shop-color-main); }

.checkbox-list li:hover input[type='checkbox']:after {
  border-color: var(--shop-color-main); }

.filter-inner .filter-head {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px; }

.filter-inner .filter-head p {
  margin: 0; }

.filter-inner .layered_filter_title {
  text-transform: uppercase; }

.filter-inner .layered_filter_title .title_filter {
  margin: 0;
  font-weight: 600;
  font-size: 14px; }

.filter-inner .layered_filter_title .title_filter .icon-filter {
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px; }
  .filter-inner .layered_filter_title .title_filter .icon-filter svg {
    width: 20px;
    height: 30px;
    fill: #909097;
    stroke: #909097;
    -webkit-transition: 0.5s;
    transition: 0.5s; }

.filter-inner .layered_filter_container {
  margin-bottom: 5px;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap; }

.filter-inner .layered_filter_container .layered_filter_group {
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  width: 100%; }

.filter-inner .filter-options {
  background-color: #F7F7F7;
  border-radius: 16px;
  padding: 20px; }

.filter-inner .filter_group:not(:last-child) {
  border-bottom: 1px solid #E9EAEB;
  margin: 0 0 20px;
  padding-bottom: 20px; }

.filter-inner .filter_group .filter_group_block {
  position: relative; }

.filter-inner .filter_group .filter_group-subtitle {
  position: relative;
  font-size: 18px;
  font-weight: 600;
  padding: 0;
  cursor: pointer; }

.filter-inner .filter_group .filter_group-subtitle:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 24px;
  height: 24px;
  line-height: 30px;
  text-align: center;
  background: linear-gradient(#333, #333), linear-gradient(#333, #333), transparent;
  background-position: center;
  background-size: 50% 2px, 2px 50%;
  background-repeat: no-repeat; }

.filter-inner .filter_group .filter_group-subtitle.action-group:before {
  background: linear-gradient(#333, #333), transparent;
  background-position: center;
  background-size: 50% 2px, 2px 50%;
  background-repeat: no-repeat; }

.filter-inner .filter_group .filter_group-content {
  padding: 15px 0 0;
  display: none; }

.filter-current {
  margin-bottom: 40px;
  display: none; }
  .filter-current .filter-subtitle {
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 20px; }
  .filter-current .list-tags .filter_tags {
    position: relative;
    border-radius: 12px;
    margin: 15px 0 0 0;
    color: #5d5d5d;
    font-size: 13px;
    display: none;
    padding: 2px 10px 3px 24px; }
    .filter-current .list-tags .filter_tags span.filter_tags_remove {
      position: absolute;
      left: 4px;
      top: 4px;
      width: 16px;
      height: 16px;
      cursor: pointer; }
      .filter-current .list-tags .filter_tags span.filter_tags_remove svg {
        width: 16px;
        height: 16px;
        vertical-align: inherit; }
    .filter-current .list-tags .filter_tags.opened {
      display: block; }
    .filter-current .list-tags .filter_tags.filter_tags_remove_all {
      cursor: pointer;
      border: 0;
      padding: 2px 5px; }
      .filter-current .list-tags .filter_tags.filter_tags_remove_all span {
        color: var(--shop-color-main);
        border-bottom: 1px solid var(--shop-color-main); }
  @media (min-width: 992px) {
    .filter-current.is-show {
      display: block; } }
  @media (max-width: 991px) {
    .filter-current.is-show.is-mb {
      display: block; }
    .filter-current .filter-subtitle {
      font-size: 18px; } }

.checkbox-sortby li {
  position: relative;
  margin: 0 0 8px;
  padding: 0 0 0 25px; }
  .checkbox-sortby li:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0px;
    width: 16px;
    height: 16px;
    background: #fff;
    border: 1px solid #cedadd;
    border-radius: 2px;
    cursor: pointer; }
  .checkbox-sortby li:before {
    content: "";
    position: absolute;
    left: 3px;
    top: 5px;
    margin: auto;
    z-index: 1;
    width: 10px;
    height: 5px;
    border: 2px solid #ffffff;
    border-top-style: none;
    border-right-style: none;
    -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
    -moz-transition: -moz-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
    transition: transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
    -webkit-transform: rotate(-45deg) scale(0, 0);
    -moz-transform: rotate(-45deg) scale(0, 0);
    -ms-transform: rotate(-45deg) scale(0, 0);
    -o-transform: rotate(-45deg) scale(0, 0);
    transform: rotate(-45deg) scale(0, 0); }
  .checkbox-sortby li.active:after {
    background: var(--shop-color-main); }
  .checkbox-sortby li.active:before {
    -webkit-transform: rotate(-45deg) scale(1, 1);
    -moz-transform: rotate(-45deg) scale(1, 1);
    -ms-transform: rotate(-45deg) scale(1, 1);
    -o-transform: rotate(-45deg) scale(1, 1);
    transform: rotate(-45deg) scale(1, 1); }

.filter-price__value {
  text-align: center;
  display: none; }
  .filter-price__value #smooth-steps-values {
    background: #f5f5fa;
    padding: 10px 35px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600; }

.filter-price__range {
  padding: 40px 22px 45px 12px; }

.filter-price .noUi-target {
  height: 6px;
  background: #e5e5e5;
  border: 0;
  box-shadow: none; }

.filter-price .noUi-horizontal .noUi-handle {
  width: 18px;
  height: 18px;
  right: -10px;
  top: -7px;
  border-radius: 10px;
  border-color: #000;
  cursor: e-resize; }
  .filter-price .noUi-horizontal .noUi-handle:before, .filter-price .noUi-horizontal .noUi-handle:after {
    display: none; }

.filter-price .noUi-connect {
  background: #333333; }

.filter-price .noUi-value-horizontal {
  font-size: 13px;
  font-weight: 500; }

.filter-price .noUi-tooltip {
  font-size: 12px;
  padding: 2px 5px;
  background-color: #f2f2f2; }

.filter-price .noUi-marker-horizontal.noUi-marker-large {
  height: 10px;
  margin-left: 0; }

.filter-color .checkbox-list li {
  margin: 0 14px 15px 0;
  line-height: normal;
  float: left;
  padding: 0; }

.filter-color .checkbox-list li label {
  border: 1px solid #eaeaea;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  float: left;
  position: relative;
  font-size: 0 !important;
  margin-left: 0;
  margin-bottom: 0; }

.filter-color .checkbox-list input[type="checkbox"] {
  display: none; }

.filter-color .checkbox-list input[type="checkbox"]:checked + label:before {
  content: '';
  position: absolute;
  top: 10px;
  left: 8px;
  height: 6px;
  width: 12px;
  z-index: 99;
  border: 2px solid #fff;
  border-top-style: none;
  border-right-style: none;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg); }

.filter-color .checkbox-list input[type="checkbox"]:checked + label {
  box-shadow: 0 0 0 3px #ffffff, 0 0 0 4px var(--shop-color-border); }

.filter-size2 .checkbox-list {
  display: flex;
  flex-wrap: wrap; }
  .filter-size2 .checkbox-list li {
    margin: 0 14px 15px 0;
    line-height: normal;
    padding: 0; }
  .filter-size2 .checkbox-list li label {
    border: 1px solid #eaeaea;
    min-width: 45px;
    min-height: 45px;
    border-radius: 4px;
    padding: 0 15px;
    position: relative;
    margin: auto;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
    font-weight: 500;
    cursor: pointer; }
    .filter-size2 .checkbox-list li label:hover {
      background: #000;
      color: #fff; }
  .filter-size2 .checkbox-list input[type="checkbox"] {
    display: none; }
  .filter-size2 .checkbox-list input[type="checkbox"]:checked + label {
    background: #000;
    color: #fff; }

.tree-menu li a {
  padding: 5px 5px 5px 0;
  color: #666;
  line-height: 26px;
  font-size: 12px; }

.tree-menu > li > a {
  color: var(--shop-color-text);
  font-weight: 500;
  font-size: 14px;
  line-height: 28px;
  letter-spacing: 1px; }

.tree-menu li.has-child ul {
  display: none; }

.tree-menu li.has-child:first-child ul {
  display: block; }

.tree-menu li.has-child > ul {
  padding-left: 15px; }

.tree-menu li a .icon-control {
  font-size: 8px;
  position: relative;
  top: -2px; }
  .tree-menu li a .icon-control svg {
    -webkit-transition: transform .2s;
    -moz-transition: transform .2s;
    -o-transition: transform .2s;
    transition: transform .2s; }

.tree-menu li.menu-uncollapsed .icon-control svg {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg); }

.filter-footer {
  display: none; }

.product-filter-mb {
  display: none; }

@media (min-width: 992px) {
  .sidebar-left-sticky {
    top: 100px;
    position: -webkit-sticky;
    position: sticky;
    -webkit-transition: top 400ms ease;
    -moz-transition: top 400ms ease;
    transition: top 400ms ease; }
  .sticky-gallery, .sticky-info {
    top: 30px;
    position: sticky;
    -webkit-transition: top 400ms ease;
    -moz-transition: top 400ms ease;
    transition: top 400ms ease; }
  body.scroll-body-up .sticky-gallery, body.scroll-body-up .sticky-info {
    top: 80px; } }

/*RESPONSIVE*/
@media (max-width: 991px) {
  .collection-banner .collection-banner-heading h1 {
    font-size: 24px; }
  .product-count {
    padding: 15px 0;
    font-size: 14px; }
  .toolbar-products {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px; }
  .product-sort {
    margin-bottom: 0; }
    .product-sort .title {
      padding: 8px; }
    .product-sort .sort-right {
      position: initial; }
    .product-sort .sort-left, .product-sort .title .text, .product-sort .sort-by-content li {
      font-size: 14px; }
    .product-sort .title .icon svg {
      width: 18px;
      height: 18px; }
  /*SIDEBAR*/
  .product-filter-mb {
    display: block; }
    .product-filter-mb p {
      margin: 0;
      gap: 0; }
    .product-filter-mb svg {
      fill: #fff; }
  .filter-content {
    display: none;
    position: fixed;
    height: 100%;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1010;
    overflow: hidden; }
    .filter-content .filter-inner {
      position: absolute;
      height: 100%;
      width: 85%;
      max-width: 480px;
      background: #ffffff;
      -webkit-transform: translateX(-100%);
      transform: translateX(-100%);
      flex-direction: column;
      -webkit-transition: transform 0.4s ease;
      transition: transform 0.4s ease;
      display: flex;
      flex-wrap: nowrap;
      overflow: hidden; }
    .filter-content .filter-head {
      position: relative;
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin: 0;
      padding: 12px 15px;
      background: #fff;
      color: #000;
      font-size: 22px;
      border-bottom: 1px solid var(--shop-color-border); }
      .filter-content .filter-head .btn-filter-close svg {
        width: 17px;
        height: 100%;
        margin: 0 auto;
        cursor: pointer; }
    .filter-content .filter-options {
      flex: 1 1 auto;
      -webkit-overflow-scrolling: touch;
      overflow-x: hidden;
      padding: 10px 15px 10px;
      border-bottom: 1px solid var(--shop-color-border);
      background-color: transparent; }
    .filter-content .filter-footer {
      padding: 10px 5px 12px;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-pack: end;
      justify-content: flex-end; }
      .filter-content .filter-footer .btn-filter {
        display: block;
        position: relative;
        padding: 10px 15px;
        margin: 0 6px;
        border-radius: 2px;
        -ms-flex: 0 0 calc(50% - 12px);
        flex: 0 0 calc(50% - 12px);
        max-width: calc(50% - 12px);
        font-size: 13px;
        font-weight: 500;
        text-align: center;
        text-transform: uppercase;
        letter-spacing: 1px;
        outline: none;
        cursor: pointer; }
      .filter-content .filter-footer .btn-filter-apply {
        color: #ffffff;
        background-color: var(--shop-color-main);
        border: 1px solid var(--shop-color-main); }
      .filter-content .filter-footer .btn-filter-clear {
        color: #000000;
        background-color: #f3f4f6;
        border: 1px solid #e5e7eb; }
    .filter-content.show-filter .overlays-rgba {
      pointer-events: auto;
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      z-index: -1;
      background: rgba(0, 0, 0, 0.5); }
    .filter-content.show-filter .filter-inner {
      pointer-events: auto;
      -webkit-transform: translateX(0);
      transform: translateX(0);
      -webkit-transition-delay: 0.1s;
      transition-delay: 0.1s; }
  .filter-price__value {
    display: block;
    padding-right: 15px; }
  .filter-price__range {
    padding: 20px 22px 50px 12px; }
  .filter-price .noUi-tooltip {
    display: none; }
  .filter-price .noUi-value-horizontal:nth-child(4) {
    padding-right: 55px; }
  .filter-size .checkbox-list li {
    margin: 0 8px 8px 0; }
  .filter-color .checkbox-list li {
    margin: 0 8px 8px 0; }
  .sidebar-left .sticky-sidebar .filter-content .filter-inner .filter-head p {
    margin: 0;
    font-size: 26px; }
  .sidebar-left .sticky-sidebar .filter-content .filter-inner .filter_group .filter_group-subtitle {
    font-size: 16px; }
  .sidebar-left .sticky-sidebar .filter-content .filter-inner .checkbox-list li label {
    font-size: 14px; } }
