* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-size: 16px;
  background: #F7FAFD;
  height: 100%;
}

@media (max-width: 767px) {
  html, body {
    font-size: 14px;
  }
}
body {
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #232426;
}
body.no-scroll {
  overflow: hidden;
}

h1, h2, h3, ul, ol, p {
  margin: 0;
  padding: 0;
}

h1 {
  font-size: 2.5rem;
  line-height: 1.1;
  color: #006BB6;
  margin: 0 0 2rem;
  padding: 0 0 0 1.5rem;
  position: relative;
}
h1.small {
  font-size: 1.6rem;
}
h1:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  border-left: solid 6px #00A2E0;
}

@media (max-width: 767px) {
  h1 {
    font-size: 1.6rem;
  }
}
h2 {
  font-size: 1.875rem;
  line-height: 1.2;
  color: #00A2E0;
  margin: 0 0 1.5rem;
}

@media (max-width: 767px) {
  h2 {
    font-size: 1.3rem;
  }
}
h3 {
  font-size: 1rem;
  color: #F5A52C;
}

p {
  margin: 0 0 2rem;
}

@media (max-width: 767px) {
  p {
    margin: 0 0 1.5rem;
  }
}
a {
  color: #232426;
  transition: color 0.3s ease;
}

ul, ol {
  margin: 0 0 2rem;
}

@media (max-width: 767px) {
  ul, ol {
    margin: 0 0 1.5rem;
  }
}
ol {
  counter-reset: ol;
}
ol li {
  list-style: none;
  counter-increment: ol;
  margin: 0 0 0.25rem;
  padding: 0 0 0 1.5rem;
  position: relative;
}
ol li:before {
  content: counter(ol) ". ";
  position: absolute;
  top: 0;
  left: 0;
  font-weight: 700;
  color: #006BB6;
}

/* STRUCTURE */
main {
  padding: 2rem 0 2rem 20rem;
  min-height: calc(100% - 3rem);
}

