/* Holographic Training LMS public styles. */
.hotlms-math {
	display: inline-block;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 1.05em;
	line-height: 1.55;
	white-space: nowrap;
}

.hotlms-math-display {
	display: block;
	margin: 1em 0;
	padding: 0.75em 1em;
	background: #f7f7f7;
	border-left: 4px solid #800000;
	overflow-x: auto;
	white-space: nowrap;
}

.hotlms-math-inline {
	vertical-align: baseline;
}

.hotlms-math-frac {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin: 0 0.15em;
	vertical-align: middle;
}

.hotlms-math-num,
.hotlms-math-den {
	display: block;
	padding: 0 0.25em;
	line-height: 1.15;
	text-align: center;
}

.hotlms-math-num {
	border-bottom: 1px solid currentColor;
}

.hotlms-math-sqrt::before {
	content: "√";
	font-size: 1.25em;
	line-height: 1;
	vertical-align: middle;
}

.hotlms-math-root {
	display: inline-block;
	padding: 0 0.25em;
	border-top: 1px solid currentColor;
	vertical-align: middle;
}

.hotlms-math sup,
.hotlms-math sub {
	font-size: 0.72em;
	line-height: 0;
}


.hotlms-message {
	border: 1px solid #dcdcde;
	border-radius: 12px;
	box-sizing: border-box;
	margin: 0 0 24px;
	padding: 14px 18px;
}

.hotlms-message-notice {
	background: #fff8e5;
	border-color: #dba617;
}

.hotlms-message-success {
	background: #edfaef;
	border-color: #68de7c;
}

.hotlms-message-error {
	background: #fcf0f1;
	border-color: #d63638;
}

