body:lang(np),
body:lang(np) * {
    font-family: laila !important;
}


.background {
    position: absolute;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
}

.cream_bg {
    background-color: #F7EDDE;
}

.squirell {
    position: absolute;
    width: 20%;
    top: 60%;
    left: 7%;
}

.heading-text {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: #faeca3;
    padding: 2%;
    border-radius: 25px;
    top: 4%;
    width: 70%;
    border: 2px solid #FF9900;
}


/* MCQ css */

.mcqContainer {
    position: absolute;
    left: 0%;
    top: 0%;
    height: 100%;
    width: 100%;
    display: flex;
    /* background: #bceaff; */
    justify-content: space-around;
    flex-flow: row;
    flex-wrap: wrap;
}

.optionsholder {
    position: absolute;
    height: 75%;
    width: 95%;
    top: 63%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    /* background: #bceaff; */
    justify-content: space-around;
    flex-flow: row;
    flex-wrap: wrap;
}

.optionscontent {
    width: 49%;
    height: 49%;
    display: flex;
    justify-content: space-evenly;
}

.option {
    height: 95%;
    width: 79%;
    border: 1px solid #E69138;
    border-radius: 5px;
    background: #fff;
    transition: transform .3s;
}

.option:hover {
    transform: scale(1.05, 1.05);
    cursor: pointer;
    background-color: #d1def2;
    border: 1px solid #3C78D8;
}

.objName:hover {
    background-color: #F17B31;
}

.objName {
    position: absolute;
    bottom: 0%;
    left: 0%;
    width: 100%;
    background-color: #A0DAE8;
    font-family: abeezee;
    padding: 3%;
}

.optImg {
    position: absolute;
    width: 85%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.corincorclass {
    position: absolute;
    top: 4%;
    right: 1%;
    width: 16%;
    display: none;
}

.qn_text {
    position: absolute;
    left: 50%;
    top: 5%;
    transform: translateX(-50%);
    background: #895650;
    padding: 1% 10%;
    border-radius: 5px;
    color: #ffffff;
    box-shadow: 3px 3px #a1784b;
}

.correctChracterstics {
    background-color: #d9ead3;
    border: 2px solid #97c385;
}

.wrongCharacterstics {
    background-color: #f4cccc;
    border: 2px solid #da7d80;
}




/* video player css */

.videoDiv {
    position: absolute;
    left: 0%;
    top: 0%;
    height: 100%;
    width: 50%;
}

.video_holder {
    position: absolute;
    top: 41%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 69%;
    width: 72%;
    background: #7EB6E3;
    border-radius: 29px;
    overflow: hidden;
    box-shadow: 6px 6px 10px grey;
}

.videolabel-btm {
    position: absolute;
    bottom: 0%;
    width: 100%;
    background: #faeca3;
    padding: 2%;
    font-size: 5vh;
}

#nslVideo {
    position: absolute;
    width: 58%;
    top: 0%;
    left: 50%;
    transform: translateX(-50%);
}

.replaybtn_container {
    position: absolute;
    bottom: 0%;
    height: 22%;
}

#replay_video_btn {
    width: 75%;
}

.replaySide{
    bottom: 36%;
    left: 61%;
    width: 21%;
    height: 20%;
}
.replaySide > img{
    width: 100% !important;
}

.vd-1 {
    top: 10%;
    width: 100%;
}

.vh-1 {
    width: 33%;
    left: 25%;
    height: 85%;
    top: 40%;
    border-radius: 29px;
}
.vh-1 > video{
    width: 90% !important;
}

.qn-s-sm{
    position: absolute;
    width: 42%;
    left: 50%;
    top: 50%;
    color: #844c1f;
    transform: translate(-50%, -50%);
    background: #FBD6AF;
    border: 2px solid #783F04;
    padding: 4%;
    border-radius: 20px;
}

@media screen and (min-aspect-ratio: 4/3) {
    .heading-text {
        font-size: 3.5vh;
    }
    .qn_text, .videolabel-btm{
        font-size: 5vh;
    }
}

@media screen and (max-aspect-ratio: 4/3) {
    .heading-text {
        font-size: 2.5vw;
    }
    .qn_text, .videolabel-btm{
        font-size: 4vw;
    }
}