@media (min-width: 1920px) {
  main {
    padding: 2rem 0;
  }
}
@media (max-width: 767px) {
  main {
    padding: 2rem 0.5rem;
  }
}
aside {
  position: fixed;
  z-index: 2;
  top: 1rem;
  left: 1rem;
  width: 18rem;
  height: calc(100vh - 2rem);
  padding: 2rem 0;
  background: linear-gradient(to bottom, #00A2E0, #006BB6 30%);
  color: white;
  border-radius: 1rem;
  overflow: auto;
}
aside.smash {
  width: 5rem;
}
aside.smash nav ul li {
  width: 2rem;
  height: 2rem;
  margin: 0 auto 2rem;
  padding: 0;
  overflow: hidden;
}
aside.smash nav .reduire {
  width: 2rem;
  height: 2rem;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
}
aside.smash nav .reduire:before {
  transform: rotate(180deg);
}
aside.smash nav .reduire span {
  display: none;
}
aside.smash .logo {
  background: no-repeat center/auto 100% url(../images/logo-smash.svg);
}
aside.smash .profil {
  height: 3.5rem;
  overflow: hidden;
  margin: 0 0 2rem;
}
aside nav ul li {
  margin: 0 0 2rem;
  padding: 0 2rem;
}
aside nav ul li.current-menu-item.menu-accueil a:before, aside nav ul li:hover.menu-accueil a:before {
  background: no-repeat center/100% url(../images/menu-accueil-on.svg);
}
aside nav ul li.current-menu-item.menu-videos a:before, aside nav ul li:hover.menu-videos a:before {
  background: no-repeat center/100% url(../images/menu-videos-on.svg);
}
aside nav ul li.current-menu-item.menu-fichiers a:before, aside nav ul li:hover.menu-fichiers a:before {
  background: no-repeat center/100% url(../images/menu-fichiers-on.svg);
}
aside nav ul li.current-menu-item.menu-intervenants a:before, aside nav ul li:hover.menu-intervenants a:before {
  background: no-repeat center/100% url(../images/menu-intervenants-on.svg);
}
aside nav ul li.current-menu-item.menu-contact a:before, aside nav ul li:hover.menu-contact a:before {
  background: no-repeat center/100% url(../images/menu-contact-on.svg);
}
aside nav ul li.current-menu-item.menu-profil a:before, aside nav ul li:hover.menu-profil a:before {
  background: no-repeat center/100% url(../images/menu-profil-on.svg);
}
aside nav ul li.current-menu-item.menu-deconnexion a:before, aside nav ul li:hover.menu-deconnexion a:before {
  background: no-repeat center/100% url(../images/menu-deconnexion-on.svg);
}
aside nav ul li.current-menu-item a, aside nav ul li:hover a {
  color: #F5A52C;
}
aside nav ul li.menu-accueil a:before {
  background: no-repeat center/100% url(../images/menu-accueil.svg);
}
aside nav ul li.menu-videos a:before {
  background: no-repeat center/100% url(../images/menu-videos.svg);
}
aside nav ul li.menu-fichiers a:before {
  background: no-repeat center/100% url(../images/menu-fichiers.svg);
}
aside nav ul li.menu-intervenants a:before {
  background: no-repeat center/100% url(../images/menu-intervenants.svg);
}
aside nav ul li.menu-contact a:before {
  background: no-repeat center/100% url(../images/menu-contact.svg);
}
aside nav ul li.menu-profil a:before {
  background: no-repeat center/100% url(../images/menu-profil.svg);
}
aside nav ul li.menu-deconnexion a:before {
  background: no-repeat center/100% url(../images/menu-deconnexion.svg);
}
aside nav a, aside nav .reduire {
  display: block;
  color: white;
  font-weight: 500;
  line-height: 2rem;
  text-decoration: none;
  padding: 0 0 0 3rem;
  position: relative;
  transition: color 0.3s ease;
}
aside nav a:before, aside nav .reduire:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2rem;
  aspect-ratio: 1;
  background: red;
  transition: background 0.3s ease;
}
aside nav .reduire {
  margin: 0 2rem;
  font-weight: 400;
  cursor: pointer;
}
aside nav .reduire:before {
  background: no-repeat center/100% url(../images/reduire.svg);
}
aside nav .reduire:hover {
  color: white;
}
aside nav .reduire:hover:before {
  background: no-repeat center/100% url(../images/reduire-on.svg);
}
aside .logo {
  text-align: center;
  margin: 0 0 4rem;
  width: 100%;
  height: 6rem;
  background: no-repeat center/auto 100% url(../images/logo-blanc.svg);
}
aside .profil {
  text-align: center;
  line-height: 1.3;
}
aside .profil span {
  display: block;
  margin: 0 auto 0.75rem;
  padding: 0.05rem 0 0;
  width: 3.5rem;
  aspect-ratio: 1;
  background: #FAD295;
  border: solid 0.3rem white;
  text-align: center;
  line-height: 2.9rem;
  border-radius: 50%;
  color: #006BB6;
  font-weight: 700;
}
aside .burger {
  display: none;
}

