/* Range bar */
/* input[type=range] {
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
}
input[type=range]:focus {
    outline: none;
  }
input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 72%;
  cursor: pointer;
  background: #812b50;
  border-radius: 15px;
}
input[type=range]::-webkit-slider-thumb {
  border: 1px solid #812b50;
  height: 17px;
  width: 17px;
  border-radius: 25px;
  background: #f787b7;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -4px;
} */

input[type="range"] {
  -webkit-appearance: none;
  appearance: none; 
  cursor: pointer;
  outline: none;
  overflow: hidden;
  border-radius: 16px;
  height: 13px;
  width: 75%;
}

input[type="range"]::-webkit-slider-runnable-track {
  height: 13px;
  background: #ccc;
  border-radius: 16px;
}

input[type="range"]::-moz-range-track {
  height: 13px;
  background: #ccc;
  border-radius: 16px;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none; 
  height: 13px;
  width: 13px;
  background-color: #fff;
  border-radius: 50%;
  border: 2px solid #812b50;
  box-shadow: -407px 0 0 400px #812b50;
}

input[type="range"]::-moz-range-thumb {
  height: 10px;
  width: 10px;
  background-color: #fff;
  border-radius: 50%;
  border: 2px solid #812b50;
  box-shadow: -407px 0 0 400px #812b50;
  }

  /*=============
  Aesthetics 
  =========================*/

  /* .wrapper {
  color: #4b4949; 
  background: #812b50;
  max-width: 400px;
  width: 100%;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  } */

  /* .range {
  display: flex;
  align-items: center;
  max-width: 500px;
  height: 4rem;
  width: 80%;
  background: #fff;
  padding: 0px 13px;
  } */
