:root {
  --brand-cyan: #00AEEF;
  --brand-magenta: #E00087;
  --brand-orange: #FAA819;
  --colour-accent: var(--brand-magenta);
  --colour-accent-hover: #9E005F;
  --colour-white: white;
  --colour-bg: white;
  --colour-bg-dark: black;
  --colour-bg-light: #F5F5F7;
  --colour-link: #212121;
  --colour-text: #212121;
  --colour-disabled: #efefef;
  --colour-focus: #EC008C;
  --colour-error: #FF0000;
  --font-family: Arial, Helvetica, "Helvetica Neue", sans-serif;
  --text-size-base: 16px;
  --text-size-small: 0.875rem;
  --text-size-heading-1: 3rem;
  --text-size-heading-2: 1.75rem;
  --text-size-heading-3: 1.25rem;
  --line-height: 1.5;
  --line-height-heading: 1.25;
  --justify-center: center;
  --justify-normal: left;
  --input-bg: #F5F5F7;
  --border: black;
  --border-grey: #333333;
  --progress-step: #00A1EB;
  --container: 1440px;
  --gutter: 1.5rem;
  --grid-gap: 1rem;
  --space-small: 1rem;
  --flow-space: clamp(1rem, 0.5487rem + 1.0067vi, 1.5rem);
  --flow-space-l: clamp(1.5rem, 1.2315rem + 1.3423vi, 2.5rem);
  --z-index-popup: 700;
  --ease-transition: cubic-bezier(0.39,0.575,0.565,1);
}

