/* knob.css */
.knob-container {
	display: flex;
	align-items: center;
	width: 100%;
	height: 100%;
	padding: 5px;
/*	display: inline-block;*/
/*	position: relative;*/
/*	text-align: center;*/
/*	margin: 0 5px;*/
}

.knob {
	width: 40px;
	height: 40px;

	border-radius: 50%;
	background: #555;
	position: relative;
	cursor: pointer;
/*	border-color: lightgrey;*/
	border-width: 0.2em;
	box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
	transition: transform 0.1s;
}

.knob::before {
	content: "";
	position: absolute;
	top: 5px;
	left: 50%;
	width: 3px;
	height: 12px;
/*	background: #fff;*/
background: #ffffff00;
	transform: translateX(-50%);
	border-radius: 2px;
}

.knob-value {
	font-size: 12px;
	font-weight: normal;
	/*font-weight: bold;*/
	min-width: 50px;
	color: orange;
	text-align: left;
	padding: 5px;
	text-shadow: 0 1px 1px rgba(0,0,0,0.3);
	/*
	margin-top: 5px;
	font-size: 12px;
	color: #ddd;
	min-height: 1.2em;
	font-family: monospace;
	user-select: none;
	 */
}
/* debug
.knob-container {
	background-color: rgba(255,0,0,0.3) !important;
	border: 2px dashed lime !important;
}

.knob-target {
	background-color: rgba(0,255,0,0.3) !important;
	border: 1px solid blue !important;
	min-height: 50px;
}
 */
