input {
	font: inherit;
	background-color: inherit;
	color: inherit;
}

input[type="button"] {
	border: 1px white solid;
	border-radius: 0;
}

input[type="button"]:hover {
	background-color: white;
	color: black;
	cursor: pointer;
}

input[type="text"] {
	border: none;
	border-bottom: 1px white solid;
	border-radius: 0;
	float: right;
	text-align: right;
	opacity: 0.7;
	/* width: 15em; */
}

input[type="text"]:hover {
  opacity: 1;
}

input[type="text"]:read-only {
	color: lightgray;
	border-color: rgb(58, 58, 58);
	cursor: default;
}

.range {
	width: 100%;
	text-align: right;
	line-height: 1em;
}

.range .label {
	float:left;
}

.range .value {
	display: inline-block;
	width: 3em;
	text-align: left;
	padding-right: 0.5em;
	padding-left: 4em;
}

.range input[type="number"] {
  	-webkit-appearance: none;
  	background: inherit;
  	outline: none;
  	opacity: 0.7;
	border: none;
	border-top: 1px solid transparent;
	border-bottom: 1px solid white;
	border-radius: 0;
	vertical-align:middle;
	padding: 0;
	width: 5em;
}

.range input[type="number"]:hover {
  opacity: 1;
}

.range input[type="range"] {
  	-webkit-appearance: none;
  	background: inherit;
  	outline: none;
  	opacity: 0.7;
	border: 1px solid white;
	border-radius: 0;
	vertical-align:middle;
}

input[type="range"]:hover {
  opacity: 1;
}

input[type="range"]::-webkit-slider-thumb {
  	-webkit-appearance: none;
  	appearance: none;
  	width: 1em;
  	height: 1em;
  	background: white;
  	cursor: pointer;
}

input[type="range"]::-moz-range-thumb {
  	appearance: none;
  	width: 1em;
  	height: 1em;
  	background: white;
  	cursor: pointer;
}

select {
	font-family: inherit;
	background: inherit;
	outline: none;
	opacity: 0.7;
	border-radius: 0;
	vertical-align:middle;
	padding: 0;
	line-height: 1em;
	border: 1px solid white;
	color: white;
	text-align: left;
	width: 15em;
	float: right;
	background: black;
}

select:hover {
	opacity: 1;
}

select:disabled {
	border-color: rgb(58, 58, 58);
}