@font-face {
    font-family: "IBM Plex Mono";
    src: url("fonts/ibmplexmono-regular.woff2");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "IBM Plex Mono";
    src: url("fonts/ibmplexmono-bold.woff2");
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: "IBM Plex Mono";
    src: url("fonts/ibmplexmono-italic.woff2");
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: "IBM Plex Mono";
    src: url("fonts/ibmplexmono-bolditalic.woff2");
    font-weight: bold;
    font-style: italic;
}

html {
    background-color: #dddcca;
    font-family: "IBM Plex Mono";
    font-style: normal;
    font-size: 16px;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    text-align: center;
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

p {
    margin: 0px;
}

button {
    cursor: pointer;
    font-family: "IBM Plex Mono";
}

#some-element {
    display: none;
}

.button {
    padding: 0px;
    margin-top: 1rem;
    background: none;
    border: none;
    font-size: calc(min(1rem, 1.75vh));
    color: #101030;
    font-weight: bold;
    border-bottom: 1px solid #101030;
    -webkit-transition:
        color 0.3 cubic-bezier(0.854, 0.681, 0, 1.003),
        background-color 0.3 cubic-bezier(0.854, 0.681, 0, 1.003);
    transition:
        color 0.3 cubic-bezier(0.854, 0.681, 0, 1.003),
        background-color 0.3 cubic-bezier(0.854, 0.681, 0, 1.003);
}

.button:hover {
    color: #ffaa00;
    border-bottom: 1px solid #ffaa00;
}

.navButton {
    margin-right: 1rem;
    background: none;
    border: none;
    text-decoration: underline;
    font-size: calc(min(1rem, 1.75vh));
}

.navButton:hover {
    color: #9c92fd;
}

#Container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    height: 100%;
}

.mainContent {
    height: 100%;
    min-height: auto;
    max-height: calc(90vh);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.mainContent .BOX {
    justify-self: start;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    width: 100%;
    position: relative;
}

.mainContent .BOX #QuestionArea {
    text-align: left;
    min-height: 5%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    background-color: #194721;
    color: #ffaa00;
    width: 100%;
    padding: calc(min(2rem, 3.5vh));
    min-height: 5rem;
    border: solid 2px #101030;
    -webkit-transition: height 1s linear;
    transition: height 1s linear;
}

.mainContent .BOX #QuestionArea .topBoxGreen {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: left;
    -ms-flex-align: left;
    align-items: left;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    max-width: 90%;
}

.mainContent .BOX #QuestionArea #backBox .button {
    color: #ffaa00;
    border-bottom: 1px solid #ffaa00;
}

.mainContent .BOX #QuestionArea #QuesTextArea {
    margin-top: 0.5rem;
    max-width: 80%;
}

.mainContent .BOX #QuestionArea #QuesNumText {
    font-size: calc(min(1rem, 1.75vh));
}

.mainContent .BOX #QuestionArea #QuesTextText {
    font-size: calc(min(1.5rem, 2.75vh));
}

.champArea {
    min-height: 40%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding-bottom: 1rem;
}

.champArea .selectableDot {
    position: relative !important;
    height: auto;
    overflow: visible;
    max-width: 6vw;
    -webkit-transition-timing-function: cubic-bezier(0.45, 0.05, 0.55, 0.95);
    transition-timing-function: cubic-bezier(0.45, 0.05, 0.55, 0.95);
    pointer-events: auto;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

#OpenQuestionArea {
    width: 100%;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    border: 2px solid #101030;
    border-top: 0px;
    height: 100%;
}

#OpenQuestionArea #OQQuesArea {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: calc(min(2rem, 3.5vh));
}

#OpenQuestionArea #OQQuesArea .comment {
    width: 100%;
    border: 0px;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    resize: none;
    font-size: calc(min(1.5rem, 2.75vh));
    background-color: transparent;
    line-height: 150%;
}

#OpenQuestionArea #OQQuesArea .comment:active,
#OpenQuestionArea #OQQuesArea .comment:focus-visible {
    border: 0px;
    outline: 0px;
}

