:root {
    --gq-charcoal: #2d2e2e;
    --gq-muted: #a5a5a5;
    --gq-red: #ff5555;
    --gq-yellow: #ffe43b;
    --gq-green: #36a866;
    --gq-border: #dedede;
    --gq-paper: #ffffff;
    --gq-ink: #292929;
}

.gq-page {
    background: #f6f8f5;
}

.gq-page-layout {
    position: relative;
    width: min(768px, calc(100% - 40px));
    margin: 0 auto 64px;
}

.gq-shell {
    width: 100%;
    min-width: 0;
    margin: 0;
}

.gq-sidebar {
    position: absolute;
    top: 0;
    left: calc(100% + 32px);
    width: 300px;
    min-width: 300px;
    height: 100%;
}

.gq-sidebar,
.gq-sidebar * {
    box-sizing: border-box;
}

.gq-sidebar .f-sbs-wrap-height {
    height: 100%;
}

.gq-sidebar .f-sbs-wrapper {
    position: sticky;
    top: 96px;
}

.gq-sidebar .advertisment_notice,
.gq-sidebar .ad-container {
    width: 300px;
    max-width: 300px;
    margin-right: 0 !important;
    margin-left: 0 !important;
}

.gq-sticky-top-ad {
    position: fixed;
    top: 0;
    z-index: 9999999999;
    width: 100%;
    max-height: 120px;
    overflow: hidden;
    text-align: center;
}

.gq-sticky-top-ad > div {
    margin-right: auto;
    margin-left: auto;
}

.gq-page .desktop-anchor-stick {
    right: 0;
    left: 0;
    max-width: 768px;
}

.gq-quiz-anchor {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9999;
    width: min(768px, 100%);
    min-height: 50px;
    max-height: 120px;
    margin: 0 auto;
    overflow: hidden;
    background: transparent;
    text-align: center;
}

.gq-quiz,
.gq-quiz * {
    box-sizing: border-box;
}

.gq-quiz {
    color: var(--gq-ink);
    font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
}

.gq-status-stack {
    position: sticky;
    top: 80px;
    z-index: 999998;
}

.gq-status {
    min-height: 62px;
    display: grid;
    grid-template-columns: 1.05fr 1.2fr 1.2fr 1.2fr .8fr;
    align-items: center;
    gap: 11px;
    padding: 0 30px;
    color: #f8f8f8;
    background: var(--gq-charcoal);
    border-radius: 0 0 12px 12px;
    box-shadow: 0 7px 15px rgba(14, 22, 18, .22);
    font-size: 21px;
}

.gq-status__item {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 9px;
    white-space: nowrap;
}

.gq-status__item strong {
    color: var(--gq-muted);
    font-size: 23px;
    font-weight: 800;
}

.gq-status__correct strong {
    color: var(--gq-red);
}

.gq-status__item > span:not(.gq-coin, .gq-flame, .gq-status__mobile-label) {
    color: var(--gq-muted);
}

.gq-status__question strong,
.gq-status__question .gq-status__desktop-label {
    color: #f8f8f8;
    font-weight: 500;
}

.gq-status__mobile-label {
    display: none;
}

.gq-status__results-label {
    display: none;
}

.gq-quiz.is-complete .gq-status__question > :not(.gq-status__results-label) {
    display: none;
}

.gq-quiz.is-complete .gq-status__results-label {
    display: inline;
    color: #f8f8f8;
    font-weight: 500;
}

