/* ============================
   TOKENS
   ============================ */
body.course-id-3005705{
  --header-pattern-bg: url("header-pattern.png");
  /* color */
  --color-navy-900: #0A2E42;
  --color-navy-800: #123E56;
  --color-navy-700: #1B4E6B;
  --color-blue-600: #1B6FA8;
  --color-blue-500: #2C86C4;
  --color-amber-400: #F2A93B;
  --color-ink-900: #16232B;
  --color-ink-600: #4C5D68;
  --color-mist-100: #F3F7FB;
  --color-mist-200: #EBEFF1;
  --color-white: #FFFFFF;
  --color-line: #DCE3E7;

  --color-title-blue: #0063AB;
  --chip-rose-bg: #FBE7EC;
  --chip-rose-icon: #D9647E;
  --chip-amber-bg: #FBF0DB;
  --chip-amber-icon: #D9A23B;
  --chip-sky-bg: #E4EEF9;
  --chip-sky-icon: #3E7CB8;
  --chip-violet-bg: #EFE8FA;
  --chip-violet-icon: #8A67C4;
  --chip-green-bg: #E4F2E7;
  --chip-green-icon: #4C9868;

  --sidebar-text: rgba(255,255,255,0.94);
  --sidebar-text-muted: rgba(255,255,255,0.62);
  --sidebar-text-faint: rgba(255,255,255,0.38);
  --sidebar-hover-bg: rgba(255,255,255,0.06);

  /* type */
  --font-base: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  --font-heading: "Oswald", "Helvetica Neue", Arial, sans-serif;
  --font-title: "Bitter", Georgia, serif;

  /* layout */
  --sidebar-width: 288px;
  --sidebar-width-collapsed: 72px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --transition-fast: 160ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 280ms cubic-bezier(0.4, 0, 0.2, 1);
}

body.course-id-3005705 *{ box-sizing: border-box; }

html:has(body.course-id-3005705),
body.course-id-3005705{
  margin: 0;
  padding: 0;
  height: 100%;
}

html:has(body.course-id-3005705){
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce){
  html:has(body.course-id-3005705){ scroll-behavior: auto; }
}

body.course-id-3005705{
  font-family: var(--font-base);
  color: var(--color-ink-900);
  background: var(--color-mist-100);
  -webkit-font-smoothing: antialiased;
}

body.course-id-3005705 a{ color: inherit; text-decoration: none; }

body.course-id-3005705 button{
  font-family: inherit;
  cursor: pointer;
}

/* visible keyboard focus everywhere */
body.course-id-3005705 a:focus-visible,
body.course-id-3005705 button:focus-visible{
  outline: 2px solid var(--color-amber-400);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

@media (prefers-reduced-motion: reduce){
  body.course-id-3005705 *{
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }
}

/* ============================
   LAYOUT
   ============================ */
body.course-id-3005705 .layout{
  display: flex;
  min-height: 100vh;
}

/* ============================
   SIDEBAR
   ============================ */
body.course-id-3005705 .sidebar{
  flex: 0 0 var(--sidebar-width);
  width: var(--sidebar-width);
  background: var(--color-navy-900);
  transition: width var(--transition-slow), flex-basis var(--transition-slow);
  overflow: visible;
  position: sticky;
  top: 0;
  height: 100vh;
  z-index: 80;
}

body.course-id-3005705 .sidebar__inner{
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--color-navy-900);
}

/* hovering a collapsed sidebar temporarily pops the full nav out as an
   overlay -- it does NOT change the reserved layout width, so it never
   shifts or covers card content except for this deliberate, temporary,
   user-initiated preview */
body.course-id-3005705 .sidebar--collapsed.sidebar--peeking .sidebar__inner{
  position: absolute;
  top: 0;
  left: 0;
  width: var(--sidebar-width);
  height: 100%;
  z-index: 60;
  overflow: visible;
  box-shadow: 8px 0 24px rgba(0,0,0,0.35);
}

body.course-id-3005705 .sidebar--collapsed.sidebar--peeking .sidebar__body{
  overflow-y: auto;
}

body.course-id-3005705 .sidebar--collapsed{
  flex-basis: var(--sidebar-width-collapsed);
  width: var(--sidebar-width-collapsed);
}

