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

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

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

.magnets .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;
  font-family: andika;
}

.board:lang(np) * {
  font-family: laila !important;
}

.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%;
}

.bg_main {
  background-image: url('../images/bg.png');
  background-size: cover;
}
.its_hidden {
  display: none;
}

/*=====  End of common styles  ======*/

/*===============================================
 =            general template layout            =
 ===============================================*/

div.generalTemplateblock {
  position: absolute;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  /*border   : 1px solid red; */
  background: #faf2e9;
}

/*===================================
 =            HeaderBlock            =
 ===================================*/

div.headerblock {
  position: absolute;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 10%;
  /*border   : 1px solid red;*/
}

div.headerblock p.headertextstyle {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1% 2%;
  font-size: 1.3em;
  font-weight: bold;
  color: rgb(238, 110, 115);
  background-color: rgb(252, 252, 252);
  text-align: center;
}

div.generalTemplateblock[data-templatecontains='hasheaderblock']
  div.headerblock {
  height: 13%;
}

div.generalTemplateblock[data-templatecontains='hasheaderblock']
  div.headerblock
  p.headertextstyle {
  padding: 2%;
}

/*=====  End of HeaderBlock  ======*/

/*====================================
 =            ContentBlock            =
 ====================================*/

div.generalTemplateblock div.contentblock {
  position: absolute;
  width: 100%;
  padding: 1%;
  /*border   : 1px solid blue;*/
}

div.generalTemplateblock[data-templatecontains='hasheaderblock']
  div.contentblock {
  top: 13%;
  height: 87%;
}

div.generalTemplateblock[data-templatecontains='hasonlycontent']
  div.contentblock {
  top: 0%;
  height: 100%;
}

/*=====  End of ContentBlock  ======*/
/*----------------------------------
 |			Animations			   |
 -------------------------------- */

.blink_and_big {
  animation: blink_2_big infinite 1s;
  -webkit-animation: blink_2_big infinite 1s;
}

@-webkit-keyframes blink_2_big {
  0% {
    transform: scale(1, 1);
    filter: drop-shadow(0px 0px 1px white);
  }
  50% {
    transform: scale(1.05, 1.05);
    filter: drop-shadow(0px 0px 5px black);
  }
  100% {
    transform: scale(1, 1);
    filter: drop-shadow(0px 0px 1px white);
  }
}
@keyframes blink_2_big {
  0% {
    transform: scale(1, 1);
    filter: drop-shadow(0px 0px 1px white);
  }
  50% {
    transform: scale(1.05, 1.05);
    filter: drop-shadow(0px 0px 5px black);
  }
  100% {
    transform: scale(1, 1);
    filter: drop-shadow(0px 0px 1px white);
  }
}

/*----------------------------------
 |			Animations			   |
 -------------------------------- */
.fade_in {
  animation: appear 1s;
  -webkit-animation: appear 1s;
}

@-webkit-keyframes appear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/*=====  End of Text Block  ======*/

/*===================================
 =            Image Block            =
 ===================================*/

div.imageblock {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0%;
  /*border     : 1px solid green; */
}

div.droppableblock {
  position: absolute;
  width: 100%;
  height: 80%;
  top: 20%;
  /*border     : 1px solid green; */
}

div.imageblock label {
  position: absolute;
}

.horizontal_center {
  left: 50%;
  transform: translate(-50%, 0%);
  -moz-transform: translate(-50%, 0%);
  -webkit-transform: translate(-50%, 0%);
  text-align: center;
}