#OpenQuestionArea #OQAnsArea {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: calc(min(2rem, 3.5vh));
}

#OpenQuestionArea #OQAnsArea #OpenQuestionTitle {
    font-size: calc(min(1.5rem, 2.75vh));
    font-style: italic;
}

#OpenQuestionArea #OQAnsArea #OpenQuestionBody {
    text-align: left;
    font-size: calc(min(1.5rem, 2.75vh));
}

.BOX:first-child {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.BOX:last-child {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    border: 2px solid #101030;
    border-top: 0px;
}

#Answers {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
}

.answerbox {
    width: 25%;
    padding: calc(min(1.5rem, 2.75vh));
}

.selectable {
    margin-right: 1rem;
}

.selectable:last-of-type {
    margin-right: 0rem;
}

#Page {
    height: 100%;
    width: 100%;
}

#HousePlan {
    margin-top: 1rem;
    max-height: 70%;
    width: 100%;
    position: relative;
}

.SummaryTextBox {
    max-height: 50vh;
    overflow-y: scroll;
    padding-top: 2vh;
    padding-bottom: 2vh;
    padding: 2vh;
}

.resultPerc {
    font-size: calc(min(1.2rem, 2vh));
    font-weight: bold;
    margin-bottom: 0.5em;
}

div.highlighted {
    color: #101030;
}

li {
    margin: 5px 5px;
}

#AnswerArea.demographic {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    min-height: 0px;
    max-height: 50%;
}

input::-webkit-input-placeholder {
    color: #101030;
    opacity: 0.9;
}

input:-ms-input-placeholder {
    color: #101030;
    opacity: 0.9;
}

input::-ms-input-placeholder {
    color: #101030;
    opacity: 0.9;
}

input::placeholder {
    color: #101030;
    opacity: 0.9;
}

#AnswerArea {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    width: 100%;
    min-height: 30%;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    border-left: 2px solid #101030;
    border-right: 2px solid #101030;
}

#AnswerArea .answerPlace {
    -webkit-box-flex: 0.25;
    -ms-flex: 0.25;
    flex: 0.25;
    background-color: none;
    background: none;
    border: none;
    font-size: calc(min(1.2rem, 2vh));
    height: 100%;
    color: #101030;
    position: relative;
    background-color: #dddcca;
    border: 2px solid #101030;
    border-left: 0px;
    border-top: 0px;
    cursor: pointer;
}

#AnswerArea .answerPlace .answerCopy {
    padding: calc(min(1.5rem, 2.75vh));
    padding-bottom: 0px;
    cursor: inherit;
    text-align: left;
}

#AnswerArea .answerPlace .answerCopy .answerTitle {
    font-weight: bold;
    margin-bottom: 1rem;
    cursor: inherit;
}

#AnswerArea .answerPlace .answerCopy .answerDesc {
    font-size: calc(min(1rem, 1.75vh));
    cursor: inherit;
}

#AnswerArea .answerPlace .peopleAnswerPlace {
    position: absolute;
    margin: 2rem;
    margin-bottom: 3rem;
    margin-top: 3rem;
    width: calc(100% - 4rem);
    height: calc(100% - 6rem);
    pointer-events: none;
}

#AnswerArea .answerPlace:nth-of-type(1) {
    border-left: 2px solid #101030;
}

#AnswerArea .answerPlace:nth-of-type(1):hover {
    background-color: #ef6a9a;
}

#AnswerArea .answerPlace:nth-of-type(2):hover {
    background-color: #9c92fd;
}

#AnswerArea .answerPlace:nth-of-type(3):hover {
    background-color: #ff6a48;
}

#AnswerArea .answerPlace:nth-of-type(4):hover {
    background-color: #08b27d;
}

#AnswerArea .answerPlace:nth-of-type(1).highLighted {
    background-color: #ef6a9a;
}

#AnswerArea .answerPlace:nth-of-type(2).highLighted {
    background-color: #9c92fd;
}

#AnswerArea .answerPlace:nth-of-type(3).highLighted {
    background-color: #ff6a48;
}

#AnswerArea .answerPlace:nth-of-type(4).highLighted {
    background-color: #08b27d;
}

