div.autoQuiz {
  border: 1px solid #000;
  border-radius: 5px;
  margin: 10px;
  padding-bottom: 2em;
}

.autoQuiz h1 {
  font-size: 26px;
  font-weight: bold;
  margin-top: 0px !important;
  margin-bottom: 0.5em !important;
}

.autoQuiz h2 {
  font-size: 20px;
  font-weight: bold;
  margin-top: 10px !important;
  margin-bottom: 1em !important;
}

.autoQuiz .formHeader {
  background: linear-gradient(150deg, rgba(224, 142, 11, 1) 0%, rgba(224, 172, 87, 1) 50%, rgba(227, 204, 167, 1) 100%);
  color: #fff;
  text-shadow: 0 0 3px #000, 2px 2px 1px #000;
  padding: 2em 2em 5px 2em;
}

.autoQuiz .quizFormComments {
  text-shadow: none;
  color: #000;
  font-weight: bold;
}

.autoQuiz .formQuestionInstructions {
  padding: 1em 1em 1em 1em;
  color: #000;
  background: linear-gradient(180deg, #ccc 0%, #ddd 50%, #eee 100%);
  border: 2px solid #ddd;
  margin-bottom: 2em;
}

.autoQuiz .formQuestionInstructions .quizTotal {
  font-size: 120%;
  font-weight: bold;
}

.autoQuiz .formQuestionNumber {
  font-weight: bold;
  padding: 0px 1.5em 1.5em 1.5em;
  font-size: 110%;
  text-decoration: underline;
  text-align: center;
}

.autoQuiz .quizQuestion {
  font-size: 110%;
  font-weight: bold;
}

.autoQuiz .quizQuestion.quizLabel {
  font-size: 110%;
  font-weight: bold;
  margin-bottom: 2em;
}

.autoQuiz .quizQuestionDescr {
  padding-left: 1em;
  font-size: 90%;
  font-weight: normal;
}

.autoQuiz .quizRow input,
.autoQuiz .quizRow select,
.autoQuiz .quizRow textarea {
  width: 100%;
}

.autoQuiz .quizRow {
  margin-bottom: 1em;
}

.autoQuiz#quiz-nav {
  margin-top: 2em;
}

/*
.autoQuiz .list-group-item.active,
.autoQuiz .list-group-item.active:focus,
.autoQuiz .list-group-item.active:hover {
  background: #18bc9c;
  border: 1px solid #18bc9c;
  font-weight: bold;
}
.autoQuiz .list-group-item.active:before {
  content: " » ";
}
*/




.autoQuiz .modal .modal-header {
  background: linear-gradient(150deg, rgba(224, 142, 11, 1) 0%, rgba(224, 172, 87, 1) 50%, rgba(227, 204, 167, 1) 100%);
  color: #fff;
  text-shadow: 0 0 3px #000, 2px 2px 1px #000;
  border-radius: 6px 6px 0 0;
}

.autoQuiz .modal .modal-header .title {
  font-size: 24px;
  font-weight: bold;
  border-radius: 6px;
}

.autoQuiz .modal .modal-header .quizUserResponsesSubtitle {
  font-size: 17px;
  font-weight: bold;
}

.autoQuiz .modal .modal-body {
  font-size: 20px;
  max-height: 66vh; overflow-y: auto;
}

.autoQuiz .modal .modal-body li.quizUserResponse {
  font-weight: bold;
}

.autoQuiz .modal .modal-body .quizUserResponsesTitle {
  font-weight: bold;
  margin: 1em;
}

.autoQuiz .quizRow li.list-group-item {
    border: 1px solid #bbb;
}
/* Affiche seulement le premier groupe de questions */
.groups .question-group:not(:first-of-type) {
    display: none;
}


@media print {
  .progress {
    width: 100%;
    height: 20px;
    background-color: #f5f5f5;
    border-radius: 4px !important;
    -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1) !important;
  }

  .progress-bar {
    width: 50%; /* ou toute autre valeur selon le pourcentage de progression */
    height: 100%;
    background-color: #d9edff;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15) !important;
  }


  .progress-bar-success {
    background-color: #18bc9c !important;
  }

  .progress-striped .progress-bar-success {
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent) !important;
  }

  .progress-bar-info {
    background-color: #3498db !important;
  }

  .progress-striped .progress-bar-info {
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent) !important;
  }

  .progress-bar-warning {
    background-color: #f39c12 !important;
  }

  .progress-striped .progress-bar-warning {
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent) !important;
  }

  .progress-bar-danger {
    background-color: #e74c3c !important;
  }

  .progress-striped .progress-bar-danger {
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent) !important;
  }

}