@media (max-width: 767px) {
  aside {
    top: inherit;
    bottom: 0.5rem;
    left: 0.5rem;
    right: 0.5rem;
    width: calc(100% - 1rem);
    height: 4rem;
    background: linear-gradient(to bottom, #00A2E0, #006BB6);
    transition: height 0.3s ease, background 0.3s ease;
  }
  aside.open {
    height: calc(100% - 1rem);
  }
  aside.open nav {
    opacity: 1;
    transform: none;
    transition: opacity 0.3s ease 0.2s, transform 0.3s ease 0.2s;
  }
  aside.open .profil {
    opacity: 1;
    transform: none;
    transition: opacity 0.3s ease 0s, transform 0.3s ease 0s;
  }
  aside nav {
    opacity: 0;
    transform: translateY(2rem);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  aside nav .reduire {
    display: none;
  }
  aside .logo {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    margin: 0;
    height: 2rem;
    background: no-repeat center left/auto 100% url(../images/logo-mobile.svg);
  }
  aside .profil {
    margin: 0;
    opacity: 0;
    transform: translateY(2rem);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  aside .burger {
    display: block;
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    background: no-repeat center/100% url(../images/burger.svg);
    width: 2rem;
    aspect-ratio: 1;
  }
}
footer {
  position: sticky;
  padding: 0 0 0 20rem;
}
footer .wrapper {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  font-size: 0.7rem;
  font-weight: 500;
  color: #006BB6;
  border-top: solid 1px #006BB6;
}
footer .wrapper ul {
  display: flex;
  margin: 0;
}
footer .wrapper ul li {
  list-style: none;
  margin: 0 1rem 0 0;
  position: relative;
}
footer .wrapper ul li:last-child {
  margin: 0;
}
footer .wrapper ul li:last-child:after {
  content: none;
}
footer .wrapper ul li:after {
  content: "";
  position: absolute;
  top: 0.1rem;
  right: -0.5rem;
  bottom: 0.1rem;
  border-right: solid 1px #006BB6;
}
footer .wrapper ul li a {
  color: #006BB6;
  text-decoration: none;
}
footer .wrapper ul li a:hover {
  color: #00A2E0;
}
footer .wrapper p {
  margin: 0;
}

@media (min-width: 1920px) {
  footer {
    padding: 0;
  }
}
@media (max-width: 992px) {
  footer .wrapper {
    flex-wrap: wrap;
  }
  footer .wrapper ul li:after {
    content: none;
  }
}
@media (max-width: 767px) {
  footer {
    padding: 0 0 6rem;
  }
}
form label {
  color: #006BB6;
  font-weight: 600;
  display: block;
  margin: 0 0 0.5rem;
  transition: color 0.3s ease;
}
form label sup {
  color: #F5A52C;
}
form fieldset {
  padding: 0;
  margin: 0;
  border: 0;
}
form fieldset + fieldset {
  margin: 2rem 0 0;
}
form input[type=checkbox] {
  opacity: 0;
  position: absolute;
}
form input[type=checkbox]:checked + label:after {
  opacity: 1;
}
form input[type=checkbox] + label {
  font-size: 0.85rem;
  font-weight: 400;
  position: relative;
  padding: 0 0 0 1.75rem;
}
form input[type=checkbox] + label:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1rem;
  aspect-ratio: 1;
  border-radius: 0.25rem;
  background: white;
  border: solid 1px #006BB6;
}
form input[type=checkbox] + label:after {
  content: "";
  position: absolute;
  top: 3px;
  left: 6px;
  border: solid #006BB6;
  border-width: 0 2px 2px 0;
  padding: 4px 2px;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.3s ease;
}
form .form-group {
  margin: 0 0 1rem;
  position: relative;
}
form .form-group.error {
  color: #cc033b;
}
form .form-group.error.accept p a {
  color: #cc033b;
}
form .form-group.error.accept:before {
  content: none;
}
form .form-group.error:before {
  content: "";
  position: absolute;
  top: 2.5rem;
  right: 0.5rem;
  width: 1.5rem;
  aspect-ratio: 1;
  background: no-repeat center/100% url(../images/erreur.svg);
}
form .form-group.error label {
  color: #cc033b;
}
form .form-group.error .form-control, form .form-group.error .form-control-textarea {
  border-color: #cc033b;
}
form .form-group.error .form-control + span, form .form-group.error .form-control-textarea + span {
  display: block;
}
form .accept.accepted p {
  padding: 0 0 0 1rem;
}
form .accept.accepted p:before {
  content: "";
}
form .accept p {
  position: relative;
  transition: color 0.3s ease;
}
form .accept p:before {
  content: none;
  position: absolute;
  top: 5px;
  left: 0px;
  border: solid #006BB6;
  border-width: 0 2px 2px 0;
  padding: 5px 2px;
  transform: rotate(45deg);
}
form .regles {
  font-size: 0.85rem;
  margin: 1rem 0 2rem;
}
form .regles ul {
  margin: 0 0 -1rem;
}
form .regles ul li {
  list-style: none;
  position: relative;
  padding: 0 0 0 1.2rem;
  opacity: 0.6;
}
form .regles ul li.checked {
  opacity: 1;
}
form .regles ul li.checked:after {
  content: "";
}
form .regles ul li:before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 11px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: solid 1px #006BB6;
}
form .regles ul li:after {
  content: none;
  position: absolute;
  top: 7px;
  left: 5px;
  border: solid #006BB6;
  border-width: 0 1px 1px 0;
  padding: 2px 1px;
  transform: rotate(45deg);
}
form .select {
  position: relative;
}
form .select:before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0.75rem;
  right: 1rem;
  border: solid #B9C3C9;
  border-width: 0 2px 2px 0;
  padding: 4px;
  transform: rotate(45deg);
}
form .select .form-control {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-color: #B9C3C9;
  font-size: 0.85rem;
  font-weight: 600;
  color: #18364E;
}
form .form-control, form .form-control-textarea {
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #006BB6;
  width: 100%;
  background: white;
  border: solid 1px #006BB6;
  border-radius: 0.5rem;
  padding: 0 1rem;
  height: 2.5rem;
  line-height: 2.5rem;
  transition: border 0.3s ease;
}
form .form-control[readonly], form .form-control-textarea[readonly] {
  background: #D9E9F4;
}
form .form-control:focus, form .form-control-textarea:focus {
  outline: 0;
  border-color: #F5A52C;
}
form .form-control::-moz-placeholder, form .form-control-textarea::-moz-placeholder {
  color: #C4C2BF;
}
form .form-control::placeholder, form .form-control-textarea::placeholder {
  color: #C4C2BF;
}
form .form-control + span, form .form-control-textarea + span {
  display: none;
  color: #cc033b;
  font-size: 0.85rem;
  padding: 0.25rem 0 0;
}
form .form-control-textarea {
  padding: 0.75rem 1rem;
  height: 20rem;
  line-height: 1.3;
  resize: none;
}
form .msg-error, form .msg-success {
  display: none;
  color: #cc033b;
  font-weight: 600;
  margin: 1rem 0 0;
}
form .msg-success {
  color: #74B200;
}

