@charset "UTF-8";
/* Import */
/* Variables */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  scroll-behavior: smooth;
  text-size-adjust: none;
}

body {
  font-family: sans-serif;
  min-height: 100vh;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

a:not([class]), button:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  color: currentColor;
}

button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

fieldset {
  border: none;
  padding: 0;
  margin: 0;
}

iframe {
  border: 0;
}

img,
picture {
  display: block;
  height: auto;
  max-width: 100%;
}

ul[role=list],
ol[role=list] {
  list-style: none;
  padding: 0;
}

input,
button,
textarea,
select {
  font: inherit;
}

textarea:not([rows]) {
  min-height: 10em;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}
/* Typography */
h1,
h2,
h3,
h4,
h5,
legend {
  color: #212529;
  font-family: "Byrd", sans-serif;
  margin: 0 0 1.5rem;
  word-break: break-word;
}

h1 {
  color: #fff;
  font-size: clamp(2rem, 1.7727272727rem + 0.9696969697vw, 2.5rem);
  font-weight: 600;
}

h2 {
  font-size: clamp(1.749rem, 1.109rem + 2.7306666667vw, 3.157rem);
  font-weight: 600;
}

h3 {
  font-size: clamp(1.521rem, 1.1355454545rem + 1.6446060606vw, 2.369rem);
  font-weight: 600;
}

h4 {
  font-size: clamp(1.322rem, 1.1151818182rem + 0.8824242424vw, 1.777rem);
  font-weight: 500;
}

h5 {
  font-size: clamp(1.15rem, 1.0668181818rem + 0.3549090909vw, 1.333rem);
  font-weight: 500;
}

p {
  font-family: "Byrd", sans-serif;
  font-weight: 400;
  line-height: 1.6em;
  padding: 0;
}
p:not(:last-child) {
  margin: 0 0 1em 0;
}

b,
strong {
  font-weight: 700;
}

i,
em {
  font-style: italic;
}

small {
  font-size: 0.8rem;
}

figcaption {
  color: #f3f4f6;
  font-size: 0.9rem;
  margin-top: 0.75rem;
}

.text--md {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.text--sm {
  font-size: 1rem;
  line-height: 1.25rem;
}

.text--headline {
  font-size: 1.15rem;
  line-height: 1.45rem;
  margin-bottom: 0.5rem;
  text-decoration: underline;
}

/* == Mixins == */
:root {
  --accent-colour: #3d5de2;
  --ring-shadow: 0 0 #0000;
  --ring-offset-shadow: 0 0 #0000;
  --shadow: 0 1px 2px 0 rgb(0 0 0 / .05);
  --shadow-coloured: 0 1px 2px 0 var(--shadow-colour);
}

html {
  min-height: 100%;
}

body {
  background: #fff;
  color: #3C424C;
  font-family: "Byrd", sans-serif;
  min-width: 320px;
  overflow-x: hidden;
  position: relative;
  text-rendering: optimizeSpeed;
  width: 100%;
}

a, button {
  position: relative;
  color: #3d5de2;
  font-weight: 600;
  transition: 0.3s ease all;
}
a:hover, button:hover {
  color: #444f6c;
}

main.--logged-in {
  background: #f3f4f6;
  min-height: 100vh;
}

section {
  padding: 3rem 0;
}
@media screen and (max-width: 800px) {
  section {
    padding: 2rem 0;
  }
}
section.--interior:not(:last-child) {
  padding: 3rem 0 0 0;
}
@media screen and (max-width: 800px) {
  section.--interior:not(:last-child) {
    padding: 2rem 0 0 0;
  }
}
section.--interior:first-of-type {
  padding: 0;
}
section.--interior:last-of-type {
  padding-bottom: 0;
}

.container {
  width: min(100%, 1200px);
  margin-inline: auto;
  padding: 0 32px;
}
@media screen and (max-width: 576px) {
  .container {
    padding: 0 16px;
  }
}

.embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}
.embed iframe,
.embed object,
.embed embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.section__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 576px) {
  .section__header {
    flex-wrap: wrap;
    gap: 1rem;
  }
}
.section__header h2 {
  margin: 0;
}
.section__header .button {
  min-width: -moz-max-content;
  min-width: max-content;
}

:focus {
  outline: 0.2rem dashed var(--accent-colour);
  outline-offset: 0.2rem;
}

