.eco-theme-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.6rem;
	height: 2.6rem;
	padding: 0;
	border: 1px solid rgba(108, 116, 143, 0.3);
	border-radius: 0.6rem;
	background: rgba(255, 255, 255, 0.86);
	color: #2a2f3e;
	line-height: 1;
	cursor: pointer;
}

.eco-theme-toggle:focus-visible {
	outline: 2px solid #7b70ff;
	outline-offset: 2px;
}

.eco-theme-toggle__icon {
	display: inline-flex;
	width: 1.25rem;
	height: 1.25rem;
}

.eco-theme-toggle__icon svg {
	width: 100%;
	height: 100%;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.9;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.eco-theme-toggle__icon--moon {
	display: none;
}

.eco-theme-toggle.is-dark {
	background: rgba(15, 18, 30, 0.92);
	border-color: rgba(123, 112, 255, 0.45);
	color: #e8ebf7;
}

.eco-theme-toggle.is-dark .eco-theme-toggle__icon--sun {
	display: none;
}

.eco-theme-toggle.is-dark .eco-theme-toggle__icon--moon {
	display: inline-flex;
}

body.theme-dark .eco-theme-toggle,
body[data-theme="dark"] .eco-theme-toggle {
	background: rgba(15, 18, 30, 0.92);
	border-color: rgba(123, 112, 255, 0.45);
	color: #e8ebf7;
}

@media (max-width: 921px) {
	.eco-theme-toggle {
		width: 2.35rem;
		height: 2.35rem;
	}
}
