/* Reproduces HT Mega's toggle button defaults so the existing markup keeps
 * looking the same after HT Mega is uninstalled. Per-widget overrides
 * (color, padding, border-radius) come from the widget's style controls and
 * are injected by Elementor as inline CSS keyed by the widget id.
 */
.htmega-toggle-button {
	display: flex;
	justify-content: center;
	gap: 8px;
}
.htmega-toggle-button a {
	display: inline-block;
	text-decoration: none;
	background: #87C770;
	color: #FFFFFF;
	padding: 10px 25px;
	border-radius: 50px;
	cursor: pointer;
}
.htmega-toggle-button a:hover {
	color: #FFFFFF;
	opacity: 0.92;
}
.htmega-toggle-button .opened_btn {
	display: none;
}
.htmega-toggle-button.open .normal_btn {
	display: none;
}
.htmega-toggle-button.open .opened_btn {
	display: inline-block;
}
