body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--body-bg-color);
  color: var(--body-text-color);
  font-family: var(--body-font-family);
  font-weight: var(--body-font-weight);
  font-size: 100%;
  line-height: 1.4;
  padding-top: 70px;
}

* {
  box-sizing: border-box;
}

h1:first-child,
h2:first-child,
h3:first-child {
  padding-top: 0;
  margin-top: 0;
}

ul,
ol {
  margin: 0;
  padding: 0 0 1em 1em;
}
ul:not(:first-child),
ol:not(:first-child) {
  padding-top: 0.8em;
}
ul:last-child,
ol:last-child {
  padding-bottom: 0;
}

p + ul,
p + ol {
  padding-top: 0;
}

sup,
sub {
  vertical-align: baseline;
  position: relative;
  top: -0.4em;
  padding-left: 0.1em;
}

sub {
  top: 0.4em;
}

p {
  margin: 0;
  padding: 0 0 0.8em;
}
p:last-child {
  padding-bottom: 0;
}

a {
  border-bottom: 1.5px solid;
  color: var(--body-link-color);
  text-decoration: none;
}
a:hover {
  opacity: 0.6;
}

strong {
  font-family: var(--body-bold-weight);
}

u {
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}

.block {
  display: block;
}

.nobreak {
  white-space: nowrap;
}

.clearfix {
  clear: both;
}

.img-fancybox {
  border: 0;
  display: block;
  position: relative;
  transition: all ease-in-out 0.2s;
}
.img-fancybox img {
  border: 1px solid #bcbcbc;
}
.img-fancybox:hover {
  opacity: 0.8;
}
.img-fancybox:after {
  background-color: rgba(255, 255, 255, 0.8);
  background-image: url(../img/zoom.svg);
  background-size: 20px auto;
  background-position: center center;
  background-repeat: no-repeat;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 38px;
  height: 38px;
  border-top-right-radius: 4px;
  border-bottom-left-radius: 4px;
}

/*  Tableaux */
.tg {
  border: 1px solid white;
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}
@media all and (max-width: 768px) {
  .tg {
    width: auto !important;
  }
}
@media all and (max-width: 768px) {
  .tg col {
    width: auto !important;
  }
}
.tg caption {
  font-size: 1.3em;
  font-weight: 600;
  text-align: left;
  margin: 0.25em 0;
}
.tg td {
  padding: 10px;
  border: 1px solid white;
  overflow: hidden;
  word-break: normal;
  min-width: 120px;
}
.tg th {
  background: #fff;
  color: #457892;
  font-weight: 700;
  padding: 10px;
  border: 1px solid white;
  overflow: hidden;
  word-break: normal;
  vertical-align: middle;
}
.tg th:not(:last-child) {
  border-right: 1px solid;
}
.tg .highlight {
  background: rgba(255, 255, 255, 0.25);
  font-weight: 600;
}
.tg .align-center {
  text-align: center;
}

@media all and (max-width: 768px) {
  .tg-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

.audio-player-container {
  position: absolute;
  left: 10px;
  margin-top: 2px;
}
@media all and (min-width: 769px) {
  .audio-player-container {
    left: 15px;
  }
}
.audio-player-container button {
  background-color: #60d6f7;
  background-image: url(../img/play.svg);
  background-size: 10px auto;
  background-position: center center;
  background-repeat: no-repeat;
  border: 0;
  border-radius: 100%;
  box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.16);
  cursor: pointer;
  height: 28px;
  width: 28px;
  text-indent: -9999vw;
}
.audio-player-container button.playing {
  background-image: url(../img/pause.svg);
}
.audio-player-container button:hover {
  background-color: #c7f1ff;
}

.option .audio-player-container {
  left: 79px;
  margin-top: 0;
}
@media all and (min-width: 769px) {
  .option .audio-player-container {
    left: 90px;
  }
}

.activity-audio-container {
  position: static;
  display: block;
  margin-bottom: 2em;
}
.activity-audio-container button {
  background-color: #60d6f7;
  background-image: url(../img/play.svg);
  background-size: 10px auto;
  background-position: 15px center;
  background-repeat: no-repeat;
  border: 0;
  border-radius: 3px;
  box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.16);
  cursor: pointer;
  padding: 12px 15px 12px 35px;
  height: auto;
  width: auto;
  text-transform: uppercase;
  font-size: 0.85em;
  font-weight: 700;
  font-family: inherit;
  text-indent: 0;
}

