/* added by marionm */

html {
    -moz-text-size-adjust: 100%; /* preserve font size on orientation change */
    -ms-text-size-adjust: 100%; /* ^ */
    -webkit-text-size-adjust: 100%; /* ^ */
    background: #fff;
    color: #000;
    font-family: Arial, sans-serif;
    font-kerning: auto;
    font-size: 16px; /* set default size for rems; this changes at various breakpoints and is used to scale page elements */
    font-weight: 400;
    height: 100%; /* set viewport height as the minimum page height */
    text-size-adjust: 100%;
    width: 100%; /* set viewport width as the minimum page width */
}

/* src/styles/index.css */
/* src/styles/Button.css */

body {
    border: none;
    margin: 0;
    padding: 1rem 4rem;
}

p {
    margin: 0;
    padding: 0;
}

#root {
    align-items: center;
    display: flex;
    justify-content: center;
}

.quezzio-button {
    border-radius: 5px;
    border: none;
    color: rgb(0, 140, 255);
    cursor: pointer;
    padding: .625rem 1.25rem;
    transition: 0.3s;
}

.sm { font-size: .625rem; }

.md { font-size: .9375rem; }

.lg { font-size: 1.5rem; }

.primary {
    background-color: rgb(80, 80, 245);
    color: black;
}

.success {
    background-color: rgb(49, 206, 49);
    color: black;
}

.error {
    background-color: rgb(255, 0, 0);
    color: black;
}

.default { background-color: inherit; }

.quezzio-button:hover { opacity: 1; }

/* src/styles/QuestionBox.css */

.quezzio-questionbox {
    background-color: rgb(255, 255, 255);
    border: none;
    color: black;
    font-family: Arial, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    overflow: hidden;
    padding: 0;
    width: 80vw;
}

