@import "https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,400i,700,700i&amp;display=swap";
div {
  box-sizing: border-box;
}
* {
  font-family:
    Source Sans Pro,
    "Helvetica",
    "Open Sans";
}
body {
  font-size: 120%;
}
h1,
h2,
h3,
h4,
h5 {
  color: #262626;
  margin: 0.75em 0 0.5em 0;
  font-weight: bold;
}
h1 {
  font-size: 48px;
}
h2 {
  font-size: 140%;
  margin-top: 0;
}
h3 {
  font-size: 120%;
}
h4 {
  font-size: 100%;
}
h5 {
  font-size: 100%;
  font-weight: normal;
  font-style: italic;
}
sup {
  vertical-align: super;
  font-size: smaller;
}
ul li {
  list-style-type: disc;
  margin: 0.25em;
  margin-left: 2em;
}
p,
li {
  line-height: 1.25;
}
p {
  margin: 0.5em 0 0.5em 0;
}
.important {
  font-weight: bold;
}
.texte_important {
  font-weight: bold;
}
.indicateur_ordinal {
  vertical-align: 0.29em;
  font-size: smaller;
}
.texte_centre {
  text-align: center;
}
.centreur {
  display: flex;
  align-items: center;
  justify-content: center;
}
.aligneur_droite {
  display: flex;
  justify-content: flex-end;
}
.aligneur_droite .bouton {
  margin-left: 4px;
}
label {
  font-size: 100%;
  margin-top: 5px;
  text-align: left;
}
.libelle {
  display: block;
}
.formulaire {
  width: 500px;
  padding: 0 38px;
  box-sizing: content-box;
  margin: auto;
}
@media (max-width: 960px) {
  .formulaire {
    width: 100%;
    padding: 0px;
  }
}
.formulaire--modifier {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 1rem;
}
.formulaire > div {
  margin-bottom: 20px;
}
.formulaire > div > label {
  margin-bottom: 5px;
}
.formulaire .note {
  margin-top: -5px;
  margin-bottom: 5px;
}
input:not([type="submit"]),
select,
textarea {
  text-align: left;
  border-color: #b8b8b8;
  border-style: solid;
  border-width: 2px;
  color: #7d7d7d;
  font-size: 120%;
  line-height: 150%;
  padding: 0px 5px;
  min-height: 30px;
  box-sizing: border-box;
  border-radius: 0;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}
