@charset "utf-8";

@font-face {
  font-family: Rubric;
  font-style: normal;
  font-weight: normal;
  src: url(../__fonts/Cabin-Bold.ttf);
}

@font-face {
  font-family: Ans;
  font-style: normal;
  src: url(../__fonts/Roboto-Regular.ttf);
}

@font-face {
  font-family: Title;
  font-style: normal;
  font-weight: normal;
  src: url(../__fonts/MyriadPro-Semibold_2.otf);
}
div,
input {
  font-variant-ligatures: none;
}
#rubricAud {
  display: inline-block;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  margin-right: 10px;
  vertical-align: middle;
  background-size: 90%;
  background-repeat: no-repeat;
  background-position: center;
  border: 1px solid #f29b34;
  box-shadow:
    1px 2px 2px 0 rgba(0, 0, 0, 0.14),
    0 3px 1px -2px rgba(0, 0, 0, 0.12),
    0 1px 2px 0 rgba(0, 0, 0, 0.2);
}
html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: gray;
}
body {
  overflow: hidden;
  width: 1280px;
  height: 720px;
  margin: 0;
  padding: 0;
  background-color: gray;
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: center center;
  transform: translate(-50%, -50%);
}
.disa {
  -webkit-user-select: none;
  -moz-user-select: none;
}

#main {
  width: 1280px;
  height: 720px;
}

.optSpan {
  font-family: Ans;
  display: inline-block;
  background-color: #fff;
  width: 45px;
  text-align: center;
  padding-right: 3px;
  padding-left: 3px;
  border-top: 3px solid rgb(242, 155, 52);
  border-bottom: 3px solid rgb(242, 155, 52);
}

.optSpan:first-child {
  padding-left: 0px;
  border-left: 3px solid rgb(242, 155, 52);
}

.optSpan:last-child {
  padding-right: 0px;
  border-right: 3px solid rgb(242, 155, 52);
}

.optionDesign {
  box-shadow: inset 0px 0px 6px #666;
  border: 2px solid #fff;
  border-radius: 5px;
  background: #ffff99;
  padding: 10px;
}

#submit {
  font-size: 21px;
  font-family: Ans;
  display: block;
  width: 145px;
  font-weight: bold;
  text-align: center;
  background: -webkit-linear-gradient(#fcfcfc, #bcbcbc);
  background: -o-linear-gradient(#fcfcfc, #bcbcbc);
  background: -moz-linear-gradient(#fcfcfc, #bcbcbc);
  background: linear-gradient(#fcfcfc, #bcbcbc);
  color: #151515;
  cursor: pointer;
  padding: 7px 0 7px 0;
  border-radius: 10px;
  border-bottom: 1px solid #9c9999;
  box-shadow: 2px 2px 5px 1px #3e3e3e;
  visibility: hidden;
}
#answer {
  font-size: 21px;
  font-family: Ans;
  display: block;
  width: 145px;
  font-weight: bold;
  text-align: center;
  background: -webkit-linear-gradient(#fcfcfc, #bcbcbc);
  background: -o-linear-gradient(#fcfcfc, #bcbcbc);
  background: -moz-linear-gradient(#fcfcfc, #bcbcbc);
  background: linear-gradient(#fcfcfc, #bcbcbc);
  color: #151515;
  cursor: pointer;
  padding: 7px 0 7px 0;
  border-radius: 10px;
  border-bottom: 1px solid #9c9999;
  box-shadow: 2px 2px 5px 1px #3e3e3e;
  float: right;
  visibility: hidden;
}

#checkSolution {
  position: absolute;
  width: 350px;
  top: 600px;
  left: 260px;
  z-index: 1;
}

.nextpreNav {
  width: 540px;
  position: absolute;
  display: inline-block;
}

#nextBtn {
  background: url(../../__images/arrow.png);
  background-size: 61px 61px;
  width: 61px;
  height: 61px;
  float: right;
  cursor: pointer;
}

#preBtn {
  background: url(../../__images/arrow2.png);
  background-size: 61px 61px;
  float: left;
  width: 61px;
  height: 61px;
  cursor: pointer;
}

#activityText {
  position: absolute;
  left: 200px;
  top: 65px;
  -webkit-animation-name: activityTextAnim;
  -webkit-animation-duration: 1s;
  animation-name: activityTextAnim;
  animation-duration: 1s;
}

@-webkit-keyframes activityTextAnim {
  0% {
    left: 200px;
    top: -100px;
  }
  50% {
    left: 200px;
    top: 95px;
  }
  100% {
    left: 200px;
    top: 65px;
  }
}

@keyframes activityTextAnim {
  0% {
    left: 200px;
    top: -100px;
  }
  50% {
    left: 200px;
    top: 95px;
  }
  100% {
    left: 200px;
    top: 65px;
  }
}

#completedText {
  position: absolute;
  left: 600px;
  top: 65px;
  -webkit-animation-name: completedTextAnim;
  -webkit-animation-duration: 1s;
  animation-name: completedTextAnim;
  animation-duration: 1s;
}

@-webkit-keyframes completedTextAnim {
  0% {
    left: 600px;
    top: 225px;
  }
  50% {
    left: 600px;
    top: 35px;
  }
  100% {
    left: 600px;
    top: 65px;
  }
}

@keyframes completedTextAnim {
  0% {
    left: 600px;
    top: 225px;
  }
  50% {
    left: 600px;
    top: 35px;
  }
  100% {
    left: 600px;
    top: 65px;
  }
}

.inClass,
.inClass:focus,
.disa,
.disa:focus {
  -webkit-user-select: text; /* Chrome, Opera, Safari */
  -moz-user-select: text; /* Firefox 2+ */
  -ms-user-select: text; /* IE 10+ */
  user-select: text; /* Standard syntax */
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 0 !important;
}
