@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@400;500&display=swap");
::-webkit-scrollbar {
  background: transparent;
  width: 5px;
  height: 8px;
}

::-webkit-scrollbar-button {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: #3369ff;
  border-radius: 5px;
}

body {
  padding: 0;
  margin: 0;
}

#full-area {
  width: 100%;
  height: 100vh;
  background: url("media/bg.jpg");
  background-size: cover;
  font-family: "Rubik", sans-serif;
  margin: 0;
  position: absolute;
  top: 50%;
  -ms-transform: translateY​(-50%);
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  min-height: 650px;
}
#full-area #game-area {
  width: 1000px;
  background: white;
  border-radius: 5px;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.36);
  padding: 20px 20px;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  -ms-transform: translateY​(-50%) scale(1);
  transform: translateY(-50%) scale(1);
  border-bottom: 10px solid #2a57d4b9;
}
#full-area #game-area #description{
  display: none;
}
#full-area #game-area #description p {
  text-align: center;
  font-size: 30px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.877);
}
#full-area #game-area #description #description-buttons {
  width: 100%;
}
#full-area #game-area #description #description-buttons div {
  background: #3369ff;
  border-bottom: 5px solid #2a57d4;
  text-align: center;
  color: white;
  font-size: 25px;
  height: 50px;
  width: 100%;
  cursor: pointer;
  justify-content: center;
  margin: 0 auto;
  font-weight: 500;
  padding-top: 7px;
  border-radius: 3px;
  margin: 20px 5px 0 5px;
  justify-content: center;
  margin: 0 auto;
}
#full-area #game-area #description #description-buttons div:hover {
  transition: 0.3s;
  filter: brightness(1.2);
}
#full-area #game-area #description #description-buttons div:nth-child(1) {
  width: 60%;
}
#full-area #game-area #description #description-buttons div:nth-child(2) {
  width: 30%;
}
#full-area #game-area #task-number-screen {
  width: 100%;
  display: none;
  padding-bottom: 20px;
}
#full-area #game-area #task-number-screen p {
  margin-top: -10px;
  font-size: 30px;
  text-align: center;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.877);
}
#full-area #game-area #task-number-screen .lds-ring {
  display: inline-block;
  position: absolute;
  width: 80px;
  height: 80px;
  justify-content: center;
  margin: 0 auto;
  left: 50%;
  margin-left: -20px;
  padding: 0;
  margin-top: -10px;
}
#full-area #game-area #task-number-screen .lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 30px;
  height: 30px;
  margin: 8px;
  border: 5px solid #2a57d4;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #2a57d4 transparent transparent transparent;
}
#full-area #game-area #task-number-screen .lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}
#full-area #game-area #task-number-screen .lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}
#full-area #game-area #task-number-screen .lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}
@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
#full-area #game-area #task-screen {
  display: none;
}
#full-area #game-area #task-screen #check-btn {
  position: absolute;
  left: 100%;
  top: 100%;
  margin: -5% 0 0 -7.5%;
  z-index: 999999;
  cursor: pointer;
  color: #3369ff;
}
#full-area #game-area #task-screen #check-btn:hover {
  transition: 0.2s;
  filter: brightness(1.3);
}
#full-area #game-area #task-screen #answer-section {
  padding: 0 20px;
  width: 50%;
  position: absolute;
  left: 50%;
  height: 100%;
}
#full-area #game-area #task-screen #answer-section #options div {
  width: 90%;
  height: 10%;
  margin-left: 5%;
  background: white;
  z-index: 999;
  border: 3px solid #3369ff;
  text-align: center;
  border-radius: 3px;
  margin-bottom: 10px;
  padding-top: 1.8%;
  font-size: 19px;
}
#full-area #game-area #task-screen #answer-section #clock {
  width: 60%;
  background: url("media/clock.png");
  background-size: cover;
  margin-left: 20%;
}
#full-area #game-area #task-screen #answer-section #clock #pt {
  width: 5px;
  height: 5px;
  background: #000;
  border-radius: 20px;
  position: absolute;
  left: 50%;
  top: 67%;
  margin-left: -2px;
  margin-top: 30px;
}
#full-area #game-area #task-screen #answer-section #clock #triangle {
  width: 0;
  height: 0;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 80px solid blue;
  position: absolute;
  margin-top: 30px;
}
#full-area #game-area #task-screen #answer-section #clock #triangle:nth-child(1) {
  left: 50%;
  top: 63.5%;
  transform-origin: right;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  transform: translate(-100%, 0) rotate(223deg);
}
#full-area #game-area #task-screen #answer-section #clock #triangle:nth-child(2) {
  left: 50%;
  top: 63%;
  border-left: 80px solid red;
  border-top: 24px solid transparent;
  border-bottom: 24px solid transparent;
  transform-origin: right;
  transform: translate(-100%, 0) rotate(253deg);
}
#full-area #game-area #task-screen #answer-section #clock #triangle:nth-child(3) {
  left: 50%;
  top: 63%;
  border-left: 80px solid green;
  border-top: 26px solid transparent;
  border-bottom: 26px solid transparent;
  transform-origin: right;
  transform: translate(-100%, 0) rotate(289deg);
}
#full-area #game-area #task-screen #answer-section #clock #triangle:nth-child(4) {
  left: 50%;
  top: 63.5%;
  border-left: 80px solid yellow;
  transform-origin: right;
  transform: translate(-100%, 0) rotate(320deg);
}
#full-area #game-area #task-screen #answer-section #clock #triangle:nth-child(4) {
  left: 50%;
  top: 63.5%;
  border-left: 80px solid yellow;
  transform-origin: right;
  transform: translate(-100%, 0) rotate(320deg);
}
#full-area #game-area #task-screen #answer-section #clock #triangle:nth-child(5) {
  left: 50%;
  top: 63.5%;
  border-left: 80px solid lightcoral;
  transform-origin: right;
  transform: translate(-100%, 0) rotate(347deg);
}
#full-area #game-area #task-screen #answer-section #clock #triangle:nth-child(6) {
  left: 50%;
  top: 63.5%;
  border-left: 80px solid skyblue;
  transform-origin: right;
  transform: translate(-100%, 0) rotate(375deg);
}
#full-area #game-area #task-screen #answer-section #clock #triangle:nth-child(7) {
  left: 50%;
  top: 63%;
  border-top: 23px solid transparent;
  border-bottom: 23px solid transparent;
  border-left: 80px solid blue;
  transform-origin: right;
  transform: translate(-100%, 0) rotate(405deg);
}
#full-area #game-area #task-screen #answer-section #clock #triangle:nth-child(8) {
  left: 50.2%;
  top: 63%;
  border-top: 23px solid transparent;
  border-bottom: 23px solid transparent;
  border-left: 80px solid red;
  transform-origin: right;
  transform: translate(-100%, 0) rotate(435deg);
}
#full-area #game-area #task-screen #answer-section #clock #triangle:nth-child(9) {
  left: 50.2%;
  top: 63%;
  border-top: 24px solid transparent;
  border-bottom: 24px solid transparent;
  border-left: 80px solid green;
  transform-origin: right;
  transform: translate(-100%, 0) rotate(468deg);
}
#full-area #game-area #task-screen #answer-section #clock #triangle:nth-child(10) {
  left: 50.2%;
  top: 63%;
  border-top: 22px solid transparent;
  border-bottom: 22px solid transparent;
  border-left: 80px solid yellow;
  transform-origin: right;
  transform: translate(-100%, 0) rotate(501deg);
}
#full-area #game-area #task-screen #answer-section #clock #triangle:nth-child(11) {
  left: 50.2%;
  top: 64%;
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  border-left: 80px solid lightcoral;
  transform-origin: right;
  transform: translate(-100%, 0) rotate(529deg);
}
#full-area #game-area #task-screen #answer-section #clock #triangle:nth-child(12) {
  left: 50.2%;
  border-top-right-radius: 90px;
  border-bottom-right-radius: 9000px;
  top: 64%;
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  border-left: 80px solid skyblue;
  transform-origin: right;
  transform: translate(-100%, 0) rotate(555deg);
}
#full-area #game-area #task-screen #answer-section #clock img {
  position: absolute;
  user-select: none;
  margin-top: 30px;
}
#full-area #game-area #task-screen #answer-section #clock #hour {
  left: 54%;
  top: 67.5%;
  width: 8%;
  transform: translate(-50%, -50%) rotate(5deg);
  transform-origin: left;
  z-index: 9999;
  margin-top: 32px;
}
#full-area #game-area #task-screen #answer-section #clock #min {
  left: 55.5%;
  top: 67.5%;
  width: 11%;
  transform: translate(-50%, -50%) rotate(331deg);
  transform-origin: left;
  z-index: 999;
  margin-top: 32px;
}
#full-area #game-area #task-screen #answer-section #clock #how-to-clock {
  position: absolute;
  left: 75%;
  margin-top: 45px;
}
#full-area #game-area #task-screen #answer-section #clock #how-to-clock svg {
  cursor: pointer;
  color: #2a57d4;
}
#full-area #game-area #task-screen #answer-section #clock #how-to-clock p {
  display: none;
  width: 200px;
  padding: 10px;
  background: white;
  border: 2px solid #3369ff;
  border-radius: 3px;
  margin-left: 35px;
  position: relative;
  z-index: 9999;
  margin-top: -50px;
}
#full-area #game-area #task-screen #task-image {
  width: 50%;
  height: 300px;
  background-image: url("media/activities/a (1).jpg");
  background-size: cover;
  padding-top: 20px;
  border-radius: 3px;
}
#full-area #game-area #task-screen #task-image #drop-area {
  height: 13%;
  font-size: 19px;
  width: 90%;
  background: white;
  margin-left: 5%;
  z-index: 999;
  border: 3px solid white;
  text-align: center;
  border-radius: 3px;
  padding-top: 2.7%;
  color: rgba(0, 0, 0, 0.336);
  user-select: none;
}
#full-area #game-area #correct-answer-screen, #full-area #game-area #wrong-answer-screen, #full-area #game-area #end-screen {
  text-align: center;
  color: rgba(0, 0, 0, 0.726);
  display: none;
}
#full-area #game-area #correct-answer-screen h3, #full-area #game-area #wrong-answer-screen h3, #full-area #game-area #end-screen h3 {
  margin-top: 10px;
  font-weight: 700;
}
#full-area #game-area #correct-answer-screen button, #full-area #game-area #wrong-answer-screen button, #full-area #game-area #end-screen button {
  background: #3369ff;
  border: none;
  outline: none;
  border-bottom: 5px solid #2a57d4;
  text-align: center;
  color: white;
  font-size: 25px;
  height: 50px;
  width: 100%;
  cursor: pointer;
  justify-content: center;
  margin: 0 auto;
  font-weight: 500;
  padding-top: 7px;
  border-radius: 3px;
  margin: 20px 5px 0 5px;
  justify-content: center;
  margin: 10px auto;
  margin-bottom: 10px;
  max-width: 400px;
}
#full-area #game-area #correct-answer-screen button:hover, #full-area #game-area #wrong-answer-screen button:hover, #full-area #game-area #end-screen button:hover {
  transition: 0.3s;
  filter: brightness(1.2);
}

@media (max-width: 800px) {
  #full-area #game-area {
    transform: translateY(-50%) scale(1);
  }

  #full-area #game-area #task-screen #answer-section #options div {
    font-size: 12px;
  }

  #full-area #game-area #task-screen #task-image #drop-area {
    font-size: 12px;
  }
}
.dragaware {
  cursor: pointer;
}

.draggable_clone {
  position: absolute;
  /* also set via javascript */
  z-index: 100001;
  pointer-events: none;
  /* disable mouse events on the clone */
}

.draggable.dragging, .draggable .dragging {
  opacity: 0.5;
}

.sortable .sortable_clone {
  position: absolute;
  /* also set via javascript */
  z-index: 100001;
  list-style-type: none;
  opacity: 0.5;
}

.sortable .sortable_placeholder {
  box-sizing: border-box;
  list-style-type: none;
  background: #eee;
  border: 2px dotted #52b218;
}

/*# sourceMappingURL=index.css.map */
