.infopro-lms-area,
.infopro-lms-empty {
	--infopro-lms-primary: #1f6feb;
	--infopro-lms-secondary: #12b886;
	--infopro-lms-surface: #ffffff;
	--infopro-lms-surface-soft: #f6f8fb;
	--infopro-lms-border: #d9e0ea;
	--infopro-lms-text: #172033;
	--infopro-lms-muted: #5d6b82;
	color: var(--infopro-lms-text);
	font-family: inherit;
	margin: 0 auto;
	max-width: 1180px;
	width: 100%;
}

.infopro-lms-area * {
	box-sizing: border-box;
}

.infopro-lms-header {
	background: linear-gradient(135deg, var(--infopro-lms-primary), #202b3f);
	border-radius: 8px;
	color: #ffffff;
	margin: 0 0 24px;
	overflow: hidden;
	padding: 32px;
	position: relative;
}

.infopro-lms-header h2,
.infopro-lms-section h3,
.infopro-lms-card h4 {
	letter-spacing: 0;
	line-height: 1.2;
	margin: 0;
}

.infopro-lms-header h2 {
	font-size: clamp(1.75rem, 4vw, 3rem);
}

.infopro-lms-header p {
	max-width: 760px;
}

.infopro-lms-kicker {
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0;
	margin: 0 0 8px;
	text-transform: uppercase;
}

.infopro-lms-section {
	margin: 0 0 28px;
}

.infopro-lms-section__head {
	align-items: center;
	display: flex;
	justify-content: space-between;
	margin: 0 0 14px;
}

.infopro-lms-section__head h3 {
	font-size: 1.25rem;
}

.infopro-lms-grid {
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.infopro-lms-panel,
.infopro-lms-card,
.infopro-lms-empty {
	background: var(--infopro-lms-surface);
	border: 1px solid var(--infopro-lms-border);
	border-radius: 8px;
	box-shadow: 0 12px 34px rgba(23, 32, 51, 0.07);
}

.infopro-lms-panel {
	padding: 20px;
}

.infopro-lms-panel p,
.infopro-lms-empty p,
.infopro-lms-card p {
	color: var(--infopro-lms-muted);
	margin: 0 0 14px;
}

.infopro-lms-card {
	display: flex;
	flex-direction: column;
	min-width: 0;
	overflow: hidden;
}

.infopro-lms-card__image {
	aspect-ratio: 16 / 9;
	background: var(--infopro-lms-surface-soft);
	display: block;
	height: auto;
	object-fit: cover;
	width: 100%;
}

.infopro-lms-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 18px;
}

.infopro-lms-card h4 {
	font-size: 1.1rem;
	margin: 0 0 8px;
}

.infopro-lms-card__meta,
.infopro-lms-price {
	font-size: 0.9rem;
}

.infopro-lms-price {
	color: var(--infopro-lms-text);
	font-weight: 700;
}

.infopro-lms-club-card__logo,
.infopro-lms-club-hero__logo {
	background: #ffffff;
	border: 1px solid rgba(255, 255, 255, 0.75);
	border-radius: 8px;
	height: 56px;
	margin: -46px 0 14px;
	object-fit: cover;
	width: 56px;
}

.infopro-lms-club-hero {
	background-position: center;
	background-size: cover;
	min-height: 280px;
	padding: 0;
}

.infopro-lms-club-hero::before {
	background: linear-gradient(90deg, rgba(14, 24, 38, 0.9), rgba(14, 24, 38, 0.55));
	content: "";
	inset: 0;
	position: absolute;
}

.infopro-lms-club-hero__content {
	max-width: 760px;
	padding: 34px;
	position: relative;
	z-index: 1;
}

.infopro-lms-club-hero__logo {
	margin: 0 0 16px;
}

.infopro-lms-welcome {
	background: rgba(255, 255, 255, 0.12);
	border-left: 4px solid var(--infopro-lms-secondary);
	border-radius: 8px;
	margin-top: 18px;
	padding: 12px 14px;
}

.infopro-lms-welcome p:last-child {
	margin-bottom: 0;
}

.infopro-lms-button {
	align-items: center;
	background: var(--infopro-lms-primary);
	border: 1px solid var(--infopro-lms-primary);
	border-radius: 8px;
	color: #ffffff;
	display: inline-flex;
	font-weight: 700;
	justify-content: center;
	margin-top: auto;
	min-height: 42px;
	padding: 10px 16px;
	text-decoration: none;
	transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.infopro-lms-button:hover,
.infopro-lms-button:focus {
	background: #174ea6;
	border-color: #174ea6;
	color: #ffffff;
	transform: translateY(-1px);
}

.infopro-lms-button.is-disabled {
	background: #eef2f7;
	border-color: #d8e0ea;
	color: var(--infopro-lms-muted);
	cursor: not-allowed;
}

.infopro-lms-button--secondary {
	background: #ffffff;
	border-color: var(--infopro-lms-border);
	color: var(--infopro-lms-text);
}

.infopro-lms-button--secondary:hover,
.infopro-lms-button--secondary:focus {
	background: var(--infopro-lms-surface-soft);
	border-color: var(--infopro-lms-border);
	color: var(--infopro-lms-text);
}

.infopro-lms-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 18px;
}

.infopro-lms-progress {
	background: #e9eef5;
	border-radius: 999px;
	height: 8px;
	margin: 4px 0 8px;
	overflow: hidden;
	width: 100%;
}

.infopro-lms-progress span {
	background: var(--infopro-lms-secondary);
	display: block;
	height: 100%;
	transition: width 180ms ease;
}

.infopro-lms-student-account {
	display: grid;
	gap: 18px;
}

.infopro-lms-student-account .infopro-lms-section__head {
	margin-bottom: 0;
}

.infopro-lms-student-account__profile {
	align-items: center;
	display: flex;
	flex-direction: row;
	gap: 16px;
	padding: 18px;
}

.infopro-lms-student-account__profile .avatar {
	border-radius: 999px;
	display: block;
	height: 72px;
	width: 72px;
}

.infopro-lms-student-account__identity h3,
.infopro-lms-student-account__courses h3,
.infopro-lms-student-account__clubs h3,
.infopro-lms-student-account__history h3,
.infopro-lms-student-account__progress h3 {
	font-size: 1.25rem;
	line-height: 1.2;
	margin: 0 0 12px;
}

.infopro-lms-student-account__identity p:last-child,
.infopro-lms-student-account__course p:last-child,
.infopro-lms-student-account__club p:last-child,
.infopro-lms-student-account__data p:last-child,
.infopro-lms-student-account__progress p:last-child,
.infopro-lms-student-account__history p:last-child {
	margin-bottom: 0;
}

.infopro-lms-student-account__course--inactive {
	opacity: 0.86;
}

.infopro-lms-student-account__inactive,
.infopro-lms-student-account__history,
.infopro-lms-student-account__activity,
.infopro-lms-student-account__actions {
	margin-top: 18px;
}

.infopro-lms-student-account__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.infopro-lms-student-account--preview > .infopro-lms-empty {
	max-width: none;
}

.infopro-lms-progress-bar {
	margin-top: 10px;
}

.infopro-lms-badge {
	align-self: flex-start;
	background: rgba(31, 111, 235, 0.1);
	border: 1px solid rgba(31, 111, 235, 0.2);
	border-radius: 999px;
	color: var(--infopro-lms-primary);
	font-size: 0.76rem;
	font-weight: 700;
	margin: 0 0 10px;
	padding: 4px 9px;
}

.infopro-lms-empty {
	background: var(--infopro-lms-surface-soft);
	padding: 22px;
	text-align: left;
}

.infopro-lms-empty p:last-child {
	margin-bottom: 0;
}

.infopro-lms-continue-card h4 {
	margin: 4px 0 8px;
}

.infopro-lms-complete-box {
	align-items: center;
	background: var(--infopro-lms-surface);
	border: 1px solid var(--infopro-lms-border);
	border-radius: 8px;
	box-sizing: border-box;
	display: grid;
	gap: 18px;
	grid-template-columns: minmax(0, 1fr) auto;
	margin-bottom: 22px;
	max-width: 100%;
	padding: 18px;
	position: relative;
}

.infopro-lms-complete-box__status,
.infopro-lms-complete-box__actions {
	box-sizing: border-box;
	max-width: 100%;
	min-width: 0;
}

.infopro-lms-complete-box__button {
	max-width: 100%;
}

.infopro-lms-complete-button-widget--button-only,
.infopro-lms-complete-button-widget--no-card {
	box-sizing: border-box;
	max-width: 100%;
	position: relative;
	width: 100%;
}

.infopro-lms-complete-button-only,
.infopro-lms-complete-button-widget--no-card {
	align-items: flex-start;
	display: flex;
	flex-direction: column;
	gap: 10px;
	position: relative;
}

.infopro-lms-complete-button-only .infopro-lms-complete-box__button {
	max-width: 100%;
}

.infopro-lms-complete-button.is-completed {
	border-color: var(--infopro-lms-secondary);
}

.infopro-lms-complete-button.is-loading {
	opacity: 0.72;
	pointer-events: none;
}

.infopro-lms-complete-celebration {
	--infopro-lms-celebration-left: 50%;
	--infopro-lms-celebration-size: 320px;
	--infopro-lms-celebration-top: 50%;
	box-sizing: border-box;
	height: var(--infopro-lms-celebration-size);
	left: var(--infopro-lms-celebration-left);
	max-height: 92vh;
	max-width: 92vw;
	opacity: 0;
	overflow: visible;
	pointer-events: none;
	position: fixed;
	top: var(--infopro-lms-celebration-top);
	transform: translate(-50%, -50%);
	transition: opacity 160ms ease;
	width: var(--infopro-lms-celebration-size);
	z-index: 100000;
}

.infopro-lms-complete-celebration.is-playing {
	opacity: 1;
}

.infopro-lms-complete-celebration.is-error {
	filter: hue-rotate(130deg) saturate(0.95);
}

.infopro-lms-complete-celebration--screen {
	left: 50vw;
	position: fixed;
	top: 50vh;
	z-index: 100001;
}

.infopro-lms-complete-celebration svg,
.infopro-lms-complete-celebration canvas,
.infopro-lms-complete-celebration .infopro-lms-lottie-local {
	display: block;
	height: 100%;
	max-height: 100%;
	max-width: 100%;
	overflow: visible;
	width: 100%;
}

.infopro-lms-lottie-local {
	position: relative;
}

.infopro-lms-lottie-local span {
	animation: infopro-lms-confetti-pop 900ms cubic-bezier(0.16, 1, 0.3, 1) both;
	background: var(--infopro-lms-dot-color);
	border-radius: 2px;
	display: block;
	height: 12px;
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%) rotate(var(--infopro-lms-dot-rotate));
	width: 6px;
}

