@import url(https://fonts.googleapis.com/css2?family=Open+Sans+Condensed:ital,wght@0,300;0,700;1,300;1,700&display=swap);@charset "UTF-8";
@-webkit-keyframes slide-in {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
@keyframes slide-in {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
@-webkit-keyframes slide-down {
  0% {
    transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
@keyframes slide-down {
  0% {
    transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
@-webkit-keyframes answers-in {
  0% {
    transform: translateY(-20px);
    opacity: 0;
  }
  10%, 90% {
    transform: translateY(0px);
    opacity: 1;
  }
  100% {
    transform: translateY(-20px);
    opacity: 0;
  }
}
@keyframes answers-in {
  0% {
    transform: translateY(-20px);
    opacity: 0;
  }
  10%, 90% {
    transform: translateY(0px);
    opacity: 1;
  }
  100% {
    transform: translateY(-20px);
    opacity: 0;
  }
}
@-webkit-keyframes answers-in-challenge {
  0% {
    transform: translateY(-20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
@keyframes answers-in-challenge {
  0% {
    transform: translateY(-20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
@-webkit-keyframes progressbar-in {
  0% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}
@keyframes progressbar-in {
  0% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}
@-webkit-keyframes scale-in-out-center {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  20% {
    transform: scale(1);
    opacity: 1;
  }
  80% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0);
    opacity: 0;
  }
}
@keyframes scale-in-out-center {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  20% {
    transform: scale(1);
    opacity: 1;
  }
  80% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0);
    opacity: 0;
  }
}
@-webkit-keyframes scale-in-center {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes scale-in-center {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes answer-correct {
  0% {
    opacity: 1;
  }
  33% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@keyframes answer-correct {
  0% {
    opacity: 1;
  }
  33% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes answer-incorrect {
  0%, 100% {
    transform: translateX(0);
  }
  10%, 30%, 50%, 70% {
    transform: translateX(-10px);
  }
  20%, 40%, 60% {
    transform: translateX(10px);
  }
  80% {
    transform: translateX(8px);
  }
  90% {
    transform: translateX(-8px);
  }
}
@keyframes answer-incorrect {
  0%, 100% {
    transform: translateX(0);
  }
  10%, 30%, 50%, 70% {
    transform: translateX(-10px);
  }
  20%, 40%, 60% {
    transform: translateX(10px);
  }
  80% {
    transform: translateX(8px);
  }
  90% {
    transform: translateX(-8px);
  }
}
@-webkit-keyframes pulsate-fwd {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.5);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes pulsate-fwd {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.5);
  }
  100% {
    transform: scale(1);
  }
}
@-webkit-keyframes pulsate-sm-fwd {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes pulsate-sm-fwd {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@-webkit-keyframes level-align-center {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(70px);
  }
}
@keyframes level-align-center {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(70px);
  }
}
@-webkit-keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.level-align-center {
  -webkit-animation: level-align-center 1.5s cubic-bezier(0.46, -0.71, 0.49, 1.53) both;
          animation: level-align-center 1.5s cubic-bezier(0.46, -0.71, 0.49, 1.53) both;
}

.scale-in-out {
  -webkit-animation: scale-in-out-center 2s cubic-bezier(0.46, -0.71, 0.49, 1.53) both;
          animation: scale-in-out-center 2s cubic-bezier(0.46, -0.71, 0.49, 1.53) both;
}

.scale-in {
  -webkit-animation: scale-in-center 0.3s cubic-bezier(0.46, -0.71, 0.49, 1.53) both;
          animation: scale-in-center 0.3s cubic-bezier(0.46, -0.71, 0.49, 1.53) both;
}

.fade-in {
  -webkit-animation: fade-in 0.3s cubic-bezier(0.46, -0.71, 0.49, 1.53) both;
          animation: fade-in 0.3s cubic-bezier(0.46, -0.71, 0.49, 1.53) both;
}

.slide-in-up {
  -webkit-animation: slide-in 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
          animation: slide-in 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.slide-in-down {
  -webkit-animation: slide-down 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
          animation: slide-down 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.delay-1 {
  -webkit-animation-delay: 200ms;
          animation-delay: 200ms;
}

.delay-2 {
  -webkit-animation-delay: 400ms;
          animation-delay: 400ms;
}

.delay-3 {
  -webkit-animation-delay: 600ms;
          animation-delay: 600ms;
}

.delay-4 {
  -webkit-animation-delay: 800ms;
          animation-delay: 800ms;
}

.delay-5 {
  -webkit-animation-delay: 1000ms;
          animation-delay: 1000ms;
}

.delay-6 {
  -webkit-animation-delay: 1200ms;
          animation-delay: 1200ms;
}

.delay-7 {
  -webkit-animation-delay: 1400ms;
          animation-delay: 1400ms;
}

.delay-8 {
  -webkit-animation-delay: 1600ms;
          animation-delay: 1600ms;
}

.ease-bounce {
  -webkit-animation-timing-function: cubic-bezier(0.18, 1.83, 0.53, 0.88);
          animation-timing-function: cubic-bezier(0.18, 1.83, 0.53, 0.88);
}

*, ::after, ::before {
  box-sizing: border-box;
}

html {
  touch-action: manipulation;
}

html,
body {
  height: 100%;
  border-top: 0px solid transparent;
  font-size: 12px;
  background: #1d1d1d;
  color: #fff;
  text-transform: uppercase;
  font-family: "Open Sans Condensed", sans-serif;
  line-height: 1.2;
  text-align: left;
  font-weight: 400;
  margin: 0;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently
                 supported by Chrome, Opera and Firefox */
}

::-webkit-scrollbar {
  width: 0em;
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

::-webkit-scrollbar-thumb {
  background-color: darkgrey;
  outline: 1px solid slategrey;
}

* {
  -ms-overflow-style: none;
  /* IE 11 */
  scrollbar-width: none;
  /* Firefox 64 */
}

.img-fluid {
  width: 100%;
  height: min-intrinsic;
}

.lottie-anim {
  width: 100%;
  margin: 0px 0;
  padding: 0;
  border: 0;
  height: auto;
  position: relative;
}

.lottie-anim:after {
  content: "";
  display: block;
  width: 100%;
  height: 10px;
  position: absolute;
  left: 0;
  bottom: 0;
  background: #1d1d1d;
}

.appScreen .lottieWrapper {
  margin: -10px 0 -60px;
  background: transparent;
}

.img-full {
  margin: 0 -20px;
  width: calc(100% + 40px);
}

.lottie-anim svg {
  margin-bottom: -4px;
}

.content-full {
  margin: 0 -20px;
}

.topic-color {
  background: #dc3544;
}

.dark-color {
  background: #1d1d1d;
}

.desktop {
  display: none;
}

h1.rotate {
  display: none;
}

h1.rotate img {
  width: 70px;
  display: block;
  margin: 10px auto;
}

#goLive {
  position: fixed;
  top: 0;
  width: 100%;
  background: #dd3543;
  text-align: center;
  font-size: 14px;
  padding: 5px 0;
  z-index: 100;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
  left: 0;
}

/*=================================================== TYPOGRAPHY ===================================================*/
h1 {
  font-size: 30px;
}

h2 {
  font-size: 24px;
}

h3 {
  font-size: 20px;
}

h4 {
  font-size: 18px;
}

h5 {
  font-size: 16px;
}

h6 {
  font-size: 14px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Open Sans Condensed", sans-serif;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 6px;
  line-height: 1;
}

hr {
  border: 1px solid #fff;
  opacity: 0.1;
}

.light-weight {
  font-weight: 100;
}

p {
  font-size: 18px;
  line-height: 1.5;
  text-transform: none;
  letter-spacing: 1px;
  margin-top: 0;
  margin-bottom: 1rem;
}

p.muted {
  line-height: 1.2;
  color: #aaa;
}

a {
  color: inherit;
}

button, input, optgroup, select, textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  cursor: pointer;
}

button, input {
  overflow: visible;
}

/*=================================================== HELPERS ===================================================*/
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.px-1 {
  padding-left: 20px;
  padding-right: 20px;
}

.px-2 {
  padding-left: 40px;
  padding-right: 40px;
}

.px-3 {
  padding-left: 60px;
  padding-right: 60px;
}

.px-4 {
  padding-left: 80px;
  padding-right: 80px;
}

.mx-1 {
  margin-left: 20px;
  margin-right: 20px;
}

.mx-2 {
  margin-left: 40px;
  margin-right: 40px;
}

.mx-3 {
  margin-left: 60px;
  margin-right: 60px;
}

.mx-4 {
  margin-left: 80px;
  margin-right: 80px;
}

.py-1 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.py-2 {
  padding-top: 40px;
  padding-bottom: 40px;
}

.py-3 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.py-4 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.my-1 {
  margin-top: 20px;
  margin-bottom: 20px;
}

.my-2 {
  margin-top: 40px;
  margin-bottom: 40px;
}

.my-3 {
  margin-top: 60px;
  margin-bottom: 60px;
}

.my-4 {
  margin-top: 80px;
  margin-bottom: 80px;
}

.faded-80 {
  opacity: 0.8;
}

.faded-50 {
  opacity: 0.5;
}

.faded-20 {
  opacity: 0.2;
}

.card {
  background: #323232;
  width: 100%;
  padding: 10px;
  border-radius: 2px;
}

.card.features {
  display: flex;
  text-align: center;
  color: #aaa;
  justify-content: space-around;
  align-items: center;
}

.card.features p {
  width: 100%;
  margin: 0;
}

.card.features .feature {
  margin: 0 5px;
}

.card.features .feature .icon {
  font-size: 24px;
  display: block;
  text-align: center;
  padding: 0 0 5px;
  opacity: 0.2;
}

/*=================================================== BUTTONS ===================================================*/
.btn, .btn:hover {
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background-color: transparent;
  line-height: 1.5;
  border: 2px solid #fff;
  border-radius: 4px;
  color: #fff;
  text-transform: uppercase;
  font-size: 18px;
  padding: 10px 10px;
  margin: 0 0 10px;
  font-weight: bold;
  height: 50px;
  letter-spacing: 0.5px;
  min-width: 48%;
  box-shadow: none !important;
  outline: none;
  text-decoration: none;
  cursor: pointer;
}

.btn-sm, .btn-sm:hover {
  border: 1px solid #fff;
  font-size: 16px;
  line-height: 0.9;
  height: 36px;
  border-radius: 2px;
}

.btn-xs, .btn-xs:hover {
  border: 1px solid #fff;
  font-size: 12px;
  line-height: 0.9;
  height: 30px;
  border-radius: 2px;
}

.btn-success, .btn-success:hover {
  color: #fff;
  background-color: #31AC60;
  border-color: #31AC60;
}

.btn:active {
  background-color: #fff;
  color: #333;
}

.btn-block {
  display: block;
  width: 100%;
}

.btn-app, .btn-app:hover {
  padding: 8px 10px;
  border-color: #000;
  background: #000;
  height: 60px;
}

.btn-app img {
  height: 40px;
}

.btn-close {
  background: rgba(0, 0, 0, 0.2);
  border: none;
  font-size: 40px;
  line-height: 0.8;
  color: #fff;
  width: 35px;
  height: 35px;
  box-shadow: none;
  outline: none !important;
  padding: 0;
}

.btn-icon {
  background: rgba(0, 0, 0, 0);
  border: none;
  font-size: 20px;
  line-height: 0.9;
  color: #fff;
  width: 30px;
  height: 30px;
  box-shadow: none;
  outline: none !important;
}

.btn-top-right {
  position: absolute;
  top: 20px;
  right: 20px;
}

.btn-share {
  border: none !important;
}

.btn-fb {
  background-color: #3b5999 !important;
}

.btn-twitter {
  background-color: #55acee !important;
}

.btn-linkedin {
  background-color: #0077B5 !important;
}

.btn-reddit {
  background-color: #ff5700 !important;
}

.btn-pinterest {
  background-color: #bd081c !important;
}

.btn-mail {
  background-color: #fff !important;
}

.btn-fill, .btn-fill:hover {
  background-color: #fff;
  color: #333;
}

.btn-rounded, .btn-rounded:hover {
  border-radius: 40px;
}

.btn-fluid, .btn-fluid:hover {
  min-width: auto;
  padding: 10px 20px;
}

/*=================================================== GLOBAL ===================================================*/
#app {
  height: 100%;
}

.dev #app {
  height: 667px;
  width: 1000%;
  position: relative;
}

.appScreen {
  display: flex;
  overflow-x: hidden;
  z-index: 10;
  position: relative;
  height: 100%;
  flex-direction: column;
  flex-wrap: initial;
  background-color: #1d1d1d;
  overflow-y: scroll;
  /* has to be scroll, not auto */
  -webkit-overflow-scrolling: touch;
}

.appScreen.floating {
  position: absolute;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  z-index: 20;
}

.appScreen section {
  flex-grow: 1;
  width: 100%;
  position: relative;
}

.appScreen section.contentPad {
  padding-left: 20px;
  padding-right: 20px;
}

.appScreen footer {
  /*flex: 0 0 100px;*/
  display: flex;
  padding: 20px 20px 15px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  background: #1D1D1D;
  flex-shrink: 1;
  min-height: 70px;
}

.appScreen.active {
  display: flex;
  opacity: 1;
}

.panelSlider {
  background: #1D1D1D;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  transition: all 400ms cubic-bezier(0.71, 0, 0.26, 1);
  top: 0;
  left: 0;
  display: none;
}

.challenge-end .panelSlider {
  transform: translateY(80%);
}

.challenge-start .panelSlider {
  transform: translateY(25%);
}

.quiz-end .panelSlider {
  transform: translateY(calc(100% - 160px));
}

.quiz-play .panelSlider {
  transform: translateY(70px);
}

.topic .panelSlider {
  transform: translateY(calc(100% - 160px));
}

.home .panelSlider {
  transform: translateY(280px);
}

.level_icon circle {
  transition: all 0ms ease-in-out;
}

.level_icon.noAnim circle {
  transition-duration: 0ms;
}

.level_icon.smallTxt text {
  font-size: 50px;
  letter-spacing: -2px;
  transform: translate(50 75);
}

/*=================================================== HEADER ===================================================*/
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  width: 100%;
  padding: 13px 20px 10px;
  z-index: 100;
}

header.icons-only {
  justify-content: flex-end;
  padding: 0 20px;
}

header.icons-only .btn-close, header.icons-only .btn-icon {
  margin-bottom: -50px;
  margin-top: 10px;
}

header .quizProgress {
  flex-grow: 1;
  padding: 0 1em;
}

header .quizProgress h5 {
  font-weight: 100;
}

header .progressBar {
  display: flex;
  justify-content: space-between;
  flex-grow: 1;
}

header .progressBar .progressItem {
  background: rgba(0, 0, 0, 0.2);
  height: 5px;
  flex-grow: 1;
  margin: 0 1px;
}

header .progressBar .progressItem span {
  width: 100%;
  height: 5px;
  background: #fff;
  display: block;
  transform: scaleX(0);
  transform-origin: left;
}

header .progressBar .progressItem.answered span {
  opacity: 0.5;
  -webkit-animation: progressbar-in 300ms ease both;
          animation: progressbar-in 300ms ease both;
}

header .progressBar .progressItem.answered.correct span {
  opacity: 1;
}

/*=================================================== HEADER ===================================================*/
#loader {
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 100;
  width: 100%;
}

#loader p {
  color: #333;
  margin: 20px auto;
  width: 100%;
  display: block;
}

#loader p b {
  color: #fff;
  font-weight: 100;
}

#loader .logo {
  width: 200px;
  margin-top: 80px;
}

#loader .app-logo {
  width: 60%;
  display: block;
  margin: auto;
}

/*=================================================== HOME ===================================================*/
#home .btn-icon {
  font-size: 26px;
  width: 50px;
  height: 50px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 0;
  margin-bottom: -60px;
}

#home .btn-icon:last-child {
  width: 87px;
}

#home .btn-icon img {
  height: 35px;
}

#home .btn-icon.level svg {
  width: 40px;
  height: 40px;
}

