* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: comfortaa;
}

p {
  margin: 0;
}
/*-------------- For Loading ---------------*/

.chapter {
  position: relative;
  width: 100%;
  height: 100%;
}

#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);
  }
}
.blurin {
  animation: blurin 1s forwards;
}

@keyframes blurin {
  0% {
    opacity: 0;
    filter: blur(5px);
  }
  100% {
    opacity: 1;
  }
}
.fadein {
  animation: fadein 1s ease-in forwards;
}
@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* Loading ends */

.maincontainer {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
}

.left-div {
  position: relative;
  width: 50%;
  height: 100%;
  background: #8ed2dd;
  display: flex;
  justify-content: center;
  align-items: center;
}

.innercontainer {
  width: 90%;
  height: 90%;
  background: #d9ead3;
  border-radius: 3em;
  border: 3px solid #6fae62;
  display: flex;
  justify-content: center;
  align-items: center;
}

.graph {
  padding: 2vmin 0;
  width: 90%;
  height: 90%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  transition: all 3s ease;
}

.graph div {
  border: 1px solid #6aa84f;
  transition: border 1s ease-in;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
}

.right-div {
  position: relative;
  width: 50%;
  height: 100%;
  background: #6cbca9;
  z-index: 6;
}

.girl {
  position: absolute;
  bottom: 15%;
  right: 10%;
  height: 60%;
}

.uppertextblock {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  /* height: 12%; */
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff2cc;
  z-index: 100;
}