/* CLASSES */
/* GENERIQUE */
.generique strong {
  color: #006BB6;
}
.generique ul li {
  position: relative;
  list-style: none;
  padding: 0 0 0 1rem;
  margin: 0 0 1rem 2rem;
}
.generique ul li:before {
  content: "";
  position: absolute;
  top: 0.6rem;
  left: 0;
  width: 0.35rem;
  aspect-ratio: 1;
  background: #006BB6;
  border-radius: 50%;
}
.generique a {
  color: #006BB6;
}
.generique a:hover {
  color: #00A2E0;
}
.generique figure img {
  border-radius: 1.25rem;
}
.generique figure + figure {
  margin: 0 0 0 1rem;
}
.generique .professeur .titre {
  margin: 0 0 0 1rem;
}
.generique .professeur .titre:before {
  content: none;
}
.generique .professeur .titre:after {
  left: -1rem;
}
.generique .auto > div {
  flex-basis: auto !important;
  flex-grow: 0 !important;
}

/* TEXT */
.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.bleu-fonce {
  color: #006BB6;
}

.bleu-clair {
  color: #00A2E0;
}
.bleu-clair strong {
  color: #00A2E0;
}

/* DISPLAY */
.flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* IMAGE */
.image {
  position: relative;
}
.image img, .image video {
  display: block;
  width: 100%;
  height: auto;
}
.image .time {
  position: absolute;
  z-index: 1;
  bottom: 1rem;
  right: 1rem;
  background: #002E4F;
  color: white;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 0.25rem;
  padding: 0.1rem 0.25rem;
}
.image .professeur {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 1rem 2rem;
  width: 26rem;
  max-width: 100%;
}
.image .professeur:after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(2rem);
          backdrop-filter: blur(2rem);
}
.image .professeur .wrapper {
  position: relative;
  z-index: 1;
  padding: 0;
}
.image .professeur .wrapper p {
  margin: 0;
}

@media (max-width: 767px) {
  .image .professeur {
    position: relative;
  }
}
/* BOUTONS */
.btn {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: #F5A52C;
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: white;
  text-decoration: none;
  border-radius: 0.5rem;
  border: solid 1px #F5A52C;
  cursor: pointer;
  transition: background 0.3s ease;
}
.btn.small {
  font-size: 0.9rem;
  padding: 0.25rem 1rem;
}
.btn:hover {
  background: #DB9327;
}

.btn-secondary {
  background: #006BB6;
  color: white;
  border-color: #006BB6;
}
.btn-secondary:hover {
  background: #005C99;
}

.btn-tertiary {
  background: transparent;
  color: #006BB6;
  border-color: #006BB6;
}
.btn-tertiary:hover {
  background: white;
}

