:root {
  --bc-sui-btn-default-color: #23085a;
  --bc-sui-btn-default-bg: #fff;
  --bc-sui-btn-default-hover-color: #23085a;
  --bc-sui-btn-default-hover-bg: #00dcff;
  --bc-sui-btn-primary-color: #ffffff;
  --bc-sui-btn-primary-bg: #23085a;
  --bc-sui-btn-primary-hover-color: #23085a;
  --bc-sui-btn-primary-hover-bg: #ff00c8;
  --bc-sui-btn-success-color: #fff;
  --bc-sui-btn-success-bg: #3d9026;
  --bc-sui-btn-success-hover-color: #23085a;
  --bc-sui-btn-success-hover-bg: #2c681b;
  --purple: #5900c1;
  --deep: #23085a;
  --blue: #005cb9;
  --teal: #026369;
  --pale-blue: #e5eff8;
  --pale-pink: #ffd5df;
  --rose: #f7c7d1;
  --line: #9ba8b4;
  --text: #333333;
  --muted: #5d6570;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  background: #f3f4f7;
}

body {
  margin: 0;
  padding: 0;
  min-width: 320px;
  color: var(--text);
  font-size: inherit;
  line-height: 1.5;
  font-family: "Open Sans", Arial, "Helvetica Neue", Helvetica, sans-serif !important;
  -webkit-font-smoothing: antialiased;
  background: var(--white);
}

