@media only screen and (max-width: 600px) {	
	input[type="range"]::-webkit-slider-thumb {
		-webkit-appearance: none;
		height: 200px;
		width: 200px;
		border-radius: 50%;
		margin-top: -5px;
	}
}

body {
	font-size: 3vw;
	text-align: center;
}

#volume-container {
	display: flex;
	gap: 100px;
	line-width: 75px;
	justify-content: space-around;
	align-items: center;
}

input[type=button] {
	width: 10vw;
	height: 4vw;
	font-size: 2vw;
	color: #ffffff;
	background: #3071a9;
	border: none;
	border-radius: 5%;
}

input[type=checkbox] {
	width: 2vw;
	height: 2vw;
}

select {
	width: 12vw;
	height: 6vw;
	font-size: 2vw;
	color: #ffffff;
	background: #3071a9;
	border-radius: 5%;
	text-align: center;
	padding: 4px;
}

label {
	display: inline-block;
	width: 15vw;
	text-align: right;
}

input[type=range] {
  -webkit-appearance: none;
  margin: 18px 0;
  width: 75%;
}

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

input[type=range]::-webkit-slider-runnable-track {
  width: 75%;
  height: 8.4px;
  cursor: pointer;
  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
  background: #3071a9;
  border-radius: 1.3px;
  border: 0.2px solid #010101;
}
input[type=range]::-webkit-slider-thumb {
  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
  border: 1px solid #000000;
  height: 36px;
  width: 16px;
  border-radius: 3px;
  background: #ffffff;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -14px;
}
input[type=range]:focus::-webkit-slider-runnable-track {
  background: #367ebd;
}
input[type=range]::-moz-range-track {
  width: 75%;
  height: 8.4px;
  cursor: pointer;
  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
  background: #3071a9;
  border-radius: 1.3px;
  border: 0.2px solid #010101;
}
input[type=range]::-moz-range-thumb {
  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
  border: 1px solid #000000;
  height: 36px;
  width: 16px;
  border-radius: 3px;
  background: #ffffff;
  cursor: pointer;
}
input[type=range]::-ms-track {
  width: 75%;
  height: 8.4px;
  cursor: pointer;
  background: transparent;
  border-color: transparent;
  border-width: 16px 0;
  color: transparent;
}
input[type=range]::-ms-fill-lower {
  background: #2a6495;
  border: 0.2px solid #010101;
  border-radius: 2.6px;
  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
}
input[type=range]::-ms-fill-upper {
  background: #3071a9;
  border: 0.2px solid #010101;
  border-radius: 2.6px;
  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
}
input[type=range]::-ms-thumb {
  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
  border: 1px solid #000000;
  height: 36px;
  width: 16px;
  border-radius: 3px;
  background: #ffffff;
  cursor: pointer;
}
input[type=range]:focus::-ms-fill-lower {
  background: #3071a9;
}
input[type=range]:focus::-ms-fill-upper {
  background: #367ebd;
}

/* input[type="range"] { */
/* 	width: 75vw; */
/* 	height: 100px; */
/* 	margin-bottom: 2vw; */
/* } */
/**/
/* /* Special styling for WebKit/Blink */ */
/* input[type=range]::-webkit-slider-thumb { */
/*   -webkit-appearance: none; */
/*   border: 1px solid #000000; */
/*   height: 100px; */
/*   width: 16px; */
/*   border-radius: 3px; */
/*   background: #ffffff; */
/*   cursor: pointer; */
/*   margin-top: -14px; /* You need to specify a margin in Chrome, but in Firefox and IE it is automatic */ */
/*   box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d; /* Add cool effects to your sliders! */ */
/* } */
/**/
/* /* All the same stuff for Firefox */ */
/* input[type=range]::-moz-range-thumb { */
/*   box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d; */
/*   border: 1px solid #000000; */
/*   height: 100px; */
/*   width: 16px; */
/*   border-radius: 3px; */
/*   background: #ffffff; */
/*   cursor: pointer; */
/* } */
/**/
/* /* All the same stuff for IE */ */
/* input[type=range]::-ms-thumb { */
/*   box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d; */
/*   border: 1px solid #000000; */
/*   height: 100px; */
/*   width: 16px; */
/*   border-radius: 3px; */
/*   background: #ffffff; */
/*   cursor: pointer; */
/* } */

input[type="button"] {
	width: 75px;
	height: 40px;
}