/* CHIFFRES */
.chiffres {
  display: flex;
  margin: 0 calc(var(--bs-gutter-x) * -1) 2rem;
}
.chiffres .chiffre {
  font-size: 0.85rem;
  font-weight: 600;
  color: #006BB6;
  width: 33.3333333333%;
  padding: 1rem 1rem 1.5rem 0;
  margin: 0 var(--bs-gutter-x);
  background: white;
  border-radius: 1.25rem;
  box-shadow: 0 0 1rem rgba(0, 107, 182, 0.15);
}
.chiffres .chiffre.video strong:before {
  background: no-repeat center/100% url(../images/videos-a-visionner.svg);
}
.chiffres .chiffre.fichier strong:before {
  background: no-repeat center/100% url(../images/fichiers-a-consulter.svg);
}
.chiffres .chiffre.heure strong:before {
  background: no-repeat center/100% url(../images/heures-de-contenus.svg);
}
.chiffres .chiffre strong {
  display: block;
  font-size: 2.5rem;
  padding: 0 0 0 5rem;
  position: relative;
}
.chiffres .chiffre strong:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 2rem;
  width: 2rem;
  aspect-ratio: 1;
  background: red;
}
.chiffres .chiffre span {
  display: block;
  padding: 0 0 0 5rem;
}

@media (max-width: 991px) {
  .chiffres {
    flex-wrap: wrap;
    margin: 0;
  }
  .chiffres .chiffre {
    width: 100%;
    margin: 0 0 2rem;
  }
}
@media (max-width: 767px) {
  .chiffres {
    margin: 0 0 2rem;
  }
  .chiffres .chiffre {
    margin: 0 0 1.5rem;
  }
  .chiffres .chiffre strong {
    font-size: 1.8rem;
  }
}
/* FILTRES */
.filtres {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  font-weight: 600;
  background: white;
  border-radius: 0.5rem;
  box-shadow: 0 0 1rem rgba(0, 107, 182, 0.15);
  padding: 0.5rem 1rem;
  margin: 0 0 2rem;
}
.filtres form {
  margin: 0;
  display: flex;
  align-items: center;
  position: relative;
}
.filtres form span {
  height: 2rem;
  line-height: 2rem;
  color: #18364E;
  text-transform: uppercase;
  margin: 0 3rem 0 0;
  padding: 0 0 0 3rem;
  position: relative;
}
.filtres form span:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2rem;
  aspect-ratio: 1;
  background: no-repeat center/100% url(../images/filtrer.svg);
}
.filtres form .select {
  width: 15rem;
  margin: 0 1rem 0 0;
}
.filtres a {
  color: #B9C3C9;
  text-decoration: underline;
}
.filtres a:hover {
  color: #006BB6;
}

@media (max-width: 992px) {
  .filtres {
    flex-direction: column;
  }
  .filtres .flex {
    width: 100%;
  }
  .filtres form {
    flex-direction: column;
    width: 100%;
  }
  .filtres form span {
    width: 100%;
    margin: 0 0 0.5rem;
  }
  .filtres form .select {
    width: 100%;
    margin: 0 0 0.5rem;
  }
  .filtres .reset {
    width: 100%;
    display: block;
    text-align: right;
  }
}
/* PAS DE RESULTATS */
.no-results {
  margin: 2rem 0 0;
  text-align: center;
}

/* CARD */
.card {
  font-size: 0.85rem;
  color: #006BB6;
  background: white;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 0 1rem rgba(0, 107, 182, 0.15);
  margin: 0 0 var(--bs-gutter-x);
}
.card.alone {
  padding-top: 1rem;
}
.card.fichier .titre {
  margin: 0 0 0.75rem;
}
.card a {
  text-decoration: none;
}
.card .wrapper {
  padding: 1rem;
  color: #006BB6;
}
.card .wrapper > p {
  margin: 0 0 1rem;
}
.card .footer {
  font-size: 0.9rem;
}
.card .footer.inline {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.card .footer.inline .professeurs {
  display: flex;
  align-items: center;
}
.card .footer.inline .poids {
  display: flex;
  align-items: center;
  color: #F5A52C;
}
.card .footer.inline .poids a {
  display: block;
  width: 2rem;
  aspect-ratio: 1;
  margin: 0 0 0 1rem;
  background: no-repeat center/100% url(../images/telecharger.svg);
  transition: background 0.3s ease;
}
.card .footer.inline .poids a:hover {
  background: no-repeat center/100% url(../images/telecharger-on.svg);
}
.card .footer .professeurs {
  color: #006BB6;
}
.card .footer .professeurs p {
  position: relative;
  padding: 0 2rem 0 1.5rem;
  background: no-repeat center left/1rem url(../images/professeur.svg);
}
.card .footer p {
  margin: 0;
}

/* TITRE */
.titre {
  font-size: 1rem;
  color: #00A2E0;
  font-weight: 700;
  margin: 0 0 1.5rem;
  padding: 0 0 0 0.75rem;
  position: relative;
}
.titre:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  border-left: solid 4px #00A2E0;
}

