/* resources/scss/main.scss */
@font-face {
  font-family: "Oswald";
  font-style: normal;
  font-weight: 200 900;
  font-display: swap;
  src: url("../Oswald-VariableFont_wght-ODICGOO2.ttf") format("truetype-variations");
}
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  src: url("../OpenSans-VariableFont_wdth,wght-AJ65J5A6.ttf") format("truetype-variations");
}
@font-face {
  font-family: "Open Sans";
  font-style: italic;
  font-weight: 300 800;
  font-display: swap;
  src: url("../OpenSans-Italic-VariableFont_wdth,wght-QY6NUUWM.ttf") format("truetype-variations");
}
:root {
  --font-body:
    "Open Sans",
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Arial;
  --font-heading:
    "Oswald",
    "Helvetica Neue",
    Arial,
    sans-serif;
  --background:
    255,
    255,
    255;
  --foreground:
    9,
    20,
    44;
  --card:
    255,
    255,
    255;
  --card-foreground:
    9,
    20,
    44;
  --popover:
    255,
    255,
    255;
  --popover-foreground:
    9,
    20,
    44;
  --primary:
    225,
    48,
    87;
  --primary-foreground:
    255,
    255,
    255;
  --secondary:
    234,
    196,
    33;
  --secondary-foreground:
    41,
    43,
    47;
  --muted:
    241,
    245,
    249;
  --muted-text: 215 16% 47%;
  --muted-foreground:
    107,
    114,
    128;
  --accent:
    241,
    245,
    249;
  --accent-foreground:
    9,
    20,
    44;
  --destructive:
    239,
    68,
    68;
  --destructive-foreground:
    250,
    250,
    250;
  --border:
    226,
    232,
    240;
  --input:
    226,
    232,
    240;
  --ring:
    215,
    39,
    74;
  --radius: 8px;
  --sidebar-background:
    250,
    250,
    250;
  --sidebar-foreground:
    65,
    65,
    66;
  --sidebar-primary:
    225,
    48,
    87;
  --sidebar-primary-foreground:
    250,
    250,
    250;
  --sidebar-accent:
    255,
    248,
    228;
  --sidebar-accent-foreground:
    73,
    56,
    23;
  --sidebar-border:
    229,
    231,
    235;
  --sidebar-ring:
    142,
    21,
    43;
}
body {
  font-family: var(--font-body);
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
* {
  box-sizing: border-box;
}
h1 {
  font-family: var(--font-heading);
  font-size: 72px;
  line-height: 1.2;
  letter-spacing: -3%;
  font-weight: 400;
}
h1.small {
  font-size: 24px;
}
h2 {
  font-family: var(--font-heading);
  font-size: 60px;
  line-height: 1.2;
  letter-spacing: -3%;
  font-weight: 400;
}
h2.small {
  font-size: 20px;
}
h3 {
  font-family: var(--font-heading);
  font-size: 52px;
  line-height: 1.2;
  letter-spacing: -3%;
  font-weight: 400;
}
h3.small {
  font-size: 18px;
}
h4 {
  font-family: var(--font-heading);
  font-size: 44px;
  line-height: 1.2;
  letter-spacing: -3%;
  font-weight: 400;
}
h5 {
  font-family: var(--font-heading);
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: -3%;
  font-weight: 400;
}
h6 {
  font-family: var(--font-heading);
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -3%;
  font-weight: 400;
}
.site {
  background-color: rgb(var(--background));
  background-image: linear-gradient(rgb(255, 255, 255), rgb(248, 250, 252));
}
.site.login-page {
  background-image:
    linear-gradient(
      to right bottom,
      rgb(255, 241, 242),
      rgb(255, 251, 235),
      rgb(248, 250, 252));
}
.site {
  min-height: 100vh;
  position: relative;
}
.container {
  width: 100%;
  max-width: 1280px;
  padding: 0 16px;
  margin: 0 auto;
}
.livewire-content {
  position: relative;
}
.livewire-content > .livewire-loading {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.livewire-content > .livewire-loading > .loading-ring {
  border: 4px solid rgba(var(--primary), 0.2);
  border-top: 4px solid rgb(var(--primary));
  border-radius: 50%;
  width: 32px;
  height: 32px;
  animation: spin 1s linear infinite;
  margin: 0 auto;
  z-index: 9999;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.tp-row {
  display: flex;
  align-items: center;
}
.tp-row--between {
  justify-content: space-between;
}
.tp-gap-12 {
  gap: var(--space-12);
}
.tp-mb-8 {
  margin-bottom: var(--space-8);
}
.tp-mb-12 {
  margin-bottom: var(--space-12);
}
.tp-mb-16 {
  margin-bottom: var(--space-16);
}
.tp-text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.tp-text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}
.tp-text-muted {
  color: hsl(var(--muted-text));
}
.tp-weight-medium {
  font-weight: 500;
}
.tp-h3 {
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.5rem;
  font-weight: 600;
  margin: 0;
}
.mb-3 {
  margin-bottom: 0.75rem;
}
.navbar {
  position: sticky;
  top: 0;
  z-index: 40;
  width: 100%;
  backdrop-filter: saturate(1.2) blur(6px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid #e5e7eb;
}
.navbar .navbar__inner {
  max-width: 1280px;
  padding: 10px 1rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar .brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: inherit;
  text-decoration: none;
}
.navbar .brand__logo {
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
}
.navbar .brand__logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.navbar .brand__title {
  line-height: 1.1;
}
.navbar .brand__title-name {
  font-weight: 700;
  letter-spacing: -0.01em;
}
.navbar .brand__title-sub {
  font-size: 0.75rem;
  color: #6b7280;
}
.navbar .nav-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
}
.navbar .nav-links a:not(.btn) {
  color: #6b7280;
  text-decoration: none;
  transition: color 0.15s ease;
}
.navbar .nav-links a:not(.btn):hover {
  color: #111827;
}
.footer {
  background: rgba(255, 255, 255, 0.6);
  border-top: 1px solid #e5e7eb;
  font-size: 12px;
  color: #6b7280;
}
.footer .footer__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 24px 16px;
  text-align: center;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  transition:
    transform 0.1s ease,
    background-color 0.15s ease,
    box-shadow 0.15s ease;
  transform: translateZ(0);
  will-change: transform;
  text-decoration: none;
  border: 1px solid transparent;
  color: #fff;
  background-color: rgb(var(--primary));
  height: 40px;
  width: 100%;
  padding: 0 16px;
  cursor: pointer;
}
.btn.btn-default {
  background-color: rgb(255, 255, 255);
  color: #000;
}
.btn:hover {
  background-color: rgba(var(--primary), 0.8);
}
.btn.btn-outline-primary {
  background-color: transparent;
  color: rgb(var(--primary));
  border-color: rgb(var(--primary));
}
.btn.btn-outline-primary:hover {
  background-color: rgba(var(--primary), 0.1);
}
.btn:active {
  transform: scale(0.95);
}
.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.4), 0 0 0 4px #ffffff;
}
.btn:disabled,
.btn[disabled],
.btn.btn-disabled {
  pointer-events: none;
  opacity: 0.5;
}
.btn svg {
  pointer-events: none;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}