.button {
  background: var(--button-bg);
  color: var(--button-text-color);
  border: none;
  border-radius: 10px;
  box-shadow: 1px 2px 2px 0px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  display: block;
  font-family: var(--body-font-family);
  font-size: 18px;
  font-weight: bold;
  padding: 12px 15px;
  margin: 50px auto 0;
  min-width: 170px;
  text-transform: uppercase;
}
.button:hover {
  background: var(--button-bg-hover);
  color: var(--button-text-color-hover);
}

.bottom-buttons {
  text-align: center;
}
.bottom-buttons input {
  display: inline;
  margin: 5px 5px;
}

.corrige {
  background: var(--corrige-button-bg);
  border: none;
  border-radius: 10px;
  box-shadow: 1px 2px 2px 0px rgba(0, 0, 0, 0.15);
  color: var(--corrige-button-text-color);
  cursor: pointer;
  display: none;
  text-indent: 0;
  font-family: var(--body-font-family);
  font-size: 11px;
  font-weight: 600;
  padding: 6px 8px 5px;
  text-transform: uppercase;
}
.corrige:hover {
  background: var(--corrige-button-bg-hover);
  color: var(--corrige-button-text-color-hover);
}
.corrige.visible {
  display: inline;
}

.text-control .corrige {
  margin-top: 1em;
}

.textarea-control .corrige {
  margin-top: 0.5em;
}

.corrige-top {
  background-color: #e8e8e8;
  border-radius: 16px;
  border: none;
  box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  color: #5a5a5a;
  font-family: var(--body-font-family);
  font-size: 16px;
  font-weight: 600;
  padding: 7px 35px 6px 15px;
  margin-top: 25px;
  margin-bottom: 25px;
  position: relative;
}
.corrige-top:hover {
  background-color: #fff;
}
.corrige-top:after {
  background-color: var(--button-bg);
  background-image: url(../img/corrige-up.svg);
  background-size: 10px;
  background-repeat: no-repeat;
  background-position: 5px 5px;
  border-radius: 100%;
  content: "";
  display: block;
  position: absolute;
  right: 10px;
  top: 5px;
  width: 20px;
  height: 20px;
}

#top {
  background-color: var(--top-button-bg);
  background-image: url(../img/top.svg);
  background-size: 15px 9px;
  background-repeat: no-repeat;
  background-position: center 49%;
  border: 0;
  border-radius: 4px;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.25);
  display: block;
  position: fixed;
  width: 40px;
  height: 40px;
  right: 30px;
  bottom: 30px;
  z-index: 500;
}
#top:hover {
  background-color: var(--top-button-bg-hover);
  opacity: 1;
}

div[data-corrige] {
  display: none;
  border-radius: 4px;
  margin-bottom: 20px;
  padding: 20px 60px 20px 20px;
  box-shadow: 0px 1px 5px 1px rgba(0, 0, 0, 0.15);
  margin-left: 47px;
  overflow: hidden;
  position: relative;
}
div[data-corrige] p:last-of-type {
  padding-bottom: 0;
}
div[data-corrige] h2 {
  border-radius: 8px;
  margin-top: 0;
  font-size: 15px;
  padding: 6px 10px 6px 35px;
  display: inline-block;
  width: auto;
  font-weight: 400;
  position: relative;
}
div[data-corrige] h2:before {
  content: "";
  display: block;
  position: absolute;
  top: 8px;
  left: 10px;
  width: 15px;
  height: 15px;
  transform: rotate(45deg);
  border-radius: 2px;
}
div[data-corrige] h2.vert {
  border: 2px solid #89ba00;
}
div[data-corrige] h2.vert:before {
  background: #89ba00;
}
div[data-corrige] h2.jaune {
  border: 2px solid #eeab00;
}
div[data-corrige] h2.jaune:before {
  background: #eeab00;
}
div[data-corrige] h2.orange {
  border: 2px solid #dd6409;
}
div[data-corrige] h2.orange:before {
  background: #dd6409;
}
div[data-corrige] h2.rouge {
  border: 2px solid #ea2d30;
}
div[data-corrige] h2.rouge:before {
  background: #ea2d30;
}

