.button{
    margin: 10px;
}
.button:hover{
    -ms-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    transform: scale(1.1);
}

.button:active{
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.1);
}

.sliderButtons input{
#    display: block;
    background-color: green;
    margin: 1px;
    border: 1px;
    padding: 1px;
}

.sliderRange{
    -webkit-appearance: slider-vertical;
    appearance: slider-vertical; 
    height: 40vh;
    height: calc(100vh - 20px);
    width: 15px; 
}

.doubleSliders{
    display: flex;
}

.sliderInfo{
    align-items: center;
    display: flex;     
    flex-direction: column;
}

.plussMinusButton{
    display: flex;
}

.sliderInfo p{
    display: inline-block;
}

.sliderInfo input{
    background-color: rgb(230,230,230);
    border: 0px;
}






/* Graphics  */
#buttPlay{
	width: 0;
	height: 0;
	border-left: 50px solid green; /* längden */
	border-top: 30px solid transparent;
	border-bottom: 30px solid transparent;
}
#buttRestart{
	width: 10px;
	height: 0;
	border-right: 50px solid blue;
	border-top: 30px solid transparent;
	border-bottom: 30px solid transparent;
}
#buttRestart:after{
	content: "";
	position: absolute;
	background: blue;
	width: 10px;
	height: 60px;
	margin: -30px 0 0 0;
}
#buttStopp{
	background: red;
	width: 60px;
	height: 60px;
}

#buttPause{
	background: transparent;
	width: 60px;
	height: 60px;
}
#buttPause:before{
	content: "";
	position: absolute;
	background: orange;
	width: 10px;
	height: 60px;
	margin: 0 0 0 15px;
}
#buttPause:after{
	content: "";
	position: absolute;
	background: orange;
	width: 10px;
	height: 60px;
	margin: 0 0 0 35px;
}

.buttPlus {
	display: inline-block;
	background:blue;
	width:6px;
	height:18px;
	position:relative;
	margin-left:6px;
}
.buttPlus:before {
	background:blue;
	content:"";
	width:18px;
	height:6px;
	position:absolute;
	top:6px;
	left:-6px;
}

.buttMinus{
	display: inline-block;
	background:blue;
	width:18px;
	height:6px;
	position:relative;
}