.infopro-lms-lottie-local span:nth-child(3n) {
	border-radius: 999px;
	height: 8px;
	width: 8px;
}

.infopro-lms-lottie-local span:nth-child(4n) {
	height: 6px;
	width: 16px;
}

.infopro-lms-complete-button--celebrated {
	animation: infopro-lms-button-celebrated 700ms ease both;
}

.infopro-lms-complete-button--celebrated-error {
	animation: infopro-lms-button-celebrated-error 700ms ease both;
}

@keyframes infopro-lms-confetti-pop {
	0% {
		opacity: 0;
		transform: translate(-50%, -50%) scale(0.3) rotate(var(--infopro-lms-dot-rotate));
	}

	18% {
		opacity: 1;
	}

	100% {
		opacity: 0;
		transform: translate(calc(-50% + var(--infopro-lms-dot-x)), -150%) scale(1) rotate(calc(var(--infopro-lms-dot-rotate) + 240deg));
	}
}

@keyframes infopro-lms-button-celebrated {
	0%,
	100% {
		box-shadow: 0 0 0 rgba(34, 197, 94, 0);
		transform: scale(1);
	}

	45% {
		box-shadow: 0 0 0 8px rgba(34, 197, 94, 0.16), 0 18px 36px rgba(34, 197, 94, 0.22);
		transform: scale(1.04);
	}
}

