@charset "UTF-8";

#game-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

#choices, #questions {
  position: relative;
}

#questions {
  margin-top: 40px;
  display: block;
  height: auto;
}

#choices {
  border: 1px solid #000;
  text-align: center;
  padding-right: 10%;
  padding-top: 40px;
}

#feedback {
  padding-top: 30px;
  text-align: center;
}

.choice-item {
  display: inline-block;
  width: 20%;
  vertical-align: top;
  text-align: right;
  padding-bottom: 40px;
}

.question {
  display: inline-block;
  text-align: left;
  padding-right: 8%;
}

.question.answer {
  width: 20%;
}

@media (max-width: 990px) {
  .choice-item {
    font-size: .9em;
  }
}

@media (max-width: 767px) {
  .choice-item {
    font-size: .8em;
  }

  .question {
    padding-right: 4%;
  }
}

@media (max-width: 639px) {
  .choice-item {
    font-size: .7em;
    width: 25%;
    padding-bottom: 10px;
  }
}

@media (max-width: 479px) {
  .choice-item {
    width: 32%;
  }

  .question {
    font-size: .7em;
  }
}

.question .answered {
  color: blue;
}

.question .highlight {
  font-weight: bold;
}

.question .correct {
  color: green;
}

.question .incorrect {
  color: red;
}

.question.nav {
  padding-right: 0;
  vertical-align: top;
}

.question .col-head {
  font-weight: bold;
  margin-bottom: 10px;
}

.question button {
  transition: opacity 0.3s ease-in-out;
}

.feedback-wrapper {
    width: 75%;
    margin: 0 auto;
}

.motto {
  background: #d5f2c1;
  padding: 10px;
  margin-right: 10px;
  border-radius: 10px;
  width: 75%;
  text-align: right;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.motto.completed {
  font-weight: bold;
  color: green;
  text-align: center;
}

.motto, .feedback-msg {
  display: inline-block;
}