@font-face {
    font-family: '';
}
body {

    font-family: 'Arial !important';

}
.my_activity {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    font-size: 1.3em;
    box-shadow: inset 0 0 30px #f2f2f2;
}

.my_activity, .my_activity * {
    position: relative;
    margin: 0;
    padding: 0;
}

.my_activity .nextBtn {
    display: none;
    position: absolute;
    z-index: 1000;
    bottom: 0%;
    right: 0%;
    width: 7%;
    height: 10%;
}

.my_activity .prevBtn {
    display: none;
    position: absolute;
    z-index: 1000;
    bottom: 0%;
    left: 0%;
    width: 7%;
    height: 10%;
}

/*=====================================
 =            common styles            =
 =====================================*/
.board {
    position: relative;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    text-align: center;
}

.vertical-horizontal-center {
    position: relative;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    text-align: center;
}

.vertical-center {
    position: relative;
    top: 45%;
    transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    text-align: center;
}

.coverboardfull {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-family: sniglet;
}

/*-------------- For Loading ---------------*/

#loading-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: #222;
}

#loading-text {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    color: #999;
    text-align: center;
    transform: translate(-50%, -50%);
    font-family: 'PT Sans Narrow', sans-serif;
    font-size: 3vmin;
}

#loading-content {
    display: block;
    position: absolute;
    left: 40%;
    top: 33.35%;
    width: 20%;
    height: 33.3%;
    transform: translate(-50%, -50%);
    border: 3px solid #F00;
}

#loading-content:after {
    content: "";
    position: absolute;
    border: 3px solid #0F0;
    left: 15%;
    right: 15%;
    top: 15%;
    bottom: 15%;
}

#loading-content:before {
    content: "";
    position: absolute;
    border: 3px solid #00F;
    left: 5%;
    right: 5%;
    top: 5%;
    bottom: 5%;
}

#loading-content {
    border: 3px solid transparent;
    border-top-color: #4D658D;
    border-bottom-color: #4D658D;
    border-radius: 50%;
    -webkit-animation: loader 2s linear infinite;
    -moz-animation: loader 2s linear infinite;
    -o-animation: loader 2s linear infinite;
    animation: loader 2s linear infinite;
}

#loading-content:before {
    border: 3px solid transparent;
    border-top-color: #D4CC6A;
    border-bottom-color: #D4CC6A;
    border-radius: 50%;
    -webkit-animation: loader 3s linear infinite;
    -moz-animation: loader 2s linear infinite;
    -o-animation: loader 2s linear infinite;
    animation: loader 3s linear infinite;
}

#loading-content:after {
    border: 3px solid transparent;
    border-top-color: #84417C;
    border-bottom-color: #84417C;
    border-radius: 50%;
    -webkit-animation: loader 1.5s linear infinite;
    animation: loader 1.5s linear infinite;
    -moz-animation: loader 2s linear infinite;
    -o-animation: loader 2s linear infinite;
}

@-webkit-keyframes loaders {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes loader {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}


.relativecls{
    position: relative;
    max-width: 100%;
    max-height:100%;
}

@keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-50%);
    }
    100% {
        opacity: 1;
        transform: translateX(0%);
    }
}


@-moz-keyframes slideInFromLeft {
    0%   { -moz-transform: translateX(-50%); }
    100% { -moz-transform: translateX(0%);}
}
@-webkit-keyframes slideInFromLeft {
    0%   { -webkit-transform: translateX(-50%); }
    100% { -webkit-transform: translateX(0%); }
}


@keyframes slideInFromRight {
    0% {
        transform: translateX(50%);
    }
    100% {
        transform: translateX(0);
    }
}


@-moz-keyframes slideInFromRight {
    0%   { -moz-transform: translateX(50%); }
    100% { -moz-transform: translateX(0);}
}
@-webkit-keyframes slideInFromRight {
    0%   { -webkit-transform: translateX(50%); }
    100% { -webkit-transform: translateX(0); }
}
.slideL{
    animation:slideInFromLeft 1s  ;
}
.slideR{
    animation:slideInFromRight 1s  ;
}
.scaleEffect{
    animation: scaleup 1s linear 0s forwards;
    animation-timing-function: ease-in;
    -webkit-animation-duration: 500ms;
    -moz-animation-duration: 500ms;
    animation-duration: 500ms;
}


@keyframes slideOutLeft {
    100%{
        left:-100%;
    }
}


@-moz-keyframes slideOutLeft {
    100%{
        left:-100%;
    }
}
@-webkit-keyframes slideOutLeft {
    100%{
        left:-100%;
    }
}
.slideOutwardLeft{
    animation: slideOutLeft 1s linear 0s forwards;
    animation-delay: 0.5s;
}
@keyframes slideOutRight {
    0%{
        left:0%;
    }
    100%{
        left:100%;
    }
}