@keyframes infopro-lms-button-celebrated-error {
	0%,
	100% {
		box-shadow: 0 0 0 rgba(239, 68, 68, 0);
		transform: scale(1);
	}

	45% {
		box-shadow: 0 0 0 8px rgba(239, 68, 68, 0.16), 0 12px 28px rgba(239, 68, 68, 0.2);
		transform: scale(1.03);
	}
}

.infopro-lms-feedback {
	color: var(--infopro-lms-muted);
	font-size: 0.9rem;
	margin: 8px 0 0;
}

.infopro-lms-feedback.is-error {
	color: #b42318;
}

.infopro-lms-video-widget {
	display: block;
	max-width: 100%;
	min-width: 0;
	width: 100%;
}

.infopro-lms-video-text-above,
.infopro-lms-video-text-below {
	max-width: 100%;
}

.infopro-lms-video,
.infopro-lms-video-frame {
	aspect-ratio: 16 / 9;
	background: #000000;
	border-radius: 8px;
	box-sizing: border-box;
	display: block;
	margin: 14px 0;
	max-width: 100%;
	min-width: 0;
	overflow: hidden;
	position: relative;
	width: 100%;
}

.infopro-lms-aspect-16-9,
.infopro-lms-video--16_9 {
	aspect-ratio: 16 / 9;
}

.infopro-lms-aspect-9-16,
.infopro-lms-video--9_16 {
	aspect-ratio: 9 / 16;
}