.cover_full {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* === Activity Specific Image Blocks === */

/*=====  End of Image Block  ======*/

/*============================================
 =            Definition layout               =
 ============================================*/
div.definitionblock > img {
  position: relative;
  width: 50%;
  left: -20%;
}

div.definitionblock > figcaption {
  position: relative;
  margin-top: -8%;
  left: -21%;
  font-size: 2em;
  color: rgb(201, 136, 116);
}

div.definitionblock > p.definitiontextstyle {
  position: relative;
  text-align: left;
  margin-top: 15%;
  font-size: 1.5em;
  padding: 0% 2%;
  /* border  : 1px solid red; */
}

.parsedString {
  color: gray;
}

/*=====  End of Definition layout  ======*/

/*=====  End of general template layout  ======*/

/*====================================
 =            Custom Style            =
 ====================================*/
.contentcontainer {
  width: 98%;
  height: 90%;
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 4px;
  background: #947676;
}

.content_full .contentcontainer {
  width: 97%;
  height: 95%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.lesson_title {
  position: absolute;
  color: #ff6a65;
  font-size: 5em;
}

.introduction {
  position: absolute;
  top: 0;
  text-align: center;
  width: 100%;
  color: black;
  font-size: 4vmin;
}
.centerdiv {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.description1 {
  top: -1em;
  width: fit-content;
  margin: auto;
  font-size: 5vmin;
  color: #fff;
  background: #ad5545;
  border-radius: 0.5em;
  padding: 1% 6%;
}

.description2 {
  top: 2em;
  width: fit-content;
  margin: auto;
  font-size: 3vmin;
  border: 4px solid #dba49b;
  background: #f4eadf;
  border-radius: 0.5em;
  padding: 3%;
}

.description1 span {
  color: #fff;
}

.centerdiv .description2 {
  top: 0%;
}

.footer {
  position: absolute;
  bottom: -100%;
  text-align: center;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  height: auto;
}
.footer p {
  width: 80%;
  margin: auto;
  color: black;
  border-radius: 0.4em;
  font-size: 3.5vmin;
  border: 4px solid #dba49b;
  background: #f4eadf;
  padding: 1%;
}
.think_question {
  position: absolute;
  top: 40%;
  text-align: center;
  left: 5%;
  width: 90%;
  color: black;
  font-size: 4vmin;
}

/*------ images -------*/
.magnet_middle {
  position: absolute;
  left: 50%;
  top: 37%;
  transform: translateX(-50%);
  width: 60%;
  filter: drop-shadow(0px 0px 5px gray);
}
.magnet_left {
  position: absolute;
  left: 10%;
  top: 37%;
  width: 30%;
  filter: drop-shadow(0px 0px 5px gray);
}
.magnet_right {
  position: absolute;
  left: 60%;
  top: 37%;
  width: 30%;
  filter: drop-shadow(0px 0px 5px gray);
}
.magnet_left_r {
  position: absolute;
  left: 2%;
  top: 37%;
  width: 30%;
  filter: drop-shadow(0px 0px 5px gray);
}
.magnet_right_r {
  position: absolute;
  left: 68%;
  top: 37%;
  width: 30%;
  filter: drop-shadow(0px 0px 5px gray);
}
.magnet_label {
  position: absolute;
  bottom: 28%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: black;
  font-size: 3.5vmin;
  font-weight: normal !important;
  z-index: 50;
}
.magnet_label_north {
  position: absolute;
  bottom: 28%;
  left: 10%;
  text-align: center;
  color: white;
  font-size: 3.5vmin;
  font-weight: normal !important;
}
.magnet_label_south {
  position: absolute;
  bottom: 28%;
  right: 10%;
  text-align: center;
  color: white;
  font-size: 3.5vmin;
  font-weight: normal !important;
}

.attract {
  animation: attract forwards 2s;
  -webkit-animation: attract forwards 2s;
}
@-webkit-keyframes attract {
  100% {
    left: 20.5%;
  }
}
@keyframes attract {
  100% {
    left: 20.5%;
  }
}
.attract_1 {
  animation: attract_1 forwards 2s;
  -webkit-animation: attract_1 forwards 2s;
}
@-webkit-keyframes attract_1 {
  100% {
    left: 50%;
  }
}
@keyframes attract_1 {
  100% {
    left: 50%;
  }
}

.repel {
  animation: repel forwards 2s;
  -webkit-animation: repel forwards 2s;
}
@-webkit-keyframes repel {
  100% {
    left: 2%;
  }
}
@keyframes repel {
  100% {
    left: 2%;
  }
}
.repel_1 {
  animation: repel_1 forwards 2s;
  -webkit-animation: repel_1 forwards 2s;
}
@-webkit-keyframes repel_1 {
  100% {
    left: 68%;
  }
}
@keyframes repel_1 {
  100% {
    left: 68%;
  }
}

.magnet_left2 {
  position: absolute;
  left: 20.5%;
  top: 37%;
  width: 30%;
  filter: drop-shadow(0px 0px 5px gray);
}
.magnet_right2 {
  position: absolute;
  left: 50%;
  top: 37%;
  width: 30%;
  filter: drop-shadow(0px 0px 5px gray);
}

.duplicate {
  animation: duplicate 2s linear forwards;
  -webkit-animation: duplicate 2s linear forwards;
}
@-webkit-keyframes duplicate {
  0% {
    transform: rotate(180deg) scale(0.9) scaleX(-1) scaleY(-1);
  }
  100% {
    left: 10%;
    transform: rotate(0deg) scale(1) scaleX(-1) scaleY(-1);
    top: 60%;
  }
}
@keyframes duplicate {
  0% {
    transform: rotate(180deg) scale(0.9) scaleX(-1) scaleY(-1);
  }
  100% {
    left: 10%;
    transform: rotate(0deg) scale(1) scaleX(-1) scaleY(-1);
    top: 60%;
  }
}

.duplicate_1 {
  animation: duplicate_1 2s linear forwards;
  -webkit-animation: duplicate_1 2s linear forwards;
}
@-webkit-keyframes duplicate_1 {
  0% {
    transform: rotate(180deg) scale(0.9) scaleX(-1) scaleY(-1);
  }
  100% {
    left: 60%;
    transform: rotate(0deg) scale(1) scaleX(-1) scaleY(-1);
    top: 60%;
  }
}
@keyframes duplicate_1 {
  0% {
    transform: rotate(180deg) scale(0.9) scaleX(-1) scaleY(-1);
  }
  100% {
    left: 60%;
    transform: rotate(0deg) scale(1) scaleX(-1) scaleY(-1);
    top: 60%;
  }
}

.duplicate_2 {
  animation: duplicate_2 2s linear forwards;
  -webkit-animation: duplicate_2 2s linear forwards;
}
@-webkit-keyframes duplicate_2 {
  0% {
    transform: rotate(180deg) scale(0.9);
  }
  100% {
    left: 60%;
    transform: rotate(0deg) scale(1);
    top: 60%;
  }
}
@keyframes duplicate_2 {
  0% {
    transform: rotate(180deg) scale(0.9);
  }
  100% {
    left: 60%;
    transform: rotate(0deg) scale(1);
    top: 60%;
  }
}
/*-------------
 * arrow images
 * ------------*/
.arrow {
  position: absolute;
  height: 13%;
  top: 50%;
}

.arrow_north {
  left: 14%;
}

.arrow_south {
  right: 14%;
  transform: scaleX(-1);
}

.sidearrow {
  position: absolute;
  width: 5%;
}
.sidearrow_1 {
  position: absolute;
  width: 5%;
  top: 61% !important;
}
.arrow_left {
  top: 38%;
  left: 40%;
}
.arrow_right {
  top: 38%;
  right: 40%;
}

.arrow_left_1 {
  top: 38%;
  left: 44%;
}
.arrow_right_1 {
  top: 38%;
  right: 44%;
}

.arrow_left2 {
  top: 38%;
  left: 44%;
}
.arrow_right2 {
  top: 38%;
  right: 44%;
  transform: rotateY(180deg);
}
.arrow_left_r {
  top: 38%;
  left: 36%;
  transform: rotateY(180deg);
}
.arrow_right_r {
  top: 38%;
  right: 36%;
}

.move_arrow_side {
  animation: move_arrow_side forwards 2s;
  -webkit-animation: move_arrow_side forwards 2s;
}
@-webkit-keyframes move_arrow_side {
  100% {
    transform: translateX(95%);
  }
}
@keyframes move_arrow_side {
  100% {
    transform: translateX(95%);
  }
}

.move_arrow_side_1 {
  animation: move_arrow_side_1 forwards 2s;
  -webkit-animation: move_arrow_side_1 forwards 2s;
}
@-webkit-keyframes move_arrow_side_1 {
  0% {
    transform: translateX(0%) rotateY(180deg);
  }
  100% {
    transform: translateX(-95%) rotateY(180deg);
  }
}
@keyframes move_arrow_side_1 {
  0% {
    transform: translateX(0%) rotateY(180deg);
  }
  100% {
    transform: translateX(-95%) rotateY(180deg);
  }
}

.move_arrow_side_3 {
  animation: move_arrow_side_3 forwards 2s;
  -webkit-animation: move_arrow_side_3 forwards 2s;
}
@-webkit-keyframes move_arrow_side_3 {
  100% {
    transform: translateX(95%);
  }
}
@keyframes move_arrow_side_3 {
  100% {
    transform: translateX(95%);
  }
}

.move_arrow_side_2 {
  animation: move_arrow_side_2 forwards 2s;
  -webkit-animation: move_arrow_side_2 forwards 2s;
}
@-webkit-keyframes move_arrow_side_2 {
  0% {
    transform: translateX(0%) rotateY(180deg);
  }
  100% {
    transform: translateX(-95%) rotateY(180deg);
  }
}
@keyframes move_arrow_side_2 {
  0% {
    transform: translateX(0%) rotateY(180deg);
  }
  100% {
    transform: translateX(-95%) rotateY(180deg);
  }
}

.zooming_effect {
  animation: zooming_effect 2 1s;
  -webkit-animation: zooming_effect 2 1s;
}
@-webkit-keyframes zooming_effect {
  50% {
    transform: scale(1.1);
  }
}
@keyframes zooming_effect {
  50% {
    transform: scale(1.1);
  }
}

/*=====  End of Custom Style  ======*/

.ttt {
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 20%;
}
.ttt2 {
  top: 30%;
  left: 60%;
  width: 25%;
  height: 25%;
  object-fit: contain;
}
.bulb_think {
  position: absolute;
  top: 8%;
  right: 10%;
  width: 20%;
  transform: rotate(-30deg);
}
.reversed {
  transform: scaleX(-1) scaleY(-1);
}