/* TAG */
.tag {
  display: inline-block;
  background: var(--bg);
  color: white;
  font-size: 0.7rem;
  font-weight: 400;
  text-transform: uppercase;
  border-radius: 0 1rem 1rem 0;
  padding: 0.25rem 1rem;
}

/* PROFESSEUR */
.professeur {
  font-size: 0.9rem;
  color: #006BB6;
}
.professeur .titre {
  margin: 0 0 1rem 1.8rem;
}
.professeur .titre:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -1.8rem;
  width: 1.3rem;
  aspect-ratio: 1;
  background: no-repeat center left/1.3rem url(../images/professeur.svg);
}
.professeur .titre + p {
  padding: 0 0 0 1.8rem;
}

/* PAGINATION */
.pagination ul {
  display: flex;
  justify-content: center;
}
.pagination ul li {
  list-style: none;
}
.pagination ul li.active a {
  background: #006BB6;
  border-color: #00A2E0;
  color: white;
}
.pagination ul li a {
  display: block;
  margin: 0 0.25rem;
  width: 2rem;
  line-height: 1.5rem;
  aspect-ratio: 1;
  border: solid 0.25rem transparent;
  border-radius: 50%;
  color: #006BB6;
  text-align: center;
  font-size: 0.85rem;
  text-decoration: none;
  transition: border 0.3s ease, background 0.3s ease;
}
.pagination ul li a:hover {
  border-color: #00A2E0;
}

/* DETAIL */
.detail {
  background: white;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 0 1rem rgba(0, 107, 182, 0.15);
}
.detail.video {
  font-size: 0.9rem;
}
.detail.video h2 {
  font-size: 1rem;
  color: #00A2E0;
  font-weight: 700;
  margin: 0 0 1.5rem;
  padding: 0 0 0 0.75rem;
  position: relative;
  font-size: 1.375rem;
  margin: 1.5rem 0;
}
.detail.video h2:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  border-left: solid 4px #00A2E0;
}
.detail.intervenant ul, .detail.intervenant ol {
  margin: 0 0 1.5rem 1.5rem;
}
.detail.intervenant ul li, .detail.intervenant ol li {
  margin: 0 0 0.5rem;
}
.detail.intervenant .image {
  margin: 0 0 2rem;
}
.detail .wrapper {
  padding: 0 10%;
}
.detail .chapitres p {
  background: rgba(245, 165, 44, 0.1);
  color: #F5A52C;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  margin: 0 0 1.5rem;
  padding: 0.5rem 1rem;
  border-radius: 0 1rem 1rem 0;
}
.detail .professeurs {
  margin: 2rem 0 0;
}

@media (max-width: 767px) {
  .detail .wrapper {
    padding: 0 2rem;
  }
}
/* NAVIGATION */
.navigation {
  margin: 2rem 0 0;
  font-size: 0.85rem;
}
.navigation p {
  display: flex;
  justify-content: space-between;
}
.navigation p a {
  color: #00A2E0;
  text-decoration: none;
  font-weight: 600;
  position: relative;
}
.navigation p a.prev {
  padding: 0 0 0 1rem;
  margin: 0 0 0 2.5rem;
}
.navigation p a.prev:hover:after {
  background: no-repeat center/100% url(../images/prev-on.svg);
}
.navigation p a.prev:before {
  left: 0;
}
.navigation p a.prev:after {
  left: -2.5rem;
  background: no-repeat center/100% url(../images/prev.svg);
}
.navigation p a.next {
  padding: 0 1rem 0 0;
  margin: 0 2.5rem 0 0;
  text-align: right;
}
.navigation p a.next:hover:after {
  background: no-repeat center/100% url(../images/next-on.svg);
}
.navigation p a.next:before {
  right: 0;
}
.navigation p a.next:after {
  right: -2.5rem;
  background: no-repeat center/100% url(../images/next.svg);
}
.navigation p a:hover {
  text-decoration: underline;
}
.navigation p a:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  border-left: solid 2px #00A2E0;
}
.navigation p a:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1.5rem;
  aspect-ratio: 1;
  transition: background 0.3s ease;
}