.fermer-corrige {
  border: 0;
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 0;
  width: 40px;
  height: 40px;
  background-color: transparent;
  background-image: url(../img/fermer.svg);
  background-size: 10px;
  background-repeat: no-repeat;
  background-position: center center;
  padding: 0;
  margin: 0;
}
.fermer-corrige:hover {
  opacity: 0.5;
}

.corrige-content {
  display: flex;
  flex-wrap: wrap;
  grid-gap: 30px;
}
@media all and (min-width: 700px) {
  .corrige-content {
    flex-wrap: nowrap;
  }
}

.corrige-text {
  flex: 100% 1 1;
}

.corrige-image {
  order: 1;
  flex: 200px 0 0;
}
.corrige-image img {
  display: block;
  width: 100%;
  border-radius: 4px;
}

/* **** SUBMIT FAILED (INCOMPLETE) **** */
.submit-error {
  margin-top: 20px;
  text-align: center;
  color: #ea2d30;
  font-weight: bold;
  display: none;
}
.submit-error span:before {
  background: #ea2d30;
  color: #fff;
  content: "!";
  display: inline-block;
  height: 20px;
  width: 20px;
  text-align: center;
  border-radius: 100%;
  line-height: 20px;
  margin-right: 10px;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25);
}

/* **** FORMS **** */
.form-control {
  display: grid;
  grid-template-columns: 24px auto;
  gap: 16px;
}

.text-control {
  width: 410px;
  max-width: 100%;
  position: relative;
}
.text-control.true::after {
  border-radius: 100%;
  content: "";
  display: block;
  position: absolute;
  right: -8px;
  top: -8px;
  background-color: #31af5b;
  background-image: url(../img/answer-true.svg);
  background-size: auto 7px;
  background-repeat: no-repeat;
  background-position: center center;
  width: 16px;
  height: 16px;
}
.text-control.false::after {
  border-radius: 100%;
  content: "";
  display: block;
  position: absolute;
  right: -8px;
  top: -8px;
  background-color: #e93a47;
  background-image: url(../img/answer-false.svg);
  background-size: auto 7px;
  background-repeat: no-repeat;
  background-position: center center;
  width: 16px;
  height: 16px;
}

.textarea-control {
  width: 100%;
}

/* **** RADIO **** */
input[type=radio] {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background-color: #fff;
  margin: 0;
  width: 24px;
  height: 24px;
  border: 1px solid #bcbcbc;
  border-radius: 100%;
  display: grid;
  place-content: center;
}
input[type=radio]::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 100%;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
  background-color: #606060;
}
input[type=radio]:checked::before {
  transform: scale(1);
}
input[type=radio]:disabled::before {
  background-color: #bcbcbc;
}
input[type=radio]:checked.true {
  background-color: #31af5b;
  border-color: #31af5b;
}
input[type=radio]:checked.true::before {
  background-color: transparent;
  background-image: url(../img/answer-true.svg);
  background-size: auto;
  background-repeat: no-repeat;
  background-position: center center;
  width: 24px;
  height: 24px;
}
input[type=radio]:checked.false {
  background-color: #e93a47;
  border-color: #e93a47;
}
input[type=radio]:checked.false::before {
  background-color: transparent;
  background-image: url(../img/answer-false.svg);
  background-size: auto;
  background-repeat: no-repeat;
  background-position: center center;
  width: 24px;
  height: 24px;
}

.exam input[type=radio].true {
  background-color: #31af5b;
  border-color: #31af5b;
}
.exam input[type=radio].true::before {
  background-color: transparent;
  background-image: url(../img/answer-true.svg);
  background-size: auto;
  background-repeat: no-repeat;
  background-position: center center;
  width: 24px;
  height: 24px;
  transform: scale(1);
}

