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: #dededf;
	height: 20px;
	width: 32px;
	position: relative;
	border: 1px solid #dededf;
	border-radius: 28px;
	transition: background-color 0.25s, border-color 0.25s;
}

label.switchify.switchify-label > span.switchify-switch.switchify-primary {
	background-color: #dededf;
	height: 20px;
	width: 32px;
	position: relative;
	border: 1px solid #dededf;
}

label.switchify.switchify-label > span.switchify-switch::after {
	content: "";
	background-color: #fff;
	display: block;
	height: 14px;
	width: 14px;
	position: absolute;
	border-radius: 100%;
	top: 2px;
	left: 2px;
	transition: left 0.25s;
}

label.switchify.switchify-label > input.switchified:checked + span.switchify-switch {
	background-color: #27272a;
	border-color: #27272a;
}

label.switchify.switchify-label > input.switchified:checked + span.switchify-switch::after {
	left: calc(100% - 16px);
}


