.wrap-question {
    border-left: 4px solid tomato;
    padding: 5px 15px;
}

.wrap-question h4 {
    font-style: italic;
}

.wrap-answer {
    padding: 0;
    list-style: none;
}

.wrap-answer label {
    color: #333;
}

.tuts-test.prev-btn {
    width: 150px;
    font-weight: 600;
    font-size: 15px;
    background: #E5E5E5;
}

.tuts-test.next-btn,
.tuts-test.complete-btn {
    width: 150px;
    text-transform: uppercase;
    color: white;
    font-weight: 600;
    font-size: 15px;
    background: #00BCD4;
}

.wrap-tut-test-result.test-passed .wrap-summary,
.wrap-tut-test-result.test-passed .circle {
    color: #2ce080;
    stroke: #2ce080;
}

.wrap-tut-test-result.test-failed .wrap-summary,
.wrap-tut-test-result.test-failed .circle {
    color: tomato;
    stroke: tomato;
}

.wrap-tut-test-result .btn-move-next {
    display: block;
    margin-top: 2em;
    padding: 1em 0;
    font-size: 18px;
    background: #00BCD4;
    color: #000;
}

.wrap-tut-test-result .btn-move-back {
    display: block;
    margin: 1em 0 2em;
    padding: 1em 0;
    font-size: 18px;
    border-color: #ccc;
    background: #fff;
    color: #000;
}

.wrap-tut-test-result .wrap-circle {
    width: 200px;
    margin: 1em;
}

.wrap-tut-test-result .circle {
    stroke: #4CC790;
    fill: none;
    stroke-width: 4;
    animation: progress 1s ease-out forwards;
}

.wrap-tut-test-result .circle-bg {
    stroke: #ddd;
    fill: none;
    stroke-width: 4;
    animation: progress 1s ease-out forwards;
}

.wrap-tut-test-result .wrap-summary {
    display: flex;
    align-items: center;
    font-size: 40px;
    font-weight: bold;
}

.wrap-tut-test-result .wrap-percentage {
    position: relative;
}

.wrap-tut-test-result .wrap-summary .number {
    position: absolute;
    left: calc(50% - 50px);
    top: calc(50% - 35px);
    text-align: center;
}

.wrap-tut-test-result header {
    padding: 5px 15px;
    margin: 10px auto;
    border: 1px solid #ccc;
}

.wrap-tut-test-result .wrap-result {
    padding: 5px 15px 50px;
    background: #fff;
}

.wrap-tut-test-result .wrap-result .wrap-content {
    width: 300px;
    margin: -5em auto 0;
}

.wrap-tut-test-result .main-img {
    width: 300px;
}


.wrap-tut-test-solution {
    position: relative;
    background: white;
    overflow-y: scroll;
    height: 100vh;
}


.wrap-tut-test-solution header {
    width: 90%;
}

.wrap-tut-test-solution .question {
    border-bottom: 1px solid rgb(171, 171, 171, .5);
}


.wrap-tut-test-solution .close-button {
    position: fixed;
    top: 20px;
    right: 45px;
    cursor: pointer;
}

.checkbox-ans.red,
.checkbox-ans.dark,
.checkbox-ans.green {
    padding: 0 1px;
    font-size: calc(1em - 1px);
    border-radius: 2px;
}

.radio-ans.green,
.checkbox-ans.green {
    background: #2ce080;
    color: transparent;
}

.radio-ans.red,
.checkbox-ans.red {
    background: red;
    color: transparent;
}

.radio-ans.dark,
.checkbox-ans.dark {
    background: grey;
    color: transparent;
}

.radio-ans {
    border-radius: 100%;
}