/* --------------------- font ----*/
.test .question {
    font-size: 18px;
    line-height: 25px;
	font-weight: 900;
}
.test .item li {
    font-size: 18px;
    text-indent: 40px;
    line-height: 25px;
    padding: 10px;
}
/*--------------------------------*/

.test .item li,
.test label {
    cursor: pointer;
    position: relative;
}

.test .item ol {
    list-style: none;
    padding-top: 10px;
}


.test .item li::after,
.test .item li::before {
    content: '';
    border-radius: 100%;
    width: 30px;
    height: 30px;
    position: absolute;
    top: 8px;
    left: 10px;
    vertical-align: top;
    border: 2px solid #c1c1c1;
    background: #fff;
}

.test .item li.check::after {
    background: #ccff66;
    width: 20px;
    height: 20px;
    top: 13px;
    left: 15px;
    border:none;
}

.test .choices > li p:hover {
    color: #787a77;
}

/* ---------------------- correct */
.test .item li.correct {
    color: #ccff66;
	background: #000;
}
.test .result .correct {
    color: black;
}
/*--------------------------------*/
/* ------------------------ wrong */
.test .item li.wrong {
    color: #fa6868;
    text-decoration: line-through;
}
.test .item li.check.wrong::after {
    background: #fa6868;
}
.test .result .wrong {
    color: red;
}
/*--------------------------------*/


.test .item li p {
    margin: 0;
    padding: 0;
}

.test .result {
    display: none;
    padding: 20px;
    background: #ededed;
    font-size: 16px;
}

.test .test-result {
    display: none;
    padding: 20px;
    border: 1px solid gray;
}

.test .test-result h3 {
    font-size: 30px;
    font-weight: 300;
    margin-bottom: 20px;
}
#test .test-result .rank {
    font-size: 30px;
    font-family: "Playfair Display",sans-serif;
    font-style: italic;
    margin-bottom: 20px;
    display: block;
}