/** Shopify CDN: Minification failed

Line 33:0 Unexpected "/"

**/
/* swatch lives in its own file for reusability of the swatch in swatch-input and dropdown */
.swatch {
  --swatch--size: var(--swatch-input--size, 4.4rem);
  --swatch--border-radius: var(--swatch-input--border-radius, 50%);

  display: block;
  width: var(--swatch--size);
  max-width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--swatch--background);
  background-position: var(--swatch-focal-point, initial);
  background-size: cover;
  background-origin: border-box;
  border: 0.1rem solid rgba(var(--color-foreground), 0.15);
  border-radius: var(--swatch--border-radius);
}

.swatch--square {
  --swatch--border-radius: var(--swatch-input--border-radius, 0.2rem);
}

.swatch--unavailable {
  border-style: dashed;
  border-color: rgba(var(--color-foreground), 0.5);
}


/ price range slider /
textarea:focus,
input:focus,
textarea:hover,
input:hover {
  outline: 0 !important;
  box-shadow: none !important;
  border-radius: 10px !important;
}

.form_control .field:hover.field:after {
  outline: 0;
  border-radius: 10px;
}

.range_container {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0;
}

.sliders_control {
  position: relative;
  min-height: 30px;
}

.form_control {
  position: relative;
  display: flex;
  justify-content: space-between;
  font-size: 24px;
  color: #635a5a;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  pointer-events: all;
  width: 24px;
  height: 24px;
  background-color: #fff !important;
  border-radius: 50%;
  box-shadow: 0 0 0 1px #c26431;
  cursor: pointer;
}

input[type="range"]::-moz-range-thumb {
  -webkit-appearance: none;
  pointer-events: all;
  width: 24px;
  height: 24px;
  background-color: #fff !important;
  border-radius: 50%;
  box-shadow: 0 0 0 1px #c6c6c6;
  cursor: pointer;
}

input[type="range"]::-webkit-slider-thumb:hover {
  border:1px solid #c26431;
}

input[type="range"]::-webkit-slider-thumb:active {
  box-shadow: inset 0 0 3px #387bbe, 0 0 9px #c26431;
  -webkit-box-shadow: inset 0 0 3px #387bbe, 0 0 9px #c26431;
}
.form_control_container {
  position: relative;
}

.form_control_container span.field-currency {
  position: absolute;
  z-index: 1;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  margin: 0 !important;
  color: rgb(var(--color-foreground));
  font-size: 1.6rem;
}

.form_control_container input {
  padding: 0.5rem 0.5rem 0.5rem 2rem !important;
  margin: 0 !important;
  text-align: right;
  min-height: 10px;
  max-height: 40px;
  height: 35px;
}

.form_control_container label.field__label {
  text-align: right;
  left: auto;
  right: 11px;
  display: none;
}

.form_control_container .field:before,
.form_control_container .field:after {
  border-radius: 10px;
}

input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  height: 2px;
  width: 100%;
  position: absolute;
  background-color: #c6c6c6;
  pointer-events: none;
  padding: 0 !important;
}

#fromSlider {
  height: 0 !important;
  z-index: 1;
  min-height: 0 !important;
}