input[type=checkbox] {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background-color: #fff;
  margin: 0;
  width: 24px;
  height: 24px;
  border: 1px solid #bcbcbc;
  border-radius: 100%;
  display: grid;
  place-content: center;
  border-radius: 3px;
}
input[type=checkbox]::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 100%;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
  background-color: #606060;
}
input[type=checkbox]:checked::before {
  transform: scale(1);
}
input[type=checkbox]:disabled::before {
  background-color: #bcbcbc;
}
input[type=checkbox]:checked.true {
  background-color: #31af5b;
  border-color: #31af5b;
}
input[type=checkbox]:checked.true::before {
  background-color: transparent;
  background-image: url(../img/answer-true.svg);
  background-size: auto;
  background-repeat: no-repeat;
  background-position: center center;
  width: 24px;
  height: 24px;
}
input[type=checkbox]:checked.false {
  background-color: #e93a47;
  border-color: #e93a47;
}
input[type=checkbox]:checked.false::before {
  background-color: transparent;
  background-image: url(../img/answer-false.svg);
  background-size: auto;
  background-repeat: no-repeat;
  background-position: center center;
  width: 24px;
  height: 24px;
}
input[type=checkbox]::before {
  width: 12px;
  height: 12px;
  border-radius: 2px;
}
input[type=checkbox]:checked.true::before, input[type=checkbox]:checked.false::before {
  background-position: center 52.5%;
}

input[type=text] {
  border: 1px solid #bcbcbc;
  border-radius: 3px;
  font-family: inherit;
  padding: 10px;
  width: 100%;
  height: 36px;
  position: relative;
}
input[type=text]:disabled {
  background-color: #fff;
  color: #bcbcbc;
}

textarea {
  border: 1px solid #bcbcbc;
  border-radius: 3px;
  font-family: inherit;
  width: 100%;
  height: 200px;
  padding: 10px;
  resize: vertical;
}
textarea:disabled {
  background-color: #fff;
  color: #bcbcbc;
}

footer {
  background: #142c52;
  color: #fff;
  font-size: 13px;
  padding: 15px 0 17px;
  text-align: center;
}
footer img {
  width: 100px;
  display: block;
  margin: auto;
}

.entete-border {
  display: none;
}

#entete-activite {
  background: var(--header-bg-color);
  color: var(--header-text-color);
  padding: 60px 0 40px;
  position: relative;
  overflow-x: hidden;
  width: 100vw;
}
#entete-activite.chromefix img {
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}
#entete-activite .container {
  display: flex;
  grid-gap: 30px;
}
#entete-activite .text {
  line-height: 1.3;
  position: relative;
}
#entete-activite .text h1 {
  color: var(--h1-text-color);
  font-family: var(--h1-font-family);
  font-size: 28px;
  font-weight: normal;
  line-height: 1;
  margin: -5px 0 15px;
  position: relative;
}
@media all and (min-width: 950px) {
  #entete-activite .text h1 {
    font-size: 40px;
  }
}
#entete-activite .text h2 {
  font-family: var(--h2-font-family);
  margin: 0.8em 0 0.4em;
}
#entete-activite .text h3 {
  font-family: var(--h3-font-family);
  margin: 0.8em 0 0.4em;
}
#entete-activite .text a {
  color: var(--header-link-color);
}
#entete-activite .text img {
  max-width: 100%;
  display: block;
  margin: 0;
}
#entete-activite .text hr {
  color: rgba(255, 255, 255, 0.5);
  border-style: solid;
  width: 150px;
  text-align: left;
  margin-left: 0;
}
#entete-activite .text ol {
  list-style: none;
  counter-reset: entete-counter;
  margin-left: 1.75em;
  padding-left: 0;
}
#entete-activite .text ol li {
  counter-increment: entete-counter;
  text-indent: -0.75em;
  padding-bottom: 0.5em;
}
#entete-activite .text ol li::before {
  content: counter(entete-counter) ". ";
  font-weight: bold;
  width: 0.75em;
  display: inline-block;
}
#entete-activite .text:before {
  background: var(--header-accent-bg);
  border-radius: 100%;
  content: "";
  display: block;
  position: absolute;
  top: -90px;
  left: 0;
  width: 70px;
  height: 70px;
}
#entete-activite .text.two-thirds {
  min-height: 270px;
}
#entete-activite .image-right {
  display: none;
}
@media all and (min-width: 668px) {
  #entete-activite .image-right {
    display: block;
    width: 33%;
    flex-shrink: 0;
    position: relative;
  }
  #entete-activite .image-right:before {
    background: var(--header-accent-bg);
    border-radius: 100%;
    content: "";
    display: block;
    width: 490px;
    height: 490px;
    position: absolute;
    left: -20px;
    top: -220px;
  }
  #entete-activite .image-right img {
    width: 100%;
    border-radius: 18px;
    position: relative;
  }
}
#entete-activite #notice {
  background-color: var(--header-notice-bg);
  color: var(--header-notice-text-color);
  margin-top: 35px;
  padding: 25px 0;
}
#entete-activite #notice a {
  color: var(--header-notice-link-color);
}
#entete-activite #notice p:last-of-type {
  padding-bottom: 0;
}