#home footer .logo {
  width: 35%;
}

#home section {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-y: scroll;
  /* has to be scroll, not auto */
  -webkit-overflow-scrolling: touch;
}

#home header {
  justify-content: space-between;
  padding: 0px;
}

#home .mainFeatured.topicCard {
  display: flex;
  flex-direction: column;
  align-items: baseline;
  font-size: 1.3em;
  background-size: cover;
  justify-content: flex-end;
  height: auto;
  background-position: center;
  margin: 0;
}

#home .mainFeatured.topicCard h3 {
  text-shadow: 0 0 17px rgba(0, 0, 0, 0.4);
  font-size: 30px;
}

#home .mainFeatured.topicCard h3 small {
  display: block;
  font-weight: bold;
  font-size: 10px;
  margin-top: 5px;
  text-shadow: 0 0 7px rgba(0, 0, 0, 0.5);
  margin-bottom: 15px;
}

#home .mainFeatured.topicCard p {
  text-shadow: 0 0 7px rgba(0, 0, 0, 0.7);
  line-height: 1.2;
}

#home .mainFeatured.topicCard .topicInfo {
  padding: 150px 20px 15px;
}

#home .topicWrapper {
  /*display: flex;*/
  flex-wrap: wrap;
  padding: 20px 20px;
  background: #1D1D1D;
  flex-grow: 1;
  align-content: flex-start;
  z-index: 120;
}

