/* The switch - the box around the slider */
.m-toggle-switch {
	position: relative;
	display: inline-block;
	width: 40px;
	height: 16px;
	top: 6px;
	margin: 0 8px;
}
/* Hide default HTML checkbox */
.m-toggle-switch input {
	opacity: 0;
	width: 0;
	height: 0;
}
/* The slider */
.m-slider {
	position: absolute;
	cursor: pointer;
	border-radius: 8px;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #ccc;
	-webkit-transition: .4s;
	transition: .4s;
}
.m-slider:before {
	position: absolute;
	content: "";
	height: 24px;
	width: 24px;
	left: -4px;
	bottom: -4px;
	border-radius: 50%;
	background-color: #ccc;
	box-shadow: 0 0 4px #333;
	-webkit-transition: .4s;
	transition: .4s;
}
input:checked + .m-slider {
	background-color: var(--color-toggle-slider);
}
input:focus + .m-slider {
	box-shadow: 0 0 1px var(--color-toggle-slider);
}
input:checked + .m-slider:before {
	background-color: var(--color-toggle-slider-indicator);
	-webkit-transform: translateX(26px);
	-ms-transform: translateX(26px);
	transform: translateX(26px);
}