@media (prefers-colour-scheme: dark) {
  :root[colour-mode=user] {
    --colour-accent: #ffb300;
    --colour-bg: black;
    --colour-bg-dark: white;
    --colour-link: #ffb300;
    --colour-text: #dcdcdc;
    --colour-disabled: #111;
  }
}
body {
  background: var(--colour-bg);
  color: var(--colour-text);
  font-family: var(--font-family);
  font-size: var(--text-size-base);
  line-height: var(--line-height);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

html {
  -webkit-overflow-scrolling: touch;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
}

*, :before, :after {
  box-sizing: inherit;
}

/* Disable smooth scrolling when users have prefers-reduced-motion enabled */
@media screen and (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
a {
  color: var(--colour-link);
  display: inline-block;
  text-decoration: underline;
}
a:hover {
  text-decoration: none;
}

:focus-visible {
  outline-width: 3px;
  outline-style: solid;
  outline-color: var(--colour-focus);
  outline-offset: 3px;
}

p {
  margin: 0;
}

br {
  font-family: Arial;
}

time {
  margin: 0;
}

figure {
  margin: 0;
}

hr {
  position: relative;
  margin: 3.125em 0;
}

small {
  display: block;
  font-size: 0.875rem;
  line-height: 1.5rem;
}

b, strong, .bold {
  font-weight: bold;
}

em, i, .italic {
  font-style: italic;
}

svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
  pointer-events: none;
}

picture,
img {
  display: block;
  max-width: 100%;
  height: auto;
}

ul, ol {
  padding-left: 1.25rem;
}
ul li, ol li {
  padding-left: 1em;
}

dd {
  margin-left: 0;
}

audio,
canvas,
iframe,
img,
video,
svg {
  vertical-align: middle;
}

video {
  background-color: transparent;
}

button,
input[type=submit],
input[type=button] {
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
}

button[disabled] {
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.5;
}

.flow > * + * {
  margin-block-start: var(--flow-space);
}

.flow-l > * + * {
  margin-block-start: var(--flow-space-l);
}

:is(h1, h2, h3) + :not([class]) {
  margin-block-start: var(--space-small);
}

.container {
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.grid {
  display: flex;
  flex-direction: column;
  gap: var(--grid-gap);
}
@supports (display: grid) {
  .grid {
    display: grid;
  }
  @media screen and (min-width: 768px) {
    .grid {
      --grid-cols: 6;
      grid-template-columns: repeat(var(--grid-cols), 1fr);
    }
    .grid--of-two {
      grid-template-columns: 1fr 1fr;
    }
    .grid--8\/4 > :nth-child(odd), .grid--10\/2 > :nth-child(odd) {
      grid-column: span 4;
    }
    .grid--8\/4 > :nth-child(2n+2), .grid--10\/2 > :nth-child(2n+2) {
      grid-column: span 2;
    }
  }
  @media screen and (min-width: 1024px) {
    .grid {
      --grid-cols: 12;
    }
    .grid--8\/4 > :nth-child(odd) {
      grid-column: span 8;
    }
    .grid--8\/4 > :nth-child(2n+2) {
      grid-column: span 4;
    }
    .grid--10\/2 > :nth-child(odd) {
      grid-column: span 10;
    }
    .grid--10\/2 > :nth-child(2n+2) {
      grid-column: span 2;
    }
  }
}

.site-header {
  background-color: var(--colour-bg-dark);
  color: var(--colour-white);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0;
}
.site-header__branding {
  width: clamp(7.25rem, 1.156rem + 16.25vw, 13.75rem);
}
.site-header__branding-link {
  display: block;
}
@media screen and (min-width: 768px) {
  .site-header__inner {
    padding: 0.875rem 0;
  }
}
@media screen and (min-width: 1024px) {
  .site-header__inner {
    padding: 0;
  }
  .site-header__branding {
    padding-right: 1.5rem;
  }
  .site-header__menus {
    flex: 1;
    border-left: 1px solid var(--border-grey);
    border-right: 1px solid var(--border-grey);
  }
}

.site-main {
  padding-bottom: var(--flow-space-l);
}

.site-footer {
  padding: 1rem 0;
  background-color: var(--colour-bg-dark);
  color: white;
}

.alert {
  display: flex;
  gap: 0.5rem;
  border: 2px solid var(--colour-bg-dark);
  background-color: var(--colour-bg-light);
  padding: 0.75rem;
}

.btn {
  justify-self: flex-start;
  border: 2px solid var(--colour-accent);
  background-color: var(--colour-accent);
  font-size: 1rem;
  font-family: inherit;
  font-weight: bold;
  color: white;
  padding: 0.65rem 0.9rem;
  -webkit-appearance: button;
  cursor: pointer;
  text-decoration: none;
  transition: 0.4s;
}
.btn[disabled] {
  cursor: default;
  opacity: 0.5;
  cursor: not-allowed;
}
.btn:hover {
  background-color: var(--colour-accent-hover);
  border-color: var(--colour-accent-hover);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}
.btn--ghost {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
  border-color: transparent;
  background-color: transparent;
  color: var(--colour-text);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}
.btn--ghost:hover {
  color: var(--colour-accent-hover);
  text-decoration: none;
  background-color: transparent;
  border-color: transparent;
}
.btn--icon {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.save-progress {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border: none;
  border-radius: 50%;
  background-color: var(--brand-orange);
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  z-index: var(--z-index-popup);
}

input:disabled,
textarea:disabled,
select:disabled {
  cursor: not-allowed;
  background-color: var(--disabled);
  border-color: transparent;
}

input,
select,
textarea {
  accent-color: var(--colour-accent);
}

input:not([type=checkbox],
[type=radio]),
select,
textarea {
  font-size: inherit;
  font-family: inherit;
  padding: 1rem;
  color: var(--colour-text);
  background-color: var(--input-bg);
  border: 2px solid var(--border);
  width: 100%;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}
input:not([type=checkbox],
[type=radio]).mimic-focus,
select.mimic-focus,
textarea.mimic-focus {
  outline-width: 3px;
  outline-style: solid;
  outline-color: var(--colour-focus);
  outline-offset: 3px;
}
input:not([type=checkbox],
[type=radio]).error-validation,
select.error-validation,
textarea.error-validation {
  outline-width: 3px;
  outline-style: solid;
  outline-color: var(--colour-error);
  outline-offset: 3px;
}

select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
}

input[type=checkbox],
[type=radio] {
  width: 1rem;
  height: 1rem;
  margin: 0;
}

form {
  display: block;
  padding: var(--gutter) 0;
  text-align: var(--justify-normal);
}

label {
  position: relative;
  display: block;
  font-weight: bold;
  margin-bottom: 0.375rem;
  cursor: pointer;
}
.error-highlight label {
  color: var(--colour-error);
}

/* Form elements */
.form__controls {
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media screen and (max-width: 599px) {
  .form__controls {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
}

.form-group__legend {
  font-weight: bold;
  font-size: var(--text-size-heading-2);
}

/* Error handling */
.error-summary {
  display: block;
  margin-top: 0.25rem;
  color: var(--colour-error);
  font-weight: bold;
}

/* Custom form elements */
.custom-input {
  position: relative;
}

.custom-input input {
  height: initial;
  width: initial;
  padding: 0;
  display: none;
  cursor: pointer;
}

.custom-input label {
  display: inline-block;
  margin: 0;
}

.custom-input label:before {
  content: "";
  -webkit-appearance: none;
  background-color: var(--input-bg);
  border: 2px solid var(--border);
  width: 2.875rem;
  height: 2.875rem;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 1rem;
}

.custom-input--radio label:before {
  border-radius: 50%;
}

.custom-input input:checked + label:before {
  background-color: var(--colour-bg-dark);
  border-color: var(--colour-bg-dark);
}

.custom-input--checkbox input:checked + label:after {
  content: "";
  display: block;
  position: absolute;
  top: 6px;
  left: 17px;
  width: 10px;
  height: 26px;
  border: solid white;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

.custom-input--radio input:checked + label:after {
  content: "";
  display: block;
  position: absolute;
  top: 10px;
  left: 10px;
  width: 26px;
  height: 26px;
  border: 2px solid white;
  background-color: white;
  border-radius: 50%;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: var(--line-height-heading);
  text-wrap: balance;
}

h1 {
  font-size: var(--text-size-heading-1);
}

h2 {
  font-size: var(--text-size-heading-2);
}

h3 {
  font-size: var(--text-size-heading-3);
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  max-width: max-content;
  z-index: 10;
  padding: 0.5rem 1.5rem;
  background-color: var(--colour-accent);
  color: white;
  font-size: 1rem;
  font-weight: bold;
  text-align: left;
  text-transform: uppercase;
  text-decoration: none;
  transition: top 0.2s linear;
  z-index: var(--z-index-popup);
}
.skip-link:focus-visible {
  top: 1rem;
}

.icon-link {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.navigation-toggle {
  display: flex;
  align-items: center;
  background-color: transparent;
  border: none;
  margin: 0;
  padding: 0.75rem 0.25rem;
  color: var(--colour-white);
}
@media screen and (min-width: 1024px) {
  .navigation-toggle {
    display: none;
  }
}
.navigation-toggle__icon {
  margin-left: 0.5rem;
}
.navigation-toggle__icon svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: currentColor;
}
[aria-expanded=true] .navigation-toggle__icon-open {
  display: none;
}
[aria-expanded=false] .navigation-toggle__icon-close {
  display: none;
}

@media screen and (max-width: 1023px) {
  .site-navigation {
    position: fixed;
    top: 90px;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 1.5rem;
    transform: translateX(-100%);
    transition: transform 0.7s;
    background: var(--colour-bg-dark);
    z-index: var(--z-index-popup);
  }
  [aria-expanded=true] + .site-navigation {
    transform: translateX(0);
  }
}
@media screen and (max-width: 767px) {
  .site-navigation {
    top: 66px;
  }
}
.site-navigation ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.site-navigation ul li {
  padding: 0;
}
.site-navigation a {
  color: white;
  text-decoration: none;
}
.site-navigation a:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}
.site-navigation__inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

@media screen and (min-width: 1024px) {
  .primary-navigation {
    order: 2;
    border-top: 1px solid var(--border-grey);
  }
}
@media screen and (min-width: 1024px) {
  .primary-navigation__menu {
    display: flex;
  }
  .primary-navigation__menu > li {
    border-right: 1px solid var(--border-grey);
  }
  .primary-navigation__menu > li:last-of-type {
    margin-left: auto;
    border-right: none;
  }
}
.primary-navigation__item {
  position: relative;
}
@media screen and (max-width: 1023px) {
  .primary-navigation__item--dropdown {
    margin-top: 2rem;
  }
}
.primary-navigation__link {
  color: white;
  text-decoration: none;
  transition: background-color 0.45s var(--ease-transition);
  line-height: var(--line-height);
}
.primary-navigation__link[data-module] {
  background-color: transparent;
  border: 0;
}
.primary-navigation__link[aria-expanded=true] .icon-toggle {
  transform: rotate(180deg);
}
.primary-navigation__link[aria-expanded=true]:hover {
  background-color: transparent;
  color: white;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}
@media screen and (min-width: 1024px) {
  .primary-navigation__link {
    padding: 1.5rem 1rem;
  }
  .primary-navigation__link:hover {
    background-color: var(--colour-white);
    color: var(--colour-text);
  }
}
@media screen and (min-width: 1240px) {
  .primary-navigation__link {
    padding: 1.5rem;
  }
}
.primary-navigation__dropdown ul {
  padding: 1rem 1.5rem 1.5rem 3rem;
}
.primary-navigation__dropdown-link {
  padding: 0.5rem 0;
  background-color: transparent;
  border: none;
  color: inherit;
}
.primary-navigation__dropdown-link:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}
@media screen and (min-width: 1024px) {
  .primary-navigation__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    white-space: nowrap;
    background-color: var(--colour-bg-dark);
    z-index: var(--z-index-popup);
  }
  .primary-navigation__dropdown ul {
    padding: 0 1.5rem 1rem;
  }
}
@media screen and (max-width: 1023px) {
  .primary-navigation a:not(.primary-navigation__link--dropdown),
  .primary-navigation .primary-navigation__dropdown-link {
    position: relative;
    display: block;
    padding: 0.5rem 0 0.5rem 2rem;
  }
  .primary-navigation a:not(.primary-navigation__link--dropdown):before,
  .primary-navigation .primary-navigation__dropdown-link:before {
    content: "";
    position: absolute;
    top: calc(50% - 0.75rem);
    left: 0;
    width: 1.5rem;
    height: 1.5rem;
    background-size: 14px 14px;
    background-repeat: no-repeat;
    background-position: left center;
    background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iODAwcHgiIGhlaWdodD0iODAwcHgiIHZpZXdCb3g9Ii01IDAgMjUgMjUiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICAgICAgPGcgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTE3ODMuMDAwMDAwLCAtMTU4LjAwMDAwMCkiIGZpbGw9IiNGRkZGRkYiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEzNTAuMDAwMDAwLCAxMjAuMDAwMDAwKSI+CiAgICAgICAgICAgICAgICA8cGF0aCBkPSJNNDM2LjQ1MzUxNywzOC41NjkyNDkgTDQ0Ny4zMDI0NTksNDguOTkzODE1OCBMNDQ3LjM5MjYxLDQ5LjA3NDg4MDIgQzQ0Ny43NTUzNCw0OS40MjM0NTQgNDQ3Ljk2ODE1OSw0OS44ODcwNDYxIDQ0OCw1MC40MzgyMjI3IEw0NDcuOTk4MTM1LDUwLjYyMjgyMjkgQzQ0Ny45NjgxNTksNTEuMTEyOTUzOSA0NDcuNzU1MzQsNTEuNTc2NTQ2IDQ0Ny4zMzM2NzUsNTEuOTc3NDQ2OSBMNDQ3LjMzOTA5NSw1MS45Njg5ODMyIEw0MzYuNDUzNTE3LDYyLjQzMDc1MSBDNDM1LjY2MzY5NCw2My4xODk3NDk3IDQzNC4zOTkwMDEsNjMuMTg5NzQ5NyA0MzMuNjA5MTc4LDYyLjQzMDc1MSBDNDMyLjc5Njk0MSw2MS42NTAyMTMgNDMyLjc5Njk0MSw2MC4zNjc1OTI0IDQzMy42MDk0MzIsNTkuNTg2ODEwNiBMNDQzLjAxMjMyNCw1MC41NTcyNDcxIEw0MzMuNjA5MTc4LDQxLjQxMjk0NTYgQzQzMi43OTY5NDEsNDAuNjMyNDA3NiA0MzIuNzk2OTQxLDM5LjM0OTc4NyA0MzMuNjA5MTc4LDM4LjU2OTI0OSBDNDM0LjM5OTAwMSwzNy44MTAyNTAzIDQzNS42NjM2OTQsMzcuODEwMjUwMyA0MzYuNDUzNTE3LDM4LjU2OTI0OSBaIj4KCjwvcGF0aD4KICAgICAgICAgICAgPC9nPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+");
  }
}

.secondary-navigation {
  padding-bottom: 2rem;
}
@media screen and (min-width: 1024px) {
  .secondary-navigation {
    padding: 0.875rem 1.5rem;
    margin-left: auto;
  }
}

table {
  border-collapse: collapse;
  border: 2px solid var(--border);
  background-color: var(--colour-bg-light);
}
table th,
table caption {
  text-align: start;
}
table caption {
  margin-block: 0.75rem;
  font-weight: bold;
  font-size: var(--text-size-heading-3);
}
table th, table td {
  padding: 0.75rem;
}
table th[scope=col] {
  background-color: var(--colour-bg-dark);
  color: white;
}

.table-scroll {
  overflow-x: auto;
}

@media screen and (max-width: 599px) {
  .table--responsive {
    border-radius: 0;
  }
  .table--responsive thead {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
  }
  .table--responsive tr, .table--responsive td, .table--responsive tbody th {
    position: static;
    display: block;
    overflow: visible;
    visibility: visible;
  }
  .table--responsive td, .table--responsive th {
    border: none;
    border-top: 1px solid silver;
    border-left: 1px solid silver;
  }
  .table--responsive tbody th, .table--responsive tbody td {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 1rem;
    width: 100%;
    text-align: left;
  }
  .table--responsive tbody th:before, .table--responsive tbody td:before {
    content: attr(data-thead);
    display: block;
    font-weight: bold;
  }
  .table--responsive tbody th[scope=row] {
    background-color: var(--colour-bg-dark);
    color: white;
    border: none;
  }
}

.card {
  border: 2px solid var(--border);
}
.card__title {
  padding: 1rem 0.75rem;
  background-color: var(--colour-bg-dark);
  color: white;
}
.card__content {
  background-color: var(--colour-bg-light);
  padding: 0.75rem;
}

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "content media";
    max-width: var(--container);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--gutter);
    padding-right: var(--gutter);
  }
}
.hero__content {
  padding: var(--flow-space-l);
}
@media screen and (min-width: 768px) {
  .hero__content {
    padding-left: 0;
    align-self: center;
  }
}
.hero__media {
  position: relative;
  display: flex;
  width: 75vw;
  height: 300px;
  align-self: flex-end;
}
.hero__media-figure {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  transform: scaleX(-1);
  clip-path: polygon(0 -20%, 100% 18.5%, 86% 100%, 0% 100%);
}
.hero__media-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__media:before, .hero__media:after {
  content: "";
  position: absolute;
  backface-visibility: hidden;
  left: 0;
}
.hero__media:before {
  top: 0;
  height: 50%;
  width: 100%;
  background-color: var(--brand-cyan);
  clip-path: polygon(26% 0%, 60% 0%, 20% 28%, 30% 35%);
}
.hero__media:after {
  bottom: 0;
  height: 100px;
  width: 150px;
  background-color: var(--brand-magenta);
  clip-path: polygon(60% 0, 100% 0, 100% 100%, 12% 100%, 0 19%);
}
@media screen and (min-width: 768px) {
  .hero__media {
    grid-area: media;
    justify-content: flex-start;
    max-height: 600px;
    width: 100%;
    height: auto;
  }
}

