 /* -------------------------------- 

File#: _1_radio-switch-v2
Title: Radio Switch v2
Descr: A custom radio button with a switch element and two labels
Usage: codyhouse.co/license

-------------------------------- */
/* reset */
*, *::after, *::before {
  box-sizing: border-box;
}

* {
  font: inherit;
  margin: 0;
  padding: 0;
  border: 0;
}

body {
  background-color: hsl(0, 0%, 100%);
  font-family: system-ui, sans-serif;
  color: hsl(230, 7%, 23%);
  font-size: 1rem;
}

h1,
h2,
h3,
h4 {
  line-height: 1.2;
  color: hsl(230, 13%, 9%);
  font-weight: 700;
}

h1 {
  font-size: 2.0736rem;
}

h2 {
  font-size: 1.728rem;
}

h3 {
  font-size: 1.25rem;
}

h4 {
  font-size: 1.2rem;
}

ol,
ul,
menu {
  list-style: none;
}

button,
input,
textarea,
select {
  background-color: transparent;
  border-radius: 0;
  color: inherit;
  line-height: inherit;
  appearance: none;
}

textarea {
  resize: vertical;
  overflow: auto;
  vertical-align: top;
}

a {
  color: hsl(250, 84%, 54%);
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img,
video,
svg {
  display: block;
  max-width: 100%;
}

@media (min-width: 64rem) {
  body {
    font-size: 1.25rem;
  }

  h1 {
    font-size: 3.051rem;
  }

  h2 {
    font-size: 2.44rem;
  }

  h3 {
    font-size: 1.75rem;
  }

  h4 {
    font-size: 1.5625rem;
  }
}

/* variables */
:root {
  /* colors */
  --rw7-color-primary-hsl: 250, 84%, 54%;
  --rw7-color-bg-hsl: 0, 0%, 100%;
  --rw7-color-contrast-high-hsl: 230, 7%, 23%;
  --rw7-color-contrast-higher-hsl: 230, 13%, 9%;
  --rw7-color-bg-darker-hsl: 240, 4%, 90%;

  /* spacing */
  --rw7-space-xs: 0.5rem;

  /* typography */
  --rw7-text-sm: 0.833rem;
}

@media (min-width: 64rem) {
  :root {
    /* spacing */
    --rw7-space-xs: 0.75rem;

    /* typography */
    --rw7-text-sm: 1rem;
  }
}

/* component */
:root {
  --radio-switch-v2-width: 52px;
  --radio-switch-v2-height: 30px;
  --radio-switch-v2-padding: 4px;
  --radio-switch-v2-radius: 50em;
  --radio-switch-v2-animation-duration: 0.3s;
}

.radio-switch-v2 {
  position: relative;
  display: inline-block;
  display: inline-flex;
}

.radio-switch-v2__item {
  position: relative;
  height: var(--radio-switch-v2-height);
  float: left;
}

.radio-switch-v2__input {
  position: relative;
  z-index: 2;
  height: 100%;
  width: calc(var(--radio-switch-v2-width) * 0.5);
  opacity: 0;
  cursor: pointer;
  -webkit-transform: scaleX(2);
  transform: scaleX(2);
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
}
.radio-switch-v2__item:last-of-type .radio-switch-v2__input {
  -webkit-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
}
.radio-switch-v2__item:first-of-type .radio-switch-v2__input {
  order: 1;
}
.radio-switch-v2__input:checked {
  z-index: -1;
}

.radio-switch-v2__label {
  position: relative;
  z-index: 2;
  display: block;
  line-height: var(--radio-switch-v2-height);
  font-size: calc(var(--rw7-text-sm) * 1.2);
  transition: color var(--radio-switch-v2-animation-duration);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.radio-switch-v2__item:first-of-type .radio-switch-v2__label {
  float: left;
  margin-right: var(--rw7-space-xs);
}
.radio-switch-v2__item:last-of-type .radio-switch-v2__label {
  float: right;
  margin-left: var(--rw7-space-xs);
}
.radio-switch-v2__input:checked ~ .radio-switch-v2__label {
  color: hsl(var(--rw7-color-primary-hsl));
}
.radio-switch-v2__input:focus ~ .radio-switch-v2__label {
  outline: 2px solid hsla(var(--rw7-color-primary-hsl), 0.2);
  outline-offset: 2px;
}
.radio-switch-v2__label :not(*):focus-within,
.radio-switch-v2__input:focus ~ .radio-switch-v2__label {
  outline: none;
}

.radio-switch-v2__toggle {
  position: absolute;
  z-index: 1;
  width: var(--radio-switch-v2-width);
  height: var(--radio-switch-v2-height);
  top: 0;
  left: 0;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-radius: var(--radio-switch-v2-radius);
  background-color: hsl(var(--rw7-color-bg-darker-hsl));
}
.radio-switch-v2:focus-within .radio-switch-v2__toggle,
.radio-switch-v2:active .radio-switch-v2__toggle {
  box-shadow: 0 0 0 2px hsla(var(--rw7-color-contrast-higher-hsl), 0.15);
}

.radio-switch-v2__marker {
  position: absolute;
  z-index: 1;
  top: var(--radio-switch-v2-padding);
  left: var(--radio-switch-v2-padding);
  width: calc(
    var(--radio-switch-v2-height) - var(--radio-switch-v2-padding) * 2
  );
  height: calc(
    var(--radio-switch-v2-height) - var(--radio-switch-v2-padding) * 2
  );
  border-radius: 50%;
  background-color: hsl(var(--rw7-color-primary-hsl));
  transition: left var(--radio-switch-v2-animation-duration);
  box-shadow: 0 0.3px 0.4px rgba(0, 0, 0, 0.025),
    0 0.9px 1.5px rgba(0, 0, 0, 0.05), 0 3.5px 6px rgba(0, 0, 0, 0.1);
  will-change: left;
}

.radio-switch-v2__input:checked
  ~ .radio-switch-v2__toggle
  .radio-switch-v2__marker {
  left: calc(
    var(--radio-switch-v2-width) - var(--radio-switch-v2-height) +
      var(--radio-switch-v2-padding)
  );
}

/* -------------------------------- 

File#: _1_tabs
Title: Tabs
Descr: A list of content sections (panels), accessible one at a time using control labels
Usage: codyhouse.co/license

-------------------------------- */
/* reset */
*,
*::after,
*::before {
  box-sizing: border-box;
}

* {
  font: inherit;
  margin: 0;
  padding: 0;
  border: 0;
}

body {
  background-color: hsl(0, 0%, 100%);
  font-family: system-ui, sans-serif;
  color: hsl(230, 7%, 23%);
  font-size: 1rem;
}

h1,
h2,
h3,
h4 {
  line-height: 1.2;
  color: hsl(230, 13%, 9%);
  font-weight: 700;
}

h1 {
  font-size: 2.0736rem;
}

h2 {
  font-size: 1.728rem;
}

h3 {
  font-size: 1.25rem;
}

h4 {
  font-size: 1.2rem;
}

ol,
ul,
menu {
  list-style: none;
}

button,
input,
textarea,
select {
  background-color: transparent;
  border-radius: 0;
  color: inherit;
  line-height: inherit;
  appearance: none;
}

textarea {
  resize: vertical;
  overflow: auto;
  vertical-align: top;
}

a {
  color: hsl(250, 84%, 54%);
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img,
video,
svg {
  display: block;
  max-width: 100%;
}

@media (min-width: 64rem) {
  body {
    font-size: 1.25rem;
  }

  h1 {
    font-size: 3.051rem;
  }

  h2 {
    font-size: 2.44rem;
  }

  h3 {
    font-size: 1.75rem;
  }

  h4 {
    font-size: 1.5625rem;
  }
}

/* variables */
:root {
  /* colors */
  --th8-color-primary-hsl: 250, 84%, 54%;
  --th8-color-bg-hsl: 0, 0%, 100%;
  --th8-color-contrast-high-hsl: 230, 7%, 23%;
  --th8-color-contrast-higher-hsl: 230, 13%, 9%;
  --th8-color-contrast-medium-hsl: 225, 4%, 47%;
  --th8-color-accent-hsl: 342, 89%, 48%;
  --th8-color-contrast-lower-hsl: 240, 4%, 85%;

  /* spacing */
  --th8-space-sm: 0.75rem;
  --th8-space-md: 1.25rem;
  --th8-space-xs: 0.5rem;

  /* typography */
  --th8-text-lg: 1.25rem;
  --th8-text-sm: 0.833rem;
}

@media (min-width: 64rem) {
  :root {
    /* spacing */
    --th8-space-sm: 1.125rem;
    --th8-space-md: 2rem;
    --th8-space-xs: 0.75rem;

    /* typography */
    --th8-text-lg: 1.75rem;
    --th8-text-sm: 1rem;
  }
}

/* component */
.tabs__control {
  text-decoration: none;
  color: hsl(var(--th8-color-contrast-medium-hsl));
}
.tabs__control:focus {
  outline: 2px solid hsla(var(--th8-color-primary-hsl), 0.2);
  outline-offset: 2px;
}
.tabs__control:hover {
  color: hsl(var(--th8-color-contrast-high-hsl));
}

.tabs__control[aria-selected="true"] {
  color: hsl(var(--th8-color-contrast-high-hsl));
  text-decoration: underline;
}

/* utility classes */
.th8-text-lg {
  font-size: var(--th8-text-lg);
}

.th8-text-component :where(h1, h2, h3, h4) {
  line-height: var(--th8-heading-line-height, 1.2);
  margin-top: calc(var(--th8-space-md) * var(--th8-space-multiplier, 1));
  margin-bottom: calc(var(--th8-space-sm) * var(--th8-space-multiplier, 1));
}

.th8-text-component :where(p, blockquote, ul li, ol li) {
  line-height: var(--th8-body-line-height, 1.4);
}

.th8-text-component :where(ul, ol, p, blockquote, .th8-text-component__block) {
  margin-bottom: calc(var(--th8-space-sm) * var(--th8-space-multiplier, 1));
}

.th8-text-component :where(ul, ol) {
  padding-left: 1.25em;
}

.th8-text-component ul :where(ul, ol),
.th8-text-component ol :where(ul, ol) {
  padding-left: 1em;
  margin-bottom: 0;
}

.th8-text-component ul {
  list-style-type: disc;
}

.th8-text-component ol {
  list-style-type: decimal;
}

.th8-text-component img {
  display: block;
  margin: 0 auto;
}

.th8-text-component figcaption {
  margin-top: calc(var(--th8-space-xs) * var(--th8-space-multiplier, 1));
  font-size: var(--th8-text-sm);
  text-align: center;
}

.th8-text-component em {
  font-style: italic;
}

.th8-text-component strong {
  font-weight: bold;
}

.th8-text-component s {
  text-decoration: line-through;
}

.th8-text-component u {
  text-decoration: underline;
}

.th8-text-component mark {
  background-color: hsla(var(--th8-color-accent-hsl), 0.2);
  color: inherit;
}

.th8-text-component blockquote {
  padding-left: 1em;
  border-left: 4px solid hsl(var(--th8-color-contrast-lower-hsl));
  font-style: italic;
}

.th8-text-component hr {
  margin: calc(var(--th8-space-md) * var(--th8-space-multiplier, 1)) auto;
  background: hsl(var(--th8-color-contrast-lower-hsl));
  height: 1px;
}

.th8-text-component > *:first-child {
  margin-top: 0;
}

.th8-text-component > *:last-child {
  margin-bottom: 0;
}

.th8-text-component.th8-line-height-xs {
  --th8-heading-line-height: 1;
  --th8-body-line-height: 1.1;
}

.th8-text-component.th8-line-height-sm {
  --th8-heading-line-height: 1.1;
  --th8-body-line-height: 1.2;
}

.th8-text-component.th8-line-height-md {
  --th8-heading-line-height: 1.15;
  --th8-body-line-height: 1.4;
}

.th8-text-component.th8-line-height-lg {
  --th8-heading-line-height: 1.22;
  --th8-body-line-height: 1.58;
}

.th8-text-component.th8-line-height-xl {
  --th8-heading-line-height: 1.3;
  --th8-body-line-height: 1.72;
}

.th8-padding-top-md {
  padding-top: var(--th8-space-md);
}

.th8-gap-sm {
  gap: var(--th8-space-sm);
}

.th8-flex-wrap {
  flex-wrap: wrap;
}

.th8-flex {
  display: flex;
}

.th8-hide {
  display: none !important;
}
/* -------------------------------- 
  
  File#: _1_modal-window
  Title: Modal Window
  Descr: A modal dialog used to display critical information
  Usage: codyhouse.co/license
  
  -------------------------------- */
/* reset */
*,
*::after,
*::before {
  box-sizing: border-box;
}

* {
  font: inherit;
  margin: 0;
  padding: 0;
  border: 0;
}

body {
  background-color: hsl(0, 0%, 100%);
  font-family: system-ui, sans-serif;
  color: hsl(230, 7%, 23%);
  font-size: 1rem;
}

h1,
h2,
h3,
h4 {
  line-height: 1.2;
  color: hsl(230, 13%, 9%);
  font-weight: 700;
}

h1 {
  font-size: 2.0736rem;
}

h2 {
  font-size: 1.728rem;
}

h3 {
  font-size: 1.25rem;
}

h4 {
  font-size: 1.2rem;
}

ol,
ul,
menu {
  list-style: none;
}

button,
input,
textarea,
select {
  background-color: transparent;
  border-radius: 0;
  color: inherit;
  line-height: inherit;
  appearance: none;
}

textarea {
  resize: vertical;
  overflow: auto;
  vertical-align: top;
}

a {
  color: hsl(250, 84%, 54%);
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img,
video,
svg {
  display: block;
  max-width: 100%;
}

@media (min-width: 64rem) {
  body {
    font-size: 1.25rem;
  }

  h1 {
    font-size: 3.051rem;
  }

  h2 {
    font-size: 2.44rem;
  }

  h3 {
    font-size: 1.75rem;
  }

  h4 {
    font-size: 1.5625rem;
  }
}

/* variables */
:root {
  /* colors */
  --mc4-color-primary-hsl: 250, 84%, 54%;
  --mc4-color-bg-hsl: 0, 0%, 100%;
  --mc4-color-contrast-high-hsl: 230, 7%, 23%;
  --mc4-color-contrast-higher-hsl: 230, 13%, 9%;
  --mc4-color-contrast-lower-hsl: 240, 4%, 85%;
  --mc4-color-bg-light-hsl: 0, 0%, 100%;
  --mc4-color-bg-lighter-hsl: 0, 0%, 100%;
  --mc4-color-black-hsl: 230, 13%, 9%;
  --mc4-color-white-hsl: 0, 0%, 100%;
  --mc4-color-bg-dark-hsl: 240, 4%, 95%;
  --mc4-color-primary-darker-hsl: 250, 84%, 38%;
  --mc4-color-primary-light-hsl: 250, 84%, 60%;
  --mc4-color-accent-hsl: 342, 89%, 48%;

  /* spacing */
  --mc4-space-xs: 0.5rem;
  --mc4-space-sm: 0.75rem;
  --mc4-space-md: 1.25rem;
  --mc4-space-2xs: 0.375rem;

  /* typography */
  --mc4-text-lg: 1.25rem;
  --mc4-text-md: 1.2rem;
  --mc4-text-sm: 0.833rem;
}

@media (min-width: 64rem) {
  :root {
    /* spacing */
    --mc4-space-xs: 0.75rem;
    --mc4-space-sm: 1.125rem;
    --mc4-space-md: 2rem;
    --mc4-space-2xs: 0.5625rem;

    /* typography */
    --mc4-text-lg: 1.75rem;
    --mc4-text-md: 1.5625rem;
    --mc4-text-sm: 1rem;
  }
}

/* buttons */
.mc4-btn {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 1em;
  white-space: nowrap;
  text-decoration: none;
  background: hsl(var(--mc4-color-bg-dark-hsl));
  color: hsl(var(--mc4-color-contrast-higher-hsl));
  cursor: pointer;
  text-decoration: none;
  line-height: 1.2;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: all 0.2s ease;
  will-change: transform;
  padding: var(--mc4-space-2xs) var(--mc4-space-sm);
  border-radius: 0.25em;
}

.mc4-btn:focus-visible {
  box-shadow: 0px 0px 0px 2px hsl(var(--mc4-color-bg-hsl)),
    0px 0px 0px 4px hsla(var(--mc4-color-contrast-higher-hsl), 0.15);
  outline: none;
}

.mc4-btn:active {
  transform: translateY(2px);
}

.mc4-btn--primary {
  background: hsl(var(--mc4-color-primary-hsl));
  color: hsl(var(--mc4-color-white-hsl));
  box-shadow: inset 0px 1px 0px hsla(var(--mc4-color-white-hsl), 0.15),
    0px 1px 3px hsla(var(--mc4-color-primary-darker-hsl), 0.25),
    0px 2px 6px hsla(var(--mc4-color-primary-darker-hsl), 0.1),
    0px 6px 10px -2px hsla(var(--mc4-color-primary-darker-hsl), 0.25);
}

.mc4-btn--primary:hover {
  background: hsl(var(--mc4-color-primary-light-hsl));
  box-shadow: inset 0px 1px 0px hsla(var(--mc4-color-white-hsl), 0.15),
    0px 1px 2px hsla(var(--mc4-color-primary-darker-hsl), 0.25),
    0px 1px 4px hsla(var(--mc4-color-primary-darker-hsl), 0.1),
    0px 3px 6px -2px hsla(var(--mc4-color-primary-darker-hsl), 0.25);
}

.mc4-btn--primary:focus {
  box-shadow: inset 0px 1px 0px hsla(var(--mc4-color-white-hsl), 0.15),
    0px 1px 2px hsla(var(--mc4-color-primary-darker-hsl), 0.25),
    0px 1px 4px hsla(var(--mc4-color-primary-darker-hsl), 0.1),
    0px 3px 6px -2px hsla(var(--mc4-color-primary-darker-hsl), 0.25),
    0px 0px 0px 2px hsl(var(--mc4-color-bg-hsl)),
    0px 0px 0px 4px hsl(var(--mc4-color-primary-hsl));
}

.mc4-btn--subtle {
  background: hsl(var(--mc4-color-bg-lighter-hsl));
  color: hsl(var(--mc4-color-contrast-higher-hsl));
  box-shadow: inset 0px 1px 0px hsla(var(--mc4-color-white-hsl), 0.1),
    0px 0px 0px 1px hsla(var(--mc4-color-black-hsl), 0.02),
    0px 1px 3px -1px hsla(var(--mc4-color-black-hsl), 0.2),
    0 0.3px 0.4px rgba(0, 0, 0, 0.025), 0 0.9px 1.5px rgba(0, 0, 0, 0.05),
    0 3.5px 6px rgba(0, 0, 0, 0.1);
}

.mc4-btn--subtle:hover {
  background: hsl(var(--mc4-color-bg-light-hsl));
  box-shadow: inset 0px 1px 0px hsla(var(--mc4-color-white-hsl), 0.1),
    0px 0px 0px 1px hsla(var(--mc4-color-black-hsl), 0.02),
    0px 1px 3px -1px hsla(var(--mc4-color-black-hsl), 0.2),
    0 0.1px 0.3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.12);
}

.mc4-btn--subtle:focus {
  box-shadow: inset 0px 1px 0px hsla(var(--mc4-color-white-hsl), 0.1),
    0px 0px 0px 1px hsla(var(--mc4-color-black-hsl), 0.02),
    0px 1px 3px -1px hsla(var(--mc4-color-black-hsl), 0.2),
    0 0.1px 0.3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.12),
    0px 0px 0px 2px hsl(var(--mc4-color-bg-hsl)),
    0px 0px 0px 4px hsl(var(--mc4-color-contrast-high-hsl));
}

/* icons */
.mc4-icon {
  height: var(--mc4-size, 1em);
  width: var(--mc4-size, 1em);
  display: inline-block;
  color: inherit;
  fill: currentColor;
  line-height: 1;
  flex-shrink: 0;
  max-width: initial;
}

.mc4-icon--xs {
  --mc4-size: 16px;
}

.mc4-icon--sm {
  --mc4-size: 24px;
}

/* component */
.modal {
  position: fixed;
  z-index: 15;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0;
  visibility: hidden;
}
.modal:not(.modal--is-visible) {
  pointer-events: none;
  background-color: transparent;
}

.modal--is-visible {
  opacity: 1;
  visibility: visible;
}

/* close button */
.modal__close-btn {
  display: flex;
  flex-shrink: 0;
  border-radius: 50%;
  transition: 0.2s;
}
.modal__close-btn svg {
  display: block;
  margin: auto;
}

.modal__close-btn--outer {
  /* close button - outside the modal__content */
  width: 48px;
  height: 48px;
  position: fixed;
  top: var(--mc4-space-sm);
  right: var(--mc4-space-sm);
  z-index: 10;
  background-color: hsla(var(--mc4-color-black-hsl), 0.9);
  transition: 0.2s;
}
.modal__close-btn--outer svg {
  color: hsl(var(--mc4-color-white-hsl));
  /* icon color */
  transition: -webkit-transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
    -webkit-transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.modal__close-btn--outer:hover {
  background-color: hsla(var(--mc4-color-black-hsl), 1);
}
.modal__close-btn--outer:hover svg {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.modal__close-btn--inner {
  /* close button - inside the modal__content */
  --mc4-size: 32px;
  width: var(--mc4-size);
  height: var(--mc4-size);
  background-color: hsl(var(--mc4-color-bg-light-hsl));
  box-shadow: inset 0 0 0.5px 1px hsla(0, 0%, 100%, 0.075),
    0 0.3px 0.4px rgba(0, 0, 0, 0.025), 0 0.9px 1.5px rgba(0, 0, 0, 0.05),
    0 3.5px 6px rgba(0, 0, 0, 0.1);
  transition: 0.2s;
}
.modal__close-btn--inner svg {
  color: inherit;
  /* icon color */
}
.modal__close-btn--inner:hover {
  background-color: hsl(var(--mc4-color-bg-lighter-hsl));
  box-shadow: inset 0 0 0.5px 1px hsla(0, 0%, 100%, 0.075),
    0 0.9px 1.5px rgba(0, 0, 0, 0.03), 0 3.1px 5.5px rgba(0, 0, 0, 0.08),
    0 14px 25px rgba(0, 0, 0, 0.12);
}

/* animations */
:root {
  --modal-transition-duration: 0.2s;
  /* fallback (i.e., unless specified differently in the variations 👇) */
}

@media (prefers-reduced-motion: no-preference) {
  .modal--animate-fade {
    --modal-transition-duration: 0.2s;
    transition: opacity var(--modal-transition-duration),
      background-color var(--modal-transition-duration),
      visibility 0s var(--modal-transition-duration);
  }
  .modal--animate-fade.modal--is-visible {
    transition: opacity var(--modal-transition-duration),
      background-color var(--modal-transition-duration), visibility 0s;
  }

  .modal--animate-scale,
  .modal--animate-translate-up,
  .modal--animate-translate-down,
  .modal--animate-translate-right,
  .modal--animate-translate-left {
    --modal-transition-duration: 0.2s;
    transition: opacity var(--modal-transition-duration),
      background-color var(--modal-transition-duration),
      visibility 0s var(--modal-transition-duration);
  }
  .modal--animate-scale .modal__content,
  .modal--animate-translate-up .modal__content,
  .modal--animate-translate-down .modal__content,
  .modal--animate-translate-right .modal__content,
  .modal--animate-translate-left .modal__content {
    will-change: transform;
    transition: -webkit-transform var(--modal-transition-duration)
      cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: transform var(--modal-transition-duration)
      cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: transform var(--modal-transition-duration)
        cubic-bezier(0.215, 0.61, 0.355, 1),
      -webkit-transform var(--modal-transition-duration) cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  .modal--animate-scale.modal--is-visible,
  .modal--animate-translate-up.modal--is-visible,
  .modal--animate-translate-down.modal--is-visible,
  .modal--animate-translate-right.modal--is-visible,
  .modal--animate-translate-left.modal--is-visible {
    transition: opacity var(--modal-transition-duration),
      background-color var(--modal-transition-duration), visibility 0s;
  }
  .modal--animate-scale.modal--is-visible .modal__content,
  .modal--animate-translate-up.modal--is-visible .modal__content,
  .modal--animate-translate-down.modal--is-visible .modal__content,
  .modal--animate-translate-right.modal--is-visible .modal__content,
  .modal--animate-translate-left.modal--is-visible .modal__content {
    -webkit-transform: scale(1);
    transform: scale(1);
    /* reset all transformations */
  }

  .modal--animate-slide-up,
  .modal--animate-slide-down,
  .modal--animate-slide-right,
  .modal--animate-slide-left {
    --modal-transition-duration: 0.3s;
    transition: opacity 0s var(--modal-transition-duration),
      background-color var(--modal-transition-duration),
      visibility 0s var(--modal-transition-duration);
  }
  .modal--animate-slide-up .modal__content,
  .modal--animate-slide-down .modal__content,
  .modal--animate-slide-right .modal__content,
  .modal--animate-slide-left .modal__content {
    will-change: transform;
    transition: -webkit-transform var(--modal-transition-duration)
      cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: transform var(--modal-transition-duration)
      cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: transform var(--modal-transition-duration)
        cubic-bezier(0.215, 0.61, 0.355, 1),
      -webkit-transform var(--modal-transition-duration) cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  .modal--animate-slide-up.modal--is-visible,
  .modal--animate-slide-down.modal--is-visible,
  .modal--animate-slide-right.modal--is-visible,
  .modal--animate-slide-left.modal--is-visible {
    transition: background-color var(--modal-transition-duration), visibility 0s;
  }
  .modal--animate-slide-up.modal--is-visible .modal__content,
  .modal--animate-slide-down.modal--is-visible .modal__content,
  .modal--animate-slide-right.modal--is-visible .modal__content,
  .modal--animate-slide-left.modal--is-visible .modal__content {
    -webkit-transform: scale(1);
    transform: scale(1);
    /* reset all transformations */
  }

  /* scale */
  .modal--animate-scale .modal__content {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }

  /* translate */
  .modal--animate-translate-up .modal__content {
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
  }

  .modal--animate-translate-down .modal__content {
    -webkit-transform: translateY(-40px);
    transform: translateY(-40px);
  }

  .modal--animate-translate-right .modal__content {
    -webkit-transform: translateX(-40px);
    transform: translateX(-40px);
  }

  .modal--animate-translate-left .modal__content {
    -webkit-transform: translateX(40px);
    transform: translateX(40px);
  }

  /* slide */
  .modal--animate-slide-up .modal__content {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }

  .modal--animate-slide-down .modal__content {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  .modal--animate-slide-right .modal__content {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }

  .modal--animate-slide-left .modal__content {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}
/* load content - optional */
.modal--is-loading .modal__content {
  visibility: hidden;
}
.modal--is-loading .modal__loader {
  display: flex;
}

.modal__loader {
  /* loader icon */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  display: none;
  pointer-events: none;
}

/* --image */
.modal-img-btn {
  position: relative;
  cursor: pointer;
}
.modal-img-btn::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: hsla(var(--mc4-color-black-hsl), 0);
  transition: background 0.2s;
}
.modal-img-btn:hover::after {
  background-color: hsla(var(--mc4-color-black-hsl), 0.7);
}
.modal-img-btn:hover .modal-img-btn__icon-wrapper {
  opacity: 1;
}

.modal-img-btn__icon-wrapper {
  position: absolute;
  z-index: 2;
  top: calc(50% - 24px);
  left: calc(50% - 24px);
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: hsla(var(--mc4-color-black-hsl), 0.7);
  opacity: 0;
  transition: opacity 0.2s;
}
.modal-img-btn__icon-wrapper .mc4-icon {
  color: hsl(var(--mc4-color-white-hsl));
}

/* utility classes */
.mc4-max-width-100\% {
  max-width: 150rem;
}

.mc4-max-height-100\% {
  max-height: 100%;
}

.mc4-shadow-md {
  box-shadow: 0 0.9px 1.5px rgba(0, 0, 0, 0.03),
    0 3.1px 5.5px rgba(0, 0, 0, 0.08), 0 14px 25px rgba(0, 0, 0, 0.12);
}

.mc4-radius-md {
  border-radius: 0.25em;
}

.mc4-block {
  display: block;
}

.mc4-pointer-events-none {
  pointer-events: none;
}

.mc4-flex-center {
  justify-content: center;
  align-items: center;
}

.mc4-flex {
  display: flex;
}

.mc4-height-100\% {
  height: 100%;
}

.mc4-width-100\% {
  width: 100%;
}

.mc4-padding-md {
  padding: var(--mc4-space-md);
}

.mc4-bg-black {
  --mc4-bg-o: 1;
  background-color: hsla(var(--mc4-color-black-hsl), var(--mc4-bg-o, 1));
}

.mc4-width-3xl {
  width: 8rem;
}

.mc4-overflow-hidden {
  overflow: hidden;
}

.mc4-text-lg {
  font-size: var(--mc4-text-lg);
}

.mc4-text-component :where(h1, h2, h3, h4) {
  line-height: var(--mc4-heading-line-height, 1.2);
  margin-top: calc(var(--mc4-space-md) * var(--mc4-space-multiplier, 1));
  margin-bottom: calc(var(--mc4-space-sm) * var(--mc4-space-multiplier, 1));
}

.mc4-text-component :where(p, blockquote, ul li, ol li) {
  line-height: var(--mc4-body-line-height, 1.4);
}

.mc4-text-component :where(ul, ol, p, blockquote, .mc4-text-component__block) {
  margin-bottom: calc(var(--mc4-space-sm) * var(--mc4-space-multiplier, 1));
}

.mc4-text-component :where(ul, ol) {
  padding-left: 1.25em;
}

.mc4-text-component ul :where(ul, ol),
.mc4-text-component ol :where(ul, ol) {
  padding-left: 1em;
  margin-bottom: 0;
}

.mc4-text-component ul {
  list-style-type: disc;
}

.mc4-text-component ol {
  list-style-type: decimal;
}

.mc4-text-component img {
  display: block;
  margin: 0 auto;
}

.mc4-text-component figcaption {
  margin-top: calc(var(--mc4-space-xs) * var(--mc4-space-multiplier, 1));
  font-size: var(--mc4-text-sm);
  text-align: center;
}

.mc4-text-component em {
  font-style: italic;
}

.mc4-text-component strong {
  font-weight: bold;
}

.mc4-text-component s {
  text-decoration: line-through;
}

.mc4-text-component u {
  text-decoration: underline;
}

.mc4-text-component mark {
  background-color: hsla(var(--mc4-color-accent-hsl), 0.2);
  color: inherit;
}

.mc4-text-component blockquote {
  padding-left: 1em;
  border-left: 4px solid hsl(var(--mc4-color-contrast-lower-hsl));
  font-style: italic;
}

.mc4-text-component hr {
  margin: calc(var(--mc4-space-md) * var(--mc4-space-multiplier, 1)) auto;
  background: hsl(var(--mc4-color-contrast-lower-hsl));
  height: 1px;
}

.mc4-text-component > *:first-child {
  margin-top: 0;
}

.mc4-text-component > *:last-child {
  margin-bottom: 0;
}

.mc4-text-component.mc4-line-height-xs {
  --mc4-heading-line-height: 1;
  --mc4-body-line-height: 1.1;
}

.mc4-text-component.mc4-line-height-sm {
  --mc4-heading-line-height: 1.1;
  --mc4-body-line-height: 1.2;
}

.mc4-text-component.mc4-line-height-md {
  --mc4-heading-line-height: 1.15;
  --mc4-body-line-height: 1.4;
}

.mc4-text-component.mc4-line-height-lg {
  --mc4-heading-line-height: 1.22;
  --mc4-body-line-height: 1.58;
}

.mc4-text-component.mc4-line-height-xl {
  --mc4-heading-line-height: 1.3;
  --mc4-body-line-height: 1.72;
}

.mc4-top-0 {
  top: 0;
}

.mc4-position-sticky {
  position: sticky;
}

.mc4-float-right {
  float: right;
}

:where(.mc4-inner-glow) {
  position: relative;
}

.mc4-inner-glow::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 0 0.5px 1px hsla(0, 0%, 100%, 0.075);
}

.mc4-bg {
  --mc4-bg-o: 1;
  background-color: hsla(var(--mc4-color-bg-hsl), var(--mc4-bg-o, 1));
}

.mc4-overflow-auto {
  overflow: auto;
}

.mc4-max-width-sm {
  max-width: 48rem;
}

@media not all and (min-width: 64rem) {
  .mc4-display\@md {
    display: none !important;
  }
}

.mc4-gap-xs {
  gap: var(--mc4-space-xs);
}

.mc4-justify-end {
  justify-content: flex-end;
}

.mc4-padding-x-md {
  padding-left: var(--mc4-space-md);
  padding-right: var(--mc4-space-md);
}

.mc4-padding-y-sm {
  padding-top: var(--mc4-space-sm);
  padding-bottom: var(--mc4-space-sm);
}

.mc4-text-md {
  font-size: var(--mc4-text-md);
}

.mc4-text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mc4-justify-between {
  justify-content: space-between;
}

.mc4-items-center {
  align-items: center;
}

.mc4-bg-contrast-lower {
  --mc4-bg-o: 1;
  background-color: hsla(
    var(--mc4-color-contrast-lower-hsl),
    var(--mc4-bg-o, 1)
  );
}

.mc4-max-width-xs {
  max-width: 38rem;
}

.mc4-flex-shrink-0 {
  flex-shrink: 0;
}

:where(.mc4-inner-glow-top) {
  position: relative;
}

.mc4-inner-glow-top::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: var(inset 0 1px 0.5px hsla(0, 0%, 100%, 0.075));
}

.mc4-momentum-scrolling {
  -webkit-overflow-scrolling: touch;
}

.mc4-flex-grow {
  flex-grow: 1;
}

.mc4-flex-column {
  flex-direction: column;
}

.mc4-bg-opacity-90\% {
  --mc4-bg-o: 0.9;
}

.mc4-bg-opacity-50\% {
  --mc4-bg-o: 0.5;
}

@media (min-width: 64rem) {
  .mc4-hide\@md {
    display: none !important;
  }
}
/* -------------------------------- 
  
  File#: _1_skeleton
  Title: Skeleton Screen
  Descr: Content placeholder used to indicate that content is loading
  Usage: codyhouse.co/license
  
  -------------------------------- */
/* reset */
*,
*::after,
*::before {
  box-sizing: border-box;
}

* {
  font: inherit;
  margin: 0;
  padding: 0;
  border: 0;
}

body {
  background-color: hsl(0, 0%, 100%);
  font-family: system-ui, sans-serif;
  color: hsl(230, 7%, 23%);
  font-size: 1rem;
}

h1,
h2,
h3,
h4 {
  line-height: 1.2;
  color: hsl(230, 13%, 9%);
  font-weight: 700;
}

h1 {
  font-size: 2.0736rem;
}

h2 {
  font-size: 1.728rem;
}

h3 {
  font-size: 1.25rem;
}

h4 {
  font-size: 1.2rem;
}

ol,
ul,
menu {
  list-style: none;
}

button,
input,
textarea,
select {
  background-color: transparent;
  border-radius: 0;
  color: inherit;
  line-height: inherit;
  appearance: none;
}

textarea {
  resize: vertical;
  overflow: auto;
  vertical-align: top;
}

a {
  color: hsl(250, 84%, 54%);
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img,
video,
svg {
  display: block;
  max-width: 100%;
}

@media (min-width: 64rem) {
  body {
    font-size: 1.25rem;
  }

  h1 {
    font-size: 3.051rem;
  }

  h2 {
    font-size: 2.44rem;
  }

  h3 {
    font-size: 1.75rem;
  }

  h4 {
    font-size: 1.5625rem;
  }
}

/* variables */
:root {
  /* colors */
  --sw2-color-primary-hsl: 250, 84%, 54%;
  --sw2-color-bg-hsl: 0, 0%, 100%;
  --sw2-color-contrast-high-hsl: 230, 7%, 23%;
  --sw2-color-contrast-higher-hsl: 230, 13%, 9%;
  --sw2-color-contrast-lower-hsl: 240, 4%, 85%;

  /* spacing */
  --sw2-space-2xs: 0.375rem;
  --sw2-space-xs: 0.5rem;
  --sw2-space-sm: 0.75rem;
  --sw2-space-md: 1.25rem;
  --sw2-space-lg: 2rem;

  /* typography */
  --sw2-text-sm: 0.833rem;
  --sw2-text-xs: 0.694rem;
}

@media (min-width: 64rem) {
  :root {
    /* spacing */
    --sw2-space-2xs: 0.5625rem;
    --sw2-space-xs: 0.75rem;
    --sw2-space-sm: 1.125rem;
    --sw2-space-md: 2rem;
    --sw2-space-lg: 3.125rem;

    /* typography */
    --sw2-text-sm: 1rem;
    --sw2-text-xs: 0.8rem;
  }
}

/* component */
:root {
  --ske-animation-duration: 1s;
  --ske-radius: 0.25em;
}

.ske {
  position: relative;
  background-color: hsla(var(--sw2-color-contrast-higher-hsl), 0.1);
  overflow: hidden;
}
.ske::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    hsla(var(--sw2-color-contrast-higher-hsl), 0),
    hsla(var(--sw2-color-contrast-higher-hsl), 0.1),
    hsla(var(--sw2-color-contrast-higher-hsl), 0)
  );
  background-repeat: no-repeat;
  background-size: 500px 100%;
  background-position: -500px 0;
  will-change: background-position;
  -webkit-animation: ske-background var(--ske-animation-duration) infinite;
  animation: ske-background var(--ske-animation-duration) infinite;
}

@-webkit-keyframes ske-background {
  from {
    background-position: -500px 0;
  }
  to {
    background-position: calc(100% + 500px) 0;
  }
}

@keyframes ske-background {
  from {
    background-position: -500px 0;
  }
  to {
    background-position: calc(100% + 500px) 0;
  }
}
.ske--circle {
  height: 0;
  padding-bottom: 100%;
  border-radius: 50%;
  -webkit-clip-path: circle(50% at 50% 50%);
  clip-path: circle(50% at 50% 50%);
}

.ske--rect,
[class*="ske--rect-"],
.ske--square {
  border-radius: var(--ske-radius);
  -webkit-clip-path: inset(0% 0% 0% 0% round var(--ske-radius));
  clip-path: inset(0% 0% 0% 0% round var(--ske-radius));
}

[class*="ske--rect-"],
.ske--square {
  height: 0;
  padding-bottom: calc(100% / (var(--ske-aspect-ratio)));
}

.ske--rect-16\:9 {
  --ske-aspect-ratio: 16/9;
}

.ske--rect-4\:3 {
  --ske-aspect-ratio: 4/3;
}

.ske--square,
.ske--rect-1\:1 {
  --ske-aspect-ratio: 1/1;
}

.ske--text {
  height: 1em;
  border-radius: var(--ske-radius);
  -webkit-clip-path: inset(0% 0% 0% 0% round var(--ske-radius));
  clip-path: inset(0% 0% 0% 0% round var(--ske-radius));
}

/* utility classes */
.sw2-gap-2xs {
  gap: var(--sw2-space-2xs);
}

.sw2-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
}

.sw2-grid > * {
  min-width: 0;
  grid-column-end: span 12;
}

.sw2-margin-bottom-sm {
  margin-bottom: var(--sw2-space-sm);
}

.sw2-gap-y-lg {
  row-gap: var(--sw2-space-lg);
}

.sw2-text-xs {
  font-size: var(--sw2-text-xs);
}

.sw2-col-start-2 {
  grid-column-start: 3;
}

.sw2-col-start-4 {
  grid-column-start: 5;
}

.sw2-gap-sm {
  gap: var(--sw2-space-sm);
}

.sw2-col-start-6 {
  grid-column-start: 7;
}

.sw2-justify-end {
  justify-content: flex-end;
}

.sw2-sr-only {
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  width: 1px;
  height: 1px;
  overflow: hidden;
  padding: 0;
  border: 0;
  white-space: nowrap;
}

.sw2-padding-y-xs {
  padding-top: var(--sw2-space-xs);
  padding-bottom: var(--sw2-space-xs);
}

.sw2-items-center {
  align-items: center;
}

.sw2-gap-xs {
  gap: var(--sw2-space-xs);
}

.sw2-border-bottom {
  --sw2-border-o: 1;
  border-bottom: var(--sw2-border-width, 1px) var(--sw2-border-style, solid)
    hsla(var(--sw2-color-contrast-lower-hsl), var(--sw2-border-o, 1));
}

.sw2-clearfix::after {
  content: "";
  display: table;
  clear: both;
}

.sw2-padding-x-sm {
  padding-left: var(--sw2-space-sm);
  padding-right: var(--sw2-space-sm);
}

.sw2-shadow-xs {
  box-shadow: 0 0.1px 0.3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.12);
}

.sw2-radius-md {
  border-radius: 0.25em;
}

.sw2-bg {
  --sw2-bg-o: 1;
  background-color: hsla(var(--sw2-color-bg-hsl), var(--sw2-bg-o, 1));
}

.sw2-text-sm {
  font-size: var(--sw2-text-sm);
}

.sw2-gap-md {
  gap: var(--sw2-space-md);
}

.sw2-padding-md {
  padding: var(--sw2-space-md);
}

.sw2-col-2 {
  grid-column-end: span 2;
}

.sw2-col-10 {
  grid-column-end: span 10;
}

.sw2-col-8 {
  grid-column-end: span 8;
}

.sw2-col-11 {
  grid-column-end: span 11;
}

.sw2-col-6 {
  grid-column-end: span 6;
}

.sw2-col-4 {
  grid-column-end: span 4;
}

@media (min-width: 48rem) {
  .sw2-gap-xs\@sm {
    gap: var(--sw2-space-xs);
  }

  .sw2-col-3\@sm {
    grid-column-end: span 3;
  }

  .sw2-col-6\@sm {
    grid-column-end: span 6;
  }
}

@media (min-width: 64rem) {
  .sw2-col-2\@md {
    grid-column-end: span 2;
  }

  .sw2-col-3\@md {
    grid-column-end: span 3;
  }
}

/* -------------------------------- 

File#: _1_password
Title: Password Visibility Control
Descr: Password input field with option to toggle password visibility
Usage: codyhouse.co/license

-------------------------------- */
/* reset */
*,
*::after,
*::before {
  box-sizing: border-box;
}

* {
  font: inherit;
  margin: 0;
  padding: 0;
  border: 0;
}

body {
  background-color: hsl(0, 0%, 100%);
  font-family: system-ui, sans-serif;
  color: hsl(230, 7%, 23%);
  font-size: 1rem;
}

h1,
h2,
h3,
h4 {
  line-height: 1.2;
  color: hsl(230, 13%, 9%);
  font-weight: 700;
}

h1 {
  font-size: 2.0736rem;
}

h2 {
  font-size: 1.728rem;
}

h3 {
  font-size: 1.25rem;
}

h4 {
  font-size: 1.2rem;
}

ol,
ul,
menu {
  list-style: none;
}

button,
input,
textarea,
select {
  background-color: transparent;
  border-radius: 0;
  color: inherit;
  line-height: inherit;
  appearance: none;
}

textarea {
  resize: vertical;
  overflow: auto;
  vertical-align: top;
}

a {
  color: hsl(250, 84%, 54%);
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img,
video,
svg {
  display: block;
  max-width: 100%;
}

@media (min-width: 64rem) {
  body {
    font-size: 1.25rem;
  }

  h1 {
    font-size: 3.051rem;
  }

  h2 {
    font-size: 2.44rem;
  }

  h3 {
    font-size: 1.75rem;
  }

  h4 {
    font-size: 1.5625rem;
  }
}

/* variables */
:root {
  /* colors */
  --po6-color-primary-hsl: 250, 84%, 54%;
  --po6-color-bg-hsl: 0, 0%, 100%;
  --po6-color-contrast-high-hsl: 230, 7%, 23%;
  --po6-color-contrast-higher-hsl: 230, 13%, 9%;
  --po6-color-bg-dark-hsl: 240, 4%, 95%;
  --po6-color-contrast-lower-hsl: 240, 4%, 85%;
  --po6-color-contrast-low-hsl: 240, 4%, 65%;

  /* spacing */
  --po6-space-2xs: 0.375rem;
  --po6-space-sm: 0.75rem;
  --po6-space-xs: 0.5rem;

  /* typography */
  --po6-text-sm: 0.833rem;
}

@media (min-width: 64rem) {
  :root {
    /* spacing */
    --po6-space-2xs: 0.5625rem;
    --po6-space-sm: 1.125rem;
    --po6-space-xs: 0.75rem;

    /* typography */
    --po6-text-sm: 1rem;
  }
}

/* form elements */
.po6-form-control {
  font-size: 1em;
  padding: var(--po6-space-2xs) var(--po6-space-xs);
  background: hsl(var(--po6-color-bg-dark-hsl));
  line-height: 1.2;
  box-shadow: inset 0px 0px 0px 1px hsl(var(--po6-color-contrast-lower-hsl));
  transition: all 0.2s ease;
  border-radius: 0.25em;
}

.po6-form-control::placeholder {
  opacity: 1;
  color: hsl(var(--po6-color-contrast-low-hsl));
}

.po6-form-control:focus,
.po6-form-control:focus-within {
  background: hsl(var(--po6-color-bg-hsl));
  box-shadow: inset 0px 0px 0px 1px hsla(var(--po6-color-contrast-lower-hsl), 0),
    0px 0px 0px 2px hsl(var(--po6-color-primary-hsl)),
    0 0.3px 0.4px rgba(0, 0, 0, 0.025), 0 0.9px 1.5px rgba(0, 0, 0, 0.05),
    0 3.5px 6px rgba(0, 0, 0, 0.1);
  outline: none;
}

.po6-form-label {
  display: inline-block;
  font-size: var(--po6-text-sm);
}

/* icons */
.po6-icon {
  height: var(--po6-size, 1em);
  width: var(--po6-size, 1em);
  display: inline-block;
  color: inherit;
  fill: currentColor;
  line-height: 1;
  flex-shrink: 0;
  max-width: initial;
}

/* component */
:root {
  --password-btn-width: 3.5em;
  --password-icon-size: 1.5em;
}

.password {
  position: relative;
}

.password__input {
  height: 100%;
}

.password__btn {
  background-color: transparent;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: inherit;
  line-height: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  height: 100%;
  width: var(--password-btn-width);
  background-color: rgba(255, 255, 255, 0);
  justify-content: center;
  align-items: center;
  display: none;
}
.password__btn:focus {
  color: hsl(var(--po6-color-primary-hsl));
}

.password__btn-label:last-child {
  display: none;
}
.password__btn-label svg {
  width: var(--password-icon-size);
  height: var(--password-icon-size);
}

.password--text-is-visible .password__btn-label:first-child {
  display: none;
}
.password--text-is-visible .password__btn-label:last-child {
  display: inline-block;
}

.password__input {
  padding-right: calc(var(--po6-space-sm) + var(--password-btn-width));
}

.password__input::-ms-reveal {
  display: none;
}

.password__btn {
  display: flex;
}

/* utility classes */
.po6-text-sm {
  font-size: var(--po6-text-sm);
}

.po6-flex-center {
  justify-content: center;
  align-items: center;
}

.po6-flex {
  display: flex;
}

.po6-width-100\% {
  width: 100%;
}

.po6-margin-bottom-2xs {
  margin-bottom: var(--po6-space-2xs);
}

.po6-block {
  display: block;
}
/* -------------------------------- 
  
  File#: _1_file-upload
  Title: File Upload
  Descr: Custom file input element used to select and upload a file
  Usage: codyhouse.co/license
  
  -------------------------------- */
/* reset */
*,
*::after,
*::before {
  box-sizing: border-box;
}

* {
  font: inherit;
  margin: 0;
  padding: 0;
  border: 0;
}

body {
  /* -------------------------------- 

File#: _2_weekly-schedule
Title: Weekly Schedule
Descr: A table displaying the events of the week
Usage: codyhouse.co/license

-------------------------------- */
  /* reset */
  *,
  *::after,
  *::before {
    box-sizing: border-box;
  }

  * {
    font: inherit;
    margin: 0;
    padding: 0;
    border: 0;
  }

  body {
    background-color: hsl(0, 0%, 100%);
    font-family: system-ui, sans-serif;
    color: hsl(230, 7%, 23%);
    font-size: 1rem;
  }

  h1,
  h2,
  h3,
  h4 {
    line-height: 1.2;
    color: hsl(230, 13%, 9%);
    font-weight: 700;
  }

  h1 {
    font-size: 2.0736rem;
  }

  h2 {
    font-size: 1.728rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  h4 {
    font-size: 1.2rem;
  }

  ol,
  ul,
  menu {
    list-style: none;
  }

  button,
  input,
  textarea,
  select {
    background-color: transparent;
    border-radius: 0;
    color: inherit;
    line-height: inherit;
    appearance: none;
  }

  textarea {
    resize: vertical;
    overflow: auto;
    vertical-align: top;
  }

  a {
    color: hsl(250, 84%, 54%);
  }

  table {
    border-collapse: collapse;
    border-spacing: 0;
  }

  img,
  video,
  svg {
    display: block;
    max-width: 100%;
  }

  @media (min-width: 64rem) {
    body {
      font-size: 1.25rem;
    }

    h1 {
      font-size: 3.051rem;
    }

    h2 {
      font-size: 2.44rem;
    }

    h3 {
      font-size: 1.75rem;
    }

    h4 {
      font-size: 1.5625rem;
    }
  }

  /* variables */
  :root {
    /* colors */
    --wf6-color-primary-hsl: 250, 84%, 54%;
    --wf6-color-bg-hsl: 0, 0%, 100%;
    --wf6-color-contrast-high-hsl: 230, 7%, 23%;
    --wf6-color-contrast-higher-hsl: 230, 13%, 9%;
    --wf6-color-contrast-lower-hsl: 240, 4%, 85%;
    --wf6-color-contrast-low-hsl: 240, 4%, 65%;
    --wf6-color-black-hsl: 230, 13%, 9%;
    --wf6-color-white-hsl: 0, 0%, 100%;

    /* spacing */
    --wf6-space-2xs: 0.375rem;
    --wf6-space-xs: 0.5rem;
    --wf6-space-sm: 0.75rem;
    --wf6-space-md: 1.25rem;

    /* typography */
    --wf6-text-xl: 1.728rem;
    --wf6-text-lg: 1.25rem;
    --wf6-text-md: 1.2rem;
    --wf6-text-base: 1rem;
    --wf6-text-sm: 0.833rem;
    --wf6-text-xs: 0.694rem;
  }

  @media (min-width: 64rem) {
    :root {
      /* spacing */
      --wf6-space-2xs: 0.5625rem;
      --wf6-space-xs: 0.75rem;
      --wf6-space-sm: 1.125rem;
      --wf6-space-md: 2rem;

      /* typography */
      --wf6-text-xl: 2.44rem;
      --wf6-text-lg: 1.75rem;
      --wf6-text-md: 1.5625rem;
      --wf6-text-base: 1.25rem;
      --wf6-text-sm: 1rem;
      --wf6-text-xs: 0.8rem;
    }
  }

  /* icons */
  .wf6-icon {
    height: var(--wf6-size, 1em);
    width: var(--wf6-size, 1em);
    display: inline-block;
    color: inherit;
    fill: currentColor;
    line-height: 1;
    flex-shrink: 0;
    max-width: initial;
  }

  .wf6-icon--sm {
    --wf6-size: 24px;
  }

  /* component */
  :root {
    --w-schedule-row-height: 50px;
    --w-schedule-row-nr: 0;
    --w-schedule-modal-anim-duration: 0.3s;
    --w-schedule-modal-close-btn-size: 48px;
    --w-schedule-color-1: hsl(27, 87%, 70%);
    --w-schedule-color-1-h: 27;
    --w-schedule-color-1-s: 87%;
    --w-schedule-color-1-l: 70%;
    --w-schedule-color-2: hsl(187, 13%, 28%);
    --w-schedule-color-2-h: 187;
    --w-schedule-color-2-s: 13%;
    --w-schedule-color-2-l: 28%;
    --w-schedule-color-3: hsl(304, 100%, 89%);
    --w-schedule-color-3-h: 304;
    --w-schedule-color-3-s: 100%;
    --w-schedule-color-3-l: 89%;
    --w-schedule-color-4: hsl(96, 67%, 87%);
    --w-schedule-color-4-h: 96;
    --w-schedule-color-4-s: 67%;
    --w-schedule-color-4-l: 87%;
  }

  .w-schedule {
    position: relative;
    z-index: 1;
  }

  /* #region (Mobile Navigation) */
  .w-schedule__controls {
    display: flex;
    align-items: center;
  }

  .w-schedule__control-wrapper {
    flex-grow: 1;
    flex-basis: 0;
  }
  .w-schedule__control-wrapper:not(:last-child) {
    margin-right: var(--wf6-space-2xs);
  }

  .w-schedule__control {
    display: block;
    width: 100%;
    background-color: hsl(var(--wf6-color-contrast-lower-hsl));
    padding: 2vw 0;
    border-radius: 0.25em;
    color: inherit;
    text-decoration: none;
    text-align: center;
    transition: 0.2s;
  }
  .w-schedule__control:hover {
    background-color: hsl(var(--wf6-color-contrast-low-hsl));
  }
  .w-schedule__control:focus {
    outline: none;
    box-shadow: 0 0 0 2px hsla(var(--wf6-color-primary-hsl), 0.2);
  }
  .w-schedule__control[aria-selected="true"] {
    background-color: hsl(var(--wf6-color-contrast-higher-hsl));
    color: hsl(var(--wf6-color-bg-hsl));
  }

  /* #endregion */
  /* #region (Events) */
  .w-schedule__days {
    position: relative;
    z-index: 2;
  }

  .w-schedule__day {
    position: relative;
    padding-top: var(--wf6-space-md);
  }

  .w-schedule__col-label {
    display: none;
  }

  .w-schedule__events {
    position: relative;
  }

  .w-schedule__event-wrapper:not(:last-child) {
    margin-bottom: var(--wf6-space-xs);
  }

  .w-schedule__event {
    color: inherit;
    text-decoration: none;
    display: block;
    padding: var(--wf6-space-md);
    border-radius: 0.25em;
    background-color: var(--w-schedule-color-1);
    border-left-width: 4px;
    border-left-style: solid;
    box-shadow: 0 0.3px 0.4px rgba(0, 0, 0, 0.025),
      0 0.9px 1.5px rgba(0, 0, 0, 0.05), 0 3.5px 6px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
  }
  .w-schedule__event:hover {
    box-shadow: 0 0.9px 1.5px rgba(0, 0, 0, 0.03),
      0 3.1px 5.5px rgba(0, 0, 0, 0.08), 0 14px 25px rgba(0, 0, 0, 0.12);
  }

  .w-schedule__event--1 {
    background-color: var(--w-schedule-color-1);
    border-color: hsl(
      var(--w-schedule-color-1-h),
      var(--w-schedule-color-1-s),
      calc(var(--w-schedule-color-1-l) * 0.8)
    );
    color: hsl(var(--wf6-color-black-hsl));
  }

  .w-schedule__event--2 {
    background-color: var(--w-schedule-color-2);
    border-color: hsl(
      var(--w-schedule-color-2-h),
      var(--w-schedule-color-2-s),
      calc(var(--w-schedule-color-2-l) * 0.8)
    );
    color: hsl(var(--wf6-color-white-hsl));
  }

  .w-schedule__event--3 {
    background-color: var(--w-schedule-color-3);
    border-color: hsl(
      var(--w-schedule-color-3-h),
      var(--w-schedule-color-3-s),
      calc(var(--w-schedule-color-3-l) * 0.8)
    );
    color: hsl(var(--wf6-color-black-hsl));
  }

  .w-schedule__event--4 {
    background-color: var(--w-schedule-color-4);
    border-color: hsl(
      var(--w-schedule-color-4-h),
      var(--w-schedule-color-4-s),
      calc(var(--w-schedule-color-4-l) * 0.8)
    );
    color: hsl(var(--wf6-color-black-hsl));
  }

  /* #endregion */
  /* #region (Background Rows) */
  .w-schedule__grid {
    display: none;
  }

  .w-schedule__grid-row-label {
    display: none;
  }

  /* #endregion */
  /* #region (Modal Window) */
  .w-schedule-modal {
    --modal-transition-duration: var(--w-schedule-modal-anim-duration);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: var(--wf6-space-sm);
    padding-top: calc(
      var(--wf6-space-sm) * 2 + var(--w-schedule-modal-close-btn-size)
    );
  }

  .w-schedule-modal__content {
    height: 100%;
    width: 100%;
    overflow: auto;
  }

  .w-schedule-modal__content--loaded > * {
    -webkit-animation: w-schedule-body-entry-anim 0.4s;
    animation: w-schedule-body-entry-anim 0.4s;
  }

  @-webkit-keyframes w-schedule-body-entry-anim {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }

  @keyframes w-schedule-body-entry-anim {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  .w-schedule-morph-bg {
    position: fixed;
    z-index: 15;
    -webkit-transform-origin: left top;
    transform-origin: left top;
  }

  .w-schedule-close-btn {
    position: fixed;
    top: var(--wf6-space-sm);
    right: var(--wf6-space-sm);
    z-index: 15;
    width: var(--w-schedule-modal-close-btn-size);
    height: var(--w-schedule-modal-close-btn-size);
    border-radius: 50%;
    background-color: hsla(var(--wf6-color-black-hsl), 0.9);
    display: flex;
    opacity: 0;
    visibility: hidden;
    transition: background 0.2s, opacity var(--w-schedule-modal-anim-duration),
      visibility 0s var(--w-schedule-modal-anim-duration);
  }
  .w-schedule-close-btn:hover {
    background-color: hsla(var(--wf6-color-black-hsl), 1);
  }
  .w-schedule-close-btn .wf6-icon {
    color: hsl(var(--wf6-color-white-hsl));
    display: block;
    margin: auto;
  }

  .w-schedule-close-btn--is-visible {
    opacity: 1;
    visibility: visible;
    transition: background 0.2s, opacity var(--w-schedule-modal-anim-duration);
  }

  .w-schedule-modal__figure {
    display: block;
  }
  .w-schedule-modal__figure img {
    display: block;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }

  /* #endregion */
  @media (min-width: 64rem) {
    /* #region (Mobile Navigation) */
    .w-schedule__controls {
      display: none;
    }

    /* #endregion */
    /* #region (Events) */
    .w-schedule__days {
      display: flex;
      height: calc(var(--w-schedule-row-nr) * var(--w-schedule-row-height));
    }

    .w-schedule__day {
      display: block !important;
      flex-grow: 1;
      flex-basis: 0;
      padding-top: 0;
      border: 0px solid hsla(var(--wf6-color-contrast-higher-hsl), 0.1);
      border-left-width: 1px;
    }
    .w-schedule__day:last-child {
      border-right-width: 1px;
    }

    .w-schedule__col-label {
      display: flex;
      height: var(--w-schedule-row-height);
      justify-content: center;
      align-items: center;
      border-bottom: 1px solid hsla(var(--wf6-color-contrast-higher-hsl), 0.1);
    }

    .w-schedule__event-wrapper {
      margin-bottom: 0 !important;
    }

    .w-schedule__event {
      height: var(--w-schedule-event-height, auto);
      padding: var(--wf6-space-xs);
      position: absolute;
      left: 0;
      top: var(--w-schedule-event-top, initial);
      width: 100%;
    }

    /* #endregion */
    /* #region (Background Rows) */
    .w-schedule__grid {
      display: block;
      position: absolute;
      z-index: 1;
      top: var(--w-schedule-row-height);
      left: 0;
      width: 100%;
    }

    .w-schedule__grid-row {
      position: relative;
      height: var(--w-schedule-row-height);
    }
    .w-schedule__grid-row:not(:last-child)::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 1px;
      background-color: hsla(var(--wf6-color-contrast-higher-hsl), 0.1);
    }

    /* #endregion */
    /* #region (Modal Window) */
    .w-schedule-modal {
      padding-top: calc(
        var(--wf6-space-xs) * 2 + var(--w-schedule-modal-close-btn-size)
      );
      padding-bottom: calc(
        var(--wf6-space-xs) * 2 + var(--w-schedule-modal-close-btn-size)
      );
    }

    .w-schedule-modal__content {
      max-width: 64rem;
      max-height: 680px;
      overflow: hidden;
    }

    .w-schedule-modal__body {
      overflow: auto;
      -webkit-overflow-scrolling: touch;
    }

    /* #endregion */
  }
  @media (min-width: 80rem) {
    /* #region (Events) */
    .w-schedule__days {
      margin-left: 60px;
    }

    /* #endregion */
    /* #region (Background Rows) */
    .w-schedule__grid-row:not(:last-child)::after {
      left: 60px;
      width: calc(100% - 60px);
    }

    .w-schedule__grid-row-label {
      display: inline-block;
      line-height: 1;
      position: absolute;
      -webkit-transform: translateY(-50%);
      transform: translateY(-50%);
      top: 0;
      left: 0;
      font-size: var(--wf6-text-sm);
    }

    /* #endregion */
  }

  /* utility classes */
  .wf6-hide {
    display: none !important;
  }

  .wf6-radius-md {
    border-radius: 0.25em;
  }

  .wf6-bg {
    --wf6-bg-o: 1;
    background-color: hsla(var(--wf6-color-bg-hsl), var(--wf6-bg-o, 1));
  }

  .wf6-text-xl {
    font-size: var(--wf6-text-xl);
  }

  .wf6-padding-bottom-sm {
    padding-bottom: var(--wf6-space-sm);
  }

  .wf6-gap-xs {
    gap: var(--wf6-space-xs);
  }

  .wf6-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
  }

  .wf6-grid > * {
    min-width: 0;
    grid-column-end: span 12;
  }

  .wf6-padding-md {
    padding: var(--wf6-space-md);
  }

  .wf6-height-25\% {
    height: 25%;
  }

  .wf6-opacity-0 {
    opacity: 0;
  }

  .wf6-shadow-md {
    box-shadow: 0 0.9px 1.5px rgba(0, 0, 0, 0.03),
      0 3.1px 5.5px rgba(0, 0, 0, 0.08), 0 14px 25px rgba(0, 0, 0, 0.12);
  }

  :where(.wf6-inner-glow) {
    position: relative;
  }

  .wf6-inner-glow::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    pointer-events: none;
    box-shadow: inset 0 0 0.5px 1px hsla(0, 0%, 100%, 0.075);
  }

  .wf6-bg-black {
    --wf6-bg-o: 1;
    background-color: hsla(var(--wf6-color-black-hsl), var(--wf6-bg-o, 1));
  }

  .wf6-text-center {
    text-align: center;
  }

  .wf6-text-sm {
    font-size: var(--wf6-text-sm);
  }

  .wf6-font-medium {
    font-weight: 500;
  }

  .wf6-text-md {
    font-size: var(--wf6-text-md);
  }

  .wf6-opacity-60\% {
    opacity: 0.6;
  }

  .wf6-line-height-1 {
    line-height: 1 !important;
  }

  .wf6-text-lg {
    font-size: var(--wf6-text-lg);
  }

  .wf6-margin-bottom-2xs {
    margin-bottom: var(--wf6-space-2xs);
  }

  .wf6-letter-spacing-md {
    letter-spacing: 0.05em;
  }

  .wf6-text-uppercase {
    text-transform: uppercase;
  }

  .wf6-opacity-50\% {
    opacity: 0.5;
  }

  .wf6-text-xs {
    font-size: var(--wf6-text-xs);
  }

  .wf6-col-3 {
    grid-column-end: span 3;
  }

  .wf6-col-6 {
    grid-column-end: span 6;
  }

  .wf6-bg-opacity-90\% {
    --wf6-bg-o: 0.9;
  }

  @media (min-width: 64rem) {
    .wf6-height-100\%\@md {
      height: 100%;
    }

    .wf6-width-70\%\@md {
      width: 70%;
    }

    .wf6-width-30\%\@md {
      width: 30%;
    }

    .wf6-flex\@md {
      display: flex;
    }

    .wf6-hide\@md {
      display: none !important;
    }

    .wf6-text-base\@md {
      font-size: var(--wf6-text-base);
    }

    .wf6-text-xs\@md {
      font-size: var(--wf6-text-xs);
    }
  }
  background-color: hsl(0, 0%, 100%);
  font-family: system-ui, sans-serif;
  color: hsl(230, 7%, 23%);
  font-size: 1rem;
}

h1,
h2,
h3,
h4 {
  line-height: 1.2;
  color: hsl(230, 13%, 9%);
  font-weight: 700;
}

h1 {
  font-size: 2.0736rem;
}

h2 {
  font-size: 1.728rem;
}

h3 {
  font-size: 1.25rem;
}

h4 {
  font-size: 1.2rem;
}

ol,
ul,
menu {
  list-style: none;
}

button,
input,
textarea,
select {
  background-color: transparent;
  border-radius: 0;
  color: inherit;
  line-height: inherit;
  appearance: none;
}

textarea {
  resize: vertical;
  overflow: auto;
  vertical-align: top;
}

a {
  color: hsl(250, 84%, 54%);
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img,
video,
svg {
  display: block;
  max-width: 100%;
}

@media (min-width: 64rem) {
  body {
    font-size: 1.25rem;
  }

  h1 {
    font-size: 3.051rem;
  }

  h2 {
    font-size: 2.44rem;
  }

  h3 {
    font-size: 1.75rem;
  }

  h4 {
    font-size: 1.5625rem;
  }
}

/* variables */
:root {
  /* colors */
  --fm2-color-primary-hsl: 250, 84%, 54%;
  --fm2-color-bg-hsl: 0, 0%, 100%;
  --fm2-color-contrast-high-hsl: 230, 7%, 23%;
  --fm2-color-contrast-higher-hsl: 230, 13%, 9%;
  --fm2-color-bg-dark-hsl: 240, 4%, 95%;
  --fm2-color-white-hsl: 0, 0%, 100%;
  --fm2-color-primary-darker-hsl: 250, 84%, 38%;
  --fm2-color-primary-light-hsl: 250, 84%, 60%;
  --fm2-color-bg-lighter-hsl: 0, 0%, 100%;
  --fm2-color-black-hsl: 230, 13%, 9%;
  --fm2-color-bg-light-hsl: 0, 0%, 100%;

  /* spacing */
  --fm2-space-2xs: 0.375rem;
  --fm2-space-sm: 0.75rem;
}

@media (min-width: 64rem) {
  :root {
    /* spacing */
    --fm2-space-2xs: 0.5625rem;
    --fm2-space-sm: 1.125rem;
  }
}

/* buttons */
.fm2-btn {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 1em;
  white-space: nowrap;
  text-decoration: none;
  background: hsl(var(--fm2-color-bg-dark-hsl));
  color: hsl(var(--fm2-color-contrast-higher-hsl));
  cursor: pointer;
  text-decoration: none;
  line-height: 1.2;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: all 0.2s ease;
  will-change: transform;
  padding: var(--fm2-space-2xs) var(--fm2-space-sm);
  border-radius: 0.25em;
}

.fm2-btn:focus-visible {
  box-shadow: 0px 0px 0px 2px hsl(var(--fm2-color-bg-hsl)),
    0px 0px 0px 4px hsla(var(--fm2-color-contrast-higher-hsl), 0.15);
  outline: none;
}

.fm2-btn:active {
  transform: translateY(2px);
}

.fm2-btn--primary {
  background: hsl(var(--fm2-color-primary-hsl));
  color: hsl(var(--fm2-color-white-hsl));
  box-shadow: inset 0px 1px 0px hsla(var(--fm2-color-white-hsl), 0.15),
    0px 1px 3px hsla(var(--fm2-color-primary-darker-hsl), 0.25),
    0px 2px 6px hsla(var(--fm2-color-primary-darker-hsl), 0.1),
    0px 6px 10px -2px hsla(var(--fm2-color-primary-darker-hsl), 0.25);
}

.fm2-btn--primary:hover {
  background: hsl(var(--fm2-color-primary-light-hsl));
  box-shadow: inset 0px 1px 0px hsla(var(--fm2-color-white-hsl), 0.15),
    0px 1px 2px hsla(var(--fm2-color-primary-darker-hsl), 0.25),
    0px 1px 4px hsla(var(--fm2-color-primary-darker-hsl), 0.1),
    0px 3px 6px -2px hsla(var(--fm2-color-primary-darker-hsl), 0.25);
}

.fm2-btn--primary:focus {
  box-shadow: inset 0px 1px 0px hsla(var(--fm2-color-white-hsl), 0.15),
    0px 1px 2px hsla(var(--fm2-color-primary-darker-hsl), 0.25),
    0px 1px 4px hsla(var(--fm2-color-primary-darker-hsl), 0.1),
    0px 3px 6px -2px hsla(var(--fm2-color-primary-darker-hsl), 0.25),
    0px 0px 0px 2px hsl(var(--fm2-color-bg-hsl)),
    0px 0px 0px 4px hsl(var(--fm2-color-primary-hsl));
}

.fm2-btn--subtle {
  background: hsl(var(--fm2-color-bg-lighter-hsl));
  color: hsl(var(--fm2-color-contrast-higher-hsl));
  box-shadow: inset 0px 1px 0px hsla(var(--fm2-color-white-hsl), 0.1),
    0px 0px 0px 1px hsla(var(--fm2-color-black-hsl), 0.02),
    0px 1px 3px -1px hsla(var(--fm2-color-black-hsl), 0.2),
    0 0.3px 0.4px rgba(0, 0, 0, 0.025), 0 0.9px 1.5px rgba(0, 0, 0, 0.05),
    0 3.5px 6px rgba(0, 0, 0, 0.1);
}

.fm2-btn--subtle:hover {
  background: hsl(var(--fm2-color-bg-light-hsl));
  box-shadow: inset 0px 1px 0px hsla(var(--fm2-color-white-hsl), 0.1),
    0px 0px 0px 1px hsla(var(--fm2-color-black-hsl), 0.02),
    0px 1px 3px -1px hsla(var(--fm2-color-black-hsl), 0.2),
    0 0.1px 0.3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.12);
}

.fm2-btn--subtle:focus {
  box-shadow: inset 0px 1px 0px hsla(var(--fm2-color-white-hsl), 0.1),
    0px 0px 0px 1px hsla(var(--fm2-color-black-hsl), 0.02),
    0px 1px 3px -1px hsla(var(--fm2-color-black-hsl), 0.2),
    0 0.1px 0.3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.12),
    0px 0px 0px 2px hsl(var(--fm2-color-bg-hsl)),
    0px 0px 0px 4px hsl(var(--fm2-color-contrast-high-hsl));
}

/* icons */
.fm2-icon {
  height: var(--fm2-size, 1em);
  width: var(--fm2-size, 1em);
  display: inline-block;
  color: inherit;
  fill: currentColor;
  line-height: 1;
  flex-shrink: 0;
  max-width: initial;
}

/* component */
.file-upload__input {
  /* visually hide input file element */
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  width: 1px;
  height: 1px;
}

.file-upload__text--has-max-width {
  /* set a max width to the label text */
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* utility classes */
.fm2-inline-block {
  display: inline-block;
}

.fm2-margin-left-2xs {
  margin-left: var(--fm2-space-2xs);
}

.fm2-items-center {
  align-items: center;
}

.fm2-flex {
  display: flex;
}
/* -------------------------------- 
  
  File#: _1_choice-images
  Title: Choice Images
  Descr: Selectable images that behave like radio/checkbox buttons
  Usage: codyhouse.co/license
  
  -------------------------------- */
/* reset */
*,
*::after,
*::before {
  box-sizing: border-box;
}

* {
  font: inherit;
  margin: 0;
  padding: 0;
  border: 0;
}

body {
  background-color: hsl(0, 0%, 100%);
  font-family: system-ui, sans-serif;
  color: hsl(230, 7%, 23%);
  font-size: 1rem;
}

h1,
h2,
h3,
h4 {
  line-height: 1.2;
  color: hsl(230, 13%, 9%);
  font-weight: 700;
}

h1 {
  font-size: 2.0736rem;
}

h2 {
  font-size: 1.728rem;
}

h3 {
  font-size: 1.25rem;
}

h4 {
  font-size: 1.2rem;
}

ol,
ul,
menu {
  list-style: none;
}

button,
input,
textarea,
select {
  background-color: transparent;
  border-radius: 0;
  color: inherit;
  line-height: inherit;
  appearance: none;
}

textarea {
  resize: vertical;
  overflow: auto;
  vertical-align: top;
}

a {
  color: hsl(250, 84%, 54%);
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img,
video,
svg {
  display: block;
  max-width: 100%;
}

@media (min-width: 64rem) {
  body {
    font-size: 1.25rem;
  }

  h1 {
    font-size: 3.051rem;
  }

  h2 {
    font-size: 2.44rem;
  }

  h3 {
    font-size: 1.75rem;
  }

  h4 {
    font-size: 1.5625rem;
  }
}

/* variables */
:root {
  /* colors */
  --cp5-color-primary-hsl: 250, 84%, 54%;
  --cp5-color-bg-hsl: 0, 0%, 100%;
  --cp5-color-contrast-high-hsl: 230, 7%, 23%;
  --cp5-color-contrast-higher-hsl: 230, 13%, 9%;
  --cp5-color-contrast-medium-hsl: 225, 4%, 47%;
  --cp5-color-bg-light-hsl: 0, 0%, 100%;
  --cp5-color-white-hsl: 0, 0%, 100%;
  --cp5-color-accent-hsl: 342, 89%, 48%;
  --cp5-color-contrast-lower-hsl: 240, 4%, 85%;

  /* spacing */
  --cp5-space-xs: 0.5rem;
  --cp5-space-sm: 0.75rem;
  --cp5-space-md: 1.25rem;

  /* typography */
  --cp5-text-base: 1rem;
  --cp5-text-sm: 0.833rem;
  --cp5-text-md: 1.2rem;
  --cp5-text-sm: 0.833rem;
}

@media (min-width: 64rem) {
  :root {
    /* spacing */
    --cp5-space-xs: 0.75rem;
    --cp5-space-sm: 1.125rem;
    --cp5-space-md: 2rem;

    /* typography */
    --cp5-text-base: 1.25rem;
    --cp5-text-sm: 1rem;
    --cp5-text-md: 1.5625rem;
    --cp5-text-sm: 1rem;
  }
}

/* form elements */
.cp5-form-legend {
  color: hsl(var(--cp5-color-contrast-higher-hsl));
  line-height: 1.2;
  font-size: var(--cp5-text-md);
  margin-bottom: var(--cp5-space-sm);
}

/* icons */
.cp5-icon {
  height: var(--cp5-size, 1em);
  width: var(--cp5-size, 1em);
  display: inline-block;
  color: inherit;
  fill: currentColor;
  line-height: 1;
  flex-shrink: 0;
  max-width: initial;
}

/* component */
:root {
  --choice-img-input-size: 100px;
  --choice-img-input-icon-size: 26px;
}

.choice-img {
  position: relative;
  overflow: hidden;
  box-shadow: 0 0.3px 0.4px rgba(0, 0, 0, 0.025),
    0 0.9px 1.5px rgba(0, 0, 0, 0.05), 0 3.5px 6px rgba(0, 0, 0, 0.1);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  transition: 0.3s;
}
.choice-img:hover {
  cursor: pointer;
  box-shadow: 0 0.9px 1.5px rgba(0, 0, 0, 0.03),
    0 3.1px 5.5px rgba(0, 0, 0, 0.08), 0 14px 25px rgba(0, 0, 0, 0.12);
}
.choice-img:active {
  -webkit-transform: translateY(2px);
  transform: translateY(2px);
}

.choice-img[aria-checked="true"] {
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  box-shadow: 0 0.3px 0.4px rgba(0, 0, 0, 0.025),
    0 0.9px 1.5px rgba(0, 0, 0, 0.05), 0 3.5px 6px rgba(0, 0, 0, 0.1),
    0 0 0 2px hsl(var(--cp5-color-primary-hsl));
}

.choice-img__input {
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transform: translate(1px, -1px);
  transform: translate(1px, -1px);
  background-color: hsl(var(--cp5-color-primary-hsl));
  width: var(--choice-img-input-size);
  height: var(--choice-img-input-size);
  -webkit-clip-path: polygon(15% 0%, 100% 0%, 100% 85%);
  clip-path: polygon(15% 0%, 100% 0%, 100% 85%);
  pointer-events: none;
  opacity: 0;
}
.choice-img__input .cp5-icon {
  position: absolute;
  top: calc(
    var(--choice-img-input-size) / 4 - var(--choice-img-input-icon-size) / 2
  );
  right: calc(
    var(--choice-img-input-size) / 4 - var(--choice-img-input-icon-size) / 2
  );
  font-size: var(--choice-img-input-icon-size);
  color: hsl(var(--cp5-color-white-hsl));
}
.choice-img__input .cp5-icon > * {
  transition: stroke-dashoffset 0.3s;
  stroke-dasharray: 18;
  stroke-dashoffset: 18;
}

.choice-img[aria-checked="true"] .choice-img__input {
  opacity: 1;
}
.choice-img[aria-checked="true"] .choice-img__input .cp5-icon > * {
  stroke-dashoffset: 0;
}

/* utility classes */
.cp5-color-contrast-medium {
  --cp5-color-o: 1;
  color: hsla(var(--cp5-color-contrast-medium-hsl), var(--cp5-color-o, 1));
}

.cp5-text-sm {
  font-size: var(--cp5-text-sm);
}

.cp5-text-base {
  font-size: var(--cp5-text-base);
}

.cp5-text-component :where(h1, h2, h3, h4) {
  line-height: var(--cp5-heading-line-height, 1.2);
  margin-top: calc(var(--cp5-space-md) * var(--cp5-space-multiplier, 1));
  margin-bottom: calc(var(--cp5-space-sm) * var(--cp5-space-multiplier, 1));
}

.cp5-text-component :where(p, blockquote, ul li, ol li) {
  line-height: var(--cp5-body-line-height, 1.4);
}

.cp5-text-component :where(ul, ol, p, blockquote, .cp5-text-component__block) {
  margin-bottom: calc(var(--cp5-space-sm) * var(--cp5-space-multiplier, 1));
}

.cp5-text-component :where(ul, ol) {
  padding-left: 1.25em;
}

.cp5-text-component ul :where(ul, ol),
.cp5-text-component ol :where(ul, ol) {
  padding-left: 1em;
  margin-bottom: 0;
}

.cp5-text-component ul {
  list-style-type: disc;
}

.cp5-text-component ol {
  list-style-type: decimal;
}

.cp5-text-component img {
  display: block;
  margin: 0 auto;
}

.cp5-text-component figcaption {
  margin-top: calc(var(--cp5-space-xs) * var(--cp5-space-multiplier, 1));
  font-size: var(--cp5-text-sm);
  text-align: center;
}

.cp5-text-component em {
  font-style: italic;
}

.cp5-text-component strong {
  font-weight: bold;
}

.cp5-text-component s {
  text-decoration: line-through;
}

.cp5-text-component u {
  text-decoration: underline;
}

.cp5-text-component mark {
  background-color: hsla(var(--cp5-color-accent-hsl), 0.2);
  color: inherit;
}

.cp5-text-component blockquote {
  padding-left: 1em;
  border-left: 4px solid hsl(var(--cp5-color-contrast-lower-hsl));
  font-style: italic;
}

.cp5-text-component hr {
  margin: calc(var(--cp5-space-md) * var(--cp5-space-multiplier, 1)) auto;
  background: hsl(var(--cp5-color-contrast-lower-hsl));
  height: 1px;
}

.cp5-text-component > *:first-child {
  margin-top: 0;
}

.cp5-text-component > *:last-child {
  margin-bottom: 0;
}

.cp5-text-component.cp5-line-height-xs {
  --cp5-heading-line-height: 1;
  --cp5-body-line-height: 1.1;
}

.cp5-text-component.cp5-line-height-sm {
  --cp5-heading-line-height: 1.1;
  --cp5-body-line-height: 1.2;
}

.cp5-text-component.cp5-line-height-md {
  --cp5-heading-line-height: 1.15;
  --cp5-body-line-height: 1.4;
}

.cp5-text-component.cp5-line-height-lg {
  --cp5-heading-line-height: 1.22;
  --cp5-body-line-height: 1.58;
}

.cp5-text-component.cp5-line-height-xl {
  --cp5-heading-line-height: 1.3;
  --cp5-body-line-height: 1.72;
}

.cp5-padding-sm {
  padding: var(--cp5-space-sm);
}

.cp5-width-100\% {
  width: 100%;
}

.cp5-block {
  display: block;
}

:where(.cp5-media-wrapper-4\:3) {
  position: relative;
  height: 0;
}

.cp5-media-wrapper-4\:3 {
  padding-bottom: 75%;
}

.cp5-media-wrapper-4\:3 > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.cp5-media-wrapper-4\:3 > *:not(iframe) {
  object-fit: cover;
}

.cp5-radius-md {
  border-radius: 0.25em;
}

.cp5-bg-light {
  --cp5-bg-o: 1;
  background-color: hsla(var(--cp5-color-bg-light-hsl), var(--cp5-bg-o, 1));
}

.cp5-gap-sm {
  gap: var(--cp5-space-sm);
}

.cp5-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
}

.cp5-grid > * {
  min-width: 0;
  grid-column-end: span 12;
}

.cp5-margin-bottom-xs {
  margin-bottom: var(--cp5-space-xs);
}

@media (min-width: 32rem) {
  .cp5-col-6\@xs {
    grid-column-end: span 6;
  }
}

@media (min-width: 48rem) {
  .cp5-col-4\@sm {
    grid-column-end: span 4;
  }
}

@media (min-width: 64rem) {
  .cp5-col-3\@md {
    grid-column-end: span 3;
  }
}
/* -------------------------------- 
  
  File#: _1_choice-buttons
  Title: Choice Buttons
  Descr: Visually enhanced radio/checkbox buttons
  Usage: codyhouse.co/license
  
  -------------------------------- */
/* reset */
*,
*::after,
*::before {
  box-sizing: border-box;
}

* {
  font: inherit;
  margin: 0;
  padding: 0;
  border: 0;
}

body {
  background-color: hsl(0, 0%, 100%);
  font-family: system-ui, sans-serif;
  color: hsl(230, 7%, 23%);
  font-size: 1rem;
}

h1,
h2,
h3,
h4 {
  line-height: 1.2;
  color: hsl(230, 13%, 9%);
  font-weight: 700;
}

h1 {
  font-size: 2.0736rem;
}

h2 {
  font-size: 1.728rem;
}

h3 {
  font-size: 1.25rem;
}

h4 {
  font-size: 1.2rem;
}

ol,
ul,
menu {
  list-style: none;
}

button,
input,
textarea,
select {
  background-color: transparent;
  border-radius: 0;
  color: inherit;
  line-height: inherit;
  appearance: none;
}

textarea {
  resize: vertical;
  overflow: auto;
  vertical-align: top;
}

a {
  color: hsl(250, 84%, 54%);
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img,
video,
svg {
  display: block;
  max-width: 100%;
}

@media (min-width: 64rem) {
  body {
    font-size: 1.25rem;
  }

  h1 {
    font-size: 3.051rem;
  }

  h2 {
    font-size: 2.44rem;
  }

  h3 {
    font-size: 1.75rem;
  }

  h4 {
    font-size: 1.5625rem;
  }
}

/* variables */
:root {
  /* colors */
  --cg7-color-primary-hsl: 250, 84%, 54%;
  --cg7-color-bg-hsl: 0, 0%, 100%;
  --cg7-color-contrast-high-hsl: 230, 7%, 23%;
  --cg7-color-contrast-higher-hsl: 230, 13%, 9%;
  --cg7-color-contrast-lower-hsl: 240, 4%, 85%;
  --cg7-color-contrast-low-hsl: 240, 4%, 65%;
  --cg7-color-contrast-medium-hsl: 225, 4%, 47%;
  --cg7-color-bg-light-hsl: 0, 0%, 100%;
  --cg7-color-white-hsl: 0, 0%, 100%;
  --cg7-color-bg-dark-hsl: 240, 4%, 95%;

  /* spacing */
  --cg7-space-2xs: 0.375rem;
  --cg7-space-xs: 0.5rem;
  --cg7-space-sm: 0.75rem;

  /* typography */
  --cg7-text-sm: 0.833rem;
  --cg7-text-md: 1.2rem;
}

@media (min-width: 64rem) {
  :root {
    /* spacing */
    --cg7-space-2xs: 0.5625rem;
    --cg7-space-xs: 0.75rem;
    --cg7-space-sm: 1.125rem;

    /* typography */
    --cg7-text-sm: 1rem;
    --cg7-text-md: 1.5625rem;
  }
}

/* form elements */
.cg7-form-control {
  font-size: 1em;
  padding: var(--cg7-space-2xs) var(--cg7-space-xs);
  background: hsl(var(--cg7-color-bg-dark-hsl));
  line-height: 1.2;
  box-shadow: inset 0px 0px 0px 1px hsl(var(--cg7-color-contrast-lower-hsl));
  transition: all 0.2s ease;
  border-radius: 0.25em;
}

.cg7-form-control::placeholder {
  opacity: 1;
  color: hsl(var(--cg7-color-contrast-low-hsl));
}

.cg7-form-control:focus,
.cg7-form-control:focus-within {
  background: hsl(var(--cg7-color-bg-hsl));
  box-shadow: inset 0px 0px 0px 1px hsla(var(--cg7-color-contrast-lower-hsl), 0),
    0px 0px 0px 2px hsl(var(--cg7-color-primary-hsl)),
    0 0.3px 0.4px rgba(0, 0, 0, 0.025), 0 0.9px 1.5px rgba(0, 0, 0, 0.05),
    0 3.5px 6px rgba(0, 0, 0, 0.1);
  outline: none;
}

.cg7-form-legend {
  color: hsl(var(--cg7-color-contrast-higher-hsl));
  line-height: 1.2;
  font-size: var(--cg7-text-md);
  margin-bottom: var(--cg7-space-sm);
}

/* icons */
.cg7-icon {
  height: var(--cg7-size, 1em);
  width: var(--cg7-size, 1em);
  display: inline-block;
  color: inherit;
  fill: currentColor;
  line-height: 1;
  flex-shrink: 0;
  max-width: initial;
}

/* component */
:root {
  --choice-btn-border-width: 1px;
  --choice-btn-border-radius: 0.25em;
  --choice-btn-align-items: center;
  --choice-btn-input-size: 20px;
  --choice-btn-input-icon-size: 16px;
  --choice-btn-input-border-width: 1px;
  --choice-btn-input-margin-right: var(--cg7-space-sm);
  --choice-btn-input-translate-y: 0em;
}

.choice-btn__grid {
  display: none;
}

.choice-btn__fallback {
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
}

.choice-btn {
  position: relative;
  background-color: hsl(var(--cg7-color-bg-light-hsl));
  border-radius: var(--choice-btn-border-radius);
  box-shadow: 0 0 0 var(--choice-btn-border-width)
    hsl(var(--cg7-color-contrast-lower-hsl));
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
  transition: 0.2s;
}
.choice-btn.choice-btn--focus,
.choice-btn.choice-btn--checked,
.choice-btn:active {
  box-shadow: 0 0 0 2px hsl(var(--cg7-color-primary-hsl));
}
.choice-btn.choice-btn--focus,
.choice-btn:active {
  box-shadow: 0 0 0 2px hsl(var(--cg7-color-primary-hsl)),
    0 0 0 4px hsla(var(--cg7-color-primary-hsl), 0.2);
}

.choice-btn__grid {
  display: block;
  display: grid;
  grid-template-columns: var(--choice-btn-input-size) 1fr;
  grid-gap: var(--choice-btn-input-margin-right);
  align-items: var(--choice-btn-align-items);
}

.choice-btn__input {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: hsl(var(--cg7-color-bg-light-hsl));
  width: var(--choice-btn-input-size);
  height: var(--choice-btn-input-size);
  border-width: var(--choice-btn-input-border-width);
  border-style: solid;
  border-color: hsla(var(--cg7-color-contrast-low-hsl), 0.65);
  box-shadow: 0 0.1px 0.3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.12);
  position: relative;
  top: var(--choice-btn-input-translate-y);
  transition: 0.2s;
}
.choice-btn__input svg {
  color: hsl(var(--cg7-color-white-hsl));
  font-size: var(--choice-btn-input-icon-size);
}
.choice-btn:hover:not(.choice-btn--checked) .choice-btn__input {
  border-color: hsla(var(--cg7-color-contrast-low-hsl), 1);
}
.choice-btn--checked .choice-btn__input {
  border-color: hsl(var(--cg7-color-primary-hsl));
  background-color: hsl(var(--cg7-color-primary-hsl));
}

.choice-btn__input--checkbox {
  border-radius: 4px;
}
.choice-btn__input--checkbox svg > * {
  transition: stroke-dashoffset 0.3s;
  stroke-dasharray: 18;
  stroke-dashoffset: 18;
}
.choice-btn--checked .choice-btn__input--checkbox svg > * {
  stroke-dasharray: 18;
  stroke-dashoffset: 0;
}

.choice-btn__input--radio {
  border-radius: 50%;
}
.choice-btn__input--radio svg {
  transition: -webkit-transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
    -webkit-transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  -webkit-transform: scale(0);
  transform: scale(0);
}
.choice-btn--checked .choice-btn__input--radio svg {
  -webkit-transform: scale(1);
  transform: scale(1);
}

/* utility classes */
.cg7-font-bold {
  font-weight: 700;
}

.cg7-color-contrast-higher {
  --cg7-color-o: 1;
  color: hsla(var(--cg7-color-contrast-higher-hsl), var(--cg7-color-o, 1));
}

.cg7-justify-between {
  justify-content: space-between;
}

.cg7-gap-2xs {
  gap: var(--cg7-space-2xs);
}

.cg7-flex-wrap {
  flex-wrap: wrap;
}

.cg7-flex {
  display: flex;
}

.cg7-padding-sm {
  padding: var(--cg7-space-sm);
}

.cg7-flex-column {
  flex-direction: column;
}

.cg7-text-sm {
  font-size: var(--cg7-text-sm);
}

.cg7-gap-xs {
  gap: var(--cg7-space-xs);
}

.cg7-items-center {
  align-items: center;
}

.cg7-color-contrast-medium {
  --cg7-color-o: 1;
  color: hsla(var(--cg7-color-contrast-medium-hsl), var(--cg7-color-o, 1));
}
/* -------------------------------- 
  
  File#: _1_steps-v2
  Title: Steps v2
  Descr: Multi-step navigation with bar indicator
  Usage: codyhouse.co/license
  
  -------------------------------- */
/* reset */
*,
*::after,
*::before {
  box-sizing: border-box;
}

* {
  font: inherit;
  margin: 0;
  padding: 0;
  border: 0;
}

body {
  background-color: hsl(0, 0%, 100%);
  font-family: system-ui, sans-serif;
  color: hsl(230, 7%, 23%);
  font-size: 1rem;
}

h1,
h2,
h3,
h4 {
  line-height: 1.2;
  color: hsl(230, 13%, 9%);
  font-weight: 700;
}

h1 {
  font-size: 2.0736rem;
}

h2 {
  font-size: 1.728rem;
}

h3 {
  font-size: 1.25rem;
}

h4 {
  font-size: 1.2rem;
}

ol,
ul,
menu {
  list-style: none;
}

button,
input,
textarea,
select {
  background-color: transparent;
  border-radius: 0;
  color: inherit;
  line-height: inherit;
  appearance: none;
}

textarea {
  resize: vertical;
  overflow: auto;
  vertical-align: top;
}

a {
  color: hsl(250, 84%, 54%);
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img,
video,
svg {
  display: block;
  max-width: 100%;
}

@media (min-width: 64rem) {
  body {
    font-size: 1.25rem;
  }

  h1 {
    font-size: 3.051rem;
  }

  h2 {
    font-size: 2.44rem;
  }

  h3 {
    font-size: 1.75rem;
  }

  h4 {
    font-size: 1.5625rem;
  }
}

/* variables */
:root {
  /* colors */
  --sj7-color-primary-hsl: 250, 84%, 54%;
  --sj7-color-bg-hsl: 0, 0%, 100%;
  --sj7-color-contrast-high-hsl: 230, 7%, 23%;
  --sj7-color-contrast-higher-hsl: 230, 13%, 9%;
  --sj7-color-contrast-lower-hsl: 240, 4%, 85%;
  --sj7-color-contrast-medium-hsl: 225, 4%, 47%;

  /* spacing */
  --sj7-space-xs: 0.5rem;

  /* typography */
  --sj7-text-sm: 0.833rem;
}

@media (min-width: 64rem) {
  :root {
    /* spacing */
    --sj7-space-xs: 0.75rem;

    /* typography */
    --sj7-text-sm: 1rem;
  }
}

/* component */
:root {
  --steps-v2-steps-nr: 10;
  /* number of steps */
}

@supports (--css: variables) {
  .steps-v2__indicator {
    position: relative;
    height: 8px;
    border-radius: 50em;
    background-color: hsl(var(--sj7-color-contrast-lower-hsl));
  }
  .steps-v2__indicator::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: calc(
      100% / var(--steps-v2-steps-nr) * var(--step-v2-current-step, 1)
    );
    background-color: hsl(var(--sj7-color-primary-hsl));
    border-radius: inherit;
    transition: width 0.2s;
  }
}

/* utility classes */
.sj7-margin-bottom-xs {
  margin-bottom: var(--sj7-space-xs);
}

.sj7-color-contrast-medium {
  --sj7-color-o: 1;
  color: hsla(var(--sj7-color-contrast-medium-hsl), var(--sj7-color-o, 1));
}

.sj7-text-sm {
  font-size: var(--sj7-text-sm);
}
/* -------------------------------- 
  
  File#: _1_form-validator
  Title: Form Validator
  Descr: A plugin to validate form fields
  Usage: codyhouse.co/license
  
  -------------------------------- */
/* reset */
*,
*::after,
*::before {
  box-sizing: border-box;
}

* {
  font: inherit;
  margin: 0;
  padding: 0;
  border: 0;
}

body {
  background-color: hsl(0, 0%, 100%);
  font-family: system-ui, sans-serif;
  color: hsl(230, 7%, 23%);
  font-size: 1rem;
}

h1,
h2,
h3,
h4 {
  line-height: 1.2;
  color: hsl(230, 13%, 9%);
  font-weight: 700;
}

h1 {
  font-size: 2.0736rem;
}

h2 {
  font-size: 1.728rem;
}

h3 {
  font-size: 1.25rem;
}

h4 {
  font-size: 1.2rem;
}

ol,
ul,
menu {
  list-style: none;
}

button,
input,
textarea,
select {
  background-color: transparent;
  border-radius: 0;
  color: inherit;
  line-height: inherit;
  appearance: none;
}

textarea {
  resize: vertical;
  overflow: auto;
  vertical-align: top;
}

a {
  color: hsl(250, 84%, 54%);
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img,
video,
svg {
  display: block;
  max-width: 100%;
}

@media (min-width: 64rem) {
  body {
    font-size: 1.25rem;
  }

  h1 {
    font-size: 3.051rem;
  }

  h2 {
    font-size: 2.44rem;
  }

  h3 {
    font-size: 1.75rem;
  }

  h4 {
    font-size: 1.5625rem;
  }
}

/* variables */
:root {
  /* colors */
  --fd3-color-primary-hsl: 250, 84%, 54%;
  --fd3-color-bg-hsl: 0, 0%, 100%;
  --fd3-color-contrast-high-hsl: 230, 7%, 23%;
  --fd3-color-contrast-higher-hsl: 230, 13%, 9%;
  --fd3-color-error-hsl: 342, 89%, 48%;
  --fd3-color-contrast-medium-hsl: 225, 4%, 47%;
  --fd3-color-bg-dark-hsl: 240, 4%, 95%;
  --fd3-color-white-hsl: 0, 0%, 100%;
  --fd3-color-primary-darker-hsl: 250, 84%, 38%;
  --fd3-color-primary-light-hsl: 250, 84%, 60%;
  --fd3-color-contrast-lower-hsl: 240, 4%, 85%;
  --fd3-color-contrast-low-hsl: 240, 4%, 65%;

  /* spacing */
  --fd3-space-2xs: 0.375rem;
  --fd3-space-xs: 0.5rem;
  --fd3-space-sm: 0.75rem;
  --fd3-space-md: 1.25rem;

  /* typography */
  --fd3-text-xs: 0.694rem;
  --fd3-text-md: 1.2rem;
  --fd3-text-sm: 0.833rem;
}

@media (min-width: 64rem) {
  :root {
    /* spacing */
    --fd3-space-2xs: 0.5625rem;
    --fd3-space-xs: 0.75rem;
    --fd3-space-sm: 1.125rem;
    --fd3-space-md: 2rem;

    /* typography */
    --fd3-text-xs: 0.8rem;
    --fd3-text-md: 1.5625rem;
    --fd3-text-sm: 1rem;
  }
}

/* buttons */
.fd3-btn {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 1em;
  white-space: nowrap;
  text-decoration: none;
  background: hsl(var(--fd3-color-bg-dark-hsl));
  color: hsl(var(--fd3-color-contrast-higher-hsl));
  cursor: pointer;
  text-decoration: none;
  line-height: 1.2;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: all 0.2s ease;
  will-change: transform;
  padding: var(--fd3-space-2xs) var(--fd3-space-sm);
  border-radius: 0.25em;
}

.fd3-btn:focus-visible {
  box-shadow: 0px 0px 0px 2px hsl(var(--fd3-color-bg-hsl)),
    0px 0px 0px 4px hsla(var(--fd3-color-contrast-higher-hsl), 0.15);
  outline: none;
}

.fd3-btn:active {
  transform: translateY(2px);
}

.fd3-btn--primary {
  background: hsl(var(--fd3-color-primary-hsl));
  color: hsl(var(--fd3-color-white-hsl));
  box-shadow: inset 0px 1px 0px hsla(var(--fd3-color-white-hsl), 0.15),
    0px 1px 3px hsla(var(--fd3-color-primary-darker-hsl), 0.25),
    0px 2px 6px hsla(var(--fd3-color-primary-darker-hsl), 0.1),
    0px 6px 10px -2px hsla(var(--fd3-color-primary-darker-hsl), 0.25);
}

.fd3-btn--primary:hover {
  background: hsl(var(--fd3-color-primary-light-hsl));
  box-shadow: inset 0px 1px 0px hsla(var(--fd3-color-white-hsl), 0.15),
    0px 1px 2px hsla(var(--fd3-color-primary-darker-hsl), 0.25),
    0px 1px 4px hsla(var(--fd3-color-primary-darker-hsl), 0.1),
    0px 3px 6px -2px hsla(var(--fd3-color-primary-darker-hsl), 0.25);
}

.fd3-btn--primary:focus {
  box-shadow: inset 0px 1px 0px hsla(var(--fd3-color-white-hsl), 0.15),
    0px 1px 2px hsla(var(--fd3-color-primary-darker-hsl), 0.25),
    0px 1px 4px hsla(var(--fd3-color-primary-darker-hsl), 0.1),
    0px 3px 6px -2px hsla(var(--fd3-color-primary-darker-hsl), 0.25),
    0px 0px 0px 2px hsl(var(--fd3-color-bg-hsl)),
    0px 0px 0px 4px hsl(var(--fd3-color-primary-hsl));
}

/* form elements */
.fd3-form-control {
  font-size: 1em;
  padding: var(--fd3-space-2xs) var(--fd3-space-xs);
  background: hsl(var(--fd3-color-bg-dark-hsl));
  line-height: 1.2;
  box-shadow: inset 0px 0px 0px 1px hsl(var(--fd3-color-contrast-lower-hsl));
  transition: all 0.2s ease;
  border-radius: 0.25em;
}

.fd3-form-control::placeholder {
  opacity: 1;
  color: hsl(var(--fd3-color-contrast-low-hsl));
}

.fd3-form-control:focus,
.fd3-form-control:focus-within {
  background: hsl(var(--fd3-color-bg-hsl));
  box-shadow: inset 0px 0px 0px 1px hsla(var(--fd3-color-contrast-lower-hsl), 0),
    0px 0px 0px 2px hsl(var(--fd3-color-primary-hsl)),
    0 0.3px 0.4px rgba(0, 0, 0, 0.025), 0 0.9px 1.5px rgba(0, 0, 0, 0.05),
    0 3.5px 6px rgba(0, 0, 0, 0.1);
  outline: none;
}

.fd3-form-control.fd3-form-control--error {
  box-shadow: inset 0px 0px 0px 1px hsla(var(--fd3-color-contrast-lower-hsl), 0),
    0px 0px 0px 2px hsl(var(--fd3-color-error-hsl));
}

.fd3-form-control.fd3-form-control--error:focus,
.fd3-form-control.fd3-form-control--error:focus-within {
  box-shadow: inset 0px 0px 0px 1px hsla(var(--fd3-color-contrast-lower-hsl), 0),
    0px 0px 0px 2px hsl(var(--fd3-color-error-hsl)),
    0 0.3px 0.4px rgba(0, 0, 0, 0.025), 0 0.9px 1.5px rgba(0, 0, 0, 0.05),
    0 3.5px 6px rgba(0, 0, 0, 0.1);
}

.fd3-form-legend {
  color: hsl(var(--fd3-color-contrast-higher-hsl));
  line-height: 1.2;
  font-size: var(--fd3-text-md);
  margin-bottom: var(--fd3-space-sm);
}

.fd3-form-label {
  display: inline-block;
  font-size: var(--fd3-text-sm);
}

/* component */
.form-validate__error-msg {
  display: none;
}
.form-validate__input-wrapper--error .form-validate__error-msg {
  display: block;
}

/* utility classes */
.fd3-border-top {
  --fd3-border-o: 1;
  border-top: var(--fd3-border-width, 1px) var(--fd3-border-style, solid)
    hsla(var(--fd3-color-contrast-lower-hsl), var(--fd3-border-o, 1));
}

.fd3-padding-top-sm {
  padding-top: var(--fd3-space-sm);
}

.fd3-text-right {
  text-align: right;
}

.fd3-margin-top-2xs {
  margin-top: var(--fd3-space-2xs);
}

.fd3-color-contrast-medium {
  --fd3-color-o: 1;
  color: hsla(var(--fd3-color-contrast-medium-hsl), var(--fd3-color-o, 1));
}

.fd3-text-xs {
  font-size: var(--fd3-text-xs);
}

.fd3-color-contrast-higher {
  --fd3-color-o: 1;
  color: hsla(var(--fd3-color-contrast-higher-hsl), var(--fd3-color-o, 1));
}

.fd3-radius-md {
  border-radius: 0.25em;
}

.fd3-padding-y-2xs {
  padding-top: var(--fd3-space-2xs);
  padding-bottom: var(--fd3-space-2xs);
}

.fd3-padding-x-xs {
  padding-left: var(--fd3-space-xs);
  padding-right: var(--fd3-space-xs);
}

.fd3-bg-error {
  --fd3-bg-o: 1;
  background-color: hsla(var(--fd3-color-error-hsl), var(--fd3-bg-o, 1));
}

.fd3-width-100\% {
  width: 100%;
}

.fd3-margin-bottom-2xs {
  margin-bottom: var(--fd3-space-2xs);
}

.fd3-gap-xs {
  gap: var(--fd3-space-xs);
}

.fd3-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
}

.fd3-grid > * {
  min-width: 0;
  grid-column-end: span 12;
}

.fd3-margin-bottom-xs {
  margin-bottom: var(--fd3-space-xs);
}

.fd3-margin-bottom-md {
  margin-bottom: var(--fd3-space-md);
}

.fd3-bg-opacity-20\% {
  --fd3-bg-o: 0.2;
}

@media (min-width: 64rem) {
  .fd3-col-6\@md {
    grid-column-end: span 6;
  }
}

/* -------------------------------- 

File#: _2_weekly-schedule
Title: Weekly Schedule
Descr: A table displaying the events of the week
Usage: codyhouse.co/license

-------------------------------- */
/* reset */
*,
*::after,
*::before {
  box-sizing: border-box;
}

* {
  font: inherit;
  margin: 0;
  padding: 0;
  border: 0;
}

body {
  background-color: hsl(0, 0%, 100%);
  font-family: system-ui, sans-serif;
  color: hsl(230, 7%, 23%);
  font-size: 1rem;
}

h1,
h2,
h3,
h4 {
  line-height: 1.2;
  color: hsl(230, 13%, 9%);
  font-weight: 700;
}

h1 {
  font-size: 2.0736rem;
}

h2 {
  font-size: 1.728rem;
}

h3 {
  font-size: 1.25rem;
}

h4 {
  font-size: 1.2rem;
}

ol,
ul,
menu {
  list-style: none;
}

button,
input,
textarea,
select {
  background-color: transparent;
  border-radius: 0;
  color: inherit;
  line-height: inherit;
  appearance: none;
}

textarea {
  resize: vertical;
  overflow: auto;
  vertical-align: top;
}

a {
  color: hsl(250, 84%, 54%);
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img,
video,
svg {
  display: block;
  max-width: 100%;
}

@media (min-width: 64rem) {
  body {
    font-size: 1.25rem;
  }

  h1 {
    font-size: 3.051rem;
  }

  h2 {
    font-size: 2.44rem;
  }

  h3 {
    font-size: 1.75rem;
  }

  h4 {
    font-size: 1.5625rem;
  }
}

/* variables */
:root {
  /* colors */
  --wf6-color-primary-hsl: 250, 84%, 54%;
  --wf6-color-bg-hsl: 0, 0%, 100%;
  --wf6-color-contrast-high-hsl: 230, 7%, 23%;
  --wf6-color-contrast-higher-hsl: 230, 13%, 9%;
  --wf6-color-contrast-lower-hsl: 240, 4%, 85%;
  --wf6-color-contrast-low-hsl: 240, 4%, 65%;
  --wf6-color-black-hsl: 230, 13%, 9%;
  --wf6-color-white-hsl: 0, 0%, 100%;

  /* spacing */
  --wf6-space-2xs: 0.375rem;
  --wf6-space-xs: 0.5rem;
  --wf6-space-sm: 0.75rem;
  --wf6-space-md: 1.25rem;

  /* typography */
  --wf6-text-xl: 1.728rem;
  --wf6-text-lg: 1.25rem;
  --wf6-text-md: 1.2rem;
  --wf6-text-base: 1rem;
  --wf6-text-sm: 0.833rem;
  --wf6-text-xs: 0.694rem;
}

@media (min-width: 64rem) {
  :root {
    /* spacing */
    --wf6-space-2xs: 0.5625rem;
    --wf6-space-xs: 0.75rem;
    --wf6-space-sm: 1.125rem;
    --wf6-space-md: 2rem;

    /* typography */
    --wf6-text-xl: 2.44rem;
    --wf6-text-lg: 1.75rem;
    --wf6-text-md: 1.5625rem;
    --wf6-text-base: 1.25rem;
    --wf6-text-sm: 1rem;
    --wf6-text-xs: 0.8rem;
  }
}

/* icons */
.wf6-icon {
  height: var(--wf6-size, 1em);
  width: var(--wf6-size, 1em);
  display: inline-block;
  color: inherit;
  fill: currentColor;
  line-height: 1;
  flex-shrink: 0;
  max-width: initial;
}

.wf6-icon--sm {
  --wf6-size: 24px;
}

/* component */
:root {
  --w-schedule-row-height: 50px;
  --w-schedule-row-nr: 0;
  --w-schedule-modal-anim-duration: 0.3s;
  --w-schedule-modal-close-btn-size: 48px;
  --w-schedule-color-1: hsl(27, 87%, 70%);
  --w-schedule-color-1-h: 27;
  --w-schedule-color-1-s: 87%;
  --w-schedule-color-1-l: 70%;
  --w-schedule-color-2: hsl(187, 13%, 28%);
  --w-schedule-color-2-h: 187;
  --w-schedule-color-2-s: 13%;
  --w-schedule-color-2-l: 28%;
  --w-schedule-color-3: hsl(304, 100%, 89%);
  --w-schedule-color-3-h: 304;
  --w-schedule-color-3-s: 100%;
  --w-schedule-color-3-l: 89%;
  --w-schedule-color-4: hsl(96, 67%, 87%);
  --w-schedule-color-4-h: 96;
  --w-schedule-color-4-s: 67%;
  --w-schedule-color-4-l: 87%;
}

.w-schedule {
  position: relative;
  z-index: 1;
}

/* #region (Mobile Navigation) */
.w-schedule__controls {
  display: flex;
  align-items: center;
}

.w-schedule__control-wrapper {
  flex-grow: 1;
  flex-basis: 0;
}
.w-schedule__control-wrapper:not(:last-child) {
  margin-right: var(--wf6-space-2xs);
}

.w-schedule__control {
  display: block;
  width: 100%;
  background-color: hsl(var(--wf6-color-contrast-lower-hsl));
  padding: 2vw 0;
  border-radius: 0.25em;
  color: inherit;
  text-decoration: none;
  text-align: center;
  transition: 0.2s;
}
.w-schedule__control:hover {
  background-color: hsl(var(--wf6-color-contrast-low-hsl));
}
.w-schedule__control:focus {
  outline: none;
  box-shadow: 0 0 0 2px hsla(var(--wf6-color-primary-hsl), 0.2);
}
.w-schedule__control[aria-selected="true"] {
  background-color: hsl(var(--wf6-color-contrast-higher-hsl));
  color: hsl(var(--wf6-color-bg-hsl));
}

/* #endregion */
/* #region (Events) */
.w-schedule__days {
  position: relative;
  z-index: 2;
}

.w-schedule__day {
  position: relative;
  padding-top: var(--wf6-space-md);
}

.w-schedule__col-label {
  display: none;
}

.w-schedule__events {
  position: relative;
}

.w-schedule__event-wrapper:not(:last-child) {
  margin-bottom: var(--wf6-space-xs);
}

.w-schedule__event {
  color: inherit;
  text-decoration: none;
  display: block;
  padding: var(--wf6-space-md);
  border-radius: 0.25em;
  background-color: var(--w-schedule-color-1);
  border-left-width: 4px;
  border-left-style: solid;
  box-shadow: 0 0.3px 0.4px rgba(0, 0, 0, 0.025),
    0 0.9px 1.5px rgba(0, 0, 0, 0.05), 0 3.5px 6px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}
.w-schedule__event:hover {
  box-shadow: 0 0.9px 1.5px rgba(0, 0, 0, 0.03),
    0 3.1px 5.5px rgba(0, 0, 0, 0.08), 0 14px 25px rgba(0, 0, 0, 0.12);
}

.w-schedule__event--1 {
  background-color: var(--w-schedule-color-1);
  border-color: hsl(
    var(--w-schedule-color-1-h),
    var(--w-schedule-color-1-s),
    calc(var(--w-schedule-color-1-l) * 0.8)
  );
  color: hsl(var(--wf6-color-black-hsl));
}

.w-schedule__event--2 {
  background-color: var(--w-schedule-color-2);
  border-color: hsl(
    var(--w-schedule-color-2-h),
    var(--w-schedule-color-2-s),
    calc(var(--w-schedule-color-2-l) * 0.8)
  );
  color: hsl(var(--wf6-color-white-hsl));
}

.w-schedule__event--3 {
  background-color: var(--w-schedule-color-3);
  border-color: hsl(
    var(--w-schedule-color-3-h),
    var(--w-schedule-color-3-s),
    calc(var(--w-schedule-color-3-l) * 0.8)
  );
  color: hsl(var(--wf6-color-black-hsl));
}

.w-schedule__event--4 {
  background-color: var(--w-schedule-color-4);
  border-color: hsl(
    var(--w-schedule-color-4-h),
    var(--w-schedule-color-4-s),
    calc(var(--w-schedule-color-4-l) * 0.8)
  );
  color: hsl(var(--wf6-color-black-hsl));
}

/* #endregion */
/* #region (Background Rows) */
.w-schedule__grid {
  display: none;
}

.w-schedule__grid-row-label {
  display: none;
}

/* #endregion */
/* #region (Modal Window) */
.w-schedule-modal {
  --modal-transition-duration: var(--w-schedule-modal-anim-duration);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: var(--wf6-space-sm);
  padding-top: calc(
    var(--wf6-space-sm) * 2 + var(--w-schedule-modal-close-btn-size)
  );
}

.w-schedule-modal__content {
  height: 100%;
  width: 100%;
  overflow: auto;
}

.w-schedule-modal__content--loaded > * {
  -webkit-animation: w-schedule-body-entry-anim 0.4s;
  animation: w-schedule-body-entry-anim 0.4s;
}

@-webkit-keyframes w-schedule-body-entry-anim {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes w-schedule-body-entry-anim {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.w-schedule-morph-bg {
  position: fixed;
  z-index: 15;
  -webkit-transform-origin: left top;
  transform-origin: left top;
}

.w-schedule-close-btn {
  position: fixed;
  top: var(--wf6-space-sm);
  right: var(--wf6-space-sm);
  z-index: 15;
  width: var(--w-schedule-modal-close-btn-size);
  height: var(--w-schedule-modal-close-btn-size);
  border-radius: 50%;
  background-color: hsla(var(--wf6-color-black-hsl), 0.9);
  display: flex;
  opacity: 0;
  visibility: hidden;
  transition: background 0.2s, opacity var(--w-schedule-modal-anim-duration),
    visibility 0s var(--w-schedule-modal-anim-duration);
}
.w-schedule-close-btn:hover {
  background-color: hsla(var(--wf6-color-black-hsl), 1);
}
.w-schedule-close-btn .wf6-icon {
  color: hsl(var(--wf6-color-white-hsl));
  display: block;
  margin: auto;
}

.w-schedule-close-btn--is-visible {
  opacity: 1;
  visibility: visible;
  transition: background 0.2s, opacity var(--w-schedule-modal-anim-duration);
}

.w-schedule-modal__figure {
  display: block;
}
.w-schedule-modal__figure img {
  display: block;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

/* #endregion */
@media (min-width: 64rem) {
  /* #region (Mobile Navigation) */
  .w-schedule__controls {
    display: none;
  }

  /* #endregion */
  /* #region (Events) */
  .w-schedule__days {
    display: flex;
    height: calc(var(--w-schedule-row-nr) * var(--w-schedule-row-height));
  }

  .w-schedule__day {
    display: block !important;
    flex-grow: 1;
    flex-basis: 0;
    padding-top: 0;
    border: 0px solid hsla(var(--wf6-color-contrast-higher-hsl), 0.1);
    border-left-width: 1px;
  }
  .w-schedule__day:last-child {
    border-right-width: 1px;
  }

  .w-schedule__col-label {
    display: flex;
    height: var(--w-schedule-row-height);
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid hsla(var(--wf6-color-contrast-higher-hsl), 0.1);
  }

  .w-schedule__event-wrapper {
    margin-bottom: 0 !important;
  }

  .w-schedule__event {
    height: var(--w-schedule-event-height, auto);
    padding: var(--wf6-space-xs);
    position: absolute;
    left: 0;
    top: var(--w-schedule-event-top, initial);
    width: 100%;
  }

  /* #endregion */
  /* #region (Background Rows) */
  .w-schedule__grid {
    display: block;
    position: absolute;
    z-index: 1;
    top: var(--w-schedule-row-height);
    left: 0;
    width: 100%;
  }

  .w-schedule__grid-row {
    position: relative;
    height: var(--w-schedule-row-height);
  }
  .w-schedule__grid-row:not(:last-child)::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: hsla(var(--wf6-color-contrast-higher-hsl), 0.1);
  }

  /* #endregion */
  /* #region (Modal Window) */
  .w-schedule-modal {
    padding-top: calc(
      var(--wf6-space-xs) * 2 + var(--w-schedule-modal-close-btn-size)
    );
    padding-bottom: calc(
      var(--wf6-space-xs) * 2 + var(--w-schedule-modal-close-btn-size)
    );
  }

  .w-schedule-modal__content {
    max-width: 64rem;
    max-height: 680px;
    overflow: hidden;
  }

  .w-schedule-modal__body {
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* #endregion */
}
@media (min-width: 80rem) {
  /* #region (Events) */
  .w-schedule__days {
    margin-left: 60px;
  }

  /* #endregion */
  /* #region (Background Rows) */
  .w-schedule__grid-row:not(:last-child)::after {
    left: 60px;
    width: calc(100% - 60px);
  }

  .w-schedule__grid-row-label {
    display: inline-block;
    line-height: 1;
    position: absolute;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    top: 0;
    left: 0;
    font-size: var(--wf6-text-sm);
  }

  /* #endregion */
}

/* utility classes */
.wf6-hide {
  display: none !important;
}

.wf6-radius-md {
  border-radius: 0.25em;
}

.wf6-bg {
  --wf6-bg-o: 1;
  background-color: hsla(var(--wf6-color-bg-hsl), var(--wf6-bg-o, 1));
}

.wf6-text-xl {
  font-size: var(--wf6-text-xl);
}

.wf6-padding-bottom-sm {
  padding-bottom: var(--wf6-space-sm);
}

.wf6-gap-xs {
  gap: var(--wf6-space-xs);
}

.wf6-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
}

.wf6-grid > * {
  min-width: 0;
  grid-column-end: span 12;
}

.wf6-padding-md {
  padding: var(--wf6-space-md);
}

.wf6-height-25\% {
  height: 25%;
}

.wf6-opacity-0 {
  opacity: 0;
}

.wf6-shadow-md {
  box-shadow: 0 0.9px 1.5px rgba(0, 0, 0, 0.03),
    0 3.1px 5.5px rgba(0, 0, 0, 0.08), 0 14px 25px rgba(0, 0, 0, 0.12);
}

:where(.wf6-inner-glow) {
  position: relative;
}

.wf6-inner-glow::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 0 0.5px 1px hsla(0, 0%, 100%, 0.075);
}

.wf6-bg-black {
  --wf6-bg-o: 1;
  background-color: hsla(var(--wf6-color-black-hsl), var(--wf6-bg-o, 1));
}

.wf6-text-center {
  text-align: center;
}

.wf6-text-sm {
  font-size: var(--wf6-text-sm);
}

.wf6-font-medium {
  font-weight: 500;
}

.wf6-text-md {
  font-size: var(--wf6-text-md);
}

.wf6-opacity-60\% {
  opacity: 0.6;
}

.wf6-line-height-1 {
  line-height: 1 !important;
}

.wf6-text-lg {
  font-size: var(--wf6-text-lg);
}

.wf6-margin-bottom-2xs {
  margin-bottom: var(--wf6-space-2xs);
}

.wf6-letter-spacing-md {
  letter-spacing: 0.05em;
}

.wf6-text-uppercase {
  text-transform: uppercase;
}

.wf6-opacity-50\% {
  opacity: 0.5;
}

.wf6-text-xs {
  font-size: var(--wf6-text-xs);
}

.wf6-col-3 {
  grid-column-end: span 3;
}

.wf6-col-6 {
  grid-column-end: span 6;
}

.wf6-bg-opacity-90\% {
  --wf6-bg-o: 0.9;
}

@media (min-width: 64rem) {
  .wf6-height-100\%\@md {
    height: 100%;
  }

  .wf6-width-70\%\@md {
    width: 70%;
  }

  .wf6-width-30\%\@md {
    width: 30%;
  }

  .wf6-flex\@md {
    display: flex;
  }

  .wf6-hide\@md {
    display: none !important;
  }

  .wf6-text-base\@md {
    font-size: var(--wf6-text-base);
  }

  .wf6-text-xs\@md {
    font-size: var(--wf6-text-xs);
  }
}

/* -------------------------------- 
  
  File#: _2_password-strength
  Title: Password Strength Indicator
  Descr: Password requirements and strength indicator
  Usage: codyhouse.co/license
  
  -------------------------------- */
/* reset */
*,
*::after,
*::before {
  box-sizing: border-box;
}

* {
  font: inherit;
  margin: 0;
  padding: 0;
  border: 0;
}

body {
  background-color: hsl(0, 0%, 100%);
  font-family: system-ui, sans-serif;
  color: hsl(230, 7%, 23%);
  font-size: 1rem;
}

h1,
h2,
h3,
h4 {
  line-height: 1.2;
  color: hsl(230, 13%, 9%);
  font-weight: 700;
}

h1 {
  font-size: 2.0736rem;
}

h2 {
  font-size: 1.728rem;
}

h3 {
  font-size: 1.25rem;
}

h4 {
  font-size: 1.2rem;
}

ol,
ul,
menu {
  list-style: none;
}

button,
input,
textarea,
select {
  background-color: transparent;
  border-radius: 0;
  color: inherit;
  line-height: inherit;
  appearance: none;
}

textarea {
  resize: vertical;
  overflow: auto;
  vertical-align: top;
}

a {
  color: hsl(250, 84%, 54%);
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img,
video,
svg {
  display: block;
  max-width: 100%;
}

@media (min-width: 64rem) {
  body {
    font-size: 1.25rem;
  }

  h1 {
    font-size: 3.051rem;
  }

  h2 {
    font-size: 2.44rem;
  }

  h3 {
    font-size: 1.75rem;
  }

  h4 {
    font-size: 1.5625rem;
  }
}

/* variables */
:root {
  /* colors */
  --pn9-color-primary-hsl: 250, 84%, 54%;
  --pn9-color-bg-hsl: 0, 0%, 100%;
  --pn9-color-contrast-high-hsl: 230, 7%, 23%;
  --pn9-color-contrast-higher-hsl: 230, 13%, 9%;
  --pn9-color-success-darker-hsl: 170, 78%, 26%;
  --pn9-color-success-hsl: 170, 78%, 36%;
  --pn9-color-warning-hsl: 35, 79%, 66%;
  --pn9-color-error-hsl: 342, 89%, 48%;
  --pn9-color-contrast-lower-hsl: 240, 4%, 85%;
  --pn9-color-contrast-medium-hsl: 225, 4%, 47%;
  --pn9-color-bg-dark-hsl: 240, 4%, 95%;
  --pn9-color-contrast-low-hsl: 240, 4%, 65%;

  /* spacing */
  --pn9-space-4xs: 0.125rem;
  --pn9-space-2xs: 0.375rem;
  --pn9-space-xs: 0.5rem;

  /* typography */
  --pn9-text-sm: 0.833rem;
}

@media (min-width: 64rem) {
  :root {
    /* spacing */
    --pn9-space-4xs: 0.1875rem;
    --pn9-space-2xs: 0.5625rem;
    --pn9-space-xs: 0.75rem;

    /* typography */
    --pn9-text-sm: 1rem;
  }
}

/* form elements */
.pn9-form-control {
  font-size: 1em;
  padding: var(--pn9-space-2xs) var(--pn9-space-xs);
  background: hsl(var(--pn9-color-bg-dark-hsl));
  line-height: 1.2;
  box-shadow: inset 0px 0px 0px 1px hsl(var(--pn9-color-contrast-lower-hsl));
  transition: all 0.2s ease;
  border-radius: 0.25em;
}

.pn9-form-control::placeholder {
  opacity: 1;
  color: hsl(var(--pn9-color-contrast-low-hsl));
}

.pn9-form-control:focus,
.pn9-form-control:focus-within {
  background: hsl(var(--pn9-color-bg-hsl));
  box-shadow: inset 0px 0px 0px 1px hsla(var(--pn9-color-contrast-lower-hsl), 0),
    0px 0px 0px 2px hsl(var(--pn9-color-primary-hsl)),
    0 0.3px 0.4px rgba(0, 0, 0, 0.025), 0 0.9px 1.5px rgba(0, 0, 0, 0.05),
    0 3.5px 6px rgba(0, 0, 0, 0.1);
  outline: none;
}

.pn9-form-label {
  display: inline-block;
  font-size: var(--pn9-text-sm);
}

/* icons */
.pn9-icon {
  height: var(--pn9-size, 1em);
  width: var(--pn9-size, 1em);
  display: inline-block;
  color: inherit;
  fill: currentColor;
  line-height: 1;
  flex-shrink: 0;
  max-width: initial;
}

/* component */
:root {
  --password-strength-meter-height: 8px;
  --password-strength-meter-radius: 50em;
  --password-strength-icon-size: 16px;
  --password-strength-icon-margin-right: 4px;
  --password-strength-icon-stroke-width: 2px;
}

.password-strength__req {
  line-height: 1.2;
  margin-bottom: var(--pn9-space-4xs);
  display: flex;
  align-items: center;
}
.password-strength__req .pn9-icon {
  font-size: var(--password-strength-icon-size);
  margin-right: var(--password-strength-icon-margin-right);
}

.password-strength__icon-group {
  stroke-width: var(--password-strength-icon-stroke-width);
}
.password-strength__icon-group * {
  transition: stroke-dashoffset 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
    -webkit-transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
    stroke-dashoffset 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
    stroke-dashoffset 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
    -webkit-transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  -webkit-transform-origin: 8px 8px;
  transform-origin: 8px 8px;
  stroke-dasharray: 16;
}
.password-strength__icon-group *:first-child {
  stroke-dashoffset: 24;
}
.password-strength__icon-group *:last-child {
  stroke-dashoffset: 10;
}

.password-strength__req--met {
  color: hsl(var(--pn9-color-success-darker-hsl));
  transition: color 0.3s;
}
.password-strength__req--met .password-strength__icon-group *:first-child {
  stroke-dashoffset: 23;
  -webkit-transform: translateX(-2px) translateY(4px) rotate(45deg);
  transform: translateX(-2px) translateY(4px) rotate(45deg);
}
.password-strength__req--met .password-strength__icon-group *:last-child {
  stroke-dashoffset: 5;
  -webkit-transform: translateX(-2px) translateY(4px) rotate(-45deg);
  transform: translateX(-2px) translateY(4px) rotate(-45deg);
}

.password-strength__req--no-met {
  color: hsl(var(--pn9-color-error-hsl));
}
.password-strength__req--no-met .password-strength__icon-group *:first-child {
  stroke-dashoffset: 32;
  -webkit-transform: translateX(5px) translateY(5px) rotate(45deg);
  transform: translateX(5px) translateY(5px) rotate(45deg);
}
.password-strength__req--no-met .password-strength__icon-group *:last-child {
  stroke-dashoffset: 2;
  -webkit-transform: translateX(-5px) translateY(5px) rotate(-45deg);
  transform: translateX(-5px) translateY(5px) rotate(-45deg);
}

.password-strength__meter {
  height: var(--password-strength-meter-height);
  border-radius: var(--password-strength-meter-radius);
  overflow: hidden;
}
.password-strength__meter * {
  will-change: width;
  transition: width 0.3s cubic-bezier(0.645, 0.045, 0.355, 1),
    background-color 0.3s;
}

.password-strength__meter--fill-1 * {
  background-color: hsl(var(--pn9-color-error-hsl));
}

.password-strength__meter--fill-2 * {
  background-color: hsl(var(--pn9-color-warning-hsl));
}

.password-strength__meter--fill-3 * {
  background-color: hsl(var(--pn9-color-success-hsl));
}

.password-strength__meter--fill-4 * {
  background-color: hsl(var(--pn9-color-success-hsl));
}

/* utility classes */
.pn9-color-contrast-high {
  --pn9-color-o: 1;
  color: hsla(var(--pn9-color-contrast-high-hsl), var(--pn9-color-o, 1));
}

.pn9-color-contrast-medium {
  --pn9-color-o: 1;
  color: hsla(var(--pn9-color-contrast-medium-hsl), var(--pn9-color-o, 1));
}

.pn9-height-100\% {
  height: 100%;
}

.pn9-block {
  display: block;
}

.pn9-bg-contrast-lower {
  --pn9-bg-o: 1;
  background-color: hsla(
    var(--pn9-color-contrast-lower-hsl),
    var(--pn9-bg-o, 1)
  );
}

.pn9-items-center {
  align-items: center;
}

.pn9-text-sm {
  font-size: var(--pn9-text-sm);
}

.pn9-gap-2xs {
  gap: var(--pn9-space-2xs);
}

.pn9-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
}

.pn9-grid > * {
  min-width: 0;
  grid-column-end: span 12;
}

.pn9-margin-top-2xs {
  margin-top: var(--pn9-space-2xs);
}

.pn9-flex-center {
  justify-content: center;
  align-items: center;
}

.pn9-flex {
  display: flex;
}

.pn9-width-100\% {
  width: 100%;
}

.pn9-margin-bottom-2xs {
  margin-bottom: var(--pn9-space-2xs);
}

.pn9-sr-only {
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  width: 1px;
  height: 1px;
  overflow: hidden;
  padding: 0;
  border: 0;
  white-space: nowrap;
}

.pn9-flex-column-reverse {
  flex-direction: column-reverse;
}

.pn9-hide {
  display: none !important;
}

@media (min-width: 32rem) {
  .pn9-text-right\@xs {
    text-align: right;
  }

  .pn9-col-6\@xs {
    grid-column-end: span 6;
  }
}
/* -------------------------------- 
  
  File#: _3_wizard-form
  Title: Wizard Form
  Descr: Multi-step form
  Usage: codyhouse.co/license
  
  -------------------------------- */
/* reset */
*,
*::after,
*::before {
  box-sizing: border-box;
}

* {
  font: inherit;
  margin: 0;
  padding: 0;
  border: 0;
}

body {
  background-color: hsl(0, 0%, 100%);
  font-family: system-ui, sans-serif;
  color: hsl(230, 7%, 23%);
  font-size: 1rem;
}

h1,
h2,
h3,
h4 {
  line-height: 1.2;
  color: hsl(230, 13%, 9%);
  font-weight: 700;
}

h1 {
  font-size: 2.0736rem;
}

h2 {
  font-size: 1.728rem;
}

h3 {
  font-size: 1.25rem;
}

h4 {
  font-size: 1.2rem;
}

ol,
ul,
menu {
  list-style: none;
}

button,
input,
textarea,
select {
  background-color: transparent;
  border-radius: 0;
  color: inherit;
  line-height: inherit;
  -webkit-appearance: none;
  appearance: none;
}

textarea {
  resize: vertical;
  overflow: auto;
  vertical-align: top;
}

a {
  color: hsl(250, 84%, 54%);
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img,
video,
svg {
  display: block;
  max-width: 100%;
}

@media (min-width: 64rem) {
  body {
    font-size: 1.25rem;
  }

  h1 {
    font-size: 3.051rem;
  }

  h2 {
    font-size: 2.44rem;
  }

  h3 {
    font-size: 1.75rem;
  }

  h4 {
    font-size: 1.5625rem;
  }
}

/* variables */
:root {
  /* colors */
  --wd4-color-primary-hsl: 250, 84%, 54%;
  --wd4-color-bg-hsl: 0, 0%, 100%;
  --wd4-color-contrast-high-hsl: 230, 7%, 23%;
  --wd4-color-contrast-higher-hsl: 230, 13%, 9%;
  --wd4-color-contrast-lower-hsl: 240, 4%, 85%;
  --wd4-color-contrast-medium-hsl: 225, 4%, 47%;
  --wd4-color-bg-dark-hsl: 240, 4%, 95%;
  --wd4-color-bg-light-hsl: 0, 0%, 100%;
  --wd4-color-white-hsl: 0, 0%, 100%;
  --wd4-color-primary-darker-hsl: 250, 84%, 38%;
  --wd4-color-primary-light-hsl: 250, 84%, 60%;
  --wd4-color-bg-lighter-hsl: 0, 0%, 100%;
  --wd4-color-black-hsl: 230, 13%, 9%;
  --wd4-color-contrast-low-hsl: 240, 4%, 65%;
  --wd4-color-accent-hsl: 342, 89%, 48%;

  /* spacing */
  --wd4-space-2xs: 0.375rem;
  --wd4-space-xs: 0.5rem;
  --wd4-space-sm: 0.75rem;
  --wd4-space-md: 1.25rem;

  /* typography */
  --wd4-text-xl: 1.728rem;
  --wd4-text-base: 1rem;
  --wd4-text-sm: 0.833rem;
  --wd4-text-sm: 0.833rem;
}

@media (min-width: 64rem) {
  :root {
    /* spacing */
    --wd4-space-2xs: 0.5625rem;
    --wd4-space-xs: 0.75rem;
    --wd4-space-sm: 1.125rem;
    --wd4-space-md: 2rem;

    /* typography */
    --wd4-text-xl: 2.44rem;
    --wd4-text-base: 1.25rem;
    --wd4-text-sm: 1rem;
    --wd4-text-sm: 1rem;
  }
}

/* buttons */
.wd4-btn {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 1em;
  white-space: nowrap;
  text-decoration: none;
  background: hsl(var(--wd4-color-bg-dark-hsl));
  color: hsl(var(--wd4-color-contrast-higher-hsl));
  cursor: pointer;
  text-decoration: none;
  line-height: 1.2;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: all 0.2s ease;
  will-change: transform;
  padding: var(--wd4-space-2xs) var(--wd4-space-sm);
  border-radius: 0.25em;
}

.wd4-btn:focus-visible {
  box-shadow: 0px 0px 0px 2px hsl(var(--wd4-color-bg-hsl)),
    0px 0px 0px 4px hsla(var(--wd4-color-contrast-higher-hsl), 0.15);
  outline: none;
}

.wd4-btn:active {
  transform: translateY(2px);
}

.wd4-btn--primary {
  background: hsl(var(--wd4-color-primary-hsl));
  color: hsl(var(--wd4-color-white-hsl));
  box-shadow: inset 0px 1px 0px hsla(var(--wd4-color-white-hsl), 0.15),
    0px 1px 3px hsla(var(--wd4-color-primary-darker-hsl), 0.25),
    0px 2px 6px hsla(var(--wd4-color-primary-darker-hsl), 0.1),
    0px 6px 10px -2px hsla(var(--wd4-color-primary-darker-hsl), 0.25);
}

.wd4-btn--primary:hover {
  background: hsl(var(--wd4-color-primary-light-hsl));
  box-shadow: inset 0px 1px 0px hsla(var(--wd4-color-white-hsl), 0.15),
    0px 1px 2px hsla(var(--wd4-color-primary-darker-hsl), 0.25),
    0px 1px 4px hsla(var(--wd4-color-primary-darker-hsl), 0.1),
    0px 3px 6px -2px hsla(var(--wd4-color-primary-darker-hsl), 0.25);
}

.wd4-btn--primary:focus {
  box-shadow: inset 0px 1px 0px hsla(var(--wd4-color-white-hsl), 0.15),
    0px 1px 2px hsla(var(--wd4-color-primary-darker-hsl), 0.25),
    0px 1px 4px hsla(var(--wd4-color-primary-darker-hsl), 0.1),
    0px 3px 6px -2px hsla(var(--wd4-color-primary-darker-hsl), 0.25),
    0px 0px 0px 2px hsl(var(--wd4-color-bg-hsl)),
    0px 0px 0px 4px hsl(var(--wd4-color-primary-hsl));
}

.wd4-btn--subtle {
  background: hsl(var(--wd4-color-bg-lighter-hsl));
  color: hsl(var(--wd4-color-contrast-higher-hsl));
  box-shadow: inset 0px 1px 0px hsla(var(--wd4-color-white-hsl), 0.1),
    0px 0px 0px 1px hsla(var(--wd4-color-black-hsl), 0.02),
    0px 1px 3px -1px hsla(var(--wd4-color-black-hsl), 0.2),
    0 0.3px 0.4px rgba(0, 0, 0, 0.025), 0 0.9px 1.5px rgba(0, 0, 0, 0.05),
    0 3.5px 6px rgba(0, 0, 0, 0.1);
}

.wd4-btn--subtle:hover {
  background: hsl(var(--wd4-color-bg-light-hsl));
  box-shadow: inset 0px 1px 0px hsla(var(--wd4-color-white-hsl), 0.1),
    0px 0px 0px 1px hsla(var(--wd4-color-black-hsl), 0.02),
    0px 1px 3px -1px hsla(var(--wd4-color-black-hsl), 0.2),
    0 0.1px 0.3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.12);
}

.wd4-btn--subtle:focus {
  box-shadow: inset 0px 1px 0px hsla(var(--wd4-color-white-hsl), 0.1),
    0px 0px 0px 1px hsla(var(--wd4-color-black-hsl), 0.02),
    0px 1px 3px -1px hsla(var(--wd4-color-black-hsl), 0.2),
    0 0.1px 0.3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.12),
    0px 0px 0px 2px hsl(var(--wd4-color-bg-hsl)),
    0px 0px 0px 4px hsl(var(--wd4-color-contrast-high-hsl));
}

/* form elements */
.wd4-form-control {
  font-size: 1em;
  padding: var(--wd4-space-2xs) var(--wd4-space-xs);
  background: hsl(var(--wd4-color-bg-dark-hsl));
  line-height: 1.2;
  box-shadow: inset 0px 0px 0px 1px hsl(var(--wd4-color-contrast-lower-hsl));
  transition: all 0.2s ease;
  border-radius: 0.25em;
}

.wd4-form-control::placeholder {
  opacity: 1;
  color: hsl(var(--wd4-color-contrast-low-hsl));
}

.wd4-form-control:focus,
.wd4-form-control:focus-within {
  background: hsl(var(--wd4-color-bg-hsl));
  box-shadow: inset 0px 0px 0px 1px hsla(var(--wd4-color-contrast-lower-hsl), 0),
    0px 0px 0px 2px hsl(var(--wd4-color-primary-hsl)),
    0 0.3px 0.4px rgba(0, 0, 0, 0.025), 0 0.9px 1.5px rgba(0, 0, 0, 0.05),
    0 3.5px 6px rgba(0, 0, 0, 0.1);
  outline: none;
}

.wd4-form-label {
  display: inline-block;
  font-size: var(--wd4-text-sm);
}

/* icons */
.wd4-icon {
  height: var(--wd4-size, 1em);
  width: var(--wd4-size, 1em);
  display: inline-block;
  color: inherit;
  fill: currentColor;
  line-height: 1;
  flex-shrink: 0;
  max-width: initial;
}

.wd4-icon--xs {
  --wd4-size: 16px;
}

/* component */
.wiz-form {
  display: flex;
  flex-direction: column;
  height: 100vh;
  height: 100dvh;
}

.wiz-form,
.wiz-form__body {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.wiz-form__body {
  flex-grow: 1;
}

.wiz-form__footer {
  flex-shrink: 0;
}

.wiz-form__step {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  transition: transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1), opacity 0.3s;
}

.wiz-form__step--prev,
.wiz-form__step--next {
  opacity: 0;
  visibility: hidden;
  transition: transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1), opacity 0.3s,
    visibility 0s 0.3s;
}

.wiz-form__step--prev {
  transform: translateX(-40px);
}

.wiz-form__step--next {
  transform: translateX(40px);
}

.wiz-form__item-hidden {
  display: none;
}

/* --fixed height */
.wiz-form--fixed-height {
  height: 480px;
}
@media (min-width: 64rem) {
  .wiz-form--fixed-height {
    height: 620px;
  }
}

/* utility classes */
.wd4-margin-right-2xs {
  margin-right: var(--wd4-space-2xs);
}

.wd4-flex-grow {
  flex-grow: 1;
}

.wd4-flex {
  display: flex;
}

.wd4-margin-bottom-xs {
  margin-bottom: var(--wd4-space-xs);
}

.wd4-color-contrast-medium {
  --wd4-color-o: 1;
  color: hsla(var(--wd4-color-contrast-medium-hsl), var(--wd4-color-o, 1));
}

.wd4-text-sm {
  font-size: var(--wd4-text-sm);
}

.wd4-margin-x-auto {
  margin-left: auto;
  margin-right: auto;
}

.wd4-max-width-xs {
  max-width: 38rem;
}

@media not all and (min-width: 64rem) {
  .wd4-display\@md {
    display: none !important;
  }
}

.wd4-items-center {
  align-items: center;
}

.wd4-gap-sm {
  gap: var(--wd4-space-sm);
}

.wd4-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
}

.wd4-grid > * {
  min-width: 0;
  grid-column-end: span 12;
}

.wd4-padding-x-md {
  padding-left: var(--wd4-space-md);
  padding-right: var(--wd4-space-md);
}

.wd4-padding-y-sm {
  padding-top: var(--wd4-space-sm);
  padding-bottom: var(--wd4-space-sm);
}

.wd4-shadow-md {
  box-shadow: 0 0.9px 1.5px rgba(0, 0, 0, 0.03),
    0 3.1px 5.5px rgba(0, 0, 0, 0.08), 0 14px 25px rgba(0, 0, 0, 0.12);
}

.wd4-bg-light {
  --wd4-bg-o: 1;
  background-color: hsla(var(--wd4-color-bg-light-hsl), var(--wd4-bg-o, 1));
}

.wd4-font-bold {
  font-weight: 700;
}

.wd4-color-contrast-higher {
  --wd4-color-o: 1;
  color: hsla(var(--wd4-color-contrast-higher-hsl), var(--wd4-color-o, 1));
}

.wd4-padding-sm {
  padding: var(--wd4-space-sm);
}

.wd4-gap-2xs {
  gap: var(--wd4-space-2xs);
}

.wd4-flex-column {
  flex-direction: column;
}

.wd4-margin-bottom-sm {
  margin-bottom: var(--wd4-space-sm);
}

.wd4-padding-y-md {
  padding-top: var(--wd4-space-md);
  padding-bottom: var(--wd4-space-md);
}

.wd4-text-xl {
  font-size: var(--wd4-text-xl);
}

.wd4-line-height-xs {
  line-height: 1.1;
}

.wd4-padding-top-md {
  padding-top: var(--wd4-space-md);
}

.wd4-text-base {
  font-size: var(--wd4-text-base);
}

.wd4-text-component :where(h1, h2, h3, h4) {
  line-height: var(--wd4-heading-line-height, 1.2);
  margin-top: calc(var(--wd4-space-md) * var(--wd4-space-multiplier, 1));
  margin-bottom: calc(var(--wd4-space-sm) * var(--wd4-space-multiplier, 1));
}

.wd4-text-component :where(p, blockquote, ul li, ol li) {
  line-height: var(--wd4-body-line-height, 1.4);
}

.wd4-text-component :where(ul, ol, p, blockquote, .wd4-text-component__block) {
  margin-bottom: calc(var(--wd4-space-sm) * var(--wd4-space-multiplier, 1));
}

.wd4-text-component :where(ul, ol) {
  padding-left: 1.25em;
}

.wd4-text-component ul :where(ul, ol),
.wd4-text-component ol :where(ul, ol) {
  padding-left: 1em;
  margin-bottom: 0;
}

.wd4-text-component ul {
  list-style-type: disc;
}

.wd4-text-component ol {
  list-style-type: decimal;
}

.wd4-text-component img {
  display: block;
  margin: 0 auto;
}

.wd4-text-component figcaption {
  margin-top: calc(var(--wd4-space-xs) * var(--wd4-space-multiplier, 1));
  font-size: var(--wd4-text-sm);
  text-align: center;
}

.wd4-text-component em {
  font-style: italic;
}

.wd4-text-component strong {
  font-weight: bold;
}

.wd4-text-component s {
  text-decoration: line-through;
}

.wd4-text-component u {
  text-decoration: underline;
}

.wd4-text-component mark {
  background-color: hsla(var(--wd4-color-accent-hsl), 0.2);
  color: inherit;
}

.wd4-text-component blockquote {
  padding-left: 1em;
  border-left: 4px solid hsl(var(--wd4-color-contrast-lower-hsl));
  font-style: italic;
}

.wd4-text-component hr {
  margin: calc(var(--wd4-space-md) * var(--wd4-space-multiplier, 1)) auto;
  background: hsl(var(--wd4-color-contrast-lower-hsl));
  height: 1px;
}

.wd4-text-component > *:first-child {
  margin-top: 0;
}

.wd4-text-component > *:last-child {
  margin-bottom: 0;
}

.wd4-text-component.wd4-line-height-xs {
  --wd4-heading-line-height: 1;
  --wd4-body-line-height: 1.1;
}

.wd4-text-component.wd4-line-height-sm {
  --wd4-heading-line-height: 1.1;
  --wd4-body-line-height: 1.2;
}

.wd4-text-component.wd4-line-height-md {
  --wd4-heading-line-height: 1.15;
  --wd4-body-line-height: 1.4;
}

.wd4-text-component.wd4-line-height-lg {
  --wd4-heading-line-height: 1.22;
  --wd4-body-line-height: 1.58;
}

.wd4-text-component.wd4-line-height-xl {
  --wd4-heading-line-height: 1.3;
  --wd4-body-line-height: 1.72;
}

.wd4-width-100\% {
  width: 100%;
}

.wd4-block {
  display: block;
}

:where(.wd4-media-wrapper-4\:3) {
  position: relative;
  height: 0;
}

.wd4-media-wrapper-4\:3 {
  padding-bottom: 75%;
}

.wd4-media-wrapper-4\:3 > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.wd4-media-wrapper-4\:3 > *:not(iframe) {
  -o-object-fit: cover;
  object-fit: cover;
}

.wd4-radius-md {
  border-radius: 0.25em;
}

.wd4-bg {
  --wd4-bg-o: 1;
  background-color: hsla(var(--wd4-color-bg-hsl), var(--wd4-bg-o, 1));
}

.wd4-color-contrast-high {
  --wd4-color-o: 1;
  color: hsla(var(--wd4-color-contrast-high-hsl), var(--wd4-color-o, 1));
}

.wd4-height-100\% {
  height: 100%;
}

.wd4-bg-contrast-lower {
  --wd4-bg-o: 1;
  background-color: hsla(
    var(--wd4-color-contrast-lower-hsl),
    var(--wd4-bg-o, 1)
  );
}

.wd4-margin-top-2xs {
  margin-top: var(--wd4-space-2xs);
}

.wd4-flex-center {
  justify-content: center;
  align-items: center;
}

.wd4-margin-bottom-2xs {
  margin-bottom: var(--wd4-space-2xs);
}

.wd4-sr-only {
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  width: 1px;
  height: 1px;
  overflow: hidden;
  padding: 0;
  border: 0;
  white-space: nowrap;
}

.wd4-flex-column-reverse {
  flex-direction: column-reverse;
}

.wd4-inline-block {
  display: inline-block;
}

.wd4-gap-xs {
  gap: var(--wd4-space-xs);
}

.wd4-radius-50\% {
  border-radius: 50%;
}

.wd4-height-2xl {
  height: 6rem;
}

.wd4-width-2xl {
  width: 6rem;
}

.wd4-flex-wrap {
  flex-wrap: wrap;
}

.wd4-margin-bottom-md {
  margin-bottom: var(--wd4-space-md);
}

.wd4-bg-dark {
  --wd4-bg-o: 1;
  background-color: hsla(var(--wd4-color-bg-dark-hsl), var(--wd4-bg-o, 1));
}

.wd4-container {
  width: calc(100% - 2 * var(--wd4-space-md));
  margin-left: auto;
  margin-right: auto;
}

.wd4-height-100vh {
  height: 100vh;
}

.wd4-col-6 {
  grid-column-end: span 6;
}

@media (min-width: 32rem) {
  .wd4-text-right\@xs {
    text-align: right;
  }

  .wd4-flex-row\@xs {
    flex-direction: row;
  }

  .wd4-col-6\@xs {
    grid-column-end: span 6;
  }
}

@media (min-width: 64rem) {
  .wd4-flex-grow-0\@md {
    flex-grow: 0;
  }

  .wd4-justify-end\@md {
    justify-content: flex-end;
  }

  .wd4-hide\@md {
    display: none !important;
  }

  .wd4-col-6\@md {
    grid-column-end: span 6;
  }

  .wd4-col-3\@md {
    grid-column-end: span 3;
  }
}
