@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&amp;family=Sen:wght@400;700;800&amp;display=swap');

:root
{
    --primary-color: rgb(0, 130, 31);
    --secondary-color: rgb(222, 247, 229);
    --text-color: rgb(0,0,0);
    --field-color: rgb(204, 204, 204);
}
body
{
    font-family: "Jost";
    width: 100%;
}
main
{
    width: 100%;
    min-height: 100vh;
    width: 100%;
   /* background-image: url(../images/bg.png);
    background-color: var(--secondary-color);
    background-position: 50% 50%;*/
   /* padding: 80px 0 40px 0;*/
    display: flex;
    flex-direction: column;
}
.timer
{
    position: absolute;
    right: 40px;
    top: 40px;
}
.timer-inner
{
    width: 130px;
    height: 130px;
    background-color: rgb(255, 255, 255);
    border-radius: 50%;
    display: grid;
    column-gap: 50px;
    align-items: center;
    border: solid 10px var(--primary-color);
}



.timer .timer-count
{
    font-size: 20px;
    color: var(--primary-color);
    font-weight: normal;
    text-align: center;
    line-height: 1;
}
.timer .timer-count span
{
    display: block;
    font-weight: bold;
    font-size: 30px;
}


.step-count
{
    font-size: 18px;
    color: var(--text-color);
    font-weight: bold;
    text-align: center;
    margin-bottom: 35px;
}
.step-bar
{
    width: 100%;
    background-color: var(--field-color);
    height: 17px;
}
  
.step-bar .fill
{
    width: 20%;
    height: 100%;
    transition: 0.5s;
    background-color: var(--primary-color);
}
.steps
{
    width: 100%;
    height: 100%;
}
.step-inner
{
    background-color: rgb(255,255,255);
    width: 100%;
    min-height: 465px;
    padding: 0px 0 0px 0px;
    position: relative;
}
video {
    height: 70vh;
    border-radius: 10px;
    /* border: solid 2px black; */
    margin: 20px 0px;
    width: max-content;
    
}
.quiz-question
{
    font-size: 50px;
    color: var(--text-color);
    font-weight: bold;
    width: 70%;
}
fieldset
{
    width: 42%;
    margin-top: 70px;
    overflow: hidden;
}
.input-field 
{
    display: flex;
    cursor: pointer;
    margin-bottom: 25px;
}
.radio-field
{
    position: relative;
    width: 85%;
    height: 85px;
    display: grid;
    align-content: center;
    margin-left: auto;

}
.radio-field input
{
    -webkit-appearance: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 6px;
    background-color: var(--field-color);
    cursor: pointer;
    transition: 0.5s;
}
.radio-field label
{
    pointer-events: none;
    position: relative;
    z-index: 10;
    font-size: 27px;
    color: var(--text-color);
    font-weight: bold;
    margin-left: 50px;
    transition: 0.5s;
}
.input-field .option
{
    height: 100%;
    width: 65px;
    background-color: var(--field-color);
    border-radius: 6px;
    transition: 0.5s;
    height: 84px;
    font-size: 27px;
    color: rgb(1, 1, 1);
    font-weight: bold;
    display: grid;
    place-content: center;
}
.input-field.active .option
{
    background-color: var(--primary-color);
    color: rgb(255,255,255);
}
.input-field.active .radio-field input
{
    background-color: var(--primary-color);
}
.input-field.active .radio-field label
{
    color: rgb(255,255,255);
}
.thinking_bro
{
    position: absolute;
    bottom: 0;
    right: 70px;
    width: auto;
}

.next-prev {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border-top: solid 2px #e9ecef;
    border-top-style: dotted;
    padding: 16px 0px;
}
    .next-prev button {
  
        font-weight: bold;
        text-transform: uppercase;
        background-color: #1f5e59;
        transition: all .3s ease-in-out 0s;
        /* background-color: #fbeee0; */
        border: 2px solid #422800;
        border-radius: 30px;
        box-shadow: #422800 4px 4px 0 0;
        color: #fff;
        cursor: pointer;
        display: inline-block;
        font-weight: 600;
        font-size: 18px;
        padding: 0 40px;
        line-height: 45px;
        text-align: center;
        text-decoration: none;
        user-select: none;
        -webkit-user-select: none;
        touch-action: manipulation;
    }
    .next-prev .next {
        color: rgb(255, 255, 255);
        background-color: #1f5e59;
        border: 2px solid #422800;
        border-radius: 30px;
        box-shadow: #422800 4px 4px 0 0;
    }
    .next-prev .prev {
        background-color: #fff;
        transition: all .3s ease-in-out 0s;
        /* background-color: #fbeee0; */
        border: 2px solid #1f5e59;
        border-radius: 30px;
        box-shadow: #1f5e59 4px 4px 0 0;
        color: #1f5e59;
    }
    .next-prev button:hover {
        background-color: #f79102;
        color: #fff;
        box-shadow: #422800 2px 2px 0 0;
        transform: translate(2px, 2px);
    }
    .next-prev button i {
        position: relative;
        top: 1;
        margin: 0 10px;
    }




#error div
{
    position: fixed;
    top: 20px;
    left: 20px;
}