.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.text-muted {
  color: #6b7280;
}
.alert {
  border: 1px solid transparent;
  border-radius: 4px;
  display: flex;
  gap: 12px;
}
.alert.alert-error {
  background-color: rgb(239, 68, 68);
  color: rgb(250, 250, 250);
  border-color: rgb(239, 68, 68);
}
.alert.alert-success {
  background-color: rgb(34, 197, 94);
  color: rgb(250, 250, 250);
  border-color: rgb(34, 197, 94);
}
.alert.alert-warning {
  background-color: rgb(251, 191, 36);
  color: rgb(30, 30, 30);
  border-color: rgb(251, 191, 36);
}
.alert.alert-info {
  background-color: rgb(59, 130, 246);
  color: rgb(250, 250, 250);
  border-color: rgb(59, 130, 246);
}
.alert > .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  padding: 8px;
  background: rgba(0, 0, 0, 0.1);
}
.alert > .message {
  flex-grow: 1;
  font-size: 14px;
  padding: 12px 8px 12px 0;
}
.notice-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 1270px;
  margin: 0 auto;
}
.notice-container:not(:empty) {
  padding: 12px 0;
}
.template-404 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  gap: 20px;
}
.template-404 > h1 {
  font-size: 2.25rem;
  line-height: 2.5rem;
  font-weight: 700;
  font-family: var(--font-heading);
  margin: 0;
}
.template-404 > p {
  color: rgb(75, 85, 99);
  font-size: 1.25rem;
  line-height: 1.75rem;
  margin: 0;
}
.login-section {
  display: flex;
  justify-content: center;
  flex-direction: row;
  align-items: flex-start;
  min-height: 100vh;
  background:
    linear-gradient(
      135deg,
      #fff1f2,
      #fff7ed 40%,
      #f1f5f9 100%);
  padding: 64px 16px;
}
.login-section .login-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #ffffff;
  border: 1px solid var(--card);
  border-radius: 10px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06), 0 2px 8px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  max-width: 896px;
  width: 100%;
}
.login-section .login-card:hover {
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}
.login-section .login-col {
  padding: 32px;
}
.login-section .login-col--muted {
  background: #f8fafc;
}
.login-section .login-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
}
.login-section .login-subtitle {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 24px;
}
.login-section .login-form {
  display: grid;
  gap: 16px;
}
.login-section .form-label {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
  font-weight: 600;
}
.login-section .form-input {
  display: flex;
  height: 40px;
  width: 100%;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  background: #ffffff;
  padding: 0 12px;
  font-size: 16px;
  transition: box-shadow 0.15s ease, border-color 0.15s ease;
}
.login-section .form-input::placeholder {
  color: #9ca3af;
}
.login-section .form-input:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.5);
}
.login-section .form-input[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}
.login-section .field-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 640px) {
  .login-section .field-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.training-page {
  color: var(--color-text);
  max-width: 1280px;
  padding: 2rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.training-page .tp-title {
  font-family: var(--font-heading, inherit);
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 400;
  margin: 0 0 var(--space-6) 0;
}
.training-page .tp-subtitle {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: hsl(var(--color-));
}
.training-page {
}
.training-page .tp-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: var(--space-24);
}
.training-page .tp-header__left {
  max-width: 70ch;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.training-page .tp-header__left > p {
  font-size: 16px;
  color: hsl(var(--muted-text));
}
.training-page .tp-header__user {
  display: flex;
  align-items: center;
  gap: var(--space-16);
}
@media screen and (max-width: 768px) {
  .training-page .tp-header__user {
    display: none;
  }
}
.training-page .tp-user-details {
  text-align: right;
}
.training-page .tp-user-details__welcome {
  font-size: 0.875rem;
  color: hsl(var(--muted-text));
}
.training-page .tp-user-details__name {
  font-size: 1rem;
  font-weight: 500;
}
.training-page .tp-user-details__id {
  font-size: 0.75rem;
  color: hsl(var(--muted-text));
}
.training-page .tp-avatar {
  width: 48px;
  height: 48px;
  border-radius: 9999px;
  object-fit: cover;
}
.training-page {
}
.training-page .tp-ongoing {
  margin-bottom: var(--space-24);
}
.training-page .tp-ongoing .tp-section-title {
  margin: 0 0 var(--space-12) 0;
  font-size: 1.125rem;
  font-weight: 500;
}
.training-page .tp-ongoing .tp-stack {
  display: grid;
  gap: var(--space-12);
}
.training-page {
}
.training-page .tp-card {
  color: rgb(15, 23, 41);
  background-color: rgb(255, 255, 255);
  border: 1px solid rgb(225, 231, 239);
  box-shadow:
    rgba(0, 0, 0, 0) 0px 0px 0px 0px,
    rgba(0, 0, 0, 0) 0px 0px 0px 0px,
    rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
}
.training-page .tp-card__body {
  flex: 1;
  min-width: 0;
}
.training-page .tp-card__actions {
  display: flex;
  align-items: center;
}
.training-page .tp-thumb {
  width: 96px;
  height: 64px;
  border-radius: 8px;
  object-fit: cover;
  background: #f1f5f9;
}
.training-page {
}
.training-page .tp-progress {
  --height: 16px;
  position: relative;
  height: var(--height);
  width: 100%;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(225, 48, 87, 0.4);
  margin-top: var(--space-8);
}
.training-page .tp-progress__bar {
  height: 100%;
  width: 100%;
  background: rgb(var(--primary));
  transform: translateX(calc(-100% + var(--progress, 0%)));
  transition: transform 240ms ease;
  border-radius: 999px;
}
.training-page {
}
.training-page .tp-btn {
  --pad-x: 16px;
  --pad-y: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  height: 40px;
  padding: var(--pad-y) var(--pad-x);
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
  border: 1px solid transparent;
  background: transparent;
  color: inherit;
  transition:
    transform 120ms ease,
    box-shadow 120ms ease,
    background-color 120ms ease,
    border-color 120ms ease;
}
.training-page .tp-btn:active {
  transform: scale(0.97);
}
.training-page .tp-btn:focus-visible {
  outline: none;
  box-shadow: var(--ring);
}
.training-page .tp-btn:disabled,
.training-page .tp-btn[disabled] {
  opacity: 0.5;
  pointer-events: none;
}
.training-page .tp-btn--primary {
  background: var(--color-primary);
  color: var(--color-primary-contrast);
}
.training-page .tp-btn--primary:hover {
  background: color-mix(in oklab, var(--color-primary), black 10%);
}
.training-page .tp-btn--secondary {
  background: var(--color-secondary);
  color: var(--color-text);
}
.training-page .tp-btn--outline {
  border-color: #e2e8f0;
  background: var(--color-bg);
}
.training-page .tp-btn--outline:hover {
  background: var(--color-accent);
}
.training-page {
}
.training-page .tp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) {
  .training-page .tp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1280px) {
  .training-page .tp-grid.tp-3x3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
.training-page .tp-tile {
  border-radius: var(--radius);
  color: rgb(15, 23, 41);
  background-color: rgb(255, 255, 255);
  border: 1px solid rgb(225, 231, 239);
  box-shadow:
    rgba(0, 0, 0, 0) 0px 0px 0px 0px,
    rgba(0, 0, 0, 0) 0px 0px 0px 0px,
    rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
  overflow: hidden;
  transform: translateZ(0);
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.training-page .tp-tile:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-md);
}
.training-page .tp-tile__media {
  width: 100%;
  height: 176px;
  background: #e2e8f0;
  overflow: hidden;
}
.training-page .tp-tile__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.training-page .tp-tile__content {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.video-player {
  position: relative;
  aspect-ratio: 16/9;
  width: 100%;
  height: auto !important;
  background: #000;
}
.video-player > #video-player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.video-player > .resume-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 18px;
  min-width: 50%;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
.video-player > .resume-container.visible {
  pointer-events: auto;
  opacity: 1;
}
.video-player > .resume-container {
  background: rgba(255, 255, 255, 0.2);
  filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.5));
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
  backdrop-filter: blur(8px);
  z-index: 2;
}
.video-player > .resume-container > span {
  display: block;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.2);
}
.video-player > .resume-container > a {
  color: #fff;
  padding: 8px 12px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.875rem;
  display: block;
  padding: 16px 32px;
}
.video-player > .resume-container > a:hover {
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(8px);
}
.video-player > .resume-container > a:hover:first-of-type {
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
}
.video-player > .resume-container > a:hover:last-of-type {
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;
}
.video-player > .rewind-control {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 8px;
  bottom: 13px;
  background: rgba(0, 0, 0, 0.2);
  filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.5));
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
  backdrop-filter: blur(8px);
  cursor: pointer;
}
.video-player > .rewind-control > svg {
  width: 24px;
  height: 24px;
  fill: #fff;
}
.video-player > .rewind-control {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease-in-out;
}
.video-player > .volume-control {
  position: absolute;
  left: 58px;
  bottom: 8px;
  background: rgba(0, 0, 0, 0.2);
  filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.5));
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
  backdrop-filter: blur(8px);
  border-radius: 32px;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease-in-out;
}
.video-player > .volume-control::after {
  content: "";
  height: 100%;
  opacity: 0;
  left: 0px;
  position: absolute;
  top: 0px;
  transition: opacity 500ms;
  width: 100%;
  background:
    radial-gradient(
      500px circle at var(--mouse-x) var(--mouse-y),
      rgb(255, 255, 255),
      transparent 40%);
  z-index: 1;
  pointer-events: none;
}
.video-player > .volume-control > svg {
  width: 24px;
  height: 24px;
  fill: #fff;
}
.video-player > .volume-control > .volume-slider {
  margin: 0 10px;
  appearance: none;
  width: 100%;
  height: 5px;
  border-radius: 1in;
  outline: none;
  transition: 0.2s;
  cursor: pointer;
  background: rgba(220, 220, 220, 0.5);
  background-image: linear-gradient(rgb(255, 255, 255), rgb(255, 255, 255));
  background-size: calc(var(--percentage) - 9px) 100%;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}
