.sr-only, .input-switch input[type=checkbox] {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}
.input-switch {
	height: 28px;
}
.input-switch input[type=checkbox] ~ .switch {
	background-color: #cfcfcf;
	width: 50px;
	height: 27px;
	border-radius: 5px;
	position: relative;
	display: inline-block;
	transition: all .4s;
	box-shadow: inset 0px 0px 3px 0px #777;
}
.input-switch input[type=checkbox] ~ .switch:before {
	content: "";
	color: transparent;
	background-color: white;
	border-radius: 4px;
	width: 45%;
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	margin: 2px;
	transition: all .4s;
	box-shadow: 0 6px 18px -9px #000;
}
.input-switch input[type=checkbox]:checked ~ .switch {
	background-color: #71e279;
}
.input-switch input[type=checkbox]:checked ~ .switch:before {
	left: 23.5px;
}
.input-switch input[type=checkbox]:disabled ~ .switch {
	opacity: .5;
}
.input-switch input[type=checkbox].hover ~ .switch:before, .input-switch input[type=checkbox]:hover ~ .switch:before {
	box-shadow: 0 6px 18px -5px #000;
}
.input-switch input[type=checkbox].focus ~ .switch, .input-switch input[type=checkbox]:focus ~ .switch {
	border: 1px solid 1px;
	box-shadow: 0px 0px 6px 1px 1px, inset 0px 0px 3px 0px #777;
}
.input-switch.input-switch-accessibility input[type=checkbox] ~ .switch:after {
	content: "0";
	color: #81878e;
	width: 45%;
	position: absolute;
	left: 23.5px;
	top: 0;
	bottom: 0;
	margin: 2px;
	line-height: 23px;
	text-align: center;
	font-weight: bold;
}
.input-switch.input-switch-accessibility input[type=checkbox]:checked ~ .switch:after {
	content: "1";
	color: #fff;
	left: 0;
}
[accessibility="true"] .input-switch input[type=checkbox] ~ .switch {
	background-color: #4a4a4a !important;
}
[accessibility="true"] .input-switch input[type=checkbox] ~ .switch:checked {
	background-color: #1e4335 !important;
}