.lsdo-offer-banner {
	position: relative;
	z-index: 1000;
	background: var(--e-global-color-primary);
	color: var(--e-global-color-surface);
	font-family: var(--e-global-typography-text-font-family), Sans-serif;
}

.lsdo-offer-banner__inner {
	display: flex;
	max-width: 1140px;
	margin: 0 auto;
	padding: 10px 24px;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.lsdo-offer-banner__icon {
	display: inline-flex;
	flex: 0 0 auto;
	width: 28px;
	height: 28px;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--e-global-color-accent);
	color: var(--e-global-color-surface);
	font-size: 0.95rem;
	font-weight: 900;
	line-height: 1;
}

.lsdo-offer-banner__text {
	min-width: 0;
	flex: 1;
	font-weight: 700;
}

.lsdo-offer-banner__text p {
	margin: 0;
}

.lsdo-offer-banner__text a {
	color: inherit;
	text-decoration: underline!important;
}

.lsdo-offer-banner__text a:hover {
	color: var(--e-a-color-white);
	text-decoration: underline!important;
}

.lsdo-offer-banner__countdown {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 12px;
	border: 1px solid color-mix(in srgb, var(--e-global-color-surface) 35%, transparent);
	border-radius: 999px;
	font-size: 0.92rem;
	white-space: nowrap;
}

.lsdo-offer-banner__countdown-label {
	opacity: 0.78;
}

.lsdo-offer-banner--course {
	z-index: 1;
	margin-bottom: 14px;
	padding: 14px 16px;
	border: 1px solid color-mix(in srgb, var(--e-global-color-secondary) 28%, transparent);
	border-radius: 18px;
	background:
		radial-gradient(circle at 18px 18px, color-mix(in srgb, var(--e-global-color-secondary) 16%, transparent), transparent 34px),
		color-mix(in srgb, var(--e-global-color-primary) 4%, var(--e-global-color-surface));
	color: var(--e-global-color-primary);
}

.lsdo-offer-banner--course .lsdo-offer-banner__inner {
	max-width: none;
	padding: 0;
	align-items: flex-start;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 10px 14px;
}

.lsdo-offer-banner--course .lsdo-offer-banner__icon {
	background: var(--e-global-color-surface);
	box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--e-global-color-secondary) 28%, transparent);
	color: var(--e-global-color-primary);
}

.lsdo-offer-banner--course .lsdo-offer-banner__text {
	flex: 1 1 220px;
	font-size: 0.9rem;
	line-height: 1.45;
}

.lsdo-offer-banner--course .lsdo-offer-banner__countdown {
	order: 3;
	border-color: var(--e-global-color-secondary);
	background: var(--e-global-color-primary);
	color: var(--e-global-color-surface);
	font-weight: 800;
}

@media (max-width: 767px) {
	.lsdo-offer-banner__inner {
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-start;
		overflow: hidden;
	}

	.lsdo-offer-banner__icon {
		width: 26px;
		height: 26px;
	}

	.lsdo-offer-banner--mobile-marquee .lsdo-offer-banner__text {
		width: 100%;
		overflow: hidden;
		flex: 1;
	}

	.lsdo-offer-banner--mobile-marquee .lsdo-offer-banner__marquee-track {
		display: inline-block;
		min-width: max-content;
		animation: lsdo-offer-marquee 12s linear infinite;
	}

	.lsdo-offer-banner__countdown {
		width: fit-content;
		font-size: 0.82rem;
	}

	.lsdo-offer-banner--course .lsdo-offer-banner__inner {
		flex-direction: column;
		align-items: flex-start;
		overflow: visible;
		gap: 10px;
	}

	.lsdo-offer-banner--course .lsdo-offer-banner__text {
		flex: 1 1 auto;
		font-size: 0.86rem;
	}

	.lsdo-offer-banner--course.lsdo-offer-banner--mobile-marquee .lsdo-offer-banner__text {
		overflow: visible;
	}

	.lsdo-offer-banner--course.lsdo-offer-banner--mobile-marquee .lsdo-offer-banner__marquee-track {
		min-width: 0;
		animation: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	.lsdo-offer-banner__marquee-track {
		animation: none !important;
	}
}

@keyframes lsdo-offer-marquee {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-50%);
	}
}