.video-player > .volume-control > .volume-slider::after {
  position: absolute;
  content: "";
  height: 100%;
  width: 10px;
  border-radius: 0 1in 1in 0;
  background-color: rgb(255, 255, 255);
  transition: 0.2s;
  left: calc(var(--percentage) - 10px);
}
.video-player > .volume-control > .volume-slider::-webkit-slider-thumb {
  appearance: none;
  visibility: hidden;
  width: 1px;
  height: 10px;
}
.video-player > .volume-control > .volume-slider:hover {
  height: 1em;
}
.video-player > .volume-control > .volume-display {
  color: #fff;
  font-size: 0.875rem;
  min-width: 32px;
  text-align: right;
}
.video-player:hover > .volume-control.visible,
.video-player:hover > .rewind-control.visible {
  opacity: 1;
  pointer-events: auto;
}
.chapter-container {
  max-width: 1276px;
  margin: 0 auto;
  padding: 16px;
  display: flex;
  flex-direction: row;
  gap: 24px;
}
.chapter-container > .sidebar {
  flex: 0 0 320px;
}
.chapter-container > .content {
  flex: 1;
}
.chapter-container > .content > .inner-content {
  box-shadow:
    rgba(0, 0, 0, 0) 0px 0px 0px 0px,
    rgba(0, 0, 0, 0) 0px 0px 0px 0px,
    rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
  border-radius: 8px;
  background-color: #fff;
  flex: 1 1 auto;
  border: 1px solid rgb(225, 231, 239);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.training-detail-button {
  display: flex;
  gap: 1rem;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.quiz-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.quiz-form .question legend.question-header {
  display: block;
  font-size: 14px;
  margin-bottom: 0.75rem;
}
.quiz-form .question label.quiz-form-option {
  display: flex;
  align-items: start;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  border: 1px solid rgb(225, 231, 239);
  border-radius: 8px;
  padding: 12px;
  font-size: 14px;
  cursor: pointer;
}
.training-complete {
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
}
.training-complete h5 {
  text-align: center;
  margin: 0;
}
.training-complete p {
  margin: 0;
}
.chapter-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.chapter-card {
  display: flex;
  flex-direction: row;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  padding: 16px;
  border-radius: 8px;
  transition: background-color 0.2s ease-in-out;
}
.chapter-card.active {
  background-color: rgb(241, 245, 249);
}
.chapter-card:hover {
  background-color: rgb(250, 250, 250);
}
.chapter-card > .status > svg {
  max-width: 16px;
}
.chapter-card > .details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.chapter-card > .details > .title {
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-body);
}
.chapter-card > .details > .description {
  font-size: 0.875rem;
  color: hsl(var(--muted-text));
}
/*# sourceMappingURL=main.css.map */
