:root {
  --green:rgb(132 191 67);
  --mutedgreen:rgb(218 236 199);
  --darkgreen:rgb(100 146 48);
  --faintgreen: rgb(245 248 243);
  --orange:rgb(241 169 72);
  --red:rgb(198 89 46);
  --black:black;
  --white:white;
  --grey:rgb(148 148 148);
  --darkgrey: rgb(102 102 102);
  --lightgrey:rgb(236, 236, 236);
  --faintgrey:rgb(244 244 244);
  --body-bg:var(--white);
  --body-text:var(--black);
  --section-example-bg:var(--faintgreen);
  --heading: var(--darkgreen);
}

.main {
  min-height: 100lvh;
}
@media only screen and (min-width: 1024px) {
  .main {
    display: flex;
  }
}

.page {
  padding: calc(145px + 1rem) 1.5rem 8rem;
}
@media only screen and (min-width: 1024px) {
  .page {
    padding: 2rem;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
  }
}
.page:has(> .guide) {
  padding: calc(129px + 1rem) 0 8rem;
}
@media only screen and (min-width: 1024px) {
  .page:has(> .guide) {
    padding: 2rem;
  }
}

.centre {
  text-align: center;
  margin: auto;
}

.hidden {
  height: 1px;
  overflow: hidden;
  position: absolute;
  top: auto;
  left: -10000px;
  width: 1px;
}

@media only screen and (min-width: 1024px) {
  .container {
    padding: 20px;
    max-width: 1100px;
    margin: 0 auto;
  }
}

.flex {
  display: flex;
}

.flex-container {
  display: flex;
  flex-wrap: wrap;
}

.flex-col {
  display: flex;
  flex-direction: column;
}

.bottom-align {
  margin-top: auto;
}

.right-align {
  margin-left: auto;
}