#header-top {
  background: #142c52;
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.3);
  color: #fff;
  display: flex;
  height: 70px;
  align-items: center;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}
#header-top .header-container {
  max-width: 100%;
  width: 950px;
  padding: 0 20px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  font-size: 14px;
}
#header-top .header-container .header-title {
  font-weight: var(--body-bold-weight);
}
#header-top .header-container .header-subtitle {
  line-height: 120%;
}
@media all and (min-width: 768px) {
  #header-top .header-container {
    font-size: inherit;
    padding: 0 40px;
  }
}

.container {
  width: 950px;
  max-width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}
@media all and (min-width: 768px) {
  .container {
    padding: 0 40px;
  }
}

#question-containers {
  background: white;
  width: 950px;
  max-width: 100%;
  margin: 0 auto;
  padding: 40px 20px;
  position: relative;
  z-index: 10;
}
@media all and (min-width: 768px) {
  #question-containers {
    padding: 60px 40px;
  }
}

.consigne {
  display: grid;
  grid-template-columns: 32px auto;
  grid-gap: 15px;
  font-weight: var(--consigne-font-weight);
  margin-top: 35px;
  margin-bottom: 0.8em;
  line-height: 150%;
}
.consigne:first-child {
  margin-top: 0;
}
.consigne .qnumber {
  background-color: var(--question-number-bg);
  border-radius: 100%;
  color: var(--question-number-text-color);
  display: block;
  font-family: var(--question-number-font-family);
  font-size: 18px;
  text-align: center;
  width: 32px;
  height: 32px;
  padding-top: 0;
  line-height: 32px;
  transform: translateY(-4px);
}
.consigne .qnumber.unanswered {
  background-color: #ea2d30 !important;
}

.consigne-img {
  padding: 0.25em 0 1.5em 3em;
}
.consigne-img img {
  max-width: 100%;
}
.consigne-img a.img-fancybox {
  display: block;
  width: 180px;
}
.consigne-img a.img-fancybox img {
  border-radius: 8px;
  display: block;
  max-width: 100%;
  max-height: 100%;
}

.option {
  display: block;
  padding-bottom: 0.8em;
  padding-left: 47px;
}
.option > label > span {
  text-indent: -27.5px;
  padding-left: 27.5px;
}

alpha {
  color: var(--alpha-text-color);
  font-weight: var(--body-bold-weight);
  margin-right: 8px;
}

#bandeau-resultats {
  background: var(--header-bg-color);
  color: var(--header-text-color);
  display: none;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  z-index: 0;
}
#bandeau-resultats:before {
  background: var(--header-accent-bg);
  border-radius: 100%;
  content: "";
  display: block;
  position: absolute;
  top: -35px;
  left: calc(50% - 35px);
  width: 70px;
  height: 70px;
}

.resultat-points {
  padding: 55px 0 15px;
  font-family: var(--h1-font-family);
  font-size: 32px;
  font-weight: normal;
  line-height: 1;
}

.withfeedback .resultat-points {
  padding-bottom: 35px;
  text-transform: uppercase;
}

.pastille {
  background: var(--header-text-color);
  border-radius: 20px;
  color: var(--header-bg-color);
  font-weight: var(--body-bold-weight);
  padding: 1px 8px 2px;
}

.resultat-profil {
  font-size: 22px;
  padding-bottom: 35px;
}

.pastille-profil {
  background: #fff;
  color: var(--header-bg-color);
}

#profils {
  display: none;
  margin-bottom: 45px;
}