@-moz-keyframes slideOutRight {
    0%{
        left:0%;
    }
    100%{
        left:100%;
    }
}
@-webkit-keyframes slideOutRight {
    0%{
        left:0%;
    }
    100%{
        left:100%;
    }
}
.slideOutwardRight{
    animation: slideOutRight 2s linear 1s forwards;
    animation-delay: 1.5s;
}
.hide{
    opacity: 0;
}
.show{
    opacity: 1;
}
.topictitle{
    position: absolute;
    width: 30%;
    top: 13%;
    float: left;
    left: 42%;
}
@media (min-aspect-ratio: 4/3) {
    .chapter{
        font-size: 4vw;
    }
    .contenttitle{
        font-size: 2vw;

    }
    .contentopic{
        font-size: 2.1vw;
    }
    .diy,.draggable,.droppable,.droppable1{
        font-size:3vw;
    }
    .congrats{
        font-size: 1.6vw;
    }
    .contentopic1{
        font-size: 1.8vw;
    }
}
.topic{
    position: absolute;
    width: 100%;
    padding-top:1%;
    color: white;
}
@-webkit-keyframes fadeIn {
    0% {opacity: 0;}
    100% {opacity: 1;}
}


.fadeInEffect {
    -webkit-animation-name: fadeIn;
    animation: fadeIn 1s linear;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
.zoomInEffect{
    animation: zoomIn 1s linear 0s forwards;
    animation-timing-function: ease-in;
    -webkit-animation-duration: 500ms;
    -moz-animation-duration: 500ms;
    animation-duration: 500ms;
}
.zoomOutEffect{
    animation: zoomOut 1s linear 0s forwards;
    animation-timing-function: ease-in;
    -webkit-animation-duration: 500ms;
    -moz-animation-duration: 500ms;
    animation-duration: 500ms;
}
.grayout{
    opacity: 0.2;
    filter: alpha(opacity=40);
}

.scaleup{
    animation: hilight_kf 1s linear alternate infinite;
    transition: 3s;
    /*transition: all 0.3s ease-in-out 0.2s;*/
}

@keyframes hilight_kf{
    0%{
        transform:  scale(1,0.9);
        font-size: 2vw;
    }
    100%{
        transform:  scale(0.9,1);
        font-size: 2.2vw;
    }
}
.colorchange{
    animation: clrchange 0.5s linear alternate infinite;
}
@keyframes clrchange{
    0%{
        color:#1493d1;
    }
    100%{
        color: #A61C00;
    }
}
.letterup {
    position: absolute;
    transform: translateX(0%);
    left: 50%;
    animation: zoomIn 1s linear;
    animation: paper_foldup 1s linear 0s forwards;
    animation-delay: 1s;
    background-color: white;
}
.letterdown {
    position: absolute;
    transform: translateY(0%);
    left: 0%;
    animation: zoomIn 1s linear;
    animation: paper_folddown 1s linear 0s forwards;
    animation-delay: 2s;
    background-color: white;



}
@keyframes paper_foldup{
    0%{
        z-index:0;
        transform:skew(5deg) scale(1);

    }
    100%{
        transition: 0.3s;
        transform-style: preserve-3d;
        transform: scale(1) rotateX(180deg);
        transform-origin: 100% 0%;
        z-index: 10;

    }
}

@keyframes paper_folddown{
    0% {
        z-index: 0;
        /*background-color:  #E3D5A4;*/
        transform:skew(5deg) scale(1);
    }
    100%{
        transition: 0.3s;
        transform-style: preserve-3d;
        transform:scale(1) rotateX(-180deg);
        transform-origin: 0% 100%;
        z-index: 10;
        /*background-color: #E3D5A4;*/
        height:15%;

    }
}
.avoid-clicks {
    pointer-events: none;
}

.bg{
    /* background: url("http://gituploads.olenepal.org/epaath_media/activity/grade4/nepali/punctuation/images/bg.png"); */
    background-size: 100% 100%;
    height: 100%;
    width: 100%;
}
.bg1{
    background-color:#FFF7B3;
    background-size: 100% 100%;
    height: 100%;
    width: 100%;
}

.bub1anim{
    position: absolute;
    width: 1.5%;
    top: 58%;
    left: 76%;
    animation: translatebub1 2s linear 0s forwards;
}
@keyframes translatebub1{
    0% {
        transform:translate(0%,0%);
    }
    100%{
        transition: 0.3s;
        transform-style: preserve-3d;
        transform:translate(-150%,-366%);
        width:9%;
    }
}
.bub2anim{
    position: absolute;
    width: 1.5%;
    top: 58%;
    left: 76%;
    animation: translatebub2 2s linear 0s forwards;
}
@keyframes translatebub2{
    0% {
        transform:translate(0%,0%);
    }
    100%{
        transition: 0.3s;
        transform-style: preserve-3d;
        transform:translate(20%,-366%);
        width:9%;
    }
}
.bub3anim{
    position: absolute;
    width: 1.5%;
    top: 58%;
    left: 76%;
    animation: translatebub3 2s linear 0s forwards;
}
@keyframes translatebub3{
    0% {
        transform:translate(0%,0%);
    }
    100%{
        transition: 0.3s;
        transform-style: preserve-3d;
        transform:translate(-220%,-250%);
        width:9%;
    }
}
.bub4anim{
    position: absolute;
    width: 1.5%;
    top: 58%;
    left: 76%;
    animation: translatebub4 2s linear 0s forwards;
}
@keyframes translatebub4{
    0% {
        transform:translate(0%,0%);
    }
    100%{
        transition: 0.3s;
        transform-style: preserve-3d;
        transform:translate(-50%,-250%);
        width:9%;
    }
}
.bub5anim{
    position: absolute;
    width: 1.5%;
    top: 58%;
    left: 76%;
    animation: translatebub5 2s linear 0s forwards;
}
@keyframes translatebub5{
    0% {
        transform:translate(0%,0%);
    }
    100%{
        transition: 0.3s;
        transform-style: preserve-3d;
        transform:translate(100%,-250%);
        width:9%;
    }
}
.chapter{
    width: 10%;
    color: #A64D79;
    position: absolute;
    font-weight: bold;
    padding-top: 17%;
    left: 20%;
}
.punctuationtitle{
    position: absolute;
    width: 22%;
    border: 1px solid;
    border-radius: 37px;
    top: 68%;
    left: 40%;
    height: 12%;
    background-color: #0B5394;
    color: white;
    font-size: 2vw;
    padding-top: 1%;
}
.punctuationtitle1{
    position: absolute;
    border: 1px solid;
    border-radius: 37px;
    height: 12%;
    background-color: #0B5394;
    color: white;
    font-size: 2vw;
    padding-top: 1%;
    top: 33%;
    left: 2%;
    width: 15%;
    font-size:1.6vw;
}
.punctuationtitle2{
    position: absolute;
    border: 1px solid;
    border-radius: 37px;
    height: 12%;
    background-color: #0B5394;
    color: white;
    font-size: 2vw;
    padding-top: 1%;
    top: 33%;
    left: 2%;
    width: 20%;
    font-size:1.6vw;
}
.punctuationsymbol{
    width: 17%;
    position: absolute;
    top: 30%;
    left: 42%;
}
.punctuationsymbol1{
    width: 8%;
    position: absolute;
    top: 19%;
    left: 5%;
}
.punctutationtopic{
    position: absolute;
    background-color: #8C5CA6;
    color: white;
    width: 100%;
    text-align: center;
    height:18%;
    padding-top:1%;
}
.translatepunctuation{
    animation: translatepunsymbol 1s linear 0s forwards;
}
@keyframes translatepunsymbol{
    0% {
        width: 17%;
        position: absolute;
        top: 30%;
        left: 42%;
    }
    100%{
        width: 8%;
        position: absolute;
        top: 19%;
        left: 5%;
    }
}
.translatepunctuation1{
    animation: translatepunsymbol1 1s linear 0s forwards;
}
@keyframes translatepunsymbol1{
    0% {
        width: 17%;
        position: absolute;
        top: 30%;
        left: 42%;
    }
    100%{
        width: 8%;
        position: absolute;
        top: 19%;
        left: 8%;
    }
}

.translatepunctuationtext{
    animation: translatepuntextsymbol 1s linear 0s forwards;
}
@keyframes translatepuntextsymbol{
    0% {
        position: absolute;
        top: 68%;
        left: 40%;
    }
    100%{
        position: absolute;
        top: 33%;
        left: 2%;
        width: 15%;
        font-size:1.6vw;
    }
}
.translatepunctuationtext1{
    animation: translatepuntextsymbol1 1s linear 0s forwards;
}
@keyframes translatepuntextsymbol1{
    0% {
        position: absolute;
        top: 68%;
        left: 40%;
    }
    100%{
        position: absolute;
        top: 33%;
        left: 2%;
        width: 20%;
        font-size:1.6vw;
    }
}

.punctuationinfo{
    position: absolute;
    width: 100%;
    text-align: center;
    top:83%;
    color:#1A5C94;
}
.bgdiy{
    /* background: url("http://gituploads.olenepal.org/epaath_media/activity/grade4/nepali/punctuation/images/bg_diy.png"); */
    background-size: 100% 100%;
    height: 100%;
    width: 100%;
}
.diy{
    position: absolute;
    width: 41%;
    padding-top: 21%;
    left: 37%;
    transform: rotate(7deg);
    color: #FFE680;
}
.bgquery{
    background-size: 100% 100%;
    height: 100%;
    width: 100%;
    background-color: #6F739C;
}
.extradiv{
    position: absolute;
    width: 39%;
    height: 77%;
    top: 12%;
    left: 2%;
    background-color: #E65565;
    border-radius: 25px;
}

.diyimgoptimg,.diyimgoptimg1,.diyimgoptimg2,.diyimgoptimg3{
    position: absolute;
    width: 85%;
    right: 8%;
    padding-top: 4%;
}
.flipdiv{
    animation:flipdiv 1s linear 0s forwards;
}
@keyframes flipdiv{
    100%{
        transition: 0.3s;
        transform-style: preserve-3d;
        transform:  rotateY(180deg);

    }
}
.subquery{
    position: absolute;
    width: 23%;
    text-align: center;
    top: 72%;
    right: 72%;
}

.questiontitle{
    position: absolute;
    width: 100%;
    bottom: 91%;
    color: white;
}
.questiontitle1{
    position: absolute;
    width: 100%;
    bottom: 89%;
    color: #FFE6A7;
}
.outerdiv{
    position: absolute;
    width: 50%;
    height: 58%;
    top: 23%;
    left: 45%;
}
.draggable{
    position: absolute;
    background-color: #FFCD53;
    border-radius: 8px;
    width: 15%;
    height: 20%;
}
.draggable p{
    color:#783F04;
}
.opt1{
    top: 21%;
    left: 15%;
}
.opt2{
    top: 21%;
    left: 50%;
}
.opt3{
    top: 21%;
    left: 84%;
}
.opt4{
    top: 57%;
    left: 15%;
}
.opt5{
    top: 57%;
    left: 50%;
}
.opt6{
    top: 57%;
    left: 84%;
}
.dropbox,.dropbox1{
    position: absolute;
    width: 8%;
    height: 12%;
    background-color: #D9D9D9;
    border: 0.1em solid #CCCCCC;
    border-radius:14px;
}
.draggable:hover{
    transform: scale(1.1);
    border:2px solid;
    background-color: #F9CB9C;
    border-color: #E39540;
    color:#43434B;
    border-radius: 9px;
    transition:0.8s;
    cursor: grabbing;
}
.correctcss{
    pointer-events: none;
    background-color: #98C02E;
    border:2px solid;
    border-color: #DEEF3C;
    border-radius:9px;
}
.correctWrongDiv{
    bottom:2%;
}
.correctImg{
    bottom: 89%;
    width: 76%;
}
.avoid-clicks {
    pointer-events: none;
}
.extradiv1{
    position: absolute;
    width: 29%;
    height: 59%;
    top: 26%;
    left: 3%;
    background-color: #E65565;
    border-radius: 25px;
    transform: rotate(-10deg);
}
.extradiv2{
    position: absolute;
    width: 29%;
    height: 59%;
    top: 21%;
    left: 35.5%;
    background-color: #E65565;
    border-radius: 25px;
}
.extradiv3{
    position: absolute;
    width: 29%;
    height: 59%;
    top: 23%;
    left: 68%;
    background-color: #E65565;
    border-radius: 25px;
    transform: rotate(10deg);
}
.subquery1{
    position: absolute;
    width: 23%;
    text-align: center;
    top: 72%;
    right: 70%;
    transform: rotate(-10deg);
}
.subquery2{
    position: absolute;
    width: 23%;
    text-align: center;
    top: 59%;
    right: 40%;
}
.subquery3{
    position: absolute;
    width: 23%;
    text-align: center;
    top: 62%;
    right: 8%;
    transform: rotate(10deg);
}
.p1{
    color: #A6222C;
}
.lowertext{
    position: absolute;
    width: 100%;
    top: 77%;
    height: 23%;
    color: #1A5C94;
    text-align: center;
}
.hovered{
    border: 0.1em dashed #CCCCCC;
    background: #E5E5E5;
}
@media screen and (-webkit-min-device-pixel-ratio:0){
    .correctImg{
        bottom: 89%;
        width: 76%;
        position: absolute;
        left: 20%;
        padding-bottom: 24%;
    }
    .correctImgptag{
        color: white;
        top: 7%;
        botttom:0%
    }

}
.movingpunctuation{
    opacity: 0;
    animation: movesymbol 1s linear 0s forwards;
    -webkit-animation: movesymbol 1s linear 0s forwards;
    animation-delay: 2s;
}
@keyframes movesymbol{
    0% {
        opacity: 0;
        left:30%;
        color: #A61C00;
    }
    100%{
        opacity:1;
        left:0%;
        color: #A61C00;
    }
}






