/*
.progress-bar-variant(@color) {
  background-color: @color;
  .progress-striped & {
    #gradient > .striped();
  }
}
*/
/*
.container-fixed() {
  margin-right: auto;
  margin-left: auto;
  padding-left:  (@grid-gutter-width / 2);
  padding-right: (@grid-gutter-width / 2);
  .clearfix();
}
*/
/*
.form-control-validation(@text-color: #555; @border-color: #ccc; @background-color: #f5f5f5) {
  // Color the label and help text
  .help-block,
  .control-label,
  .radio,
  .checkbox,
  .radio-inline,
  .checkbox-inline  {
    color: @text-color;
  }
  // Set the border and box shadow on specific inputs to match
  .form-control {
    border-color: @border-color;
    //.box-shadow(inset 0 1px 1px rgba(0,0,0,.075)); // Redeclare so transitions work
    &:focus {
      border-color: darken(@border-color, 10%);
      @shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 6px lighten(@border-color, 20%);
      @shadow: 0 0 3px lighten(@border-color, 20%);
      //.box-shadow(@shadow);
    }
  }
  // Set validation states also for addons
  .input-group-addon {
    color            : @text-color;
    border-color     : @border-color;
    background-color : @background-color;
  }
}
*/
#modalQuiz .form-group.focused {
  background-color: transparent;
}
.quiz-wrapper .quiz-questions {
  counter-reset: number;
}
.quiz-wrapper .quiz-questions .list-group-item {
  counter-increment: number;
}
.quiz-wrapper .quiz-questions .list-group-item .col-number {
  text-align: center;
  font-weight: 500;
}
.quiz-wrapper .quiz-questions .list-group-item .col-number:before {
  content: counter(number) " ";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background-color: #E4E6EF;
  font-size: 11px;
}
.quiz-wrapper .quiz-questions .list-group-item .col-question {
  font-weight: 500;
}
.quiz-wrapper .quiz-questions .list-group-item .col-question .answer {
  font-weight: 400;
  color: #A1A5B7;
  font-size: 12px;
}
/*# sourceMappingURL=custom.css.map */