/* CSS Document */
/************************** Variables **************************/
/************************** Mixins **************************/
body,
html {
  font-family: "Poppins", sans-serif;
  max-width: 100vw;
  overflow-x: hidden;
  position: relative;
  color: #2A2829;
}

img[src*=".svg"] {
  width: 100%;
  height: auto;
}

.row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.col {
  width: 100%;
}

.col2 {
  width: 50%;
}

.col3 {
  width: 32%;
}

a {
  color: #007096;
}
a:hover {
  color: #007096;
}

.gras {
  font-weight: 700;
}

.uppercase {
  text-transform: uppercase;
}

.mt-0 {
  margin-top: 0;
}

.mb-0 {
  margin-bottom: 0;
}

.ml-0 {
  margin-left: 0;
}

.mr-0 {
  margin-right: 0;
}

p {
  font-size: 1.13rem;
  margin-top: 0;
  margin-bottom: 1rem;
}
p.default {
  font-size: 1rem;
}

.default,
.default * {
  font-size: 1rem;
}

.centered {
  text-align: center;
}

.barlow {
  font-family: "Poppins", sans-serif;
}

.blue {
  color: #007096;
}

.light,
.light * {
  font-weight: 300;
}

.semi-bold {
  font-weight: 600;
}

h1 {
  font-size: 4.06rem;
  line-height: 3.94rem;
  text-transform: uppercase;
  margin-top: 55px;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  h1 {
    font-size: 3.06rem;
    line-height: 3.04rem;
  }
}

h2 {
  font-size: 2.19rem;
  font-family: "Poppins", sans-serif;
  color: #007096;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 26px;
  line-height: 1;
}

h3 {
  font-family: "Poppins", sans-serif;
  color: #4F5758;
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 26px;
}

a.btn-blanc {
  background-color: white;
  color: #2A2829;
  padding: 10px 20px;
  border-radius: 15px 0;
  display: block;
  text-align: center;
  font-weight: 400;
  white-space: nowrap;
}

a.btn-bleu {
  background-color: #007096;
  color: white;
  padding: 10px 20px;
  border-radius: 15px 0;
  display: inline-block;
  text-align: center;
  font-weight: 400;
  white-space: nowrap;
}
a.btn-bleu:hover {
  background-color: #2A2829;
}

.boite-gris {
  background-color: #E5E5E5;
  padding: 20px;
  margin-bottom: 30px;
}

.voir-plus {
  background-color: transparent;
  color: #007096;
  border: none;
  font-size: 1.38rem;
  font-weight: 700;
  position: relative;
  display: flex;
  align-items: center;
  margin: 15px auto 0 auto;
}
.voir-plus::after {
  content: "";
  background-image: url(images/ico-arrow-down.svg);
  width: 20px;
  height: 17px;
  display: block;
  margin-left: 12px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

/************************** HEADER **************************/
#bouton-hamburger {
  cursor: pointer;
  display: none;
}
@media (max-width: 1024px) {
  #bouton-hamburger {
    display: block;
  }
}

.bar1,
.bar2,
.bar3 {
  width: 35px;
  height: 4px;
  background-color: white;
  margin: 7px 0;
  transition: 0.4s;
}

/* Rotate first bar */
.change .bar1 {
  transform: rotate(-45deg) translate(-8px, 8px);
}

/* Rotate second bar */
.change .bar2 {
  opacity: 0;
}

/* Rotate third bar */
.change .bar3 {
  transform: rotate(45deg) translate(-8px, -8px);
}

