#switch[type=checkbox]{
	height: 0;
	width: 0;
    visibility: hidden;
}

label {
    margin-top: 6px;
	cursor: pointer;
	width: 40px;
	height: 20px;
	background: #cdcdcd;
	display: block;
	border-radius: 20px;
	position: relative;
}

label:after {
	content: '';
	position: absolute;
	top: 2px;
	left: 2px;
	width: 16px;
	height: 16px;
	background: #fff;
	border-radius: 16px;
	transition: 0.3s;
}

#switch:checked + label {
	background: #555;
}

#switch:checked + label:after {
	left: calc(100% - 5px);
	transform: translateX(-100%);
}

label:active:after {
	width: 20px;
}