#home .topicWrapper h6 {
  width: 100%;
  padding-bottom: 10px;
  color: #666;
  align-self: flex-end;
}

#home .topicWrapper .featured {
  flex: 100%;
  height: 250px;
  border: 3px solid #C5B358;
  color: #C5B358;
}

#home .topicWrapper .featured .btn {
  border-color: #C5B358;
  color: #C5B358;
  background-color: rgba(0, 0, 0, 0.3);
}

#home .topicWrapper .featured h4 {
  font-size: 24px;
  text-shadow: 0 0 17px rgba(0, 0, 0, 0.4);
}

#home .topicWrapper h4 small {
  display: block;
  font-weight: bold;
  font-size: 10px;
  margin-top: 5px;
  text-shadow: 0 0 7px rgba(0, 0, 0, 0.5);
}

#home .topicCard {
  flex: 0 0 48%;
  background: #222;
  height: 190px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  margin-bottom: 10px;
  align-items: baseline;
  border-radius: 2px;
  background-size: cover;
  background-position: top 10% center;
}

#home .wide .topicCard {
  flex: 0 0 100%;
}

#home .topicCard .topicInfo {
  flex: 1 1 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding: 15px 15px 5px;
  align-items: baseline;
  border-radius: 2px;
  width: 100%;
  position: relative;
  transition: all 300ms;
}