::-moz-selection {
  color: white;
  -webkit-text-fill-color: white;
  background-color: var(--accent-colour);
}

::selection {
  color: white;
  -webkit-text-fill-color: white;
  background-color: var(--accent-colour);
}

/* Utilities */
.skip-link {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  border: 0;
  position: absolute;
  top: 0;
  left: 0;
  padding: 2rem;
  background-color: #fff;
}
.skip-link:focus {
  position: absolute !important;
  width: auto;
  height: auto;
  margin: 0;
  overflow: auto;
  clip: auto;
}

.mobile-only {
  display: none !important;
}
@media screen and (max-width: 576px) {
  .mobile-only {
    display: inherit !important;
  }
}

.desktop-only {
  display: block !important;
}
@media screen and (max-width: 576px) {
  .desktop-only {
    display: none !important;
  }
}

.hide {
  display: none !important;
}

.grid-row, .login {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}
@media screen and (max-width: 800px) {
  .grid-row, .login {
    flex-wrap: wrap;
  }
}
.grid-row .col-1, .login .col-1 {
  width: calc(8.3333333333% + -29.3333333333px);
}
@media screen and (max-width: 800px) {
  .grid-row .col-1, .login .col-1 {
    width: calc(100% + 0px);
  }
  .grid-row .col-1:not(:lastç-child), .login .col-1:not(:lastç-child) {
    margin: 0 0 1em 0;
  }
}
.grid-row .col-2, .login .col-2 {
  width: calc(16.6666666667% + -26.6666666667px);
}
@media screen and (max-width: 800px) {
  .grid-row .col-2, .login .col-2 {
    width: calc(100% + 0px);
  }
  .grid-row .col-2:not(:lastç-child), .login .col-2:not(:lastç-child) {
    margin: 0 0 1em 0;
  }
}
.grid-row .col-3, .login .col-3 {
  width: calc(25% + -24px);
}
@media screen and (max-width: 800px) {
  .grid-row .col-3, .login .col-3 {
    width: calc(100% + 0px);
  }
  .grid-row .col-3:not(:lastç-child), .login .col-3:not(:lastç-child) {
    margin: 0 0 1em 0;
  }
}
.grid-row .col-4, .login .col-4 {
  width: calc(33.3333333333% + -21.3333333333px);
}
@media screen and (max-width: 800px) {
  .grid-row .col-4, .login .col-4 {
    width: calc(100% + 0px);
  }
  .grid-row .col-4:not(:lastç-child), .login .col-4:not(:lastç-child) {
    margin: 0 0 1em 0;
  }
}
.grid-row .col-5, .login .col-5 {
  width: calc(41.6666666667% + -18.6666666667px);
}
@media screen and (max-width: 800px) {
  .grid-row .col-5, .login .col-5 {
    width: calc(100% + 0px);
  }
  .grid-row .col-5:not(:lastç-child), .login .col-5:not(:lastç-child) {
    margin: 0 0 1em 0;
  }
}
.grid-row .col-6, .login .col-6 {
  width: calc(50% + -16px);
}
@media screen and (max-width: 800px) {
  .grid-row .col-6, .login .col-6 {
    width: calc(100% + 0px);
  }
  .grid-row .col-6:not(:lastç-child), .login .col-6:not(:lastç-child) {
    margin: 0 0 1em 0;
  }
}
.grid-row .col-7, .login .col-7 {
  width: calc(58.3333333333% + -13.3333333333px);
}
@media screen and (max-width: 800px) {
  .grid-row .col-7, .login .col-7 {
    width: calc(100% + 0px);
  }
  .grid-row .col-7:not(:lastç-child), .login .col-7:not(:lastç-child) {
    margin: 0 0 1em 0;
  }
}
.grid-row .col-8, .login .col-8 {
  width: calc(66.6666666667% + -10.6666666667px);
}
@media screen and (max-width: 800px) {
  .grid-row .col-8, .login .col-8 {
    width: calc(100% + 0px);
  }
  .grid-row .col-8:not(:lastç-child), .login .col-8:not(:lastç-child) {
    margin: 0 0 1em 0;
  }
}
.grid-row .col-9, .login .col-9 {
  width: calc(75% + -8px);
}
@media screen and (max-width: 800px) {
  .grid-row .col-9, .login .col-9 {
    width: calc(100% + 0px);
  }
  .grid-row .col-9:not(:lastç-child), .login .col-9:not(:lastç-child) {
    margin: 0 0 1em 0;
  }
}
.grid-row .col-10, .login .col-10 {
  width: calc(83.3333333333% + -5.3333333333px);
}
@media screen and (max-width: 800px) {
  .grid-row .col-10, .login .col-10 {
    width: calc(100% + 0px);
  }
  .grid-row .col-10:not(:lastç-child), .login .col-10:not(:lastç-child) {
    margin: 0 0 1em 0;
  }
}
.grid-row .col-11, .login .col-11 {
  width: calc(91.6666666667% + -2.6666666667px);
}
@media screen and (max-width: 800px) {
  .grid-row .col-11, .login .col-11 {
    width: calc(100% + 0px);
  }
  .grid-row .col-11:not(:lastç-child), .login .col-11:not(:lastç-child) {
    margin: 0 0 1em 0;
  }
}
.grid-row .col-12, .login .col-12 {
  width: calc(100% + 0px);
}
@media screen and (max-width: 800px) {
  .grid-row .col-12, .login .col-12 {
    width: calc(100% + 0px);
  }
  .grid-row .col-12:not(:lastç-child), .login .col-12:not(:lastç-child) {
    margin: 0 0 1em 0;
  }
}

