.quiz_container{
    width: 100%;
    float:left;
}
.quiz_top{
    display: flex;
    justify-content: end;
    padding: 0 0 10px 0;
}
.quiz_pic{
    width: 100%;
    display: inline-block;
    margin: 10px 0;
    box-shadow: 0 0 2px 0 rgba(145, 158, 171, 0.24), 0 16px 32px -4px rgba(145, 158, 171, 0.24);
    border-radius: 16px;
    padding: 10px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.quiz_pic_center{
    width: 100%;
    margin: 0 auto;
    border: 10px solid #eeeeee;
}
.quiz_pic img{
    width: 100%;
}
.quiz_options{
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
.option_btn{
    color: #fff;
    cursor: pointer;
    background-color: #08519f;
    padding: 10px;
    width: 150px;
    margin: 0 10px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border-radius: 5px;
}
.option_btn.clicked{
    background-color: #f48220;
    color: #fff;
}
.option_btn span{
    display: none;
}
.option_btn span svg path{
    fill: #fff;
}
.option_btn.clicked span svg path,.option_btn.clicked.clicked_correct span svg path{
    fill: #fff;
}
.option_btn.clicked_correct span{
    display: block;
}
.try_another{
    text-align: center;
    margin-bottom: 15px;
    border: 2px solid #e4e6eb;
    display: inline-block;
    padding: 8px 10px;
    border-radius: 40px;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 230px;
    justify-content: space-around;
    margin: 0 auto;
    
}
.try_another:hover{
    background-color: rgba(120, 131, 155, .1);
}
.quiz-status{
    display: inline-block;
    background-color: #d3d3d3;
    padding: 2px 10px;
    border-radius: 18px;
}
.try_div_area{
    width: 100%;
    display: inline-block;
    margin: 10px 0 0 0;
    text-align: center;
}
.incorrect{
    border: 10px solid #c54d44;
}
.correct{
    border: 10px solid #008000;
}
.incorrect_color{
    color: #c54d44;
}
.correct_color{
    color: #008000;
}
.quiz_progress{
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
}
.progress_area{
    width: 100%;
    float:left;
}
.progress_item {
    margin: 2px 2px 10px;
    text-align: center;
    font-size: 15px;
    width: calc(20% - 4px);
}
.img_wrap img{
    width: 100%;
}
.pill{
    background-color: #fffcd9;
    padding: 0 3px;
    border: 1px solid #ece7a7;
    margin: 0 2px;
}
.fullpage .long-content .story-detail h2.g_subhed{
    font-weight: 700;
    margin: 20px 0 0 0;
    text-align: center;
    color: #000;
    width: 100%;
}
.progress_item.correct{
    border: 5px solid #008000;
}
.progress_item.incorrect{
    border: 5px solid #c54d44;
}
.quiz_right_q{
    font-size: 50px;
    text-align: center;
    line-height: 50px;
    color: #333;
    font-weight: 600;
    font-family: "gn-home";
}
.quiz_right_a{
    font-size: 50px;
    text-align: center;
    line-height: 35px;
    text-transform: uppercase;
    font-weight: 600;
    color: #333;
    font-family: "gn-home";
}
.quiz_right_a span{
    width: 100%;
    display: inline-block;
    font-weight: normal;
    text-transform: none;
    font-size: 26px;
    line-height: 26px;
}
.quiz_left{
    width: 50%;
}
.quiz_right{
    width: 50%;
}

@media (max-width: 600px) {
    .quiz_pic{
        flex-direction: column;
    }
    .quiz_left{
        width: 100%;
    }
    .quiz_right{
        width: 100%;
    }
    .quiz_right_q {
        font-size: 40px;
        line-height: 40px;
        padding-top: 20px;
    }
    .quiz_right_a {
        font-size: 40px;
        line-height: 40px;
        padding-top: 20px;
    }

    
}