#home .topicCard .topicInfo .featured-icon {
  position: absolute;
  bottom: 20px;
  right: -2px;
  background: #c4b258;
  font-size: 14px;
  color: #1d1d1d;
  font-weight: bold;
  padding: 5px;
  border-radius: 3px 0 0 3px;
}

#home footer {
  padding: 0px 20px 20px;
}

/*=================================================== TOPIC ===================================================*/
#topic {
  background-size: cover;
  background-position: center;
}

#topic h1 {
  text-shadow: 0 0 17px rgba(0, 0, 0, 0.4);
}

#topic h1 small {
  display: block;
  font-weight: bold;
  font-size: 10px;
  margin-top: 5px;
  text-shadow: 0 0 7px rgba(0, 0, 0, 0.5);
  margin-bottom: 15px;
}

#topic p {
  text-shadow: 0 0 7px rgba(0, 0, 0, 0.6);
}

#topic footer.creatingFooter {
  flex: 0 0 155px;
}

#topic .topicInfo {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: left;
  padding: 20px;
  background-color: hsla(349, 64%, 35%, 0.7);
}

#topic .topicInfo p {
  font-size: 18px;
}

footer.creatingFooter {
  flex-direction: column;
  justify-content: space-evenly;
  flex: 0 0 120px;
}

footer.creatingFooter h5 {
  margin: 0;
}

footer.creatingFooter .loader {
  margin: -20px 0;
}

/*=================================================== QUIZ ===================================================*/
#quiz-play header {
  flex: 0 0 70px;
  padding: 13px 15px 10px;
}

#quiz-play .quizPoints {
  font-weight: bold;
  text-align: left;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -1px;
  width: 35px;
}

#quiz-play .quizPoints.opponent {
  text-align: right;
}

#quiz-play .quizPoints small {
  display: block;
  font-size: 11px;
  letter-spacing: 1px;
  font-weight: 100;
  line-height: 0.7;
}

#quiz-play .quizPoints.opponent small:first-child {
  margin-left: -20px;
}

#quiz-play .answered .quizPoints.player {
  -webkit-animation: pulsate-fwd 1s cubic-bezier(0.18, 0.89, 0.32, 1.28) both;
          animation: pulsate-fwd 1s cubic-bezier(0.18, 0.89, 0.32, 1.28) both;
}