.bg--black {
  background-color: #212529;
}

.text--black {
  color: #212529;
}

.bg--gunmetal {
  background-color: #2E3440;
}

.text--gunmetal {
  color: #2E3440;
}

.bg--charcoal {
  background-color: #3C424C;
}

.text--charcoal {
  color: #3C424C;
}

.bg--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.bg--blue {
  background-color: #1e2a4b;
}

.text--blue {
  color: #1e2a4b;
}

.bg--blue-grey {
  background-color: #444f6c;
}

.text--blue-grey {
  color: #444f6c;
}

.bg--light-blue {
  background-color: #3d5de2;
}

.text--light-blue {
  color: #3d5de2;
}

.bg--green {
  background-color: #66b898;
}

.text--green {
  color: #66b898;
}

.bg--mid-grey {
  background-color: #b9bdc7;
}

.text--mid-grey {
  color: #b9bdc7;
}

.bg--grey {
  background-color: #f3f4f6;
}

.text--grey {
  color: #f3f4f6;
}

.bg--link-grey {
  background-color: #596a90;
}

.text--link-grey {
  color: #596a90;
}

.bg--red {
  background-color: #ce5043;
}

.text--red {
  color: #ce5043;
}

.text--center {
  text-align: center;
}
.text--left {
  text-align: left;
}
.text--right {
  text-align: right;
}

.--shadow {
  box-shadow: var(--ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)), var(--ring-shadow, 0 0 rgba(0, 0, 0, 0)), var(--shadow);
}

.--content {
  background: #fff;
  border-radius: 0.5rem;
  overflow: hidden;
  padding: 1.5rem;
}

.m-0 {
  margin: 0;
}