.labelbox {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.label {
    border-radius: 1.25rem;
    border: 0.5px solid rgb(0, 140, 255);
    color: rgb(0, 140, 255);
    padding: 5px .625rem;
}

.labelbox-button-section {
    display: flex;
    flex-direction: row;
    gap: 1.25rem;
}

.question-container { width: 100%; }

.question { text-align: left; }

.question-part {
    display: flex;
    justify-content: space-between;
    padding-bottom: .625rem;
    padding-top: .625rem;
}

.question-part p { text-align: left; }

.point-container { align-content: center; }

.correct-point { color: green; }

.wrong-point { color: red; }

.toggle-switch {
    align-items: center;
    display: flex;
    gap: 5px;
    justify-content: center;
}

.question-metadata-container {
    display: flex;
    flex-direction: column;
    gap: 5px;
    height: auto;
    width: 100%;
}

.usscs-box {
    display: flex;
    flex-direction: row;
    gap: .625rem;
    margin-top: .625rem;
}

.usscs-box span {
    border-radius: .9375rem;
    border: 0.5px solid black;
    display: flex;
    flex-direction: row;
    padding: 5px .625rem;
}

.uuid-box {
    display: flex;
    flex-direction: row;
    gap: .625rem;
}

.uuid-box span {
    border-radius: .9375rem;
    border: 0.5px solid black;
    display: flex;
    flex-direction: row;
    padding: 5px .625rem;
}

.tag-box {
    background-color: rgb(218, 217, 217);
    border-radius: 1.25rem;
    color: grey;
    display: flex;
    flex-direction: row;
    font-size: .8125rem;
    height: 40%;
    justify-content: center;
    padding: 1px 9px;
}

.subject-box {
    display: flex;
    flex-direction: row;
    gap: .625rem;
}

.subject-box span {
    border-radius: .9375rem;
    border: 0.5px solid currentColor;
    color: green;
    font-size: .8125rem;
    padding: 5px .625rem;
}

/* src/styles/SingleExpression.css */

.answer-part {
    display: block;
    font-family: Arial, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.00938em;
    line-height: 1.5;
    text-align: left;
    width: 100%;
}

/* src/styles/MultiChoice.css */

.multi-choice-container {
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-select: none;
    align-items: center;
    background-color: #EBEBEB;
    border-radius: 5px;
    cursor: pointer;
    display: grid;
    font-family: Arial, sans-serif;
    font-size: 1.125rem;
    font-weight: 400;
    gap: 1rem;
    grid-template-columns: 1rem auto;
    line-height: 1.5;
    overflow: hidden;
    padding: .8125rem 1.125rem;
    user-select: none;
}

.multi-choice-container+.multi-choice-container { margin-top: 0.5em; }

.multi-choice-container span {
    text-align: left;
    width: auto;
}

input[type=radio] {
    appearance: none;
    background-color: white;
    border-radius: 50%;
    border: 2px solid currentColor;
    color: currentColor;
    cursor: pointer;
    display: grid;
    font: inherit;
    height: 1.15em;
    margin: 0;
    place-content: center;
    transform: translateY(-0.075em);
    width: 1.15em;
}

input[type=radio]:checked {
    background-color: inherit;
    color: #1976D2;
    border: none;
}

input[type=radio]::before {
    background-color: currentColor;
    clip-path: polygon(15% 50%, 35% 70%, 85% 20%, 100% 35%, 35% 100%, 0 60%);
    content: "";
    display: block;
    height: 0.8em;
    transform-origin: bottom left;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    width: 0.8em;
}

input[type=radio]:checked::before { transform: scale(1); }

/* src/styles/MultiSelection.css */

.multi-select-container {
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-select: none;
    align-items: center;
    background-color: #EBEBEB;
    border-radius: 5px;
    cursor: pointer;
    display: grid;
    font-family: Arial, sans-serif;
    font-size: 1.125rem;
    font-weight: 400;
    gap: 1rem;
    grid-template-columns: 1rem auto;
    line-height: 1.5;
    overflow: hidden;
    padding: .8125rem 1.125rem;
    user-select: none;
}

.multi-select-container+.multi-select-container { margin-top: 0.5em; }

.multi-select-container span {
    text-align: left;
    width: auto;
}

input[type=checkbox] {
    appearance: none;
    background-color: white;
    border-radius: 0.15em;
    border: 2px solid currentColor;
    color: currentColor;
    cursor: pointer;
    display: grid;
    font: inherit;
    height: 1.15em;
    margin: 0;
    place-content: center;
    transform: translateY(-0.075em);
    width: 1.15em;
}

input[type=checkbox]:checked {
    background-color: #1976D2;
    border-color: #1976D2;
    color: white;
}

input[type=checkbox]::before {
    background-color: currentColor;
    clip-path: polygon(15% 50%, 35% 70%, 85% 20%, 100% 35%, 35% 100%, 0 60%);
    content: "";
    display: block;
    height: 0.8em;
    transform-origin: bottom left;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    width: 0.8em;
}

input[type=checkbox]:checked::before { transform: scale(1); }

/* src/styles/SolutionStepModal.css */

.solstepmodal-overlay {
    background: rgba(0, 0, 0, 0.5);
    display: none;
    height: 100vh;
    left: 0;
    overflow: hidden;
    padding: 0;
    position: fixed;
    top: 0;
    width: 100vw;
    z-index: 999;
}

.solstepmodal {
    align-items: center;
    background-color: white;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: .625rem;
    justify-content: flex-start;
    margin: 0 auto;
    max-height: 100vh;
    overflow-x: auto;
    overflow-y: auto;
    padding: 1.25rem;
    width: 80%;
}

body.wpg .solstepmodal {
    box-sizing: border-box;
    display: block;
    margin: 0 auto;
    max-height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 0;
}

.solstepsection {
    border-radius: .625rem;
    box-shadow: 4px 4px .625rem rgba(0, 0, 0, 0.384);
    color: black;
    font-family: Arial, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    height: auto;
    line-height: 1.5;
    padding: 5px .625rem;
    width: 95%;
}

.divider { transform: scaleY(0.7); }

/* src/styles/QuestionList.css */

.questionlist {
    border-radius: 5px;
    box-shadow: 4px 4px .625rem rgba(0, 0, 0, 0.226);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    height: auto;
    padding: 1.25rem;
    width: 100%;
}

/* added by marionm */

.show { display: block !important; }
.hide { display: none !important; }

/* ==========================================================================
   responsive breakpoint styles
   ========================================================================== */

/* styles for large screens (1200px)
   ========================================================================== */

@media all and (max-width: 1200px) {
    html { font-size: 15px; }
    .show__1200 { display: block !important; }
    .hide__1200 { display: none !important; }
}

/* styles for medium screens (900px)
   ========================================================================== */

@media all and (max-width: 900px) {
    html { font-size: 14px; }
    .show__900 { display: block !important; }
    .hide__900 { display: none !important; }
}

/* styles for small screens (600px)
   ========================================================================== */

@media all and (max-width: 600px) {
    html { font-size: 13px; }
    .show__600 { display: block !important; }
    .hide__600 { display: none !important; }
}

/* styles for minimum supported screen width (320px)
   ========================================================================== */

@media all and (max-width: 320px) {
    .show__320 { display: block !important; }
    .hide__320 { display: none !important; }
}

/* printer styles
   ========================================================================== */

@media print {
}