#quiz-play .quizPoints.opponent.answered {
  /*animation: pulsate-fwd 1s cubic-bezier(0.18, 0.89, 0.32, 1.28) both;*/
}

#quiz-play .readyWrapper {
  text-align: center;
  background: #1d1d1d;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 0.6;
}

#quiz-play .readyWrapper h4 {
  font-size: 36px;
  margin: 0;
}

#quiz-play .readyWrapper h1 {
  font-size: 200px;
  margin: -20px 0 -10px;
}

#quiz-play .readyWrapper h5 {
  font-size: 36px;
  color: #666;
  margin: 0;
}

#quiz-play .questionWrapper {
  position: relative;
  padding: 90px 20px 20px;
  overflow: hidden;
  background: #1D1D1D;
}

#quiz-play .questionWrapper.showTrivia {
  overflow: auto;
}

#quiz-play .questionWrapper h2 {
  color: #333;
  opacity: 0;
}

#quiz-play .questionWrapper.showTrivia .triviaImg {
  -webkit-animation: slide-in 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 300ms both;
          animation: slide-in 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 300ms both;
  border-radius: 5px;
}

#quiz-play .questionWrapper.showTrivia h2 {
  -webkit-animation: slide-in 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
          animation: slide-in 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

#quiz-play .questionWrapper h1 {
  text-transform: none;
  line-height: 1.2;
}

#quiz-play .questionWrapper h3 {
  color: #31AC60;
  font-size: 3em;
  margin: 20px 0;
  display: none;
}

#quiz-play .questionWrapper.showTrivia h3 {
  -webkit-animation: slide-in 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 300ms both;
          animation: slide-in 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 300ms both;
  display: block;
}

#quiz-play .questionWrapper .triviaWrapper {
  font-size: 18px;
  line-height: 1.5;
  text-transform: none;
  letter-spacing: 1px;
  padding-bottom: 50px;
}

#quiz-play .questionWrapper.showTrivia .triviaWrapper {
  -webkit-animation: slide-in 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 500ms both;
          animation: slide-in 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 500ms both;
  display: block;
}

#quiz-play .questionWrapper .triviaWrapper p {
  margin-bottom: 40px;
  color: #ccc;
}

#quiz-play .questionWrapper .triviaWrapper img {
  width: 100%;
  border-radius: 0.5em;
}

#quiz-play .questionWrapper .questionPoints {
  position: absolute;
  top: 10px;
  color: #2fd16d;
  font-size: 14px;
  font-weight: bold;
  left: 15px;
  max-width: 45%;
}

#quiz-play .questionWrapper .questionPoints.opponent {
  right: 15px;
  left: auto;
  text-align: right;
  opacity: 0.4;
}

#quiz-play .questionWrapper .questionPoints .resultItem {
  -webkit-animation: answers-in 3s cubic-bezier(0.4, 1.71, 0.43, 0.93) both;
          animation: answers-in 3s cubic-bezier(0.4, 1.71, 0.43, 0.93) both;
}

#quiz-play .questionWrapper .questionPoints .resultItem {
  -webkit-animation: answers-in-challenge 500ms cubic-bezier(0.4, 1.71, 0.43, 0.93) both;
          animation: answers-in-challenge 500ms cubic-bezier(0.4, 1.71, 0.43, 0.93) both;
}

#quiz-play .questionWrapper .questionPoints.showTrivia .resultItem {
  -webkit-animation-duration: 300s;
          animation-duration: 300s;
}

#quiz-play .questionWrapper .questionPoints .resultItem.incorrect {
  color: #dc3544;
}

#quiz-play .answerWrapper {
  justify-content: space-evenly;
}

#quiz-play .answerWrapper .btn {
  -webkit-animation: slide-in 500ms cubic-bezier(0.18, 1.83, 0.53, 0.88) 300ms both;
          animation: slide-in 500ms cubic-bezier(0.18, 1.83, 0.53, 0.88) 300ms both;
  text-align: left;
  padding: 10px 15px;
  height: auto;
  line-height: 1.2;
}

#quiz-play .answerWrapper .text-center {
  text-align: center;
}

#quiz-play .answerWrapper .faded-50 {
  border: 2px solid #999;
  color: #999;
}

#quiz-play .answerWrapper .btn-image {
  padding: 0 10px 40%;
  background-size: cover;
  background-position: center;
  border-color: #1d1d1d;
  border-width: 5px;
  border-radius: 9px;
  width: 48%;
  margin: 1%;
  font-size: 30px;
  text-align: right;
  background-color: #000;
}

#quiz-play .answerWrapper .btn:nth-child(2) {
  -webkit-animation-delay: 450ms;
          animation-delay: 450ms;
}

#quiz-play .answerWrapper .btn:nth-child(3) {
  -webkit-animation-delay: 600ms;
          animation-delay: 600ms;
}

#quiz-play .answerWrapper .btn:nth-child(4) {
  -webkit-animation-delay: 750ms;
          animation-delay: 750ms;
}

#quiz-play .answerWrapper .btn.answered {
  border-color: #dc3544;
  background-color: #dc3544;
  -webkit-animation: answer-incorrect 0.8s cubic-bezier(0.455, 0.03, 0.515, 0.955) both;
          animation: answer-incorrect 0.8s cubic-bezier(0.455, 0.03, 0.515, 0.955) both;
}

