.wvd15_quiz {
  position: relative;

  .quiz_stepnav {
    position: absolute;
    width: 100%;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;

    li {
      list-style-type: none;
      counter-increment: item;
      position: relative;
      display: inline-block;
      font-weight: bold;
      width: 80px;
      text-align: center;
      color: $gray_dark;
      padding-top: 40px;
      font-size: 20px;
      transition: all .15s;

      &:before {
        content: counter(item);
        display: inline-block;
        font-weight: bold;
        position: absolute;
        margin-top: -65px;
        left: 15px;

        line-height: 50px;
        width: 50px;
        background: $gray_light;
        border-radius: 50%;
        color: $orange;
        text-align: center;
        transition: all .15s;
      }

      &.active {
        color: $orange;

        &:before {
          color: $text_white;
          background: $black;
        }
      }
    }
  }

  .step {
    display: none;

    &.active {
      display: block;
    }
  }

  .questions {
    position: absolute;

    .question {
      position: absolute;
      transition: all .4s;

      &.fade {
        opacity: 0;
      }
    }

    h2 {
      font-weight: normal;
      font-size: 40px;
      padding: 0;
      color: $text;
    }

    .answers {
      display: flex;
      flex-flow: row nowrap;
      justify-content: space-between;

      button {
        width: 30%;
        height: 120px;
        padding: 0 20px;
      }
    }
  }

  .answer {
    margin: 0 auto;
    transform: scale(0);
    transition: all .4s;
    font-size: 40px;

    h3 {
      font-weight: normal;
    }

    &.show {
      transform: scale(1);
    }
  }

  button,
  .extra_link a {
    cursor: pointer;

    background: $orange;
    border-radius: 4px;
    font-weight: bold;
    color: $text_white;
    text-align: center;
    padding: 20px 40px;
    font-size: 25px;
    margin-top: 80px;

    transition: all .15s;

    &:hover {
      background: $black;
    }

    &.wrong {
      background: $gray_dark;
    }

    &.right {
      background: $blue;
    }
  }

  // letzte Folie: normaler Content
  .result {
    transition: all .4s;
    transform: scale(0);
    padding-top: 80px !important;

    &.show {
      transform: scale(1);
    }
  }

  .text_content {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;

    .img_container {
      width: 40%;
      margin: 0;
    }

    .richtext {
      font-size: 25px;
      text-align: left;
      width: 55%;
    }
  }

  .extra_link {
    padding-top: 50px;

    a {
      text-decoration: none;
    }
  }

  .step,
  .result {
    padding: 120px 0;
  }
}