#AnswerArea #Answers {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: 100%;
}

#AnswerArea .answerbox {
    width: 25%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-bottom: 1rem;
    border-top: none;
}

#AnswerArea .answerbox .quizbutton {
    font-size: calc(min(1rem, 1.75vh));
    border-radius: 50px;
    border-style: solid;
    border-width: 1px;
    border-color: #101030;
    background-color: #ef6a9a;
    padding: 8px 15px;
    color: #101030;
    -webkit-transition:
        color 0.3 cubic-bezier(0.854, 0.681, 0, 1.003),
        background-color 0.3 cubic-bezier(0.854, 0.681, 0, 1.003);
    transition:
        color 0.3 cubic-bezier(0.854, 0.681, 0, 1.003),
        background-color 0.3 cubic-bezier(0.854, 0.681, 0, 1.003);
}

#AnswerArea .answerbox .quizbutton:hover {
    color: #ef6a9a;
    border-color: #ef6a9a;
}

#AnswerArea .answerbox .nonButton {
    pointer-events: none;
    border-width: 0px;
    -webkit-transition:
        color 0.3 cubic-bezier(0.854, 0.681, 0, 1.003),
        background-color 0.3 cubic-bezier(0.854, 0.681, 0, 1.003);
    transition:
        color 0.3 cubic-bezier(0.854, 0.681, 0, 1.003),
        background-color 0.3 cubic-bezier(0.854, 0.681, 0, 1.003);
}

#AnswerArea .answerbox .nonButton:hover {
    color: #101030;
    border-color: #ef6a9a;
}

.nonButton {
    pointer-events: none;
}

#NavArea {
    min-height: 10%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    background-color: #ffaa00;
    padding: calc(min(2rem, 3.5vh));
    border: solid 2px #101030;
    border-bottom: 0px;
}

#NavArea .TitleArea {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

#NavArea .TitleArea #SubTitleNav {
    margin: 0px;
    font-size: calc(min(1.2rem, 2vh));
    font-weight: normal;
    font-style: italic;
}

#NavArea .TitleArea #Title {
    margin: 0px;
    font-size: calc(min(1.2rem, 2vh));
    font-weight: bold;
}

.nextButton {
    font-size: calc(min(1.5rem, 2.75vh));
    font-weight: bold;
}

#NextButtonCopy.nextButton {
    pointer-events: none;
}

#Buffer.single {
    min-height: 5%;
}

#Buffer.double {
    min-height: 1%;
    background-color: red;
}

#ButtonBoxQuiz {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 100%;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    flex-wrap: wrap;
    padding: calc(min(2rem, 3.5vh));
    height: 100%;
    text-align: left;
}

#ButtonBoxQuiz .outLineButton {
    text-decoration: none;
    padding: 0.75rem;
    margin: 1rem 0px;
    margin-right: 2rem;
    border: 2px solid #101030;
    font-size: calc(min(1rem, 1.75vh));
    text-align: left;
}

#ButtonBoxQuiz .smaller {
    padding: 0.5rem;
    margin: 0.5rem 0px;
    margin-right: 1rem;
    text-align: left;
}

#ButtonBoxQuiz .outLineButton:hover {
    color: #101030;
    background-color: #ef6a9a;
}

#ButtonBoxQuiz .butselected {
    color: #101030;
    background-color: #ef6a9a;
}

#IntroTextArea {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    font-size: calc(min(1.5rem, 2.75vh));
    text-align: left;
    margin-left: calc(min(2rem, 3.5vh));
    padding-top: calc(min(2rem, 3.5vh));
    max-width: 90%;
}

#IntroTextArea p {
    margin-bottom: calc(min(1.2rem, 2vh));
    text-align: left;
    line-height: 150%;
}

#IntroTextArea p a {
    color: #ef6a9a;
    text-decoration: none;
    font-weight: bold;
}

.cheeseBuns {
    color: blue;
}

.flexGrow {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

#QuesSubText {
    font-size: calc(min(1rem, 1.75vh));
    font-style: italic;
    margin-top: 5px;
}

