@import url('https://fonts.googleapis.com/css2?family=Inter:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Display:wght@300;400;500;600;700&display=swap');
/*
  1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
  2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
  */

*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: theme("borderColor.DEFAULT", currentColor); /* 2 */
}

::before,
::after {
  --tw-content: "";
}

/*
  1. Use a consistent sensible line-height in all browsers.
  2. Prevent adjustments of font size after orientation changes in iOS.
  3. Use a more readable tab size.
  4. Use the user's configured sans font-family by default.
  5. Use the user's configured sans font-feature-settings by default.
  6. Use the user's configured sans font-variation-settings by default.
  7. Disable tap highlights on iOS
  */

html,
:host {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  tab-size: 4; /* 3 */
  font-family: theme(
    "fontFamily.sans",
    ui-sans-serif,
    system-ui,
    sans-serif,
    "Apple Color Emoji",
    "Segoe UI Emoji",
    "Segoe UI Symbol",
    "Noto Color Emoji"
  ); /* 4 */
  font-feature-settings: theme(
    "fontFamily.sans[1].fontFeatureSettings",
    normal
  ); /* 5 */
  font-variation-settings: theme(
    "fontFamily.sans[1].fontVariationSettings",
    normal
  ); /* 6 */
  -webkit-tap-highlight-color: transparent; /* 7 */
}

/*
  1. Remove the margin in all browsers.
  2. Inherit line-height from html so users can set them as a class directly on the html element.
  */

body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}

/*
  1. Add the correct height in Firefox.
  2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
  3. Ensure horizontal rules are visible by default.
  */

hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}

/*
  Add the correct text decoration in Chrome, Edge, and Safari.
  */

abbr:where([title]) {
  text-decoration: underline dotted;
}

/*
  Remove the default font size and weight for headings.
  */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*
  Reset links to optimize for opt-in styling instead of opt-out.
  */

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

/*
  Add the correct font weight in Edge and Safari.
  */

b,
strong {
  font-weight: bolder;
}

/*
  1. Use the user's configured mono font-family by default.
  2. Use the user's configured mono font-feature-settings by default.
  3. Use the user's configured mono font-variation-settings by default.
  4. Correct the odd em font sizing in all browsers.
  */

code,
kbd,
samp,
pre {
  font-family: theme(
    "fontFamily.mono",
    ui-monospace,
    SFMono-Regular,
    Menlo,
    Monaco,
    Consolas,
    "Liberation Mono",
    "Courier New",
    monospace
  ); /* 1 */
  font-feature-settings: theme(
    "fontFamily.mono[1].fontFeatureSettings",
    normal
  ); /* 2 */
  font-variation-settings: theme(
    "fontFamily.mono[1].fontVariationSettings",
    normal
  ); /* 3 */
  font-size: 1em; /* 4 */
}

/*
  Add the correct font size in all browsers.
  */

small {
  font-size: 80%;
}

/*
  Prevent sub and sup elements from affecting the line height in all browsers.
  */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
  1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
  2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
  3. Remove gaps between table borders by default.
  */

table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}

/*
  1. Change the font styles in all browsers.
  2. Remove the margin in Firefox and Safari.
  3. Remove default padding in all browsers.
  */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-feature-settings: inherit; /* 1 */
  font-variation-settings: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  letter-spacing: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}

/*
  Remove the inheritance of text transform in Edge and Firefox.
  */

button,
select {
  text-transform: none;
}

/*
  1. Correct the inability to style clickable types in iOS and Safari.
  2. Remove default button styles.
  */

button,
input:where([type="button"]),
input:where([type="reset"]),
input:where([type="submit"]) {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}

/*
  Use the modern Firefox focus style for all focusable elements.
  */

:-moz-focusring {
  outline: auto;
}

/*
  Remove the additional :invalid styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
  */

:-moz-ui-invalid {
  box-shadow: none;
}

/*
  Add the correct vertical alignment in Chrome and Firefox.
  */

progress {
  vertical-align: baseline;
}

/*
  Correct the cursor style of increment and decrement buttons in Safari.
  */

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/*
  1. Correct the odd appearance in Chrome and Safari.
  2. Correct the outline style in Safari.
  */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/*
  Remove the inner padding in Chrome and Safari on macOS.
  */

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
  1. Correct the inability to style clickable types in iOS and Safari.
  2. Change font properties to inherit in Safari.
  */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/*
  Add the correct display in Chrome and Safari.
  */

summary {
  display: list-item;
}

/*
  Removes the default spacing and border for appropriate elements.
  */

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

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

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

/*
  Reset default styling for dialogs.
  */
dialog {
  padding: 0;
}

/*
  Prevent resizing textareas horizontally by default.
  */

textarea {
  resize: vertical;
}

/*
  1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
  2. Set the default placeholder color to the user's configured gray 400 color.
  */

input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: theme("colors.gray.400", #9ca3af); /* 2 */
}

