.sliderContainer {
	/* margin-top: 5px;
	margin-bottom: 5px; */
}
.inputSelect {
	float: right;
	margin-left: 3px;
	font-size: 0.741rem;
}
.inputSelectLabel,
.sliderLabel,
.checkboxlabel,
.settingLabel,
.settingContainer label {
	display: inline-block;
	color: var(--fontColor);
	z-index: 15;
	pointer-events: none;
	font-size: 0.741rem;
	-ms-user-select: none; /* Internet Explorer/Edge */
	user-select: none;
}

.colorPickerButtonContainer {
	float: right;
	width: 1.15rem;
	height: 1.15rem;
	margin-top: 0em;
	border-radius: 0;
	border: 1px solid var(--borderColor);
	background-color: rgba(0, 0, 0, 0);
}

.checkboxlabel {
	color: var(--fontWeakenedColor);
	transition: all 0.15s ease-out;
}
.checkboxInput:checked + label {
	color: var(--fontColor);
}

.checkboxInput {
	float: right;
	width: 1.15rem;
	height: 1.15rem;
	margin-top: 0em;
	border-radius: 0;
	border: 1px solid var(--borderColor);
	margin: 0;

	background-color: none;
	box-shadow: inset 0em 0em 0em 1rem var(--inputBgColor),
		inset 0em 0em 0em 0.75rem var(--inputFontColor);
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;

	transition: all 0.15s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.checkboxInput:checked {
	transition: all 0.15s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	box-shadow: inset 0em 0em 0em 0.3rem var(--inputBgColor),
		inset 0em 0em 0em 0.75rem var(--inputFontColor);
}
.checkboxInput:active {
	border: 1px solid var(--borderColor);
}
.checkboxInput:focus {
	border: 1px solid var(--borderColor);
	outline: none;
}

input[type="text"] {
	outline: none;
	box-sizing: border-box;
	font-size: 0.741rem;
	/* margin-top: 3px;
	margin-bottom: 3px;
	border-width: 0px;
	border-radius: 0em;
	padding-top: 6px;
	padding-bottom: 6px; */
	background-color: var(--inputBgColor);
	color: var(--inputFontColor);
}

.sliderVal {
	margin-top: 5px;
	margin-right: 5px;
	float: right;
	color: var(--buttonFontColor);
	z-index: 15;
	pointer-events: none;
	font-size: 0.741rem;
	user-select: none;
}
input[type="range"] {
	-webkit-appearance: none;
	margin: 10px 0;
	width: 100%;
	padding-left: 1px;
	padding-right: 1px;
	transition: all 1s ease-out;
	background-color: rgba(0, 0, 0, 0);
}
input[type="range"]:focus {
	outline: none;
}
input[type="range"]::-webkit-slider-runnable-track {
	width: 100%;
	height: 16px;
	cursor: pointer;
	background: var(--inputBgColor);
	border-radius: 8px;
	border: 1px solid var(--borderColor);
	padding-left: 1px;
	padding-right: 1px;
}
input[type="range"]::-webkit-slider-thumb {
	border: 0px solid var(--borderColor);
	height: 12px;
	width: 12px;
	border-radius: 6px;
	background: var(--buttonFontColor);
	cursor: pointer;
	-webkit-appearance: none;
	margin-top: 1px;
	transition: all 0.2s ease-out;
}
input[type="range"]:focus::-webkit-slider-runnable-track {
	background: var(--inputBgColor);
}
input[type="range"]::-moz-range-track {
	width: 100%;
	height: 16px;
	cursor: pointer;
	background: var(--inputBgColor);
	border-radius: 8px;
	border: 1px solid var(--borderColor);
	padding-left: 2px;
	padding-right: 2px;
}
input[type="range"]::-moz-range-thumb {
	border: 0px solid var(--borderColor);
	height: 12px;
	width: 12px;
	border-radius: 6px;
	background: var(--buttonFontColor);
	cursor: pointer;
	margin-top: 1px;
	transition: all 1s ease-out;
}
input[type="range"]::-ms-track {
	width: 100%;
	height: 16px;
	cursor: pointer;
	background: transparent;
	border-color: transparent;
	color: transparent;
	padding-left: 1px;
	padding-right: 1px;
}
input[type="range"]::-ms-fill-lower {
	background: var(--inputBgColor);
	border: 1px solid var(--borderColor);
	border-radius: 16px;
}
input[type="range"]::-ms-fill-upper {
	background: var(--inputBgColor);
	border: 1px solid var(--borderColor);
	border-radius: 16px;
}
input[type="range"]::-ms-thumb {
	border: 0px solid var(--borderColor);
	height: 12px;
	width: 12px;
	border-radius: 6px;
	background: var(--buttonFontColor);
	cursor: pointer;
	margin-top: 1px;
}
input[type="range"]:focus::-ms-fill-lower {
	background: var(--inputBgColor);
}
input[type="range"]:focus::-ms-fill-upper {
	background: var(--inputBgColor);
}
