/* Специальные стили, акутальные только для этого проекта, например: */
body {
    max-width: 700px;
    width: 100%;
    text-align: center;
    display: none;
}

.buttons-wrapper, .radio-group, .infopane {
    margin-bottom: 12px;
}

.question-wrapper {
    border: 1px solid #dddddd;
    padding-bottom: 40px;
    padding-top: 15px;
    background-color: #ffffff;
}

.quiz-button {
    background: #ffdc60;
    margin: 60px auto 0;
    border: none;
    border-radius: 5px;
    font-size: 15px;
    width: 150px;
    height: 38px;
    line-height: 38px;
}

.quiz-button_inactive {
    background: #e8e8e8;
    cursor: auto;
    color: #666666;
}

.content {
    width: 100%;
    max-width: 800px;
    height: 600px;
    background: no-repeat center center;
    background-size: 100%;
    text-align: center;
    align-items: center;
    font-size: 16px;
    line-height: 18px;
}
.content_block {
    display: block;
}

.content_flex {
    display: flex;
}

/************** COVER *************/
.cover-wrapper {
    margin: 0 auto;
}

.quiz-label {
    height: 25px;
    padding: 5px 25px;
    margin-top: 40px;
    background: rgba(255, 255, 255, 0.9);
    display: inline-block;
    font-size: 15px;
}

.quiz-title {
    font-size: 40px;
    margin: 0 auto;
    line-height: 1.25;
    padding: 2px 80px 0 80px;
    text-align: center;
}

.quiz-title span {
    background-color: #ffffff;
    color: #333333;
    display: inline;
    padding-left: 0.50rem;
    padding-right: 0.50rem;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

/************** QUIZ-WRAPPER *************/
.question-wrapper .quiz-button {
    position: absolute;
    bottom: 0;
    display: block;
    transform: translate(-50%, 0);
    left: 50%;    
}

.numeration {
    background: #ffdc60;
    display: inline-block;
    margin-top: 12px;
    margin-bottom: 3px;
    width: 80px;
    height: 25px;
    line-height: 25px;
}
.quiz-content {
    max-width: 660px;
    width: 100%;
    position: relative;
    min-height: 560px;
    background: #ffffff;
    margin: 0 auto;
    padding: 0 18px 60px;
    overflow: auto;
}

.quiz-header {
    border-bottom: 1px solid #dddddd;
    margin-bottom: 40px;
}

.quiz-header_wrapper {
    margin: 30px 0 42px;
}

.quiz-header__text {
    font-size: 28px;
    line-height: 38px;
    color: #333333;
    margin: 0 0 7px;
}

.quiz-header__comment {
    font-size: 18px;
    line-height: 28px;
    margin: 0;
}

.quiz-header__img {
    max-width: 100%;
}
.quiz-header__img img {
    width: 100%;
    display: block;
    margin-bottom: 40px;
}

.option-wrapper {
    margin-bottom: 27px;
    width: 100%;
}

.option {
    margin-bottom: 5px;
}

.option_wrong .comment,
.option_wrong .comment a{
    color: #fb381e;
}

.option_wrong .comment a,
.option_right .comment a {
    text-decoration: underline;
}

.option_right .comment,
.option_right .comment a {
    color: #49c189;
}

.option-wrapper:hover {
    cursor: pointer;
}

.option_wrong:hover,
.option_right:hover {
    cursor: default;
}

.option-wrapper:hover .option__checkbox {
    background-position: 25% 25%;
}
.option_wrong:hover .option__checkbox {
    background-position: 0 0;
}

.option_wrong:hover,
.option_right:hover,
.option_wrong:hover .option,
.option_right:hover .option {
    cursor: default;
}

.wrong {
    background-position: 50% 50% !important;
}

.right {
    background-position: 100% 100% !important;
}

.faded-right {
    background-position: 75% 75% !important;
}

.option__checkbox {
    background: url(../i/quiz-icons.svg) 0 0;
    width: 25px;
    height: 25px;
    background-size: cover;
    margin-top: -1px;
    float: left;
}

.option__text {
    line-height: 26px;
    text-align: left;
    margin-left: 37px;
}

.comment {
    margin-left: 37px;
    font-weight: 300;
    font-style: italic;
    line-height: 25px;
    text-align: left;
}

/************** RESULT-WRAPPER *************/

.result-wrapper {
    margin: 0 auto;
    max-width: 100%;
    background-color: #ffffff;
}

.result-wrapper_image {
    padding-top: 40px;
}

.result-wrapper_image .result-label {
    margin-top: 30px;
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    display: none;
}

.result-wrapper_none-image .quiz-content {
    min-height: 0;
    background: none;
}

.result-label {
    font-size: 24px;
    color: #FFFFFF;
    background: #49c189;
    display: inline-block;
    width: 125px;
    height: 40px;
    line-height: 40px;
}

.result-image {
    max-width: 630px;
    width: 100%;
    margin: 0 auto;
    border: 1px solid #dddddd;
}

.result-image img {
    width: 100%;
    display: block;
    margin: 0;
}

.result-text {
    margin: 3px auto 0;
    width: 100%;
    max-width: 630px;
    background: #FFFFFF;
    color: #333333;
    padding: 20px;
    font-size: 16px;
    line-height: 24px;
    /*font-weight: 700;*/
}