/*Range Reset*/
input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    cursor: pointer;
    width: 15rem;
    
  }
  
  /* Removes default focus */
  input[type="range"]:focus {
    outline: none;
  }
  
  /***** Chrome, Safari, Opera and Edge Chromium styles *****/
  /* slider track */
  input[type="range"]::-webkit-slider-runnable-track {
    border-radius: 0.5rem;
    height: 0.5rem;
  }
  
  /* slider thumb */
  input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none; /* Override default look */
    appearance: none;
    margin-top: -6px; /* Centers thumb on the track */
    background: url("../icons/range.svg");

    /*custom styles*/
    width: 28.55px;
    height: 16.65px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-color: rgb(255, 255, 255);
    border: 1.18947px solid #f7f8f7;
    border-radius: 66.6105px;
  }

  
  
  input[type="range"]:focus::-webkit-slider-thumb {
    // border: 1px solid #053a5f;
    // outline: 1px solid #053a5f;
    outline-offset: 0.125rem;
  }
  
  /******** Firefox styles ********/
  /* slider track */
  input[type="range"]::-moz-range-track {
    background-color: black;
    border-radius: 0.5rem;
    height: 0.5rem;
  }
  
  /* slider thumb */
  input[type="range"]::-moz-range-thumb {
    border: none; /*Removes extra border that FF applies*/
    border-radius: 0; /*Removes default border-radius that FF applies*/
  
    /*custom styles*/
    background-color: #5cd5eb;
    height: 2rem;
    width: 1rem;
  }
  
  input[type="range"]:focus::-moz-range-thumb {
    // border: 1px solid #053a5f;
    outline: 1px solid #053a5f;
    outline-offset: 0.125rem;
  }
  
  input[type="range"] {
    width: 100%;
    margin-top: 1rem;
  }

.styled_range {
    position: relative;
  }

  input[type=range] {
    position: absolute;
 
  }

  input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
  }

  input[type=range]:focus {
    outline: none;
  }

  input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
  }

  .track_range {
    pointer-events: none;
  }

  .track_range::-webkit-slider-runnable-track {
    background: #F7F8F7;
    border-radius: 6px;
    overflow: hidden;
  }  

  .track_range::-webkit-slider-thumb {
    -webkit-appearance: none;
    background: transparent;
    box-shadow: -600px 0 0 600px #000000;
  }

  .thumb_range::-webkit-slider-runnable-track {
    background: transparent;
    cursor: pointer;
  }

  .thumb_range::-webkit-slider-thumb {
    box-shadow: 0px 1.18947px 4.75789px rgba(0, 0, 0, 0.14);
  }

  .range-label {
    display: flex;
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .slider-contain {
    height: 4.5rem;
  }