.button{
	opacity:0;
}

.input-text{
	background: none;
	border:none;
	outline:none;
	font-size:2vh;
}




.value {
  border-bottom: 4px dashed #bdc3c7;
  text-align: center;
  font-weight: bold;
  font-size: 10em;
  width: 300px; 
  height: 100px;
  line-height: 60px;
  margin: 40px auto;
  letter-spacing: -.07em;
  text-shadow: white 2px 2px 2px;
}
.slider{
  display: block;
  -webkit-appearance: none;
  background-color: #ffffff;
  width: 300px;
  height: 5px;
  border-radius: 5px;
  margin: 0 auto;
  outline: 0;
}
.slider[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  background-color: #62ccf1;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid white;
  cursor: pointer;
  transition: .3s ease-in-out;
}​
  .slider[type="range"]::-webkit-slider-thumb:hover {
    background-color: white;
    border: 2px solid #e74c3c;
  }
  .slider[type="range"]::-webkit-slider-thumb:active {
    transform: scale(1.6);
  }