input[type=range] + .thumb {
    display:none;
}

.filtri .ttl {
    margin-bottom: 14px !important;
	    margin: 0;
    line-height: 1;
    font-weight: normal;
    letter-spacing: 0.5px;
	display: inline-block;
	font-size: 1.25rem;
}

.select-dropdown li img {
     height: 14px; 
    width: 14px; 
    margin: 18px 15px;
    float: left;
}



.filtri span[class^="slider-valore-"], span[class*="slider-valore-"] {
    margin: 10 10px;
    display: block;
    position: absolute;
    top: 23px;
}

.filtri span[class^="slider-valore-"]:before, span[class*="slider-valore-"]:before{
   content: "(";
}

.filtri span[class^="slider-valore-"]:after, span[class*="slider-valore-"]:after {
   content: " cm)";
}

.filtri span[class^="slider-valore-"]:empty, span[class*="slider-valore-"]:empty {
   display:none;
}
input[type=range] {
  width: 100%;
  margin: 4.5px 0;
  background-color: transparent;
  -webkit-appearance: none;
}
input[type=range]:focus {
  outline: none;
}
input[type=range]::-webkit-slider-runnable-track {
  background: #000000;
  border: 0;
  width: 100%;
  height: 1px;
  cursor: pointer;
}
input[type=range]::-webkit-slider-thumb {
  margin-top: -4.5px;
  width: 10px;
  height: 10px;
  background: #000000;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  -webkit-appearance: none;
}
input[type=range]:focus::-webkit-slider-runnable-track {
  background: #0d0d0d;
}
input[type=range]::-moz-range-track {
  background: #000000;
  border: 0;
  width: 100%;
  height: 1px;
  cursor: pointer;
}
input[type=range]::-moz-range-thumb {
  width: 10px;
  height: 10px;
  background: #000000;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
}
input[type=range]::-ms-track {
  background: transparent;
  border-color: transparent;
  border-width: 4.5px 0;
  color: transparent;
  width: 100%;
  height: 1px;
  cursor: pointer;
}
input[type=range]::-ms-fill-lower {
  background: #000000;
  border: 0;
}
input[type=range]::-ms-fill-upper {
  background: #000000;
  border: 0;
}
input[type=range]::-ms-thumb {
  width: 10px;
  height: 10px;
  background: #000000;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  margin-top: 0px;
  /*Needed to keep the Edge thumb centred*/
}
input[type=range]:focus::-ms-fill-lower {
  background: #000000;
}
input[type=range]:focus::-ms-fill-upper {
  background: #0d0d0d;
}
/*TODO: Use one of the selectors from https://stackoverflow.com/a/20541859/7077589 and figure out
how to remove the virtical space around the range input in IE*/
@supports (-ms-ime-align:auto) {
  /* Pre-Chromium Edge only styles, selector taken from hhttps://stackoverflow.com/a/32202953/7077589 */
  input[type=range] {
    margin: 0;
    /*Edge starts the margin from the thumb, not the track as other browsers do*/
  }
}




