/* Headache Mode Toggle Styles */
.headache-mode-toggle {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 1em 0;
	font-size:.88em;
	margin-bottom:-3px!important;
}

.headache-mode-switch {
	position: relative;
	display: inline-block;
	width: 40px;
	height: 24px;
}

.headache-mode-switch input {
	opacity: 0;
	width: 0;
	height: 0;
}

.headache-mode-slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: var(--wp--custom--light--1);
	transition: .4s;
	border-radius: 34px;
}

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

.headache-mode-switch input:checked + .headache-mode-slider {
	background-color: white;
}

.headache-mode-switch input:checked + .headache-mode-slider:before {
	transform: translateX(15px);
	background-color: var(--wp--custom--light--1);
}
