
.quiz-teaser {
    max-width: 800px;
}

/*************************************************************************/


.quiz__header, .quiz__body {
    padding: 24px 30px;
    background-color: #DDEDF7;
    color: #198FB6;
    border-radius: 12px;
    border-left: 3px solid #198FB6;
    margin-bottom: 6px;
}
.quiz__header1 {
    display: inline-block;
    padding: 3px 6px;
    margin-bottom: 4px;
    color: #198FB6;
    font-size: 13px;
    font-weight: 500;
    line-height: 16px;
    text-transform: uppercase;
    border-radius: 4px;
}
.quiz__header2 {
    padding: 3px 0;
    margin-bottom: 15px;
    color: #404C51;
    font-size: 15px;
    font-weight: 600;
    line-height: 18px;
}

.quiz__header_teaser .quiz__header {
    padding: 24px 30px 30px 30px;
}
.quiz__header_teaser .quiz__header1 {
    margin-bottom: 6px;
    background-color: #ffffff;
}
.quiz__header_teaser .quiz__header2 {
    padding: 2px 0;
    margin-bottom: 24px;
    color: #198FB6;
    font-size: 24px;
    font-weight: 600;
    line-height: 29px;
}

.quiz__pathway {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 15px;
}
.quiz__pathway-item {
    flex: 1 1 auto;
    font-size: 13px;
    line-height: 16px;
    letter-spacing: -0.02em;
    font-weight: 300;
    color: #404C51;
    padding-left: 20px;
    background: url("/static/images/icons/question.svg") no-repeat;
}
.quiz__pathway-item b {
    font-weight: 500;
}

.quiz__header3 {
    color: #198FB6;
    font-size: 24px;
    font-weight: 600;
    line-height: 29px;
    margin-bottom: 15px;
}

.quiz__button {
    margin-right: 10px;
}

.quiz__answer-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.quiz__answer {
    flex: 1 1 auto;
    display: flex;
    gap: 12px;
    padding: 10px 10px 10px 12px;
    background-color: #ffffff;
    border-radius: 4px;
    border: 3px solid #ffffff;
    font-size: 16px;
    line-height: 19px;
    font-weight: 500;
    color: #404C51
}
.quiz__answer span {
    flex: 1 1 auto;
}
.quiz__answer input[type='radio'] {
    flex: 0 0 auto;
    accent-color: red;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    background-clip: content-box;
    border: 3px solid #DEE3E8;
    /* background-color: #e7e6e7; */
    border-radius: 50%;
}
.quiz__answer:has(input:checked) {
    border: 3px solid #198FB6;
}
input[type="radio"]:checked {
    border: 3px solid #198FB6;
}

.quiz__result-body {
    background-color: #ffffff;
    padding: 12px 15px 15px 15px;
    font-size: 15px;
    line-height: 18px;
    font-weight: 400;
    color: #404C51;
    margin-bottom: 24px;
    border-radius: 8px;
}

.quiz__link-list,
.content-body ul.quiz__link-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    list-style-type: none;
}
.quiz__link-item, .content-body ul li.quiz__link-item {
    flex: 1 1 auto;
    padding: 7px 12px 7px 38px;
    background: url("/static/images/icons/doc.svg") 12px 7px no-repeat #E6EAF0;
    border-radius: 6px;
    font-size: 13px;
    line-height: 16px;
    font-weight: 500;
    text-transform: uppercase;
    color: #404C51;
}
.quiz__link-item a {
    color: #404C51;
    text-decoration: none;
}
.quiz__link-item a:hover {
    text-decoration: underline;
}

.quiz__result-body > * {
    margin-top: 1em;
    margin-bottom: 1em;
}
.quiz__result-body > *:first-of-type {
    margin-top: 0;
}
.quiz__result-body > *:last-of-type {
    margin-bottom: 0;
}

.quiz__result-header {
    font-size: 24px;
    font-weight: 600;
    line-height: 29px;
    margin-bottom: 12px !important;
}

.quiz__result-body ul, .content-body .quiz__result-body ul,
.quiz__result-body ol, .content-body .quiz__result-body ol {
    padding: 0;
    margin-left: 0;
    margin-right: 0;
    list-style-type: none;
}
.quiz__result-body ul li:not(.quiz__link-item) {
    padding-left: 20px;
    margin: 1em 0;
    background: url("/static/images/icons/ul-romb.svg") 7px 5px no-repeat;
}

.content-body .quiz__result-body ul li:before {
    display: none;
}