#quizzie {
    padding: 5% 0;
    /* Individual Steps/Sections */
    /* Content */
  }
  #quizzie ul {
    list-style: none;
    display: block;
    width: auto;
    margin: 2% 2%;
    padding: 2%;
    overflow: auto;
    display: none;
    /* Step Questions and Answer Options */
  }
  #quizzie ul.current {
    display: block;
  }
  #quizzie ul li {
    display: inline-block;
    float: left;
    width: 49%;
    margin-right: 2%;
    overflow: auto;
    text-align: center;
  }
  #quizzie ul li.quiz-answer {
    cursor: pointer;
  }
  #quizzie ul li.question, #quizzie ul li.results-inner {
    display: block;
    float: none;
    width: 100%;
    text-align: center;
    margin: 0;
    margin-bottom: 2%;
  }
  #quizzie ul li.results-inner {
    padding: 5% 2%;
  }
  #quizzie ul li.results-inner img {
    width: 250px;
  }
  #quizzie ul li:last-child {
    margin-right: 0;
  }
  #quizzie .question-wrap, #quizzie .answer-wrap {
    display: block;
    padding: 1%;
    margin: 1em 10%;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
  }
  #quizzie .answer-wrap {
    background: white;
    -moz-transition: background-color 0.5s ease;
    -o-transition: background-color 0.5s ease;
    -webkit-transition: background-color 0.5s ease;
    transition: background-color 0.5s ease;
  }
  #quizzie .answer-wrap:hover {
    background: #f0f0f0;
  }
  