header {
  background-color: #2A2829;
  border-bottom: 10px solid #E5E5E5;
  margin-bottom: 55px;
}
@media (max-width: 1024px) {
  header {
    position: relative;
    z-index: 5;
  }
}
header .container {
  padding: 24px 20px;
}
header .container .row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
}
header .container .row .col2:first-of-type {
  width: 245px;
  margin-right: 30px;
}
header .container .row .col2:first-of-type a {
  display: block;
}
header .container .row .col2:first-of-type::after {
  content: "Portail des membres";
  color: white;
  margin-top: 8px;
  font-weight: 700;
  text-transform: uppercase;
  display: block;
}
header .container .row .col2:first-of-type img.logo {
  width: 245px;
}
header .container .row .col2:nth-of-type(2) {
  width: calc(100% - 275px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
}
header .container .row .col2:nth-of-type(2) nav {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}
header .container .row .col2:nth-of-type(2) nav:first-of-type {
  margin-bottom: 10px;
}
header .container .row .col2:nth-of-type(2) nav a.deco {
  color: white;
  margin-left: 25px;
  font-size: 1.13rem;
}
@media (max-width: 1024px) {
  header .container .row .col2:nth-of-type(2) nav {
    display: none;
  }
}
header .container .row .col2:nth-of-type(2) nav ul {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}
header .container .row .col2:nth-of-type(2) nav ul li a {
  color: white;
}
header .container .row .col2:nth-of-type(2) nav ul.top-menu li {
  margin-left: 25px;
}
header .container .row .col2:nth-of-type(2) nav ul.top-menu li.panier {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
header .container .row .col2:nth-of-type(2) nav ul.top-menu li.panier::before {
  content: "";
  background-image: url(images/ico-cart.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 20px;
  height: 20px;
  display: block;
  margin-right: 10px;
}
header .container .row .col2:nth-of-type(2) nav ul.top-menu li a {
  font-size: 1.13rem;
}
header .container .row .col2:nth-of-type(2) nav ul.princ-menu li {
  margin-left: 20px;
}
header .container .row .col2:nth-of-type(2) nav ul.princ-menu li a {
  font-size: 1.56rem;
}

.menu-mobile {
  position: absolute;
  top: calc(100% + 10px);
  width: 100%;
  left: 0;
  z-index: 2;
  background-color: #E5E5E5;
  box-shadow: 0px 6px 20px 0px rgba(0, 0, 0, 0.231372549);
  display: flex;
  align-items: center;
  display: none;
}
.menu-mobile a.deco {
  padding: 0 20px 20px 20px;
  display: block;
  text-align: center;
  font-size: 1.13rem;
  color: #2A2829;
}
.menu-mobile ul.mobile-menu {
  margin: 0;
  padding: 20px;
  list-style: none;
}
.menu-mobile ul.mobile-menu li {
  text-align: center;
  font-size: 1.13rem;
  border-bottom: 1px solid #d3d3d3;
}
.menu-mobile ul.mobile-menu li:first-of-type a {
  padding-top: 0;
}
.menu-mobile ul.mobile-menu li.panier {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.menu-mobile ul.mobile-menu li.panier::before {
  content: "";
  background-image: url(images/ico-cart-black.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 20px;
  height: 20px;
  display: block;
  margin-right: 10px;
}
.menu-mobile ul.mobile-menu li a {
  color: #2A2829;
  display: block;
  padding: 20px 0;
}

/************************** FOOTER **************************/
footer {
  background-image: url(images/footer-courbe-pale.svg);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 60px;
}
footer .container {
  padding: 20px;
}
footer .container .row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
}
@media (max-width: 768px) {
  footer .container .row {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
footer .container .row .col2:first-of-type {
  width: 245px;
}
@media (max-width: 768px) {
  footer .container .row .col2:first-of-type {
    width: 100%;
  }
}
footer .container .row .col2:first-of-type img.logo {
  width: 245px;
}
footer .container .row .col2:first-of-type p.gras {
  margin-top: 8px;
}
footer .container .row .col2:first-of-type nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
footer .container .row .col2:first-of-type nav ul li a {
  color: #007096;
  font-size: 1rem;
}
footer .container .row .col2:nth-of-type(2) {
  width: auto;
  text-align: right;
}
@media (max-width: 768px) {
  footer .container .row .col2:nth-of-type(2) {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
  }
  footer .container .row .col2:nth-of-type(2) p {
    text-align: center;
    font-size: 1rem;
  }
}

/************************** Archives cours/courses **************************/
.page-template-template-archive-learndash .titre {
  margin-bottom: 90px;
}
.page-template-template-archive-learndash .grille-cours, .page-template-template-archive-learndash .grille-activites {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto-fit;
  -moz-column-gap: 25px;
       column-gap: 25px;
  row-gap: 80px;
  margin-bottom: 90px;
}
@media (max-width: 768px) {
  .page-template-template-archive-learndash .grille-cours, .page-template-template-archive-learndash .grille-activites {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .page-template-template-archive-learndash .grille-cours, .page-template-template-archive-learndash .grille-activites {
    grid-template-columns: repeat(1, 1fr);
  }
}
.page-template-template-archive-learndash .grille-cours .post .content, .page-template-template-archive-learndash .grille-activites .post .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}
.page-template-template-archive-learndash .grille-cours .post .thumbnail, .page-template-template-archive-learndash .grille-activites .post .thumbnail {
  width: 100%;
  height: 230px;
  margin-bottom: 17px;
}
.page-template-template-archive-learndash .grille-cours .post .thumbnail img, .page-template-template-archive-learndash .grille-activites .post .thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-bottom-left-radius: 50px;
}
.page-template-template-archive-learndash .grille-cours .post .description, .page-template-template-archive-learndash .grille-activites .post .description {
  background-color: #2A2829;
  padding: 16px;
  color: white;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  margin-bottom: 26px;
}
.page-template-template-archive-learndash .grille-cours .post .description h2, .page-template-template-archive-learndash .grille-activites .post .description h2 {
  font-family: "Poppins", sans-serif;
  color: white;
  font-size: 1.69rem;
  margin-bottom: 8px;
}
.page-template-template-archive-learndash .grille-cours .post .description p, .page-template-template-archive-learndash .grille-activites .post .description p {
  font-size: 1rem;
}
.page-template-template-archive-learndash .grille-cours .post .description .excerpt, .page-template-template-archive-learndash .grille-activites .post .description .excerpt {
  margin-bottom: 16px;
}
.page-template-template-archive-learndash .grille-cours .post .description p.prix, .page-template-template-archive-learndash .grille-activites .post .description p.prix {
  margin-top: auto;
  margin-bottom: 0;
}
.page-template-template-archive-learndash .voir-plus {
  margin: 0 auto 54px auto;
}
.page-template-template-archive-learndash .no-event {
  margin-bottom: 90px;
  grid-column: 1/4;
}

/************************** Single cours/courses **************************/
.single-sfwd-courses h1,
.page-mes-formations h1,
.single-sfwd-lessons h1,
.single-sfwd-quiz h1 {
  font-size: 2.81rem;
}
.single-sfwd-courses .row,
.page-mes-formations .row,
.single-sfwd-lessons .row,
.single-sfwd-quiz .row {
  display: grid;
  grid-template-columns: 55% 45%;
  -moz-column-gap: 60px;
       column-gap: 60px;
}
.single-sfwd-courses .row .col2,
.page-mes-formations .row .col2,
.single-sfwd-lessons .row .col2,
.single-sfwd-quiz .row .col2 {
  width: 100%;
}
.single-sfwd-courses .row .col2 .bloc,
.page-mes-formations .row .col2 .bloc,
.single-sfwd-lessons .row .col2 .bloc,
.single-sfwd-quiz .row .col2 .bloc {
  margin: 0 0 32px;
}
.single-sfwd-courses .row .col2 .bloc p,
.page-mes-formations .row .col2 .bloc p,
.single-sfwd-lessons .row .col2 .bloc p,
.single-sfwd-quiz .row .col2 .bloc p {
  font-weight: 300;
  line-height: 1.63rem;
}
.single-sfwd-courses .row .col2:first-of-type .profil h2,
.page-mes-formations .row .col2:first-of-type .profil h2,
.single-sfwd-lessons .row .col2:first-of-type .profil h2,
.single-sfwd-quiz .row .col2:first-of-type .profil h2 {
  color: #2A2829;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 1.56rem;
  line-height: 1;
  margin-bottom: 10px;
}
.single-sfwd-courses .row .col2:first-of-type .profil img,
.page-mes-formations .row .col2:first-of-type .profil img,
.single-sfwd-lessons .row .col2:first-of-type .profil img,
.single-sfwd-quiz .row .col2:first-of-type .profil img {
  margin-bottom: 16px;
  width: 207px;
  height: 207px;
  border-radius: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.single-sfwd-courses .row .col2:first-of-type .profil h3,
.page-mes-formations .row .col2:first-of-type .profil h3,
.single-sfwd-lessons .row .col2:first-of-type .profil h3,
.single-sfwd-quiz .row .col2:first-of-type .profil h3 {
  color: #007096;
  font-weight: 600;
  font-size: 1.56rem;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.single-sfwd-courses .row .col2:first-of-type .profil h4,
.page-mes-formations .row .col2:first-of-type .profil h4,
.single-sfwd-lessons .row .col2:first-of-type .profil h4,
.single-sfwd-quiz .row .col2:first-of-type .profil h4 {
  margin: 0;
  font-size: 1rem;
  color: #2A2829;
  font-weight: 600;
  text-transform: uppercase;
}
.single-sfwd-courses .row .col2:last-of-type .thumbnail,
.page-mes-formations .row .col2:last-of-type .thumbnail,
.single-sfwd-lessons .row .col2:last-of-type .thumbnail,
.single-sfwd-quiz .row .col2:last-of-type .thumbnail {
  height: 280px;
  width: 100%;
}
.single-sfwd-courses .row .col2:last-of-type .thumbnail img,
.page-mes-formations .row .col2:last-of-type .thumbnail img,
.single-sfwd-lessons .row .col2:last-of-type .thumbnail img,
.single-sfwd-quiz .row .col2:last-of-type .thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 0 90px;
}
.single-sfwd-courses .row .col2:last-of-type .details,
.page-mes-formations .row .col2:last-of-type .details,
.single-sfwd-lessons .row .col2:last-of-type .details,
.single-sfwd-quiz .row .col2:last-of-type .details {
  background-color: #2A2829;
  padding: 32px;
  color: white;
  font-size: 1.13rem;
  font-weight: 400;
}
.single-sfwd-courses .row .col2:last-of-type .details h2,
.page-mes-formations .row .col2:last-of-type .details h2,
.single-sfwd-lessons .row .col2:last-of-type .details h2,
.single-sfwd-quiz .row .col2:last-of-type .details h2 {
  text-transform: uppercase;
  font-size: 2.19rem;
  font-weight: 800;
}
.single-sfwd-courses .row .col2:last-of-type .details .tarif,
.page-mes-formations .row .col2:last-of-type .details .tarif,
.single-sfwd-lessons .row .col2:last-of-type .details .tarif,
.single-sfwd-quiz .row .col2:last-of-type .details .tarif {
  margin-bottom: 35px;
}
.single-sfwd-courses .row .col2:last-of-type .details .tarif p,
.page-mes-formations .row .col2:last-of-type .details .tarif p,
.single-sfwd-lessons .row .col2:last-of-type .details .tarif p,
.single-sfwd-quiz .row .col2:last-of-type .details .tarif p {
  margin-bottom: 0;
  font-weight: 400;
}
.single-sfwd-courses .row .col2:last-of-type .details .about strong,
.page-mes-formations .row .col2:last-of-type .details .about strong,
.single-sfwd-lessons .row .col2:last-of-type .details .about strong,
.single-sfwd-quiz .row .col2:last-of-type .details .about strong {
  display: block;
}
.single-sfwd-courses .row .col2:last-of-type .details .about p,
.page-mes-formations .row .col2:last-of-type .details .about p,
.single-sfwd-lessons .row .col2:last-of-type .details .about p,
.single-sfwd-quiz .row .col2:last-of-type .details .about p {
  margin-bottom: 0;
}
.single-sfwd-courses .ld-lesson-list,
.single-sfwd-courses .ld-course-list,
.page-mes-formations .ld-lesson-list,
.page-mes-formations .ld-course-list,
.single-sfwd-lessons .ld-lesson-list,
.single-sfwd-lessons .ld-course-list,
.single-sfwd-quiz .ld-lesson-list,
.single-sfwd-quiz .ld-course-list {
  margin-bottom: 130px !important;
}
.single-sfwd-courses .ld-lesson-list .ld-section-heading h2,
.single-sfwd-courses .ld-lesson-list .ld-section-heading h3,
.single-sfwd-courses .ld-course-list .ld-section-heading h2,
.single-sfwd-courses .ld-course-list .ld-section-heading h3,
.page-mes-formations .ld-lesson-list .ld-section-heading h2,
.page-mes-formations .ld-lesson-list .ld-section-heading h3,
.page-mes-formations .ld-course-list .ld-section-heading h2,
.page-mes-formations .ld-course-list .ld-section-heading h3,
.single-sfwd-lessons .ld-lesson-list .ld-section-heading h2,
.single-sfwd-lessons .ld-lesson-list .ld-section-heading h3,
.single-sfwd-lessons .ld-course-list .ld-section-heading h2,
.single-sfwd-lessons .ld-course-list .ld-section-heading h3,
.single-sfwd-quiz .ld-lesson-list .ld-section-heading h2,
.single-sfwd-quiz .ld-lesson-list .ld-section-heading h3,
.single-sfwd-quiz .ld-course-list .ld-section-heading h2,
.single-sfwd-quiz .ld-course-list .ld-section-heading h3 {
  color: #2A2829;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 1.56rem;
  line-height: 1;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  width: 100%;
  white-space: nowrap;
}
.single-sfwd-courses .ld-lesson-list .ld-section-heading h2::after,
.single-sfwd-courses .ld-lesson-list .ld-section-heading h3::after,
.single-sfwd-courses .ld-course-list .ld-section-heading h2::after,
.single-sfwd-courses .ld-course-list .ld-section-heading h3::after,
.page-mes-formations .ld-lesson-list .ld-section-heading h2::after,
.page-mes-formations .ld-lesson-list .ld-section-heading h3::after,
.page-mes-formations .ld-course-list .ld-section-heading h2::after,
.page-mes-formations .ld-course-list .ld-section-heading h3::after,
.single-sfwd-lessons .ld-lesson-list .ld-section-heading h2::after,
.single-sfwd-lessons .ld-lesson-list .ld-section-heading h3::after,
.single-sfwd-lessons .ld-course-list .ld-section-heading h2::after,
.single-sfwd-lessons .ld-course-list .ld-section-heading h3::after,
.single-sfwd-quiz .ld-lesson-list .ld-section-heading h2::after,
.single-sfwd-quiz .ld-lesson-list .ld-section-heading h3::after,
.single-sfwd-quiz .ld-course-list .ld-section-heading h2::after,
.single-sfwd-quiz .ld-course-list .ld-section-heading h3::after {
  content: "";
  background-color: #007096;
  height: 2px;
  width: 100%;
  display: inline-block;
  margin: 0 10px;
}
.single-sfwd-courses .ld-lesson-list .ld-item-list-items .ld-item-lesson-item,
.single-sfwd-courses .ld-lesson-list .ld-item-list-items .ld-item-list-item-quiz,
.single-sfwd-courses .ld-lesson-list .ld-item-list-items .ld-item-list-item-course,
.single-sfwd-courses .ld-course-list .ld-item-list-items .ld-item-lesson-item,
.single-sfwd-courses .ld-course-list .ld-item-list-items .ld-item-list-item-quiz,
.single-sfwd-courses .ld-course-list .ld-item-list-items .ld-item-list-item-course,
.page-mes-formations .ld-lesson-list .ld-item-list-items .ld-item-lesson-item,
.page-mes-formations .ld-lesson-list .ld-item-list-items .ld-item-list-item-quiz,
.page-mes-formations .ld-lesson-list .ld-item-list-items .ld-item-list-item-course,
.page-mes-formations .ld-course-list .ld-item-list-items .ld-item-lesson-item,
.page-mes-formations .ld-course-list .ld-item-list-items .ld-item-list-item-quiz,
.page-mes-formations .ld-course-list .ld-item-list-items .ld-item-list-item-course,
.single-sfwd-lessons .ld-lesson-list .ld-item-list-items .ld-item-lesson-item,
.single-sfwd-lessons .ld-lesson-list .ld-item-list-items .ld-item-list-item-quiz,
.single-sfwd-lessons .ld-lesson-list .ld-item-list-items .ld-item-list-item-course,
.single-sfwd-lessons .ld-course-list .ld-item-list-items .ld-item-lesson-item,
.single-sfwd-lessons .ld-course-list .ld-item-list-items .ld-item-list-item-quiz,
.single-sfwd-lessons .ld-course-list .ld-item-list-items .ld-item-list-item-course,
.single-sfwd-quiz .ld-lesson-list .ld-item-list-items .ld-item-lesson-item,
.single-sfwd-quiz .ld-lesson-list .ld-item-list-items .ld-item-list-item-quiz,
.single-sfwd-quiz .ld-lesson-list .ld-item-list-items .ld-item-list-item-course,
.single-sfwd-quiz .ld-course-list .ld-item-list-items .ld-item-lesson-item,
.single-sfwd-quiz .ld-course-list .ld-item-list-items .ld-item-list-item-quiz,
.single-sfwd-quiz .ld-course-list .ld-item-list-items .ld-item-list-item-course {
  border-radius: 29px;
  background-color: #E5E5E5;
  border: none;
}
.single-sfwd-courses .ld-lesson-list .ld-item-list-items .ld-item-lesson-item .ld-item-list-item-preview,
.single-sfwd-courses .ld-lesson-list .ld-item-list-items .ld-item-list-item-quiz .ld-item-list-item-preview,
.single-sfwd-courses .ld-lesson-list .ld-item-list-items .ld-item-list-item-course .ld-item-list-item-preview,
.single-sfwd-courses .ld-course-list .ld-item-list-items .ld-item-lesson-item .ld-item-list-item-preview,
.single-sfwd-courses .ld-course-list .ld-item-list-items .ld-item-list-item-quiz .ld-item-list-item-preview,
.single-sfwd-courses .ld-course-list .ld-item-list-items .ld-item-list-item-course .ld-item-list-item-preview,
.page-mes-formations .ld-lesson-list .ld-item-list-items .ld-item-lesson-item .ld-item-list-item-preview,
.page-mes-formations .ld-lesson-list .ld-item-list-items .ld-item-list-item-quiz .ld-item-list-item-preview,
.page-mes-formations .ld-lesson-list .ld-item-list-items .ld-item-list-item-course .ld-item-list-item-preview,
.page-mes-formations .ld-course-list .ld-item-list-items .ld-item-lesson-item .ld-item-list-item-preview,
.page-mes-formations .ld-course-list .ld-item-list-items .ld-item-list-item-quiz .ld-item-list-item-preview,
.page-mes-formations .ld-course-list .ld-item-list-items .ld-item-list-item-course .ld-item-list-item-preview,
.single-sfwd-lessons .ld-lesson-list .ld-item-list-items .ld-item-lesson-item .ld-item-list-item-preview,
.single-sfwd-lessons .ld-lesson-list .ld-item-list-items .ld-item-list-item-quiz .ld-item-list-item-preview,
.single-sfwd-lessons .ld-lesson-list .ld-item-list-items .ld-item-list-item-course .ld-item-list-item-preview,
.single-sfwd-lessons .ld-course-list .ld-item-list-items .ld-item-lesson-item .ld-item-list-item-preview,
.single-sfwd-lessons .ld-course-list .ld-item-list-items .ld-item-list-item-quiz .ld-item-list-item-preview,
.single-sfwd-lessons .ld-course-list .ld-item-list-items .ld-item-list-item-course .ld-item-list-item-preview,
.single-sfwd-quiz .ld-lesson-list .ld-item-list-items .ld-item-lesson-item .ld-item-list-item-preview,
.single-sfwd-quiz .ld-lesson-list .ld-item-list-items .ld-item-list-item-quiz .ld-item-list-item-preview,
.single-sfwd-quiz .ld-lesson-list .ld-item-list-items .ld-item-list-item-course .ld-item-list-item-preview,
.single-sfwd-quiz .ld-course-list .ld-item-list-items .ld-item-lesson-item .ld-item-list-item-preview,
.single-sfwd-quiz .ld-course-list .ld-item-list-items .ld-item-list-item-quiz .ld-item-list-item-preview,
.single-sfwd-quiz .ld-course-list .ld-item-list-items .ld-item-list-item-course .ld-item-list-item-preview {
  padding: 30px;
}
.single-sfwd-courses .ld-lesson-list .ld-item-list-items .ld-item-lesson-item .ld-item-list-item-preview .ld-item-name .ld-status-icon,
.single-sfwd-courses .ld-lesson-list .ld-item-list-items .ld-item-list-item-quiz .ld-item-list-item-preview .ld-item-name .ld-status-icon,
.single-sfwd-courses .ld-lesson-list .ld-item-list-items .ld-item-list-item-course .ld-item-list-item-preview .ld-item-name .ld-status-icon,
.single-sfwd-courses .ld-course-list .ld-item-list-items .ld-item-lesson-item .ld-item-list-item-preview .ld-item-name .ld-status-icon,
.single-sfwd-courses .ld-course-list .ld-item-list-items .ld-item-list-item-quiz .ld-item-list-item-preview .ld-item-name .ld-status-icon,
.single-sfwd-courses .ld-course-list .ld-item-list-items .ld-item-list-item-course .ld-item-list-item-preview .ld-item-name .ld-status-icon,
.page-mes-formations .ld-lesson-list .ld-item-list-items .ld-item-lesson-item .ld-item-list-item-preview .ld-item-name .ld-status-icon,
.page-mes-formations .ld-lesson-list .ld-item-list-items .ld-item-list-item-quiz .ld-item-list-item-preview .ld-item-name .ld-status-icon,
.page-mes-formations .ld-lesson-list .ld-item-list-items .ld-item-list-item-course .ld-item-list-item-preview .ld-item-name .ld-status-icon,
.page-mes-formations .ld-course-list .ld-item-list-items .ld-item-lesson-item .ld-item-list-item-preview .ld-item-name .ld-status-icon,
.page-mes-formations .ld-course-list .ld-item-list-items .ld-item-list-item-quiz .ld-item-list-item-preview .ld-item-name .ld-status-icon,
.page-mes-formations .ld-course-list .ld-item-list-items .ld-item-list-item-course .ld-item-list-item-preview .ld-item-name .ld-status-icon,
.single-sfwd-lessons .ld-lesson-list .ld-item-list-items .ld-item-lesson-item .ld-item-list-item-preview .ld-item-name .ld-status-icon,
.single-sfwd-lessons .ld-lesson-list .ld-item-list-items .ld-item-list-item-quiz .ld-item-list-item-preview .ld-item-name .ld-status-icon,
.single-sfwd-lessons .ld-lesson-list .ld-item-list-items .ld-item-list-item-course .ld-item-list-item-preview .ld-item-name .ld-status-icon,
.single-sfwd-lessons .ld-course-list .ld-item-list-items .ld-item-lesson-item .ld-item-list-item-preview .ld-item-name .ld-status-icon,
.single-sfwd-lessons .ld-course-list .ld-item-list-items .ld-item-list-item-quiz .ld-item-list-item-preview .ld-item-name .ld-status-icon,
.single-sfwd-lessons .ld-course-list .ld-item-list-items .ld-item-list-item-course .ld-item-list-item-preview .ld-item-name .ld-status-icon,
.single-sfwd-quiz .ld-lesson-list .ld-item-list-items .ld-item-lesson-item .ld-item-list-item-preview .ld-item-name .ld-status-icon,
.single-sfwd-quiz .ld-lesson-list .ld-item-list-items .ld-item-list-item-quiz .ld-item-list-item-preview .ld-item-name .ld-status-icon,
.single-sfwd-quiz .ld-lesson-list .ld-item-list-items .ld-item-list-item-course .ld-item-list-item-preview .ld-item-name .ld-status-icon,
.single-sfwd-quiz .ld-course-list .ld-item-list-items .ld-item-lesson-item .ld-item-list-item-preview .ld-item-name .ld-status-icon,
.single-sfwd-quiz .ld-course-list .ld-item-list-items .ld-item-list-item-quiz .ld-item-list-item-preview .ld-item-name .ld-status-icon,
.single-sfwd-quiz .ld-course-list .ld-item-list-items .ld-item-list-item-course .ld-item-list-item-preview .ld-item-name .ld-status-icon {
  border: 2px solid #007096;
  background-color: #E5E5E5;
  margin-top: 0;
  margin-right: 30px;
}
.single-sfwd-courses .ld-lesson-list .ld-item-list-items .ld-item-lesson-item .ld-item-list-item-preview .ld-item-name .ld-icon-quiz::before,
.single-sfwd-courses .ld-lesson-list .ld-item-list-items .ld-item-list-item-quiz .ld-item-list-item-preview .ld-item-name .ld-icon-quiz::before,
.single-sfwd-courses .ld-lesson-list .ld-item-list-items .ld-item-list-item-course .ld-item-list-item-preview .ld-item-name .ld-icon-quiz::before,
.single-sfwd-courses .ld-course-list .ld-item-list-items .ld-item-lesson-item .ld-item-list-item-preview .ld-item-name .ld-icon-quiz::before,
.single-sfwd-courses .ld-course-list .ld-item-list-items .ld-item-list-item-quiz .ld-item-list-item-preview .ld-item-name .ld-icon-quiz::before,
.single-sfwd-courses .ld-course-list .ld-item-list-items .ld-item-list-item-course .ld-item-list-item-preview .ld-item-name .ld-icon-quiz::before,
.page-mes-formations .ld-lesson-list .ld-item-list-items .ld-item-lesson-item .ld-item-list-item-preview .ld-item-name .ld-icon-quiz::before,
.page-mes-formations .ld-lesson-list .ld-item-list-items .ld-item-list-item-quiz .ld-item-list-item-preview .ld-item-name .ld-icon-quiz::before,
.page-mes-formations .ld-lesson-list .ld-item-list-items .ld-item-list-item-course .ld-item-list-item-preview .ld-item-name .ld-icon-quiz::before,
.page-mes-formations .ld-course-list .ld-item-list-items .ld-item-lesson-item .ld-item-list-item-preview .ld-item-name .ld-icon-quiz::before,
.page-mes-formations .ld-course-list .ld-item-list-items .ld-item-list-item-quiz .ld-item-list-item-preview .ld-item-name .ld-icon-quiz::before,
.page-mes-formations .ld-course-list .ld-item-list-items .ld-item-list-item-course .ld-item-list-item-preview .ld-item-name .ld-icon-quiz::before,
.single-sfwd-lessons .ld-lesson-list .ld-item-list-items .ld-item-lesson-item .ld-item-list-item-preview .ld-item-name .ld-icon-quiz::before,
.single-sfwd-lessons .ld-lesson-list .ld-item-list-items .ld-item-list-item-quiz .ld-item-list-item-preview .ld-item-name .ld-icon-quiz::before,
.single-sfwd-lessons .ld-lesson-list .ld-item-list-items .ld-item-list-item-course .ld-item-list-item-preview .ld-item-name .ld-icon-quiz::before,
.single-sfwd-lessons .ld-course-list .ld-item-list-items .ld-item-lesson-item .ld-item-list-item-preview .ld-item-name .ld-icon-quiz::before,
.single-sfwd-lessons .ld-course-list .ld-item-list-items .ld-item-list-item-quiz .ld-item-list-item-preview .ld-item-name .ld-icon-quiz::before,
.single-sfwd-lessons .ld-course-list .ld-item-list-items .ld-item-list-item-course .ld-item-list-item-preview .ld-item-name .ld-icon-quiz::before,
.single-sfwd-quiz .ld-lesson-list .ld-item-list-items .ld-item-lesson-item .ld-item-list-item-preview .ld-item-name .ld-icon-quiz::before,
.single-sfwd-quiz .ld-lesson-list .ld-item-list-items .ld-item-list-item-quiz .ld-item-list-item-preview .ld-item-name .ld-icon-quiz::before,
.single-sfwd-quiz .ld-lesson-list .ld-item-list-items .ld-item-list-item-course .ld-item-list-item-preview .ld-item-name .ld-icon-quiz::before,
.single-sfwd-quiz .ld-course-list .ld-item-list-items .ld-item-lesson-item .ld-item-list-item-preview .ld-item-name .ld-icon-quiz::before,
.single-sfwd-quiz .ld-course-list .ld-item-list-items .ld-item-list-item-quiz .ld-item-list-item-preview .ld-item-name .ld-icon-quiz::before,
.single-sfwd-quiz .ld-course-list .ld-item-list-items .ld-item-list-item-course .ld-item-list-item-preview .ld-item-name .ld-icon-quiz::before {
  display: none;
}
.single-sfwd-courses .ld-lesson-list .ld-item-list-items .ld-item-lesson-item .ld-item-list-item-preview .ld-item-name .ld-item-title,
.single-sfwd-courses .ld-lesson-list .ld-item-list-items .ld-item-lesson-item .ld-item-list-item-preview .ld-item-name .ld-course-title,
.single-sfwd-courses .ld-lesson-list .ld-item-list-items .ld-item-list-item-quiz .ld-item-list-item-preview .ld-item-name .ld-item-title,
.single-sfwd-courses .ld-lesson-list .ld-item-list-items .ld-item-list-item-quiz .ld-item-list-item-preview .ld-item-name .ld-course-title,
.single-sfwd-courses .ld-lesson-list .ld-item-list-items .ld-item-list-item-course .ld-item-list-item-preview .ld-item-name .ld-item-title,
.single-sfwd-courses .ld-lesson-list .ld-item-list-items .ld-item-list-item-course .ld-item-list-item-preview .ld-item-name .ld-course-title,
.single-sfwd-courses .ld-course-list .ld-item-list-items .ld-item-lesson-item .ld-item-list-item-preview .ld-item-name .ld-item-title,
.single-sfwd-courses .ld-course-list .ld-item-list-items .ld-item-lesson-item .ld-item-list-item-preview .ld-item-name .ld-course-title,
.single-sfwd-courses .ld-course-list .ld-item-list-items .ld-item-list-item-quiz .ld-item-list-item-preview .ld-item-name .ld-item-title,
.single-sfwd-courses .ld-course-list .ld-item-list-items .ld-item-list-item-quiz .ld-item-list-item-preview .ld-item-name .ld-course-title,
.single-sfwd-courses .ld-course-list .ld-item-list-items .ld-item-list-item-course .ld-item-list-item-preview .ld-item-name .ld-item-title,
.single-sfwd-courses .ld-course-list .ld-item-list-items .ld-item-list-item-course .ld-item-list-item-preview .ld-item-name .ld-course-title,
.page-mes-formations .ld-lesson-list .ld-item-list-items .ld-item-lesson-item .ld-item-list-item-preview .ld-item-name .ld-item-title,
.page-mes-formations .ld-lesson-list .ld-item-list-items .ld-item-lesson-item .ld-item-list-item-preview .ld-item-name .ld-course-title,
.page-mes-formations .ld-lesson-list .ld-item-list-items .ld-item-list-item-quiz .ld-item-list-item-preview .ld-item-name .ld-item-title,
.page-mes-formations .ld-lesson-list .ld-item-list-items .ld-item-list-item-quiz .ld-item-list-item-preview .ld-item-name .ld-course-title,
.page-mes-formations .ld-lesson-list .ld-item-list-items .ld-item-list-item-course .ld-item-list-item-preview .ld-item-name .ld-item-title,
.page-mes-formations .ld-lesson-list .ld-item-list-items .ld-item-list-item-course .ld-item-list-item-preview .ld-item-name .ld-course-title,
.page-mes-formations .ld-course-list .ld-item-list-items .ld-item-lesson-item .ld-item-list-item-preview .ld-item-name .ld-item-title,
.page-mes-formations .ld-course-list .ld-item-list-items .ld-item-lesson-item .ld-item-list-item-preview .ld-item-name .ld-course-title,
.page-mes-formations .ld-course-list .ld-item-list-items .ld-item-list-item-quiz .ld-item-list-item-preview .ld-item-name .ld-item-title,
.page-mes-formations .ld-course-list .ld-item-list-items .ld-item-list-item-quiz .ld-item-list-item-preview .ld-item-name .ld-course-title,
.page-mes-formations .ld-course-list .ld-item-list-items .ld-item-list-item-course .ld-item-list-item-preview .ld-item-name .ld-item-title,
.page-mes-formations .ld-course-list .ld-item-list-items .ld-item-list-item-course .ld-item-list-item-preview .ld-item-name .ld-course-title,
.single-sfwd-lessons .ld-lesson-list .ld-item-list-items .ld-item-lesson-item .ld-item-list-item-preview .ld-item-name .ld-item-title,
.single-sfwd-lessons .ld-lesson-list .ld-item-list-items .ld-item-lesson-item .ld-item-list-item-preview .ld-item-name .ld-course-title,
.single-sfwd-lessons .ld-lesson-list .ld-item-list-items .ld-item-list-item-quiz .ld-item-list-item-preview .ld-item-name .ld-item-title,
.single-sfwd-lessons .ld-lesson-list .ld-item-list-items .ld-item-list-item-quiz .ld-item-list-item-preview .ld-item-name .ld-course-title,
.single-sfwd-lessons .ld-lesson-list .ld-item-list-items .ld-item-list-item-course .ld-item-list-item-preview .ld-item-name .ld-item-title,
.single-sfwd-lessons .ld-lesson-list .ld-item-list-items .ld-item-list-item-course .ld-item-list-item-preview .ld-item-name .ld-course-title,
.single-sfwd-lessons .ld-course-list .ld-item-list-items .ld-item-lesson-item .ld-item-list-item-preview .ld-item-name .ld-item-title,
.single-sfwd-lessons .ld-course-list .ld-item-list-items .ld-item-lesson-item .ld-item-list-item-preview .ld-item-name .ld-course-title,
.single-sfwd-lessons .ld-course-list .ld-item-list-items .ld-item-list-item-quiz .ld-item-list-item-preview .ld-item-name .ld-item-title,
.single-sfwd-lessons .ld-course-list .ld-item-list-items .ld-item-list-item-quiz .ld-item-list-item-preview .ld-item-name .ld-course-title,
.single-sfwd-lessons .ld-course-list .ld-item-list-items .ld-item-list-item-course .ld-item-list-item-preview .ld-item-name .ld-item-title,
.single-sfwd-lessons .ld-course-list .ld-item-list-items .ld-item-list-item-course .ld-item-list-item-preview .ld-item-name .ld-course-title,
.single-sfwd-quiz .ld-lesson-list .ld-item-list-items .ld-item-lesson-item .ld-item-list-item-preview .ld-item-name .ld-item-title,
.single-sfwd-quiz .ld-lesson-list .ld-item-list-items .ld-item-lesson-item .ld-item-list-item-preview .ld-item-name .ld-course-title,
.single-sfwd-quiz .ld-lesson-list .ld-item-list-items .ld-item-list-item-quiz .ld-item-list-item-preview .ld-item-name .ld-item-title,
.single-sfwd-quiz .ld-lesson-list .ld-item-list-items .ld-item-list-item-quiz .ld-item-list-item-preview .ld-item-name .ld-course-title,
.single-sfwd-quiz .ld-lesson-list .ld-item-list-items .ld-item-list-item-course .ld-item-list-item-preview .ld-item-name .ld-item-title,
.single-sfwd-quiz .ld-lesson-list .ld-item-list-items .ld-item-list-item-course .ld-item-list-item-preview .ld-item-name .ld-course-title,
.single-sfwd-quiz .ld-course-list .ld-item-list-items .ld-item-lesson-item .ld-item-list-item-preview .ld-item-name .ld-item-title,
.single-sfwd-quiz .ld-course-list .ld-item-list-items .ld-item-lesson-item .ld-item-list-item-preview .ld-item-name .ld-course-title,
.single-sfwd-quiz .ld-course-list .ld-item-list-items .ld-item-list-item-quiz .ld-item-list-item-preview .ld-item-name .ld-item-title,
.single-sfwd-quiz .ld-course-list .ld-item-list-items .ld-item-list-item-quiz .ld-item-list-item-preview .ld-item-name .ld-course-title,
.single-sfwd-quiz .ld-course-list .ld-item-list-items .ld-item-list-item-course .ld-item-list-item-preview .ld-item-name .ld-item-title,
.single-sfwd-quiz .ld-course-list .ld-item-list-items .ld-item-list-item-course .ld-item-list-item-preview .ld-item-name .ld-course-title {
  display: flex;
  align-items: center;
  line-height: 1;
  font-weight: 600;
  font-size: 1.56rem;
}

.ld-section-heading h2,
.ld-course-list .ld-section-heading h3 {
  font-family: "Poppins", sans-serif;
  color: #2A2829;
  text-transform: uppercase;
  font-weight: 600 !important;
}

.nocomments {
  display: none;
}

.ld-item-list-item-preview .ld-item-title span.ld-item-components {
  display: none !important;
}

.learndash-wrapper .ld-item-list .ld-item-list-item .ld-item-list-item-expanded:before {
  background-color: #E5E5E5 !important;
}

.page-mes-formations #page > .container {
  margin-bottom: 80px;
}
.page-mes-formations .ld-profile-summary .ld-profile-card {
  display: none !important;
}
.page-mes-formations .ld-profile-stats .ld-profile-stat-points {
  display: none !important;
}
.page-mes-formations .ld-profile-stats .ld-profile-stat-certificates {
  border-right: none !important;
}
.page-mes-formations .ld-item-list-item-course .ld-item-list-item-expanded .ld-progress {
  background-color: #f3f3f3 !important;
}
.page-mes-formations .ld-item-list-item-course .ld-table-list-footer {
  background-color: #f3f3f3 !important;
}

/************************** Mon compte **************************/
/*************** Connexion *****************/
.page-mon-compte:has(section#page #customer-login) {
  background-color: white !important;
}
.page-mon-compte:has(section#page #customer-login)::after {
  display: none !important;
}

@media (max-width: 768px) {
  #customer-login .row {
    flex: column;
  }
}
@media (max-width: 768px) {
  #customer-login .row .col2 {
    width: 100%;
    display: flex;
    justify-content: center;
  }
}
#customer-login .row .col2:first-of-type .container-image {
  width: 512px;
  height: 617px;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  #customer-login .row .col2:first-of-type .container-image {
    width: 50%;
    height: 250px;
  }
}
#customer-login .row .col2:first-of-type .container-image img {
  border-radius: 500px 500px 0 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#customer-login .row .col2:first-of-type .container-image::before {
  content: "";
  position: absolute;
  display: block;
  background-color: #007096;
  width: 322px;
  height: 322px;
  bottom: -100px;
  left: -230px;
  border-radius: 100%;
  z-index: -1;
}
@media (max-width: 768px) {
  #customer-login .row .col2:first-of-type .container-image::before {
    bottom: 100px;
  }
}
#customer-login .row .col2:first-of-type .container-image::after {
  content: "";
  position: absolute;
  display: block;
  background-color: #2A2829;
  width: 160px;
  height: 53px;
  top: 100px;
  right: -80px;
  border-radius: 40px;
  z-index: 2;
}
@media (max-width: 768px) {
  #customer-login .row .col2:first-of-type .container-image::after {
    height: 25px;
    width: 100px;
  }
}
#customer-login .row .col2:first-of-type .container-image .el3 {
  position: absolute;
  display: block;
  background-color: #2A2829;
  width: 120px;
  height: 32px;
  bottom: 30px;
  left: -80px;
  border-radius: 40px;
  z-index: 2;
}
@media (max-width: 768px) {
  #customer-login .row .col2:first-of-type .container-image .el3 {
    width: 100px;
  }
}
#customer-login .row .col2:nth-of-type(2) {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  position: relative;
  z-index: 1;
  margin-top: 200px;
}
@media (max-width: 768px) {
  #customer-login .row .col2:nth-of-type(2) {
    margin-top: 25px;
  }
}
#customer-login .row .col2:nth-of-type(2) h2 {
  font-size: 2.81rem;
  margin-top: 0;
  font-weight: 600;
  line-height: 3.44rem;
}
@media (max-width: 768px) {
  #customer-login .row .col2:nth-of-type(2) h2 {
    font-size: 2rem;
    line-height: 2.24rem;
  }
}
@media (max-width: 768px) {
  #customer-login .row .col2:nth-of-type(2) .connexion {
    width: 100%;
  }
}
#customer-login .row .col2:nth-of-type(2) .connexion .bloc-form {
  background-color: #2A2829;
  padding: 65px;
  width: 750px;
}
@media (max-width: 1024px) {
  #customer-login .row .col2:nth-of-type(2) .connexion .bloc-form {
    padding: 40px;
    width: 700px;
  }
}
@media (max-width: 768px) {
  #customer-login .row .col2:nth-of-type(2) .connexion .bloc-form {
    width: 100%;
  }
}
#customer-login .row .col2:nth-of-type(2) .connexion .bloc-form h3 {
  color: #007096;
  font-size: 2.19rem;
  margin-top: 0;
  font-weight: 600;
  text-align: center;
  margin-bottom: 26px;
}
@media (max-width: 1024px) {
  #customer-login .row .col2:nth-of-type(2) .connexion .bloc-form h3 {
    font-size: 1.63rem;
  }
}
#customer-login .row .col2:nth-of-type(2) .connexion .bloc-form p, #customer-login .row .col2:nth-of-type(2) .connexion .bloc-form em {
  color: white;
}
#customer-login .row .col2:nth-of-type(2) .connexion .bloc-form .notice {
  margin-top: 30px;
  font-size: 0.88rem;
}
#customer-login .row .col2:nth-of-type(2) .connexion .bloc-form a {
  color: #007096;
}
#customer-login .row .col2:nth-of-type(2) .connexion .bloc-form .woocommerce-form {
  margin: 0;
  border: none;
  padding: 0;
}
#customer-login .row .col2:nth-of-type(2) .connexion .bloc-form .woocommerce-form .form-row label {
  display: none;
}
#customer-login .row .col2:nth-of-type(2) .connexion .bloc-form .woocommerce-form .form-row .input-text {
  border-radius: 20px 0 20px 0;
  background-color: white;
  border: 1px solid #4F5758;
  padding: 20px 26px;
  color: #2A2829;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  line-height: 1;
}
@media (max-width: 1024px) {
  #customer-login .row .col2:nth-of-type(2) .connexion .bloc-form .woocommerce-form .form-row .input-text {
    padding: 10px 26px;
  }
}
#customer-login .row .col2:nth-of-type(2) .connexion .bloc-form .woocommerce-form .form-row input::-moz-placeholder {
  color: #2A2829;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  line-height: 1;
}
#customer-login .row .col2:nth-of-type(2) .connexion .bloc-form .woocommerce-form .form-row input::placeholder {
  color: #2A2829;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  line-height: 1;
}
#customer-login .row .col2:nth-of-type(2) .connexion .bloc-form .woocommerce-form .form-row .show-password-input {
  top: unset;
  transform: none;
}
#customer-login .row .col2:nth-of-type(2) .connexion .bloc-form .woocommerce-form .form-row button[type=submit] {
  background-color: #007096;
  border: none;
  padding: 20px 26px;
  border-radius: 20px 0 20px 0;
  width: 100%;
  margin-top: 20px;
  color: white;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  line-height: 1;
  font-weight: 400;
}
@media (max-width: 1024px) {
  #customer-login .row .col2:nth-of-type(2) .connexion .bloc-form .woocommerce-form .form-row button[type=submit] {
    padding: 15px 26px !important;
  }
}
@media (max-width: 420px) {
  #customer-login .row .col2:nth-of-type(2) .connexion .bloc-form .woocommerce-form .form-row-first {
    width: 100%;
  }
  #customer-login .row .col2:nth-of-type(2) .connexion .bloc-form .woocommerce-form .form-row-last {
    width: 100%;
  }
}
#customer-login .row .col2:nth-of-type(2) .connexion .bloc-form .woocommerce-form .options {
  display: flex;
  justify-content: center;
}
@media (max-width: 420px) {
  #customer-login .row .col2:nth-of-type(2) .connexion .bloc-form .woocommerce-form .options {
    flex-direction: column;
    align-items: center;
  }
}
#customer-login .row .col2:nth-of-type(2) .connexion .bloc-form .woocommerce-form .lost_password {
  display: inline;
  margin-right: 10px;
}
#customer-login .row .col2:nth-of-type(2) .connexion .bloc-form .woocommerce-form .lost_password a,
#customer-login .row .col2:nth-of-type(2) .connexion .bloc-form .woocommerce-form .lost_password p {
  color: white;
  text-decoration: underline;
}
#customer-login .row .col2:nth-of-type(2) .connexion .bloc-form .woocommerce-form .subscribe-button {
  display: inline;
  color: white;
  text-decoration: underline;
  cursor: pointer;
}
#customer-login .row .col2:nth-of-type(2) .connexion .no-account {
  display: none;
}