#quiz-play .answerWrapper .btn.correct {
  border-color: #31AC60;
  color: #31AC60;
}

#quiz-play .answerWrapper .btn.answered.correct {
  border-color: #31AC60;
  color: #fff;
  background-color: #31AC60;
  -webkit-animation: answer-correct 0.15s linear 3 both;
          animation: answer-correct 0.15s linear 3 both;
}

#quiz-play .answerWrapper .btn-image.answered {
  color: #dc3544;
}

#quiz-play .answerWrapper .btn-image.answered.correct {
  color: #31AC60;
}

#quiz-play .btn-next {
  position: absolute;
  bottom: 20px;
  right: 20px;
  box-shadow: 0 0 30px 20px #111 !important;
  z-index: 100;
}

.results-single {
  text-align: center;
}

.results-single .totalMark {
  line-height: 1;
  margin-top: 30px;
  padding: 20px 0;
  background: url(/img/circle@3x.png) center no-repeat;
}

.results-single .totalMark b {
  display: block;
  font-size: 100px;
}

.results-single h3 {
  font-weight: 100;
  padding: 20px 0;
}

.results-single h1, .results-double h1 {
  font-size: 50px;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.levelUp .counter {
  display: block;
  width: 130px;
  text-align: left;
  padding: 0 10px;
}

.levelUp.completed {
  -webkit-animation: level-align-center 0.3s ease-out both;
          animation: level-align-center 0.3s ease-out both;
}

.levelUp .level_icon {
  height: 100px;
  width: 100px;
}

.results-double .levelUp .level_icon {
  height: 70px;
  width: 70px;
}

.levelUp.completed .counter {
  -webkit-animation: fade-out 0.3s ease-out both;
          animation: fade-out 0.3s ease-out both;
}

.levelUp .level {
  margin-bottom: -15px;
  height: 70px;
}

.levelUp.counting .level_icon {
  -webkit-animation: pulsate-sm-fwd 0.5s ease-in-out infinite both;
          animation: pulsate-sm-fwd 0.5s ease-in-out infinite both;
}

.results-single h1 small {
  font-size: 20px;
}

.pointsList {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.pointsList .pointsItem {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding: 10px 5px;
  display: flex;
  justify-content: space-between;
}

.pointsList .pointsItem.no-border {
  border: none;
}

.results-double .pointsList {
  border: none;
  padding-top: 20px;
}

.results-double h2 {
  font-size: 50px;
  line-height: 0.9;
}

.results-double h3 {
  margin: 0;
  font-size: 24px;
}

.results-double h2 small {
  display: block;
  font-size: 16px;
  font-weight: 100;
}

.results-double h1 {
  font-size: 50px;
  padding: 0;
  /* margin-top: -20px; */
}

.results-double p {
  color: #666;
}

.results-double .pull-up {
  margin-top: -70px;
}

/*=================================================== CHALLENGE ===================================================*/
#challenged-intro section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#challenged-intro p {
  color: #999;
  font-size: 20px;
}

#challenged-intro .app-logo {
  width: 50%;
}

.web #challenged-intro p {
  font-size: 16px;
}

#challenge-start .lottieWrapper {
  margin: -30px 0 -70px;
}

#challenge-start .contentPad {
  margin-top: -70px;
}

#challenge-start h1 {
  font-size: 36px;
}

#challenged-accept .features {
  flex-wrap: wrap;
}

#challenged-accept .lottieWrapper {
  margin-top: -70px;
  margin-bottom: -50px;
  z-index: 10;
}

#challenged-accept h1 {
  font-size: 30px;
  position: relative;
  z-index: 80;
}

#challenged-accept p {
  font-size: 24px;
  line-height: 1;
  color: #aaa;
}

#challenged-accept section.headerImg {
  margin-top: -20px;
}

.web #challenged-accept h1 {
  font-size: 24px;
}

.web #challenged-accept p {
  font-size: 18px;
}

#challenged-accept .instructions {
  text-align: center;
}

#challenged-accept .instructions p {
  font-size: 14px;
  color: #aaa;
}

#challenged-accept .instructions .feature {
  display: flex;
  justify-content: space-between;
  padding: 5px;
  font-size: 16px;
  border-bottom: 1px solid #555;
}

#challenged-accept .instructions .feature span {
  text-transform: initial;
  color: #aaa;
}

#challenged-accept .instructions .feature:last-child {
  border: none;
}

#challenged-end .lottieWrapper {
  margin: -90px 0 -20px;
  flex-grow: 0;
}

#challenged-played footer {
  padding-top: 0;
}

#challenged-played .lottieWrapper {
  margin: -50px 0 -100px;
}

#challenge-end .resultsImage {
  align-items: flex-end;
  display: flex;
}

#challenge-end footer h5 {
  width: 100%;
  text-align: center;
  padding: 15px;
}

#explainer {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: absolute;
  background: rgba(0, 0, 0, 0.45);
  text-align: center;
  z-index: 500;
  padding: 15px;
  overflow: hidden;
}

#explainer h1 {
  margin-top: 300px;
  margin-top: 45vh;
}

#explainer .explainerItem {
  position: absolute;
  display: flex;
  align-items: baseline;
  flex-direction: column;
  font-size: 16px;
}

#explainer .explainerItem.points {
  left: 15px;
  top: 70px;
  align-items: baseline;
}