.lowertextblock {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.textbox-img {
  /* height: 103%; */
  width: 106%;
}

.text {
  position: absolute;
  top: 40%;
  left: 15%;
  transform: translateY(-50%);
  font-size: 1.5em;
}

.text-big {
  position: absolute;
  width: 95%;
  top: 40%;
  left: 53%;
  transform: translate(-50%, -50%);
  font-size: 0.8em;
  padding: 3%;
  width: 80%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

.speechbg {
  height: auto;
  top: -5%;
}

.speechbox {
  left: 25%;
}

.inverted {
  transform: rotateY(180deg);
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.fadeOutClass {
  animation: fadeOut 1s forwards linear;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.fadeInClass {
  animation: fadeIn 1s forwards linear;
}

@keyframes pop {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.3);
  }
  100% {
    transform: scale(1);
  }
}

.popClass {
  animation: pop 1s infinite linear;
}

.positioning {
  position: absolute;
  color: #ce851d;
  font-size: 1.5em;
  opacity: 1;
}

.letter-p {
  top: 46%;
  left: 37%;
}

.letter-q {
  top: 35%;
  left: 37%;
}

.letter-r {
  top: 35%;
  left: 51%;
}

.letter-s {
  top: 46%;
  left: 51%;
}

.letter-a {
  top: 83%;
  left: 13%;
}

.letter-b {
  top: 62%;
  left: 13%;
}

.letter-c {
  top: 83%;
  left: 43%;
}

.letter-d {
  top: 62%;
  left: 43%;
}

.letter-g {
  top: 33%;
  left: 13%;
}

.letter-h {
  top: 14%;
  left: 13%;
}

.letter-i {
  top: 14%;
  left: 60%;
}

.letter-j {
  top: 33%;
  left: 60%;
}

.bottom-text {
  width: 100%;
  text-align: center;
  position: absolute;
  bottom: 0%;
  opacity: 1;
  background: #17a8b1;
  color: white;
  font-size: 1.15em;
  margin-bottom: 0%;
  z-index: 5;
}

/* questionanswer division */

.questionanswercontainerblock.firstQn {
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 0%;
  background-color: #ead1dc;
  /* left: 50%; */
  /* transform: translate(-50%, -50%); */
  width: 100%;
  height: 63%;
}

.questionanswercontainerblock.secondQn {
  display: flex;
  align-items: center;
  position: absolute;
  top: 0%;
  background-color: #ead1dc;
  /* left: 50%; */
  /* transform: translate(-50%, -50%); */
  width: 100%;
  height: 63%;
}

.questionanswerblock {
  width: 100%;
  margin: auto;
}

.questiondiv {
  margin-bottom: 15%;
  font-size: 1.15em;
  text-align: center;
}

.question {
  color: #666666;
  font-weight: 900;
}

.answerdiv {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin: 0% 10%;
}

.lhs {
  width: 18vmin;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.rect {
  width: 7vmin;
  height: 5vmin;
  background: #fff;
  display: block;
  border: 1px solid black;
}

.rhs {
  width: 25%;
  position: relative;
}

.rhs .answerbox {
  width: 55%;
  background: #cfe2f3;
  border: 2px solid #3d85c6;
  border-radius: 0.5em;
  padding: 0.5vmin;
  text-align: center;
  outline: none;
}

.tick,
.cross {
  display: none;
  position: absolute;
  width: 3vmin;
  top: -25%;
  right: 32%;
}

.chkbtn {
  color: #fff;
  background: #3c78d8;
  border: 2px solid #1155cc;
  border-radius: 0.5em;
  padding: 0.5vmin;
  width: 12vmin;
  outline: none;
}

.hintbtn {
  color: #fff;
  display: none;
  opacity: 0;
  background: #c27ba0;
  border: 2px solid #ead1dc;
  border-radius: 0.5em;
  padding: 0.5vmin;
  width: 0vmin;
  outline: none;
}

/* exeoptions questiondiv */
.optionsdiv {
  top: 32%;
  display: flex;
  left: 65%;
  flex-flow: row wrap;
  text-align: left;
  position: absolute;
  height: 49%;
  width: 29%;
}

.optionscontainer {
  width: 100%;
  position: relative;
}

.imagestartpos {
  position: absolute;
  width: 13%;
  margin-left: 1%;
  display: none;
  margin-top: 12%;
  left: 80%;
  top: -45%;
  transform: translateY(-7%);
}

.optionsdiv p {
  padding: 4%;
  background: #ffd966;
  border-radius: 15px;
  margin: 1%;
  font-size: 125%;
  border: 2px solid #ffd966;
  font-family: breeSerif;
  width: 90%;
  text-align: center;
  color: #783f04;
}

.optimg {
  display: inline;
  border-radius: 15px;
  color: white;
  margin: 0% 1%;
  font-size: 4vmin;
  border: 5px solid #adaedb;
  cursor: pointer;
  width: 21%;
}

.forhover:hover {
  border: 2px solid #6d9eeb;
  background-color: #cfe2f3;
  cursor: pointer;
}

.forhoverimg:hover {
  color: #f66e20;
  border: 5px solid #ffd966;
}

.exetype1.firstQn {
  height: 61%;
  width: 100%;
  opacity: 0;
  position: absolute;
  bottom: 0%;
  background-color: #ead1dc;
}

.exetype1.secondQn {
  height: 61%;
  width: 100%;
  opacity: 0;
  position: absolute;
  top: 0%;
  background-color: #ead1dc;
}

.exetype1 .qndiv {
  position: absolute;
  top: 10%;
  width: 100%;
}

.exetype1 .qndiv .question {
  text-align: center;
  font-size: 1.5em;
}

.bottom-text {
  display: flex;
  align-items: center;
  justify-content: center;
}

.infosquare {
  margin: 0% 2%;
  width: 3vmin;
  height: 3vmin;
  display: block;
  background: white;
  border: 1px solid black;
}

.unitbox {
  position: absolute;
  background-color: #ead1dc;
  padding: 1vmin 2vmin;
  font-size: 1.5em;
  left: 58%;
  top: 39%;
}

.sqcm1unitbox,
.sqcm10unitbox,
.sqcm9unitbox {
  position: absolute;
  background-color: #f1c232;
  padding: 1vmin 2vmin;
  font-size: 1.5em;
  right: 15%;
  width: 15vmin;
  text-align: center;
}
.sqcm10unitbox {
  top: 21%;
}

.sqcm1unitbox {
  top: 38%;
}

.sqcm9unitbox {
  top: 73%;
}

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

.slideInFromRight {
  animation: slideInFromRight 2s forwards ease-in;
}

/* Additionals */

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

.fairy {
  position: absolute;
  left: 7%;
  top: 30%;
  height: 55%;
}

.fairy01 {
  position: absolute;
  left: 0%;
  top: 30%;
  height: 55%;
}

.handicon-1 {
  position: absolute;
  right: 41%;
  top: 48%;
  cursor: pointer;
  width: 7%;
  z-index: 2;
}

.handicon-2 {
  position: absolute;
  right: 41%;
  top: 60%;
  cursor: pointer;
  width: 7%;
  z-index: 2;
}

.jug {
  position: absolute;
  top: 41%;
  left: 36%;
  width: 25%;
}

.redlabel {
  position: absolute;
  top: 50%;
  border: 0.5vmin solid red;
  width: 15%;
  height: 4.5%;
  left: 41%;
}

body:lang(np) .redlabel {
  top: 48%;
}

@keyframes redlabelltoml {
  0% {
    top: 45%;
    width: 21%;
    height: 6%;
    left: 40%;
  }
  100% {
    /* top: 45%; */
    top: 56%;
    width: 15%;
    height: 25%;
    left: 40%;
  }
}
@keyframes redlabelltomlnp {
  0% {
    top: 43%;
    width: 21%;
    height: 6%;
    left: 41%;
  }
  100% {
    /* top: 45%; */
    top: 53.5%;
    width: 15%;
    height: 25%;
    left: 41%;
  }
}

.redlabelltoml {
  animation: redlabelltoml 0.5s forwards ease-in;
  -webkit-animation: redlabelltoml 0.5s forwards ease-in;
}

body:lang(np) .redlabelltoml {
  animation: redlabelltomlnp 0.5s forwards ease-in;
  -webkit-animation: redlabelltomlnp 0.5s forwards ease-in;
}

.top-bar {
  font-size: 1.25em;
  font-weight: bold;
  background-color: #fff2cc;
  /* position: absolute; */
  left: 0;
  top: 0;
  /* height: 100%; */
  width: 100%;
  /* display: flex; */
  /* align-items: center; */
  /* justify-content: center; */
}

.quicktip {
  width: 8%;
  position: absolute;
  bottom: 2%;
  right: 2%;
  cursor: pointer;
}

.quicktipimage {
  width: 100%;
}

@keyframes popingup {
  0% {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
  }
  50% {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
  }
  51% {
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
  }

  100% {
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
  }
}

.cancel {
  position: absolute;
  top: 5%;
  right: 5%;
  width: 8%;
  cursor: pointer;
}

.popingup {
  animation: popingup 0.5s infinite forwards;
  -webkit-animation: popingup 0.5s infinite forwards;
}

.infoblockclass {
  --info-bg: #eafe9f;
  --info-border-color: #fe9fea;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 20%;
  height: 50%;
  position: absolute;
  top: 70%;
  left: 85%;
  transform: translate(-50%, -50%);
  z-index: 3;
  background: var(--info-bg);
  border: 2px solid var(--info-border-color);
  border-radius: 2em;
  padding: 1em;
}

.infoblockclass.second {
  --info-bg: #fce5cd;
  --info-bg-color: #f6b26b;
}

.title {
  font-size: 2.2em;
  font-weight: 600;
  margin: 1% 0 4% 0;
}

.text-1 {
  font-size: 1.2em;
  margin-bottom: 4%;
}

.text-2 {
  font-size: 2vw;
}

.centertext {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 56%;
  width: 37%;
  height: 39%;
  transform: translate(-50%, -50%);
  background: #eafe9f;
  border: 3px solid #fe9fea !important;
  border-radius: 2em;
}

.centertext .centertextp3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  font-size: 3vw;
}

body:lang(np) .centertext .centertextp3 {
  font-size: 2.2em;
}

.jug01 {
  position: absolute;
  top: 45%;
  left: 55%;
  width: 20%;
}

.blue_tank {
  position: absolute;
  top: 35%;
  left: 78%;
  width: 20%;
}

.spoon {
  position: absolute;
  top: 40%;
  left: 35%;
  width: 20%;
}

.mugml {
  position: absolute;
  top: 40%;
  left: 35%;
  width: 25%;
}

.jarl {
  position: absolute;
  top: 30%;
  left: 40%;
  width: 15%;
}

.header {
  font-size: 3vw;
}
@media screen and (min-width: 1440px) {
  .header {
    font-size: 2.2vw;
  }
}
@media (min-aspect-ratio: 4/3) {
  .top-bar {
    font-size: 1.6em;
  }
  .header {
    font-size: 3.8vh;
  }
}