.hotlms-quiz {
	background: linear-gradient(135deg, #fff8e5 0%, #f2f7ff 45%, #fff0f7 100%);
	border: 2px solid #d8c7ff;
	border-radius: 24px;
	box-shadow: 0 18px 42px rgba(17, 24, 39, 0.12);
	box-sizing: border-box;
	color: #111827;
	margin: 0 auto 48px;
	max-width: 1180px;
	padding: clamp(24px, 4vw, 48px);
	width: min(100%, 1180px);
}

.hotlms-quiz-header {
	background: linear-gradient(135deg, #e8f1ff 0%, #fff1d6 100%);
	border: 1px solid #ff8f8f;
	border-radius: 20px;
	box-shadow: 0 10px 22px rgba(17, 24, 39, 0.08);
	box-sizing: border-box;
	margin: 0 0 42px;
	padding: clamp(20px, 3vw, 34px);
}

.hotlms-quiz-eyebrow {
	color: #800000;
	font-size: 0.9rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	margin: 0 0 10px;
	text-transform: uppercase;
}

.hotlms-quiz h1 {
	color: #003366;
	font-size: clamp(2rem, 4vw, 3.2rem);
	line-height: 1.12;
	margin: 0;
}

.hotlms-quiz-question {
	background: rgba(255, 255, 255, 0.82);
	border: 1px solid #a10707;
	border-radius: 20px;
	box-shadow: 0 12px 28px rgba(17, 24, 39, 0.1);
	box-sizing: border-box;
	margin: 0 0 84px;
	padding: clamp(20px, 3vw, 34px);
}

.hotlms-quiz-question legend,
.hotlms-quiz-question h2 {
	align-items: flex-start;
	color: #111827;
	display: flex;
	font-size: clamp(1.35rem, 2.5vw, 2rem);
	gap: 14px;
	line-height: 1.25;
	margin: 0 0 28px;
	padding: 0;
	width: 100%;
}

.hotlms-quiz-question-number {
	align-items: center;
	background: #800000;
	border-radius: 999px;
	color: #ffffff;
	display: inline-flex;
	flex: 0 0 auto;
	font-size: 0.95rem;
	font-weight: 800;
	height: 34px;
	justify-content: center;
	line-height: 1;
	margin-top: 2px;
	width: 34px;
}

.hotlms-quiz-question-text {
	flex: 1 1 auto;
}

.hotlms-quiz-answer-list {
	display: grid;
	gap: 14px;
	grid-template-columns: 1fr;
	margin: 0;
	padding: 0;
}

.hotlms-quiz-answer-option {
	align-items: flex-start;
	background: #ffffff;
	border: 1px solid #ead8d8;
	border-radius: 14px;
	box-shadow: 0 6px 16px rgba(17, 24, 39, 0.06);
	box-sizing: border-box;
	cursor: pointer;
	display: flex;
	font-size: 1.08rem;
	gap: 12px;
	line-height: 1.55;
	margin: 0;
	padding: 16px 18px;
	transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
	width: 100%;
}

.hotlms-quiz-answer-option:hover,
.hotlms-quiz-answer-option:focus-within {
	border-color: #800000;
	box-shadow: 0 10px 22px rgba(128, 0, 0, 0.12);
	transform: translateY(-1px);
}

.hotlms-quiz-answer-option input[type="radio"] {
	flex: 0 0 auto;
	margin: 0.35em 0 0;
}

.hotlms-quiz-answer-option-preview {
	cursor: pointer;
}

.hotlms-quiz-answer-option-preview:hover,
.hotlms-quiz-answer-option-preview:focus-within {
	border-color: #800000;
	box-shadow: 0 10px 22px rgba(128, 0, 0, 0.12);
	transform: translateY(-1px);
}

.hotlms-quiz-written-answer,
.hotlms-quiz-text-answer {
	background: #ffffff;
	border: 1px solid #d8c7ff;
	border-radius: 12px;
	box-sizing: border-box;
	font-size: 1rem;
	max-width: 100%;
	padding: 14px;
	width: 100%;
}

.hotlms-quiz-submit-row {
	margin: 0;
}

.hotlms-button,
.hotlms-button:visited,
.hotlms-quiz-submit {
	background: #800000;
	border: 1px solid #800000;
	border-radius: 12px;
	box-shadow: 0 8px 18px rgba(128, 0, 0, 0.2);
	color: #ffffff !important;
	display: inline-block;
	font-weight: 800;
	line-height: 1.2;
	padding: 14px 24px;
	text-decoration: none;
}

.hotlms-button:hover,
.hotlms-button:focus,
.hotlms-quiz-submit:hover,
.hotlms-quiz-submit:focus {
	background: #a10707;
	border-color: #a10707;
	color: #ffffff !important;
}

@media screen and (max-width: 720px) {
	.hotlms-quiz {
		border-radius: 18px;
		padding: 18px;
	}

	.hotlms-quiz-question legend,
	.hotlms-quiz-question h2 {
		display: block;
	}

	.hotlms-quiz-question-number {
		margin: 0 0 12px;
	}
}

.hotlms-course-catalogue-shell {
	box-sizing: border-box;
	margin: 0 auto 48px;
	max-width: 1180px;
	padding: clamp(22px, 4vw, 44px);
	width: min(100%, 1180px);
}

.hotlms-course-catalogue-header {
	background: linear-gradient(135deg, #f8fbff 0%, #fff7ef 100%);
	border: 1px solid #ead8d8;
	border-radius: 24px;
	box-shadow: 0 14px 34px rgba(17, 24, 39, 0.08);
	box-sizing: border-box;
	margin: 0 0 38px;
	padding: clamp(22px, 4vw, 42px);
}

.hotlms-course-catalogue-eyebrow {
	color: #800000;
	font-size: 0.88rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	margin: 0 0 10px;
	text-transform: uppercase;
}

.hotlms-course-catalogue-header h1 {
	color: #003366;
	font-size: clamp(2rem, 4vw, 3.25rem);
	line-height: 1.1;
	margin: 0 0 14px;
}

.hotlms-course-catalogue-header p:last-child {
	font-size: 1.08rem;
	margin-bottom: 0;
}

.hotlms-course-group {
	margin: 0 0 52px;
}

.hotlms-course-group-header {
	align-items: flex-end;
	border-bottom: 2px solid #f0e1e1;
	display: flex;
	gap: 18px;
	justify-content: space-between;
	margin: 0 0 22px;
	padding: 0 0 12px;
}

.hotlms-course-group-header h2 {
	color: #800000;
	font-size: clamp(1.45rem, 2.4vw, 2.15rem);
	line-height: 1.2;
	margin: 0;
}

.hotlms-course-group-header p {
	color: #4b5563;
	font-weight: 700;
	margin: 0;
	white-space: nowrap;
}

.hotlms-course-card-grid {
	display: grid;
	gap: 22px;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.hotlms-course-card {
	background: #ffffff;
	border: 1px solid #ead8d8;
	border-radius: 20px;
	box-shadow: 0 14px 30px rgba(17, 24, 39, 0.08);
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	min-height: 100%;
	overflow: hidden;
	padding: 24px;
	position: relative;
	transition: box-shadow 0.18s ease, transform 0.18s ease, border-color 0.18s ease;
}

.hotlms-course-card:hover,
.hotlms-course-card:focus-within {
	border-color: #800000;
	box-shadow: 0 18px 40px rgba(128, 0, 0, 0.13);
	transform: translateY(-2px);
}

.hotlms-course-card h2,
.hotlms-course-card h3 {
	font-size: 1.32rem;
	line-height: 1.25;
	margin: 0 0 14px;
}

.hotlms-course-card h2 a,
.hotlms-course-card h3 a {
	color: #003366;
	text-decoration: none;
}

.hotlms-course-card h2 a:hover,
.hotlms-course-card h2 a:focus,
.hotlms-course-card h3 a:hover,
.hotlms-course-card h3 a:focus {
	color: #800000;
	text-decoration: underline;
}

.hotlms-course-card-body {
	flex: 1 1 auto;
}

.hotlms-course-card-body p {
	color: #374151;
	line-height: 1.65;
	margin: 0 0 18px;
}

.hotlms-course-card-actions {
	margin-top: auto;
	padding-top: 8px;
}

.hotlms-course-card-button {
	box-sizing: border-box;
	text-align: center;
	width: 100%;
}

.hotlms-course-list-empty {
	background: #ffffff;
	border: 1px solid #ead8d8;
	border-radius: 18px;
	box-shadow: 0 10px 24px rgba(17, 24, 39, 0.07);
	padding: 24px;
}

@media screen and (max-width: 720px) {
	.hotlms-course-catalogue-shell {
		padding: 18px;
	}

	.hotlms-course-group-header {
		align-items: flex-start;
		flex-direction: column;
		gap: 8px;
	}

	.hotlms-course-group-header p {
		white-space: normal;
	}
}

.hotlms-course-group-title-block {
	min-width: 0;
}

.hotlms-course-group-path {
	color: #4b5563;
	font-size: 0.92rem;
	font-weight: 700;
	letter-spacing: 0.01em;
	line-height: 1.45;
	margin: 0 0 6px;
}

.hotlms-course-group-count {
	background: #f8fbff;
	border: 1px solid #ead8d8;
	border-radius: 999px;
	box-sizing: border-box;
	padding: 8px 12px;
}

.hotlms-course-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin: 0 0 12px;
}

.hotlms-course-badge {
	border: 1px solid currentColor;
	border-radius: 999px;
	display: inline-block;
	font-size: 0.82rem;
	font-weight: 600;
	line-height: 1.2;
	padding: 4px 9px;
}

.hotlms-course-filter-bar {
	background: #ffffff;
	border: 1px solid #ead8d8;
	border-radius: 22px;
	box-shadow: 0 12px 28px rgba(17, 24, 39, 0.07);
	box-sizing: border-box;
	margin: 0 0 30px;
	padding: clamp(18px, 3vw, 28px);
}

.hotlms-course-filter-grid {
	display: grid;
	gap: 16px;
	grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

.hotlms-course-filter-field {
	display: flex;
	flex-direction: column;
	gap: 7px;
	margin: 0;
}

.hotlms-course-filter-field-search {
	grid-column: span 2;
}

.hotlms-course-filter-field span {
	color: #003366;
	font-size: 0.92rem;
	font-weight: 700;
}

.hotlms-course-filter-field input,
.hotlms-course-filter-field select {
	background: #ffffff;
	border: 1px solid #d6d6d6;
	border-radius: 10px;
	box-sizing: border-box;
	color: #111827;
	font-size: 1rem;
	min-height: 42px;
	padding: 8px 10px;
	width: 100%;
}

.hotlms-course-filter-field input:focus,
.hotlms-course-filter-field select:focus {
	border-color: #800000;
	box-shadow: 0 0 0 2px rgba(128, 0, 0, 0.12);
	outline: none;
}

.hotlms-course-filter-actions {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 20px;
}

.hotlms-course-filter-submit {
	border: 0;
	cursor: pointer;
}

.hotlms-course-filter-reset {
	color: #800000;
	font-weight: 700;
	text-decoration: underline;
}

.hotlms-course-results-summary {
	align-items: center;
	display: flex;
	justify-content: space-between;
	margin: 0 0 24px;
}

.hotlms-course-results-summary p {
	color: #374151;
	font-weight: 700;
	margin: 0;
}

.hotlms-course-category {
	color: #800000;
	font-size: 0.92rem;
	font-weight: 700;
	margin-top: -6px;
}

@media screen and (max-width: 720px) {
	.hotlms-course-filter-field-search {
		grid-column: span 1;
	}

	.hotlms-course-filter-actions {
		align-items: stretch;
		flex-direction: column;
	}

	.hotlms-course-filter-submit,
	.hotlms-course-filter-reset {
		text-align: center;
		width: 100%;
	}
}

.hotlms-course-card-price {
	background: #f8fbff;
	border: 1px solid #ead8d8;
	border-radius: 999px;
	box-sizing: border-box;
	color: #800000;
	font-size: 1rem;
	font-weight: 800;
	line-height: 1.2;
	margin: 0;
	padding: 9px 14px;
	position: absolute;
	right: 24px;
	top: 20px;
}

.hotlms-course-card-has-price .hotlms-course-card-body {
	padding-right: 128px;
}

.hotlms-course-auth-actions,
.hotlms-course-purchase-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 20px 0 0;
}

.hotlms-course-purchase-actions .hotlms-button,
.hotlms-course-auth-actions .hotlms-button {
	margin: 0;
}

.hotlms-form {
	background: #ffffff;
	border: 1px solid #ead8d8;
	border-radius: 20px;
	box-shadow: 0 14px 30px rgba(17, 24, 39, 0.08);
	box-sizing: border-box;
	margin: 24px 0;
	max-width: 560px;
	padding: clamp(22px, 4vw, 34px);
}

.hotlms-form p {
	margin: 0 0 18px;
}

.hotlms-form p:first-of-type {
	color: #003366;
	font-weight: 700;
	line-height: 1.5;
	margin-bottom: 22px;
}

.hotlms-form label {
	color: #111827;
	display: flex;
	flex-direction: column;
	font-weight: 700;
	gap: 8px;
	line-height: 1.4;
}

.hotlms-form input[type="text"],
.hotlms-form input[type="email"],
.hotlms-form input[type="password"] {
	background: #ffffff;
	border: 1px solid #d6d6d6;
	border-radius: 12px;
	box-sizing: border-box;
	color: #111827;
	font-size: 1rem;
	min-height: 46px;
	padding: 10px 12px;
	width: 100%;
}

.hotlms-form input[type="text"]:focus,
.hotlms-form input[type="email"]:focus,
.hotlms-form input[type="password"]:focus {
	border-color: #800000;
	box-shadow: 0 0 0 2px rgba(128, 0, 0, 0.12);
	outline: none;
}

.hotlms-form button[type="submit"] {
	background: #800000;
	border: 1px solid #800000;
	border-radius: 12px;
	box-shadow: 0 8px 18px rgba(128, 0, 0, 0.2);
	color: #ffffff;
	cursor: pointer;
	font-weight: 800;
	line-height: 1.2;
	padding: 14px 24px;
}

.hotlms-form button[type="submit"]:hover,
.hotlms-form button[type="submit"]:focus {
	background: #a10707;
	border-color: #a10707;
}

@media screen and (max-width: 720px) {
	.hotlms-course-card-has-price .hotlms-course-card-body {
		padding-right: 0;
		padding-top: 48px;
	}

	.hotlms-course-card-price {
		left: 24px;
		right: auto;
	}

	.hotlms-form {
		max-width: 100%;
	}
}