#explainer .explainerItem.opponent {
  right: 15px;
  top: 70px;
  align-items: flex-end;
  text-align: right;
}

#explainer .explainerItem.opponent .arrow {
  height: 130px;
}

#explainer .explainerItem.progress {
  left: 41%;
  top: 70px;
  align-items: center;
}

#explainer .explainerItem.progress .arrow {
  height: 30px;
}

#explainer .explainerItem.question {
  left: 55px;
  top: 210px;
  flex-direction: column-reverse;
}

#explainer .explainerItem.question .arrow {
  height: 40px;
  transform: rotate(180deg);
  margin-top: 5px;
}

#explainer .explainerItem.answer {
  left: 55px;
  top: 340px;
  flex-direction: column-reverse;
}

#explainer .explainerItem.answer .arrow {
  height: 30px;
  transform: rotate(180deg);
  margin-top: 5px;
}

#explainer .explainerItem .arrow {
  width: 12px;
  background: url("/img/explainer-arrow.png") no-repeat center top;
  height: 80px;
  margin: 0 0 5px;
}

#explainer footer {
  background: transparent;
  padding: 0 20% 10%;
}

/*=================================================== INFO STATS ===================================================*/
#info section {
  overflow: auto;
  padding-bottom: 50px;
}

#info .about .quiz-logo {
  max-width: 250px;
}

#info .about p {
  line-height: 1.5;
  font-size: 14px;
}

#info .about p.links {
  display: flex;
  justify-content: space-between;
}

#info .about p.links a {
  text-decoration: none;
}

#info .stat-block {
  color: #666;
  margin: 30px 0;
}

#info .stat-block .level_icon {
  width: 150px;
  height: 150px;
}

#info .stat-block .stat-header {
  font-size: 14px;
  border-bottom: 1px solid #666;
  padding: 5px 0 5px 5px;
  color: #fff;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  text-align: right;
}

#info .stat-block .stat-header span:first-child {
  font-weight: bold;
  width: 50%;
  text-align: left;
}

#info .stat-block .stat-header span {
  min-width: 21%;
}

#info .stat-block .stat-grid-item {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  color: #ccc;
  margin: 10px 0;
}

#info .stat-block .stat-grid-item div:first-child {
  text-align: left;
  color: #aaa;
  width: 50%;
}

#info .stat-block .stat-grid-item div {
  min-width: 21%;
  text-align: right;
}

#info .stat-block h1 {
  font-size: 14px;
  border-bottom: 1px solid #666;
  padding: 5px;
  color: #fff;
  margin-bottom: 20px;
}

#info .stat-block .stat-item {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  margin: 10px 0;
  color: #aaa;
}

#info .stat-block .stat-item span {
  flex: 1;
  border-bottom: 1px dotted #666;
  top: -4px;
  display: block;
  position: relative;
  margin: 0 10px;
}

#info .stat-block .stat-item strong {
  font-weight: normal;
}

#info .stat-block .stat-item strong i {
  margin-right: 5px;
}

#info .stat-block .stat-item b {
  text-transform: none;
  font-weight: 100;
  color: #ccc;
}

#info header, #info footer {
  background: #000;
  padding-bottom: 5px;
  flex-shrink: 0;
}

#info header .btn-sm {
  min-width: initial;
  border: none;
  margin-bottom: 0;
  font-size: 20px;
}

/*=================================================== LEVEL UP ===================================================*/
#level-up .popWrapper {
  width: 90%;
  border-radius: 10px;
  overflow: hidden;
}

#level-up .lottieWrapper {
  margin: -10px 0 -30px;
}

/*=================================================== CONFIRM QUIT ===================================================*/
#confirm-quit section {
  max-width: 300px;
  background: #1d1d1d;
  flex-grow: 0;
  padding: 20px;
  border-radius: 20px;
}

#install-app .lottieWrapper {
  margin-top: -10px;
  margin-bottom: -120px;
  min-height: 395px;
}

/*=================================================== RATE APP ===================================================*/
#rate-app {
  background: rgb(0, 0, 0);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.8) 100%);
  justify-content: space-between;
  z-index: 190;
}

#rate-app section {
  flex-grow: 0;
  padding-bottom: 30px;
}

#rate-app section .img-fluid {
  margin-top: -50px;
}

/*=================================================== CHALLENGE RESULTS ===================================================*/
#challenge-feedback .contentPad {
  width: 90%;
  flex-grow: 0;
  padding: 10px 20px;
  border-radius: 10px;
  overflow: hidden;
}

#challenge-feedback .pull-up {
  margin-top: -20%;
  background-image: url(/img/win-result@2x.png);
  background-size: contain;
  padding: 46% 0 22.5%;
  font-size: 40px;
  font-weight: bold;
  background-position: center;
  background-repeat: no-repeat;
  width: calc(100% + 40px);
}

#challenged-expired .lottieWrapper {
  margin-top: -50px;
  margin-bottom: -120px;
}

#share-options section {
  background: transparent;
  flex-grow: 0;
  width: 60%;
}

#share-options section .btn {
  width: 100%;
}

#data-error {
  position: fixed;
  top: 0;
  width: 100%;
  background: #c00;
  z-index: 999;
  text-align: center;
  padding: 5px;
  font-size: 16px;
  -webkit-animation: slide-down 500ms ease-in-out both;
          animation: slide-down 500ms ease-in-out both;
  left: 0;
}