input:not([type="submit"])::placeholder,
select::placeholder,
textarea::placeholder {
  color: #b8b8b8;
}
input:not([type="submit"]):focus,
select:focus,
textarea:focus {
  border-color: #00c1a3;
}
input:not([type="submit"]).en_erreur,
select.en_erreur,
textarea.en_erreur {
  border-color: #ec3039;
}
select {
  padding-left: 4px;
  padding-right: 24px;
  background: url(/images/fleche-dropdown.png) right 5px center/16px 8px
    no-repeat;
  max-width: 100%;
}
input::placeholder {
  color: #b8b8b8;
}
.erreur_seule {
  display: none;
}
.erreur_sous_titre {
  border-top: 2px solid red;
}
.erreur_sous_titre,
.erreur_sous_saisi {
  width: 100%;
  max-width: 450px;
  margin-top: 4px;
}
.erreur_sous_titre p,
.erreur_sous_saisi p {
  font-size: 16px;
  margin: 4px 0;
  color: red;
  display: flex;
  align-items: start;
}
.erreur_sous_titre p:before,
.erreur_sous_saisi p:before {
  content: "!";
  background-color: red;
  color: #fff;
  font-weight: bold;
  padding: 1px 8px;
  margin-right: 8px;
}
.pleine_largeur input:not([type="submit"]):not([type="radio"]),
.pleine_largeur select,
.pleine_largeur textarea {
  width: 100%;
}
input[type="checkbox"] {
  position: absolute;
  opacity: 0;
}
input[type="checkbox"] + label {
  display: inline-block;
  position: relative;
  padding-left: 1.5em;
  cursor: pointer;
  line-height: 1em;
  color: #7d7d7d;
}
input[type="checkbox"] + label::before {
  display: block;
  position: absolute;
  content: "";
  height: 0.75em;
  width: 0.75em;
  left: 0;
  margin: auto;
  border: 3px solid #b8b8b8;
  transition: border-color 0.25s linear;
  -webkit-transition: border-color 0.25s linear;
}
input[type="checkbox"].en_erreur + label::before {
  border-color: #ec3039;
}
input[type="checkbox"]:focus + label::before {
  border-color: #00c1a3;
}
input[type="checkbox"]:disabled + label::before {
  background: hsl(0, 0%, 87.1568627451%);
}
input[type="checkbox"]:checked + label::before {
  background: url(/images/crochet.png);
  background-size: 0.75em;
}
input[type="radio"] {
  position: absolute;
  opacity: 0;
}
input[type="radio"] + label {
  display: inline-block;
  position: relative;
  padding-left: 1.5em;
  cursor: pointer;
  line-height: 1em;
  color: #7d7d7d;
}
input[type="radio"] + label::before {
  display: block;
  position: absolute;
  content: "";
  border-radius: 100%;
  height: 0.75em;
  width: 0.75em;
  left: 0;
  margin: auto;
  border: 3px solid #b8b8b8;
  transition: border-color 0.25s linear;
  -webkit-transition: border-color 0.25s linear;
}
input[type="radio"].en_erreur + label::before {
  border-color: #ec3039;
}
input[type="radio"]:focus + label::before {
  border-color: #00c1a3;
}
input[type="radio"]:disabled + label::before {
  background: hsl(0, 0%, 87.1568627451%);
}
input[type="radio"]:checked + label::before {
  background: url(/images/rond.png);
  background-size: 0.75em;
}
select {
  background-color: #fff;
}
@media (max-width: 960px) {
  select {
    width: 100%;
  }
}
.options_segmentees {
  font-size: 0;
}
.options_segmentees input[type="radio"]:focus + label {
  border-color: #00c1a3;
  box-shadow: inset 0 0 0 2px #00c1a3;
}
.options_segmentees input[type="radio"]:hover + label {
  color: #00c1a3;
}
.options_segmentees input[type="radio"]:checked + label {
  background-color: #00c1a3;
  color: #fff;
}
.options_segmentees input[type="radio"] + label::before {
  display: none;
}
.options_segmentees input[type="radio"] + label {
  display: inline-block;
  box-sizing: border-box;
  font-size: 12pt;
  font-weight: bold;
  background: #363636;
  color: #fff;
  margin: 0;
  padding: 12px;
  vertical-align: middle;
  text-align: center;
  border: 1px solid dimgray;
  transition:
    background-color 0.25s linear,
    border-color 0.25s linear,
    box-shadow 0.25s linear;
  -webkit-transition:
    background-color 0.25s linear,
    border-color 0.25s linear,
    box-shadow 0.25s linear;
}
.options_segmentees input[type="radio"] + label:first-of-type {
  border-radius: 6px 0 0 6px;
}
.options_segmentees input[type="radio"] + label:last-of-type {
  border-radius: 0 6px 6px 0;
}
.date input,
.date select {
  width: 30%;
  height: 38px;
  margin-right: 3.7%;
  vertical-align: bottom;
}
.date .jour {
  margin-right: 0;
}
.note {
  color: #7d7d7d;
  display: block;
  font-size: 100%;
  line-height: 120%;
  margin-top: 5px;
  font-style: italic;
}
.ui-widget input,
.ui-widget select,
.ui-widget textarea,
.ui-widget button {
  font-family: Source Sans Pro;
  font-size: 1.25em;
}
.conteneur_infos {
  background-color: #f6f6f6;
  gap: 8px;
  padding: 20px;
  width: 100%;
  box-sizing: border-box;
  font-style: italic;
  margin-bottom: 12px;
  border-top: 3px;
  border-right: 0px;
  border-bottom: 0px;
  border-left: 0px;
  border-color: #0096a4;
  border-style: solid;
  border-image-width: 3px 0px 0px 0px;
  border-image: linear-gradient(to right, #0096a4, #00c1a3) 1;
}
@media (max-width: 960px) {
  .conteneur_infos {
    padding: 20px 4px;
  }
}
.conteneur_infos.moins_padding {
  padding: 15px;
}
@media (max-width: 960px) {
  .conteneur_infos.moins_padding {
    padding: 15px 4px;
  }
}
div.conteneur_infos {
  display: flex;
  align-items: center;
}
div.conteneur_infos label {
  font-style: normal;
  font-weight: bold;
}
.conteneur_infos.juste {
  margin: 0;
}
.conteneur_infos.erreur {
  border-top: 3px;
  border-right: 0px;
  border-bottom: 0px;
  border-left: 0px;
  border-color: #ec3039;
  border-style: solid;
  border-image-width: 3px 0px 0px 0px;
  border-image: linear-gradient(to right, #ec3039, #f7462e) 1;
}
.conteneur_infos.erreur .texte_important {
  color: red;
}
.conteneur_infos.avertissement {
  border-top: 3px;
  border-right: 0px;
  border-bottom: 0px;
  border-left: 0px;
  border-color: #0096a4;
  border-style: solid;
  border-image-width: 3px 0px 0px 0px;
  border-image: linear-gradient(to right, #0096a4, #00c1a3) 1;
  font-style: italic;
}
.conteneur_infos.information {
  border-top: 3px;
  border-right: 0px;
  border-bottom: 0px;
  border-left: 0px;
  border-color: #0096a4;
  border-style: solid;
  border-image-width: 3px 0px 0px 0px;
  border-image: linear-gradient(to right, #0096a4, #00c1a3) 1;
  font-style: italic;
}
.conteneur_infos .titre_infos {
  flex-grow: 1;
  flex-shrink: 1;
  font-weight: bold;
  display: block;
  margin-bottom: 0.5em;
}
.case_image.erreur_banniere,
.case_image.attention,
.case_image.alerte_general,
.case_image.date_limite_tour,
.case_image.document,
.case_image.frais {
  height: 30px;
  width: 40px;
  background-size: 25px 30px;
}
.case_image {
  flex-shrink: 0;
  flex-grow: 0;
  height: 60px;
  width: 100px;
  background-size: 60px 60px;
  background-position: center;
  background-repeat: no-repeat;
}
.case_image.admis {
  background-image: url("/images/statut-accepte.png");
}
.case_image.refuse {
  background-image: url("/images/statut-refuse.png");
}
.case_image.non_evalue {
  background-image: url("/images/statut-non-evalue.png");
}
.case_image.desiste {
  background-image: url("/images/statut-incomplet.png");
}
.case_image.etude {
  background-image: url("/images/statut-en-traitement.png");
}
.case_image.incomplet {
  background-image: url("/images/statut-incomplet.png");
}
.case_image.complet {
  background-image: url("/images/statut-accepte.png");
}
.case_image.frais {
  background-image: url("/images/alerte-frais.png");
}
.case_image.document {
  background-image: url("/images/alerte-document.png");
}
.case_image.date_limite_tour {
  background-image: url("/images/alerte-date.png");
}
.case_image.alerte_general {
  background-size: 8px 30px;
  background-image: url("/images/alerte-general.png");
}
.case_image.attention {
  background-size: 30px 30px;
  background-image: url("/images/alerte-general-2.png");
}
.case_image.erreur_banniere {
  height: 40px;
  width: 53px;
  background-size: 43px 39px;
  background-image: url("/images/alerte-banniere.png");
}
.ui-tooltip {
  padding: 0;
}
.banniere_avertissement {
  width: 100%;
  background-color: #363636;
  color: #fff;
  padding: 20px 44px;
}
@media (max-width: 960px) {
  .banniere_avertissement {
    padding: 8px;
  }
  .banniere_avertissement .case_image {
    display: none;
  }
}
.banniere_avertissement > div {
  display: inline-block;
}
.banniere_avertissement > div > * {
  display: inline-table;
  vertical-align: middle;
}
.banniere_avertissement .message_avertissement {
  text-align: center;
  font-style: italic;
  font-size: 16px;
  padding: 0 60px;
  width: calc(100% - 114px);
}
@media (max-width: 960px) {
  .banniere_avertissement .message_avertissement {
    width: 100%;
    padding: 0;
  }
}
.banniere_avertissement .titre_message_avertissement {
  display: block;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 20px;
  margin-bottom: 8px;
}
a,
#bouton_quitter {
  color: #00c1a3;
  font-weight: bold;
  text-decoration: none;
}
a:hover,
#bouton_quitter:hover {
  color: #00c1a3;
  text-decoration: underline;
}
a:focus,
#bouton_quitter:focus {
  text-decoration: underline;
  box-shadow: none;
}
.bouton,
button {
  background-color: #363636;
  color: #fff;
  border: 0;
  font-size: 1.25em;
  font-weight: bold;
  line-height: 1.25em;
  padding: 10px 20px 10px 20px;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}
.bouton:disabled,
button:disabled {
  background: #b8b8b8;
  cursor: default;
}
.bouton.inactif,
button.inactif {
  background-color: #b8b8b8;
  cursor: default;
}
.bouton.inactif:hover,
button.inactif:hover {
  background: #b8b8b8;
  cursor: default;
}
.bouton:hover,
button:hover {
  background: #0096a4;
  background: linear-gradient(to right, #0096a4 0%, #00c1a3 100%);
  color: #fff;
  text-decoration: none;
}
.bouton:focus,
button:focus {
  text-decoration: none;
  box-shadow: inset 0px 0px 0px 2px #00c1a3;
}
.en_soumission {
  background-image: url(/images/ajax-loader.gif);
  background-repeat: no-repeat;
  background-position: center;
}
.en_soumission:hover {
  background-image: url(/images/ajax-loader.gif);
  background-repeat: no-repeat;
  background-position: center;
}
.en_soumission:disabled {
  background-image: url(/images/ajax-loader.gif);
  background-repeat: no-repeat;
  background-position: center;
}
.liste_couleur_alterne li {
  list-style-type: none;
  margin-left: 0;
  padding: 5px 0;
}
.liste_couleur_alterne li:nth-child(odd) {
  background-color: #f6f6f6;
  border-top: 2px solid #ececec;
  border-bottom: 2px solid #ececec;
}
@media (max-width: 960px) {
  table.redimensionnable {
    display: block;
  }
  table.redimensionnable tbody,
  table.redimensionnable tr,
  table.redimensionnable th,
  table.redimensionnable td {
    display: block;
  }
}
table.couleur_alterne {
  width: 100%;
  margin-bottom: 1em;
}
table.couleur_alterne tr {
  height: 2em;
  border-top: 3px solid #ececec;
  border-bottom: 3px solid #ececec;
}
table.couleur_alterne td,
table.couleur_alterne th {
  vertical-align: middle;
  text-align: left;
  padding: 0.2em 0.25em;
}
table.couleur_alterne td:first-child,
table.couleur_alterne th:first-child {
  padding-left: 1em;
}
table.couleur_alterne td:last-child,
table.couleur_alterne th:last-child {
  padding-right: 1em;
}
table.couleur_alterne label {
  display: inline-block;
}
table.choix th {
  width: 10em;
}
@media (max-width: 960px) {
  table.couleur_alterne.redimensionnable tr {
    height: auto;
    border-bottom-width: 0;
    padding: 4px 0;
  }
  table.couleur_alterne.redimensionnable tr:last-child {
    border-bottom-width: 3px;
  }
  table.couleur_alterne.redimensionnable th,
  table.couleur_alterne.redimensionnable td {
    width: auto;
    padding: 4px 2px;
  }
}
.couleur_alterne > tbody > tr:nth-child(even) {
  background-color: #fff;
}
.couleur_alterne > tbody > tr:nth-child(odd) {
  background-color: #f6f6f6;
}
.ui-widget-content a.bouton,
button {
  background-color: #363636;
  color: #fff;
  border: 0;
  font-size: 1.25em;
  font-weight: bold;
  line-height: 1.25em;
  padding: 10px 20px 10px 20px;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}
.ui-widget-content a.bouton:disabled,
button:disabled {
  background: #b8b8b8;
  cursor: default;
}
.ui-widget-content a.bouton.inactif,
button.inactif {
  background-color: #b8b8b8;
  cursor: default;
}
.ui-widget-content a.bouton.inactif:hover,
button.inactif:hover {
  background: #b8b8b8;
  cursor: default;
}
.ui-widget-content a.bouton:hover,
button:hover {
  background: #0096a4;
  background: linear-gradient(to right, #0096a4 0%, #00c1a3 100%);
  color: #fff;
  text-decoration: none;
}
.ui-widget-content a.bouton:focus,
button:focus {
  text-decoration: none;
  box-shadow: inset 0px 0px 0px 2px #00c1a3;
}
.ui-dialog .ui-dialog-buttonpane button {
  background-color: #363636;
  color: #fff;
  border: 0;
  font-size: 1.25em;
  font-weight: bold;
  line-height: 1.25em;
  padding: 10px 20px 10px 20px;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}
.ui-dialog .ui-dialog-buttonpane button:disabled {
  background: #b8b8b8;
  cursor: default;
}
.ui-dialog .ui-dialog-buttonpane button.inactif {
  background-color: #b8b8b8;
  cursor: default;
}
.ui-dialog .ui-dialog-buttonpane button.inactif:hover {
  background: #b8b8b8;
  cursor: default;
}
.ui-dialog .ui-dialog-buttonpane button:hover {
  background: #0096a4;
  background: linear-gradient(to right, #0096a4 0%, #00c1a3 100%);
  color: #fff;
  text-decoration: none;
}
.ui-dialog .ui-dialog-buttonpane button:focus {
  text-decoration: none;
  box-shadow: inset 0px 0px 0px 2px #00c1a3;
}
.ui-widget-header {
  background: #009aa4;
  background: linear-gradient(to bottom, #009aa4 0%, #00b7a3 100%);
}
.ui-dialog {
  box-shadow: rgba(96, 96, 96, 0.5) 4px 4px 8px 0px;
}
.ui-widget-overlay {
  background: rgba(96, 96, 96, 0.5);
  opacity: 0.5;
}
.declencheur_info {
  display: inline-block;
  background: url(/images/bulle-off.png);
  background-size: 1em;
  width: 1em;
  height: 1em;
}
.declencheur_info:hover {
  background-image: url(/images/bulle-on.png);
}
.bulle_info {
  background: #363636;
  color: #fff;
  padding: 6px;
  box-shadow: 10px 10px 38px -10px #363636;
}
.sticky {
  top: 0;
  position: fixed;
  z-index: 900;
}
.cache {
  display: none;
}
.liste_informations {
  padding: 10px 0;
  background-color: #f6f6f6;
}
.section {
  margin-bottom: 1.25em;
}
.bloc_texte_important {
  font-weight: bold;
  padding: 20px 0px;
}
.italique {
  font-style: italic;
}
.gras {
  font-weight: bold;
}
