/*----------------------------
	knobKnob Styles
-----------------------------*/


.knob {
    width: 600px;
    height: 600px;
    position: relative;
}

    .knob .top {
        position: absolute;
        top: 0;
        left: 0;
        width: 600px;
        height: 600px;
        z-index: 10;
        cursor: default !important;
        background-image: url('/img/Drehrad.png');
        background-position: 50% 50%;
        background-size: cover;
    }

.knob .base {
	width:600px;
	height:600px;
	border-radius:50%;
	box-shadow:0 5px 0 #4a5056,5px 5px 5px #000;
	position:absolute;
	top:0;
	left:0;
	z-index:1;
}

.xknob .xtop:after{
	content:'';
	width:10px;
	height:10px;
	background-color:#666;
	position:absolute;
	top:50%;
	left:10px;
	margin-top:-5px;
	border-radius: 50%;
	cursor:default !important;
	box-shadow: 0 0 1px #5a5a5a inset;
}

.knob [draggable] {
  -moz-user-select: none;
  -webkit-user-select: none;
  user-select: none;
}