#data-refresh {
  position: absolute;
  top: 15px;
  width: 180px;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  text-align: center;
  padding: 5px;
  font-size: 13px;
  -webkit-animation: slide-down 300ms cubic-bezier(0.3, 1.62, 0.58, 1) both;
  animation: slide-down 300ms cubic-bezier(0.3, 1.62, 0.58, 1) both;
  left: calc(50% - 90px);
  border-radius: 30px;
  color: #ccc;
}

footer.global {
  width: 100%;
  position: absolute;
  bottom: 0;
  background: #111;
  text-align: center;
  padding: 5px;
  color: #aaa;
  z-index: 10;
}

.install-app.web + .logo + footer.global {
  display: block;
}

footer.global a, footer.global span {
  margin: 0 15px;
}

@font-face {
  font-family: "hrp-quiz-font";
  src: url("/font/hrp-quiz-font.eot?3927877");
  src: url("/font/hrp-quiz-font.eot?3927877#iefix") format("embedded-opentype"), url("/font/hrp-quiz-font.woff2?3927877") format("woff2"), url("/font/hrp-quiz-font.woff?3927877") format("woff"), url("/font/hrp-quiz-font.ttf?3927877") format("truetype"), url("/font/hrp-quiz-font.svg?3927877#hrp-quiz-font") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
/*
@media screen and (-webkit-min-device-pixel-ratio:0) {
  @font-face {
    font-family: 'hrp-quiz-font';
    src: url('../font/hrp-quiz-font.svg?3927877#hrp-quiz-font') format('svg');
  }
}
*/
[class^=icon-]:before, [class*=" icon-"]:before {
  font-family: "hrp-quiz-font";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: 0.2em;
  text-align: center;
  /* opacity: .8; */
  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;
  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;
  /* Animation center compensation - margins should be symmetric */
  /* remove if not needed */
  margin-left: 0.2em;
  /* you can be more comfortable with increased icons size */
  /* font-size: 120%; */
  /* Font smoothing. That was taken from TWBS */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}

.icon-help:before {
  content: "\E800";
}

/* '' */
.icon-send:before {
  content: "\E801";
}

/* '' */
.icon-play-circle:before {
  content: "\E802";
}

/* '' */
.icon-x:before {
  content: "\E803";
}

/* '' */
.icon-target:before {
  content: "\E804";
}

/* '' */
.icon-check-circle:before {
  content: "\E805";
}

/* '' */
.icon-trophy:before {
  content: "\E806";
}

/* '' */
.icon-stopwatch:before {
  content: "\E807";
}

/* '' */
.icon-hundred:before {
  content: "\E808";
}

/* '' */
.icon-playlist-add:before {
  content: "\E809";
}

/* '' */
.icon-users:before {
  content: "\E80A";
}

/* '' */
.icon-trophy-a:before {
  content: "\E80B";
}

/* '' */
.icon-external-link:before {
  content: "\E80C";
}

/* '' */
.icon-trophy-b:before {
  content: "\E80D";
}

/* '' */
.icon-gift:before {
  content: "\E80E";
}

/* '' */
.icon-mail-alt:before {
  content: "\F0E0";
}

/* '' */
.icon-gamepad:before {
  content: "\F11B";
}

/* '' */
.icon-reddit-alien:before {
  content: "\F281";
}

/* '' */
.icon-twitter:before {
  content: "\F309";
}

/* '' */
.icon-facebook:before {
  content: "\F30C";
}

/* '' */
.icon-pinterest:before {
  content: "\F312";
}

/* '' */
.icon-linkedin:before {
  content: "\F318";
}

/* '' */
@media (min-width: 576px) {
  #loader img {
    display: none !important;
  }

  #challenged-intro img {
    display: none;
  }

  html, body {
    /* background: #0a0a0a !important; */
    border-top: 1px solid transparent;
  }

  body {
    background: #222 url(/img/bg.jpg) no-repeat;
    background-size: cover;
  }

  div#app {
    width: 400px;
    height: 730px;
    border-radius: 10px;
    overflow: hidden;
    margin: 3% auto;
    box-shadow: 0 20px 30px 10px rgba(0, 0, 0, 0.5);
    position: relative;
  }

  .desktop {
    display: inherit;
  }

  .logo {
    width: 150px;
    /* margin: 20px auto; */
  }
}
@media (min-width: 576px) and (max-height: 750px) {
  div#app.web {
    height: 660px;
    margin: 1% auto;
  }
}
@media all and (max-width: 959px) and (orientation: landscape) {
  body {
    display: flex;
    align-items: center;
  }

  div#app {
    display: none;
  }

  h1.rotate {
    text-align: center;
    font-size: 16px;
    margin: 8% auto;
    display: block;
    font-weight: 100;
    color: #666;
  }
}
@media all and (min-width: 960px) and (orientation: landscape) {
  #loader img {
    display: none !important;
  }

  .logo {
    width: 250px;
    /* margin: 20px auto; */
  }

  .desktop.logo {
    margin: 20px auto;
  }

  body {
    display: flex;
    align-items: center;
  }

  h1.rotate {
    display: none;
  }
}
@media (max-width: 575.98px) {
  .install-app.web + .logo + footer.global {
    position: relative;
    line-height: 1.5;
  }

  .install-app.web + .logo + footer.global a, .install-app.web + .logo + footer.global span {
    margin: 0 5px;
  }
}