/*
@media (max-width: 767px){
    .navigation {
        p {
            flex-wrap: wrap;

            a {
                width: 100%;

                &.prev {
                    margin: 0 0 2rem 2.5rem;
                }
            }
        }
    }
}
*/
/* FORM */
.form {
  background: white;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 0 1rem rgba(0, 107, 182, 0.15);
}
.form .bg {
  background: no-repeat center/cover url(../images/background-login.png);
  position: relative;
}
.form .bg:before {
  content: "";
  position: absolute;
  top: 10%;
  left: -3px;
  height: 10rem;
  border-left: solid 6px #F5A52C;
}
.form .wrapper {
  padding: 2rem 0;
}

@media (max-width: 992px) {
  .form .wrapper {
    padding: 2rem;
  }
}
/* CONNEXION */
.connexion {
  position: relative;
  min-height: 100%;
  height: 100%;
  padding: 0;
}
.connexion:before {
  content: "";
  position: absolute;
  inset: 0;
  left: 40%;
  background: no-repeat center/cover url(../images/background-login.png);
}
.connexion .logo {
  margin: 0 0 4rem;
}
.connexion .logo img {
  max-width: 100%;
}
.connexion .bg {
  position: relative;
  z-index: 1;
  width: 50%;
  height: 100%;
  background: white;
  border-radius: 0 5rem 0 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.connexion .wrapper {
  position: relative;
  width: calc(100% + 4rem);
}
.connexion .wrapper a {
  color: #006BB6;
}
.connexion .wrapper a:hover {
  color: #00A2E0;
}
.connexion .wrapper .titre {
  background: #006BB6;
  margin: 0;
  padding: 0.5rem 0;
  border-radius: 0 1.25rem 0 0;
  font-size: 1.375rem;
  color: white;
  text-transform: uppercase;
}
.connexion .wrapper .titre:before {
  content: none;
}
.connexion .wrapper .form {
  background: #E5F0F8;
  box-shadow: none;
  padding: 2rem 0;
  border-radius: 0;
  color: #006BB6;
}
.connexion .wrapper .form [name=accept] {
  display: none;
}
.connexion .wrapper .form .forgot {
  font-size: 0.85rem;
}
.connexion .wrapper .form .btn {
  color: white;
}
.connexion .wrapper .form .btn-tertiary {
  color: #006BB6;
}
.connexion .wrapper .form .creation {
  border-top: solid 1px #006BB6;
  margin: 1.5rem 0 0 0;
  padding: 1.5rem 0 0 0;
}
.connexion .h-center {
  margin-left: calc(50vw - 660px);
  margin-right: 220px;
}

@media (max-width: 1399px) {
  .connexion .h-center {
    margin-left: calc(50vw - 570px);
    margin-right: 190px;
  }
}
@media (max-width: 1199px) {
  .connexion .h-center {
    margin-left: calc(50vw - 480px);
    margin-right: 160px;
  }
}
@media (max-width: 991px) {
  .connexion .bg {
    width: 80%;
  }
  .connexion .h-center {
    margin-left: 2rem;
    margin-right: 2rem;
  }
}
@media (max-width: 767px) {
  .connexion .logo {
    margin: 0 0 2rem;
  }
  .connexion .logo img {
    max-width: 80%;
  }
  .connexion .wrapper .titre {
    font-size: 1.1rem;
  }
}
/* POPIN */
.popin-back {
  position: fixed;
  z-index: 2;
  inset: 0;
  background: rgba(35, 36, 38, 0.9);
  display: none;
}
.popin-back.active {
  display: block;
}

.popin {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 60vw;
  height: 80vh;
  transform: translate(-50%, -50%);
  z-index: 3;
  border-radius: 1.25rem 1.25rem 0 0;
  overflow: auto;
  display: none;
}
.popin.active {
  display: block;
}
.popin .titre {
  background: #006BB6;
  margin: 0;
  padding: 0.5rem 4rem;
  font-size: 1.375rem;
  color: white;
  text-transform: uppercase;
}
.popin .titre:before {
  content: none;
}
.popin .wrapper {
  padding: 2rem 4rem;
  background: #E5F0F8;
}

@media (max-width: 767px) {
  .popin {
    top: 50%;
    left: 1rem;
    width: calc(100vw - 2rem);
    height: 80vh;
    transform: translateY(-50%);
  }
  .popin .titre {
    padding: 0.5rem 1rem;
  }
  .popin .wrapper {
    padding: 1rem;
  }
}/*# sourceMappingURL=styles.css.map */