body.course-id-3005705 .sidebar__topbar{
  display: flex;
  align-items: center;
  height: 64px;
  flex: 0 0 auto;
  padding: 0 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

body.course-id-3005705 .sidebar__toggle{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  border-radius: var(--radius-sm);
  color: var(--sidebar-text-muted);
  transition: background var(--transition-fast), color var(--transition-fast);
}

body.course-id-3005705 .sidebar__toggle:hover{
  background: var(--sidebar-hover-bg);
  color: var(--color-white);
}

body.course-id-3005705 .sidebar__toggle::before{
  width: 20px;
  height: 20px;
  display: block;
}

/* body scroll area */
body.course-id-3005705 .sidebar__body{
  flex: 1 1 auto;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 20px 0 28px;
}

body.course-id-3005705 .sidebar__body::-webkit-scrollbar{ width: 8px; }
body.course-id-3005705 .sidebar__body::-webkit-scrollbar-thumb{
  background: rgba(255,255,255,0.14);
  border-radius: 8px;
}

/* footer utility actions (pinned) */
body.course-id-3005705 .sidebar__footer{
  flex: 0 0 auto;
  padding: 14px 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

body.course-id-3005705 .sidebar__print{
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  height: 34px;
  padding: 0 10px;
  border-radius: var(--radius-sm);
  background: transparent;
  border: none;
  font-family: var(--font-base);
  font-size: 14px;
  font-weight: 500;
  color: var(--sidebar-text-muted);
  transition: background var(--transition-fast), color var(--transition-fast), justify-content var(--transition-fast);
}

body.course-id-3005705 .sidebar__print:hover{
  background: var(--sidebar-hover-bg);
  color: var(--color-white);
}

body.course-id-3005705 .sidebar__print-icon{
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
}

body.course-id-3005705 .sidebar__print-icon::before{
  width: 100%;
  height: 100%;
  display: block;
}

body.course-id-3005705 .sidebar__print-text{
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.course-id-3005705 .sidebar--collapsed .sidebar__footer{
  padding: 14px 12px;
}

body.course-id-3005705 .sidebar--collapsed .sidebar__print{
  justify-content: center;
  padding: 0;
  gap: 0;
}

body.course-id-3005705 .sidebar--collapsed .sidebar__print-text{
  display: none;
}

/* group */
body.course-id-3005705 .sidebar__group{
  padding: 0 16px;
  margin-bottom: 20px;
  white-space: nowrap;
}

body.course-id-3005705 .sidebar__group-header{
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

body.course-id-3005705 .sidebar__group-title{
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  margin: 0;
  opacity: 1;
  transition: opacity var(--transition-fast);
}

body.course-id-3005705 .sidebar__group-rule{
  height: 1px;
  background: rgba(255,255,255,0.12);
  margin: 0 0 10px 0;
  transition: opacity var(--transition-fast);
}

body.course-id-3005705 .sidebar__list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

body.course-id-3005705 .sidebar__item{ position: relative; }

body.course-id-3005705 .sidebar__link{
  display: flex;
  align-items: center;
  gap: 10px;
  height: 30px;
  padding: 0 10px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--sidebar-text);
  transition: background var(--transition-fast), color var(--transition-fast), padding var(--transition-fast), justify-content var(--transition-fast);
  position: relative;
}

body.course-id-3005705 .sidebar__link:hover{
  background: var(--sidebar-hover-bg);
  color: var(--color-white);
}

body.course-id-3005705 .sidebar__link-icon{
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  color: var(--sidebar-text-muted);
  transition: color var(--transition-fast);
}

body.course-id-3005705 .sidebar__link-icon::before{
  width: 100%;
  height: 100%;
  display: block;
}

body.course-id-3005705 .sidebar__link:hover .sidebar__link-icon,
body.course-id-3005705 .sidebar__item--active > .sidebar__link .sidebar__link-icon{
  color: var(--color-amber-400);
}

body.course-id-3005705 .sidebar__link-text{
  overflow: hidden;
  text-overflow: ellipsis;
  transition: opacity var(--transition-fast);
}

/* current-page bookmark tab */
body.course-id-3005705 .sidebar__item--active > .sidebar__link{
  background: rgba(242, 169, 59, 0.12);
  color: var(--color-white);
}

body.course-id-3005705 .sidebar__item--active > .sidebar__link::before{
  content: "";
  position: absolute;
  left: -20px;
  top: 4px;
  bottom: 4px;
  width: 3px;
  border-radius: 0 3px 3px 0;
  background: var(--color-amber-400);
}

body.course-id-3005705 .sidebar__sublist{
  list-style: none;
  margin: 1px 0 2px 0;
  padding: 0 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 1px;
  border-left: 1px solid rgba(255,255,255,0.1);
  margin-left: 9px;
}

body.course-id-3005705 .sidebar__sublink{
  display: flex;
  align-items: center;
  height: 26px;
  padding: 0 10px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 400;
  color: var(--sidebar-text-muted);
  transition: background var(--transition-fast), color var(--transition-fast);
}

body.course-id-3005705 .sidebar__sublink:hover{
  background: var(--sidebar-hover-bg);
  color: var(--color-white);
}

/* ---- collapsed state ---- */
/* group title/rule collapse away; the item list stays, showing icons only */
body.course-id-3005705 .sidebar--collapsed .sidebar__group-title,
body.course-id-3005705 .sidebar--collapsed .sidebar__group-rule{
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  height: 0;
  margin: 0;
}

body.course-id-3005705 .sidebar--collapsed .sidebar__group-header{
  margin-bottom: 0;
  height: 0;
}

body.course-id-3005705 .sidebar--collapsed .sidebar__group{
  padding: 0 12px;
  margin-bottom: 20px;
}

body.course-id-3005705 .sidebar--collapsed .sidebar__group + .sidebar__group{
  margin-top: 4px;
}

body.course-id-3005705 .sidebar--collapsed .sidebar__group + .sidebar__group::before{
  content: "";
  display: block;
  height: 1px;
  background: rgba(255,255,255,0.14);
  margin: 0 8px 18px;
}

body.course-id-3005705 .sidebar--collapsed .sidebar__link{
  justify-content: center;
  padding: 0;
  gap: 0;
}

body.course-id-3005705 .sidebar--collapsed .sidebar__link-text{
  display: none;
}

/* sub-items have no icons of their own, so hide them while collapsed */
body.course-id-3005705 .sidebar--collapsed .sidebar__sublist{
  display: none;
}

body.course-id-3005705 .sidebar--collapsed .sidebar__item--active > .sidebar__link::before{
  left: -12px;
}

body.course-id-3005705 .sidebar--collapsed .sidebar__topbar{
  justify-content: center;
  padding: 0;
}

/* ---- peeking: temporarily restore the expanded look inside the popped-out overlay ---- */
body.course-id-3005705 .sidebar--collapsed.sidebar--peeking .sidebar__group-title,
body.course-id-3005705 .sidebar--collapsed.sidebar--peeking .sidebar__group-rule{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  height: auto;
  margin: 0 0 10px 0;
}

body.course-id-3005705 .sidebar--collapsed.sidebar--peeking .sidebar__group-rule{
  height: 1px;
  margin: 0 0 10px 0;
}

body.course-id-3005705 .sidebar--collapsed.sidebar--peeking .sidebar__group-header{
  margin-bottom: 10px;
  height: auto;
}

body.course-id-3005705 .sidebar--collapsed.sidebar--peeking .sidebar__group{
  padding: 0 16px;
  margin-bottom: 20px;
}

body.course-id-3005705 .sidebar--collapsed.sidebar--peeking .sidebar__group + .sidebar__group{
  margin-top: 0;
}

body.course-id-3005705 .sidebar--collapsed.sidebar--peeking .sidebar__group + .sidebar__group::before{
  content: none;
}

body.course-id-3005705 .sidebar--collapsed.sidebar--peeking .sidebar__link{
  justify-content: flex-start;
  padding: 0 10px;
  gap: 10px;
}

body.course-id-3005705 .sidebar--collapsed.sidebar--peeking .sidebar__link-text{
  display: inline;
}

body.course-id-3005705 .sidebar--collapsed.sidebar--peeking .sidebar__sublist{
  display: flex;
}

body.course-id-3005705 .sidebar--collapsed.sidebar--peeking .sidebar__item--active > .sidebar__link::before{
  left: -20px;
}

body.course-id-3005705 .sidebar--collapsed.sidebar--peeking .sidebar__topbar{
  justify-content: space-between;
  padding: 0 16px;
}

body.course-id-3005705 .sidebar--collapsed.sidebar--peeking .sidebar__footer{
  padding: 14px 16px;
}

body.course-id-3005705 .sidebar--collapsed.sidebar--peeking .sidebar__print{
  justify-content: flex-start;
  padding: 0 10px;
  gap: 10px;
}

body.course-id-3005705 .sidebar--collapsed.sidebar--peeking .sidebar__print-text{
  display: inline;
}

/* ============================
   MAIN
   ============================ */
body.course-id-3005705 .main{
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  container-type: inline-size;
  container-name: main-col;
}

body.course-id-3005705 .main__header{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  background-image:
    linear-gradient(135deg, rgba(9,45,68,0.35) 0%, rgba(9,45,68,0.05) 60%),
    var(--header-pattern-bg);
  background-repeat: no-repeat, repeat;
  background-size: cover, 760px auto;
  background-position: center, top left;
  background-color: var(--color-blue-600);
  padding: 44px 48px;
  overflow: hidden;
  isolation: isolate;
}

body.course-id-3005705 .main__header-content{
  position: relative;
  z-index: 1;
  flex: 1 1 320px;
  min-width: 0;
}

body.course-id-3005705 .main__eyebrow{
  position: relative;
  z-index: 1;
  font-family: var(--font-heading);
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  margin: 0 0 10px 0;
}

body.course-id-3005705 .main__title{
  position: relative;
  z-index: 1;
  font-family: var(--font-title);
  font-size: 50px;
  font-weight: 800;
  color: var(--color-white);
  margin: 0;
  max-width: 480px;
  line-height: 1.15;
}

/*----------  Green Button  ----------*/
body.course-id-3005705 .button--green{
  text-align: center;
  background: #5f9802;
  display: inline-block;
  vertical-align: top;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  color: #fff !important;
  font-size: 15px;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
  border: none;
  overflow: hidden;
  -webkit-transition: all linear 150ms;
  transition: all linear 150ms;
  box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.2);
  position: relative;
  margin-top: 24px;
  padding: 10px 46px 10px 20px !important;
  font-family: 'Oswald', sans-serif !important;
  font-weight: 800 !important;
}
body.course-id-3005705 .banner--catalog__wrapper .button--green{
  margin: 10px 0px;
}
body.course-id-3005705 .button--green:hover{
  cursor: pointer;
  background: #4f7f02;
  box-shadow: 2px 2px 0px rgba(0, 0, 0, 0.4) !important;
  -moz-box-shadow: 2px 2px 0px rgba(0, 0, 0, 0.4) !important;
  -webkit-box-shadow: 2px 2px 0px rgba(0, 0, 0, 0.4) !important;
}
body.course-id-3005705 .button--green span:last-of-type{
  width: 34px;
  height: 100%;
  background: #94c34a;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  -webkit-transition: all linear 150ms;
  -moz-transition: all linear 150ms;
  -ms-transition: all linear 150ms;
  -o-transition: all linear 150ms;
  right: 0;
  border-left: 2px dashed #fff;
}
body.course-id-3005705 .button--green:hover span:last-of-type{
  background: #5f9802;
}
body.course-id-3005705 .button--green span:last-of-type::before{
  display: block;
  width: 22px;
  height: 22px;
  color: #fff;
  transform: scale(0.85);
  -webkit-transition: all linear 150ms;
  -moz-transition: all linear 150ms;
  -ms-transition: all linear 150ms;
  -o-transition: all linear 150ms;
}
body.course-id-3005705 .button--green:hover span:last-of-type::before{
  transform: scale(1);
}

body.course-id-3005705 .main__character-wrap{
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  width: 190px;
  height: 235px;
}

@container main-col (max-width: 700px){
  body.course-id-3005705 .main__character-wrap{
    display: none;
  }
}

body.course-id-3005705 .main__character-backing{
  position: absolute;
  top: 45px;
  left: 0;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: var(--color-white);
  box-shadow: 0 10px 24px rgba(5,30,46,0.28);
  z-index: 1;
}

body.course-id-3005705 .main__character-photo{
  position: absolute;
  top: 0;
  left: 0;
  width: 190px;
  height: 235px;
  z-index: 2;
  /* full rectangle from the top down to the circle's widest point (its vertical
     center), then the lower semicircle arc down to the bottom point. Because the
     rectangle and the arc meet at the circle's widest point, there's no seam or
     pinch at the transition -- and it's one continuous image, so there's nothing
     for a seam to appear between. */
  clip-path: path('M0,0 L190,0 L190,140 A95,95 0 0 1 0,140 L0,0 Z');
}

body.course-id-3005705 .main__character-photo img{
  width: 100%;
  height: 100%;
  display: block;
}

body.course-id-3005705 .main__content{
  flex: 1 1 auto;
  padding: 48px;
}

body.course-id-3005705 .content-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

body.course-id-3005705 .card{
  grid-column: span 1;
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  padding: 28px;
  scroll-margin-top: 24px;
}

body.course-id-3005705 .card--full{
  grid-column: 1 / -1;
}

body.course-id-3005705 .card__header{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
}

body.course-id-3005705 .card__icon{
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

body.course-id-3005705 .card__icon::before{
  width: 19px;
  height: 19px;
  display: block;
}

body.course-id-3005705 .card__icon--rose,
body.course-id-3005705 .card__icon--amber,
body.course-id-3005705 .card__icon--sky,
body.course-id-3005705 .card__icon--violet,
body.course-id-3005705 .card__icon--green{
  background: #FFF2CE;
  color: #9C6F00;
}


body.course-id-3005705 .card__list{
  margin: 0;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

body.course-id-3005705 .card__list--badged{
  list-style: none;
  padding-left: 0;
  gap: 10px;
}

body.course-id-3005705 .card__list--badged li{
  display: flex;
  align-items: center;
  gap: 10px;
}

body.course-id-3005705 .card__list__badge{
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  display: block;
}

body.course-id-3005705 .card__list li{
  font-size: 15px;
  line-height: 1.5;
  color: var(--color-ink-900);
}

body.course-id-3005705 .lo-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 32px;
  row-gap: 20px;
  margin-top: 16px;
}

body.course-id-3005705 .lo-grid__header{
  font-family: var(--font-base);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-title-blue);
  margin: 0;
}

body.course-id-3005705 .lo-grid__objective{
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

body.course-id-3005705 .lo-grid__number{
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-base);
  font-weight: 700;
  font-size: 10px;
}

body.course-id-3005705 .lo-grid__objective-text,
body.course-id-3005705 .lo-grid__target-text{
  font-size: 15px;
  line-height: 1.5;
  color: var(--color-ink-900);
  margin: 0;
}

body.course-id-3005705 .lo-grid--skill .lo-grid__number{
  background: var(--color-white);
  border: 1.4px solid var(--color-title-blue);
  color: var(--color-title-blue);
}

body.course-id-3005705 .lo-grid--health .lo-grid__number{
  background: var(--color-white);
  border: 1.4px solid var(--color-title-blue);
  color: var(--color-title-blue);
}

@media (max-width: 700px){
  body.course-id-3005705 .lo-grid{
    grid-template-columns: 1fr;
    row-gap: 12px;
  }
}

body.course-id-3005705 .content-section{
  margin-bottom: 28px;
}

body.course-id-3005705 .content-section:last-child{
  margin-bottom: 0;
}

body.course-id-3005705 .content-banner{
  background: #669400;
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  margin-bottom: 16px;
}

body.course-id-3005705 .card__title{
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
  color: var(--color-title-blue);
  margin: 6px 0 0 0;
  flex: 1 1 auto;
  min-width: 0;
  padding-bottom: 10px;
  border-bottom: 1.5px dotted #B8C7DB;
}

body.course-id-3005705 .card__title-suffix{
  font-family: var(--font-title);
  font-weight: 400;
}

body.course-id-3005705 .card__body{
  font-size: 15px;
  line-height: 1.5;
  color: var(--color-ink-900);
  margin: 0;
}

body.course-id-3005705 .card__body + .card__body{
  margin-top: 12px;
}

body.course-id-3005705 .activity-meta{
  margin-top: 20px;
}

body.course-id-3005705 .activity-meta__resource{
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

body.course-id-3005705 .activity-meta__icon{
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  color: var(--color-title-blue);
}

body.course-id-3005705 .activity-meta__icon::before{
  width: 100%;
  height: 100%;
  display: block;
}

body.course-id-3005705 .activity-meta__text{
  font-size: 15px;
  line-height: 1.5;
  color: var(--color-ink-900);
}

body.course-id-3005705 .activity-meta__resource-label{
  font-weight: 700;
  color: var(--color-title-blue);
}

body.course-id-3005705 .activity-meta__lang{
  color: #669400;
  font-weight: 600;
  text-decoration: none;
}

body.course-id-3005705 .activity-meta__lang:hover{
  text-decoration: underline;
}

@media (max-width: 700px){
  body.course-id-3005705 .content-grid{
    grid-template-columns: 1fr;
  }
  body.course-id-3005705 .card{
    grid-column: 1 / -1;
  }
  body.course-id-3005705 .card__header{
    flex-wrap: wrap;
  }
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 860px){
  body.course-id-3005705 .sidebar--collapsed .sidebar__group-title,
body.course-id-3005705 .sidebar--collapsed .sidebar__group-rule{
    height: auto;
  }
  body.course-id-3005705 .main__header{ padding: 32px 24px; }
  body.course-id-3005705 .main__content{ padding: 24px; }
  body.course-id-3005705 .main__title{ font-size: 28px; max-width: 100%; }
}

/* ============================
   PRESENTATION MODE
   ============================ */
body.course-id-3005705.mode-presentation .layout{
  display: none;
}

body.course-id-3005705 .presentation-view{
  display: none;
  position: fixed;
  inset: 0;
  z-index: 500;
  background: var(--color-navy-900);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px;
  opacity: 0;
  transition: opacity 260ms ease;
  overflow-y: auto;
}

body.course-id-3005705.mode-presentation .presentation-view{
  display: flex;
}

body.course-id-3005705.mode-presentation.presentation-visible .presentation-view{
  opacity: 1;
}

body.course-id-3005705 .presentation-toolbar{
  width: 100%;
  max-width: 980px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

body.course-id-3005705 .presentation-view__return{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  color: var(--color-white);
  font-family: var(--font-base);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  padding: 4px 2px;
}

body.course-id-3005705 .presentation-view__return::before{
  width: 16px;
  height: 16px;
  display: block;
}

body.course-id-3005705 .presentation-toolbar__actions{
  display: flex;
  align-items: center;
  gap: 10px;
}

body.course-id-3005705 .presentation-action-btn{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--color-white);
  font-family: var(--font-base);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  transition: background 150ms ease, border-color 150ms ease;
}

body.course-id-3005705 .presentation-action-btn:hover{
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.4);
}

body.course-id-3005705 .presentation-action-btn::before{
  width: 15px;
  height: 15px;
  display: block;
}

body.course-id-3005705 .presentation-view__return:hover{
  text-decoration: underline;
}

body.course-id-3005705 .presentation-slide{
  width: 100%;
  max-width: 980px;
  flex: 0 0 auto;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.45);
  transform: scale(0.97);
  transition: transform 260ms ease;
}

body.course-id-3005705.mode-presentation.presentation-visible .presentation-slide{
  transform: scale(1);
}

body.course-id-3005705 .bite-size{
  width: 100%;
  max-width: 980px;
  margin-top: 20px;
}

body.course-id-3005705 .bite-size__label{
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin: 0 0 10px 0;
}

body.course-id-3005705 .bite-size__list{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

body.course-id-3005705 .bite-size__item{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  padding: 12px 16px;
  cursor: pointer;
  transition: background 150ms ease, border-color 150ms ease;
}

body.course-id-3005705 .bite-size__item:hover,
body.course-id-3005705 .bite-size__item:focus-visible{
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.35);
  outline: none;
}

body.course-id-3005705 .bite-size__item-label{
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-white);
  font-family: var(--font-base);
  font-size: 15px;
  font-weight: 600;
  min-width: 0;
}

