* {
  /* reset all */
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: Helvetica;
}

.hidden {
  display: none;
}

.red-background {
  background: red;
}

.green-background {
  background: green;
}

.success {
  background: green;
  pointer-events: none;
}

.failed {
  background: red;
}

.game {
  display: inline-block;
  text-align: center;
  width: "max-content";
  margin-top: 4px;
  border: solid 2px white;
  border-radius: 3px;
  margin: 4px;
  padding-left: 7px;
  padding-right: 7px;
}

.active_game {
  background: white;
  color: black;
}

.currentLevel {
  float: left;
  font-size: 0.5rem;
}

.disable {
  /* IMPORTANT! -- > disables click on element */
  pointer-events: none;
}

.enable {
  pointer-events: auto;
}

.margin-bottom-blank {
  margin-bottom: 20px;
}

.btnShowAnswers {
  position: absolute;
  bottom: 85px;
  right: 25px;
  width: 40px;
  height: 40px;
  font-size: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: solid 1px black;
  padding: 10px;
  background-color: #fd7e14;
  border-radius: 50%;
  z-index: 1000;
}

.just-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: center;
      align-self: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.5rem;
  border: solid 1px black;
  border-radius: 10px;
  background: #fd7e14;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  min-width: 35px;
  padding: 20px;
}

.zumer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  justify-self: flex-end;
  border: solid black 1px;
  padding: 2px;
  background-color: black;
  margin-left: auto;
  margin-right: 20px;
}

#spacer {
  width: 50px;
}

.plus, .minus {
  font-size: 2rem;
}

.study {
  background: black;
  color: white;
  overflow-y: auto;
}

@media (min-width: 320px) {
  .study {
    border-radius: 20px;
    height: 100%;
  }
}

@media (min-width: 768px) {
  .study {
    border-radius: 20px;
  }
}

.study .info_par {
  padding: 15px;
  color: yellow;
  font-size: 1rem;
}

@media (min-width: 320px) {
  .study > p, .study > div {
    line-height: 1.2rem;
    font-size: 0.8rem;
    padding: 3px 10px 3px 10px;
    margin-left: 5px;
  }
}

@media (min-width: 568px) {
  .study > p, .study > div {
    font-size: 1rem;
    padding: 5px 10px 5px 10px;
    margin-left: 5px;
  }
}

@media (min-width: 768px) {
  .study > p, .study > div {
    line-height: 2rem;
    font-size: 1.6rem;
    padding: 5px 20px 5px 20px;
    text-indent: -20px;
    margin-left: 20px;
  }
}

@media (min-width: 1024px) {
  .study > p, .study > div {
    font-size: 1.6rem;
  }
}

@media (min-width: 1025px) {
  .study > p, .study > div {
    font-size: 1.6rem;
  }
}

.gr-stories {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto;
      grid-template-rows: auto;
      grid-template-areas: "correctstory studentstory";
  grid-gap: 30px;
  margin-top: 20px;
  height: calc(100% - 20px);
  font-size: 1.4rem;
  width: 100%;
}

.gr-sentences {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  -ms-grid-rows: 1fr 1fr;
      grid-template-rows: 1fr 1fr;
      grid-template-areas: "correctstory" "studentstory";
  padding: 50px;
  margin-top: 20px;
  height: calc(100% - 20px);
  font-size: 1.4rem;
  width: 100%;
}

.correctstory {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: correctstory;
}

.studentstory {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  grid-area: studentstory;
}

.model-version {
  padding-left: 20px;
  overflow-y: auto;
}

.student-version {
  padding-right: 20px;
  overflow-y: auto;
  z-index: 1000;
}

.wr_feedback {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-item-align: center;
      align-self: center;
  justify-self: center;
  border: solid 2px orange;
  padding: 100px;
  border-radius: 20px;
}

.wr_feedback .fbScore {
  margin-top: 5px;
  font-size: 1.5rem;
}

.wr_feedback .fbPercent {
  margin-top: 5px;
  font-size: 2rem;
}

.wr_feedback .fbVerbal > h6 {
  margin-top: 5px;
  font-size: 1.5rem;
}

.wr_feedback .fbOptions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
}

.wr_feedback .fbOptions .btn-fb {
  border: solid 3px brown;
  background: orange;
  color: black;
  border-radius: 5px;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  max-height: -webkit-fit-content;
  max-height: -moz-fit-content;
  max-height: fit-content;
  text-align: center;
  padding: 20px;
  margin-top: 30px;
  font-size: 1.5rem;
}

.wr_transpartner_feedback {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-item-align: center;
      align-self: center;
  justify-self: center;
  border: solid 2px brown;
  padding: 50px;
  border-radius: 20px;
  background: rgba(128, 128, 128, 0.5);
  z-index: 1;
}

.wr_transpartner_feedback .btn_try_new {
  background: yellow;
  font-size: 25px;
  border: solid 1px black;
  border-radius: 10px;
  padding: 20px;
  z-index: 10;
  opacity: 1;
}

.wr_transpartner_feedback .perfect {
  font-size: 40px;
  text-align: center;
  background: green;
  border: solid 1px brown;
  border-radius: 10px;
  padding: 10px;
  z-index: 5;
}

.wr_transpartner_feedback .fbScore {
  margin-top: 5px;
  font-size: 1.5rem;
}

.wr_transpartner_feedback .fbPercent {
  margin-top: 5px;
  font-size: 2rem;
}

.wr_transpartner_feedback .fbVerbal > h6 {
  margin-top: 5px;
  font-size: 1.5rem;
}

.wr_transpartner_feedback .fbOptions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
}

.wr_transpartner_feedback .fbOptions .btn-fb {
  border: solid 3px brown;
  background: green;
  color: yellow;
  border-radius: 10px;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  max-height: -webkit-fit-content;
  max-height: -moz-fit-content;
  max-height: fit-content;
  text-align: center;
  padding: 20px;
  margin-top: 30px;
  font-size: 2rem;
}

.dd-shadow {
  /* https://css3gen.com/wp-content/cache/all/box-shadow//index.html */
  -webkit-box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.3);
}

.dd-shadow-top {
  -webkit-box-shadow: 0 -5px 5px -5px #333;
          box-shadow: 0 -5px 5px -5px #333;
}

.dd-shadow-right {
  -webkit-box-shadow: 5px 0 5px -5px #333;
          box-shadow: 5px 0 5px -5px #333;
}

.dd-shadow-bottom {
  -webkit-box-shadow: 0 5px 5px -5px #333;
          box-shadow: 0 5px 5px -5px #333;
}

.dd-shadow-left {
  -webkit-box-shadow: -5px 0 5px -5px #333;
          box-shadow: -5px 0 5px -5px #333;
}

.dd-shadow-all {
  -webkit-box-shadow: 0 0 5px #333;
          box-shadow: 0 0 5px #333;
}
/*# sourceMappingURL=main_common.css.map */