body[data-route="signin"] {
  background-attachment: fixed;
  background-image: linear-gradient(to bottom right, #23085a, #b25eff, #d3b8ff);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  color: #54565a;
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 18px;
  font-weight: 400;
  margin: 0;
  text-align: left;
}

.route-loader {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 9999;
  width: min(100vw, 430px);
  height: 100vh;
  transform: translateX(-50%);
  background: #3d3b3d;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.route-loader-show {
  opacity: 1;
  pointer-events: auto;
}

.route-loader-hide {
  opacity: 0;
}

.load-container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.lds-dual-ring {
  width: 64px;
  height: 64px;
}

.lds-dual-ring::after {
  content: "";
  display: block;
  width: 46px;
  height: 46px;
  margin: 9px;
  border: 5px solid #fff;
  border-color: #fff transparent #fff transparent;
  border-radius: 50%;
  animation: route-spinner 860ms linear infinite;
}

.lds-text {
  width: 200px;
  height: 48px;
  margin: 0;
  padding: 0;
  color: #ccc;
  font-family: "Open Sans", Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: center;
}

.route-content-enter {
  animation: route-content-enter 360ms ease both;
}

@keyframes route-spinner {
  to {
    transform: rotate(360deg);
  }
}

@keyframes route-content-enter {
  from {
    opacity: 0.32;
  }
  to {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .route-loader,
  .route-content-enter {
    transition: none;
    animation: none;
  }

  .lds-dual-ring::after {
    animation-duration: 1400ms;
  }
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

.shell {
  width: 100%;
  max-width: 430px;
  min-height: 100vh;
  margin: 0 auto;
  background: var(--white);
  position: relative;
  overflow-x: hidden;
}

.login-shell {
  background: #fff;
  display: flex;
  flex-direction: column;
  color: #54565a;
  font-family: "Open Sans", sans-serif;
  line-height: 24px;
}

.login-shell .footer-inner {
  padding: 24px;
}

.login-shell .footer-list {
  padding: 8px 0 40px;
  gap: 16px;
}

.login-shell .footer-list li {
  padding: 1.6px 0;
}

.login-shell .footer-link,
.login-shell .footer-copy,
.login-shell .footer-note {
  font-size: 12px;
  line-height: 18px;
}

.login-shell .footer-copy {
  padding: 0;
  font-family: "Open Sans", sans-serif;
}

.login-header {
  width: 100%;
  height: 64px;
  display: flex;
  margin: 0 0 32px;
  padding: 0;
  background: #5900c1;
  color: #fff;
}

.login-header-container,
.login-toolbar {
  width: 100%;
  height: 64px;
  margin: 0;
  padding: 0;
}

.login-toolbar-header {
  width: 100%;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  padding: 0 24px;
}

.login-logo-stack {
  width: 195.979px;
  height: 25px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin: 0;
  padding: 0;
}

.login-bc-logo {
  width: 87.198px;
  height: 25px;
  display: block;
}

.login-ielts-logo {
  width: 84.781px;
  height: 25px;
  display: block;
}

.login-page {
  min-height: 579.625px;
  background: #fff;
}

.login-app-contents {
  width: 100%;
  margin: 0;
  padding: 5px 0 0;
  color: #54565a;
  font-family: "Open Sans", Arial, "Helvetica Neue", Helvetica, sans-serif;
}

.login-container,
.login-form {
  width: 100%;
  margin: 0;
  padding: 0;
}

.login-main-container {
  width: calc(100% - 48px);
  height: 35px;
  margin: 0 24px;
  padding: 0;
}

.login-page-heading {
  width: 100%;
  height: 35px;
  margin: 0 0 40px;
  padding: 0;
  line-height: 19.2px;
}

.login-page-heading h1 {
  position: relative;
  top: -5px;
  width: 100%;
  height: 40px;
  margin: -5px 0 5px;
  padding: 0;
  color: #23085a;
  font-family: BCSansHeading, Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 28.8px;
  font-weight: 300;
  line-height: 40px;
}

.login-page-heading::after {
  content: "";
  display: block;
  width: 56px;
  height: 5px;
  margin-top: 15px;
  background: #23085a;
}

.login-section-row {
  width: 100%;
  margin: 40px 0 24px;
}

.login-background-panel {
  width: 100%;
  min-height: 448.615px;
  margin: 0;
  padding: 24px;
  border-radius: 12px;
  background: #e5eff8;
  color: #54565a;
}

.login-foreground-panel {
  width: 100%;
  min-height: 400.615px;
  margin: 0;
  padding: 24px;
  border-radius: 12px;
  background: #fff;
  color: #54565a;
  box-shadow: rgba(0, 0, 0, 0.25) 0 4px 4px 0;
}

.login-copy {
  width: 100%;
  min-height: 72px;
  margin: 0 0 10px;
  color: #54565a;
  font-family: "Open Sans", Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.login-age-note {
  width: 100%;
  min-height: 95.260px;
  margin: 0 0 30px;
  padding: 12.768px 19px;
  border: 0.666667px solid #23085a;
  background: rgba(35, 8, 90, 0.15);
  color: #23085a;
  font-family: "Open Sans", Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 15.2px;
  line-height: 22.8px;
}

.login-age-note strong {
  font-weight: 700;
}

.login-email-group {
  width: 100%;
  height: 75px;
  margin: 0 0 20px;
  color: #54565a;
}

.login-email-group label {
  display: inline-block;
  margin: 0 0 7px;
  color: #54565a;
  font-family: "Open Sans", Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
}

.login-email-input {
  width: 100%;
  height: 44px;
  display: block;
  margin: 0;
  padding: 6px 12px;
  border: 0.666667px solid #b3b3b3;
  border-radius: 3px;
  background: #fff;
  color: #666;
  font-family: "Open Sans", Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 16px;
  line-height: 24px;
}

.login-email-input:focus {
  outline: 2px solid #23085a;
  outline-offset: 1px;
}

.field-validation-valid {
  display: none;
}

.login-check-button {
  width: 100%;
  height: 50.354px;
  display: inline-block;
  margin: 0;
  padding: 13.824px 35px;
  border: 2px solid transparent;
  border-radius: 100px;
  background: #005cb9;
  color: #fff;
  font-family: "Open Sans", Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 14.4px;
  font-weight: 700;
  line-height: 18.72px;
  text-align: center;
  cursor: pointer;
}

.login-shell .login-check-button.btn {
  width: 100%;
  min-height: 0;
  height: 50.354px;
  display: inline-block;
  padding: 13.824px 35px;
  border-radius: 100px;
  font-size: 14.4px;
  line-height: 18.72px;
}

.identity-shell {
  min-height: 100vh;
  background: transparent;
  overflow-x: hidden;
}

.identity-page {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background: transparent;
  color: #54565a;
  font-family: Arial, Helvetica, sans-serif;
}

.identity-background {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.identity-background .backgroundLayer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.identity-background .backgroundWithBlurAnimation {
  z-index: 1;
}

.identity-background .backgroundLayer:not(.backgroundWithBlurAnimation) {
  z-index: 2;
}

.identity-container {
  width: 100%;
  min-height: 100vh;
  display: table;
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0;
}

.identity-row {
  width: 100%;
  min-height: 100vh;
  display: table-cell;
  margin: 0;
  padding: 0;
}

.identity-form-container {
  width: calc(100% - 84px);
  max-width: 346px;
  display: inline-block;
  margin: 58px 42px;
  padding: 0;
}

.identity-panel {
  width: 100%;
  min-height: 703.604px;
  margin: 0;
  padding: 30px 30px 42px;
  border: 1px solid #ddd;
  border-radius: 4px 8px 48px 4px;
  background: #fff;
  color: #54565a;
  box-shadow: #54565a 0 1px 8px 0;
}

.identity-panel-body {
  width: 100%;
  margin: 0;
  padding: 0;
}

.identity-logo-container {
  width: 100%;
  height: 34px;
  display: flex;
  gap: 24px;
  margin: 0;
}

.identity-bc-logo {
  width: 172px;
  height: 34px;
  display: block;
  object-fit: contain;
  object-position: left top;
}

.identity-heading h1 {
  margin: 24px 0 8px;
  color: #23085a;
  font-family: BritishCouncilSansHeadline, "Work Sans", Arial, Helvetica, sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 26.4px;
}

.identity-puck {
  width: 100%;
  height: 22.854px;
  margin: 0;
  line-height: 22.8571px;
}

.identity-account-form,
.identity-entry {
  width: 100%;
  margin: 0;
  padding: 0;
}

.identity-intro p {
  margin: 16px auto 24px;
  color: #54565a;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 22.8571px;
}

.identity-intro a,
.identity-password-item a,
.identity-buttons a {
  color: #005cb9;
  font-weight: 700;
  text-decoration: none;
}

.identity-entry-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin: 0 0 24px;
}

.identity-entry-item label {
  width: 100%;
  margin: 0;
  padding: 0;
  color: #000;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 22.8571px;
}

.identity-entry-item input {
  width: 100%;
  height: 48px;
  display: block;
  margin: 8px 0 0;
  padding: 12px 16px;
  border: 1px solid #c8c8c8;
  border-radius: 2px;
  background: #fff;
  color: #54565a;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 22.8571px;
}

.identity-password-container {
  width: 100%;
  height: 56px;
  position: relative;
}

.identity-password-container input {
  padding-right: 72px;
}

.identity-password-container input.has-error {
  border: 2px solid #ea0034;
  outline: 3px solid #ffe500;
  outline-offset: 0;
}

.identity-password-toggle {
  position: absolute;
  right: 0;
  top: 8px;
  width: 72px;
  height: 48px;
  margin: 0;
  padding: 12px 16px;
  border: 0;
  border-radius: 2px;
  background: transparent;
  color: #005cb9;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 22.8571px;
  cursor: pointer;
}

.identity-password-error {
  position: relative;
  margin: 16px 0 0;
  padding: 0 0 0 22px;
  color: #ea0034;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 22.8571px;
}

.identity-password-error::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 36px;
  border-radius: 4px;
  background: #ea0034;
}

.identity-password-error[hidden] {
  display: none !important;
}

.identity-password-item p {
  width: 100%;
  margin: 24px 0;
  color: #54565a;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 22.8571px;
}

.identity-password-error:not([hidden]) + p {
  margin-top: 20px;
}

.identity-buttons {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin: 0;
}

.identity-buttons button {
  width: 145.146px;
  height: 46.854px;
  display: block;
  margin: 0 auto;
  padding: 12px 48px;
  border: 0;
  border-radius: 32px;
  background: #005cb9;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 22.8571px;
  cursor: pointer;
}

.identity-buttons p {
  margin: 12px 0 0;
  color: #54565a;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 22.8571px;
  text-align: center;
}

@media (max-width: 389px) {
  .login-header {
    padding: 0;
  }

  .login-main-container {
    width: calc(100% - 48px);
    margin: 0 24px;
  }

  .login-background-panel {
    padding: 24px;
  }

  .login-foreground-panel {
    padding: 24px;
  }

  .identity-form-container {
    width: calc(100% - 48px);
    margin: 40px 24px;
  }

  .identity-panel {
    padding: 28px 24px 40px;
  }
}

.topbar {
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  background: var(--purple);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 800;
  height: 25px;
}

.brand img {
  display: block;
  height: 25px;
  width: auto;
}

.bc-mark {
  width: 24px;
  height: 24px;
  display: grid;
  grid-template-columns: repeat(2, 11px);
  grid-auto-rows: 11px;
  gap: 2px;
}

.bc-mark i {
  display: block;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #fff;
}

.bc-text {
  font-size: 12px;
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
}

.ielts {
  font-size: 33px;
  line-height: 1;
  letter-spacing: 0;
  position: relative;
}

.ielts sup {
  position: relative;
  top: -0.7em;
  margin-left: 1px;
  font-size: 8px;
  line-height: 1;
}

.menu-button {
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  width: 114px;
  height: 56px;
  min-height: 56px;
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 27px;
  padding: 12px 12px 12px 16px;
}

.page {
  min-height: calc(100vh - 56px);
  background: var(--pale-blue);
}

.hero-teal {
  background: var(--teal);
  color: #fff;
  min-height: 219px;
  padding: 24px;
}

.hero-title,
.plain-title {
  margin: 0;
  color: var(--deep);
  font-family: "Work Sans", Arial, Helvetica, sans-serif;
  font-size: 40px;
  line-height: 1.08;
  font-weight: 900;
}

.hero-teal .hero-title {
  color: #fff;
  font-size: 28.8px;
  font-weight: 700;
  line-height: 40px;
  margin: -5px 0 5px;
}

.title-underline {
  width: 32px;
  height: 4px;
  background: #fff;
  margin: 12px 0 40px;
}

.hero-teal p {
  margin: 0;
  font-size: 16px;
  line-height: 24px;
}

.title-block {
  padding: 34px 16px 42px;
  background: #fff;
}

.title-block.compact {
  padding-bottom: 28px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--purple);
  font-weight: 800;
  text-decoration: underline;
}

.section-blue {
  background: var(--pale-blue);
  padding: 20px 24px 24px;
}

.section-pink {
  background: var(--pale-pink);
  padding: 32px 32px 34px;
}

.country-page {
  min-height: 0;
  padding-bottom: 24px;
  background: #fff;
}

.country-panel {
  min-height: 314px;
  color: #27004c;
}

.country-label {
  display: block;
  margin: 24px 0 8px;
  color: #27004c;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
}

.country-select {
  position: relative;
  width: 100%;
  z-index: 3;
}

.country-divider {
  margin: 24px 0;
}

.country-format-title {
  margin-top: 0;
}

.country-format-note {
  margin: 12px 0 18px;
  color: #27004c;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  line-height: 21px;
}

.preparation-page {
  background: #fff;
}

.preparation-article {
  width: 430px;
  margin: 30px 0 0;
  padding: 0;
  color: #333;
  background: transparent;
  font-family: "Open Sans", Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 16px;
  line-height: 24px;
}

.prep-title-container {
  width: 430px;
  height: 56px;
  margin: 0 0 40px;
  padding: 0 16px;
}

.prep-page-heading {
  width: 398px;
  height: 56px;
  margin: 0;
  color: #27004c;
  font-family: "Work Sans", Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 40px;
  font-weight: 800;
  line-height: 56px;
}

.prep-content-wrap {
  width: 430px;
  margin: 0 0 24px;
}

.prep-panel {
  width: 430px;
  padding: 24px;
  background: #e5eff8;
  color: #333;
}

.prep-panel > h2 {
  width: 382px;
  min-height: 62.375px;
  margin: 0 0 30px;
  color: #23085a;
  font-family: "Work Sans", Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 31.2px;
}

.prep-services {
  width: 382px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.prep-card {
  width: 382px;
  margin: 0;
  padding: 24px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 4px rgb(0 0 0 / 25%);
}

.prep-card-inner,
.prep-access-block {
  width: 334px;
  margin: 0;
  padding: 0;
}

.prep-card-title {
  width: 334px;
  min-height: 31.1875px;
  margin: 0 0 30px;
  color: #23085a;
  font-family: "Work Sans", Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 31.2px;
}

.prep-panel p,
.prep-card p,
.prep-access-block > p {
  margin: 0 0 25px;
  color: #333;
  font-family: "Open Sans", Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.prep-premium-title {
  color: #23085a;
}

.prep-premium-red {
  color: #e31837;
}

.prep-ready-red {
  color: #ea0034;
}

.prep-ready-head {
  width: 334px;
  min-height: 118.1875px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.prep-free-pill {
  width: 167px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 25px;
  padding: 0;
  border-radius: 50px;
  background: #ffe300;
  color: #000;
  font-size: 11.2px;
  font-weight: 700;
  line-height: 16.8px;
}

.preparation-page .prep-btn {
  width: 236.156px;
  min-height: 50.3438px;
  display: inline-block;
  margin: 0;
  padding: 13.824px 35px;
  border: 2px solid rgb(0 0 0 / 0%);
  border-radius: 100px;
  background: #005cb9;
  color: #fff;
  font-family: "Open Sans", Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 14.4px;
  font-weight: 700;
  line-height: 18.72px;
  text-align: center;
}

.prep-materials {
  width: 382px;
  margin: 25px 0;
  color: #333;
  font-size: 16px;
  line-height: 24px;
}

.prep-external-link {
  color: #005cb9;
  text-decoration: none;
}

.prep-external-link svg {
  width: 16px;
  height: 16px;
  margin: 0 0 0 4px;
  vertical-align: -2px;
}

.help-page {
  background: #fff;
}

.help-app-contents {
  width: 430px;
  display: flex;
  margin: 30px 0 0;
  padding: 0;
  color: #333;
  font-family: "Open Sans", Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 16px;
  line-height: 24px;
}

.help-title-container {
  width: 430px;
  height: 56px;
  margin: 0 0 40px;
  padding: 0 16px;
}

.help-page-heading {
  width: 398px;
  height: 56px;
  margin: 0;
  color: #27004c;
  font-family: "Work Sans", Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 40px;
  font-weight: 800;
  line-height: 56px;
}

.help-content-wrap {
  width: 430px;
  margin: 0 0 24px;
}

.help-panel {
  width: 430px;
  min-height: 1798.0834px;
  padding: 24px;
  background: #e5eff8;
  color: #333;
}

.help-test-label {
  width: 382px;
  height: 79px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin: 0 0 30px;
}

.help-test-label p {
  width: 382px;
  margin: 0;
  color: #333;
  font-size: 16px;
  line-height: 24px;
}

.help-select-wrap,
.select-search,
.select-search__value {
  position: relative;
  width: 382px;
  height: 50px;
}

.select-search__input {
  width: 382px;
  height: 50px;
  display: block;
  margin: 0;
  padding: 6px 62px 6px 48px;
  border: 0.666667px solid #b3b3b3;
  border-radius: 3px;
  background: #fff;
  color: #333;
  font-family: "Open Sans", Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 16px;
  line-height: 48px;
}

.select-search__indicator,
.select-search__icon {
  position: absolute;
  top: 0;
  width: 24px;
  height: 24px;
  pointer-events: none;
}

.select-search__indicator {
  right: 0;
  top: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 3px 3px 0;
  background: #0068c9;
  color: #93bee9;
}

.select-search__icon {
  left: 14px;
  top: 11px;
  color: #23085a;
}

.select-search__indicator .sort-icon,
.select-search__icon .search-icon {
  width: 24px;
  height: 24px;
  margin: 0;
}

.select-search__indicator .sort-icon {
  color: #93bee9;
  fill: currentColor;
}

.select-search__icon .search-icon {
  width: 22px;
  height: 22px;
  color: #23085a;
}

.select-search__icon .search-icon path {
  stroke-width: 2;
}

.help-exam-title,
.help-section-heading {
  width: 382px;
  margin: 0 0 30px;
  color: #23085a;
  font-family: "Work Sans", Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 31.2px;
}

.help-user-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: 382px;
  height: 52.8125px;
  color: #333;
}

.help-user-name {
  width: 92.3125px;
  height: 52.8125px;
  font-size: 17.6px;
  line-height: 26.4px;
}

.help-reference-wrap {
  width: 269.6875px;
  height: 52.8125px;
  font-size: 12.8px;
  line-height: 25.6px;
}

.help-reference {
  display: block;
  font-size: 12.8px;
  font-weight: 400;
  line-height: 25.6px;
}

.help-divider {
  width: 382px;
  height: 0;
  margin: 32px 0;
  border: 0;
  border-top: 4px dotted #91a3af;
}

.help-intro,
.help-panel p,
.help-questions p {
  width: 382px;
  margin: 0 0 25px;
  color: #333;
  font-family: "Open Sans", Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 16px;
  line-height: 24px;
}

.help-test-label p {
  width: 382px;
  margin: 0;
  font-size: 16px;
  line-height: 24px;
}

.help-dl {
  width: 382px;
  margin: 0 0 17px;
  color: #333;
  font-size: 16px;
  line-height: 24px;
}

.help-dl dt {
  display: block;
  font-weight: 700;
}

.help-dl dd {
  display: block;
  margin: 0;
  font-weight: 700;
}

.help-email {
  margin-bottom: 30px;
}

.help-alert {
  width: 382px;
  height: 93.7396px;
  margin: 0 0 30px;
  padding: 12.768px 19px;
  border: 0.666667px solid #edcf93;
  background: #fcf8e4;
  color: #8b6c3d;
  font-size: 15.2px;
  line-height: 22.8px;
}

.help-alert .help-alert-ref {
  width: 342.667px;
  height: 21.2812px;
  margin: 0;
  color: #8b6c3d;
  font-size: 15.2px;
  font-weight: 700;
  line-height: 21.28px;
}

.help-questions {
  width: 382px;
}

.help-questions strong {
  font-weight: 700;
}

.help-questions a {
  color: var(--purple);
  font-weight: 600;
  text-decoration: underline;
}

.help-other-title {
  width: 382px;
  height: 23.0833px;
  margin: 0 0 17px;
  color: #333;
  font-family: "Work Sans", Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 17.76px;
  font-weight: 700;
  line-height: 23.088px;
}

.help-quick-question,
.help-more {
  width: 382px;
  margin: 0 0 25px;
  color: #333;
  font-size: 16px;
  line-height: 24px;
}

.help-page .help-action-btn {
  width: 236.156px;
  height: 50.3542px;
  display: inline-block;
  margin: 0;
  padding: 13.824px 35px;
  border: 2px solid rgb(0 0 0 / 0%);
  border-radius: 100px;
  background: #005cb9;
  color: #fff;
  font-size: 14.4px;
  font-weight: 700;
  line-height: 18.72px;
  text-align: center;
}

.help-page .help-contact-btn {
  width: 268.615px;
}

.result-page {
  background: #fff;
}

.result-app-contents {
  width: 430px;
  display: block;
  margin: 30px 0 0;
  padding: 0;
  color: #333;
  font-family: "Open Sans", Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 16px;
  line-height: 24px;
}

.result-summary {
  width: 430px;
  padding: 0 24px 30px;
  background: #fff;
}

.result-container {
  width: 382px;
  margin: 0;
}

.result-summary h2 {
  width: 382px;
  margin: 0 0 30px;
  color: #23085a;
  font-family: "Work Sans", Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 31.2px;
}

.result-meta {
  width: 382px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #333;
}

.result-name {
  font-size: 17.6px;
  line-height: 26.4px;
}

.result-reference {
  width: 246px;
  font-size: 12.8px;
  line-height: 25.6px;
}

.result-content-section {
  width: 430px;
  padding: 24px;
  background: #e5eff8;
}

.result-panel {
  width: 382px;
  margin: 0;
  padding: 0;
}

.result-alert {
  width: 382px;
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 16px;
  padding: 12px 16px;
  border: 1px solid;
  border-radius: 0;
  background: #fff;
  font-size: 15.2px;
  line-height: 22.8px;
}

.result-alert-success {
  border-color: #d0e6ce;
  color: #2f6f2a;
  background: #eef8ed;
}

.result-alert-info {
  border-color: #b9d6ec;
  color: #005cb9;
  background: #edf6ff;
}

.result-alert-icon {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: currentColor;
  color: #fff;
  font-weight: 700;
  line-height: 24px;
}

.result-alert .contents {
  flex: 1 1 auto;
}

.result-alert .muiltr-1osgnyu {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.result-alert a,
.result-link-action,
.result-back-top,
.result-score-link button {
  color: #005cb9;
  font-weight: 700;
  text-decoration: none;
}

.result-alert button {
  width: auto;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font-size: 24px;
  line-height: 24px;
}

.result-mobile-tab {
  width: 382px;
  margin: 24px 0 24px;
}

.result-tab-input {
  width: 382px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border: 1px solid #b3b3b3;
  border-radius: 3px;
  background: #fff;
  color: #333;
  font-size: 16px;
  line-height: 24px;
}

.result-tab-input .chevron-icon {
  width: 18px;
  height: 18px;
  color: #005cb9;
}

.result-overall {
  width: 382px;
  display: grid;
  grid-template-columns: 1fr 136px;
  grid-template-areas:
    "title score"
    "link score";
  align-items: center;
  margin: 0 0 24px;
}

.result-overall-heading {
  grid-area: title;
}

.result-overall-heading h3 {
  margin: 0 0 12px;
  color: #23085a;
  font-family: "Work Sans", Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 17.76px;
  font-weight: 700;
  line-height: 23.088px;
}

.result-overall-score {
  grid-area: score;
  justify-self: end;
}

.result-big-score {
  display: inline-block;
  position: relative;
  width: 112px;
  height: 112px;
}

.result-big-score .source-score-svg {
  width: 112px;
  height: 112px;
}

.result-big-score strong {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #23085a;
  font-family: "Work Sans", Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 56px;
}

.result-score-link {
  grid-area: link;
}

.result-score-link button,
.result-link-action,
.result-back-top {
  display: inline-block;
  width: auto;
  min-height: 0;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 16px;
  line-height: 24px;
}

.result-card {
  width: 382px;
  margin: 0 0 24px;
  padding: 24px;
  border-radius: 12px;
  background: #fff;
  box-shadow: rgb(0 0 0 / 25%) 0 4px 4px 0;
  color: #333;
}

.result-card h2 {
  width: 334px;
  margin: 0 0 30px;
  color: #23085a;
  font-family: "Work Sans", Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 31.2px;
}

.result-card p {
  width: 334px;
  margin: 0 0 25px;
  font-size: 16px;
  line-height: 24px;
}

.result-link-action {
  width: 334px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 18px;
  text-align: left;
}

.result-action-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  flex: 0 0 42px;
  align-items: center;
  justify-content: center;
  color: #005cb9;
  font-size: 34px;
  line-height: 42px;
}

.result-default-btn {
  width: 155px;
  min-height: 50.3438px;
  padding: 13.824px 35px;
  border: 2px solid #005cb9;
  border-radius: 100px;
  background: #fff;
  color: #005cb9;
  font-size: 14.4px;
  font-weight: 700;
  line-height: 18.72px;
}

.result-previous-btn {
  width: 320px;
  min-height: 50.3438px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 24px 0 0;
  padding: 13.824px 24px;
  border: 2px solid #005cb9;
  border-radius: 100px;
  background: transparent;
  color: #111;
  font-size: 14.4px;
  font-weight: 700;
  line-height: 18.72px;
  text-align: center;
  text-decoration: none;
}

.result-divider {
  width: 382px;
  height: 0;
  margin: 32px 0;
  border: 0;
  border-top: 4px dotted #91a3af;
}

.result-section-title {
  width: 382px;
  margin: 0 0 30px;
  color: #23085a;
  font-family: "Work Sans", Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 31.2px;
}

.result-score-row-wrap {
  width: 382px;
  margin: 0;
}

.result-score-row {
  width: 382px;
  min-height: 48px;
  margin: 0 0 8px;
  padding: 12px 18px;
  border-radius: 12px;
  background: #fff;
  box-shadow: rgb(0 0 0 / 25%) 0 1px 2px 0;
}

.result-band {
  width: 346px;
  min-height: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #333;
  font-size: 16px;
  line-height: 24px;
}

.result-band-name {
  display: flex;
  align-items: center;
  gap: 0;
}

.result-band-icon {
  width: 36px;
  height: 22px;
  flex: 0 0 36px;
  display: inline-block;
  position: relative;
}

.result-band-icon::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 17px;
  height: 20px;
  border: 3px solid #ea0034;
  border-radius: 4px;
}

.result-band-icon::after {
  content: "";
  position: absolute;
  right: 11px;
  top: 2px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #23085a;
}

.result-band-score {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  font-size: 16px;
  line-height: 24px;
}

.result-score-note {
  max-width: 140px;
  color: #005cb9;
  font-size: 12.8px;
  line-height: 19.2px;
  text-align: right;
}

.result-explanations h3 {
  width: 382px;
  margin: 0 0 25px;
  color: #23085a;
  font-family: "Work Sans", Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 17.76px;
  font-weight: 700;
  line-height: 23.088px;
}

.result-explanation-block {
  width: 382px;
  margin: 0 0 32px;
}

.result-explanation-block p {
  width: 382px;
  margin: 0 0 25px;
  color: #333;
  font-size: 14.4px;
  line-height: 21.6px;
}

.result-quote {
  width: 382px;
  margin: 0;
  padding: 16px;
  border-left: 4px solid #005cb9;
  background: #fff;
  color: #333;
  font-size: 14.4px;
  line-height: 21.6px;
}

.result-back-top {
  color: #005cb9;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}

.result-page {
  background: #e5eff8;
}

.result-app-contents {
  width: 430px;
  margin: 30px 0 0;
  background: transparent;
}

.result-summary {
  width: 430px;
  margin: -30px 0 30px;
  padding: 15px 0;
  background: #fafcff;
}

.result-summary .result-container {
  width: 430px;
  margin: 0;
  padding: 0 20px;
}

.result-summary h2 {
  width: 390px;
  min-height: 31.1979px;
  margin: 0 0 10px;
  color: #23085a;
  font-family: "Work Sans", Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 31.2px;
}

.result-summary .muiltr-5qwjrd {
  color: #23085a;
  font-family: "Work Sans", Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 19.68px;
  font-weight: 700;
  line-height: 25.584px;
}

.result-meta {
  width: 390px;
  min-height: 101.615px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0;
  color: #333;
}

.result-name {
  width: 182.406px;
  height: 26.4062px;
  font-size: 17.6px;
  line-height: 26.4px;
}

.result-reference {
  width: 218.531px;
  height: 51.2083px;
  font-size: 12.8px;
  line-height: 25.6px;
}

.result-content-section {
  width: 430px;
  margin: 0;
  padding: 0 0 30px;
  background: #e5eff8;
}

.result-content-section .result-container,
.result-panel {
  width: 430px;
  margin: 0;
  padding: 0;
}

.result-alert {
  position: relative;
  width: 390px;
  display: flex;
  align-items: center;
  gap: 0;
  margin: -10px 0 50px 20px;
  padding: 8px 20px;
  border: 0;
  border-radius: 50px 0;
  color: #333;
  font-size: 16px;
  line-height: 24px;
  box-shadow: none;
}

.result-alert-success {
  min-height: 48px;
  background: rgb(215 255 197 / 70%);
}

.result-alert-info {
  min-height: 64px;
  background: rgb(0 92 185 / 20%);
}

.result-alert-info .result-alert-icon {
  color: #005cb9;
}

.result-alert-retake {
  min-height: 112px;
  align-items: center;
  margin-bottom: 50px;
  padding: 8px 20px;
}

.result-alert-retake .contents,
.result-alert-retake .muiltr-1osgnyu {
  width: 350px;
  flex: 0 0 350px;
}

.result-alert-retake .muiltr-1osgnyu {
  display: flex;
}

.result-alert-icon {
  position: absolute;
  left: -10px;
  top: -10px;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  display: block;
  margin: 0 12px 0 0;
  border-radius: 0;
  background: transparent;
  color: #333;
  line-height: 30px;
}

.result-alert-icon svg {
  width: 30px;
  height: 30px;
  display: block;
}

.result-alert .contents {
  width: 350px;
  flex: 0 0 350px;
  margin-left: 0;
  padding: 0;
}

.result-alert .muiltr-1osgnyu {
  width: 350px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.result-alert a {
  color: #005cb9;
  font-weight: 700;
  text-decoration: none;
}

.result-alert button {
  width: auto;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #005cb9;
  font-size: 24px;
  line-height: 24px;
}

.result-alert.is-closing {
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.result-mobile-tab {
  width: 430px;
  height: 60px;
  margin: -30px 0 30px;
  padding: 20px 20px 0;
  background: #e5eff8;
}

.result-tab-input {
  width: 390px;
  height: 40px;
  display: block;
  padding: 4px 18px;
  border: 2px solid #005cb9;
  border-radius: 30px;
  background: #fff;
  color: #333;
  font-size: 16px;
  line-height: 30px;
}

.result-tab-input b {
  font-weight: 700;
}

.result-tab-input svg {
  float: right;
  width: 15px;
  height: 16px;
  margin-top: 7px;
}

.result-tab-contents {
  width: 430px;
  margin: 0;
  padding: 0;
}

.result-tab-contents > .result-overall,
.result-tab-contents > .result-pointer,
.result-tab-contents > .result-card,
.result-tab-contents > .result-divider,
.result-tab-contents > .result-section-title,
.result-tab-contents > .result-score-row-wrap,
.result-tab-contents > .result-explanations,
.result-tab-contents > .result-previous-btn,
.result-tab-contents > .result-back-top {
  margin-left: 24px;
  margin-right: 24px;
}

.result-overall {
  width: 382px;
  height: 89.1979px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0;
  margin-bottom: 0;
}

.result-overall-heading,
.result-overall-score,
.result-score-link {
  width: 127.333px;
  display: flex;
  align-items: center;
}

.result-overall-heading {
  height: 63.1667px;
  justify-content: flex-start;
}

.result-overall-heading h3 {
  width: 127.333px;
  margin: 0;
  color: #23085a;
  font-family: "Work Sans", Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 17.76px;
  font-weight: 700;
  line-height: 23.088px;
}

.result-overall-score {
  height: 89.1979px;
  justify-content: center;
}

.result-big-score {
  width: 83.1979px;
  height: 89.1979px;
}

.result-big-score .source-score-svg {
  width: 83.1979px;
  height: 83.1979px;
}

.result-big-score strong {
  color: #23085a;
  font-family: "Work Sans", Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 44px;
}

.result-score-link {
  justify-content: flex-end;
}

.result-score-link button {
  width: 116px;
  color: #005cb9;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  text-align: right;
  text-decoration: none;
}

.result-pointer {
  width: 49.3333px;
  height: 20px;
  margin-top: 3px;
  margin-bottom: 0;
  margin-left: 190.333px !important;
  margin-right: 0 !important;
  border-left: 24.6667px solid transparent;
  border-right: 24.6667px solid transparent;
  border-bottom: 20px solid #fff;
}

.result-card {
  width: 382px;
  margin-top: 0;
  margin-bottom: 0;
  padding: 24px;
  border-radius: 12px;
  background: #fff;
  box-shadow: rgb(0 0 0 / 25%) 0 4px 4px 0;
}

.result-card p {
  width: 334px;
  margin: 0 0 25px;
  color: #333;
  font-size: 16px;
  line-height: 24px;
}

.result-card [data-testid="overall-score-explanation"] {
  font-weight: 400;
}

.result-link-action {
  width: 334px;
  height: 54px;
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  margin: 0;
  padding: 1px 6px;
  border: 2px outset transparent;
  border-radius: 0;
  background: transparent;
  color: #005cb9;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  text-align: center;
  text-decoration: none;
}

.result-action-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #000;
}

.result-action-icon svg {
  width: 48px;
  height: 48px;
  fill: currentColor;
}

.result-link-text {
  width: 246px;
  display: block;
  color: #005cb9;
  text-align: center;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.result-divider {
  width: 382px;
  height: 0;
  margin-top: 32px;
  margin-bottom: 32px;
  border: 0;
  border-top: 4px dotted #91a3af;
}

.result-section-title {
  width: 382px;
  margin-top: 0;
  margin-bottom: 30px;
  color: #23085a;
  font-family: "Work Sans", Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 31.2px;
}

.result-score-row-wrap {
  width: 382px;
  margin-top: 0;
  margin-bottom: 0;
}

.result-score-row {
  width: 382px;
  min-height: 48px;
  margin: 0 0 8px;
  padding: 12px 18px;
  border-radius: 12px;
  background: #fff;
  box-shadow: rgb(0 0 0 / 25%) 0 1px 2px 0;
}

.result-score-row-bold {
  min-height: 50.6354px;
  margin-bottom: 0;
}

.result-score-row-retake {
  background: rgb(252, 248, 227);
}

.result-band {
  width: 346px;
  min-height: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #333;
  font-size: 16px;
  line-height: 24px;
}

.result-score-row-retake .result-band {
  min-height: 48px;
}

.result-band-name {
  display: flex;
  align-items: center;
  gap: 0;
}

.result-band-icon {
  width: 36px;
  height: 22px;
  flex: 0 0 36px;
  display: block;
  position: relative;
}

.result-band-icon::before,
.result-band-icon::after {
  content: none;
}

.result-band-icon svg {
  display: block;
  max-width: 30px;
  height: 20px;
  margin-top: 1px;
}

.result-band-score {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
  color: #333;
  font-size: 16px;
  line-height: 24px;
  text-align: right;
}

.result-score-note {
  width: 112.427px;
  max-width: none;
  display: flex;
  align-items: center;
  margin: 0 20px 0 0;
  color: #333;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: right;
}

.result-score-note a {
  color: #005cb9;
  text-decoration: none;
}

.result-score-row-bold .result-band-name,
.result-score-row-bold .result-band-score {
  font-size: 17.76px;
  font-weight: 700;
  line-height: 26.64px;
}

.result-explanations {
  width: 382px;
  margin-top: 30px;
  padding: 0;
}

.result-explanations h3 {
  width: 382px;
  margin: 0 0 17px;
  color: #333;
  font-family: "Work Sans", Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 17.76px;
  font-weight: 700;
  line-height: 23.088px;
}

.result-explanation-block {
  width: 382px;
  margin: 0 0 36px;
}

.result-explanation-block p {
  width: 382px;
  margin: 0 0 25px;
  color: #333;
  font-size: 14.4px;
  line-height: 21.6px;
}

.result-quote {
  width: 382px;
  margin: 0 0 20px;
  padding: 0 0 0 16px;
  border: 0;
  border-left: 4px solid #005cb9;
  background: transparent;
  color: #333;
  font-size: 16px;
  line-height: 24px;
}

.result-quote b {
  display: block;
  margin: 0 0 10px;
}

.result-footer-gap {
  width: 430px;
  height: 34px;
  margin: 30px 0 -30px;
  background: #fff;
}

.recognising-page {
  background: #e5eff8;
}

.recognising-app-contents {
  min-height: 1645.646px;
}

.recognising-content-section {
  padding-bottom: 30px;
}

.recognising-panel {
  background: transparent;
}

.recognising-tabs-desktop {
  display: none;
}

.recognising-mobile-tab {
  margin: -30px 0 30px;
}

.recognising-tab-contents {
  width: 430px;
  margin: 0;
  padding: 0;
}

.recognising-tab-inner {
  width: 430px;
  margin: 0;
  padding: 0;
}

.recognising-quote {
  width: 382px;
  min-height: 421px;
  margin: 0 24px 25px;
  padding: 0 0 0 16px;
  border: 0;
  border-left: 4px solid #005cb9;
  background: transparent;
  color: #333;
  font-size: 16px;
  line-height: 24px;
}

.recognising-quote b {
  display: block;
  margin: 0 0 10px;
}

.recognising-quote p {
  width: 362px;
  margin: 0 0 25px;
  color: #333;
  font-size: 16px;
  line-height: 24px;
}

.recognising-copy {
  width: 382px;
  margin: 0 24px;
  padding: 0;
}

.recognising-copy h2 {
  width: 382px;
  margin: 0 0 30px;
  color: #23085a;
  font-family: "Work Sans", Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 31.2px;
}

.recognising-copy .recognising-how-title {
  width: 300px;
  margin: 0 0 34px 8px;
}

.recognising-copy p {
  width: 382px;
  margin: 0 0 25px;
  color: #333;
  font-size: 16px;
  line-height: 24px;
}

.recognising-copy .recognising-how-intro {
  width: 366px;
  margin: 0 0 28px 8px;
}

.recognising-list {
  width: 342px;
  margin: 20px;
  padding: 0 0 0 20px;
  color: #333;
  font-size: 16px;
  line-height: 24px;
}

.recognising-list li {
  margin: 0 0 4.8px;
  padding: 1.6px 0;
}

.recognising-note {
  width: 382px;
  min-height: 118.0625px;
  margin: 0 0 30px;
  padding: 12.768px 19px;
  border: 0.666667px solid #edcf93;
  border-radius: 0;
  background: rgb(252, 248, 228);
  color: #8b6c3d;
  font-size: 15.2px;
  line-height: 22.8px;
}

.recognising-list-default {
  margin-top: 0;
  margin-bottom: 0;
}

.recognising-how-list {
  width: 342px;
  margin-left: 28px;
  margin-right: 20px;
  margin-bottom: 36px;
}

.recognising-how-list li {
  margin-bottom: 9px;
  padding: 0;
  line-height: 27px;
}

.recognising-empty {
  width: 382px;
  min-height: 24px;
  margin: 0 24px 34px 32px;
  padding: 0 0 0 14px;
  border: 0;
  border-left: 5px solid #708891;
  background: transparent;
  color: #333;
  font-size: 18px;
  line-height: 24px;
}

.recognising-empty b {
  display: none;
}

.recognising-action-wrap {
  width: 382px;
  margin: 0 24px 0 32px;
  padding-top: 0;
}

.recognising-page .recognising-primary {
  width: 266px;
  min-height: 56px;
  display: inline-block;
  margin: 0;
  padding: 16px 35px;
  border: 2px solid transparent;
  border-radius: 100px;
  background: #005cb9;
  color: #fff;
  font-family: "Open Sans", Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  text-align: center;
}

.recognising-footer-gap {
  height: 34px;
  margin-top: 22px;
}

.account-page {
  background: #fff;
}

.account-app-contents {
  width: 430px;
  display: flex;
  margin: 30px 0 0;
  padding: 0;
  color: #333;
  font-family: "Open Sans", Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 16px;
  line-height: 24px;
}

.account-title-container {
  width: 430px;
  height: 56px;
  margin: 0 0 40px;
  padding: 0 16px;
}

.account-page-heading {
  width: 398px;
  height: 56px;
  margin: 0;
  color: #27004c;
  font-family: "Work Sans", Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 40px;
  font-weight: 800;
  line-height: 56px;
}

.account-content-wrap {
  width: 430px;
  margin: 0 0 24px;
}

.account-panel {
  width: 430px;
  padding: 24px;
  background: #e5eff8;
  color: #333;
}

.account-dl {
  width: 382px;
  margin: 15px 0;
  color: #333;
  font-size: 16px;
  line-height: 24px;
}

.account-dl dt,
.account-dl dd {
  display: block;
  margin: 0;
  padding: 1.6px 0;
  font-weight: 700;
}

.account-dl dd {
  margin-bottom: 4.8px;
}

.account-email-block {
  width: 382px;
  margin: 0 0 10px;
}

.account-email-row {
  width: 382px;
  min-height: 89.1719px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.account-email-dl {
  width: 211.781px;
}

.account-divider {
  width: 382px;
  height: 0;
  margin: 32px 0;
  border: 0;
  border-top: 4px dotted #91a3af;
}

.account-section {
  width: 382px;
  margin: 0;
}

.account-section h2 {
  width: 382px;
  min-height: 31.1875px;
  margin: 0 0 30px;
  color: #23085a;
  font-family: "Work Sans", Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 31.2px;
}

.account-checkbox {
  width: 382px;
  height: 116px;
  margin: 10px 0;
}

.account-checkbox label,
.account-radio label {
  position: relative;
  width: 382px;
  display: inline-block;
  margin: 0;
  padding: 10px 0 10px 65px;
  color: #333;
  font-size: 16px;
  line-height: 24px;
}

.account-checkbox input {
  position: absolute;
  left: 13px;
  top: 50%;
  width: 18px;
  height: 18px;
  margin: -8.5px 0 0;
  padding: 0;
  -webkit-appearance: none;
  appearance: none;
  background: #005cb9;
  border: 2.66667px double #fff;
  border-radius: 0;
  box-shadow: #f2f7fb 0 0 0 13px, #005cb9 0 0 0 14px;
}

.account-radio input {
  position: absolute;
  left: 13px;
  top: 50%;
  width: 18px;
  height: 18px;
  margin: -8.5px 0 0;
  padding: 0;
  -webkit-appearance: none;
  appearance: none;
  background: #fff;
  border: 0.666667px solid #b3b3b3;
  border-radius: 50%;
  box-shadow: #fff 0 0 0 13px;
}

.account-radio input:checked {
  background: #005cb9;
  border: 2.66667px double #fff;
  box-shadow: #f2f7fb 0 0 0 13px, #005cb9 0 0 0 14px;
}

.account-note-line {
  width: 322px;
  height: 48px;
  display: flex;
  align-items: center;
  gap: 0;
  margin: 10px 0 0 60px;
  color: #333;
  font-size: 16px;
  line-height: 24px;
}

.account-note-line .phone-icon {
  display: block;
  width: 22.1458px;
  height: 30px;
  margin: -2px 19px 0 0;
}

.account-phone {
  display: block;
  width: 109.781px;
  height: 24px;
  margin: 0 4px;
  font-weight: 400;
}

.account-note-line strong {
  display: block;
  width: 66px;
  height: 48px;
  font-weight: 700;
}

.account-marketing {
  width: 382px;
}

.account-marketing .form-group {
  width: 382px;
  height: 334px;
  margin: 0 0 20px;
  padding: 0;
}

.account-radio {
  width: 382px;
  height: 116px;
  margin: -5px 0 10px;
}

.account-radio label {
  height: 116px;
}

.account-radio:first-child {
  height: 140px;
  margin: 10px 0;
}

.account-radio:first-child label {
  height: 140px;
}

.account-radio-short {
  height: 68px;
}

.account-radio-short label {
  height: 68px;
}

.account-small {
  color: #333;
  font-size: 14.4px;
  line-height: 21.6px;
}

.account-small-block {
  width: 382px;
  margin: 0;
  font-size: 14.4px;
  line-height: 21.6px;
}

.account-read-more {
  width: 382px;
  display: block;
  color: #005cb9;
  font-size: 14.4px;
  line-height: 21.6px;
  text-decoration: none;
}

.account-panel p {
  width: 382px;
  margin: 0 0 25px;
  color: #333;
  font-size: 16px;
  line-height: 24px;
}

.account-external-link {
  color: #005cb9;
  text-decoration: none;
}

.account-external-link svg {
  width: 16px;
  height: 16px;
  margin: 0 0 0 4px;
  vertical-align: -2px;
}

.account-download-copy {
  margin: 25px 0 !important;
}

.account-page .account-download-btn {
  width: 236.156px;
  min-height: 50.3438px;
  display: inline-block;
  margin: 0;
  padding: 13.824px 35px;
  border: 2px solid rgb(0 0 0 / 0%);
  border-radius: 100px;
  background: #005cb9;
  color: #fff;
  font-size: 14.4px;
  font-weight: 700;
  line-height: 18.72px;
  text-align: center;
}

.section-white {
  background: #fff;
  padding: 24px;
}

.book-source-page {
  background: #fff;
}

.book-app-contents {
  margin: 32px 0 0;
  background: #fff;
}

.book-title-source {
  width: 100%;
  height: 88px;
  margin: 0 0 40px;
  padding: 0 16px;
  background: #fff;
}

.book-eyebrow-source {
  display: block;
  width: max-content;
  height: 24px;
  margin: 0 0 8px;
  color: var(--purple);
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  text-decoration: underline;
}

.book-page-title {
  margin: 0;
  color: #27004c;
  font-family: "Work Sans", Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 40px;
  font-weight: 800;
  line-height: 56px;
}

.book-panel-source {
  width: 100%;
  min-height: 1926px;
  margin: 0 0 32px;
  padding: 32px;
  background: #f9d1d7;
  color: #27004c;
  overflow-x: hidden;
}

.book-panel-source h2 {
  margin: 0 0 32px;
  color: #27004c;
  font-size: 24px;
  font-weight: 700;
  line-height: 33.6px;
}

.book-search-line {
  width: 100%;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
  margin: 0 0 16px;
  color: #27004c;
  font-size: 16px;
  line-height: 24px;
}

.choose-source-page {
  background: #fff;
}

.choose-app-contents {
  margin: 32px 0 0;
  background: #fff;
}

.choose-title-source {
  width: 100%;
  height: 112px;
  margin: 0 0 40px;
  padding: 0 16px;
  background: #fff;
}

.choose-page-title {
  width: 398px;
  height: 112px;
  margin: 0;
  padding: 0;
  color: #27004c;
  font-family: "Work Sans", Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 40px;
  font-weight: 800;
  line-height: 56px;
}

.choose-panel-source {
  width: 100%;
  min-height: 1191px;
  margin: 0 0 32px;
  padding: 32px;
  background: #f9d1d7;
  color: #27004c;
}

.choose-panel-source h2 {
  width: 366px;
  min-height: 67.1875px;
  margin: 0 0 32px;
  color: #27004c;
  font-family: "Work Sans", Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 33.6px;
}

.choose-group h5 {
  width: 366px;
  height: 28px;
  margin: 0 0 24px;
  color: #27004c;
  font-family: "Open Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
}

.choose-card {
  width: 366px;
  min-height: 288.1875px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 0 0 32px;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: #fff;
  color: #27004c;
  box-shadow: 0 2px 4px -1px rgb(0 0 0 / 20%), 0 4px 5px 0 rgb(0 0 0 / 14%), 0 1px 10px 0 rgb(0 0 0 / 12%);
}

.choose-card-compact {
  min-height: 259.375px;
}

.choose-ukvi-group .choose-card {
  min-height: 312.1875px;
  margin-bottom: 0;
}

.choose-card-content {
  width: 276.86px;
  min-height: 211px;
  display: flex;
  flex-direction: column;
  margin: 24px;
}

.choose-card:not(.choose-card-compact) .choose-card-content {
  min-height: 240.1875px;
}

.choose-ukvi-group .choose-card-content {
  min-height: 264.1875px;
}

.choose-icon-area {
  width: 40px;
  height: 49px;
  flex: 0 0 auto;
  margin: 0 24px 0 0;
  overflow: visible;
}

.choose-card-academic .choose-icon-area,
.choose-card-ukvi .choose-icon-area {
  height: 69px;
}

.choose-card-general .choose-icon-area {
  height: 49px;
}

.choose-icon-area svg {
  display: inline;
  width: 40px;
  height: auto;
  max-width: none;
}

.choose-card-academic .choose-icon-area svg,
.choose-card-ukvi .choose-icon-area svg {
  height: 63px;
}

.choose-card-general .choose-icon-area svg {
  height: 43px;
}

.choose-copy {
  width: 276.86px;
  min-width: 0;
}

.choose-copy h3 {
  width: 276.86px;
  margin: 0 0 12px;
  color: var(--purple);
  font-family: "Work Sans", Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 39.2px;
}

.choose-copy div {
  width: 276.86px;
  margin: 0;
  color: #27004c;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}

.choose-arrow {
  position: absolute;
  right: 0;
  top: 50%;
  width: 41.14px;
  height: 41.14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  color: var(--purple);
}

.choose-arrow-svg {
  width: 41.14px;
  height: 41.14px;
  fill: currentColor;
}

.choose-footer-source {
  width: 100%;
  height: 58px;
  margin: 0 0 16px;
  padding: 0 16px;
  background: #fff;
}

.choose-footer-source div {
  width: 398px;
  height: 24px;
  margin: 0 0 16px;
}

.choose-footer-source a {
  color: var(--purple);
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  text-decoration: underline;
}

.choose-footer-source p {
  width: 398px;
  height: 18px;
  margin: 0;
  color: #27004c;
  font-size: 12px;
  line-height: 18px;
}

.book-search-line span,
.book-search-line a {
  display: inline-block;
  max-width: 100%;
}

.book-search-line strong {
  font-weight: 700;
}

.book-search-line a,
.book-help-source {
  color: var(--purple);
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  text-decoration: underline;
}

.book-dotted-divider {
  width: 100%;
  height: 0;
  margin: 32px 0;
  border-top: 4px dotted var(--purple);
}

.book-check-source {
  width: 350px;
  max-width: 100%;
  min-height: 54px;
  display: inline-flex;
  gap: 8px;
  align-items: flex-start;
  margin: 0 16px 12px 0;
  color: #27004c;
  font-size: 18px;
  line-height: 27px;
  cursor: pointer;
}

.book-checkbox-source {
  width: 32px;
  height: 32px;
  display: block;
  flex: 0 0 32px;
  margin: 4px 0 0 4px;
  border: 2px solid var(--purple);
  border-radius: 4px;
  background: #fff;
  position: relative;
}

.book-checkbox-source.on {
  background: var(--purple);
}

.book-checkbox-source.on::after {
  content: "";
  position: absolute;
  left: 9px;
  top: 4px;
  width: 9px;
  height: 17px;
  border: solid #fff;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

.book-help-source {
  display: block;
  width: 366px;
  max-width: 100%;
  min-height: 24px;
  margin: 0 0 16px;
}

.book-section-title {
  margin-bottom: 16px !important;
}

.book-format-card {
  width: 366px;
  max-width: 100%;
  min-height: 285px;
  margin: 0 0 32px;
  padding: 24px;
  border-radius: 4px;
  background: #fff;
  color: #27004c;
  box-shadow: 0 2px 4px -1px rgb(0 0 0 / 20%), 0 4px 5px 0 rgb(0 0 0 / 14%), 0 1px 10px 0 rgb(0 0 0 / 12%);
}

.book-format-card h2 {
  width: 318px;
  max-width: 100%;
  margin: 0 0 16px;
  font-size: 24px;
  line-height: 33.6px;
}

.book-format-card ul {
  margin: 20px;
  padding: 0;
}

.book-format-card li {
  margin: 0 0 4.8px;
  padding: 1.6px 0;
  color: #27004c;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 24px;
}

.book-format-card li::marker {
  color: #27004c;
  font-size: 16px;
}

.book-date-title {
  margin-top: 0 !important;
}

.book-radio-group {
  display: flex;
  flex-direction: column;
  width: 366px;
  max-width: 100%;
  min-height: 56px;
}

.book-radio-row {
  width: 350px;
  max-width: 100%;
  height: 40px;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  align-items: center;
  margin: 0 16px 16px 0;
  color: #27004c;
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  line-height: 27px;
  cursor: pointer;
}

.book-check-source:focus-visible,
.book-radio-row:focus-visible {
  outline: 2px solid var(--purple);
  outline-offset: 4px;
}

.book-radio {
  width: 32px;
  height: 32px;
  display: block;
  border: 2px solid var(--purple);
  border-radius: 50%;
  background: #fff;
  position: relative;
}

.book-radio.on::after {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  background: var(--purple);
}

.book-calendar-note {
  width: 366px;
  max-width: 100%;
  height: 48px;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 12px 24px;
  background: #f9d1d7;
  color: #27004c;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 24px;
}

.book-calendar-shell {
  width: 366px;
  max-width: 100%;
  min-height: 0;
  margin: 0;
  padding: 20px 20px 0;
  border-radius: 6px;
  background: #fff;
  color: #27004c;
}

.book-calendar-divider {
  width: 366px;
  max-width: 100%;
  margin: 32px 0;
}

.source-month {
  width: 243px;
  margin: 0 auto;
  display: table;
}

.source-month-caption {
  display: block;
  margin: 0 0 8px;
  padding: 0 8px;
  color: #27004c;
  font-size: 18.4px;
  font-weight: 700;
  line-height: 27.6px;
  text-align: left;
}

.source-calendar-table {
  width: 243px;
  margin: 0 0 30px;
  border-collapse: collapse;
  color: #27004c;
}

.source-calendar-table thead tr {
  border-bottom: 1px solid #27004c;
}

.source-calendar-table th {
  padding: 7px;
  color: #27004c;
  font-size: 14px;
  font-weight: 400;
  line-height: 18.2px;
}

.source-calendar-table td {
  width: 34.3px;
  height: 42px;
  padding: 6px 0 0;
  text-align: center;
}

.source-calendar-table button {
  width: 34.3px;
  height: 36px;
  margin: 0;
  padding: 8px;
  border: 0;
  background: transparent;
  color: var(--purple);
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 20px;
  cursor: pointer;
}

.source-calendar-table button.available {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.source-calendar-table button.pre-selected {
  background: #eee6f9;
  color: #5900c1;
}

.source-calendar-table button.pre-selected.available {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.source-calendar-table button.selected {
  background: #5900c1;
  color: #f0d7fc;
}

.source-calendar-table button.selected.available {
  color: #fff;
  font-weight: 700;
}

.source-calendar-table button.range-start {
  border-radius: 50% 0 0 50%;
}

.source-calendar-table button.range-end {
  border-radius: 0 50% 50% 0;
}

.source-calendar-table button.only-from-selected {
  border-radius: 50% 0 0 50%;
}

.source-calendar-table button.single-selected {
  border-radius: 50%;
  color: #fff;
}

@media (max-width: 389px) {
  .book-panel-source {
    padding: 24px;
  }

  .book-format-card {
    padding: 24px;
  }

  .book-calendar-shell {
    padding: 20px 16px 0;
  }
}

.book-search-button {
  width: 167.615px;
  height: 56px;
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border: 0;
  border-radius: 8px;
  background: #e9e6ed;
  color: #a999b7;
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 27px;
  cursor: default;
}

.book-search-button.is-active {
  background: #5900c1;
  color: #fff;
  cursor: pointer;
}

.book-country-unavailable-panel {
  width: 100%;
  margin: 0 0 32px;
  padding: 32px 32px 24px;
  background: #f9d1d7;
  color: #27004c;
}

.compact-unavailable-shell {
  min-height: 0;
}

.compact-unavailable-shell .book-source-page {
  min-height: 0;
  background: #fff;
}

.compact-unavailable-shell .book-country-unavailable-panel {
  margin-bottom: 32px;
}

.book-country-unavailable-panel h2 {
  width: 100%;
  margin: 0 0 32px;
  color: #27004c;
  font-family: "Work Sans", Arial, Helvetica, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 33.6px;
}

.book-country-unavailable-search {
  width: 100%;
  min-height: 48px;
  display: flex;
  align-items: center;
  margin: 0 0 16px;
  color: #27004c;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 24px;
}

.book-country-unavailable-search p {
  width: 120.323px;
  margin: 0;
  color: #27004c;
}

.book-country-unavailable-search b {
  font-weight: 700;
}

.book-country-unavailable-search a {
  width: 197.677px;
  min-height: 48px;
  display: block;
  margin: 0 0 0 8px;
  padding: 0;
  color: #5900c1;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  text-align: center;
  text-decoration: underline;
}

.book-country-alert {
  width: 100%;
  min-height: 211.99px;
  display: flex;
  margin: 24px 0 0;
  padding: 6px 16px;
  border: 4px solid #e31837;
  color: #27004c;
  background: transparent;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 24px;
}

.book-country-alert-icon {
  width: 30px;
  min-height: 191.99px;
  display: flex;
  margin: 0 12px 0 0;
  padding: 7px 0;
  color: #e31837;
  flex: 0 0 30px;
}

.book-country-alert-icon svg {
  width: 30px;
  height: 30px;
  display: block;
  fill: currentColor;
}

.book-country-alert-message {
  width: calc(100% - 42px);
  padding: 8px 0;
}

.book-country-alert-title {
  margin: -2px 0 8.4px;
  color: #27004c;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 33.6px;
}

.book-country-alert-message p {
  margin: 0;
  color: #27004c;
  font-size: 16px;
  line-height: 24px;
}

.book-country-alert-button {
  width: 160.167px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 16px 0 0;
  padding: 12px 16px;
  border-radius: 8px;
  background: #5900c1;
  color: #fff;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 22.5px;
  text-decoration: none;
}

.search-unavailable-page {
  background: #fff;
}

.action-unavailable-page {
  min-height: calc(100vh - 56px);
  background: #fff;
}

.search-unavailable-panel {
  min-height: 520px;
  padding: 40px 24px 56px;
  background: #ffd5df;
}

.action-unavailable-panel {
  min-height: 620px;
  padding: 44px 24px 64px;
  background: #e5eff8;
}

.search-unavailable-card {
  width: 100%;
  min-height: 324px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 32px 24px;
  border-radius: 6px;
  background: #fff;
  color: #27004c;
}

.action-unavailable-card {
  min-height: 360px;
  box-shadow: rgb(0 0 0 / 16%) 0 4px 8px 0;
}

body.modal-open {
  overflow: hidden;
}

.score-options-modal-root {
  display: flex !important;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 180ms ease;
}

.score-options-modal-root > div:first-child {
  display: none !important;
}

.score-options-modal-root.is-closing {
  opacity: 0;
}

.score-options-dialog {
  width: 430px;
  box-shadow: rgb(0 0 0 / 50%) 0 0 10px 0;
}

.score-options-panel {
  width: 430px;
  min-height: 763.802px;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  border: 0 solid #c2cbce;
  border-radius: 5px;
  background: #fff;
  color: #333;
  font-family: "Open Sans", Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 16px;
  line-height: 24px;
}

.score-options-heading {
  width: 430px;
  min-height: 95.51px;
  margin: 0;
  padding: 17.12px 20px 16px;
  border-radius: 5px 5px 0 0;
  background: #c2cbce;
  color: #333;
  line-height: 20.8px;
}

.score-options-heading-inner {
  width: 390px;
  min-height: 62.396px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.score-options-title {
  width: 337.292px;
  display: block;
  color: #23085a;
  font-size: 24px;
  font-weight: 700;
  line-height: 31.2px;
}

.score-options-close {
  width: 52.708px;
  min-height: 62.396px;
  display: block;
  margin: 0;
  padding: 1px 6px;
  border: 2px outset transparent;
  background: transparent;
  color: #005cb9;
  font-size: 16px;
  font-weight: 700;
  line-height: 20.8px;
  text-align: right;
}

.score-options-body {
  width: 430px;
  flex: 1 1 auto;
  margin: 0;
  padding: 23.104px 20px;
  border-radius: 0 0 5px 5px;
  background: #ebeff0;
  color: #333;
  font-size: 16px;
  line-height: 23.104px;
}

.score-options-body-inner {
  width: 390px;
  margin: 0;
  padding: 0;
}

.score-options-body p {
  width: 390px;
  margin: 0;
  padding: 0;
  color: #333;
  font-size: 16px;
  line-height: 23.104px;
}

.score-options-list {
  width: 390px;
  display: flex;
  flex-direction: column-reverse;
  gap: 20px;
  margin: 24px 0;
  padding: 0;
}

.score-option-card {
  width: 390px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  padding: 1px 6px;
  border: 0;
  border-radius: 12px;
  background: #fff;
  color: #333;
  box-shadow: rgb(0 0 0 / 25%) 0 2px 4px 0;
  cursor: pointer;
  font-family: "Open Sans", Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 23.104px;
  text-align: left;
}

.score-option-card[data-testid="book-new"] {
  min-height: 219.292px;
}

.score-option-card[data-testid="navigate-to-eor"] {
  min-height: 265.5px;
}

.score-option-card .content {
  width: 260.958px;
  display: flex;
  margin: 24px;
  padding: 0;
  color: #3b4244;
}

.score-option-card .icon {
  width: 40px;
  min-height: 53.771px;
  flex: 0 0 40px;
  margin: 0 24px 0 0;
  color: #3b4244;
}

.score-option-card .icon svg {
  width: 40px;
  height: 48px;
  display: block;
  fill: currentColor;
}

.score-option-card .title {
  width: 260.958px;
  margin: 0;
  color: #005cb9;
  font-size: 16px;
  line-height: 23.104px;
}

.score-option-card .title b {
  color: #005cb9;
  font-weight: 700;
}

.score-option-card .arrow-button {
  width: 69.042px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.score-option-card .arrow {
  width: 32px;
  height: 32px;
  color: #005cb9;
  line-height: 0;
}

.score-option-card .arrow svg {
  width: 32px;
  height: 32px;
  display: block;
  fill: currentColor;
}

.score-options-back {
  display: inline-block;
  margin: 0;
  padding: 0;
  color: #005cb9;
  font-size: 16px;
  line-height: 23.104px;
  text-decoration: none;
}

.score-options-back .muiltr-zrro5f {
  display: inline-block;
  color: #005cb9;
}

.score-options-back svg {
  width: 16px;
  height: 16px;
  display: inline;
  margin: 0 6px -2px 0;
  fill: currentColor;
}

.inline-loader {
  width: 56px;
  height: 56px;
  margin: 0 0 24px;
  border: 5px solid #5900c1;
  border-color: #5900c1 transparent #5900c1 transparent;
  border-radius: 50%;
  animation: route-spinner 860ms linear infinite;
}

.search-unavailable-card h2 {
  margin: 0 0 16px;
  color: #27004c;
  font-family: "Work Sans", Arial, Helvetica, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 31.2px;
}

.search-unavailable-card p {
  margin: 0 0 16px;
  color: #27004c;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 24px;
}

.search-unavailable-muted {
  color: #333 !important;
}

.search-unavailable-button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 12px 0 0;
  padding: 12px 16px;
  border-radius: 8px;
  background: #5900c1;
  color: #fff;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 27px;
  text-decoration: none;
}

h2,
h3 {
  color: var(--deep);
  font-family: "Work Sans", Arial, Helvetica, sans-serif;
  line-height: 1.18;
  margin: 0 0 20px;
}

h2 {
  font-size: 24px;
  line-height: 31.2px;
  font-weight: 700;
}

h3 {
  font-size: 22px;
  font-weight: 900;
}

p {
  font-size: 16px;
  line-height: 1.45;
}

.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 4px rgb(0 0 0 / 25%);
  padding: 24px;
  margin: 32px 0 0;
}

.test-card {
  position: relative;
}

.test-card.has-score:not(.retake-card) {
  min-height: 340px;
  margin-bottom: 40px;
}

.test-card.plain-exam {
  min-height: 168px;
}

.test-card.retake-card {
  min-height: 295px;
  margin-bottom: 20px;
}

.exam-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.exam-detail {
  min-width: 0;
  flex: 1 1 auto;
}

.exam-detail h3 {
  margin: 0 0 17px;
}

.test-card a.title {
  display: inline;
  color: #0069b7;
  font-size: 26.72px;
  line-height: 34.736px;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
}

.test-card a.title span {
  display: block;
}

.test-card a.title .retake-title-line {
  margin-top: 5px;
  font-size: 21.376px;
  line-height: 27.7888px;
}

.test-date {
  margin: 0 0 8px;
  color: #333;
  font-size: 17.6px;
  line-height: 26.4px;
  font-weight: 700;
}

.icon-line {
  display: block;
  margin: 0 0 8px;
  color: #54565a;
  font-size: 16px;
  line-height: 24px;
}

.source-icon {
  display: inline-block;
  flex: 0 0 auto;
}

.source-icon path {
  vector-effect: non-scaling-stroke;
}

.menu-icon {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.chevron-icon {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.up-icon {
  transform: rotate(180deg);
}

.drawer-chevron {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.close-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.phone-icon {
  width: 24px;
  height: 24px;
  color: var(--deep);
}

.search-icon {
  width: 24px;
  height: 24px;
  margin-right: 8px;
  vertical-align: middle;
}

.sort-icon {
  width: 20px;
  height: 24px;
  color: var(--deep);
}

.share-icon {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.chat-icon {
  width: 30px;
  height: 37px;
}

.computer-icon {
  width: 24px;
  height: 24px;
  margin: 0 12px -4px 0;
  fill: #54565a;
}

.score {
  flex: 0 0 88px;
  margin-top: 12px;
  text-align: center;
  color: #333;
}

.score span {
  display: block;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 24px;
}

.score strong {
  display: block;
  position: absolute;
  top: 0.64em;
  width: 100%;
  margin: 0;
  text-align: center;
  color: var(--deep);
  font-size: 32px;
  line-height: 48px;
}

.source-score {
  display: inline-block;
  position: relative;
  width: 88px;
  height: 94px;
}

.source-score-svg {
  display: block;
  width: 88px;
  height: 88px;
}

.source-score-svg .spinner-track {
  fill: none;
  stroke: #c8c8c8;
  stroke-width: 12;
}

.source-score-svg .spinner-head {
  fill: none;
  stroke: #00953b;
  stroke-linecap: round;
  stroke-width: 12;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  padding: 12px 24px;
  border: 2px solid rgb(0 0 0 / 0%);
  border-radius: 28px;
  background: var(--blue);
  color: var(--bc-sui-btn-primary-color);
  font-weight: 700;
  text-align: center;
}

.result-btn {
  margin: 5px 0;
  min-height: auto;
  border-radius: 100px;
  font-size: 14.4px;
  line-height: 18.72px;
  padding: 13.824px 35px;
}

.exam-actions {
  display: flex;
  flex-wrap: wrap;
  margin-top: 0;
}

.btn.secondary {
  background: var(--purple);
}

.btn.ghost {
  border: 2px solid var(--blue);
  background: #fff;
  color: var(--blue);
}

.btn.disabled {
  background: #b9bec4;
  color: #fff;
}

.result-page .result-default-btn {
  width: 236.156px;
  min-height: 50.3438px;
  display: inline-block;
  padding: 13.824px 35px;
  border: 2px solid #005cb9;
  border-radius: 100px;
  background: #fff;
  color: #005cb9;
  font-size: 14.4px;
  font-weight: 700;
  line-height: 18.72px;
}

.result-page .result-previous-btn {
  width: 288.0104px;
  height: 50.3542px;
  min-height: 50.3542px;
  display: inline-block;
  margin: 20px 24px 0;
  padding: 13.824px 35px;
  border: 2px solid #005cb9;
  border-radius: 100px;
  background: #fff;
  color: #005cb9;
  font-size: 14.4px;
  font-weight: 700;
  line-height: 18.72px;
  text-align: center;
  text-decoration: none;
}

.link-button {
  display: block;
  width: 100%;
  margin: 5px 0;
  border: 2px solid rgb(0 0 0 / 0%);
  background: transparent;
  color: #005a9c;
  font-weight: 700;
  max-width: none;
  min-height: auto;
  padding: 13.824px 35px;
  font-size: 14.4px;
  line-height: 18.72px;
  text-align: center;
}

.location-line {
  margin: 0 0 8px;
  color: #54565a;
  font-size: 16px;
  line-height: 24px;
}

.osr-badge {
  position: absolute;
  top: -14px;
  right: 24px;
  width: 93px;
  height: 31px;
  display: grid;
  align-items: center;
  padding: 0 16px 4px;
  border-radius: 6px;
  background: #f9d1d7;
  color: #27004c;
  font-family: "Work Sans", Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 27px;
}

.divider {
  border: 0;
  border-top: 4px dotted var(--line);
  margin: 30px 0;
}

.nav-drawer {
  width: 100%;
  min-height: 540px;
  display: flex;
  flex-direction: column;
  background: var(--purple);
  color: #fff;
  box-shadow: none;
}

.drawer-head {
  width: 100%;
  min-height: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  background: var(--purple);
  color: #fff;
}

.drawer-head .brand {
  width: 187.98px;
  height: 25px;
  gap: 16px;
}

.drawer-head .brand img {
  height: 25px;
}

.drawer-close {
  width: 110.55px;
  min-height: 56px;
  height: 56px;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0;
  padding: 12px 12px 12px 16px;
  border-radius: 8px;
  background: rgb(89 0 193 / 4%);
  color: #fff;
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 27px;
}

.close-label {
  font-size: 18px;
  font-weight: 600;
  line-height: 27px;
}

.drawer-close .close-icon {
  width: 32px;
  height: 32px;
  margin: 0;
}

.drawer-collapse {
  width: 100%;
  height: 0;
  min-height: 0;
  background: #fff;
  color: #fff;
  overflow: hidden;
  transition: height 354ms cubic-bezier(0.4, 0, 0.2, 1);
}

.drawer-collapse > div,
.drawer-collapse .MuiCollapse-wrapper,
.drawer-collapse .MuiCollapse-wrapperInner {
  display: flex;
  width: 100%;
}

.drawer-collapse .MuiCollapse-wrapperInner {
  display: block;
}

.shell.menu-open .menu-button {
  display: none;
}

.shell.menu-open .drawer-close {
  display: flex;
}

.shell.menu-open .drawer-collapse {
  height: 560px;
}

.drawer-panel {
  width: 100%;
  min-height: 560px;
  padding: 0 0 16px;
  background: #fff;
}

.drawer-list {
  list-style: none;
  width: 100%;
  margin: 0;
  padding: 0;
}

.drawer-nav-item {
  width: 100%;
  height: 60px;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 27.43px;
  align-items: center;
  justify-content: stretch;
  border: 0;
  border-radius: 0;
  background: #fff;
  color: #27004c;
  padding: 8px 16px;
  font-family: "Open Sans", Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  transition: background-color 120ms cubic-bezier(0.4, 0, 0.2, 1);
}

.drawer-nav-active {
  background: #decaf3;
}

.drawer-nav-item .MuiListItemText-root {
  width: 100%;
  min-width: 0;
  height: 36px;
  margin: 4px 0;
  padding: 0;
  color: #27004c;
}

.drawer-nav-item .MuiListItemText-primary {
  display: block;
  margin: 0;
  padding: 0;
  color: #27004c;
  font-family: "Open Sans", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
}

.drawer-nav-item .drawer-chevron {
  width: 27.43px;
  height: 27.43px;
  justify-self: end;
  margin-left: 0;
  color: #27004c;
  fill: currentColor;
}

.menu-ripple {
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgb(39 0 76 / 14%);
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0);
  animation: menu-ripple 420ms cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes menu-ripple {
  0% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(0);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(2.6);
  }
}

.drawer-divider {
  width: 100%;
  height: 0;
  margin: 8px 0;
  border: 0;
  border-top: 0.6667px solid rgb(0 0 0 / 12%);
}

.drawer-user {
  height: 54px;
}

.drawer-user .MuiListItemText-root {
  height: 30px;
}

.drawer-user .MuiListItemText-primary {
  height: 30px;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
}

.drawer-user .muiltr-171onha {
  display: block;
  height: 30px;
  color: #27004c;
  font-family: "Open Sans", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
}

.drawer-user b {
  display: inline;
  font-weight: 700;
}

.drawer-language {
  height: 88px;
  min-height: 88px;
}

.drawer-language .MuiListItemText-root {
  height: 36px;
  margin: 0;
}

.drawer-language .MuiListItemText-primary {
  height: 36px;
  color: #27004c;
  font-family: "Open Sans", Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
}

.drawer-language .chevron-icon {
  width: 24px;
  height: 24px;
  justify-self: end;
  color: #27004c;
  fill: currentColor;
}

.drawer-logout-wrap {
  width: 100%;
  height: 64px;
  padding: 8px 16px 0;
  background: #fff;
}

.drawer-logout {
  width: 100%;
  height: 56px;
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0;
  padding: 12px 12px 12px 16px;
  border: 0;
  border-radius: 8px;
  background: var(--purple);
  color: #fff;
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 27px;
}

.drawer-logout .MuiButton-startIcon {
  width: 32px;
  height: 32px;
  display: flex;
  margin: 0 8px 0 -4px;
}

.drawer-logout .logout-face-icon {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.select-box {
  width: 100%;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 2px solid var(--purple);
  border-radius: 4px;
  background: #fff;
  color: #27004c;
  padding: 0;
  font-size: 15px;
  line-height: 23px;
  text-align: left;
}

.country-search-input {
  width: 100%;
  min-width: 0;
  height: 51px;
  border: 0;
  outline: 0;
  padding: 16px 8px 16px 16px;
  background: transparent;
  color: #27004c;
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 23px;
}

.country-search-input::placeholder {
  color: #5d4d68;
  opacity: 1;
}

.country-arrow {
  width: 48px;
  height: 51px;
  display: flex;
  flex: 0 0 48px;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: var(--purple);
  padding: 0;
  cursor: pointer;
}

.country-arrow .chevron-icon {
  width: 24px;
  height: 24px;
  fill: var(--purple);
}

.country-select.is-open .country-arrow .chevron-icon {
  transform: rotate(180deg);
}

.select-list {
  position: absolute;
  top: 55px;
  left: 0;
  z-index: 6;
  display: none;
  width: 100%;
  background: #fff;
  border-radius: 4px;
  max-height: 373px;
  overflow-y: auto;
  padding: 8px 0;
  box-shadow: 0 5px 5px -3px rgb(0 0 0 / 20%), 0 8px 10px 1px rgb(0 0 0 / 14%), 0 3px 14px 2px rgb(0 0 0 / 12%);
}

.country-select.is-open .select-list {
  display: block;
}

.select-list a {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 6px 16px;
  color: #27004c;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 24px;
}

.select-list a[hidden],
.select-list a.is-hidden,
.country-no-results[hidden] {
  display: none !important;
}

.country-no-results {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 6px 16px;
  color: #27004c;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 24px;
}

.select-list a:hover,
.select-list a:focus {
  background: #eee6f9;
}

.search-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0 20px;
}

.search-row strong {
  color: var(--deep);
}

.change-link {
  border: 0;
  background: transparent;
  color: #7c7182;
  font-weight: 800;
}

.radio-row,
.check-row {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
  margin: 18px 0;
}

.radio,
.checkbox {
  width: 22px;
  height: 22px;
  display: inline-block;
  border: 2px solid var(--purple);
  background: #fff;
}

.radio {
  border-radius: 50%;
  position: relative;
}

.radio.on:after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: var(--purple);
}

.checkbox.on {
  background: #0672c9;
  box-shadow: inset 0 0 0 4px #dff0ff;
}

.account-panel .account-checkbox,
.account-panel .account-radio {
  display: block;
  position: static;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.account-panel .account-checkbox {
  width: 382px;
  height: 116px;
  margin: 10px 0;
}

.account-panel .account-radio {
  width: 382px;
  height: 116px;
  margin: -5px 0 10px;
}

.account-panel .account-radio:first-child {
  height: 140px;
  margin: 10px 0;
}

.account-panel .account-radio-short {
  height: 68px;
}

.account-panel .account-checkbox label,
.account-panel .account-radio label {
  position: relative;
  display: inline-block;
  width: 382px;
  margin: 0;
  padding: 10px 0 10px 65px;
  border: 0;
  background: transparent;
  color: #333;
  font-size: 16px;
  line-height: 24px;
}

.account-panel .account-checkbox label {
  height: 116px;
}

.account-panel .account-radio label {
  height: 116px;
}

.account-panel .account-radio:first-child label {
  height: 140px;
}

.account-panel .account-radio-short label {
  height: 68px;
}

.account-panel .account-checkbox input,
.account-panel .account-radio input {
  position: absolute;
  left: 13px;
  top: 50%;
  display: block;
  width: 18px;
  height: 18px;
  margin: -8.5px 0 0;
  padding: 0;
  transform: none;
}

.account-panel .account-checkbox input {
  -webkit-appearance: none;
  appearance: none;
  background: #005cb9;
  border: 2.66667px double #fff;
  border-radius: 0;
  box-shadow: #f2f7fb 0 0 0 13px, #005cb9 0 0 0 14px;
}

.account-panel .account-radio input {
  -webkit-appearance: none;
  appearance: none;
  background: #fff;
  border: 0.666667px solid #b3b3b3;
  border-radius: 50%;
  box-shadow: #fff 0 0 0 13px;
}

.account-panel .account-radio input:checked {
  background: #005cb9;
  border: 2.66667px double #fff;
  box-shadow: #f2f7fb 0 0 0 13px, #005cb9 0 0 0 14px;
}

.calendar {
  background: #fff;
  border-radius: 3px;
  padding: 16px 12px;
  margin-top: 18px;
  text-align: center;
}

.month-title {
  color: #333;
  font-weight: 800;
  margin-bottom: 10px;
}

.calendar table {
  width: 100%;
  border-collapse: collapse;
  color: #777;
  font-size: 13px;
}

.calendar th,
.calendar td {
  width: 14.28%;
  padding: 7px 0;
}

.calendar .picked {
  background: var(--purple);
  color: #fff;
  border-radius: 50%;
}

.online-card {
  border-left: 5px solid var(--purple);
}

.test-summary {
  background: #fff;
  padding: 18px 20px;
}

.meta-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 10px 18px;
  margin-top: 16px;
  font-size: 14px;
}

.tab-select {
  width: 100%;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 2px solid #0871bd;
  border-radius: 22px;
  padding: 0 18px;
  color: #0871bd;
  font-weight: 900;
  background: #fff;
}

.session-card {
  padding: 24px;
}

.pink-pill {
  margin: 10px 0 24px 24px;
  padding: 12px 18px;
  background: var(--rose);
  border-radius: 6px;
  color: var(--deep);
  font-weight: 800;
}

.service-card h3 {
  font-style: italic;
}

.tag-yellow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  height: 32px;
  border-radius: 18px;
  background: #ffdf00;
  color: #111;
  font-size: 13px;
  font-weight: 900;
}

.data-block {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 10px 18px;
  margin: 18px 0;
  line-height: 1.5;
}

.icon-data-block {
  grid-template-columns: 32px 1fr;
}

.help-test-select span {
  color: #333;
}

.notice {
  background: #fff9e9;
  border: 1px solid #ecd582;
  padding: 14px 18px;
  color: #7b6430;
  line-height: 1.45;
}

.question {
  margin: 26px 0;
}

.question h3 {
  font-size: 19px;
  margin-bottom: 12px;
}

.faq-list details {
  border-top: 1px solid #ccd7e0;
}

.faq-list summary {
  list-style: none;
  padding: 16px 0;
  color: var(--deep);
  font-weight: 800;
}

.faq-list summary:after {
  content: "+";
  float: right;
  font-size: 22px;
}

.content-page {
  padding: 24px;
}

.content-page h2 {
  margin-top: 28px;
  font-size: 25px;
}

.content-page h3 {
  margin-top: 24px;
  font-size: 20px;
}

.share {
  display: flex;
  gap: 16px;
  align-items: center;
  margin: 20px 0 28px;
  color: #111;
}

.share span {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 900;
}

.footer {
  background: var(--purple);
  color: #fff;
  padding: 0;
}

.footer-inner {
  width: 100%;
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
  padding: 24px;
}

.footer-list {
  list-style: none;
  margin: 0;
  padding: 8px 0 40px;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-list li {
  display: list-item;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-link {
  margin: 0;
  color: #fff;
  font-family: "Open Sans", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.5;
  text-decoration: none;
}

.footer-link:hover,
.footer-link:active,
.footer-link.active {
  color: #e2aff9;
  text-decoration: underline;
}

.footer-divider {
  flex-shrink: 0;
  align-self: center;
  height: 1.25rem;
  margin: 0;
  border-width: 0 2px 0 0;
  border-style: solid;
  border-color: #fff;
}

.footer-copy {
  margin: 0;
  padding: 0 0 24px;
  color: #fff;
  font-family: "Work Sans", Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.5;
}

.footer-note {
  margin: 0;
  color: #fff;
  font-family: "Open Sans", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.5;
}

.chat {
  position: fixed;
  left: calc(50% + 155px);
  bottom: 24px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #222;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 28px;
  box-shadow: 0 3px 8px rgb(0 0 0 / 30%);
}

@media (max-width: 430px) {
  .chat {
    left: auto;
    right: 24px;
  }
}

@media (max-width: 390px) {
  .topbar {
    padding: 0 16px;
  }

  .brand {
    gap: 16px;
  }

  .menu-button {
    gap: 8px;
    font-size: 18px;
  }

  .hero-teal p {
    font-size: 16px;
  }

  .test-card a.title {
    font-size: 26.72px;
  }

  .score strong {
    font-size: 32px;
  }
}

@media (max-width: 360px) {
  .card {
    padding: 22px;
  }

  .exam-row {
    gap: 10px;
  }

  .test-card a.title {
    max-width: none;
    font-size: 26.72px;
  }

  .score {
    flex-basis: 88px;
  }

  .score span {
    margin-bottom: 0;
    font-size: 16px;
  }

  .score strong {
    font-size: 32px;
  }
}

@media (min-width: 431px) {
  body {
    background: #e8ebef;
  }

  body[data-route="signin"] {
    background-attachment: fixed;
    background-image: linear-gradient(to bottom right, #23085a, #b25eff, #d3b8ff);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
  }
}