/*************** Compte *****************/
.page-mon-compte,
.page-documentation,
.page-template-template-avantages-membres {
  background-color: #2A2829;
}
.page-mon-compte::after,
.page-documentation::after,
.page-template-template-avantages-membres::after {
  content: "";
  position: absolute;
  top: 0;
  z-index: -100;
  background-image: url(images/courbe-blanche-compte.svg);
  background-position: center bottom;
  background-size: cover;
  display: block;
  height: 900px;
  width: 100vw;
}
.page-mon-compte .woocommerce,
.page-documentation .woocommerce,
.page-template-template-avantages-membres .woocommerce {
  display: flex;
}
@media (max-width: 1024px) {
  .page-mon-compte .woocommerce,
  .page-documentation .woocommerce,
  .page-template-template-avantages-membres .woocommerce {
    flex-direction: column;
  }
}
.page-mon-compte .woocommerce-MyAccount-navigation,
.page-documentation .woocommerce-MyAccount-navigation,
.page-template-template-avantages-membres .woocommerce-MyAccount-navigation {
  width: 22%;
  flex: 0 0 auto;
  float: none;
}
@media (max-width: 1024px) {
  .page-mon-compte .woocommerce-MyAccount-navigation,
  .page-documentation .woocommerce-MyAccount-navigation,
  .page-template-template-avantages-membres .woocommerce-MyAccount-navigation {
    width: 100%;
  }
  .page-mon-compte .woocommerce-MyAccount-navigation.active::before,
  .page-documentation .woocommerce-MyAccount-navigation.active::before,
  .page-template-template-avantages-membres .woocommerce-MyAccount-navigation.active::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.65);
    z-index: 2;
  }
}
.page-mon-compte .woocommerce-MyAccount-navigation a,
.page-documentation .woocommerce-MyAccount-navigation a,
.page-template-template-avantages-membres .woocommerce-MyAccount-navigation a {
  color: white;
}
.page-mon-compte .woocommerce-MyAccount-navigation .liens-cat,
.page-documentation .woocommerce-MyAccount-navigation .liens-cat,
.page-template-template-avantages-membres .woocommerce-MyAccount-navigation .liens-cat {
  width: 100%;
  padding: 10px 20px;
  background-color: #2A2829;
  border-radius: 15px 0;
  color: white;
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 13px;
}
@media (max-width: 1024px) {
  .page-mon-compte .woocommerce-MyAccount-navigation .liens-cat,
  .page-documentation .woocommerce-MyAccount-navigation .liens-cat,
  .page-template-template-avantages-membres .woocommerce-MyAccount-navigation .liens-cat {
    background-color: transparent;
  }
}
.page-mon-compte .woocommerce-MyAccount-navigation .liens-cat ul,
.page-documentation .woocommerce-MyAccount-navigation .liens-cat ul,
.page-template-template-avantages-membres .woocommerce-MyAccount-navigation .liens-cat ul {
  list-style: disc;
  padding-left: 35px;
  margin-top: 15px;
}
.page-mon-compte .woocommerce-MyAccount-navigation .liens-cat ul li.active::marker,
.page-documentation .woocommerce-MyAccount-navigation .liens-cat ul li.active::marker,
.page-template-template-avantages-membres .woocommerce-MyAccount-navigation .liens-cat ul li.active::marker {
  color: #007096;
}
.page-mon-compte .woocommerce-MyAccount-navigation .liens-cat ul li.active a,
.page-documentation .woocommerce-MyAccount-navigation .liens-cat ul li.active a,
.page-template-template-avantages-membres .woocommerce-MyAccount-navigation .liens-cat ul li.active a {
  color: #007096;
}
.page-mon-compte .woocommerce-MyAccount-navigation .liens-cat ul li a,
.page-documentation .woocommerce-MyAccount-navigation .liens-cat ul li a,
.page-template-template-avantages-membres .woocommerce-MyAccount-navigation .liens-cat ul li a {
  color: white;
}
.page-mon-compte .woocommerce-MyAccount-navigation h2,
.page-documentation .woocommerce-MyAccount-navigation h2,
.page-template-template-avantages-membres .woocommerce-MyAccount-navigation h2 {
  color: #007096;
  font-size: 2.19rem;
  margin-top: 0;
  font-weight: 700;
  margin-bottom: 26px;
}
@media (max-width: 1024px) {
  .page-mon-compte .woocommerce-MyAccount-navigation h2,
  .page-documentation .woocommerce-MyAccount-navigation h2,
  .page-template-template-avantages-membres .woocommerce-MyAccount-navigation h2 {
    margin-bottom: 50px;
  }
}
@media (max-width: 1024px) {
  .page-mon-compte .woocommerce-MyAccount-navigation > ul,
  .page-documentation .woocommerce-MyAccount-navigation > ul,
  .page-template-template-avantages-membres .woocommerce-MyAccount-navigation > ul {
    position: absolute;
    width: 300px;
    background-color: #007096;
    padding: 20px;
    left: -300px;
    z-index: 2;
    transition: all 0.5s ease-out;
    top: 45px;
  }
  .page-mon-compte .woocommerce-MyAccount-navigation > ul.toggle,
  .page-documentation .woocommerce-MyAccount-navigation > ul.toggle,
  .page-template-template-avantages-membres .woocommerce-MyAccount-navigation > ul.toggle {
    left: 0;
    box-shadow: 4px 6px 20px 0px rgba(0, 0, 0, 0.231372549);
  }
  .page-mon-compte .woocommerce-MyAccount-navigation > ul::after,
  .page-documentation .woocommerce-MyAccount-navigation > ul::after,
  .page-template-template-avantages-membres .woocommerce-MyAccount-navigation > ul::after {
    content: "";
    background-color: #007096;
    background-image: url(images/icon-dahsboard.svg);
    background-size: 30px;
    background-position: 50% 24px;
    background-repeat: no-repeat;
    width: 70px;
    height: 70px;
    position: absolute;
    right: -70px;
    top: 0px;
    border-radius: 0px 0px 40px 0px;
    z-index: 1;
    box-shadow: 0px 6px 20px 0px rgba(0, 0, 0, 0.231372549);
  }
}
.page-mon-compte .woocommerce-MyAccount-navigation ul .woocommerce-MyAccount-navigation-link,
.page-documentation .woocommerce-MyAccount-navigation ul .woocommerce-MyAccount-navigation-link,
.page-template-template-avantages-membres .woocommerce-MyAccount-navigation ul .woocommerce-MyAccount-navigation-link {
  margin-bottom: 13px;
}
.page-mon-compte .woocommerce-MyAccount-navigation ul .woocommerce-MyAccount-navigation-link a,
.page-documentation .woocommerce-MyAccount-navigation ul .woocommerce-MyAccount-navigation-link a,
.page-template-template-avantages-membres .woocommerce-MyAccount-navigation ul .woocommerce-MyAccount-navigation-link a {
  display: block;
  width: 100%;
  padding: 10px 20px;
  background-color: #2A2829;
  border-radius: 15px 0;
  color: white;
  font-size: 16px;
  font-weight: 300;
}
@media (max-width: 1024px) {
  .page-mon-compte .woocommerce-MyAccount-navigation ul .woocommerce-MyAccount-navigation-link a,
  .page-documentation .woocommerce-MyAccount-navigation ul .woocommerce-MyAccount-navigation-link a,
  .page-template-template-avantages-membres .woocommerce-MyAccount-navigation ul .woocommerce-MyAccount-navigation-link a {
    background-color: transparent;
  }
}
.page-mon-compte .woocommerce-MyAccount-navigation ul .woocommerce-MyAccount-navigation-link.woocommerce-MyAccount-navigation-link--customer-logout a,
.page-documentation .woocommerce-MyAccount-navigation ul .woocommerce-MyAccount-navigation-link.woocommerce-MyAccount-navigation-link--customer-logout a,
.page-template-template-avantages-membres .woocommerce-MyAccount-navigation ul .woocommerce-MyAccount-navigation-link.woocommerce-MyAccount-navigation-link--customer-logout a {
  background-color: #E5E5E5;
  color: #007096;
}
.page-mon-compte .woocommerce-MyAccount-navigation ul .woocommerce-MyAccount-navigation-link.woocommerce-MyAccount-navigation-link--members-area,
.page-documentation .woocommerce-MyAccount-navigation ul .woocommerce-MyAccount-navigation-link.woocommerce-MyAccount-navigation-link--members-area,
.page-template-template-avantages-membres .woocommerce-MyAccount-navigation ul .woocommerce-MyAccount-navigation-link.woocommerce-MyAccount-navigation-link--members-area {
  display: none;
}
.page-mon-compte .woocommerce-MyAccount-content,
.page-documentation .woocommerce-MyAccount-content,
.page-template-template-avantages-membres .woocommerce-MyAccount-content {
  width: calc(78% + 47px);
  padding: 0 47px 35px 47px;
  background-color: white;
  position: relative;
  margin-bottom: 30px;
  flex: 0 0 auto;
  float: none;
}
@media (max-width: 1024px) {
  .page-mon-compte .woocommerce-MyAccount-content,
  .page-documentation .woocommerce-MyAccount-content,
  .page-template-template-avantages-membres .woocommerce-MyAccount-content {
    width: 100%;
    padding: 35px 47px 35px 47px;
  }
}
@media (max-width: 768px) {
  .page-mon-compte .woocommerce-MyAccount-content,
  .page-documentation .woocommerce-MyAccount-content,
  .page-template-template-avantages-membres .woocommerce-MyAccount-content {
    padding: 20px;
  }
}
.page-mon-compte .woocommerce-MyAccount-content h2,
.page-documentation .woocommerce-MyAccount-content h2,
.page-template-template-avantages-membres .woocommerce-MyAccount-content h2 {
  font-size: 2.19rem;
  font-family: "Poppins", sans-serif;
  color: #007096;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 26px;
}
.page-mon-compte .woocommerce-MyAccount-content h3,
.page-documentation .woocommerce-MyAccount-content h3,
.page-template-template-avantages-membres .woocommerce-MyAccount-content h3 {
  font-family: "Poppins", sans-serif;
  color: #4F5758;
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 26px;
}