.infopro-lms-aspect-4-3,
.infopro-lms-video--4_3 {
	aspect-ratio: 4 / 3;
}

.infopro-lms-video--1_1 {
	aspect-ratio: 1 / 1;
}

.infopro-lms-video iframe,
.infopro-lms-video-frame iframe {
	border: 0;
	box-sizing: border-box;
	display: block;
	height: 100%;
	max-width: 100%;
	width: 100%;
}

@supports not (aspect-ratio: 16 / 9) {
	.infopro-lms-video,
	.infopro-lms-video-frame {
		height: 0;
		padding-top: 56.25%;
	}

	.infopro-lms-aspect-9-16,
	.infopro-lms-video--9_16 {
		padding-top: 177.78%;
	}

	.infopro-lms-aspect-4-3,
	.infopro-lms-video--4_3 {
		padding-top: 75%;
	}

	.infopro-lms-video--1_1 {
		padding-top: 100%;
	}

	.infopro-lms-video iframe,
	.infopro-lms-video-frame iframe {
		inset: 0;
		position: absolute;
	}
}

.infopro-lms-curriculum__module {
	background: var(--infopro-lms-surface);
	border: 1px solid var(--infopro-lms-border);
	border-radius: 8px;
	margin-bottom: 12px;
	padding: 16px;
}

.infopro-lms-curriculum__module h4 {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0 0 12px;
}

.infopro-lms-curriculum__module summary {
	cursor: pointer;
	font-weight: 700;
	list-style-position: inside;
	margin: 0 0 12px;
}

.infopro-lms-curriculum__module ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.infopro-lms-curriculum__module li {
	align-items: center;
	border-top: 1px solid var(--infopro-lms-border);
	display: flex;
	gap: 10px;
	justify-content: space-between;
	padding: 10px 0;
}

.infopro-lms-status-dot {
	background: var(--infopro-lms-muted);
	border-radius: 999px;
	flex: 0 0 8px;
	height: 8px;
	width: 8px;
}

.infopro-lms-lesson-completed .infopro-lms-status-dot {
	background: #0f7a45;
}

.infopro-lms-lesson-current .infopro-lms-status-dot,
.infopro-lms-lesson-in-progress .infopro-lms-status-dot {
	background: var(--infopro-lms-primary);
}

.infopro-lms-lesson-locked .infopro-lms-status-dot,
.infopro-lms-lesson-hidden .infopro-lms-status-dot {
	background: var(--infopro-lms-border);
}

.infopro-lms-curriculum__module li:first-child {
	border-top: 0;
}

.infopro-lms-curriculum__module li.is-current > a,
.infopro-lms-curriculum__module li.is-current > span:first-child {
	font-weight: 700;
}

.infopro-lms-lesson-completed > a,
.infopro-lms-lesson-completed > span:first-child {
	color: #0f7a45;
}

.infopro-lms-lesson-in-progress > a,
.infopro-lms-lesson-in-progress > span:first-child {
	color: var(--infopro-lms-primary);
}

.infopro-lms-lesson-locked > span:first-child,
.infopro-lms-lesson-hidden > span:first-child {
	color: var(--infopro-lms-muted);
}

.infopro-lms-lesson-nav {
	align-items: center;
	display: grid;
	gap: 14px;
	grid-template-columns: 1fr 1fr;
}

.infopro-lms-lesson-nav > div:last-child {
	text-align: right;
}

.infopro-lms-lesson-nav--stacked {
	grid-template-columns: 1fr;
}

.infopro-lms-lesson-nav--stacked > div:last-child {
	text-align: left;
}

.infopro-lms-locked-note {
	color: var(--infopro-lms-muted);
	display: inline-block;
	font-weight: 700;
	padding: 10px 0;
}

.infopro-lms-course-page {
	width: min(1120px, 100%);
}

.infopro-lms-course-club-logo {
	margin-bottom: 18px;
}

.infopro-lms-course-club-logo a {
	align-items: center;
	color: inherit;
	display: inline-flex;
	font-weight: 800;
	gap: 10px;
	text-decoration: none;
}

.infopro-lms-course-club-logo img {
	background: #fff;
	border: 1px solid var(--infopro-lms-border);
	border-radius: 8px;
	height: auto;
	max-height: 72px;
	max-width: 180px;
	object-fit: contain;
	padding: 8px;
}

.infopro-lms-course-progress,
.infopro-lms-course-continue,
.infopro-lms-course-modules {
	min-width: 0;
}

