<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Range Slider Styling */
input#wearing_time {
  appearance: none;
  width: 100%;
  height: 8px;
  background: transparent;
  outline: none;
  margin: 10px 0;
  /* Default custom properties for fallback */
  --min: 0;
  --max: 100;

}

input#wearing_time::-webkit-slider-runnable-track {
  height: 8px;
  background: #F8D4E0; /* Default unselected background */
  border-radius: 4px;
  /* Static gradient as fallback for Webkit */


}

input#wearing_time::-webkit-slider-thumb {
  appearance: none;
  width: 20px;
  height: 20px;
  background: #DD2F69;
  border-radius: 50%;
  cursor: pointer;
  margin-top: -6px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

input#wearing_time::-moz-range-track {
  height: 8px;
  background: #F8D4E0;
  border-radius: 4px;
}

input#wearing_time::-moz-range-progress {
  height: 8px;
  background: #DD2F69;
  border-radius: 4px;
}

input#wearing_time::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: #DD2F69;
  border-radius: 50%;
  cursor: pointer;
  border: none;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

input#wearing_time::-ms-track {
  height: 8px;
  background: transparent;
  border-color: transparent;
  color: transparent;
}

input#wearing_time::-ms-fill-lower {
  background: #DD2F69;
  border-radius: 4px;
}

input#wearing_time::-ms-fill-upper {
  background: #F8D4E0;
  border-radius: 4px;
}

input#wearing_time::-ms-thumb {
  width: 20px;
  height: 20px;
  background: #DD2F69;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

input#wearing_time::-webkit-slider-thumb:hover,
input#wearing_time::-moz-range-thumb:hover,
input#wearing_time::-ms-thumb:hover {
  background: #DD2F69;
}

input#wearing_time:focus::-webkit-slider-thumb,
input#wearing_time:focus::-moz-range-thumb,
input#wearing_time:focus::-ms-thumb {
  background: #DD2F69;
  outline: 2px solid #F8D4E0;
  outline-offset: 2px;
}

/* Checkbox Styling (unchanged) */
.refinements-options input[type="checkbox"] {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #666;
  border-radius: 4px;
  background: #f9f9f9;
  cursor: pointer;
  position: relative;
  vertical-align: middle;
  margin-right: 8px;
  outline: none;
}

.refinements-options input[type="checkbox"]:checked {
  background: #DD2F69;
  border-color: #DD2F69;
}

.refinements-options input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.refinements-options input[type="checkbox"]:hover:not(:checked) {
  border-color: #DD2F69;
}

.refinements-options input[type="checkbox"]:focus {
  outline: 2px solid #F8D4E0;
  outline-offset: 2px;
}

.refinements-options input[type="checkbox"]:disabled {
  background: #e0e0e0;
  border-color: #ccc;
  cursor: not-allowed;
}

.refinements-option {
  margin-bottom: 5px;
}

.refinements-option label {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 16px;
  color: #333;
}

.refinements-option label:hover {
  color: #DD2F69;
}

.refinements-option bdi {
  font-weight: 500;
}
.dokan-section-heading.Custom h2 {
    font-size: 22px;
	margin-top:20px;
    
}
.singleOptions h3 {
    font-size: 20px;
    margin-top: 0;
}
.singleOptions .dokan-form-group {
    display: inline-block;
    width:45%;
}
.singleOptions .dokan-form-group label{
   padding-bottom:5px;
}
.product-container-footer {
    display: none;
}</pre></body></html>