.tp-toggle-wrapper { display: flex; align-items: center; gap: 10px; margin: 10px 0; }
.tp-toggle-switch { position: relative; display: inline-block; width: 36px; height: 20px; flex-shrink: 0; }
.tp-toggle-switch input { opacity: 0; width: 0; height: 0; }
.tp-toggle-slider {
	position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0;
	background-color: #ccc; transition: .4s; border-radius: 20px;
}
.tp-toggle-slider:before {
	position: absolute; content: ""; height: 16px; width: 16px;
	left: 2px; bottom: 2px; background-color: white;
	transition: .4s; border-radius: 50%;
}
input:checked + .tp-toggle-slider { background-color: #007cba; }
input:checked + .tp-toggle-slider:before { transform: translateX(16px); }
.tp-toggle-label { cursor: pointer; font-size: 13px; line-height: 1.4; color: #1d2327; }
