/* theme-switcher.css */

.toggle-box-label-left:after,
.toggle-box-label-left:before {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	outline: none
}

.toggle-box-label-left.ease-transitions:after,
.toggle-box-label-left.ease-transitions:before {
	-webkit-transition: .25s ease-in-out;
	transition: .25s ease-in-out;
}

.toggle-box input[type=checkbox],
.toggle-box input[type=checkbox]:active {
	position: absolute;
	top: -5000px;
	transform: scale(0); /* Setting width and height to 0 doesn't work */
	height: 0;
	width: 0;
	opacity: 0;
	border: none;
	outline: none
}
.toggle-box input[type=checkbox]:focus-visible+label {
	outline: 2px solid var(--primary-color)
}
.toggle-box label {
	display: inline-block;
	position: relative;
	padding: 0;
	margin: 2px 0 0;
	margin-right: 10px;
	/* margin-bottom: 20px; */
	font-size: 14px;
	line-height: 16px;
	cursor: pointer;
	color: hsla(0, 0%, 58.4%, .51)
}
.toggle-box-label-left:before {
	content: "";
	display: block;
	position: absolute;
	z-index: 1;
	line-height: 34px;
	text-indent: 40px;
	height: 16px;
	width: 16px;
	margin: 4px;
	border-radius: 100%;
	right: 26px;
	bottom: 0;
	background: #ffb200;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg)
}
.toggle-box-label-left:after {
	content: "";
	display: inline-block;
	width: 40px;
	height: 24px;
	border-radius: 16px;
	background: hsla(0, 0%, 100%, .75);
	vertical-align: middle;
	margin: 0 10px;
	border: 2px solid #ffb200
}
.toggle-box input[type=checkbox]:checked+.toggle-box-label-left:before {
	right: 17px;
	box-shadow: 5px 5px 0 0 #eee;
	background: transparent
}
.toggle-box input[type=checkbox]:checked+.toggle-box-label-left:after {
	background: rgba(0, 0, 0, .75);
	border: 2px solid #ddd
}
.toggle-box input[type=checkbox]+.toggle-box-label-left {
	color: hsla(0, 0%, 98%, .51)
}
.toggle-box input[type=checkbox]:checked+.toggle-box-label-left {
	color: hsla(0, 0%, 58.4%, .51)
}
.toggle-box input[type=checkbox]:checked+.toggle-box-label-left+.toggle-box-label {
	color: hsla(0, 0%, 98%, .51)
}