@charset "UTF-8";

.game-progress {
  color: #8f99b6;
  font-size: 17px;
  /*font-family: ProximaNovaSemibold;*/
  position: relative;
  padding-right: 25px;
  line-height: 18px;
  margin-bottom: 20px;
}

.game-progress:before {
  content: '';
  width: 14px;
  height: 18px;
  background: url(../i/page-icon.png) no-repeat;
  display: inline-block;
  line-height: 18px;
  margin-right: 7px;
  position: relative;
  top: 3px;
}

.game-screen {
  min-height: 400px;
  display: none;
  position: relative;
}

.game-screen:not(:first-child) {
  user-select: none;
}
.game-screen:first-child {
  display: block;
}
.game-screen__completed {
  overflow: hidden;
  display: block;
  visibility: hidden;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  z-index: 10;
}
.game-screen__completed.shown {
  visibility: visible;
}

.game-completed__top, .game-completed__bottom {
  top: -50%;
  height: 50%;
  position: absolute;
  left: 0;
  right: 0;
  background: #0186ae;
  transition: top 0.5s linear;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}
.game-completed__top:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -20%;
  height: 20%;
  background: #0186ae;
  z-index: 2;
  transform: skew(0deg, 5deg) translate(0px, -31px);
}
.game-completed__bottom {
  top: 100%;
  background: #e0eaf6;
  justify-content: flex-start;
}
.game-completed__bottom_content {
  width: 100%;
}
.game-completed__bottom:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0%;
  height: 35%;
  background: #e0eaf6;
  z-index: 1;
  transform: skew(0deg, 5deg) translate(0px, -27px);
}
.game-completed.shown .game-completed__top {
  top: 0;
}
.game-completed.shown .game-completed__bottom {
  top: 50%;
}
.game-completed__text {
  max-width: 490px;
  padding: 0 20px;
  text-align: center;
  font-size: 28px;
  font-weight: bold;
}
.game-completed__text a {
  color: black;
}
.game-completed__text.loose {
  display: none;
}

.game-completed__score {
  padding-left: 10%;
  margin-bottom: 30px;
  font-size: 24px;
}

.game-completed__score p {
  margin: 0 0 10px 0;
}
.game-completed__button {
  text-align: center;
}

.flip-card {
  background-color: transparent;
  width: 100%;
  -webkit-perspective: 1000px;
  -moz-perspective: 1000px;
  perspective: 1000px;
  height: 400px;
}
.flip-card__content {
  height: 320px;
  margin-bottom: 10px;
}
.flip-card__inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}
.flip-card.flipped .flip-card__inner {
  transform: rotateY(180deg);
}
.flip-card.no-trans .flip-card__inner {
  transition: none;
}
.flip-card__front, .flip-card__back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  /* Safari */
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
  background: #f0f6fc;
}
.flip-card__front .flip-card__content {
  padding: 30px 50px;
  background: #e0eaf6;
  font-size: 24px;
  text-align: center;
  border-radius: 5px;
  line-height: 130%;
}

.flip-card__front_buttons {
  display: flex;
  width: 100%;
  justify-content: space-between;
}
.flip-card__front_button {
  flex-grow: 1;
  flex-shrink: 0;
  background: #3083c9;
  margin-right: 10px;
  padding: 10px 10px;
  width: min-content;
  text-align: center;
  cursor: pointer;
  border-radius: 5px;
  font-size: 17px;
  /*font-family: ProximaNovaSemibold;*/
  color: white;
  display: flex;
  align-items: center;
  flex-basis: 0;
}
.flip-card__front_button:last-child {
  margin-right: 0;
  background: #26b99a;
}
.flip-card__back {
  transform: rotateY(180deg);
}
.flip-card__back_button {
  text-align: center;
}
.flip-card__back .flip-card__content {
  position: relative;
  background: #f0f6fc;
  padding: 140px 40px 0 40px;
  text-align: center;
  font-size: 18px;
  font-family: 'ProximaNovaSemibold';
  line-height: 130%;
}

.flip-card__back .flip-card__content:after {
  content: "";
  position: absolute;
  left: calc(50% - 50px);
  top: 5px;
  width: 99px;
  height: 121px;
  background-image: url('../i/ans-no.png');

}
.flip-card__back .flip-card__content.correct:after {
  background-image: url('../i/ans-yes.png');
}



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