label.switchify.switchify-label {
	display: inline-block;
}

label.switchify.switchify-label > input.switchified {
	display: none;
}

label.switchify.switchify-label > span.switchify-switch {
	display: block;
	background-color: #cecece;
	height: 20px;;
	width: 33px;
	position: relative;
	border: 2px solid #cecece;
	border-radius: 1em;
	transition: background-color 0.25s, border-color 0.25s;
}

label.switchify.switchify-label > span.switchify-switch::after {
	content: "";
	background-color: #fff;
	display: block;
	height: 14px;
	width: 14px;
	position: absolute;
	border-radius: 50%;
	left: 2px;
	top: 1px;
	transition: left 0.25s;
}

label.switchify.switchify-label > input.switchified:checked + span.switchify-switch {
	background-color: #17393c;
	border-color: #17393c;
}

label.switchify.switchify-label > input.switchified:checked + span.switchify-switch::after {
	left:auto;
	right:2px;
}