.infopro-lms-course-module {
	border: 1px solid var(--infopro-lms-border);
	border-radius: 8px;
	margin-bottom: 12px;
	overflow: hidden;
}

.infopro-lms-course-module-header {
	align-items: center;
	background: #fff;
	border: 0;
	color: var(--infopro-lms-text);
	cursor: pointer;
	display: flex;
	font: inherit;
	font-weight: 800;
	gap: 12px;
	justify-content: space-between;
	padding: 16px 18px;
	text-align: left;
	width: 100%;
}

.infopro-lms-course-module-header:focus {
	box-shadow: inset 0 0 0 2px var(--infopro-lms-primary);
	outline: 0;
}

.infopro-lms-course-module-lessons {
	background: #fff;
	border-top: 1px solid var(--infopro-lms-border);
	padding: 8px 18px 14px;
}

.infopro-lms-course-module-lessons[hidden] {
	display: none;
}

.infopro-lms-course-module-lessons ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.infopro-lms-course-lesson {
	align-items: center;
	border-bottom: 1px solid var(--infopro-lms-border);
	display: flex;
	gap: 10px;
	justify-content: space-between;
	padding: 12px 0;
}

.infopro-lms-course-lesson:last-child {
	border-bottom: 0;
}

.infopro-lms-course-lesson a {
	color: var(--infopro-lms-text);
	font-weight: 700;
	text-decoration: none;
}

.infopro-lms-course-lesson a:hover {
	color: var(--infopro-lms-primary);
}

.infopro-lms-course-lesson-completed a,
.infopro-lms-course-lesson-completed span:first-child {
	color: var(--infopro-lms-primary);
}

.infopro-lms-course-lesson-locked span:first-child {
	color: var(--infopro-lms-muted);
}

.infopro-lms-course-lesson-current {
	background: var(--infopro-lms-soft);
}

.infopro-lms-immersive-lesson {
	display: flex;
	flex-direction: column;
	gap: 24px;
	width: 100%;
}

.infopro-lms-immersive-hero,
.infopro-lms-immersive-progress,
.infopro-lms-immersive-video,
.infopro-lms-immersive-materials,
.infopro-lms-immersive-curriculum,
.infopro-lms-immersive-html,
.infopro-lms-immersive-navigation {
	min-width: 0;
	width: 100%;
}

.infopro-lms-lesson-hero {
	background: var(--infopro-lms-soft);
	border: 1px solid var(--infopro-lms-border);
	border-radius: 8px;
	color: var(--infopro-lms-text);
	padding: 32px;
}

.infopro-lms-lesson-hero--with-background {
	background: linear-gradient(135deg, var(--infopro-lms-soft), #fff);
}

.infopro-lms-lesson-hero__meta {
	color: var(--infopro-lms-muted);
	display: flex;
	flex-wrap: wrap;
	font-size: 13px;
	font-weight: 800;
	gap: 8px;
	margin-bottom: 12px;
	text-transform: uppercase;
}

.infopro-lms-lesson-hero__meta span:not(:last-child)::after {
	content: "/";
	margin-left: 8px;
}

.infopro-lms-lesson-hero__title {
	color: inherit;
	font-size: clamp(28px, 4vw, 48px);
	line-height: 1.08;
	margin: 0;
}

.infopro-lms-lesson-hero__excerpt {
	color: var(--infopro-lms-muted);
	margin-top: 14px;
	max-width: 760px;
}

@media (max-width: 900px) {
	.infopro-lms-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.infopro-lms-header,
	.infopro-lms-club-hero__content {
		padding: 26px;
	}
}

@media (max-width: 640px) {
	.infopro-lms-area {
		max-width: 100%;
	}

	.infopro-lms-grid {
		grid-template-columns: 1fr;
	}

	.infopro-lms-header,
	.infopro-lms-club-hero__content {
		border-radius: 0;
		padding: 22px 16px;
	}

	.infopro-lms-section {
		margin-bottom: 22px;
	}

	.infopro-lms-panel,
	.infopro-lms-card__body,
	.infopro-lms-empty {
		padding: 16px;
	}

	.infopro-lms-button {
		width: 100%;
	}

	.infopro-lms-actions,
	.infopro-lms-complete-box,
	.infopro-lms-lesson-nav {
		grid-template-columns: 1fr;
	}

	.infopro-lms-course-module-header,
	.infopro-lms-course-lesson {
		align-items: flex-start;
		flex-direction: column;
	}

	.infopro-lms-lesson-hero {
		padding: 22px 16px;
	}

	.infopro-lms-lesson-nav > div:last-child {
		text-align: left;
	}
}
