/* Input range carrito */

@media only screen and (max-width: 480px)
{
  input[type=range]::-webkit-slider-thumb {
      -webkit-appearance: none !important;
      border: none !important;
      height: 100px !important;
      width: 100px !important;
      border-radius: 50% !important;
      background-image: url("/assets/auto-aig.png") !important;
      background-size:100px !important;
      background-repeat: no-repeat !important;
      background-position:center !important;
      margin-top: -50px !important;
  }
}
input[type=range] {
  -webkit-appearance: none !important; /* Hides the slider so that custom slider can be made */
  width: 100% !important; /* Specific width is required for Firefox. */
  background: transparent !important; /* Otherwise white in Chrome */
  border: none !important;
}

input[type=range]::-webkit-slider-runnable-track {
  /*  height: 2.5px !important;
    background: #e6e6e6 !important;*/
    border: none !important;
    border-radius: 1px !important;
    height: 10px !important;
    background: #4f4f4f !important;
}

input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none !important;
    border: none !important;
    height: 100px !important;
    width: 100px !important;
    border-radius: 50% !important;
    background-image: url("/assets/auto-aig.png") !important;
    background-size:100px !important;
    background-repeat: no-repeat !important;
    background-position:center !important;
    margin-top: -50px !important;
}

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

input[type=range]:focus::-webkit-slider-runnable-track {
    background: #4f4f4f !important;

}

input[type=range]::-moz-range-thumb {
  -webkit-appearance: none !important;
  border: none !important;
  height: 100px !important;
  width: 100px !important;
  border-radius: 50% !important;
  background-image: url("/assets/auto-aig.png") !important;
  background-size:100px !important;
  background-repeat: no-repeat !important;
  background-position:top !important;
  margin-top: -50px !important;
}
