.volume-control {
	margin-left: 30px;
	display: flex;
}

.volume-control-icon {
	height: 40px;
	width: 40px;
	margin-right: 10px;
}

.volume-control-icon img {
	width: 100%;
	height: 100%;
}

.volume-control-slider {
	width: 100px;
	height: 40px;
	position: relative;
}

.volume-control-slider:before {
	content: "";
	position: absolute;
	top: 50%;
	left: 10px;
	right: 10px;
	background: #000;
	transform: translateY(-50%);
	height: 5px;
}

.volume-control-slider-knob {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	height: 20px;
	width: 20px;
	border-radius: 50%;
	border: 0;
	background: #88cc88;
	cursor: ew-resize;
}

.volume-control-slider-knob:focus {
	outline: none;
}