/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Sep 29 2023 | 22:29:36 */
.toggle-switch {
	background: #244362;
	width: 100px;
	height: 40px;
	overflow: hidden;
	border-radius: 3px;
	display: inline-block;
	vertical-align: middle;
	margin: 0 10px;
	&:after {
		content: " ";
		display: block;
		width: 50px;
		height: 40px;
		background-color: #EE4D34;
		border: 3px solid #fff;
		border-top: 0;
		border-bottom: 0;
		margin-left: -3px;
		transition: all 0.1s ease-in-out;
	}
	.active & {
		&:after {
			margin-left: 50px;
		}
	}
}
.toggle-label {
	display: inline-block;
	line-height: 40px;
	font-size: 24px;
	vertical-align: middle;
}
.toggle-label-off {
	color: #EE4D34;
}
.active {
	.toggle-label-off {
		color: #000;
	}
	.toggle-label-on {
		color: #EE4D34;
	}
}