/*
  Set the default cursor for buttons.
  */

button,
[role="button"] {
  cursor: pointer;
}

/*
  Make sure disabled buttons don't get the pointer cursor.
  */
:disabled {
  cursor: default;
}

/*
  1. Make replaced elements display: block by default. (https://github.com/mozdevs/cssremedy/issues/14)
  2. Add vertical-align: middle to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
     This can trigger a poorly considered lint error in some tools but is included by design.
  */

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}

/*
  Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
  */

img,
video {
  max-width: 100%;
  height: auto;
}

/* Make elements with the HTML hidden attribute stay hidden by default */
[hidden] {
  display: none;
}

p,
ol,
ul {
  margin: 0px;
}

button {
  padding: 0px;
}

ol,
ul {
  padding-inline-start: 1.5em;
}

input {
  background-image: none;
  background-color: transparent;
}

.common-10,
.landing-page-invest-with-clarity,
.landing-page-call-to-action {
  text-transform: uppercase;
  letter-spacing: 2px;
}

.common-6,
.landing-page-t-ellipse-3tline-210tellipse-4tellipse-5tellipse-6tellipse,
.landing-page-t-ellipse-3 {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.common-7,
.landing-page-t-group-5frame,
.landing-page-frame,
.landing-page-t-line,
.landing-page-t-bg-subtract-call-to-action {
  display: flex;
  justify-content: left;
  padding-left: 5px;
  align-items: center;
}

.common-8,
.landing-page-invest-with-clarity,
.landing-page-t-frame,
.landing-page-tt-bg-subtract-call-to-action {
  display: flex;
  align-items: flex-end;
}

.common-9,
.landing-page-t-ellipse,
.landing-page-t-ellipse-1,
.landing-page-t-ellipse-2 {
  flex-direction: column;
  align-items: center;
}

.common-5,
.landing-page-the-quickest-and-most,
.landing-page-correct-entry-wins {
  font-weight: 600;
  text-align: center;
}

.common-1,
.landing-page-wrapper,
.landing-page-landing-page {
  display: flex;
  width: 100%;
}

.common-2,
.landing-page-t-ellipse,
.landing-page-t-ellipse-1,
.landing-page-t-ellipse-2 {
  display: flex;
  height: 0px;
}

.common-3,
.landing-page-ellipse,
.landing-page-ellipse-1,
.landing-page-ellipse-2,
.landing-page-ellipse-3,
.landing-page-ellipse-4 {
  width: 9px;
  height: 9px;
}

.common-4,
.landing-page-landing-page,
.landing-page-register {
  background-color: midnightblue;
  color: white;
}

.landing-page-wrapper {
  align-items: flex-start;
  line-height: normal;
}

.landing-page-landing-page {
  overflow: clip;
  flex-direction: column;
  padding-bottom: 66px;
  height: 100%;
  position: relative;
  font-family: "Red Hat Display", ui-sans-serif, system-ui, sans-serif;
  font-size: 14px;
  gap: 46px;
}

.landing-page-adobe-stock_ {
  align-items: flex-start;
  background-image: url('assets/landing_page/adobe-stock_.jpeg');
  background-size: 185% 100%;
  background-position: -113.08px 0px;
  background-repeat: no-repeat;
  max-width: 100%;
  max-height: 100%;
  flex-direction: column;
  padding-bottom: 53px;
  padding-left: 30px;
  padding-right: 24px;
  padding-top: 77px;
  justify-content: flex-end;
  position: relative;
  display: flex;
  color: midnightblue;
  gap: 3px;
}

.landing-page-vector {
  width: 87px;
  height: 53px;
  bottom: 0px;
  right: 0px;
  position: absolute;
}

.landing-page-t-group-5frame {
  align-self: stretch;
  gap: 84px;
}

.landing-page-group {
  width: 122px;
  height: 39px;
}

.landing-page-register {
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  padding-left: 14px;
  padding-right: 14px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.landing-page-invest-with-clarity {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.1;
  padding-right: 110px;
  padding-top: 65px;
  align-self: stretch;
}

.landing-page-t-frame {
  align-self: stretch;
  padding-right: 140px;
  padding-top: 19px;
}

.landing-page-frame {
  background-color: lightseagreen;
  flex-grow: 1;
}

.landing-page-correct-entry-wins {
  background-color: lightseagreen;
  padding-left: 6px;
  padding-right: 6px;
}

.landing-page-good-luck {
  font-size: 18px;
  font-weight: 600;
  padding-top: 5px;
  align-self: stretch;
}

.landing-page-test-your-knowledge-by-answering-four-multiple-choice-questions-the-person-with-the-most-correct-answers-in-the-shortest-time-wins-the-winner-will-be-announced-at-the-end-of-the-conference-enter-as-many-times-as-you-like-clues-for-the-questions-are-hidden-on-screen-keep-an-eye-on-the-leaderboard-to-stay-in-the-game {
  width: 300px;
  height: 242px;
  z-index: 0;
  left: calc(50% + -121px + -22px);
  top: calc(50% + -121px + 146px);
  position: absolute;
}

.landing-page-spacer {
  height: 17px;
}

.landing-page-spacer-1 {
  height: 17px;
}

.landing-page-spacer-2 {
  height: 17px;
}

.landing-page-spacer-3 {
  height: 17px;
}

.landing-page-tt-ellipse-3tline-210tellipse-4tellipse-5tellipse-6tellipse {
  align-items: center;
  padding-left: 29px;
  padding-right: 29px;
  z-index: 3;
  display: flex;
}

.landing-page-t-line {
  height: 206px;
  max-height: 206px;
}

.landing-page-line {
  margin-bottom: 0px;
  width: 1px;
  height: 210px;
}
 
.landing-page-ellipse-1 {
  margin-top: -157px;
}

.landing-page-ellipse-2 {
  margin-top: -81px;
}

.landing-page-ellipse-3 {
  margin-top: -43px;
}

.landing-page-t-ellipse-3 {
  height: 4px;
}

.landing-page-ellipse-4 {
  margin-top: -5px;
}

.landing-page-tt-bg-subtract-call-to-action {
  padding-top: 12px;
  justify-content: center;
}

.landing-page-t-bg-subtract-call-to-action {
  padding-bottom: 17px;
  padding-left: 17px;
  padding-right: 17px;
  padding-top: 17px;
  background-image: url('assets/landing_page/Subtract.svg');
  background-size: cover;
  background-position: center;
}

.landing-page-call-to-action {
  text-align: center;
  color: midnightblue;
  line-height: 16px;
  font-weight: 700;
}

p,
ol,
ul {
  margin: 0px;
}

button {
  padding: 0px;
}

ol,
ul {
  padding-inline-start: 1.5em;
}

input {
  background-image: none;
  background-color: transparent;
}

.common-4,
.data-capture-t-group-5frame,
.data-capture-frame,
.data-capture-t-rectangle-158your-email-address {
  display: flex;
  justify-content: center;
  align-items: center;
}

.common-5,
.data-capture-tt-first-name,
.data-capture-tt-last-name,
.data-capture-tt-email-address,
.data-capture-tt-phone-number,
.data-capture-tt-company,
.data-capture-ttt-rectangle-158your-email-address,
.data-capture-t-bg-subtract-call-to-action {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.common-6,
.data-capture-data-capture,
.data-capture-tt-group-5frame-329tframe-1frame-2bg-subtract {
  display: flex;
  flex-direction: column;
}

.common-7,
.data-capture-frame-1,
.data-capture-frame-2 {
  justify-content: left;
  align-items: center;
  padding-left: 5px;
}

.common-2,
.data-capture-your-email-address,
.data-capture-call-to-action {
  color: midnightblue;
  font-size: 14px;
  font-weight: 700;
}

.common-3,
.data-capture-first-name,
.data-capture-last-name,
.data-capture-email-address,
.data-capture-phone-number,
.data-capture-company {
  color: midnightblue;
  font-size: 14px;
}

.common-1,
.data-capture-frame-1,
.data-capture-frame-2 {
  display: flex;
  background-color: lightseagreen;
}

.data-capture-data-capture {
  background-color: white;
  padding-bottom: 66px;
  width: 100%;
  font-family: "Red Hat Display", ui-sans-serif, system-ui, sans-serif;
  line-height: normal;
  gap: 14px;
}

.data-capture-tt-group-5frame-329tframe-1frame-2bg-subtract {
  align-items: flex-start;
  padding-bottom: 57px;
  padding-left: 29px;
  padding-right: 29px;
  padding-top: 77px;
  justify-content: flex-end;
  font-size: 20px;
  color: white;
  text-align: center;
  font-weight: 500;
  background-image: url('assets/data_capture/Subtract.svg');
  background-size: cover;
  background-position: center;
  gap: 4px;
}

.data-capture-t-group-5frame {
  align-self: stretch;
  gap: 79px;
}

.data-capture-group {
  width: 122px;
  height: 39px;
  text-align: center;
}

.data-capture-frame {
  border-style: solid;
  border-color: white;
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-right-width: 1px;
  background-color: midnightblue;
  padding-bottom: 11px;
  padding-left: 13px;
  padding-right: 13px;
  padding-top: 11px;
  text-align: center;
}

.data-capture-register {
  font-size: 12px;
}

.data-capture-t-frame {
  align-items: flex-end;
  align-self: stretch;
  padding-right: 115px;
  padding-top: 64px;
  display: flex;
}

.data-capture-frame-1 {
  flex-grow: 1;
  text-align: center;
}

.data-capture-frame-2 {
  padding-left: 5px;
  padding-right: 5px;
}

.data-capture-your-details-below {
  text-align: center;
}

.data-capture-tt-first-name {
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 28px;
}

.data-capture-first-name {
  line-height: 16px;
  flex-grow: 1;
}

.data-capture-line {
  height: 1px;
  width: 90%;
  padding-left: 8%;
}

.data-capture-tt-last-name {
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 18px;
}

.data-capture-last-name {
  line-height: 16px;
  flex-grow: 1;
}

.data-capture-line-1 {
  height: 1px;
  width: 90%;
  padding-left: 8%;
}

.data-capture-tt-email-address {
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 18px;
}

.data-capture-email-address {
  line-height: 16px;
  flex-grow: 1;
}

.data-capture-line-2 {
  height: 1px;
}

.data-capture-tt-phone-number {
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 18px;
}

.data-capture-phone-number {
  line-height: 16px;
  flex-grow: 1;
}

.data-capture-line-3 {
  height: 1px;
  width: 90%;
  padding-left: 8%;
}

.data-capture-tt-company {
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 18px;
}

.data-capture-company {
  line-height: 16px;
  flex-grow: 1;
}

.data-capture-line-4 {
  height: 1px;
  width: 90%;
  padding-left: 8%;
}

.data-capture-ttt-rectangle-158your-email-address {
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 25px;
}

.data-capture-t-rectangle-158your-email-address {
  padding-right: 71px;
  flex-grow: 1;
  gap: 11px;
}

.data-capture-rectangle {
  border-style: solid;
  border-color: midnightblue;
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-right-width: 1px;
  width: 18px;
  height: 18px;
}

.data-capture-your-email-address {
  line-height: 22px;
}

.data-capture-t-bg-subtract-call-to-action {
  padding-bottom: 17px;
  padding-left: 17px;
  padding-right: 17px;
  padding-top: 40px;
  position: relative;
}

.data-capture-bg-subtract {
  height: 50px;
  z-index: 0;
  bottom: 0px;
  left: 113px;
  right: 112px;
  position: absolute;
}

.data-capture-call-to-action {
  text-align: center;
  z-index: 2;
  line-height: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

p,
ol,
ul {
  margin: 0px;
}

button {
  padding: 0px;
}

ol,
ul {
  padding-inline-start: 1.5em;
}

input {
  background-image: none;
  background-color: transparent;
}

.common-9,
.question-answer-selected-t-bg-subtract-ttgroup-5frame-1tframe-329lorem-ipsum-dolor-sit-amet-consectetur-adipiscing-elit-donec-scelerisque-pulvinar-justo-non-imperdiet-erat-pellentesque-vitae,
.question-answer-selected-t-bg-line-208line {
  background-position: center;
  background-size: cover;
}

.common-4,
.question-answer-selected-t-bg-subtract-ttgroup-5frame-1tframe-329lorem-ipsum-dolor-sit-amet-consectetur-adipiscing-elit-donec-scelerisque-pulvinar-justo-non-imperdiet-erat-pellentesque-vitae,
.question-answer-selected-tt-bg-line-208line {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.common-5,
.question-answer-selected-question-answer-selected,
.question-answer-selected-t-group-5frame {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.common-6,
.question-answer-selected-t-frame,
.question-answer-selected-t-bg-subtract-call-to-action {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.common-7,
.question-answer-selected-tt-group-5frame-1tframe,
.question-answer-selected-frame-1 {
  display: flex;
  justify-content: center;
}

.common-8,
.question-answer-selected-frame-3,
.question-answer-selected-frame-4,
.question-answer-selected-frame-5,
.question-answer-selected-frame-6 {
  flex-direction: column;
  justify-content: center;
}

.common-3,
.question-answer-selected-multiple-choice-answer-one,
.question-answer-selected-multiple-choice-answer-three,
.question-answer-selected-multiple-choice-answer-four,
.question-answer-selected-call-to-action {
  color: midnightblue;
  font-size: 14px;
}

.common-1,
.question-answer-selected-frame,
.question-answer-selected-frame-4 {
  display: flex;
  background-color: lightseagreen;
}

.common-2,
.question-answer-selected-frame-3,
.question-answer-selected-frame-5,
.question-answer-selected-frame-6 {
  display: flex;
  background-color: whitesmoke;
}

.question-answer-selected-question-answer-selected {
  background-color: white;
  padding-bottom: 109px;
  width: 100%;
  font-family: "Red Hat Display", ui-sans-serif, system-ui, sans-serif;
  line-height: normal;
  gap: 15px;
}

.question-answer-selected-t-bg-subtract-ttgroup-5frame-1tframe-329lorem-ipsum-dolor-sit-amet-consectetur-adipiscing-elit-donec-scelerisque-pulvinar-justo-non-imperdiet-erat-pellentesque-vitae {
  align-self: stretch;
  padding-bottom: 32px;
  padding-left: 29px;
  padding-right: 29px;
  padding-top: 77px;
  color: white;
  background-image: url('assets/questions/Subtract.svg');
  gap: 16px;
}

.question-answer-selected-tt-group-5frame-1tframe {
  align-items: flex-start;
  gap: 112px;
}

.question-answer-selected-t-group-5frame {
  gap: 57px;
}

.question-answer-selected-group {
  width: 122px;
  height: 39px;
}

.question-answer-selected-frame {
  align-items: center;
  align-self: stretch;
  justify-content: center;
}

.question-answer-selected-question {
  text-align: center;
  color: midnightblue;
  font-weight: 600;
}

.question-answer-selected-frame-1 {
  border-style: solid;
  border-color: white;
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-right-width: 1px;
  align-items: center;
  background-color: midnightblue;
  height: 40px;
  padding-bottom: 9px;
  padding-left: 13px;
  padding-right: 13px;
  padding-top: 9px;
  gap: 10px;
}

.question-answer-selected-frame-2 {
  width: 20px;
  height: 20px;
}

.question-answer-selected-register {
  font-size: 12px;
  font-weight: 500;
}

.question-answer-selected-lorem-ipsum-dolor-sit-amet-consectetur-adipiscing-elit-donec-scelerisque-pulvinar-justo-non-imperdiet-erat-pellentesque-vitae {
  width: 304px;
  display: flex;
  align-items: flex-start;
  font-size: 15px;
}

.question-answer-selected-tt-bg-line-208line {
  align-self: stretch;
  padding-left: 31px;
  padding-right: 31px;
  padding-top: 10px;
}

.question-answer-selected-t-bg-line-208line {
  align-items: center;
  height: 1px;
  display: flex;
  background-image: url('assets/questions/Line.svg');
}

.question-answer-selected-line {
  margin-bottom: 2.5px;
  width: 82px;
  height: 5px;
}

.question-answer-selected-t-frame {
  align-self: stretch;
  padding-left: 29px;
  padding-right: 29px;
  padding-top: 19px;
}

.question-answer-selected-frame-3 {
  flex-grow: 1;
  padding-bottom: 16px;
  padding-left: 13px;
  padding-right: 13px;
  padding-top: 16px;
}

.question-answer-selected-multiple-choice-answer-one {
  line-height: 16px;
}

.question-answer-selected-frame-4 {
  padding-bottom: 16px;
  padding-left: 13px;
  padding-right: 13px;
  padding-top: 16px;
}

.question-answer-selected-multiple-choice-answer-two {
  font-size: 14px;
  color: white;
  line-height: 16px;
  font-weight: 700;
}

.question-answer-selected-frame-5 {
  padding-bottom: 16px;
  padding-left: 13px;
  padding-right: 13px;
  padding-top: 16px;
}

.question-answer-selected-multiple-choice-answer-three {
  line-height: 16px;
}

.question-answer-selected-frame-6 {
  padding-bottom: 16px;
  padding-left: 13px;
  padding-right: 13px;
  padding-top: 16px;
}

.question-answer-selected-multiple-choice-answer-four {
  line-height: 16px;
}

.question-answer-selected-t-bg-subtract-call-to-action {
  align-self: stretch;
  padding-bottom: 17px;
  padding-left: 17px;
  padding-right: 17px;
  padding-top: 40px;
  position: relative;
}

.question-answer-selected-bg-subtract {
  height: 50px;
  z-index: 0;
  bottom: 0px;
  left: 113px;
  right: 112px;
  position: absolute;
}

.question-answer-selected-call-to-action {
  text-align: center;
  z-index: 2;
  line-height: 16px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

p,
ol,
ul {
  margin: 0px;
}

button {
  padding: 0px;
}

ol,
ul {
  padding-inline-start: 1.5em;
}

input {
  background-image: none;
  background-color: transparent;
}

.common-6,
.result-thank-you,
.result-call-to-action {
  text-transform: uppercase;
  letter-spacing: 2px;
}

.common-5,
.result-t-bg-subtract-tframe-144in,
.result-t-bg-subtract-call-to-action {
  background-position: center;
  background-size: cover;
}

.common-2,
.result-t-thank-you-tbg-subtract-tframe-144in,
.result-t-check-the-leaderboard-to-see-if-you-re-on-track-to-win-ttbg-subtract-call-to-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 35px;
}

.common-3,
.result-t-frame,
.result-tt-check-the-leaderboard-to-see-if-you-re-on-track-to-win-ttbg-subtract-call-to-action,
.result-check-the-leaderboard-to-see-if-you-re-on-track-to-win,
.result-tt-bg-subtract-call-to-action,
.result-t-bg-subtract-call-to-action {
  display: flex;
  justify-content: center;
  align-items: center;
}

.common-4,
.result-result,
.result-tt-thank-you-tbg-subtract-tframe-144in-531ttcheck-the-leaderboard-to-see-if-you-re-on-track-to-win-ttbg-subtract-call-to-action,
.result-t-bg-subtract-tframe-144in {
  display: flex;
  flex-direction: column;
}

.common-1,
.result-thank-you,
.result-your-score-is {
  font-weight: 500;
  text-align: center;
}

.result-result {
  background-color: midnightblue;
  padding-bottom: 109px;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 78px;
  width: 100%;
  line-height: normal;
  gap: 35px;
}

.result-t-group {
  align-items: center;
  display: flex;
}

.result-group {
  width: 122px;
  height: 39px;
}

.result-t-icon {
  align-items: flex-end;
  padding-top: 49px;
  justify-content: center;
  display: flex;
}

.result-icon {
  width: 52px;
  height: 51px;
}

.result-tt-thank-you-tbg-subtract-tframe-144in-531ttcheck-the-leaderboard-to-see-if-you-re-on-track-to-win-ttbg-subtract-call-to-action {
  font-family: "Red Hat Display", ui-sans-serif, system-ui, sans-serif;
  text-align: center;
  gap: 79px;
}

.result-thank-you {
  width: 226px;
  font-size: 32px;
  color: lightseagreen;
  line-height: 1.1;
}

.result-t-bg-subtract-tframe-144in {
  align-self: stretch;
  padding-bottom: 14px;
  padding-top: 27px;
  justify-content: flex-end;
  text-align: center;
  background-image: url('assets/result/Subtract.svg');
  gap: 25px;
}

.result-your-score-is {
  font-size: 20px;
  color: white;
  background-color: lightseagreen;
  padding-left: 6px;
  padding-right: 6px;
}

.result-in {
  font-size: 50px;
  color: midnightblue;
  line-height: 1.1;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: lowercase;
}

.result-tt-check-the-leaderboard-to-see-if-you-re-on-track-to-win-ttbg-subtract-call-to-action {
  padding-left: 3px;
}

.result-t-check-the-leaderboard-to-see-if-you-re-on-track-to-win-ttbg-subtract-call-to-action {
  flex-grow: 1;
  max-width: 199px;
  text-align: center;
}

.result-check-the-leaderboard-to-see-if-you-re-on-track-to-win {
  align-self: stretch;
  font-size: 15px;
  color: white;
}

.result-para {
  text-align: center;
}

.result-t-bg-subtract-call-to-action {
  padding-bottom: 17px;
  padding-left: 19px;
  padding-right: 19px;
  padding-top: 17px;
  text-align: center;
  background-image: url('assets/result/Subtract1.svg');
}

.result-call-to-action {
  font-size: 14px;
  color: midnightblue;
  line-height: 16px;
  font-weight: 700;
}

p,
ol,
ul {
  margin: 0px;
}

button {
  padding: 0px;
}

ol,
ul {
  padding-inline-start: 1.5em;
}

input {
  background-image: none;
  background-color: transparent;
}

.common-4,
.leaderboard-t-t1name-surname-44t,
.leaderboard-t-t2name-surname-44t,
.leaderboard-t-t3name-surname-44t,
.leaderboard-t-t4name-surname-44t,
.leaderboard-t-t5name-surname-44t {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
}

.common-5,
.leaderboard-t-1name-surname,
.leaderboard-t-2name-surname,
.leaderboard-t-3name-surname,
.leaderboard-t-4name-surname,
.leaderboard-t-5name-surname {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
}

.common-6,
.leaderboard-t-line,
.leaderboard-ttt-t1name-surname-44t,
.leaderboard-t-line-1,
.leaderboard-t-rectangle,
.leaderboard-ttt-t4name-surname-44t,
.leaderboard-t-line-2,
.leaderboard-t-line-3 {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.common-7,
.leaderboard-tt-t2name-surname-44t,
.leaderboard-tt-t5name-surname-44t,
.leaderboard-tt-bg-subtract-call-to-action {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.common-8,
.leaderboard-leaderboard,
.leaderboard-rectangle {
  display: flex;
  flex-direction: column;
}

.common-9,
.leaderboard-t-group,
.leaderboard-t-frame-1,
.leaderboard-t-bg-subtract-call-to-action {
  display: flex;
  align-items: center;
}

.common-10,
.leaderboard-t-frame,
.leaderboard-keep-checking-back-to-see-who-our-final-winner-is {
  display: flex;
  align-items: flex-end;
}

.common-3,
.leaderboard-here-are-the-top,
.leaderboard-players-so-far {
  font-weight: 600;
  text-align: center;
}

.common-1,
.leaderboard-component,
.leaderboard-component-3,
.leaderboard-component-6,
.leaderboard-component-9,
.leaderboard-component-12 {
  width: 19px;
  height: 20px;
  color: lightseagreen;
}

.common-2,
.leaderboard-here-are-the-top,
.leaderboard-players-so-far {
  background-color: lightseagreen;
  color: midnightblue;
}

.leaderboard-leaderboard {
  background-color: midnightblue;
  padding-bottom: 109px;
  padding-left: 29px;
  padding-right: 22px;
  padding-top: 78px;
  width: 100%;
  font-family: "Red Hat Display", ui-sans-serif, system-ui, sans-serif;
  font-size: 15px;
  color: white;
  line-height: normal;
  gap: 3px;
}

.leaderboard-group {
  width: 122px;
  height: 39px;
}

.leaderboard-t-frame {
  padding-top: 60px;
}

.leaderboard-here-are-the-top {
  padding-left: 6px;
  padding-right: 6px;
}

.leaderboard-players-so-far {
  padding-left: 6px;
  padding-right: 6px;
}

.leaderboard-keep-checking-back-to-see-who-our-final-winner-is {
  padding-right: 158px;
  padding-top: 26px;
}

.leaderboard-t-line {
  padding-right: 8px;
  padding-top: 43px;
}

.leaderboard-line {
  height: 1px;
}

.leaderboard-ttt-t1name-surname-44t {
  padding-left: 7px;
  padding-right: 7px;
  padding-top: 9.5px;
}

.leaderboard-t-t1name-surname-44t {
  padding-right: 10px;
}

.leaderboard-component {
  font-weight: 700;
}

.leaderboard-name-surname {
  width: 180px;
}

.leaderboard-component-2 {
  padding-left: 14px;
}

.leaderboard-t-line-1 {
  padding-right: 8px;
  padding-top: 9.5px;
}

.leaderboard-line-1 {
  height: 1px;
}

.leaderboard-tt-t2name-surname-44t {
  padding-left: 7px;
  padding-right: 13px;
  padding-top: 9.5px;
}

.leaderboard-t-t2name-surname-44t {
  flex-grow: 1;
}

.leaderboard-component-3 {
  font-weight: 700;
}

.leaderboard-name-surname-1 {
  width: 180px;
}

.leaderboard-component-5 {
  padding-left: 14px;
}

.leaderboard-t-rectangle {
  padding-right: 8px;
  padding-top: 10px;
}

.leaderboard-rectangle {
  gap: 13px;
}

.leaderboard-line-2 {
  height: 0.5px;
}

.leaderboard-t-t3name-surname-44t {
  padding-left: 7px;
  padding-right: 10px;
}

.leaderboard-component-6 {
  font-weight: 700;
}

.leaderboard-name-surname-2 {
  width: 180px;
}

.leaderboard-component-8 {
  padding-left: 14px;
}

.leaderboard-line-3 {
  height: 0.5px;
}

.leaderboard-ttt-t4name-surname-44t {
  padding-left: 7px;
  padding-right: 7px;
  padding-top: 10px;
}

.leaderboard-t-t4name-surname-44t {
  padding-right: 10px;
}

.leaderboard-component-9 {
  font-weight: 700;
}

.leaderboard-name-surname-3 {
  width: 180px;
}

.leaderboard-component-11 {
  padding-left: 14px;
}

.leaderboard-t-line-2 {
  padding-right: 8px;
  padding-top: 9.5px;
}

.leaderboard-line-4 {
  height: 1px;
}

.leaderboard-tt-t5name-surname-44t {
  padding-left: 7px;
  padding-right: 13px;
  padding-top: 9.5px;
}

.leaderboard-t-t5name-surname-44t {
  flex-grow: 1;
}

.leaderboard-component-12 {
  font-weight: 700;
}

.leaderboard-name-surname-4 {
  width: 180px;
}

.leaderboard-component-14 {
  padding-left: 14px;
}

.leaderboard-t-line-3 {
  padding-right: 8px;
  padding-top: 9.5px;
}

.leaderboard-line-5 {
  height: 1px;
}

.leaderboard-don-tsee-your-name {
  text-align: center;
  padding-top: 55px;
}

.leaderboard-tt-bg-subtract-call-to-action {
  padding-right: 6px;
  padding-top: 34px;
}

.leaderboard-t-bg-subtract-call-to-action {
  padding-bottom: 17px;
  padding-left: 17px;
  padding-right: 17px;
  padding-top: 17px;
  justify-content: center;
  background-image: url('assets/leaderboard/Subtract.svg');
  background-size: cover;
  background-position: center;
}

.leaderboard-call-to-action {
  text-align: center;
  font-size: 14px;
  color: midnightblue;
  line-height: 16px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/*
 * Custom overrides for the question page, data capture page, and result
 * page.  These rules adjust the width, alignment and sizing of
 * elements without changing the overall look and feel of the original
 * design.  They are added at the end of the stylesheet to ensure
 * they take precedence over earlier declarations.  The goal is to
 * left align the question text, make the multiple‑choice buttons
 * consistent in width, and resize the call‑to‑action buttons to fit
 * their text content while remaining centered.
 */

/* Question text: occupy 80% of the page, left aligned and centred within the layout */
.question-answer-selected-lorem-ipsum-dolor-sit-amet-consectetur-adipiscing-elit-donec-scelerisque-pulvinar-justo-non-imperdiet-erat-pellentesque-vitae {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  display: block;
  align-items: flex-start;
}

/* Force the paragraph inside the question text container to be left aligned.
 * Some inherited flex or centre alignment styles could override the parent’s
 * text-align on nested elements.  Applying left alignment directly to the
 * paragraph ensures the question appears as left aligned on mobile. */
.question-answer-selected-lorem-ipsum-dolor-sit-amet-consectetur-adipiscing-elit-donec-scelerisque-pulvinar-justo-non-imperdiet-erat-pellentesque-vitae p {
  text-align: left !important;
}

/* Multiple choice answer containers: ensure consistent width and centre them */
/* Ensure all answer frames (including the first answer contained in the t‑frame)
 * share the same dimensions and base styling.  We remove the extra padding
 * applied by the wrapper (.question-answer-selected-t-frame) so that the
 * first answer aligns perfectly with the others. */
.question-answer-selected-t-frame {
  /* Reset padding that would otherwise make the first answer wider than the rest */
  padding-left: 0 !important;
  padding-right: 0 !important;
  padding-top: 0 !important;
}

/* Override any earlier colour definitions so all answer frames start in the neutral state */
.question-answer-selected-frame,
.question-answer-selected-frame-4 {
  background-color: #00B2A9 !important;
}

.question-answer-selected-frame-3,
.question-answer-selected-frame-4,
.question-answer-selected-frame-5,
.question-answer-selected-frame-6 {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  /* uniform horizontal padding for all answer frames */
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 16px;
  padding-bottom: 16px;
  background-color: whitesmoke;
  /* Ensure consistent height for all answer options */
  min-height: 50px;
  display: flex;
  align-items: center;
  /* Prevent flexbox from forcing this element to stretch to the full width.  Without
   * this override, earlier rules set flex-grow:1 on the first answer (frame‑3),
   * causing it to span the entire width of the container.  Setting flex-grow
   * to zero ensures our width property takes effect. */
  flex-grow: 0 !important;
}

/*
 * Force the neutral background colour on all answer frames.  The default
 * design applies a teal background to `.question-answer-selected-frame-4`
 * (and `.question-answer-selected-frame` via `.common-1`), which causes
 * the second answer to appear selected even before any interaction.  By
 * explicitly setting the background colour with `!important` on each of
 * the four answer frame classes we override any earlier rules.  This
 * ensures that all answer options start with the same whitesmoke
 * background, even if the JavaScript fails to run or external styles
 * apply different colours.
 */
.question-answer-selected-frame-3,
.question-answer-selected-frame-4,
.question-answer-selected-frame-5,
.question-answer-selected-frame-6 {
  background-color: whitesmoke !important;
}

/*
 * Highlight styling for selected answers.  When a user selects an option in
 * the quiz, the corresponding answer frame will receive the `selected-answer`
 * class via JavaScript.  We use this class to fill the entire button with
 * the highlight colour and force the text to white so the label remains
 * legible.  Using a class avoids inconsistencies arising from inline styles
 * and ensures all answer frames behave identically regardless of their
 * original background definitions.
 */
.selected-answer {
  background-color: lightseagreen !important;
}

/* Ensure that all text within a selected answer turns white.  We target
 * descendant elements generically to avoid having to list each answer class.
 */
.selected-answer * {
  color: white !important;
}

/* Answer text: fill the container and centre the text; unify colour */
.question-answer-selected-multiple-choice-answer-one,
.question-answer-selected-multiple-choice-answer-two,
.question-answer-selected-multiple-choice-answer-three,
.question-answer-selected-multiple-choice-answer-four {
  width: 100%;
  text-align: center;
  color: midnightblue !important;
  font-weight: 500 !important;
}

/* NEXT button wrapper: shrink to content width and centre */
.question-answer-selected-t-bg-subtract-call-to-action {
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
}

/* Background image under NEXT button: stretch to wrapper width */
.question-answer-selected-bg-subtract {
  left: 0;
  right: 0;
  width: 100%;
}

/* NEXT button text: add small horizontal padding */
.question-answer-selected-call-to-action {
  padding-left: 20px;
  padding-right: 20px;
}

/* Data capture CONTINUE button wrapper: shrink to content width and centre */
.data-capture-t-bg-subtract-call-to-action {
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
}

/* Background image under CONTINUE button: stretch to wrapper width */
.data-capture-bg-subtract {
  left: 0;
  right: 0;
  width: 100%;
}

/* CONTINUE button text: add small horizontal padding */
.data-capture-call-to-action {
  padding-left: 20px;
  padding-right: 20px;
}

/* Ensure the result page has a dark background */
.result-result {
  background-color: midnightblue;
  min-height: 100vh;
}