#QuesSubText a {
    color: #ef6a9a;
}

#PeopleArea {
    position: absolute;
    margin: 2rem;
    margin-bottom: 4rem;
    margin-top: 4rem;
    width: calc(100% - 4rem);
    height: calc(100% - 8rem);
    pointer-events: none;
    min-height: 25vh;
}

#ButtonBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

#ButtonBox a {
    font-weight: normal;
}

#Summary {
    height: 100%;
    width: 100%;
}

#Summary .outerGrid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    height: 100%;
    width: 100%;
    text-align: left;
}

#Summary .outerGrid .narrowBox,
#Summary .outerGrid .wideBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: calc(min(2rem, 3.5vh));
    border-bottom: 2px solid #101030;
    border-left: 2px solid #101030;
    max-height: 60%;
    min-height: 50%;
}

#Summary .outerGrid .narrowBox .sumTitle,
#Summary .outerGrid .wideBox .sumTitle {
    font-size: calc(min(1rem, 1.75vh));
    font-weight: bold;
    margin-bottom: 1rem;
    -ms-flex-item-align: start;
    align-self: flex-start;
}

#Summary .outerGrid .narrowBox .sumAnswer,
#Summary .outerGrid .wideBox .sumAnswer {
    font-size: calc(min(1rem, 1.75vh));
    font-weight: normal;
    -ms-flex-item-align: start;
    align-self: flex-start;
}

#Summary .outerGrid .col0 {
    background-color: #ef6a9a;
}

#Summary .outerGrid .col1 {
    background-color: #9c92fd;
}

#Summary .outerGrid .col2 {
    background-color: #ff6a48;
}

#Summary .outerGrid .col3 {
    background-color: #08b27d;
}

#Summary .outerGrid .col4 {
    background-color: #ef6a9a;
}

#Summary .outerGrid .col5 {
    background-color: #9c92fd;
}

#Summary .outerGrid .col6 {
    background-color: #ff6a48;
}

#Summary .outerGrid .col7 {
    background-color: #08b27d;
}

#Summary .outerGrid .narrowBox {
    width: calc(100% / 6);
}

#Summary .outerGrid .wideBox {
    width: calc(100% / 3);
}

#Summary .outerGrid #champBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

#Summary .outerGrid #champBox #SummaryIcon {
    height: 90%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    max-height: 90%;
    min-width: 80%;
}

#Summary .outerGrid #champBox #SummaryIcon svg {
    height: 100%;
    max-height: 100%;
    max-width: 100%;
}

#TopAnswerArea {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    position: relative;
    z-index: 1001;
    width: 100%;
}

#TopAnswerArea .comment {
    width: 100%;
    margin: auto;
    height: 30vh;
    background-color: #ef6a9a;
    outline: none;
    border: #101030;
    border-width: 1px;
    border-style: solid;
    resize: none;
    padding: 1rem;
    font-size: calc(min(1.2rem, 2vh));
    font-family: "IBM Plex Mono";
}

#TopAnswerArea #OtherAnswers {
    width: 100%;
    margin: auto;
    height: 30vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

#TopAnswerArea #OtherAnswers #OtherAns {
    text-align: center;
    font-size: calc(min(1.5rem, 2.75vh));
    color: #ef6a9a;
}

#TopAnswerArea .characterCount {
    margin-bottom: 1rem;
    font-style: oblique;
}

#TopAnswerArea .topanswerbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-color: #101030;
    width: 50%;
    min-height: 100%;
    padding: 10px;
}

#TopAnswerArea .topanswerbox:last-of-type {
    border-right: solid;
    border-width: 1px;
    border-color: #101030;
}

#TopAnswerArea #HiddenText {
    font-size: calc(min(1.2rem, 2vh));
    margin-bottom: 1rem;
    text-align: center;
}

#TopAnswerArea #IntroLinkText {
    font-size: calc(min(1.2rem, 2vh));
    margin-bottom: 1rem;
    text-align: center;
    text-decoration: underline;
    color: #101030;
    margin-bottom: 1rem;
    cursor: pointer;
}

