/* QB - List Slider
 * Premium auto-moving horizontal list (marquee) for Elementor.
 * QB Studio — qusai.dev
 */

.qb-list-slider {
	--qb-lls-gap: 40px;
	position: relative;
	width: 100%;
	overflow: hidden;
	background-color: #d3a34c;
}

.qb-list-slider .qb-lls-track {
	display: flex;
	flex-wrap: nowrap;
	width: max-content;
	will-change: transform;
}

.qb-list-slider .qb-lls-group {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	gap: var(--qb-lls-gap);
	padding-inline-end: var(--qb-lls-gap);
	flex: 0 0 auto;
}

.qb-list-slider .qb-lls-item {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	white-space: nowrap;
	color: #ffffff;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	line-height: 1;
	text-decoration: none;
	flex: 0 0 auto;
	transition: color 0.25s ease;
}

.qb-list-slider a.qb-lls-item {
	cursor: pointer;
}

.qb-list-slider .qb-lls-text {
	display: inline-block;
}

.qb-list-slider .qb-lls-icon {
	display: inline-flex;
	align-items: center;
	line-height: 1;
}

.qb-list-slider .qb-lls-icon svg {
	display: inline-block;
	width: 1em;
	height: 1em;
}

.qb-list-slider .qb-lls-sep {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	line-height: 1;
	flex: 0 0 auto;
}

.qb-list-slider .qb-lls-sep-dot {
	display: inline-block;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background-color: currentColor;
}

.qb-list-slider .qb-lls-sep svg {
	display: inline-block;
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
	.qb-list-slider .qb-lls-track {
		transform: none !important;
	}
	.qb-list-slider .qb-lls-group:not(:first-child) {
		display: none;
	}
}
