.quiz-stepper {
    display: flex;
    flex-direction: column;
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}
.quiz-stepper__line {
    position: absolute;
    left: calc((47px / 2));
    top: 40px;
    bottom: 40px;
    width: 2px;
    background: #212428;
    background: linear-gradient(260deg, rgba(33, 36, 40, 1) 0%, rgba(223, 224, 224, 1) 90%);
    z-index: 0;
}
.quiz-stepper__step:last-child {
    margin-bottom: 0;
}
.quiz-stepper__circle {
    width: 47px;
    height: 47px;
    border-radius: 50%;
    background: #212428;
    color: #fff;
    font-size: 2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    margin-right: 16px;
    flex-shrink: 0;
}
.quiz-stepper__step--inactive .quiz-stepper__circle {
    background: #fff;
    color: #bdbdbd;
    border: 2px solid #e5e5e5;
}
.quiz-stepper__content {
    flex: 1;
    margin-top: 8px;
}
.quiz-stepper__desc--inactive {
    color: #bdbdbd;
}
.quiz__container .quiz-stepper__title{
    font-size: 24px;
}
@media(max-width:767px){
    .quiz__container .quiz-stepper__title{
    font-size: 20px;
}
.quiz__container .quiz-stepper__desc{
    font-size: 16px;
}
}