/*************** Dashboard woocommerce *****************/
.home .woocommerce-MyAccount-content {
  display: flex !important;
  flex-direction: column;
}
.home .woocommerce-MyAccount-content .notif {
  order: -1;
}
.home .woocommerce-table {
  width: 100%;
}
.home .woocommerce-table tr {
  border: 1px solid #2A2829;
}
.home .woocommerce-table tr th {
  padding: 20px;
  color: #2A2829;
  font-weight: 400;
}
.home .woocommerce-table tr td {
  padding: 20px;
  text-align: center;
}
.home .adresse-facturation p {
  margin-bottom: 0;
}
.home .adresse-facturation a {
  margin-top: 10px;
  display: block;
}

/*************** Documentation *****************/
.page-documentation .woocommerce::before {
  content: "";
  display: table;
}
.page-documentation .woocommerce-MyAccount-navigation {
  float: left;
}
.page-documentation .woocommerce-MyAccount-navigation a {
  color: white;
}
.page-documentation .woocommerce-MyAccount-content {
  float: right;
}
.page-documentation .woocommerce-MyAccount-content #searchform {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 48px;
  margin-bottom: 72px;
}
.page-documentation .woocommerce-MyAccount-content #searchform input[type=text] {
  width: 100%;
  padding: 10px 20px;
  border-radius: 20px 0;
  border: 1px solid #2A2829;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  line-height: 1;
  color: #2A2829;
}
.page-documentation .woocommerce-MyAccount-content #searchform input::-moz-placeholder {
  color: #2A2829;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  line-height: 1;
}
.page-documentation .woocommerce-MyAccount-content #searchform input::placeholder {
  color: #2A2829;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  line-height: 1;
}
.page-documentation .woocommerce-MyAccount-content #searchform #search-btn {
  position: absolute;
  background-image: url(images/ico-search.svg);
  background-size: contain;
  width: 27px;
  height: 27px;
  right: 20px;
  border: none;
  background-color: transparent;
}
.page-documentation .woocommerce-MyAccount-content .list-docu .categorie-section {
  margin-bottom: 72px;
}
.page-documentation .woocommerce-MyAccount-content .list-docu .categorie-section:last-of-type {
  margin-bottom: 0px;
}
.page-documentation .woocommerce-MyAccount-content .list-docu .categorie-section h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 26px;
}
.page-documentation .woocommerce-MyAccount-content .list-docu .categorie-section .documents-list .document {
  display: flex;
  align-items: center;
  padding: 10px 20px 10px 10px;
  border-bottom: 1px solid #4F5758;
  position: relative;
}
@media (max-width: 768px) {
  .page-documentation .woocommerce-MyAccount-content .list-docu .categorie-section .documents-list .document {
    flex-wrap: wrap;
    padding: 10px;
  }
}
.page-documentation .woocommerce-MyAccount-content .list-docu .categorie-section .documents-list .document h3 {
  flex: 0 0 30%;
  font-size: 1.38rem;
  margin: 0;
  position: relative;
  display: flex;
  align-items: center;
  padding-right: 20px;
}
@media (max-width: 768px) {
  .page-documentation .woocommerce-MyAccount-content .list-docu .categorie-section .documents-list .document h3 {
    padding-right: 0;
    padding-bottom: 20px;
    flex: 0 0 100%;
  }
}
.page-documentation .woocommerce-MyAccount-content .list-docu .categorie-section .documents-list .document h3::after {
  content: "";
  border-right: 1px solid #4F5758;
  height: 32px;
  width: 1px;
  display: block;
  position: absolute;
  right: 0;
}
@media (max-width: 768px) {
  .page-documentation .woocommerce-MyAccount-content .list-docu .categorie-section .documents-list .document h3::after {
    display: none;
  }
}
.page-documentation .woocommerce-MyAccount-content .list-docu .categorie-section .documents-list .document .content {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 576px) {
  .page-documentation .woocommerce-MyAccount-content .list-docu .categorie-section .documents-list .document .content {
    flex-direction: column;
  }
}
.page-documentation .woocommerce-MyAccount-content .list-docu .categorie-section .documents-list .document .desc {
  flex: 0 0 55%;
  padding-left: 40px;
}
@media (max-width: 768px) {
  .page-documentation .woocommerce-MyAccount-content .list-docu .categorie-section .documents-list .document .desc {
    flex: 0 1 85%;
    padding-left: 0;
    padding-right: 20px;
  }
}
.page-documentation .woocommerce-MyAccount-content .list-docu .categorie-section .documents-list .document .desc p {
  font-size: 1rem;
  font-weight: 300;
  margin-bottom: 0;
}
.page-documentation .woocommerce-MyAccount-content .list-docu .categorie-section .documents-list .document .buttons {
  flex: 0 0 15%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.page-documentation .woocommerce-MyAccount-content .list-docu .categorie-section .documents-list .document .buttons .see {
  width: 33px;
  height: 24px;
  background-image: url(images/ico-eye.svg);
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
}
.page-documentation .woocommerce-MyAccount-content .list-docu .categorie-section .documents-list .document .buttons .download {
  width: 32px;
  height: 32px;
  background-image: url(images/ico-download.svg);
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
  margin-left: 34px;
}
@media (max-width: 576px) {
  .page-documentation .woocommerce-MyAccount-content .list-docu .categorie-section .documents-list .document .buttons .download {
    margin-left: 15px;
  }
}
.page-documentation .woocommerce-MyAccount-content .list-docu .categorie-section .documents-list .document .pastille-unread {
  position: absolute;
  background-color: #007096;
  top: 50%;
  left: -10px;
  width: 7px;
  height: 7px;
  border-radius: 100%;
}
@media (max-width: 768px) {
  .page-documentation .woocommerce-MyAccount-content .list-docu .categorie-section .documents-list .document .pastille-unread {
    top: 21%;
  }
}
.page-documentation .woocommerce-MyAccount-content .list-docu .categorie-section[data-term=nouvelles] h3 {
  flex: 0 0 27%;
}
.page-documentation .woocommerce-MyAccount-content .list-docu .categorie-section[data-term=nouvelles] .desc {
  flex: 0 0 46% !important;
  padding: 0 40px;
  position: relative;
  display: flex;
  align-items: center;
}
.page-documentation .woocommerce-MyAccount-content .list-docu .categorie-section[data-term=nouvelles] .desc::after {
  content: "";
  border-right: 1px solid #4F5758;
  height: 32px;
  width: 1px;
  display: block;
  position: absolute;
  right: 0;
}
.page-documentation .woocommerce-MyAccount-content .list-docu .categorie-section[data-term=nouvelles] .date {
  flex: 0 0 27%;
  padding-left: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
  font-weight: 300;
}
.page-documentation .woocommerce-MyAccount-content .list-docu .categorie-section[data-term=nouvelles] .date:after {
  content: "";
  background-image: url(images/ico-arrow-right.svg);
  width: 14px;
  height: 24px;
  display: block;
}
.page-documentation footer {
  clear: both;
}

/*************** Avantages membres *****************/
.page-avantages-membres .woocommerce-MyAccount-content .list-avantages {
  margin-top: 48px;
}
.page-avantages-membres .woocommerce-MyAccount-content .list-avantages .categorie-section {
  margin-bottom: 72px;
}
.page-avantages-membres .woocommerce-MyAccount-content .list-avantages .categorie-section:last-of-type {
  margin-bottom: 0px;
}
.page-avantages-membres .woocommerce-MyAccount-content .list-avantages .categorie-section .nom-cat {
  margin-bottom: 30px;
}
.page-avantages-membres .woocommerce-MyAccount-content .list-avantages .categorie-section .nom-cat h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0px;
}
.page-avantages-membres .woocommerce-MyAccount-content .list-avantages .categorie-section .avantages-list {
  border-bottom: 1px solid #2A2829;
  padding-bottom: 30px;
  margin-bottom: 30px;
}
.page-avantages-membres .woocommerce-MyAccount-content .list-avantages .categorie-section .avantages-list:last-of-type {
  border-bottom: 0;
}
.page-avantages-membres .woocommerce-MyAccount-content .list-avantages .categorie-section .avantages-list .avantage-item {
  border-bottom: 1px solid #2A2829;
  margin-bottom: 20px;
}
@media (max-width: 576px) {
  .page-avantages-membres .woocommerce-MyAccount-content .list-avantages .categorie-section .avantages-list .avantage-item .row {
    flex-direction: column;
  }
}
.page-avantages-membres .woocommerce-MyAccount-content .list-avantages .categorie-section .avantages-list .avantage-item .row .col2:nth-of-type(1) {
  width: 26%;
}
@media (max-width: 576px) {
  .page-avantages-membres .woocommerce-MyAccount-content .list-avantages .categorie-section .avantages-list .avantage-item .row .col2:nth-of-type(1) {
    width: 100%;
    display: flex;
    align-items: center;
  }
  .page-avantages-membres .woocommerce-MyAccount-content .list-avantages .categorie-section .avantages-list .avantage-item .row .col2:nth-of-type(1) img {
    width: 50%;
    margin: 0 auto;
  }
}
.page-avantages-membres .woocommerce-MyAccount-content .list-avantages .categorie-section .avantages-list .avantage-item .row .col2:nth-of-type(2) {
  width: 74%;
  padding: 0 44px;
  position: relative;
}
@media (max-width: 576px) {
  .page-avantages-membres .woocommerce-MyAccount-content .list-avantages .categorie-section .avantages-list .avantage-item .row .col2:nth-of-type(2) {
    width: 100%;
    padding: 0 44px 0 0;
  }
}
.page-avantages-membres .woocommerce-MyAccount-content .list-avantages .categorie-section .avantages-list .avantage-item .row .col2:nth-of-type(2) .toggle-desc {
  width: 30px;
  height: 30px;
  display: block;
  background-image: url(images/ico-dropdown.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  right: 0;
  top: 20px;
  transform: rotate(-90deg);
  transition: transform 0.3s ease;
}
.page-avantages-membres .woocommerce-MyAccount-content .list-avantages .categorie-section .avantages-list .avantage-item .row .col2:nth-of-type(2) .toggle-desc.toggle {
  transform: rotate(0deg);
}
.page-avantages-membres .woocommerce-MyAccount-content .list-avantages .categorie-section .avantages-list .avantage-item .row .col2:nth-of-type(2) h3 {
  font-size: 1.38rem;
  font-weight: 700;
  margin: 0;
}
.page-avantages-membres .woocommerce-MyAccount-content .list-avantages .categorie-section .avantages-list .avantage-item .row .col2:nth-of-type(2) .desc {
  line-height: 1.63rem;
  display: none;
}
.page-avantages-membres .woocommerce-MyAccount-content .list-avantages .categorie-section .avantages-list .avantage-item .row .col2:nth-of-type(2) .desc p {
  font-weight: 300;
}

.wp-block-woocommerce-empty-cart-block .wc-block-cart__empty-cart__title {
  font-size: 2rem;
  color: #E5E5E5;
  height: 100%;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.wp-block-woocommerce-empty-cart-block .wc-block-cart__empty-cart__title::before {
  display: none !important;
}
.wp-block-woocommerce-empty-cart-block .is-style-dots,
.wp-block-woocommerce-empty-cart-block h2.wp-block-heading:nth-of-type(2) {
  display: none;
}
.wp-block-woocommerce-empty-cart-block div[data-block-name="woocommerce/product-new"] {
  display: none;
}

.woocommerce-order-received .woocommerce-order p:not(.woocommerce-notice) {
  display: none;
}

.woocommerce-page table.wc-block-cart-items thead span {
  font-size: 1.125rem;
}
.woocommerce-page table.wc-block-cart-items thead .wc-block-cart-items__header-image {
  width: 70%;
  padding: 14px 0 14px 16px !important;
}
.woocommerce-page table.wc-block-cart-items thead .wc-block-cart-items__header-image span {
  width: 100%;
  display: block;
  text-align: left;
}
.woocommerce-page table.wc-block-cart-items thead .wc-block-cart-items__header-product {
  display: none;
}
.woocommerce-page table.wc-block-cart-items thead .wc-block-cart-items__header-total {
  width: 70%;
}
.woocommerce-page table.wc-block-cart-items tbody .wc-block-cart-items__row {
  border-top: 1px solid hsla(0, 0%, 7%, 0.11);
}
.woocommerce-page table.wc-block-cart-items tbody .wc-block-cart-items__row .wc-block-cart-item__image {
  display: none;
}
.woocommerce-page table.wc-block-cart-items tbody .wc-block-cart-items__row .wc-block-cart-item__total {
  border-top: none;
  width: 30%;
}
@media (max-width: 768px) {
  .woocommerce-page table.wc-block-cart-items tbody .wc-block-cart-items__row .wc-block-cart-item__total {
    width: auto;
  }
}
.woocommerce-page table.wc-block-cart-items tbody .wc-block-cart-items__row .wc-block-cart-item__product {
  border-top: none;
  width: 70%;
}
@media (max-width: 768px) {
  .woocommerce-page table.wc-block-cart-items tbody .wc-block-cart-items__row .wc-block-cart-item__product {
    width: auto;
    padding-left: 30px;
  }
}
.woocommerce-page table.wc-block-cart-items tbody .wc-block-cart-items__row .wc-block-cart-item__product .wc-block-components-product-name {
  font-size: 1.125rem;
}
.woocommerce-page table.wc-block-cart-items tbody .wc-block-cart-items__row .wc-block-cart-item__product .wc-block-components-product-metadata h1 {
  color: black;
  line-height: 1;
  margin: 30px 0;
  display: none;
}
.woocommerce-page .wc-block-components-sidebar h2.wp-block-woocommerce-cart-order-summary-heading-block {
  font-size: 1.125rem;
  padding: 14px;
}

.woocommerce-edit-account .woocommerce-MyAccount-content fieldset {
  border: 1px solid #007096;
  padding: 20px;
  margin: 60px 0;
}
.woocommerce-edit-account .woocommerce-MyAccount-content fieldset legend {
  color: #007096;
  padding: 0 10px;
  font-size: 1.13rem;
}

.notif {
  background-color: #007096;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
  font-weight: 300;
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .notif {
    flex-wrap: wrap;
  }
}
.notif span.icon {
  background-image: url(images/ico-msg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 27px;
  height: 27px;
  display: block;
  flex: 0 0 auto;
  margin-right: 20px;
}
.notif p {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .notif p {
    width: calc(100% - 47px);
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .notif a {
    width: auto;
    margin-left: 47px;
    margin-top: 10px;
  }
}

.woocommerce-info,
.woocommerce-message {
  border-top-color: #007096;
}
.woocommerce-info::before,
.woocommerce-message::before {
  color: #007096;
}

.no_subscriptions.woocommerce-message a {
  display: none !important;
}

/*************** Checkout *****************/
#customer_details {
  margin-bottom: 130px;
}
#customer_details .col-1 {
  width: 58%;
}
@media (max-width: 576px) {
  #customer_details .col-1 {
    width: 100%;
  }
}
#customer_details .col-2 {
  width: 38%;
}
@media (max-width: 576px) {
  #customer_details .col-2 {
    width: 100%;
    margin-top: 60px;
  }
}
#customer_details .col-2 h3#order_review_heading {
  color: #007096;
}
#customer_details h3 {
  font-size: 2.19rem;
  font-family: "Poppins", sans-serif;
  color: #007096;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 26px;
}