#TopAnswerArea #summaryText {
    max-height: 50vh;
    overflow-y: auto;
}

#TopAnswerArea .comment.small {
    max-height: 15vh;
    margin-bottom: 1rem;
}

#TopAnswerArea .comment.small:last-of-type {
    margin-bottom: 0rem;
}

#TopAnswerArea #ButtonBox {
    margin-bottom: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

#TopAnswerArea #ButtonBox .buttonLike {
    font-size: calc(min(1rem, 1.75vh));
    border-style: solid;
    border-width: 2px;
    border-color: #101030;
    background-color: #08b27d;
    padding: 8px 15px;
    color: #101030;
    font-weight: bold;
}

#TopAnswerArea #ButtonBox .buttonLike:focus {
    border-color: #ef6a9a;
    outline: none;
}

#TopAnswerArea #ButtonBox .miniTextArea {
    margin-top: 1rem;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-style: oblique;
    font-size: calc(min(1rem, 1.75vh));
}

#TopAnswerArea #ButtonBox .button {
    margin: 0.5rem 0.5rem;
}

.os-scrollbar-handle {
    background-color: #3d405b !important;
}

.os-scrollbar.os-scrollbar-vertical {
    border-radius: 8px;
    width: 16px;
    background-color: #f2cc8f;
    padding: 0px;
    z-index: 99999;
    top: 20px !important;
    bottom: 20px !important;
}

.dot {
    height: auto;
    position: absolute;
    overflow: visible;
    max-width: 6vw;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    -webkit-transition-timing-function: cubic-bezier(0.45, 0.05, 0.55, 0.95);
    transition-timing-function: cubic-bezier(0.45, 0.05, 0.55, 0.95);
    -webkit-transition-property:
        top,
        left,
        -webkit-transform;
    transition-property:
        top,
        left,
        -webkit-transform;
    transition-property: transform, top, left;
    transition-property:
        transform,
        top,
        left,
        -webkit-transform;
    pointer-events: none;
    will-change: transform, top, left;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.blob {
    pointer-events: fill;
}

.invert svg {
    -webkit-transform: scale(-1, 1);
    transform: scale(-1, 1);
}

.icons {
    opacity: 0;
}

.champ .icons {
    opacity: 1;
}

.Planet,
.Economic,
.Social,
.Democracy {
    opacity: 0;
}

.champ.showPlanet .Planet {
    opacity: 1;
}

.champ.showDemocracy .Democracy {
    opacity: 1;
}

.champ.showSocial .Social {
    opacity: 1;
}

.champ.showEconomic .Economic {
    opacity: 1;
}

svg {
    scale: 1 1;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    overflow: visible;
}

.hidden {
    display: none !important;
}

.pink {
    color: #08b27d !important;
}

.pink2 {
    color: #08b27d !important;
}

.pinkdot
    > svg:nth-child(1)
    > g:nth-child(2)
    > g:nth-child(1)
    > path:nth-child(2) {
    fill: #08b27d !important;
}

#MobOnly {
    display: none;
}

.quizbutton {
    display: none;
}

#ButtonBoxFloat {
    height: 100%;
    -ms-flex-item-align: start;
    align-self: flex-start;
    margin-left: calc(min(2rem, 3.5vh));
    padding-bottom: calc(min(2rem, 3.5vh));
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

br {
    display: block;
    /* makes it have a width */
    content: "";
    /* clears default height */
    margin-top: 0.5rem;
    /* change this to whatever height you want it */
}

.answerPlace.notChosen {
    background-color: #dddcca !important;
}

.resultArea {
    font-size: calc(min(1rem, 1.75vh));
}