.icon {
  --icon-size: 1rem;
  display: inline-block;
  width: var(--icon-size);
  height: var(--icon-size);
  color: inherit;
}
.icon--s {
  --icon-size: 1.5rem ;
}
.icon--m {
  --icon-size: 2.5rem;
}
.icon--l {
  --icon-size: 3.5rem;
}
.icon--xl {
  --icon-size: 4.5rem;
}

.icon-roundal {
  --roundal-size: 1.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--roundal-size);
  height: var(--roundal-size);
  border: 2px solid var(--colour-bg-dark);
  border-radius: 50%;
}

.steps-list {
  display: flex;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.steps-list__item {
  position: relative;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .steps-list__item:not(.steps-list__item--current) {
    display: none;
  }
  .steps-list__item--current {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--grid-gap);
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .steps-list__item {
    padding-right: 2rem;
  }
  .steps-list__item:before, .steps-list__item:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
  }
  .steps-list__item:before {
    width: 100%;
    height: 3px;
    background-color: var(--colour-bg-light);
  }
  .steps-list__item:after {
    top: -0.25rem;
    width: 0.75rem;
    height: 0.75rem;
    background-color: var(--progress-step);
    border-radius: 50%;
  }
  .steps-list__item--past:before {
    background-color: var(--progress-step);
  }
  .steps-list__item:last-of-type:before {
    content: none;
  }
}
.steps-list .progress-bar {
  --progress-bar-size: 7rem;
  position: relative;
  width: var(--progress-bar-size);
  height: var(--progress-bar-size);
  border-radius: 50%;
  background: radial-gradient(closest-side, white 89%, transparent 90% 100%), conic-gradient(var(--brand-cyan) var(--progress-size), var(--colour-bg-light) 0);
}
.steps-list .progress-bar span {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .steps-list .progress-bar {
    display: none;
  }
}
.steps-list__stage {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  color: var(--colour-text);
  text-decoration: none;
  font-weight: bold;
}
.steps-list__stage-next {
  font-weight: normal;
}
@media screen and (min-width: 768px) {
  .steps-list__stage {
    display: inline-block;
    padding: 1rem 0 0.25rem;
    font-size: var(--text-size-small);
  }
  .steps-list__stage-next {
    display: none;
  }
  .steps-list__item--current .steps-list__stage {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
  }
}

.visuallyhidden {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

[hidden], .hidden {
  display: none;
}

/*# sourceMappingURL=application.css.map */