.woocommerce-checkout-payment .woocommerce-info {
  font-size: 14px;
  line-height: 1.3;
}
.woocommerce-checkout-payment .woocommerce-privacy-policy-text p {
  font-size: 1rem;
}

.error404 article .row {
  align-items: center;
}
@media (max-width: 576px) {
  .error404 article .row {
    flex-direction: column;
  }
}
@media (max-width: 576px) {
  .error404 article .row .col2 {
    width: 100%;
  }
}
.error404 article .row .col2:first-of-type .container-image {
  width: 512px;
  height: 617px;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .error404 article .row .col2:first-of-type .container-image {
    width: 100%;
    height: 400px;
    margin-left: 50px;
  }
}
@media (max-width: 576px) {
  .error404 article .row .col2:first-of-type .container-image {
    margin-left: 0;
    width: 80%;
    height: 300px;
    margin: 0 auto;
  }
}
.error404 article .row .col2:first-of-type .container-image img {
  border-radius: 500px 500px 0 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.error404 article .row .col2:first-of-type .container-image::before {
  content: "";
  position: absolute;
  display: block;
  background-color: #007096;
  width: 322px;
  height: 322px;
  bottom: -50px;
  left: -230px;
  border-radius: 100%;
  z-index: -1;
}
@media (max-width: 768px) {
  .error404 article .row .col2:first-of-type .container-image::before {
    bottom: 100px;
  }
}
@media (max-width: 576px) {
  .error404 article .row .col2:first-of-type .container-image::before {
    right: -130px;
    left: unset;
  }
}
.error404 article .row .col2:first-of-type .container-image::after {
  content: "";
  position: absolute;
  display: block;
  background-color: #2A2829;
  width: 160px;
  height: 53px;
  top: 100px;
  right: -80px;
  border-radius: 40px;
  z-index: 2;
}
@media (max-width: 768px) {
  .error404 article .row .col2:first-of-type .container-image::after {
    display: none;
  }
}
.error404 article .row .col2:first-of-type .container-image .el3 {
  position: absolute;
  display: block;
  background-color: #2A2829;
  width: 120px;
  height: 32px;
  bottom: 30px;
  left: -80px;
  border-radius: 40px;
  z-index: 2;
}
@media (max-width: 768px) {
  .error404 article .row .col2:first-of-type .container-image .el3 {
    width: 100px;
  }
}
.error404 article .row .col2:nth-of-type(2) {
  position: relative;
  z-index: 2;
}
@media (max-width: 576px) {
  .error404 article .row .col2:nth-of-type(2) {
    margin-top: -100px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
}
.error404 article .row .col2:nth-of-type(2) h1 {
  font-size: 8.06rem;
  line-height: 1;
}
@media (max-width: 576px) {
  .error404 article .row .col2:nth-of-type(2) h2 {
    text-align: center;
  }
}
.error404 footer {
  margin-top: 100px;
}
@media (max-width: 768px) {
  .error404 footer {
    margin-top: 50px;
  }
}

.woocommerce-page * {
  font-family: "Poppins", sans-serif;
}

.et-db #et-boc .et-l .et_pb_module a {
  color: #007096 !important;
}

.wc-block-components-button,
.woocommerce-Button,
.single_add_to_cart_button,
.button,
.et-db #et-boc .et-l .et_pb_wc_add_to_cart_0 .button,
.frm_final_submit {
  background-color: #007096 !important;
  border: none !important;
  color: white !important;
  border-radius: 40px 0px !important;
  padding: 20px 40px !important;
  font-weight: 400 !important;
  font-size: 1.38rem !important;
  font-family: "Poppins", sans-serif;
}
.wc-block-components-button:hover,
.woocommerce-Button:hover,
.single_add_to_cart_button:hover,
.button:hover,
.et-db #et-boc .et-l .et_pb_wc_add_to_cart_0 .button:hover,
.frm_final_submit:hover {
  background-color: #2A2829 !important;
  color: white !important;
}

.woocommerce-orders-table__cell-order-actions a {
  padding: 10px 30px !important;
  font-size: 1rem !important;
  display: inline-block;
  margin: 10px 0 !important;
}

.et_pb_button::after {
  display: none;
}

.et_pb_button,
.et_pb_button.et_pb_bg_layout_light,
.et-db #et-boc .et-l .et_pb_module a.et_pb_button {
  background-color: #007096 !important;
  color: white !important;
  padding: 10px 20px !important;
  border-radius: 25px 0 !important;
  display: inline-block !important;
  text-align: center !important;
  font-weight: 400 !important;
  white-space: nowrap !important;
}

