
.section--new-filter {
    padding: 64px 0 0;
}

.label--title {
    display: block;
    font-size: 16px;
    font-weight: bold;
    color: #1B1B1B;
    margin-bottom: 15px;
}

.min-max-slider {
    position: relative;
    width: 100%; 
    text-align: center;
    margin-bottom: 30px;
}

.min-max-slider > label {
  display: none;
}
span.value {height: 1.7em; font-weight: bold; display: inline-block;}
/* span.value.lower::before {content: "$"; display: inline-block;}
span.value.upper::before {content: "- $"; display: inline-block; margin-left: 0.4em;} */
.min-max-slider > .legend {display: flex; justify-content: space-between;}

.min-max-slider > .legend > *  {
    font-size: 16px;
    color: #1B1B1B;
    margin-top: 10px;
}

.min-max-slider > input {cursor: pointer; position: absolute;}

/* webkit specific styling */
.min-max-slider > input {
  -webkit-appearance: none;
  outline: none!important;
  background: transparent;
  background-image: linear-gradient(to bottom, transparent 0%, transparent 30%, #1B1B1B 30%, #1B1B1B 60%, transparent 60%, transparent 100%);
}
.min-max-slider > input::-webkit-slider-thumb {
  -webkit-appearance: none; /* Override default look */
  appearance: none;
  width: 14px; /* Set a specific slider handle width */
  height: 14px; /* Slider handle height */
  background: #eee; /* Green background */
  cursor: pointer; /* Cursor on hover */
  border: 1px solid #1B1B1B;
  border-radius: 100%;
}
.min-max-slider > input::-webkit-slider-runnable-track {cursor: pointer;}


/* Dual Slider bar */

.slider-container {
  margin: 20px 0;
  width: 100%;
}
.slider-label {
  display: block;
}

.dual-range-slider {
  position: relative;
  height: 4px;
  background-color: #CBCBCB;
}
.dual-range-slider input[type="range"] {
  z-index: 2;
  position: absolute;
  width: 100%;
  height: 4px;
  background: none;
  pointer-events: none;
  -webkit-appearance: none;
  appearance: none;
}
.dual-range-slider input[type="range"]::-webkit-slider-thumb {
  pointer-events: all;
  width: 20px;
  height: 20px;
  background: white;
  border: 2px solid black;
  border-radius: 50%;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}
.dual-range-slider input[type="range"]::-moz-range-thumb {
  pointer-events: all;
  width: 20px;
  height: 20px;
  background: white;
  border: 2px solid black;
  border-radius: 50%;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}
.dual-range-slider .progress {
  position: absolute;
  height: 4px;
  background-color: black;
  z-index: 1;
}
.slider-min-max {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  margin-top: 12px;
}

/* SideBar Filter */
.product--filter {
    background-image: url('../../public/img/background/bg_lines.png');
    padding: 20px;
    background-size: cover;
}
.filter_heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.filter_heading h3 {
    font-size: 24px;
    padding: 0;
    margin: 0;
}

.filter_heading .btn--reset {
    background-color: transparent;
    border: 0;
    outline: 0;
    font-size: 16px;
    font-weight: 700;
}

.filter_product-type {
    margin-bottom: 15px;
}

.filter_input {
  width: 100%;
  position: relative;
  height: 45px;
  margin-bottom: 30px;
}

.filter_input:before {
  content: "\f002";
  position: absolute;
  top: 8px;
  left: 15px;
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  pointer-events: none;
  font-size: 20px;
}

.filter_input-search {
  width: 100%;
  border: 1px solid #CBCBCB;
  background-color: #fff;
  height: 100%;
  border-radius: 40px;
  padding: 5px 20px 5px 45px;
}


.filter_product-type,
.filter_size,
.filter_price
 {
  margin-bottom: 30px;
}

.filter_product-type label {
  font-size: 16px;
  color: #000000;
  padding-left: 10px;
  vertical-align: middle;
  display: inline-block;
}

.filter_product-type .form-check {
  margin-bottom: 10px;
}

.filter_product-type .form-check-input {
  width: 18px;
  height: 18px;
  border: 1px solid #1B1B1B;
}

.filter_price span.value.lower::before {content: "$"; display: inline-block;}
.filter_price span.value.upper::before {content: "- $"; display: inline-block; margin-left: 0.4em;}

.filter_insertable-size span.value.lower::after  {
  content: "'' - "; 
  display: inline-block;
  margin-right: 6px;
}
.filter_insertable-size span.value.upper::after {
  content: "''";
  display: inline-block;
}

.filter_circumference span.value.lower::after  {
  content: "'' - "; 
  display: inline-block;
  margin-right: 6px;
}
.filter_circumference span.value.upper::after {
  content: "''";
  display: inline-block;
}

.size-item-category-list input[type=checkbox]+label {
    font-size: 16px;
    cursor: pointer;
    color: #1B1B1B;
    background: #fff;
    border-radius: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 16px;
    border: 1px solid #1B1B1B;
  }
  
  .size-item-category-list input[type=checkbox] {
    display: none;
  }
  
  .size-item-category-list input[type=checkbox]+label:before {
    content: "✓";
    display: none;
    width: 1em;
    height: 1em;
    padding-left: 0.1em;
    padding-bottom: 0.10em;
    margin-right: 0.5em;
    vertical-align: bottom;
    color: transparent;
    transition: .2s;
    color: #000;
    border-radius: 100%;
    background-color: #8E8E93;
  }
  
  .size-item-category-list input[type=checkbox]+label:active:before {
    transform: scale(0);
    color: #000;
  }
  
  .size-item-category-list input[type=checkbox]:checked+label:before {
    background: red;
    border-color: MediumSeaGreen;
    color: #000;
  }
  
  .size-item-category-list input[type=checkbox]:disabled+label:before {
    transform: scale(1);
    border-color: #aaa;
  }
  
  .size-item-category-list input[type=checkbox]:checked:disabled+label:before {
    transform: scale(1);
    background-color: #bfb;
    border-color: #bfb;
  }
  
  .size-item-category-list input[type=checkbox]:checked+label,
  .size-item-category-list input[type=checkbox]:hover+label
   {
    color: #fff;
    background-color:#1B1B1B;
    transition: all .2s linear;
  }
  
  ul.size-item-categories {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 5px;
    align-items: center;
    padding: 0;
    margin: 0;
  }
  
  li.size-item-category-list {
    list-style: none;
  }

  .btn--mobile-filter {
    display: none;
    height: 49px;
    width: 100%;
    background: #fff;
    border: 1px solid #1B1B1B;
    border-radius: 40px;
    text-align: center;
    line-height: 46px;
    text-decoration: none !important;
    margin-bottom: 30px;
  }

  .btn--mobile-filter svg {
    position: relative;
    top: -2px;
  }

  .btn--mobile-filter:hover {
    background: #1B1B1B;
    color: #fff;
  }

  .btn--mobile-filter:hover path {
    fill: #fff;
  }

  .btn--apply-filter {
    display: none;
    height: 59px;
    background-color: #78603C;
    color: #fff;
    border-radius: 40px;
    border: 0;
    width: 100%;
    text-transform: uppercase;
  }

  .btn--apply-filter:hover {
    background-color: #000;
  }

  @media(max-width:992px) {
    .btn--mobile-filter,
    .btn--apply-filter {
      display: block;
    }

    .product-listing {
      margin-top: 50px;
    }

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


  /*  Product Details */
.page--product-detail.page--product-detail--new .product__details {
    background-image: initial;
}

.product__details__content {
    padding: 40px !important;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url("../img/background/product-details_bg1.png");
}

.product--option {
    margin: 15px 0;
}
.option--title {
    display: block;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

div.select--option {
  display: flex;
  flex-flow: row wrap;
  margin: 0 -0.5rem;
  /* Remove height: 100% to avoid making everything big */
}
div.select--option > div {
  flex: 1;
  padding: 0.5rem;
  display: flex; /* Ensure the parent of the label is also a flex container */
  flex-direction: column;
}
.select--option input[type="radio"] {
    display: none;
 }
.select--option input[type="radio"]:not(:disabled) ~ label {
    cursor: pointer;
 }
.select--option input[type="radio"]:disabled ~ label {
    color: rgba(188, 194, 191, 1);
    border-color: rgba(188, 194, 191, 1);
    box-shadow: none;
    cursor: not-allowed;
 }
 .select--option label {
  display: flex;
  background: white;
  border: 1px solid #1B1B1B;
  border-radius: 5px;
  padding: 7px 1rem;
  text-align: center;
  position: relative;
  margin: 0;
  flex-grow: 1; /* Use flex-grow to take up available space */
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.select--option input[type="radio"]:checked + label,
.select--option input[type="radio"]:hover + label {
    background: #1E5223;
    color: #fff;
}

.select--option p {
    font-weight: 600;
    margin: 0;
}

.select--option .option--item {
    min-height: 77px;
}

.price--option {
    font-size: 14px;
    font-weight: 600;
}

.select--size .option--item {
    /* flex-basis: 25%; */
    max-width: 19%;
    font-size: 14px;
    min-width: 19%;
}

.select--colors .size--item.option--item {
  max-width: 8%;
  flex-basis: 20%;
}

.select--colors {
    display: flex;
    flex-wrap: wrap;
}

.select--colors .swatch{
    display:inline-block;
    vertical-align: middle;
    height: 35px;
    width:35px;
    margin: 0 5px 0 0 ;
    border-radius: 3px;
    border: 1px solid #d4d4d4;
}

.select--colors label {
    cursor: pointer;
}

.select--colors input,
.select--colors label b {
    display: none;
}
.select--colors input[type="radio"]:hover + .swatch, 
.select--colors input[type="radio"]:checked + .swatch {
    box-shadow: inset 0 0 0 2px #1E5223;
}


.quantity--container,
.quantity--container .number {
  display: flex;
  align-items: center;
}

.quantity--container .quantity-number {
  width: 50px;
  height: 42px;
  border: 1px solid #1B1B1B;
  border-radius: 5px;
  padding: 10px;
  background-color: transparent;
  margin-right: 10px;
}

.quantity-buttons {
  display: flex;
  flex-direction: column;
}

.quantity-buttons .symbol {
  border: 0;
  outline: 0;
  padding: 3px;
}

.quantity-buttons .symbol:hover i {
  color: #78603C;
}

.quantity--container .btn--addtocart {
  width: 100%;
  margin-left: 60px;
}

.quantity--container .btn--addtocart:hover {
  background-color: #000 !important;
}


@media(max-width:980px) {
  .product__details__content {
    background-image: initial;
      padding: 20px !important;
  }

  .quantity--container .btn--addtocart {
    margin-top: 0 !important;
    margin-left: 20px;
  }

  .page--product-detail .adjust_header {
    margin-top: 86px !important;
  }

  .product__details {
    background-image: url("../img/background/product-details_bg1.png") !important;
  }

}





@media(max-width:1350px) {
  .select--colors .size--item.option--item {
      max-width: 10%;
      flex-basis: 20%;
  }
}

@media(max-width:1330px) {
  .select--size .option--item {
    /* flex-basis: 25%; */
    max-width: 20%;
    font-size: 14px;
    min-width: 20%;
  }
}

@media(max-width:1280px) {
  .select--colors .size--item.option--item {
      max-width: 12%;
      flex-basis: 20%;
  }
}

@media(max-width:1240px) {
  .select--size .option--item {
    /* flex-basis: 25%; */
    max-width: 24%;
    font-size: 14px;
    min-width: 24%;
  }
}

@media(max-width:1175px) {
  .select--size .option--item {
    /* flex-basis: 25%; */
    max-width: 24%;
    font-size: 14px;
    min-width: 24%;
  }
}


@media(max-width:1140px) {
  /* .select--size .option--item {
      max-width: 25%;
  } */

  .select--colors .size--item.option--item {
      max-width: 14%;
      flex-basis: 20%;
  }
}

@media(max-width:1123px) {
  .select--size .option--item {
      max-width: 31%;
      min-width: 31%;
  }

  .select--colors .size--item.option--item {
      max-width: 14%;
      flex-basis: 20%;
  }
}

@media(max-width:980px) {
  .select--size .option--item {
      max-width: 15%;
      min-width: 15%;
  }

  .select--colors .size--item.option--item {
      max-width: 7%;
      flex-basis: 20%;
  }
}

@media(max-width:860px) {
  .select--size .option--item {
      max-width: 15%;
      min-width: 15%;
  }

  .select--colors .size--item.option--item {
      max-width: 8%;
      flex-basis: 20%;
  }
}

@media(max-width:767px) {
  .select--size .option--item {
      max-width: 19%;
      min-width: 19%;
  }

  .select--colors .size--item.option--item {
      max-width: 14%;
      flex-basis: 14%;
  }
}

@media(max-width:670px) {
  .select--size .option--item {
      max-width: 19%;
      min-width: 19%;
  }
}

@media(max-width:630px) {
  .select--size .option--item {
      max-width: 19%;
      min-width: 19%;
  }
}

@media(max-width:600px) {
  .select--size .option--item {
      max-width: 20%;
      min-width: 20%;
  }
}

@media(max-width:560px) {
  .select--size .option--item {
      max-width: 23%;
      min-width: 23%;
  }
}
@media(max-width:520px) {
  .select--size .option--item {
      max-width: 24%;
      min-width: 24%;
  }
}
@media(max-width:480px) {
  .select--size .option--item {
      max-width: 30%;
      min-width: 30%;
  }
}
@media(max-width:450px) {
  .select--size .option--item {
      max-width: 30%;
      min-width: 30%;
  }
}
@media(max-width:420px) {
  .select--size .option--item {
      max-width: 33%;
      min-width: 33%;
  }
}
@media(max-width:400px) {
  .select--size .option--item {
      max-width: 33%;
      min-width: 33%;
  }
}