.accordion {
  display: grid;
}
.accordion__item {
  font-size: 1.5rem;
  line-height: 1.875rem;
  padding: 0.75rem;
}
.accordion__item:not(:last-child) {
  border-bottom: 1px solid #f3f4f6;
}
.accordion__item button {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.accordion__item button svg {
  height: 24px;
  width: 24px;
  transition: 0.2s ease all;
}
.accordion__item.--is-open button {
  color: #3d5de2;
}
.accordion__item.--is-open button svg {
  fill: #3d5de2;
  transform: rotate(90deg);
}
.accordion__content {
  border: 1px solid #f3f4f6;
  margin-top: 1rem;
}
.accordion__content p {
  font-size: 1rem;
  padding: 1rem;
}
.accordion__content p span {
  font-weight: 700;
}

.account__info {
  display: grid;
  align-items: center;
  grid-template-columns: 1rem max-content;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}
.account__info svg {
  fill: #b9bdc7;
}
.account__address {
  margin: 2rem 0;
}

.button__wide, .button__outline, .button__dark, .button__small, .button {
  display: inline-block;
  border-radius: 0.35rem;
  color: #fff;
  cursor: pointer;
  padding: 0.75rem 1.75rem;
  margin: 0.75rem 0.75rem 0.75rem 0;
}

.button {
  background: #3d5de2;
}
.button:hover {
  background: #3C424C;
  color: #fff;
}
.button__small {
  background: #3d5de2;
  padding: 0.5rem 1rem;
}
.button__small:hover {
  background: #3C424C;
  color: #fff;
}
.button__dark {
  background: #444f6c;
}
.button__dark:hover {
  background: #3C424C;
  color: #fff;
}
.button__outline {
  border: 4px solid #3d5de2;
  color: #3d5de2;
  padding: 0.5rem 1.5rem;
}
.button__outline:hover {
  border: 4px solid #444f6c;
}
.button__wide {
  display: block;
  background: #3d5de2;
  text-align: center;
}
.button__wide:hover {
  color: #fff;
  background: #444f6c;
}

.call__header {
  border: 1px solid black;
  display: grid;
  grid-template-columns: 1.5rem 1fr 2fr 2fr 1.5fr 5rem;
  font-size: 0.8rem;
}
@media screen and (max-width: 576px) {
  .call__header {
    grid-template-columns: 1.5rem 1fr 2fr 3rem;
  }
}
.call__header li {
  padding: 0.25rem;
}
.call__header li:not(:last-child) {
  border-right: 1px solid #212529;
}
.call__logs .log {
  font-size: 0.9rem;
}
.call__logs .log ul {
  border-top: 1px solid #212529;
  display: grid;
  grid-template-columns: 1.5rem 1fr 2fr 2fr 1.5fr 5rem;
  align-items: center;
}
@media screen and (max-width: 576px) {
  .call__logs .log ul {
    grid-template-columns: 1.5rem 1fr 2fr 3rem;
  }
}
.call__logs .log ul li {
  padding: 0.25rem;
}
.call__logs .log ul li:last-of-type {
  justify-self: center;
}
.call__logs .log ul.--completed {
  background: rgba(102, 184, 152, 0.3);
}
.call__logs .log svg {
  height: 1rem;
  width: 1rem;
}
.call__logs .log:first-child ul {
  border: none;
}
.call__logs .log__details {
  border: 1px solid #f3f4f6;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}
.call__logs .log__details p {
  padding: 0.75rem;
}
.call__logs .log__details p span {
  font-weight: 700;
}
.call__logs .log .trigger {
  justify-self: center;
  margin-top: 4px;
}

.email__header {
  border: 1px solid black;
  display: grid;
  grid-template-columns: 1.5rem 1fr 2fr 2fr 5rem;
  font-size: 0.8rem;
}
@media screen and (max-width: 576px) {
  .email__header {
    grid-template-columns: 1.5rem 1fr 2fr 3rem;
  }
}
.email__header li {
  padding: 0.25rem;
}
.email__header li:not(:last-child) {
  border-right: 1px solid #212529;
}
.email__logs .log {
  font-size: 0.9rem;
}
.email__logs .log ul {
  border-top: 1px solid #212529;
  display: grid;
  grid-template-columns: 1.5rem 1fr 2fr 2fr 5rem;
  align-items: center;
}
@media screen and (max-width: 576px) {
  .email__logs .log ul {
    grid-template-columns: 1.5rem 1fr 2fr 3rem;
  }
}
.email__logs .log ul li {
  padding: 0.25rem;
}
.email__logs .log ul li:last-of-type {
  justify-self: center;
}
.email__logs .log ul.--completed {
  background: rgba(102, 184, 152, 0.3);
}
.email__logs .log svg {
  height: 1rem;
  width: 1rem;
}
.email__logs .log:first-child ul {
  border: none;
}
.email__logs .log__details {
  border: 1px solid #f3f4f6;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}
.email__logs .log__details p {
  padding: 0.75rem;
}
.email__logs .log__details p span {
  font-weight: 700;
}
@media screen and (max-width: 800px) {
  .email__logs .log__details .grid-row, .email__logs .log__details .login {
    gap: 0;
  }
}
.email__logs .log__content {
  background: #f3f4f6;
  border-radius: 0.5rem;
  margin-inline: 0.75rem;
}
.email__logs .log__content > span {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.75rem;
  margin-top: 2rem;
}
.email__logs .log__content p {
  padding-block: 0 0.75rem;
}
.email__logs .log__notes {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 1.5rem;
}
.email__logs .log .trigger {
  justify-self: center;
  margin-top: 4px;
}

footer.primary {
  position: relative;
  background: #1e2a4b;
  padding: 6rem 0;
}
footer.primary::before {
  content: "";
  position: absolute;
  inset: -60px 0 auto;
  background: url("/assets/svg/section--curve.svg") center center no-repeat;
  background-size: cover;
  display: block;
  height: 60px;
  width: 100%;
}
footer.primary img {
  max-width: 200px;
  filter: brightness(0) invert(1);
}
@media screen and (max-width: 576px) {
  footer.primary img {
    padding: 0 4rem;
    max-width: 100%;
  }
}

.form {
  --input-image-preview: 5rem;
  background: #fff;
  border-radius: 0.5rem;
  color: rgb(55, 65, 81);
  margin-inline: auto;
  max-width: 600px;
  padding: 1.25rem;
}
.form.--wide {
  max-width: 100%;
}
.form ::-moz-placeholder {
  font-family: "Figtree", ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", Segoe UI Symbol, "Noto Color Emoji";
  font-weight: 500;
}
.form ::placeholder {
  font-family: "Figtree", ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", Segoe UI Symbol, "Noto Color Emoji";
  font-weight: 500;
}
.form h1 {
  color: #212529;
}
.form label {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.25rem;
  margin-left: 0.25rem;
}
.form em {
  display: block;
  color: #f3f4f6;
  font-size: 0.815rem;
  font-style: normal;
  line-height: 1.2em;
  margin-top: 0.25em;
}
.form input {
  font-family: "Figtree", ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", Segoe UI Symbol, "Noto Color Emoji";
  font-weight: 500;
}
.form input:not([type=checkbox], [type=radio], [type=submit], [type=button]),
.form select,
.form textarea {
  background: #fff;
  border: 2px solid rgb(229, 231, 235);
  border-radius: 0.375rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
  margin: 0.25rem 0 0.25rem -0.25rem;
  padding: 0.5rem 0.75rem;
  width: 100%;
}
@media screen and (max-width: 800px) {
  .form input:not([type=checkbox], [type=radio], [type=submit], [type=button]),
  .form select,
  .form textarea {
    padding: 0.5rem 0.75rem;
  }
}
.form input:not([type=checkbox], [type=radio], [type=submit], [type=button]):focus, .form input:not([type=checkbox], [type=radio], [type=submit], [type=button]):focus-within, .form input:not([type=checkbox], [type=radio], [type=submit], [type=button]):active,
.form select:focus,
.form select:focus-within,
.form select:active,
.form textarea:focus,
.form textarea:focus-within,
.form textarea:active {
  border: 2px solid rgb(99, 102, 241);
}
.form input:not([type=checkbox], [type=radio], [type=submit], [type=button]):disabled,
.form select:disabled,
.form textarea:disabled {
  border: none;
}
.form input[type=radio],
.form input[type=checkbox] {
  accent-color: rgb(229, 231, 235);
  border: 2px solid rgb(229, 231, 235);
  border-radius: 3px;
  height: 0.9rem;
  width: 0.9rem;
}
.form input[type=radio]:checked,
.form input[type=checkbox]:checked {
  accent-color: #3C424C;
}
.form input[type=submit],
.form input[type=button] {
  border: none;
  cursor: pointer;
  font-size: inherit;
  font-weight: 600;
  transition: 0.3s ease all;
}
@media screen and (max-width: 800px) {
  .form input[type=submit],
  .form input[type=button] {
    width: 100%;
  }
}
.form .group {
  display: flex;
  margin: 1rem 0;
  gap: 0.25rem;
}
@media screen and (max-width: 800px) {
  .form .group {
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1.5rem 0;
  }
}
.form .group > * {
  flex: 1;
}
@media screen and (max-width: 800px) {
  .form .group > * {
    flex-basis: 100%;
  }
}
.form .group .col-1 {
  flex: 0;
  flex-basis: calc(8.3333333333% + -29.3333333333px);
}
@media screen and (max-width: 800px) {
  .form .group .col-1 {
    flex-basis: calc(100% + 0px);
  }
}
.form .group .col-2 {
  flex: 0;
  flex-basis: calc(16.6666666667% + -26.6666666667px);
}
@media screen and (max-width: 800px) {
  .form .group .col-2 {
    flex-basis: calc(100% + 0px);
  }
}
.form .group .col-3 {
  flex: 0;
  flex-basis: calc(25% + -24px);
}
@media screen and (max-width: 800px) {
  .form .group .col-3 {
    flex-basis: calc(100% + 0px);
  }
}
.form .group .col-4 {
  flex: 0;
  flex-basis: calc(33.3333333333% + -21.3333333333px);
}
@media screen and (max-width: 800px) {
  .form .group .col-4 {
    flex-basis: calc(100% + 0px);
  }
}
.form .group .col-5 {
  flex: 0;
  flex-basis: calc(41.6666666667% + -18.6666666667px);
}
@media screen and (max-width: 800px) {
  .form .group .col-5 {
    flex-basis: calc(100% + 0px);
  }
}
.form .group .col-6 {
  flex: 0;
  flex-basis: calc(50% + -16px);
}
@media screen and (max-width: 800px) {
  .form .group .col-6 {
    flex-basis: calc(100% + 0px);
  }
}
.form .group .col-7 {
  flex: 0;
  flex-basis: calc(58.3333333333% + -13.3333333333px);
}
@media screen and (max-width: 800px) {
  .form .group .col-7 {
    flex-basis: calc(100% + 0px);
  }
}
.form .group .col-8 {
  flex: 0;
  flex-basis: calc(66.6666666667% + -10.6666666667px);
}
@media screen and (max-width: 800px) {
  .form .group .col-8 {
    flex-basis: calc(100% + 0px);
  }
}
.form .group .col-9 {
  flex: 0;
  flex-basis: calc(75% + -8px);
}
@media screen and (max-width: 800px) {
  .form .group .col-9 {
    flex-basis: calc(100% + 0px);
  }
}
.form .group .col-10 {
  flex: 0;
  flex-basis: calc(83.3333333333% + -5.3333333333px);
}
@media screen and (max-width: 800px) {
  .form .group .col-10 {
    flex-basis: calc(100% + 0px);
  }
}
.form .group .col-11 {
  flex: 0;
  flex-basis: calc(91.6666666667% + -2.6666666667px);
}
@media screen and (max-width: 800px) {
  .form .group .col-11 {
    flex-basis: calc(100% + 0px);
  }
}
.form .group .col-12 {
  flex: 0;
  flex-basis: calc(100% + 0px);
}
@media screen and (max-width: 800px) {
  .form .group .col-12 {
    flex-basis: calc(100% + 0px);
  }
}
.form .group.--checkbox {
  align-items: center;
}
@media screen and (max-width: 800px) {
  .form .group.--checkbox {
    gap: 0.5rem;
  }
}
.form .group.--checkbox label {
  display: flex;
  align-items: center;
  padding: 0.25rem 0;
  gap: 0.35rem;
}
.form .group.--checkbox input {
  margin: 0;
}
.form .group.--checkbox.--stacked {
  align-items: flex-start;
  flex-direction: column;
}
.form .group.--image label {
  display: flex;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
}
.form .group.--image label input[type=file] {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  border: 0;
}
.form .group.--image label span {
  color: #212529;
}
.form .group.--image .image__button {
  position: relative;
  height: var(--input-image-preview);
  width: var(--input-image-preview);
  margin-right: 1rem;
  cursor: pointer;
}
.form .group.--image .image__button img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 999px;
}
.form .group.--image .image__button svg {
  height: var(--input-image-preview);
  width: var(--input-image-preview);
  cursor: pointer;
}
.form .group.--image .image__button::after {
  content: "";
  position: absolute;
  inset: auto -8px 8px auto;
  background: #fff url("/assets/svg/system/form--button-photo.svg") no-repeat center center;
  background-size: contain;
  height: 22px;
  width: 22px;
  cursor: pointer;
}
.form .group.--buttons {
  justify-content: flex-end;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .form .group.--buttons {
    flex-wrap: wrap;
    gap: 0;
  }
}
.form .group.--buttons > * {
  flex: initial;
}
@media screen and (max-width: 800px) {
  .form .group.--buttons > * {
    flex-basis: 100%;
  }
}
@media screen and (max-width: 800px) {
  .form .group.--buttons .button {
    margin: 0.5rem 0;
  }
}
.form .group.--buttons-wide {
  display: block;
}
.form .group.--buttons-wide input,
.form .group.--buttons-wide button {
  width: 100%;
}
.form .group .lightswitch {
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.form .group .lightswitch input {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  border: 0;
}
.form .group .lightswitch .slider {
  position: relative;
  display: block;
  cursor: pointer;
  width: 52px;
  height: 28px;
  margin-top: 0.5rem;
  inset: 0;
  border: 1px solid;
  border-radius: 24px;
  transition: 0.3s;
}
.form .group .lightswitch .slider::before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 3px;
  background-color: #3C424C;
  border-radius: 34px;
  transition: 0.3s;
}
.form .group .lightswitch input:checked + .slider {
  background-color: var(--accent-colour);
  border: 1px solid var(--accent-colour);
}
.form .group .lightswitch input:checked + .slider::before {
  background-color: #fff;
  transform: translateX(22px);
}
.form .group .button {
  margin-top: 2.5rem;
  max-width: 20rem;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .form .group .button {
    margin: 0 auto 0 auto;
  }
}
.form .group .button.--no-space {
  margin-top: 0;
}
.form .group .button.--center {
  margin-inline: auto;
}
.form__header {
  text-align: center;
  text-transform: uppercase;
}
.form__subheader {
  font-size: 1.1rem;
  margin: 2rem 0;
  text-align: center;
  text-transform: uppercase;
}

header.primary {
  background: #1e2a4b;
  padding: 3rem 0;
}
header.primary h1 {
  margin: 0;
}
header.primary p {
  color: #b9bdc7;
  font-size: 1.1rem;
}
header.primary .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
@media screen and (max-width: 800px) {
  header.primary .container {
    grid-template-columns: none;
    text-align: center;
  }
}
header.primary .header__links {
  text-align: right;
}
@media screen and (max-width: 800px) {
  header.primary .header__links {
    text-align: inherit;
  }
}

.link__simple {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.link__simple:hover {
  color: #3d5de2;
}
.link__cancel {
  color: #ce5043;
  display: block;
  text-align: center;
  margin-inline: auto;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.login {
  align-items: center;
  min-height: 100vh;
}
@media screen and (max-width: 800px) {
  .login {
    gap: 0;
    margin: 6rem 0;
    min-height: auto;
  }
}
@media screen and (max-width: 800px) {
  .login img {
    max-width: 40%;
    margin: 0 auto;
  }
}

.nav {
  background: #fff;
  border-radius: 0.5rem;
  overflow: hidden;
  padding: 1.5rem;
  width: calc(25% + -24px);
}
@media screen and (max-width: 800px) {
  .nav {
    width: calc(100% + 0px);
  }
}
.nav__header {
  display: block;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}
.nav ul a, .nav ul button {
  color: #596a90;
  font-weight: 400;
}
.nav ul a:hover, .nav ul button:hover {
  color: #212529;
}
.nav ul li {
  padding: 0.15rem 0;
}
.nav ul + ul {
  margin-top: 2rem;
}

.tabs nav {
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 2px solid;
  margin: 0 auto 2rem;
  max-width: -moz-max-content;
  max-width: max-content;
}
.tabs nav button {
  border-bottom: 2px solid transparent;
  color: #3C424C;
  padding: 0.5rem 1.5rem;
}
.tabs nav button.--is-active {
  border-bottom: 2px solid var(--accent-colour);
  color: var(--accent-colour);
}

.vault {
  display: grid;
  gap: 1.5rem;
  padding-left: 2rem;
}
@media screen and (max-width: 800px) {
  .vault {
    padding-left: 1rem;
  }
}
.vault__headline {
  font-size: 1.25rem;
  border-bottom: 1px solid #b9bdc7;
}
.vault__one-time {
  margin: 3.5rem 0 0 2rem;
}
.vault__saved {
  margin-top: 2rem;
}
.vault .payment {
  display: grid;
  grid-template-columns: 1.25rem 200px 1.25rem;
  gap: 1.5rem;
}
@media screen and (max-width: 800px) {
  .vault .payment {
    gap: 0.75rem;
  }
}
.vault .payment input {
  margin-top: 0.25rem;
}
.vault .payment span {
  display: block;
  color: #444f6c;
  font-size: 0.875rem;
  font-weight: 700;
}
.vault .payment svg {
  fill: #b9bdc7;
  margin-top: 0.25rem;
}
.vault .payment.--editable {
  grid-template-columns: 1.25rem 200px 1.25rem max-content;
}
.vault .payment.--editable a, .vault .payment.--editable button {
  text-decoration: underline;
}
