.wls-2345-container {
	display: flex;
	align-items: center;
	gap: 10px;
}

.wls-2345-label {
	font-weight: bold;
	color: #666;
	transition: color 0.3s;
}

.wls-2345-label.active {
	color: #000;
}

.wls-2345-switch-label {
	position: relative;
	display: inline-block;
	width: 50px;
	height: 24px;
	background-color: #ccc;
	border-radius: 24px;
	cursor: pointer;
	margin: 0;
}

.wls-2345-checkbox {
	opacity: 0;
	width: 0;
	height: 0;
}

.wls-2345-slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	transition: .4s;
	border-radius: 24px;
}

.wls-2345-slider:before {
	position: absolute;
	content: "";
	height: 18px;
	width: 18px;
	left: 3px;
	bottom: 3px;
	background-color: white;
	transition: .4s;
	border-radius: 50%;
}

.wls-2345-checkbox:checked + .wls-2345-slider:before {
	transform: translateX(26px);
}