.gq-coin {
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    display: inline-grid;
    place-items: center;
    color: #d4ad00;
    background: radial-gradient(circle at 35% 28%, #fff187 0 16%, #ffe23e 17% 58%, #f0c913 59% 100%);
    border: 3px solid #fff06c;
    border-radius: 50%;
    box-shadow: inset 0 0 0 2px rgba(180, 132, 0, .25);
    font-size: 21px;
    font-weight: 900;
    line-height: 1;
}

.gq-flame {
    font-size: 25px;
    filter: saturate(1.2);
}

.gq-restart {
    justify-self: end;
    padding: 10px 0;
    color: #fff;
    background: transparent;
    border: 0;
    font: inherit;
    cursor: pointer;
}

.gq-restart:hover,
.gq-restart:focus-visible {
    color: var(--gq-yellow);
}

.gq-progress {
    height: 5px;
    margin: 0 12px;
    overflow: hidden;
    background: #dedede;
    border-radius: 0 0 4px 4px;
}

.gq-progress span {
    display: block;
    width: 0;
    height: 100%;
    background: var(--gq-red);
    transition: width .25s ease;
}

.gq-questions,
.gq-completion,
.gq-results {
    width: min(880px, 100%);
    margin: 38px auto 0;
}

.gq-question {
    overflow: visible;
    background: var(--gq-paper);
    border-radius: 10px;
    box-shadow: 0 4px 24px rgba(30, 45, 35, .1);
}

.gq-question[hidden],
.gq-completion[hidden],
.gq-results[hidden],
.gq-completion [hidden],
.gq-answer-status[hidden],
.gq-feedback[hidden],
.gq-actions[hidden],
.gq-answer[hidden] {
    display: none !important;
}

.gq-media {
    position: relative;
    width: 100%;
    height: 500px;
    max-height: 500px;
    overflow: hidden;
    background: #e8e8e8;
    border-radius: 10px 10px 0 0;
}

.gq-media img,
.gq-media svg {
    display: block;
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.gq-video {
    position: relative;
    height: 0;
    padding-bottom: 56.25%;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}

.gq-video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.gq-title {
    margin: 0;
    padding: 30px 54px 22px;
    color: var(--gq-ink);
    font-size: clamp(25px, 3vw, 34px);
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
}

.gq-ad-mount {
    width: 100%;
    display: grid;
    grid-template-rows: auto 1fr;
    place-items: center;
    overflow: hidden;
}

.gq-ad-mount--question {
    min-height: 280px;
    padding: 12px 0 24px;
}

.gq-ad-mount--response {
    min-height: 280px;
    padding: 0 0 20px;
}

.gq-quiz-ad-target {
    width: 100%;
    min-height: 250px;
    display: grid;
    place-items: center;
    margin: 0 auto;
}

.gq-quiz-ad-label {
    display: block;
    margin-bottom: 8px;
    color: #8e8e8e;
    font-size: 12px;
    line-height: 1;
    text-transform: uppercase;
}

.gq-ad-mount .advertisment_notice,
.gq-ad-mount .ad-container {
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.gq-ad-mount .ad-label,
.gq-ad-mount .advertisment_notice > span {
    display: block;
    margin-bottom: 8px;
    color: #8e8e8e;
    font-size: 12px;
    line-height: 1;
    text-transform: uppercase;
}

.gq-answer-area {
    position: relative;
    padding: 12px 54px 42px 78px;
}

.gq-answers {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.gq-answer {
    min-height: 76px;
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr) auto 28px;
    align-items: center;
    gap: 13px;
    padding: 12px 16px;
    color: #373737;
    background: #f7f7f7;
    border: 2px solid var(--gq-border);
    border-radius: 8px;
    box-shadow: 0 4px 0 #d2d2d2;
    font: inherit;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.25;
    text-align: left;
    cursor: pointer;
    transition: transform .15s ease, border-color .15s ease, background .15s ease, box-shadow .15s ease;
}

.gq-answer:hover:not(:disabled),
.gq-answer:focus-visible:not(:disabled) {
    transform: translateY(-2px);
    border-color: #a8a8a8;
    box-shadow: 0 6px 0 #c7c7c7;
    outline: none;
}

.gq-answer:disabled {
    cursor: default;
}

.gq-answer__letter {
    grid-column: 1;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: #888;
    background: #fff;
    border: 2px solid #d7d7d7;
    border-radius: 50%;
    font-size: 20px;
    font-weight: 900;
    text-transform: uppercase;
}

.gq-answer__text {
    grid-column: 2;
}

.gq-answer__audience {
    grid-column: 3;
    padding: 5px 8px;
    color: #177898;
    background: #d9f4ff;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 900;
    white-space: nowrap;
}

.gq-answer__mark {
    grid-column: 4;
    color: inherit;
    font-size: 28px;
    font-weight: 900;
    text-align: center;
}

.gq-answer.is-correct {
    color: #166638;
    background: #eefaf3;
    border-color: var(--gq-green);
    box-shadow: 0 4px 0 #23864c;
}

.gq-answer.is-correct .gq-answer__letter {
    color: #fff;
    background: var(--gq-green);
    border-color: var(--gq-green);
}

.gq-answer.is-wrong {
    color: #9c2828;
    background: #fff1f1;
    border-color: var(--gq-red);
    box-shadow: 0 4px 0 #d63f3f;
}

.gq-answer.is-wrong .gq-answer__letter {
    color: #fff;
    background: var(--gq-red);
    border-color: var(--gq-red);
}

.gq-hint {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 13px;
    color: #fff;
    background: #4dc3f2;
    border: 0;
    border-radius: 999px;
    box-shadow: 0 5px 14px rgba(0, 0, 0, .22);
    font-size: 17px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    z-index: 2;
}

.gq-hint:hover:not(:disabled),
.gq-hint:focus-visible:not(:disabled) {
    transform: translateY(-1px);
}

.gq-hint:disabled {
    opacity: .48;
    cursor: default;
}

.gq-hint__icon {
    font-size: 22px;
    line-height: 1;
}

.gq-visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.gq-hint--image {
    position: absolute;
    right: 14px;
    bottom: 14px;
    gap: 6px;
    padding: 8px 12px;
    font-size: 14px;
}

.gq-hint--image .gq-hint__icon {
    font-size: 18px;
}

.gq-hint--answers {
    position: absolute;
    top: 44%;
    left: 8px;
    width: 60px;
    min-height: 170px;
    flex-direction: column;
    justify-content: flex-start;
    gap: 20px;
    padding: 10px 5px;
    border-radius: 15px;
    font-size: 15px;
    text-align: center;
    transform: translateY(-50%);
}

.gq-hint--answers .gq-hint__label {
    max-width: 48px;
    line-height: 1.15;
}

.gq-hint--answers .gq-hint__icon {
    font-size: 18px;
}

.gq-hint--answers:hover:not(:disabled),
.gq-hint--answers:focus-visible:not(:disabled) {
    transform: translateY(calc(-50% - 1px));
}

.gq-inline-clue {
    margin: 0 0 16px;
    padding: 13px 16px;
    color: #176989;
    background: #e5f7fd;
    border: 2px solid #7ed4ef;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.4;
    text-align: center;
}

.gq-lifeline-modal[hidden],
.gq-inline-clue[hidden],
.gq-answer__audience[hidden] {
    display: none !important;
}

body.gq-modal-open {
    overflow: hidden;
}

.gq-lifeline-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(28, 31, 30, .58);
    z-index: 10000;
}

.gq-lifeline-dialog {
    width: min(600px, 100%);
    overflow: hidden;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 55px rgba(0, 0, 0, .36);
}

.gq-lifeline-dialog__header {
    position: relative;
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 28px;
    color: #fff;
    background: linear-gradient(90deg, #48bdea, #75e0ec);
}

.gq-lifeline-dialog__header h2 {
    margin: 0;
    font-size: 31px;
    font-weight: 900;
    letter-spacing: .02em;
    text-transform: uppercase;
    text-shadow: 0 3px 4px rgba(0, 0, 0, .2);
}

.gq-lifeline-dialog__info {
    position: absolute;
    left: 28px;
    font-size: 28px;
}

.gq-lifeline-dialog__ring {
    position: absolute;
    top: -14px;
    left: 50%;
    font-size: 70px;
    filter: drop-shadow(0 5px 7px rgba(0, 0, 0, .25));
    transform: translateX(-145px);
}

.gq-lifeline-dialog__body {
    padding: 27px 24px 20px;
}

.gq-lifeline-dialog__remaining {
    margin: 0 0 24px;
    color: #f05454;
    font-size: 24px;
    font-weight: 800;
    text-align: center;
}

.gq-lifeline-options {
    display: grid;
    gap: 16px;
}

.gq-lifeline-options button {
    min-height: 92px;
    display: grid;
    grid-template-columns: 62px minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    color: #fff;
    background: #4fc3f1;
    border: 0;
    border-radius: 12px;
    font: inherit;
    text-align: left;
    cursor: pointer;
}

.gq-lifeline-options button:hover:not(:disabled),
.gq-lifeline-options button:focus-visible:not(:disabled) {
    background: #36addd;
    box-shadow: 0 0 0 4px rgba(23, 120, 152, .3);
    outline: none;
    transform: translateY(-1px);
}

.gq-lifeline-options button > span {
    font-size: 43px;
    line-height: 1;
    text-align: center;
}

.gq-lifeline-options button strong {
    font-size: 25px;
}

.gq-lifeline-options button small {
    display: none;
    padding: 5px 8px;
    color: #fff;
    background: rgba(0, 0, 0, .22);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.gq-lifeline-options button:disabled {
    background: #aeb7ba;
    cursor: not-allowed;
    opacity: .7;
}

.gq-lifeline-options button:disabled small {
    display: inline-block;
}

.gq-lifeline-dialog__close {
    display: block;
    margin: 20px auto 0;
    padding: 8px 22px;
    color: #666;
    background: transparent;
    border: 0;
    font: inherit;
    font-size: 18px;
    cursor: pointer;
}

.gq-lifeline-dialog__close:hover,
.gq-lifeline-dialog__close:focus-visible {
    color: #222;
    text-decoration: underline;
}

.gq-response-panel {
    overflow: hidden;
    color: #f5f5f5;
    background: var(--gq-charcoal);
    border-radius: 0 0 8px 8px;
    scroll-margin-top: 112px;
    text-align: center;
}

.gq-answer-status {
    padding: 14px 20px;
    color: #fff;
    background: #74c8b9;
    font-size: 30px;
    font-weight: 900;
    line-height: 1.15;
    text-transform: uppercase;
    text-shadow: 0 2px 3px rgba(0, 0, 0, .22);
}

.gq-answer-status.is-incorrect {
    background: var(--gq-red);
}

.gq-pending-title {
    margin: 0;
    padding: 20px 20px 4px;
    color: #f1f1f1;
    font-size: 32px;
    font-weight: 800;
}

.gq-feedback {
    max-width: 760px;
    margin: 0 auto;
    padding: 18px 44px 38px;
    color: #f5f5f5;
    background: transparent;
    border: 0;
    font-size: 24px;
    line-height: 1.45;
}

.gq-feedback.is-incorrect,
.gq-feedback.is-correct {
    color: #f5f5f5;
    background: transparent;
}

.gq-community-results {
    display: grid;
    gap: 16px;
    padding: 24px 38px 30px;
    color: #f5f5f5;
    background: #373938;
    text-align: left;
}

.gq-community-results[hidden] {
    display: none;
}

.gq-community-answer__line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.gq-community-answer__line strong {
    min-width: 0;
    font-size: 17px;
}

.gq-community-answer__line span {
    flex: 0 0 auto;
    font-size: 17px;
}

.gq-community-answer__track {
    height: 8px;
    margin-top: 8px;
    overflow: hidden;
    background: #555856;
    border-radius: 99px;
}

.gq-community-answer__track i {
    display: block;
    width: 0;
    height: 100%;
    background: #bec2bf;
    border-radius: inherit;
    transition: width .35s ease;
}

.gq-community-answer.is-correct-answer {
    color: #74c8b9;
}

.gq-community-answer.is-correct-answer .gq-community-answer__track i {
    background: #67c3b3;
}

.gq-community-answer.is-selected:not(.is-correct-answer) {
    color: #ff7272;
}

.gq-community-answer.is-selected:not(.is-correct-answer) .gq-community-answer__track i {
    background: #d34a4a;
}

.gq-question.is-submitting .gq-answers {
    opacity: .7;
    pointer-events: none;
}

.gq-answer-fact {
    margin: 0;
    padding: 0;
    border: 0;
    color: inherit;
    font: inherit;
}

.gq-actions {
    padding: 22px 54px 14px;
    text-align: center;
}

.gq-response-instruction {
    margin: 0;
    padding: 0 20px 20px;
    color: #fff;
    font-size: 20px;
}

.gq-response-instruction--answered {
    display: none;
}

.gq-question.is-answered .gq-pending-title,
.gq-question.is-answered .gq-response-instruction--pending {
    display: none;
}

.gq-question.is-answered .gq-response-instruction--answered {
    display: block;
}

.gq-rating {
    min-height: 94px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 12px 38px;
    background: #242525;
    border-top: 1px solid #383939;
    font-size: 25px;
    text-align: left;
}

.gq-rating__buttons {
    display: flex;
    gap: 12px;
}

.gq-rating__buttons button {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    padding: 10px;
    color: #fff;
    background: #555656;
    border: 0;
    border-radius: 5px;
    cursor: pointer;
}

.gq-rating__buttons button:hover,
.gq-rating__buttons button:focus-visible,
.gq-rating__buttons button.is-selected {
    color: var(--gq-charcoal);
    background: #fff;
}

.gq-rating__buttons svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.gq-next {
    min-width: 220px;
    padding: 18px 26px;
    color: var(--gq-charcoal);
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 0 #c9c9c9, 0 5px 14px rgba(0, 0, 0, .12);
    font-size: 17px;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
}

.gq-next:hover,
.gq-next:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 5px 0 #bbb, 0 6px 15px rgba(0, 0, 0, .14);
}

.gq-next:disabled {
    color: #999;
    background: #ededed;
    border-color: #dedede;
    box-shadow: 0 3px 0 #d2d2d2;
    cursor: not-allowed;
    opacity: .72;
    transform: none;
}

.gq-response-panel .gq-next {
    min-width: 290px;
    padding: 20px 34px;
    font-size: 31px;
    text-transform: none;
}

.gq-response-panel .gq-next:disabled {
    color: #7d7979;
    background: #aaa8a8;
    border-color: #aaa8a8;
    box-shadow: none;
    opacity: 1;
}

.gq-completion {
    min-height: 470px;
    padding: 72px 30px;
    background: transparent;
    text-align: center;
}

.gq-completion__meter {
    position: relative;
    width: 260px;
    height: 46px;
    margin: 0 auto 52px;
    background: linear-gradient(90deg, #ff5555, #ffe54b 52%, #73caba);
    border-radius: 20px;
    box-shadow: 0 10px 28px rgba(80, 107, 92, .2);
}

.gq-completion__meter span {
    position: absolute;
    top: 50%;
    right: -2px;
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    color: #292929;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 8px 22px rgba(0, 0, 0, .2);
    font-size: 32px;
    font-weight: 900;
    transform: translateY(-50%);
}

.gq-completion h2 {
    margin: 0 0 18px;
    font-size: 35px;
}

.gq-completion p {
    margin: 0 0 28px;
    font-size: 22px;
}

.gq-grading-dots {
    display: flex;
    justify-content: center;
    gap: 9px;
}

.gq-grading-dots i {
    width: 11px;
    height: 11px;
    background: #45acc4;
    border-radius: 50%;
    animation: gq-grading-pulse .9s infinite alternate;
}

.gq-grading-dots i:nth-child(2) {
    animation-delay: .2s;
}

.gq-grading-dots i:nth-child(3) {
    animation-delay: .4s;
}

@keyframes gq-grading-pulse {
    to { opacity: .25; transform: translateY(-6px); }
}

.gq-see-results {
    min-width: 360px;
    padding: 20px 30px;
    color: #fff;
    background: #45acc4;
    border: 0;
    border-radius: 8px;
    box-shadow: 0 8px 22px rgba(44, 143, 166, .24);
    font: inherit;
    font-size: 29px;
    font-weight: 900;
    cursor: pointer;
}

.gq-see-results:hover,
.gq-see-results:focus-visible {
    background: #369bb3;
    transform: translateY(-1px);
}

.gq-results {
    padding: 0;
    background: transparent;
    border-radius: 10px;
    box-shadow: none;
    text-align: center;
}

.gq-result-card {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    align-items: center;
    gap: 34px;
    padding: 48px 54px 42px;
    color: #292929;
    background: #f45a5a;
    border-radius: 8px;
    box-shadow: 0 5px 16px rgba(28, 37, 32, .18);
}

.gq-result-card.is-pass {
    background: #74c8b9;
}

.gq-result-grade {
    width: 122px;
    height: 122px;
    display: grid;
    place-items: center;
    color: #f45a5a;
    background: rgba(255, 255, 255, .9);
    border-radius: 50%;
    font-size: 66px;
    font-weight: 900;
}

.gq-result-card.is-pass .gq-result-grade {
    color: #3b9d8c;
}

.gq-result-summary {
    min-width: 0;
    text-align: left;
}

.gq-results h2 {
    margin: 0 0 18px;
    font-size: 35px;
}

.gq-result-scoreline {
    margin: 0 0 24px;
    font-size: 21px;
}

.gq-result-copy {
    max-width: 100%;
    margin: 0 0 24px;
    font-size: 18px;
}

.gq-result-copy h3 {
    margin: 0 0 8px;
}

.gq-result-actions {
    max-width: 360px;
    display: grid;
    gap: 14px;
}

.gq-result-button {
    width: 100%;
    padding: 16px 20px;
    color: #fff;
    background: #555756;
    border: 0;
    border-radius: 8px;
    box-shadow: 0 7px 17px rgba(0, 0, 0, .16);
    font: inherit;
    font-size: 21px;
    font-weight: 800;
    cursor: pointer;
}

.gq-result-button:hover,
.gq-result-button:focus-visible {
    background: #444645;
}

.gq-result-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 18px;
    padding: 14px;
    background: rgba(255, 255, 255, .24);
    border-radius: 8px;
    text-align: center;
}

.gq-result-stats span,
.gq-result-stats strong {
    display: block;
}

.gq-result-stats strong {
    font-size: 22px;
}

.gq-next-quiz,
.gq-quiz-recommendations,
.gq-question-review {
    margin-top: 34px;
}

.gq-next-quiz {
    position: relative;
    padding: 42px 34px 30px;
    color: #fff;
    background: #171817;
    border-radius: 8px;
    box-shadow: 0 5px 16px rgba(28, 37, 32, .18);
}

.gq-next-quiz__label {
    position: absolute;
    top: 0;
    left: 50%;
    padding: 9px 22px;
    color: #292929;
    background: #fff;
    border-radius: 0 0 14px 14px;
    font-size: 17px;
    font-weight: 900;
    transform: translateX(-50%);
}

.gq-next-quiz__body {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    text-align: left;
}

.gq-next-quiz__body p {
    margin: 0 0 6px;
    color: #a8a8a8;
    font-size: 14px;
    text-transform: uppercase;
}

.gq-next-quiz h2 {
    margin: 0;
    color: #fff;
    font-size: 27px;
}

.gq-next-quiz__button {
    flex: 0 0 auto;
    padding: 17px 28px;
    color: #fff;
    background: #45acc4;
    border-radius: 8px;
    box-shadow: 0 7px 17px rgba(0, 0, 0, .28);
    font-size: 20px;
    font-weight: 900;
    text-decoration: none;
}

.gq-next-quiz__button:hover,
.gq-next-quiz__button:focus-visible {
    color: #fff;
    background: #369bb3;
}

.gq-quiz-recommendations {
    padding: 30px 34px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(30, 45, 35, .12);
}

.gq-question-review {
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}

.gq-section-heading {
    margin-bottom: 24px;
    text-align: left;
}

.gq-section-heading p {
    margin: 0 0 4px;
    color: #888;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.gq-section-heading h2 {
    margin: 0 0 5px;
    font-size: 28px;
}

.gq-section-heading > span {
    color: #777;
    font-size: 14px;
}

.gq-quiz-recommendations__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px 34px;
    text-align: left;
}

.gq-quiz-recommendations__grid a {
    color: #2588b4;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.35;
    text-decoration: none;
}

.gq-quiz-recommendations__grid a:hover,
.gq-quiz-recommendations__grid a:focus-visible {
    color: #176989;
    text-decoration: underline;
}

.gq-how-to-play {
    margin-top: 34px;
    overflow: hidden;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 16px rgba(28, 37, 32, .16);
}

.gq-quiz.is-complete .gq-how-to-play--quiz {
    display: none;
}

.gq-how-to-play summary {
    min-height: 82px;
    display: flex;
    align-items: center;
    gap: 34px;
    padding: 18px 34px;
    color: #fff;
    background: #45acc4;
    list-style: none;
    text-align: left;
    cursor: pointer;
}

.gq-how-to-play summary::-webkit-details-marker {
    display: none;
}

.gq-how-to-play summary::marker {
    content: "";
}

.gq-how-to-play summary strong {
    font-size: 30px;
    font-weight: 900;
}

.gq-how-to-play__chevron {
    position: relative;
    width: 18px;
    height: 22px;
    flex: 0 0 18px;
    transition: transform .2s ease;
}

.gq-how-to-play__chevron::before,
.gq-how-to-play__chevron::after {
    content: "";
    position: absolute;
    left: 2px;
    width: 11px;
    height: 11px;
    border-right: 3px solid currentColor;
    border-bottom: 3px solid currentColor;
    transform: rotate(45deg);
}

.gq-how-to-play__chevron::before {
    top: -1px;
}

.gq-how-to-play__chevron::after {
    top: 7px;
}

.gq-how-to-play[open] {
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
}

.gq-how-to-play[open] summary {
    min-height: 430px;
    grid-column: 1;
    grid-row: 1;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
    padding: 54px 0 34px;
    text-align: center;
}

.gq-how-to-play[open] summary strong {
    order: 1;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

.gq-how-to-play[open] .gq-how-to-play__chevron {
    order: 2;
    transform: rotate(180deg);
}

.gq-how-to-play__content {
    grid-column: 2;
    grid-row: 1;
    padding: 46px 50px 34px;
    color: #303030;
    text-align: left;
}

.gq-how-to-play__content p {
    margin: 0 0 18px;
    font-size: 18px;
    line-height: 1.55;
}

.gq-how-to-play__content p:last-child {
    margin-bottom: 0;
}

.gq-question-review__list {
    display: grid;
    gap: 30px;
}

.gq-review-card {
    overflow: hidden;
    border: 1px solid #d9dedb;
    border-radius: 8px;
    box-shadow: 0 4px 13px rgba(25, 35, 29, .1);
    text-align: left;
}

.gq-review-card__header {
    min-height: 128px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 20px;
    background: #fff;
}

.gq-review-card__header span {
    color: #858585;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.gq-review-card__header h3 {
    margin: 4px 0 0;
    font-size: 18px;
    line-height: 1.35;
}

.gq-review-card__explanation {
    margin: 12px 0 0;
    color: #555;
    font-size: 14px;
    line-height: 1.5;
}

.gq-review-card__header img {
    width: 160px;
    height: 96px;
    flex: 0 0 160px;
    object-fit: cover;
    border-radius: 5px;
}

.gq-review-card__outcome {
    padding: 10px 20px;
    color: #fff;
    background: #d34a4a;
    font-weight: 900;
    text-transform: uppercase;
}

.gq-review-card.is-correct .gq-review-card__outcome {
    background: #3b9d8c;
}

.gq-review-card__answers {
    display: grid;
    gap: 16px;
    padding: 22px 20px 24px;
    color: #f5f5f5;
    background: #292b2a;
}

.gq-review-answer__line {
    display: grid;
    grid-template-columns: 25px minmax(0, 1fr) auto;
    align-items: center;
    gap: 9px;
}

.gq-review-answer__line strong {
    min-width: 0;
    font-size: 15px;
}

.gq-review-answer__mark {
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    border: 2px solid #686b69;
    border-radius: 50%;
    font-weight: 900;
}

.gq-review-answer__track {
    height: 7px;
    margin: 7px 0 0 34px;
    overflow: hidden;
    background: #555856;
    border-radius: 99px;
}

.gq-review-answer__track i {
    display: block;
    height: 100%;
    background: #b7bbb8;
    border-radius: inherit;
}

.gq-review-answer.is-correct-answer {
    color: #74c8b9;
}

.gq-review-answer.is-correct-answer .gq-review-answer__mark,
.gq-review-answer.is-correct-answer .gq-review-answer__track i {
    color: #fff;
    background: #55b6a5;
    border-color: #55b6a5;
}

.gq-review-answer.is-selected:not(.is-correct-answer) {
    color: #ff7272;
}

.gq-review-answer.is-selected:not(.is-correct-answer) .gq-review-answer__mark,
.gq-review-answer.is-selected:not(.is-correct-answer) .gq-review-answer__track i {
    color: #fff;
    background: #e05252;
    border-color: #e05252;
}

@media (max-width: 1439px) {
    .gq-sidebar {
        display: none !important;
    }
}

@media (max-width: 900px) {
    .gq-status {
        padding: 0 18px;
        font-size: 17px;
    }

    .gq-status__item strong {
        font-size: 19px;
    }

    .gq-coin {
        width: 28px;
        height: 28px;
        flex-basis: 28px;
        font-size: 18px;
    }

    .gq-flame {
        font-size: 22px;
    }

    .gq-hint--answers {
        left: 8px;
        transform: translateY(-50%);
    }

    .gq-hint--answers:hover:not(:disabled),
    .gq-hint--answers:focus-visible:not(:disabled) {
        transform: translateY(calc(-50% - 1px));
    }

    .gq-answer-area {
        padding-left: 78px;
    }
}

@media (max-width: 680px) {
    .gq-shell {
        width: 100%;
        margin-top: 12px;
    }

    .gq-status {
        min-height: 54px;
        grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
        gap: 5px;
        padding: 0 10px;
        border-radius: 0;
        font-size: 11px;
    }

    .gq-status__item {
        justify-content: center;
        gap: 3px;
        flex-wrap: wrap;
    }

    .gq-status__item strong {
        font-size: 15px;
    }

    .gq-status__item > span:not(.gq-coin, .gq-flame, .gq-status__mobile-label) {
        width: 100%;
        text-align: center;
    }

    .gq-status__desktop-label {
        display: none;
    }

    .gq-status__mobile-label {
        display: inline;
    }

    .gq-coin {
        width: 23px;
        height: 23px;
        flex-basis: 23px;
        font-size: 15px;
    }

    .gq-flame {
        font-size: 18px;
    }

    .gq-restart {
        font-size: 13px;
    }

    .gq-questions,
    .gq-completion,
    .gq-results {
        margin-top: 18px;
    }

    .gq-question,
    .gq-media,
    .gq-video,
    .gq-results {
        border-radius: 0;
    }

    .gq-media {
        height: 360px;
    }

    .gq-title {
        padding: 24px 20px 18px;
        font-size: 24px;
    }

    .gq-ad-mount--question,
    .gq-ad-mount--response {
        min-height: 270px;
    }

    .gq-answer-area {
        padding: 72px 16px 28px;
    }

    .gq-answers {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .gq-answer {
        min-height: 68px;
        grid-template-columns: 40px minmax(0, 1fr) auto 26px;
        padding: 10px 12px;
        font-size: 16px;
    }

    .gq-answer__audience {
        padding: 4px 6px;
        font-size: 12px;
    }

    .gq-answer__letter {
        width: 37px;
        height: 37px;
        font-size: 17px;
    }

    .gq-hint--answers {
        top: 15px;
        left: 16px;
        width: auto;
        min-height: 0;
        flex-direction: row;
        gap: 8px;
        padding: 10px 14px;
        border-radius: 999px;
        transform: none;
    }

    .gq-hint--answers .gq-hint__label {
        max-width: none;
    }

    .gq-hint--answers:hover:not(:disabled),
    .gq-hint--answers:focus-visible:not(:disabled) {
        transform: translateY(-1px);
    }

    .gq-lifeline-modal {
        padding: 12px;
    }

    .gq-lifeline-dialog {
        max-height: calc(100vh - 24px);
        overflow-y: auto;
        border-radius: 14px;
    }

    .gq-lifeline-dialog__header {
        min-height: 66px;
        padding: 14px 18px;
    }

    .gq-lifeline-dialog__header h2 {
        font-size: 24px;
    }

    .gq-lifeline-dialog__info {
        left: 18px;
        font-size: 22px;
    }

    .gq-lifeline-dialog__ring {
        top: -8px;
        font-size: 54px;
        transform: translateX(-112px);
    }

    .gq-lifeline-dialog__body {
        padding: 22px 16px 16px;
    }

    .gq-lifeline-dialog__remaining {
        margin-bottom: 18px;
        font-size: 18px;
    }

    .gq-lifeline-options {
        gap: 12px;
    }

    .gq-lifeline-options button {
        min-height: 72px;
        grid-template-columns: 43px minmax(0, 1fr) auto;
        gap: 10px;
        padding: 10px 12px;
    }

    .gq-lifeline-options button > span {
        font-size: 31px;
    }

    .gq-lifeline-options button strong {
        font-size: 18px;
    }

    .gq-actions {
        padding: 22px 16px 14px;
    }

    .gq-next {
        width: 100%;
    }

    .gq-response-panel .gq-next {
        min-width: 0;
        font-size: 25px;
    }

    .gq-pending-title {
        font-size: 27px;
    }

    .gq-response-instruction {
        font-size: 17px;
    }

    .gq-feedback {
        padding: 16px 20px 30px;
        font-size: 20px;
    }

    .gq-community-results {
        padding: 22px 20px 26px;
    }

    .gq-rating {
        min-height: 78px;
        padding: 10px 16px;
        font-size: 20px;
    }

    .gq-rating__buttons button {
        width: 52px;
        height: 52px;
    }

    .gq-completion {
        min-height: 400px;
        padding: 58px 18px;
    }

    .gq-completion__meter {
        width: 220px;
        margin-bottom: 44px;
    }

    .gq-completion h2,
    .gq-results h2 {
        font-size: 28px;
    }

    .gq-completion p {
        font-size: 18px;
    }

    .gq-see-results {
        width: 100%;
        min-width: 0;
        font-size: 23px;
    }

    .gq-result-card {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 34px 20px;
        border-radius: 0;
    }

    .gq-result-grade {
        width: 104px;
        height: 104px;
        margin: 0 auto;
        font-size: 56px;
    }

    .gq-result-summary {
        text-align: center;
    }

    .gq-result-scoreline {
        font-size: 18px;
    }

    .gq-result-actions {
        max-width: none;
    }

    .gq-next-quiz,
    .gq-quiz-recommendations,
    .gq-question-review {
        margin-top: 20px;
        border-radius: 0;
    }

    .gq-next-quiz {
        padding: 54px 20px 24px;
    }

    .gq-next-quiz__body {
        align-items: stretch;
        flex-direction: column;
        text-align: center;
    }

    .gq-next-quiz h2 {
        font-size: 23px;
    }

    .gq-next-quiz__button {
        text-align: center;
    }

    .gq-quiz-recommendations {
        padding: 26px 18px;
    }

    .gq-question-review {
        padding: 0;
    }

    .gq-how-to-play {
        margin-top: 20px;
        border-radius: 0;
    }

    .gq-how-to-play summary,
    .gq-how-to-play[open] summary {
        min-height: 72px;
        flex-direction: row;
        justify-content: flex-start;
        gap: 22px;
        padding: 16px 20px;
        text-align: left;
    }

    .gq-how-to-play summary strong,
    .gq-how-to-play[open] summary strong {
        order: 2;
        writing-mode: initial;
        font-size: 24px;
        transform: none;
    }

    .gq-how-to-play[open] {
        display: block;
    }

    .gq-how-to-play[open] .gq-how-to-play__chevron {
        order: 1;
    }

    .gq-how-to-play__content {
        padding: 24px 20px 26px;
    }

    .gq-how-to-play__content p {
        font-size: 16px;
    }

    .gq-quiz-recommendations__grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .gq-review-card__header {
        align-items: flex-start;
        padding: 16px;
    }

    .gq-review-card__header h3 {
        font-size: 16px;
    }

    .gq-review-card__header img {
        width: 108px;
        height: 72px;
        flex-basis: 108px;
    }

    .gq-review-card__outcome,
    .gq-review-card__answers {
        padding-left: 16px;
        padding-right: 16px;
    }

    .gq-review-answer__line strong {
        font-size: 14px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .gq-progress span,
    .gq-answer,
    .gq-next,
    .gq-hint,
    .gq-grading-dots i {
        transition: none;
        animation: none;
    }
}
