/* Orbitalia Ver Más */

:root {
	--ovm-color: #7ED321;
	--ovm-underline-thickness: 0.22em;
	--ovm-underline-thickness-hover: 0.32em;
	--ovm-text-color: inherit;
	--ovm-font-weight: 700;
	--ovm-font-style: italic;
	--ovm-padding: 0 0 0.05em 0;
	--ovm-margin-left: 0.15em;
}

.ovm-rest[hidden] {
	display: none;
}

.ovm-rest.ovm-revealed {
	animation: ovm-fade 0.3s ease;
}

@keyframes ovm-fade {
	from { opacity: 0; }
	to   { opacity: 1; }
}

/* Defeat Elementor's [type=button], [type=submit], button defaults. */
button.ovm-toggle,
.ovm-toggle {
	all: unset;
	box-sizing: border-box;
	-webkit-appearance: none;
	   -moz-appearance: none;
	        appearance: none;

	display: inline;
	font: inherit;
	color: var(--ovm-text-color);
	font-style: var(--ovm-font-style);
	font-weight: var(--ovm-font-weight);
	cursor: pointer;
	white-space: nowrap;
	text-align: inherit;
	text-transform: none;
	letter-spacing: inherit;
	line-height: inherit;
	background: none;
	border: 0;
	border-radius: 0;
	padding: var(--ovm-padding);
	margin: 0 0 0 var(--ovm-margin-left);
	box-shadow: none;
	text-shadow: none;
	min-width: 0;
	min-height: 0;
	height: auto;
	width: auto;

	background-image: linear-gradient(to right, var(--ovm-color), var(--ovm-color));
	background-repeat: no-repeat;
	background-position: 0 100%;
	background-size: 100% var(--ovm-underline-thickness);
	transition: background-size 0.18s ease;
}

button.ovm-toggle:hover,
button.ovm-toggle:focus-visible,
.ovm-toggle:hover,
.ovm-toggle:focus-visible {
	background: none;
	background-image: linear-gradient(to right, var(--ovm-color), var(--ovm-color));
	background-repeat: no-repeat;
	background-position: 0 100%;
	background-size: 100% var(--ovm-underline-thickness-hover);
	outline: none;
	color: var(--ovm-text-color);
	border: 0;
}

/* When the button has been moved to the end of the revealed content. */
.ovm-toggle.ovm-toggle--less {
	margin-left: 0;
}

@media (prefers-reduced-motion: reduce) {
	.ovm-rest.ovm-revealed { animation: none; }
	.ovm-toggle { transition: none; }
}
