
.range {
    margin-bottom: 35px;
    color: 401201;
  }
  
  .range__input {
    -webkit-appearance: none;
    margin: 0;
    width: 100%;
    color: #401201;
  }
  
  .range__input:focus {
    outline: none;
  }
  
  .range__input:focus .range__input::-webkit-slider-runnable-track,
  .range__input::-webkit-slider-runnable-track {
    width: 100%;
    height: 4px;
    cursor: pointer;
    animate: 0.2s;
    box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
    background: #e5e5e5;
    border-radius: 0;
    border: 0px solid #000101;
  }
  
  .range__input::-webkit-slider-thumb {
    border: 0px solid #000000;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
    background: white;
    cursor: pointer;
    -webkit-appearance: none;
    margin-top: -0.55em;
    margin-left: -0.1em;
  }
  
  .range__input:focus::-webkit-slider-runnable-track {
    background: rgba(0, 0, 0, 0.2);
  }
  
  .range__list {
    display: flex;
    justify-content: space-between;
    height: auto;
    overflow: hidden;
    margin-top: 1em;
  }
  
  .range__list option:before {
    content: attr(value);
    font-size: 12px;
    color: rgba(0, 0, 0, 0.32);
    display: block;
  }
  
  [data-range-step] {
    transition: all 0.6s ease;
  }
  
  [data-range-step]:not(.active) {
    overflow: hidden;
    height: 0;
    opacity: 0;
  }
  