.wc-block-components-totals-coupon__form .wc-block-components-button {
  padding: 10px 40px !important;
}

.checkout_coupon .button {
  padding: 15px 40px !important;
}

.variations {
  margin-bottom: 0;
}
.variations td.label label {
  margin-top: 10px;
  display: block;
}

.checkout,
.cart {
  --wc-green: $blue;
}
.checkout select,
.cart select {
  font-family: inherit;
  font-weight: 400;
  letter-spacing: normal;
  padding: 0.5em;
  display: block;
  background-color: white;
  border: 1px solid #4F5758;
  border-radius: 4px;
  color: #2A2829;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  line-height: normal;
  height: auto;
}

.acf-field,
.form-field {
  padding: 3px !important;
  border-top: none !important;
  margin-bottom: 6px !important;
}
.acf-field .acf-label,
.form-field .acf-label {
  margin-bottom: 5px !important;
}
.acf-field .acf-label label,
.form-field .acf-label label {
  font-size: 1.13rem;
  font-weight: 400 !important;
}
.acf-field select,
.acf-field input,
.form-field select,
.form-field input {
  font-family: inherit;
  font-weight: 400;
  letter-spacing: normal;
  padding: 0.5em !important;
  display: block;
  background-color: white;
  border: 1px solid #4F5758;
  border-radius: 4px;
  color: #2A2829;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  line-height: normal;
  height: auto;
  font-size: 1.13rem !important;
}
.acf-field .acf-file-uploader p,
.form-field .acf-file-uploader p {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #2A2829;
  border-radius: 4px;
  padding: 20px;
}
.acf-field a[data-name=add],
.form-field a[data-name=add] {
  padding: 10px 30px !important;
  font-size: 1rem !important;
  display: inline-block;
  margin-top: 10px;
}