@media only screen and (max-width: 760px) {
    #some-element,
    .onlyMob {
        display: block;
    }
    #ButtonBoxFloat {
        margin-left: 0px;
        padding-bottom: 0px;
    }
    body {
        height: auto;
        overflow-y: scroll;
    }
    html {
        background-color: #dddcca;
        font-family: "IBM Plex Mono";
        font-style: normal;
        font-size: 14px;
    }
    .SummaryTextBox {
        text-align: left;
        padding-left: 0px;
    }
    br {
        display: block;
        /* makes it have a width */
        content: "";
        /* clears default height */
        margin-top: 4px;
        /* change this to whatever height you want it */
    }
    #Summary .outerGrid #champBox {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
    #QuesNumText {
        margin-bottom: 5px;
    }
    #OpenQuestionArea {
        border: 0px;
    }
    #OpenQuestionArea .comment {
        min-height: 50vh;
        font-size: calc(min(1.2rem, 2vh)) !important;
    }
    #OpenQuestionArea #OQQuesArea {
        padding: 1rem !important;
    }
    #Page {
        height: auto;
        width: 100%;
        padding: 5%;
    }
    #QuestionArea {
        padding: 1rem !important;
        -webkit-box-align: start !important;
        -ms-flex-align: start !important;
        align-items: flex-start !important;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    #QuestionArea #QuesTextText {
        text-align: left;
    }
    #QuestionArea #QuesTextArea {
        margin-top: 0px !important;
        max-width: 100% !important;
    }
    .mainContent {
        height: auto;
        max-height: 100% !important;
    }
    #AnswerArea {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
    #AnswerArea #IntroTextArea {
        margin-top: 2rem;
        margin-bottom: 1rem;
        font-size: calc(min(1.2rem, 2vh));
        margin-left: 1rem;
    }
    #AnswerArea .answerPlace,
    #AnswerArea .answerPlace:nth-of-type(1) {
        border: 0px;
        border-bottom: 2px solid #101030;
        width: 100%;
    }
    #AnswerArea .answerPlace:hover {
        background-color: #dddcca !important;
    }
    #AnswerArea .answerPlace:nth-of-type(4) {
        border: 0px;
        border-bottom: 2px solid #101030;
    }
    #AnswerArea .answerCopy {
        padding: 1rem !important;
    }
    #AnswerArea .answerTitle {
        margin-bottom: 0px !important;
    }
    #AnswerArea .answerDesc {
        margin-top: 5px !important;
    }
    .quizbutton {
        display: block;
        font-size: calc(min(1rem, 1.75vh));
        border-radius: 25px;
        border-style: solid;
        border-width: 1px;
        border-color: #101030;
        background-color: #ef6a9a;
        padding: 8px 15px;
        color: #101030;
        margin-left: 0rem;
        max-width: 75%;
        margin-top: 0.8rem;
    }
    .quizbutton:hover {
        background-color: #08b27d;
        color: #ef6a9a;
    }
    .BOX {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        margin-top: 0px !important;
        margin-bottom: 0px !important;
        -webkit-box-flex: 0;
        -ms-flex: 0;
        flex: 0;
    }
    #TopAnswerArea {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        margin-top: 1rem;
    }
    #TopAnswerArea #IntroTextArea {
        width: 100%;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
    div.highlighted {
        font-weight: bold;
    }
    .resultArea {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        margin-top: 0.8rem;
    }
    .resultArea .resultAnswer {
        max-width: 70%;
        text-align: left;
        font-size: calc(min(1rem, 1.75vh));
    }
    .resultArea .resultPerc {
        font-size: calc(min(1rem, 1.75vh));
    }
    .sectionTextArea {
        text-align: left;
    }
    .nextButton {
        margin-left: 0rem;
        font-size: calc(min(1.2rem, 2vh));
    }
    #Buffer.double {
        display: none;
    }
    #ButtonBoxQuiz {
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        width: 100%;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        flex-wrap: wrap;
        padding: 1rem !important;
    }
    .narrowBox,
    .wideBox {
        width: 100% !important;
        border-left: 0px !important;
        padding: 1rem !important;
    }
    .narrowBox .sumTitle,
    .wideBox .sumTitle {
        margin-bottom: 5px !important;
    }
    #Answers {
        max-width: 100% !important;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    #Answers .answerbox {
        padding: 1rem;
        width: 100%;
    }
    .miniTextArea {
        -webkit-box-align: start !important;
        -ms-flex-align: start !important;
        align-items: flex-start !important;
    }
    #PeopleArea {
        pointer-events: none;
    }
    #ButtonBox {
        margin: 1rem;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
    #ButtonBox .button {
        margin-top: 1rem;
    }
    .selectable {
        margin-top: 1rem;
    }
    .selectable:last-of-type {
        margin-left: 0rem;
    }
    .desk {
        display: none !important;
    }
    .dot {
        display: none !important;
    }
    #Nav {
        margin-top: 10px;
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
    }
    #Nav .navButton {
        font-size: 0.8rem;
        margin: 0px;
        padding: 0px;
        margin-right: 10px;
    }
    #NavArea {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        min-height: auto;
        padding: 1rem;
    }
    #Container {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        height: auto;
    }
    #MobOnly {
        display: block;
        padding: 0px 5vw;
        margin-top: 2rem;
    }
    #MobOnly #ButtonBox {
        margin-top: 1rem;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    #MobOnly #ButtonBox .button {
        margin-top: 1rem;
    }
    .buttonLike {
        width: 100% !important;
        font-weight: bold;
    }
    .smaller {
        padding: 0.75rem;
        margin: 1rem 0px;
        margin-right: 2rem;
    }
    .answerPlace:nth-of-type(4).noBorderBottom {
        border-bottom: none !important;
    }
}

