/**
 * GF Scrolling Ticker – Base styles.
 */

.gf-ticker {
	position: relative;
	overflow: hidden;
	height: 40px;
	width: 100%;
}

.gf-ticker__item {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: none;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	color: inherit;
	box-sizing: border-box;
}

.gf-ticker__item--active {
	display: flex;
}

a.gf-ticker__item {
	text-decoration: none;
	color: inherit;
}

.gf-ticker__icon {
	display: inline-flex;
	align-items: center;
	flex-shrink: 0;
	margin-right: 8px;
	line-height: 1;
}

.gf-ticker__text {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* ------------------------------------------------------------------ */
/* Editor: show all items stacked for easy editing                     */
/* ------------------------------------------------------------------ */
.elementor-editor-active .gf-ticker {
	height: auto;
	overflow: visible;
}

.elementor-editor-active .gf-ticker__item {
	position: relative;
	display: flex;
}
