/* Ausblenden der Spinner bei Numberfeldern */
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.sliderbox{	
	position:relative;
	margin:auto;
	padding:0;
	padding-bottom:20px;	
	width:350px;
	margin-bottom:20px;	
	 -ms-user-select: None;
	 -moz-user-select: None;
	 -webkit-user-select: None;
	 user-select: None;
}

.sliderbackground{
	background-color:#615f5f;
	height:16px;
	width:100%;
	border-radius:50px;	
	position:absolute;
}

.buttonanzeige{
	position:absolute;
	background-color:#f0ba20;
	height:16px;
	width:100%;
	border-radius:50px;	
}

.sliderbutton{
  all:unset;
  background-color:#870000;
  border:none;
  border-radius:50px;
  position:relative;
  z-index:1;
  padding:0;
  cursor: pointer;    
  width:50px;
  height:50px; 	  
  margin-top:-18px;  
}

.leftslidebutton{
  float:left;
}

.rightslidebutton{
  float:right;
}

.minmaxout{
	position:relative;
	display:flex;
	justify-content: center;	
	margin:auto;
	color:#615f5f;	
	width:350px;
	height:100px;
	font-size:2em;	
}

.minmaxcon{
	height:inherit;
	width:30px;
	text-align:center;
}

.minmaxout input{
	min-width:1ch;	
	margin-right:-6px;
	color:#615f5f;
	font-size:1.1em;	
	margin-bottom:-20px;
}

.lineUnderNumber{
	width:150px;
	margin-top:3px;	
}

@media all and (min-width: 451px) { 
	.sliderbox{
		width:100%;
		margin-bottom:auto;
	}

	.sliderbackground{
		height:8px;
	}

	.buttonanzeige{
		height:8px;
	}

	.sliderbutton{
	  width:30px;
	  height:30px;
	  margin-top:-12px;
	}
	
	.minmaxout{		
		width:200px;
		height:60px;
		font-size:1.2em;
	}

	.lineUnderNumber{
		width:80px;
	}
}