.shadow {
    fill-opacity: 0.1;
    fill: #101030;
}

.cls-1 {
    fill: #101030;
}

.cls-2 {
    fill: #dddcca;
}

.cls-3 {
    fill: yellow;
}

.hls-5 {
    stroke: none !important;
}

.hls-2 {
    stroke: #101030 !important;
}

.hls-3 {
    stroke: #101030 !important;
}

#windows rect,
#windows-1 rect,
#windows-2 rect,
#windows-3 rect,
#windows-4 rect {
    stroke: #101030 !important;
}

#windows path,
#windows-1 path,
#windows-2 path,
#windows-3 path,
#windows-4 path {
    stroke: #101030 !important;
}

#windows polygon,
#windows-1 polygon,
#windows-2 polygon,
#windows-3 polygon,
#windows-4 polygon {
    fill: #101030 !important;
}

.highlighted .hls-5 {
    stroke: #08b27d !important;
}

.highlighted .hls-2 {
    stroke: #08b27d !important;
}

.highlighted .hls-3 {
    stroke: #08b27d !important;
}

.highlighted #windows rect,
.highlighted #windows-1 rect,
.highlighted #windows-2 rect,
.highlighted #windows-3 rect,
.highlighted #windows-4 rect {
    stroke: #08b27d !important;
}

.highlighted #windows path,
.highlighted #windows-1 path,
.highlighted #windows-2 path,
.highlighted #windows-3 path,
.highlighted #windows-4 path {
    stroke: #08b27d !important;
}

.highlighted #windows polygon,
.highlighted #windows-1 polygon,
.highlighted #windows-2 polygon,
.highlighted #windows-3 polygon,
.highlighted #windows-4 polygon {
    fill: #08b27d !important;
}

.butselected {
    border-color: #ef6a9a;
    color: #ef6a9a;
}

.miniTextArea {
    margin-top: 1rem;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-style: oblique;
    font-size: calc(min(1rem, 1.75vh));
}

.buttonLike {
    font-size: calc(min(1rem, 1.75vh));
    border-style: solid;
    border-width: 2px;
    border-color: #101030;
    background-color: #08b27d;
    padding: 0.75rem;
    width: 50%;
    margin: 1rem 0px;
    font-family: "IBM Plex Mono";
    font-weight: bold;
    color: #101030;
}

.buttonLike:focus {
    border-color: #101030;
    outline: none;
}

input::-webkit-input-placeholder {
    color: #101030;
    opacity: 0.9;
    font-weight: normal;
}

input:-ms-input-placeholder {
    color: #101030;
    opacity: 0.9;
    font-weight: normal;
}

input::-ms-input-placeholder {
    color: #101030;
    opacity: 0.9;
    font-weight: normal;
}

input::placeholder {
    color: #101030;
    opacity: 0.9;
    font-weight: normal;
}
/*# sourceMappingURL=style.css.map */