body.course-id-3005705 .bite-size__item-icon{
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

body.course-id-3005705 .bite-size__item-icon::before{
  width: 16px;
  height: 16px;
  display: block;
}

body.course-id-3005705 .bite-size__item-icon--intro{
  background: rgba(148,195,74,0.22);
  color: #94c34a;
}

body.course-id-3005705 .bite-size__item-icon--activity{
  background: rgba(201,56,41,0.22);
  color: #e0685c;
}

body.course-id-3005705 .bite-size__item-icon--review{
  background: rgba(107,67,140,0.28);
  color: #b18fd1;
}

body.course-id-3005705 .bite-size__item-actions{
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

body.course-id-3005705 .bite-size__action{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--color-white);
  cursor: pointer;
  transition: background 150ms ease, border-color 150ms ease;
}

body.course-id-3005705 .bite-size__action:hover{
  background: #669400;
  border-color: #669400;
}

body.course-id-3005705 .bite-size__action::before{
  width: 15px;
  height: 15px;
  display: block;
}

@media (max-width: 480px){
  body.course-id-3005705 .bite-size__item{
    flex-wrap: wrap;
  }
}

body.course-id-3005705 .presentation-slide__frame{
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%; /* 16:9 fallback -- works everywhere */
  aspect-ratio: 16 / 9;
  flex: 0 0 auto;
  background: var(--color-navy-900);
}

/* where aspect-ratio is supported, drop the padding hack so the two
   techniques don't stack and double the height */
@supports (aspect-ratio: 16 / 9){
  body.course-id-3005705 .presentation-slide__frame{
    height: auto;
    padding-top: 0;
  }
}

body.course-id-3005705 .presentation-slide__frame iframe{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ============================
   ICONS (CSS masks)
   ---------------------------
   Inline <svg> is stripped by most WYSIWYG sanitizers, so the icons
   live here instead. mask-image keeps them tintable, meaning the
   existing color: rules (including :hover and --active) still work.
   ============================ */
body.course-id-3005705 [class*="hej-icon--"]::before{
  content: "";
  display: block;
  background-color: currentColor;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
}

/* the editor replaces stripped child elements with &nbsp;, so silence any
   stray whitespace inside wrappers that hold nothing but an icon */
body.course-id-3005705 .sidebar__link-icon,
body.course-id-3005705 .sidebar__print-icon,
body.course-id-3005705 .sidebar__toggle,
body.course-id-3005705 .card__icon,
body.course-id-3005705 .activity-meta__icon,
body.course-id-3005705 .bite-size__item-icon,
body.course-id-3005705 .bite-size__action,
body.course-id-3005705 .button--green span:last-of-type{
  font-size: 0;
}

body.course-id-3005705 .hej-icon--arrow-right::before{
  -webkit-mask-image: url("data:image/svg+xml,<svg viewBox='0 0 24 24' width='22' height='22' fill='none' xmlns='http://www.w3.org/2000/svg'> <path d='M5 12h14M13 6l6 6-6 6' stroke='%23000' stroke-width='2.75' stroke-linecap='round' stroke-linejoin='round'/> </svg>");
          mask-image: url("data:image/svg+xml,<svg viewBox='0 0 24 24' width='22' height='22' fill='none' xmlns='http://www.w3.org/2000/svg'> <path d='M5 12h14M13 6l6 6-6 6' stroke='%23000' stroke-width='2.75' stroke-linecap='round' stroke-linejoin='round'/> </svg>");
}
body.course-id-3005705 .hej-icon--book::before{
  -webkit-mask-image: url("data:image/svg+xml,<svg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'> <path d='M12 6.5c-1.8-1.3-4-2-6.5-2v12c2.5 0 4.7.7 6.5 2 1.8-1.3 4-2 6.5-2v-12c-2.5 0-4.7.7-6.5 2z' stroke='%23000' stroke-width='1.6' stroke-linejoin='round'/> <path d='M12 6.5v12' stroke='%23000' stroke-width='1.4'/> </svg>");
          mask-image: url("data:image/svg+xml,<svg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'> <path d='M12 6.5c-1.8-1.3-4-2-6.5-2v12c2.5 0 4.7.7 6.5 2 1.8-1.3 4-2 6.5-2v-12c-2.5 0-4.7.7-6.5 2z' stroke='%23000' stroke-width='1.6' stroke-linejoin='round'/> <path d='M12 6.5v12' stroke='%23000' stroke-width='1.4'/> </svg>");
}
body.course-id-3005705 .hej-icon--bulb::before{
  -webkit-mask-image: url("data:image/svg+xml,<svg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'> <path d='M9 18h6M10 21h4M12 3a6 6 0 00-3 11.2c.4.3.6.8.6 1.3v.5h4.8v-.5c0-.5.2-1 .6-1.3A6 6 0 0012 3z' stroke='%23000' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/> </svg>");
          mask-image: url("data:image/svg+xml,<svg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'> <path d='M9 18h6M10 21h4M12 3a6 6 0 00-3 11.2c.4.3.6.8.6 1.3v.5h4.8v-.5c0-.5.2-1 .6-1.3A6 6 0 0012 3z' stroke='%23000' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/> </svg>");
}
body.course-id-3005705 .hej-icon--checklist::before{
  -webkit-mask-image: url("data:image/svg+xml,<svg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'> <path d='M4 5h16M4 12h10M4 19h7' stroke='%23000' stroke-width='1.6' stroke-linecap='round'/> <path d='M16 16l2 2 4-4' stroke='%23000' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/> </svg>");
          mask-image: url("data:image/svg+xml,<svg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'> <path d='M4 5h16M4 12h10M4 19h7' stroke='%23000' stroke-width='1.6' stroke-linecap='round'/> <path d='M16 16l2 2 4-4' stroke='%23000' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/> </svg>");
}
body.course-id-3005705 .hej-icon--chevron-left::before{
  -webkit-mask-image: url("data:image/svg+xml,<svg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'> <path d='M15 6l-6 6 6 6' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/> </svg>");
          mask-image: url("data:image/svg+xml,<svg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'> <path d='M15 6l-6 6 6 6' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/> </svg>");
}
body.course-id-3005705 .hej-icon--clipboard::before{
  -webkit-mask-image: url("data:image/svg+xml,<svg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'> <rect x='6' y='4' width='12' height='16' rx='1.6' stroke='%23000' stroke-width='1.6'/> <path d='M9 3.5h6a1 1 0 011 1V6H8V4.5a1 1 0 011-1z' stroke='%23000' stroke-width='1.6'/> <path d='M9.2 12.5l2 2 3.6-4' stroke='%23000' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/> </svg>");
          mask-image: url("data:image/svg+xml,<svg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'> <rect x='6' y='4' width='12' height='16' rx='1.6' stroke='%23000' stroke-width='1.6'/> <path d='M9 3.5h6a1 1 0 011 1V6H8V4.5a1 1 0 011-1z' stroke='%23000' stroke-width='1.6'/> <path d='M9.2 12.5l2 2 3.6-4' stroke='%23000' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/> </svg>");
}
body.course-id-3005705 .hej-icon--clock::before{
  -webkit-mask-image: url("data:image/svg+xml,<svg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'> <circle cx='12' cy='12' r='8.5' stroke='%23000' stroke-width='1.6'/> <path d='M12 7v5l3.5 2' stroke='%23000' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/> </svg>");
          mask-image: url("data:image/svg+xml,<svg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'> <circle cx='12' cy='12' r='8.5' stroke='%23000' stroke-width='1.6'/> <path d='M12 7v5l3.5 2' stroke='%23000' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/> </svg>");
}
body.course-id-3005705 .hej-icon--doc::before{
  -webkit-mask-image: url("data:image/svg+xml,<svg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'> <rect x='5' y='3' width='14' height='18' rx='1.5' stroke='%23000' stroke-width='1.6'/> <path d='M8 8h8M8 12h8M8 16h5' stroke='%23000' stroke-width='1.5' stroke-linecap='round'/> </svg>");
          mask-image: url("data:image/svg+xml,<svg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'> <rect x='5' y='3' width='14' height='18' rx='1.5' stroke='%23000' stroke-width='1.6'/> <path d='M8 8h8M8 12h8M8 16h5' stroke='%23000' stroke-width='1.5' stroke-linecap='round'/> </svg>");
}
body.course-id-3005705 .hej-icon--download::before{
  -webkit-mask-image: url("data:image/svg+xml,<svg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'> <path d='M12 4v11' stroke='%23000' stroke-width='1.8' stroke-linecap='round'/> <path d='M7.5 11L12 15.5 16.5 11' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/> <path d='M4.5 18.5h15' stroke='%23000' stroke-width='1.8' stroke-linecap='round'/> </svg>");
          mask-image: url("data:image/svg+xml,<svg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'> <path d='M12 4v11' stroke='%23000' stroke-width='1.8' stroke-linecap='round'/> <path d='M7.5 11L12 15.5 16.5 11' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/> <path d='M4.5 18.5h15' stroke='%23000' stroke-width='1.8' stroke-linecap='round'/> </svg>");
}
body.course-id-3005705 .hej-icon--external::before{
  -webkit-mask-image: url("data:image/svg+xml,<svg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'> <path d='M9 6h9v9' stroke='%23000' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/> <path d='M18 6L7 17' stroke='%23000' stroke-width='1.6' stroke-linecap='round'/> <path d='M13 6H6a1 1 0 00-1 1v11a1 1 0 001 1h11a1 1 0 001-1v-7' stroke='%23000' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/> </svg>");
          mask-image: url("data:image/svg+xml,<svg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'> <path d='M9 6h9v9' stroke='%23000' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/> <path d='M18 6L7 17' stroke='%23000' stroke-width='1.6' stroke-linecap='round'/> <path d='M13 6H6a1 1 0 00-1 1v11a1 1 0 001 1h11a1 1 0 001-1v-7' stroke='%23000' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/> </svg>");
}
body.course-id-3005705 .hej-icon--flag::before{
  -webkit-mask-image: url("data:image/svg+xml,<svg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'> <path d='M6 3v18' stroke='%23000' stroke-width='1.8' stroke-linecap='round'/> <path d='M6 4.5h11l-2.6 3 2.6 3H6' stroke='%23000' stroke-width='1.6' stroke-linejoin='round'/> </svg>");
          mask-image: url("data:image/svg+xml,<svg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'> <path d='M6 3v18' stroke='%23000' stroke-width='1.8' stroke-linecap='round'/> <path d='M6 4.5h11l-2.6 3 2.6 3H6' stroke='%23000' stroke-width='1.6' stroke-linejoin='round'/> </svg>");
}
body.course-id-3005705 .hej-icon--gear::before{
  -webkit-mask-image: url("data:image/svg+xml,<svg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'> <path fill='none' stroke='%23000' stroke-width='1.6' stroke-linejoin='round' d='M19.14,12.94c0.04-0.3,0.06-0.61,0.06-0.94c0-0.32-0.02-0.64-0.07-0.94l2.03-1.58c0.18-0.14,0.23-0.41,0.12-0.61l-1.92-3.32c-0.12-0.22-0.37-0.29-0.59-0.22l-2.39,0.96c-0.5-0.38-1.03-0.7-1.62-0.94L14.4,2.81c-0.04-0.24-0.24-0.41-0.48-0.41h-3.84c-0.24,0-0.43,0.17-0.47,0.41L9.25,5.35C8.66,5.59,8.12,5.92,7.63,6.29L5.24,5.33c-0.22-0.08-0.47,0-0.59,0.22L2.74,8.87C2.62,9.08,2.66,9.34,2.86,9.48l2.03,1.58C4.84,11.36,4.8,11.69,4.8,12s0.02,0.64,0.07,0.94l-2.03,1.58c-0.18,0.14-0.23,0.41-0.12,0.61l1.92,3.32c0.12,0.22,0.37,0.29,0.59,0.22l2.39-0.96c0.5,0.38,1.03,0.7,1.62,0.94l0.36,2.54c0.05,0.24,0.24,0.41,0.48,0.41h3.84c0.24,0,0.44-0.17,0.47-0.41l0.36-2.54c0.59-0.24,1.13-0.56,1.62-0.94l2.39,0.96c0.22,0.08,0.47,0,0.59-0.22l1.92-3.32c0.12-0.22,0.07-0.47-0.12-0.61L19.14,12.94z M12,15.6c-1.98,0-3.6-1.62-3.6-3.6s1.62-3.6,3.6-3.6s3.6,1.62,3.6,3.6S13.98,15.6,12,15.6z'/> </svg>");
          mask-image: url("data:image/svg+xml,<svg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'> <path fill='none' stroke='%23000' stroke-width='1.6' stroke-linejoin='round' d='M19.14,12.94c0.04-0.3,0.06-0.61,0.06-0.94c0-0.32-0.02-0.64-0.07-0.94l2.03-1.58c0.18-0.14,0.23-0.41,0.12-0.61l-1.92-3.32c-0.12-0.22-0.37-0.29-0.59-0.22l-2.39,0.96c-0.5-0.38-1.03-0.7-1.62-0.94L14.4,2.81c-0.04-0.24-0.24-0.41-0.48-0.41h-3.84c-0.24,0-0.43,0.17-0.47,0.41L9.25,5.35C8.66,5.59,8.12,5.92,7.63,6.29L5.24,5.33c-0.22-0.08-0.47,0-0.59,0.22L2.74,8.87C2.62,9.08,2.66,9.34,2.86,9.48l2.03,1.58C4.84,11.36,4.8,11.69,4.8,12s0.02,0.64,0.07,0.94l-2.03,1.58c-0.18,0.14-0.23,0.41-0.12,0.61l1.92,3.32c0.12,0.22,0.37,0.29,0.59,0.22l2.39-0.96c0.5,0.38,1.03,0.7,1.62,0.94l0.36,2.54c0.05,0.24,0.24,0.41,0.48,0.41h3.84c0.24,0,0.44-0.17,0.47-0.41l0.36-2.54c0.59-0.24,1.13-0.56,1.62-0.94l2.39,0.96c0.22,0.08,0.47,0,0.59-0.22l1.92-3.32c0.12-0.22,0.07-0.47-0.12-0.61L19.14,12.94z M12,15.6c-1.98,0-3.6-1.62-3.6-3.6s1.62-3.6,3.6-3.6s3.6,1.62,3.6,3.6S13.98,15.6,12,15.6z'/> </svg>");
}
body.course-id-3005705 .hej-icon--panel::before{
  -webkit-mask-image: url("data:image/svg+xml,<svg viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'> <rect x='2.5' y='3' width='15' height='14' rx='2' stroke='%23000' stroke-width='1.4'/> <line x1='8' y1='3' x2='8' y2='17' stroke='%23000' stroke-width='1.4'/> </svg>");
          mask-image: url("data:image/svg+xml,<svg viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'> <rect x='2.5' y='3' width='15' height='14' rx='2' stroke='%23000' stroke-width='1.4'/> <line x1='8' y1='3' x2='8' y2='17' stroke='%23000' stroke-width='1.4'/> </svg>");
}
body.course-id-3005705 .hej-icon--people::before{
  -webkit-mask-image: url("data:image/svg+xml,<svg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'> <circle cx='9' cy='8' r='2.6' stroke='%23000' stroke-width='1.6'/> <path d='M3.8 18c.5-2.6 2.6-4.2 5.2-4.2s4.7 1.6 5.2 4.2' stroke='%23000' stroke-width='1.6' stroke-linecap='round'/> <circle cx='16.5' cy='9' r='2' stroke='%23000' stroke-width='1.6'/> <path d='M15.2 13.9c1.9.4 3.3 1.8 3.7 4' stroke='%23000' stroke-width='1.6' stroke-linecap='round'/> </svg>");
          mask-image: url("data:image/svg+xml,<svg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'> <circle cx='9' cy='8' r='2.6' stroke='%23000' stroke-width='1.6'/> <path d='M3.8 18c.5-2.6 2.6-4.2 5.2-4.2s4.7 1.6 5.2 4.2' stroke='%23000' stroke-width='1.6' stroke-linecap='round'/> <circle cx='16.5' cy='9' r='2' stroke='%23000' stroke-width='1.6'/> <path d='M15.2 13.9c1.9.4 3.3 1.8 3.7 4' stroke='%23000' stroke-width='1.6' stroke-linecap='round'/> </svg>");
}
body.course-id-3005705 .hej-icon--printer::before{
  -webkit-mask-image: url("data:image/svg+xml,<svg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'> <path d='M7 8.5V4h10v4.5' stroke='%23000' stroke-width='1.6' stroke-linejoin='round'/> <rect x='4' y='8.5' width='16' height='8' rx='1.4' stroke='%23000' stroke-width='1.6'/> <path d='M7 15.5h10V20H7v-4.5z' stroke='%23000' stroke-width='1.6' stroke-linejoin='round'/> </svg>");
          mask-image: url("data:image/svg+xml,<svg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'> <path d='M7 8.5V4h10v4.5' stroke='%23000' stroke-width='1.6' stroke-linejoin='round'/> <rect x='4' y='8.5' width='16' height='8' rx='1.4' stroke='%23000' stroke-width='1.6'/> <path d='M7 15.5h10V20H7v-4.5z' stroke='%23000' stroke-width='1.6' stroke-linejoin='round'/> </svg>");
}
body.course-id-3005705 .hej-icon--printer-lines::before{
  -webkit-mask-image: url("data:image/svg+xml,<svg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'> <path d='M7 8.5V4h10v4.5' stroke='%23000' stroke-width='1.6' stroke-linejoin='round'/> <rect x='4' y='8.5' width='16' height='8' rx='1.4' stroke='%23000' stroke-width='1.6'/> <path d='M7 15.5h10V20H7v-4.5z' stroke='%23000' stroke-width='1.6' stroke-linejoin='round'/> <path d='M7.5 11.5h1.5' stroke='%23000' stroke-width='1.6' stroke-linecap='round'/> </svg>");
          mask-image: url("data:image/svg+xml,<svg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'> <path d='M7 8.5V4h10v4.5' stroke='%23000' stroke-width='1.6' stroke-linejoin='round'/> <rect x='4' y='8.5' width='16' height='8' rx='1.4' stroke='%23000' stroke-width='1.6'/> <path d='M7 15.5h10V20H7v-4.5z' stroke='%23000' stroke-width='1.6' stroke-linejoin='round'/> <path d='M7.5 11.5h1.5' stroke='%23000' stroke-width='1.6' stroke-linecap='round'/> </svg>");
}
body.course-id-3005705 .hej-icon--question::before{
  -webkit-mask-image: url("data:image/svg+xml,<svg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'> <circle cx='12' cy='12' r='9' stroke='%23000' stroke-width='1.6'/> <path d='M9.8 9.5a2.2 2.2 0 114 1.2c-.3.5-.9.8-1.3 1.2-.4.4-.5.8-.5 1.3' stroke='%23000' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/> <path d='M12 16.5h.01' stroke='%23000' stroke-width='1.8' stroke-linecap='round'/> </svg>");
          mask-image: url("data:image/svg+xml,<svg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'> <circle cx='12' cy='12' r='9' stroke='%23000' stroke-width='1.6'/> <path d='M9.8 9.5a2.2 2.2 0 114 1.2c-.3.5-.9.8-1.3 1.2-.4.4-.5.8-.5 1.3' stroke='%23000' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/> <path d='M12 16.5h.01' stroke='%23000' stroke-width='1.8' stroke-linecap='round'/> </svg>");
}
body.course-id-3005705 .hej-icon--rewind::before{
  -webkit-mask-image: url("data:image/svg+xml,<svg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'> <circle cx='12' cy='12' r='9' stroke='%23000' stroke-width='1.6'/> <path d='M13.5 8.5L9.5 12l4 3.5' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/> <path d='M9.5 8.5L5.8 12l3.7 3.5' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/> </svg>");
          mask-image: url("data:image/svg+xml,<svg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'> <circle cx='12' cy='12' r='9' stroke='%23000' stroke-width='1.6'/> <path d='M13.5 8.5L9.5 12l4 3.5' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/> <path d='M9.5 8.5L5.8 12l3.7 3.5' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/> </svg>");
}
body.course-id-3005705 .hej-icon--search::before{
  -webkit-mask-image: url("data:image/svg+xml,<svg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'> <circle cx='10.5' cy='10.5' r='6.5' stroke='%23000' stroke-width='1.6'/> <path d='M15.3 15.3L20 20' stroke='%23000' stroke-width='1.6' stroke-linecap='round'/> </svg>");
          mask-image: url("data:image/svg+xml,<svg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'> <circle cx='10.5' cy='10.5' r='6.5' stroke='%23000' stroke-width='1.6'/> <path d='M15.3 15.3L20 20' stroke='%23000' stroke-width='1.6' stroke-linecap='round'/> </svg>");
}
body.course-id-3005705 .hej-icon--stopwatch::before{
  -webkit-mask-image: url("data:image/svg+xml,<svg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'> <circle cx='12' cy='13' r='8' stroke='%23000' stroke-width='1.6'/> <path d='M12 13V9' stroke='%23000' stroke-width='1.6' stroke-linecap='round'/> <path d='M9.5 2.5h5' stroke='%23000' stroke-width='1.6' stroke-linecap='round'/> <path d='M18.5 5.2l1.2 1.2' stroke='%23000' stroke-width='1.6' stroke-linecap='round'/> </svg>");
          mask-image: url("data:image/svg+xml,<svg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'> <circle cx='12' cy='13' r='8' stroke='%23000' stroke-width='1.6'/> <path d='M12 13V9' stroke='%23000' stroke-width='1.6' stroke-linecap='round'/> <path d='M9.5 2.5h5' stroke='%23000' stroke-width='1.6' stroke-linecap='round'/> <path d='M18.5 5.2l1.2 1.2' stroke='%23000' stroke-width='1.6' stroke-linecap='round'/> </svg>");
}
body.course-id-3005705 .hej-icon--target::before{
  -webkit-mask-image: url("data:image/svg+xml,<svg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'> <circle cx='12' cy='12' r='8' stroke='%23000' stroke-width='1.6'/> <circle cx='12' cy='12' r='4' stroke='%23000' stroke-width='1.6'/> <circle cx='12' cy='12' r='0.9' fill='%23000'/> </svg>");
          mask-image: url("data:image/svg+xml,<svg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'> <circle cx='12' cy='12' r='8' stroke='%23000' stroke-width='1.6'/> <circle cx='12' cy='12' r='4' stroke='%23000' stroke-width='1.6'/> <circle cx='12' cy='12' r='0.9' fill='%23000'/> </svg>");
}
body.course-id-3005705 .hej-icon--trend::before{
  -webkit-mask-image: url("data:image/svg+xml,<svg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'> <path d='M4 16l5-5 3.5 3.5L19 8' stroke='%23000' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/> <path d='M14.5 8H19v4.5' stroke='%23000' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/> </svg>");
          mask-image: url("data:image/svg+xml,<svg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'> <path d='M4 16l5-5 3.5 3.5L19 8' stroke='%23000' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/> <path d='M14.5 8H19v4.5' stroke='%23000' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/> </svg>");
}