.flex-centre {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}
.flex-centre turbo-frame {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.grid-2col {
  gap: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media only screen and (max-width: 1024px) {
  .grid-2col {
    flex-direction: column;
  }
}
.grid-2col h3 {
  width: 100%;
}
@media only screen and (min-width: 1024px) {
  .grid-2col > div:not(.grid-2col) {
    width: 48%;
  }
}
@media only screen and (min-width: 1024px) {
  .grid-2col > .fullwidth-container {
    width: 100% !important;
  }
}
.grid-2col > .grid-2col {
  width: 100%;
}
.grid-2col.buttons-cont > a.btn {
  max-width: 48%;
}
@media only screen and (max-width: 1024px) {
  .grid-2col.buttons-cont > a.btn {
    max-width: 45%;
  }
}

turbo-frame:has(> .grid-2col) {
  width: 100%;
}

.grid-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media only screen and (min-width: 501px) and (max-width: 1024px) {
  .grid-3col {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 1024px) {
  .grid-3col {
    grid-template-columns: 1fr;
  }
}

.midwidth-container {
  max-width: 760px;
  margin: auto;
}

.large-container {
  max-width: 985px;
  margin: auto auto 135px;
}

.fullwidth-container {
  max-width: 1110px;
  margin: auto auto 135px;
}

.container-btns {
  margin-top: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media only screen and (max-width: 1024px) {
  .container-btns {
    flex-direction: column;
    gap: 20px;
  }
}
.container-btns .btn {
  max-width: 480px;
  padding: 8px;
}
.container-btns a:not(.btn) {
  text-decoration: underline;
}
@media only screen and (min-width: 1024px) {
  .container-btns a:not(.btn) {
    position: absolute;
    right: 0;
  }
}

.pagination {
  display: inline-block;
  margin: 10px 0;
}

@font-face {
  font-family: "opensans";
  src: url("/assets/OpenSans-Regular-7ef74751.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "opensans";
  src: url("/assets/OpenSans-Semibold-b6be87b3.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "opensans";
  src: url("/assets/OpenSans-Bold-ff9e3448.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "minionpro";
  src: url("/assets/MinionPro-Regular-3143f489.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}
* {
  box-sizing: border-box;
}

body {
  background-color: var(--body-bg);
  color: var(--body-text);
  font-family: "opensans", sans-serif;
  font-size: 100%;
  font-weight: normal;
  margin: 0;
  position: relative;
}

img {
  max-width: 100%;
}

p {
  font-family: "opensans", sans-serif;
  font-weight: 400;
  margin: 0px;
}

a {
  font-weight: 600;
  font-family: "opensans", sans-serif;
  text-decoration: none;
  color: var(--body-text);
}

h1,
h2,
h3,
h4,
h5 {
  color: var(--heading);
  font-family: "opensans", sans-serif;
  margin: 0;
}

h1 {
  font-size: 48px;
}
@media only screen and (max-width: 1024px) {
  h1 {
    font-size: 36px;
  }
}

h2 {
  font-size: 36px;
}
@media only screen and (max-width: 1024px) {
  h2 {
    font-size: 28px;
  }
}

h3 {
  font-size: 24px;
}
@media only screen and (max-width: 1024px) {
  h3 {
    font-size: 22px;
  }
}

h4 {
  font-size: 1.2em;
}

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

.green {
  color: var(--green);
}

.orange {
  color: var(--orange);
}

.red {
  color: var(--red);
}

.alert {
  border-radius: 4px;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.alert--danger {
  background: #f2dede;
  color: #a94442;
  border: 1px solid #ebccd1;
}

.alert--success {
  background: #dff0d8;
  color: #3c763d;
  border: 1px solid #d6e9c6;
}

body:has(.auth-logo) .header,
body:has(.auth-logo) .navigation,
body:has(.auth-logo) .sidebar {
  display: none;
}
body:has(.auth-logo) .main {
  display: flex;
  align-items: center;
  justify-content: center;
}
body:has(.auth-logo) .page {
  padding: 1.5rem;
  width: 100%;
}

.auth-logo {
  max-width: 278px;
  margin: auto;
}

.auth-card {
  background: var(--faintgrey);
  max-width: 400px;
  margin: 2rem auto;
  padding: 2rem 2rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
}

.auth-card__title {
  text-align: center;
  margin-bottom: 1.5rem;
}

.auth-card__footer {
  margin-top: 1.5rem;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.auth-form .btn {
  font-size: 14px;
  line-height: 16px;
  padding: 0.4rem 0;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-weight: 600;
  color: var(--black);
  text-align: left;
}

.form-input {
  padding: 0.75rem 1rem;
  border: 1px solid var(--white);
  border-radius: 4px;
  font-size: 1rem;
  font-family: "opensans", sans-serif;
}

.link {
  color: var(--green);
  text-decoration: underline;
  font-weight: 600;
  cursor: pointer;
}

.auth-footer {
  padding: 2rem 0;
  max-width: 400px;
  width: 100%;
  margin: auto;
  text-align: center;
  border-top: 2px solid var(--grey);
}
.auth-footer__links {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.auth-footer__links .footer-link {
  font-weight: 400;
  padding: 0 0.75rem;
}
.auth-footer__links .footer-link:not(:last-child) {
  border-right: 1px solid black;
}
.auth-footer__copyright {
  font-size: 14px;
}

button {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  color: inherit;
  font: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  text-align: inherit;
  text-transform: none;
  cursor: pointer;
  outline: none;
  box-shadow: none;
  border-radius: 0;
}

button {
  display: block;
}
button a {
  display: block;
}

.btn {
  display: block;
  outline: none;
  width: 100%;
  background-color: var(--darkgreen);
  color: var(--white) !important;
  font-family: "opensans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 4px;
  border: 2px solid;
  border-color: var(--darkgreen);
  text-align: center;
  cursor: pointer;
  position: relative;
}
.btn:hover {
  text-decoration: underline;
}
.btn--yellow {
  background-color: var(--yellow);
  border: 2px solid var(--yellow);
}
.btn--fit-con {
  width: fit-content;
}
.btn svg {
  position: absolute;
  right: 20px;
}

.expanding-nav__content {
  overflow: hidden;
  transition: height 0.2s ease-out, padding 0.2s ease-out;
}
.expanding-nav__content a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 1.5rem;
  border-bottom: 1px solid var(--darkgrey);
}
.expanding-nav__content a h4 {
  color: var(--darkgrey);
  font-weight: 500;
  font-size: 18px;
}
.expanding-nav__content a svg {
  width: 14px;
  height: 14px;
}

.glossary-item__term {
  font-size: 1.1em;
  color: var(--darkgreen);
}

.guide-section {
  display: flex;
  flex-direction: column;
}
.guide-section > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 1.5rem;
}
.guide-section > a:hover {
  text-decoration: none;
}
.guide-section > a:has(h3) {
  border-bottom: 1px solid var(--darkgreen);
}
.guide-section > a:has(h3) svg {
  width: 14px;
  height: 14px;
}
.guide-section > a:has(h4) {
  border-bottom: 1px solid var(--black);
}
.guide-section > a:has(h4) h4 {
  color: var(--black);
  font-weight: 400;
}
.guide-section > a:has(h4) svg {
  width: 14px;
  height: 14px;
}
.guide-section > a:has(+ :not(.hidden)) svg {
  transform: rotate(180deg);
}

.guides-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 1.5rem;
  border-bottom: 1px solid var(--darkgreen);
}

.next-section {
  background-color: var(--faintgrey);
  padding: 0.75rem 6rem 0.75rem 1.5rem;
  font-weight: 600;
  position: absolute;
  bottom: 77px;
  left: 0;
  width: 100%;
  min-height: 77px;
}
@media only screen and (min-width: 1024px) {
  .next-section {
    position: relative;
    bottom: unset;
    margin-top: 4rem;
  }
}

.next-section button:not(.next-section__prev-button) {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-weight: inherit;
  display: block;
  width: 100%;
  text-align: left;
}

.next-section__prev-button {
  background-color: var(--darkgreen);
  position: absolute;
  top: -1rem;
  left: 1.5rem;
  padding: 0.5rem 0.7rem;
  display: block;
}
.next-section__prev-button svg {
  display: block;
  width: 42px;
}

.next-section--centered {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.75rem 1.5rem;
}

.next-section__take-quiz {
  background-color: var(--darkgreen);
  color: #fff;
  font-weight: 600;
  padding: 0.5rem 2rem;
  text-decoration: none;
}

.next-section__button {
  background-color: var(--darkgreen);
  position: absolute;
  top: -1rem;
  right: 1.5rem;
  padding: 0.5rem 0.7rem;
}
.next-section__button svg {
  display: block;
  width: 42px;
}

.quiz-heading {
  padding: 0.6rem 1.5rem;
  font-weight: 700;
  color: var(--black);
}

.quiz-heading__subtitle {
  display: block;
  color: var(--heading);
}

.quiz-instructions {
  padding: 0.75rem 1.5rem 0;
}

.quiz-list {
  display: flex;
  flex-direction: column;
}

.quiz-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 1.5rem;
  border-bottom: 1px solid var(--darkgrey);
  text-decoration: none;
  color: var(--black);
}
.quiz-item svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.quiz-item:hover {
  text-decoration: none;
}

.quiz-question {
  padding: 0 1.5rem;
  margin: 1.5rem 0 4rem;
}

.quiz-question__row {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.quiz-question__number {
  flex-shrink: 0;
  font-weight: 700;
}

.quiz-question__text {
  font-weight: 700;
}

.quiz-question__description {
  padding: 0 0 1.5rem 2.2rem;
}

.quiz-answers {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.quiz-answer {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  margin-bottom: 0.5rem;
}
.quiz-answer input[type=radio] {
  display: none;
}
.quiz-answer circle {
  display: none;
}
.quiz-answer.quiz-answer--selected circle {
  display: block;
}

.quiz-answer__radio {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.quiz-result-item {
  margin-bottom: 1.5rem;
  padding: 0.6rem 1.5rem;
}

.quiz-answers-list {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
}
.quiz-answers-list li {
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 0.25rem;
}
.quiz-answers-list .picked.correct {
  color: var(--darkgreen);
  background: var(--faintgreen);
}
.quiz-answers-list .picked.incorrect {
  color: var(--red);
  background: rgb(252, 240, 236);
}
.quiz-answers-list .correct-reveal {
  color: var(--darkgreen);
  font-weight: 600;
}

.search-form {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--darkgreen);
}
.search-form__row {
  display: flex;
  align-items: stretch;
  gap: 0.75rem;
}
.search-form__row div.input {
  flex: 1;
}
.search-form__row div.input input[type=text],
.search-form__row div.input input[type=search] {
  width: 100%;
  height: 2.25rem;
  padding: 0 0.5rem;
  font-size: 0.875rem;
}
.search-form__row div.input input[type=text]:focus,
.search-form__row div.input input[type=search]:focus {
  border: 2px solid var(--darkgreen);
  outline: 0;
}
.search-form__row .btn,
.search-form__row input[type=submit] {
  width: fit-content;
  height: 2.25rem;
  padding: 0 1.25rem;
  font-size: 0.875rem;
  white-space: nowrap;
  flex-shrink: 0;
}
@media only screen and (max-width: 1024px) {
  .search-form__row {
    width: 100%;
  }
}

.search-results {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
}

.search-result-card {
  background: var(--faintgrey);
  padding: 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.search-result-card__title {
  font-weight: 600;
  color: var(--darkgreen);
  text-decoration: none;
}
.search-result-card__title:hover {
  text-decoration: underline;
}
.search-result-card__excerpt {
  font-size: 0.9rem;
  color: var(--darkgrey);
  line-height: 1.5;
}
.search-result-card__excerpt em {
  font-style: normal;
  font-weight: 600;
  color: var(--black);
}

.sections {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-bottom: 4rem;
}
.sections h1 {
  font-size: 2rem;
}

.section,
.subsection {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.lexxy-content {
  line-height: 1.5;
}
.lexxy-content p, .lexxy-content li {
  margin-bottom: 1rem;
}
.lexxy-content ul,
.lexxy-content ol {
  padding-inline: 1.8rem;
}

.jump-select {
  display: inline-block;
  min-width: 230px;
  border: 1px solid var(--grey);
  border-radius: 4px;
  background: var(--white);
  user-select: none;
}
.jump-select__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
  padding: 0.6rem 0.75rem;
  background: none;
  border: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  color: var(--black);
}
.jump-select__chevron {
  width: 12px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.jump-select__chevron svg {
  display: block;
}
.jump-select--open .jump-select__chevron {
  transform: rotate(180deg);
}
.jump-select__list {
  display: none;
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--grey);
}
.jump-select__list.open {
  display: block;
}
.jump-select__list li + li {
  border-top: 1px solid var(--lightgrey);
}
.jump-select__list a {
  display: block;
  padding: 0.6rem 0.75rem;
  font-weight: 700;
  color: var(--black);
  text-decoration: none;
}
.jump-select__list a:hover {
  background-color: var(--faintgreen);
}

.section--example {
  background-color: var(--section-example-bg);
  padding: 2rem 0.75rem 0.75rem;
  font-weight: 600;
  position: relative;
  width: 100%;
}
.section--example h5 {
  color: var(--white);
  background-color: var(--darkgreen);
  position: absolute;
  top: 0;
  left: 0;
  padding: 0.1rem 0.25rem;
}

.subsection {
  background-color: var(--section-example-bg);
  font-weight: 600;
  position: relative;
  width: fit-content;
}
.subsection h4 {
  background-color: var(--darkgreen);
  color: var(--white);
  padding: 0.5rem 0.75rem;
}
.subsection .section-body {
  padding: 0 0.75rem 0.75rem;
}

.header {
  height: 100px;
  display: flex;
  align-items: flex-end;
  padding: 1rem 1.5rem;
  justify-content: space-between;
  border-bottom: 2px solid var(--darkgrey);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  background-color: var(--white);
}
@media only screen and (min-width: 1024px) {
  .header {
    height: 6rem;
    padding: 1rem 0.78rem 1rem 1rem;
    position: unset;
  }
}
.header > img {
  max-width: 220px;
  height: auto;
}
@media only screen and (min-width: 1024px) {
  .header > img {
    max-width: 400px;
    width: auto;
  }
}

.header__actions {
  display: flex;
  gap: 14px;
}
@media only screen and (min-width: 1024px) {
  .header__actions {
    gap: 28px;
  }
}
.header__actions .header__icon {
  display: block;
  width: 30px;
  height: 30px;
}

.navigation {
  height: 45px;
  background-color: var(--darkgreen);
  padding: 0 1rem 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 100px;
  left: 0;
  z-index: 2;
  width: 100%;
}
@media only screen and (min-width: 1024px) {
  .navigation {
    position: relative;
    top: 0;
    left: 0;
  }
}
.navigation button.back-button svg {
  display: block;
  width: 52px;
}
.navigation turbo-frame#favourite_switch {
  margin-left: auto;
  display: block;
  max-width: 22px;
  max-height: 22px;
  margin-right: 0.75rem;
}

.navigation__actions {
  height: 100%;
  position: relative;
}
.navigation__actions button.burger {
  padding-left: 1rem;
  border-left: 1px solid white;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.navigation__actions button.burger svg {
  display: block;
  width: 22px;
}
.navigation__actions button.burger:has(+ .open) svg.icon__hamburger {
  display: none;
}
.navigation__actions button.burger:has(+ .open) svg.icon__close {
  display: block;
}
.navigation__actions button.burger:has(+ :not(.open)) svg.icon__hamburger {
  display: block;
}
.navigation__actions button.burger:has(+ :not(.open)) svg.icon__close {
  display: none;
}

.navigation__action__buttons {
  width: 110px;
  max-width: 110px;
  display: none;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem 0;
  background-color: var(--lightgrey);
  position: absolute;
  right: -1rem;
  border-bottom-left-radius: 28px;
  box-shadow: -8px 8px 18px -4px rgba(0, 0, 0, 0.5);
}
.navigation__action__buttons.open {
  display: flex;
  align-items: center;
}
.navigation__action__buttons button {
  width: 35px;
  height: 35px;
}
.navigation__action__buttons button a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.navigation__action__buttons button a svg {
  display: block;
}

.sidebar {
  background-color: var(--darkgreen);
  display: flex;
  width: 100%;
  padding: 0 1rem;
}
@media only screen and (max-width: 1024px) {
  .sidebar {
    justify-content: space-between;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 2;
  }
}
@media only screen and (min-width: 1024px) {
  .sidebar {
    width: 6rem;
    flex-direction: column;
    padding: 2rem 0;
    position: relative;
  }
}

.sidebar__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  margin: 1rem;
}
@media only screen and (min-width: 1024px) {
  .sidebar__icon {
    height: auto;
    width: auto;
    margin: 1rem 1rem 0;
    border-bottom: 1px solid var(--white);
  }
}
.sidebar__icon svg {
  display: block;
}
@media only screen and (min-width: 1024px) {
  .sidebar__icon svg {
    width: 45px;
    height: 45px;
    margin-bottom: 1rem;
  }
}
.sidebar__icon svg.icon__menu, .sidebar__icon svg.icon__explore, .sidebar__icon svg.icon__heart {
  padding: 3px;
}

.new_form_objects_purchase_form {
  background: var(--faintgrey);
  max-width: 420px;
  margin: 2rem auto;
  padding: 2rem 2rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
}
@media only screen and (min-width: 1024px) {
  .new_form_objects_purchase_form {
    max-width: 1100px;
  }
}
.new_form_objects_purchase_form h1 {
  text-align: center;
  margin-bottom: 1.5rem;
}
.new_form_objects_purchase_form .input {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.new_form_objects_purchase_form label {
  font-weight: 500;
  color: var(--black);
  text-align: left;
}
.new_form_objects_purchase_form input[type=text],
.new_form_objects_purchase_form input[type=email],
.new_form_objects_purchase_form input[type=password],
.new_form_objects_purchase_form input[type=number] {
  padding: 0.75rem 1rem;
  border: 1px solid var(--white);
  border-radius: 4px;
  font-size: 1rem;
  font-family: "opensans", sans-serif;
}
.new_form_objects_purchase_form select {
  padding: 0.75rem 1rem;
  border: 1px solid var(--white);
  border-radius: 4px;
  font-size: 1rem;
  font-family: "opensans", sans-serif;
}
.new_form_objects_purchase_form #price-details {
  margin: 1rem 0;
  font-weight: 500;
  text-align: center;
  background: var(--white);
  border-radius: 4px;
  padding: 0.75rem 1rem;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}
.new_form_objects_purchase_form #total-price {
  color: var(--green);
  font-weight: 600;
}
.new_form_objects_purchase_form .btn {
  margin-top: 1rem;
}

.purchase-card {
  background: var(--faintgrey);
  max-width: 420px;
  margin: 2rem auto;
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: stretch;
  gap: 1rem;
}

.faq-section {
  margin-top: 2rem;
}

.faq-link {
  cursor: pointer;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.faq-answer {
  border-bottom: 1px solid var(--darkgrey);
}
.faq-answer p {
  padding: 0.6rem 1.5rem;
}
.faq-answer.hidden {
  border-width: 0px;
}

.faq-item:has(.faq-answer.hidden) .faq-link {
  border-bottom-width: 1px;
}
.faq-item:has(.faq-answer.hidden) .faq-link svg {
  transition: transform 0.2s;
  transform: rotate(90deg);
}
.faq-item .faq-link {
  border-bottom-width: 0px;
}
.faq-item .faq-link svg {
  transition: transform 0.2s;
  transform: rotate(270deg);
}

.favourite {
  align-items: center;
  gap: 1rem;
}
.favourite svg {
  transform: none !important;
  flex: 1;
  width: 16px !important;
  min-width: 16px !important;
  height: 16px !important;
}

.checklist-section {
  margin-top: 2rem;
  margin-bottom: 2rem;
  padding: 1.5rem 0;
}

.checklist-title {
  font-weight: bold;
  margin-bottom: 1rem;
}

.checklist-intro {
  margin-bottom: 1.5rem;
}

.checklist-group {
  margin-bottom: 2rem;
}

.checklist-group-title {
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.checklist-items {
  list-style: none;
  padding: 0;
  margin: 0;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.75rem;
  width: fit-content;
}
.checklist-item span {
  cursor: pointer;
}
.checklist-item .checkbox-with-tick {
  width: 20px;
  height: 22px;
  flex-shrink: 0;
}
.checklist-item .checkbox-with-tick__tick {
  display: none;
}
.checklist-item .checkbox-with-tick__box-with-gap {
  display: none;
}
.checklist-item p {
  flex: 1;
  cursor: pointer;
}
.checklist-item.checked .checkbox-with-tick__tick {
  display: block;
}
.checklist-item.checked .checkbox-with-tick__box-with-gap {
  display: block;
}
.checklist-item.checked .checkbox-with-tick__box-complete {
  display: none;
}

.checklist-item-title {
  margin-left: 0.75rem;
}

.checklists-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.checklist-link {
  cursor: pointer;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22../stylesheets/utilities/_colours.scss%22,%22../stylesheets/utilities/_layouts.scss%22,%22../stylesheets/utilities/_mixins.scss%22,%22../stylesheets/base/_fonts.scss%22,%22../stylesheets/base/_global.scss%22,%22../stylesheets/base/_typography.scss%22,%22../stylesheets/components/_alerts.scss%22,%22../stylesheets/components/_auth.scss%22,%22../stylesheets/components/_buttons.scss%22,%22../stylesheets/components/guides/_expandable_nav.scss%22,%22../stylesheets/components/guides/_glossary.scss%22,%22../stylesheets/components/guides/_guide.scss%22,%22../stylesheets/components/guides/_next_section.scss%22,%22../stylesheets/components/guides/_quiz.scss%22,%22../stylesheets/components/guides/_search.scss%22,%22../stylesheets/components/guides/_sections.scss%22,%22../stylesheets/components/_header.scss%22,%22../stylesheets/components/_navigation.scss%22,%22../stylesheets/components/_sidebar.scss%22,%22../stylesheets/components/payment_process/_form.scss%22,%22../stylesheets/components/payment_process/_purchase_card.scss%22,%22../stylesheets/components/_faqs.scss%22,%22../stylesheets/components/_favourites.scss%22,%22../stylesheets/components/_checklists.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%22AAAA;EACE;EACA;EACA;EACA;EAEA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EAEA;EACA;EAEA;EAEA;;;ACpBF;EACE;;AC+CA;EDhDF;IAGI;;;;AAIJ;EACE;;ACwCA;EDzCF;IAGI;IACA;IACA;IACA;;;AAEF;EACE;;ACgCF;EDjCA;IAGI;;;;AAKN;EACE;EACA;;;AAGF;ECbE;EACA;EACA;EACA;EACA;EACA;;;AA4BA;EDdF;IAEI;IACA;IACA;;;;AAIJ;EACE;;;AAGF;EACE;EACA;;;AAIF;EACE;EACA;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;EACA;EACA;EACA;EACA;;AACA;EACE;EACA;EACA;EACA;EACA;;;AAIJ;EACE;EACA;EACA;EACA;;AChDA;ED4CF;IAMI;;;AAEF;EACE;;ACzCF;ED2CA;IAEI;;;AC7CJ;EDgDA;IAEI;;;AAGJ;EACE;;AAGA;EACE;;ACtEJ;EDqEE;IAGI;;;;AAMR;EACE;;;AAGF;EACE;EACA;EACA;;AC/EA;ED4EF;IAKI;;;ACvFF;EDkFF;IAQI;;;;AAIJ;EACE;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;;AClHA;ED6GF;IAOI;IACA;;;AAEF;EACE;EACA;;AAEF;EACE;;AChHF;ED+GA;IAGI;IACA;;;;AAKN;EACE;EACA;;;AExKF;EACE;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;;AAKF;EACE;EACA;EACA;EACA;;AC7BF;EACE;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE;;;ACfF;EACE;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;;;AAGF;AAAA;AAAA;AAAA;AAAA;EAKE;EACA;EACA;;;AAGF;EACE;;AHYA;EGbF;IAGI;;;;AAIJ;EACE;;AHKA;EGNF;IAGI;;;;AAIJ;EACE;;AHFA;EGCF;IAGI;;;;AAIJ;EACE;;;AAIF;EACE;;AACA;EACE;;;AAIJ;EACE;;;AAGF;EACE;;;AAGF;EACE;;;ACjEF;EACE;EACA;EACA;EACA;;;AAEF;EACE;EACA;EACA;;;AAEF;EACE;EACA;EACA;;;ACbA;AAAA;AAAA;EAGE;;AAEF;EACE;EACA;EACA;;AAEF;EACE;EACA;;;AAIJ;EACE;EACA;;;AAIF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAEF;EACE;EACA;;;AAEF;EACE;;;AAIF;EACE;EACA;EACA;;AACA;EACE;EACA;EACA;;;AAIJ;EACE;EACA;EACA;;;AAGF;EACE;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;;AAIA;EACE;EACA;EACA;EACA;;AACA;EACE;EACA;;AACA;EACE;;AAIN;EACE;;;ACvGJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE;;AACA;EACE;;;AAIJ;EACE;EACA;EAEA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AACA;EACE;;AAEF;EACE;EACA;;AAEF;EACE;;AAEF;EACE;EACA;;;ACxDJ;EACE;EACA;;AACA;EACE;EACA;EACA;EACA;EACA;;AACA;EACE;EACA;EACA;;AAEF;EACE;EACA;;;AChBN;EACE;EACA;;;ACFF;EACE;EACA;;AACA;EACE;EACA;EACA;EACA;;AACA;EACE;;AAEF;EACE;;AACA;EACE;EACA;;AAGJ;EACE;;AACA;EACE;EACA;;AAEF;EACE;EACA;;AAIF;EACE;;;AAMR;EACE;EACA;EACA;EACA;EACA;;;AC1CF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AVwCA;EUhDF;IAUI;IACA;IACA;;;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;;AACA;EACE;EACA;;;AAIJ;EACE;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;;AACA;EACE;EACA;;;AC7DJ;EACE;EACA;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;;;AAGF;EACE;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;;AAGF;EACE;;;AAIJ;EACE;EACA;;;AAGF;EACE;EACA;EACA;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;;AAEA;EACE;;AAGF;EACE;;AAIA;EACE;;;AAKN;EACE;EACA;EACA;EACA;;;AAIF;EACE;EACA;;;AAGF;EACE;EACA;EACA;;AAEA;EACE;EACA;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;;ACnIJ;EACE;EACA;;AAEA;EACE;EACA;EACA;;AAEA;EACE;;AAEA;AAAA;EAEE;EACA;EACA;EACA;;AACA;AAAA;EACE;EACA;;AAKN;AAAA;EAEE;EACA;EACA;EACA;EACA;EACA;;AZIJ;EYCE;IACE;;;;AAKN;EACE;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;;AAEA;EACE;;AAIJ;EACE;EACA;EACA;;AAEA;EACE;EACA;EACA;;;AC3EN;EACE;EACA;EACA;EACA;;AACA;EACE;;;AAIJ;AAAA;EAEE;EACA;EACA;;;AAGF;EACE;;AACA;EACE;;AAEF;AAAA;EAEE;;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;;AACA;EAAM;;AAGR;EACE;;AAGF;EACE;EACA;EACA;EACA;EACA;;AAEA;EAAS;;AAET;EAAU;;AAEV;EACE;EACA;EACA;EACA;EACA;;AAEA;EAAU;;;AAKhB;EACE;EACA;EACA;EACA;EACA;;AACA;EACE;EACA;EACA;EACA;EACA;EACA;;;AAIJ;EACE;EACA;EACA;EACA;;AACA;EACE;EACA;EACA;;AAEF;EACE;;;AChHJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AdoCA;EchDF;IAcI;IACA;IACA;;;AAEF;EACE;EACA;;Ad4BF;Ec9BA;IAII;IACA;;;;AAKN;EACE;EACA;;AdkBA;EcpBF;IAII;;;AAEF;EACE;EACA;EACA;;;ACrCJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AfqCA;EehDF;IAaI;IACA;IACA;;;AAGA;EACE;EACA;;AAGJ;EACE;EACA;EACA;EACA;EACA;;;AAIJ;EACE;EACA;;AACA;EACE;EACA;EACA;EACA;EACA;EACA;;AACA;EACE;EACA;;AAGA;EACE;;AAEF;EACE;;AAIF;EACE;;AAEF;EACE;;;AAMR;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AACA;EACE;EACA;;AAEF;EACE;EACA;;AACA;EACE;EACA;EACA;EACA;EACA;;AACA;EACE;;;AC3FR;EACE;EACA;EACA;EACA;;AhBgCA;EgBpCF;IAMI;IACA;IACA;IACA;IACA;;;AhBsCF;EgBhDF;IAaI;IACA;IACA;IACA;;;;AAKJ;EACE;EACA;EACA;EACA;EACA;EACA;;AhBqBA;EgB3BF;IAQI;IACA;IACA;IACA;;;AAEF;EACE;;AhBaF;EgBdA;IAGI;IACA;IACA;;;AAEF;EAGE;;;AC5CN;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AjBwCC;EiBhDF;IAUE;;;AAGD;EACC;EACA;;AAGD;EACC;EACA;EACA;EACA;;AAGD;EACC;EACA;EACA;;AAGD;AAAA;AAAA;AAAA;EAIC;EACA;EACA;EACA;EACA;;AAGD;EACC;EACA;EACA;EACA;EACA;;AAGD;EACC;EACA;EACA;EACA;EACA;EACA;EACA;;AAGD;EACC;EACA;;AAGD;EACC;;;AClEF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;ACPF;EACE;;;AAGF;EACE;EACA;EACA;EACA;;;AAGF;EACE;;AACA;EACE;;AAEF;EACE;;;AAMF;EACE;;AACA;EACE;EACA;;AAIJ;EACE;;AACA;EACE;EACA;;;ACrCN;EACE;EACA;;AACA;EACE;EACA;EACA;EACA;EACA;;;ACNJ;EACE;EACA;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;EACA;;;AAGF;EACE;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;;AACA;EACE;;AAEF;EACE;EACA;EACA;;AACA;EACE;;AAEF;EACE;;AAGJ;EACE;EACA;;AAGA;EACE;;AAEF;EACE;;AAEF;EACE;;;AAKN;EACE;;;AAIA;EACE;EACA;EACA;;;AAIJ;EACE;EACA;EACA;EACA%22,%22file%22:%22application.css%22%7D */