.acf-form-submit {
  margin-top: 60px;
}

.frm_error_style,
.frm_error {
  color: red !important;
}

.form-field {
  padding: 3px;
  margin: 0 0 10px !important;
}
.form-field input,
.form-field textarea {
  border-radius: 4px !important;
  border: 1px solid #4F5758 !important;
  color: #2A2829 !important;
}
.form-field .frm_slimselect {
  border-radius: 4px !important;
  border: 1px solid #4F5758 !important;
  color: #2A2829 !important;
  padding: 10px !important;
}
.form-field .frm_slimselect .ss-single {
  font-size: 1.13rem !important;
}
.form-field input.frm_other_input {
  margin-top: 10px !important;
  width: 100% !important;
  border-radius: 4px !important;
  border: 1px solid #4F5758 !important;
}
.form-field .frm_dropzone {
  border-radius: 4px !important;
  border: 1px solid #4F5758 !important;
  padding: 20px !important;
}
.form-field .frm_dropzone .dz-message {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.form-field label,
.form-field .frm_primary_label {
  line-height: 1.5;
  font-size: 1.13rem !important;
  color: #2A2829 !important;
  font-weight: 400 !important;
}
.form-field.frm_half input,
.form-field.frm_half input[type=text] {
  width: 100% !important;
}
.form-field .frm_label_button_container {
  border: 1px solid #2A2829 !important;
  padding: 10px !important;
  border-radius: 4px !important;
}

.frm_label_button_container.checked-radio {
  background-color: #007096 !important;
  color: white !important;
  border-color: #007096 !important;
}

.page-mon-compte .woocommerce-MyAccount-content h3.profession-form {
  margin-top: 60px !important;
}

.woocommerce-order-details header {
  background-color: transparent;
}
.woocommerce-order-details table.shop_table tr td {
  text-align: left;
}

div.woocommerce header {
  background-color: transparent;
}

.woocommerce-thankyou-order-received {
  display: none;
}/*# sourceMappingURL=styles.css.map */