#notice-profils {
  background: #fff;
  border-radius: 4px;
  box-shadow: 1px 2px 2px 0px rgba(0, 0, 0, 0.15);
  font-size: 15px;
  margin-bottom: 30px;
  padding: 20px 25px;
}
#notice-profils p:last-of-type {
  margin-bottom: 0;
  padding-bottom: 0;
}
#notice-profils .condensed {
  font-size: 17px;
}

/*----- Accordion -----*/
#accordion,
#accordion * {
  box-sizing: border-box;
}

#accordion {
  box-shadow: 1px 2px 2px 0px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  margin: 5px 0 35px;
  overflow: hidden;
}

/*----- Section Titles -----*/
.accordion-section .accordion-section-title {
  background: #5a5a5a;
  border-bottom: 1px solid #fff;
  color: #fff;
  display: inline-block;
  transition: all linear 0.15s;
  text-decoration: none;
  padding: 15px;
  position: relative;
  width: 100%;
}
.accordion-section .accordion-section-title:first-of-type {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.accordion-section .accordion-section-title:last-of-type {
  border-bottom: none;
}
.accordion-section .accordion-section-title:last-of-type:not(.active) {
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.accordion-section .accordion-section-title .pastille-profil {
  color: #5a5a5a;
}
.accordion-section .accordion-section-title.active, .accordion-section .accordion-section-title:hover {
  background: var(--header-bg-color);
  opacity: 1;
}
.accordion-section .accordion-section-title.active .pastille-profil, .accordion-section .accordion-section-title:hover .pastille-profil {
  color: var(--header-bg-color);
}
.accordion-section .accordion-section-content {
  background-color: #fff;
  padding: 25px 20px;
  display: none;
  overflow: hidden;
}
@media all and (min-width: 768px) {
  .accordion-section .accordion-section-content {
    padding: 30px 35px;
  }
}
.accordion-section .accordion-section-content.open {
  display: flex !important;
  flex-wrap: wrap;
  grid-gap: 30px;
}
.accordion-section .accordion-section-content .image-left {
  flex-shrink: 0;
  width: 240px;
  max-width: 100%;
}
.accordion-section .accordion-section-content .image-left img {
  width: 100%;
  border-radius: 18px;
}
@media all and (min-width: 768px) {
  .accordion-section .accordion-section-content .image-left {
    width: 33%;
  }
}
.accordion-section .accordion-section-content .text.two-thirds {
  flex-basis: 380px;
  flex-grow: 1;
}
.accordion-section .accordion-section-content .type-profil {
  color: var(--header-bg-color);
  font-family: var(--h1-font-family);
  font-size: 24px;
  font-weight: normal;
  line-height: 1.1;
}

.withfeedback .accordion-section-title {
  padding-left: 50px;
}

/*----- Section Content -----*/
span[class^=maitrise-] {
  content: "";
  display: block;
  position: absolute;
  top: 16px;
  left: 15px;
  width: 20px;
  height: 20px;
  transform: rotate(45deg);
  border-radius: 3px;
  border: 2px solid #fff;
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.4);
}

.maitrise-vert {
  background: #89ba00;
}

.maitrise-jaune {
  background: #eeab00;
}

.maitrise-orange {
  background: #dd6409;
}

.pastille-profil {
  border-radius: 100%;
  display: inline-block;
  font-weight: bold;
  margin-left: 2px;
  width: 32px;
  height: 32px;
  text-align: center;
}

.accordion-section-title .pastille-profil {
  width: 26px;
  height: 26px;
  padding-top: 2px;
  transition: all linear 0.15s;
}

@media print {
  body {
    padding-top: 0;
  }
  #header-top {
    position: static;
  }
  #top {
    display: none;
  }
  #bandeau-resultats,
  #notice-profils,
  .accordion-section-content,
  .accordion-section-title,
  div[data-corrige] {
    page-break-inside: avoid;
  }
  .image-left {
    width: 33%;
    float: left;
  }
  .text-right {
    width: 67%;
    float: left;
    padding-left: 30px;
    padding-top: 0;
  }
  input[type=radio] + label:before,
  input[type=radio]:checked + label:after {
    display: none;
  }
  input[type=radio] {
    display: inline;
    position: relative;
    left: -1em;
  }
  .option {
    padding-left: 7em;
    text-indent: -2.75em;
  }
}