/*----------------------------
	knobKnob Styles
-----------------------------*/


.knob{
	width: 150px;
	height: 150px;
	position:relative;
}

.knob .top{
	position:absolute;
	top:0;
	left:0;
	width: 150px;
	height: 150px;
    background:url('../volume-knob.svg') no-repeat;
    background-size: 100% 100%;
	z-index:10;
	cursor:default !important;
}

.knob .base{
	width: 150px;
	height: 150px;
	border-radius:50%;
	position:absolute;
	top:0;
	left:0;
	z-index:1;
}

.knob .top:after{
	content:'';
	width:10px;
	height:10px;
	background-color:#666;
	position:absolute;
	top:50%;
	left:-10px;
	margin-top:-5px;
	border-radius: 50%;
	cursor:default !important;
}

.knob [draggable] {
  -moz-user-select: none;
  -webkit-user-select: none;
  user-select: none;
}