<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";

/* Montserrat */
@font-face {
  font-family: "Montserrat";
  src: url("/assets/fonts/Montserrat/Montserrat-Regular.ttf");
  font-weight: 400;
}

@font-face {
  font-family: "Montserrat";
  src: url("/assets/fonts/Montserrat/Montserrat-Medium.ttf");
  font-weight: 500;
}

@font-face {
  font-family: "Montserrat";
  src: url("/assets/fonts/Montserrat/Montserrat-SemiBold.ttf");
  font-weight: 600;
}

@font-face {
  font-family: "Montserrat";
  src: url("/assets/fonts/Montserrat/Montserrat-Bold.ttf");
  font-weight: 700;
}

/* Roboto */
@font-face {
  font-family: "Roboto";
  src: url("/assets/fonts/Roboto/Roboto-Regular.ttf");
  font-weight: 400;
}

@font-face {
  font-family: "Roboto";
  src: url("/assets/fonts/Roboto/Roboto-Medium.ttf");
  font-weight: 500;
}

/* Poppins */
@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/Poppins/Poppins-Medium.ttf");
  font-weight: 500;
}

@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/Poppins/Poppins-Bold.ttf");
  font-weight: 700;
}

/* Lobster */
@font-face {
  font-family: "Lobster";
  src: url("/assets/fonts/Lobster/Lobster-Regular.ttf");
  font-weight: 400;
}

* {
  border: none;
  outline: 0;
}

*,
:after,
:before {
  box-sizing: border-box;
}

/* ⚠️ ATTENTION : Checker si "body{overflow:visible} pose des soucis ou non ⚠️ (Sert au position sticky de l'espace-membre) */

body {
  top: 0;
  position: absolute;
  transition: 0.2s;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background-color: #fbfaf9;
  font-size: 0.9375rem;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #28274b;
  font-size: 16px;
  font-weight: 500;
  font-family: "Montserrat", Sans-serif;
  overflow: hidden;
}

b,
li,
p,
span {
  line-height: 1.7em;
}

p b,
p span {
  line-height: normal !important;
}

ul b,
ul span {
  line-height: normal !important;
}

body,
html {
  padding: 0;
  margin: 0;
  width: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
  background-color: #fff;
}

a,
button,
input,
textarea {
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
}

a,
body,
button,
header,
html {
  padding: 0;
  margin: 0;
  background: 0 0;
}

a,
button {
  cursor: pointer;
}

.primary-trigger {
  background-color: var(--primary-color);
  color: #fff;
  border-radius: 50px;
  font-size: 16px;
  height: fit-content;
  padding: 10px 18px;
  box-shadow: var(--box-shadow);
  transition: var(--transition-duration);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-weight: 500;
}

.highlight-text,
.primary-trigger,
.promotion,
.faq-trigger-actived .faq-question,
.blog-post-keyword {
  background: linear-gradient(
    162deg,
    var(--primary-color),
    var(--secondary-color)
  ) !important;
}

.primary-trigger:hover {
  opacity: 0.7;
}

#product-content-description h2 {
  text-align: left;
}

.secondary-trigger {
  color: var(--primary-color);
  display: flex;
  align-items: center;
  font-size: 16px;
  height: fit-content;
  transition: var(--transition-duration);
  padding: 4px 0;
}

.secondary-trigger:hover {
  opacity: 0.7;
}

.third-trigger {
  color: #3d3d3d;
  border: 1px solid #707070;
  border-radius: 50px;
  font-size: 16px;
  height: fit-content;
  padding: 10px 18px;
  transition: var(--transition-duration);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.third-trigger:hover {
  color: #7e7e7e;
  border: 1px solid #8a8a8a;
}

.grabbable {
  cursor: move;
  cursor: grab;
  cursor: -moz-grab;
  cursor: -webkit-grab;
}

.grabbable:active {
  cursor: grabbing;
  cursor: -moz-grabbing;
  cursor: -webkit-grabbing;
}

main {
  margin-top: var(--full-header-height);
}

.display-none {
  display: none !important;
}

.display-block {
  display: block !important;
}

.highlight-text {
  border-radius: 5px;
  padding: 0 8px;
  background: var(--primary-color);
  color: #fff !important;
  line-height: normal !important;
  white-space: nowrap;
}

a {
  text-decoration: none;
  color: var(--primary-color);
}

a:not(.primary-trigger) {
  font-weight: 600;
  transition-duration: var(--transition-duration);
}

a:not(.primary-trigger):hover {
  opacity: 0.6;
}

.blog-post:hover {
  opacity: 0.7 !important;
}

:root {
  --box-shadow: 0px 1px 3px 1px #00000033;
  --box-shadow-bottom: 0px 2px 3px -1px #00000033;
  --transition-duration: 200ms;
  --linear-gradient: 145deg, var(--primary-color) 25%,
    var(--secondary-color) 75%;
  --header-height: 80px;
  --full-header-height: calc(
    var(--header-height) + var(--announcement-bar-height) +
      var(--space-member-bar-height)
  );
  --border-color: #d3d3d3;
  --error-color: #d93025;
}

.header-trigger {
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 8px;
  position: relative;
  cursor: pointer;
}

.header-trigger:hover {
  opacity: 1 !important;
}

.header-trigger span {
  font-size: 16px;
  color: #2f2c35;
  display: inline-block;
  transition: 150ms;
  font-weight: 500;
}

.header-trigger svg {
  transition: 150ms;
}

.header-trigger::after {
  content: "";
  width: 100%;
  height: 3px;
  display: block;
  background: var(--primary-color);
  transition: 150ms;
  bottom: 0;
  left: 0;
  position: absolute;
  opacity: 0;
  transform: scaleY(0);
  transform-origin: bottom;
}

.header-trigger:hover span {
  color: var(--primary-color) !important;
}

.header-trigger:hover svg {
  fill: var(--primary-color) !important;
}

.header-trigger:hover::after {
  transform: scaleY(1);
  opacity: 1;
}

.box {
  display: flex;
  flex-direction: column;
  max-width: 1200px;
  margin: 40px auto;
  width: 100%;
  padding: 0 clamp(15px, 4vw, 60px);
}

.text-align-center {
  text-align: center !important;
}

.text-align-left {
  text-align: left !important;
}

ul,
ol {
  padding-left: 20px;
  margin: 0;
}

li::marker {
  color: var(--primary-color);
}

.faq-trigger-actived .faq-question {
  background-color: var(--primary-color) !important;
  color: #fff !important;
}

.faq-trigger-actived .faq-plus {
  transform: rotate(180deg);
  opacity: 0 !important;
}

.faq-trigger-actived .faq-menos {
  transform: rotate(180deg);
  opacity: 1 !important;
}

.faq-menos {
  font-size: 30px;
  font-weight: 500;
  margin-left: auto;
  opacity: 0;
  position: absolute;
  right: 17px;
  transition: 0.1s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.transform-rotate-180deg {
  transform: rotate(180deg);
}

.margin-top-0 {
  margin-top: 0 !important;
}

.margin-bottom-0 {
  margin-bottom: 0 !important;
}

.primary-border {
  border-style: solid;
  border-width: 2px 1px 1px;
  border-color: var(--primary-color) #dee4ff #dee4ff;
}

.faq-question {
  width: 100%;
  box-shadow: var(--box-shadow);
  color: #393939;
  font-size: 16px;
  font-weight: 500;
  text-align: left;
  transition: var(--transition-duration);
  display: flex;
  align-items: center;
  padding: 14px 16px;
  position: relative;
}

.faq-question svg {
  height: 17px;
}

.faq-answer {
  width: 100%;
  height: 0;
  overflow: hidden;
  transition: var(--transition-duration);
}

.faq-answer p {
  line-height: 1.4em;
}

h1 {
  font-size: clamp(27px, 2vw, 30px);
}

h2 {
  font-size: clamp(25px, 1.8vw, 26px);
  font-weight: 700;
  text-align: center;
  z-index: 1;
}

h3 {
  font-size: clamp(23px, 1.6vw, 22px);
  /* font-size: clamp(18px, 1.2vw, 22px); */
  font-weight: 700;
  text-align: center;
  z-index: 1;
}

#blog-post-container h3 {
  font-size: clamp(18px, 1.2vw, 22px);
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 18px;
}

h1 &gt; b,
h1 &gt; span,
h2 &gt; b,
h2 &gt; span,
h3 &gt; b,
h3 &gt; span,
h4 &gt; b,
h4 &gt; span,
h5 &gt; b,
h5 &gt; span,
h6 &gt; b,
h6 &gt; span {
  line-height: inherit !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 32px;
  margin-bottom: 14px;
  color: #28274b;
  line-height: 1.4;
  font-family: Poppins;
}

p {
  margin: 0;
}

.primary-color {
  color: var(--primary-color);
}

.secondary-color {
  color: var(--secondary-color);
}

.font-weight-500 {
  font-weight: 500;
}

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

.white-space-nowrap {
  white-space: nowrap !important;
}

.blog-box {
  display: flex;
  flex-direction: column;
  flex: 1;
  max-width: 330px;
  cursor: pointer;
  overflow: hidden;
  min-width: 330px;
  margin: 15px;
}

.blog-box img {
  object-fit: cover;
  border-radius: 10px;
  height: 250px;
}

footer {
  margin-top: auto;
}

#footer-container a {
  transition: 0.1s;
  width: fit-content;
  color: #6e6e73;
  font-weight: 500;
  margin-bottom: 5px;
}

footer a:hover {
  opacity: 0.6;
}

.bold {
  font-weight: 600 !important;
}

.simulator-green-header #happy-emoji {
  display: block !important;
}

.simulator-orange-header #neutral-emoji {
  display: block !important;
}

.simulator-red-header #disappointed-emoji {
  display: block !important;
}

.toggler-element {
  width: 100%;
  position: absolute;
  opacity: 0;
  z-index: 100;
  display: flex;
  pointer-events: none;
  max-width: 90vw;
  max-height: 90vh;
  transition: var(--transition-duration);
  transform: translateY(-20px) !important;
}

.toggler-element-active {
  opacity: 1 !important;
  pointer-events: all !important;
  transform: translateY(0) !important;
}

.background-none {
  background: 0 0 !important;
}

#header-resources-container::after {
  display: none;
}

#header-resources-container:hover .toggler-element {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0) !important;
}

#header-resources-menu &gt; .underline-trigger {
  text-align: left;
  margin: 3px 15px;
  color: inherit;
  position: relative;
  width: fit-content;
  font-weight: 500;
}

.underline-trigger {
  position: relative;
  opacity: 1 !important;
}

.underline-trigger:hover {
  color: var(--primary-color) !important;
}

.underline-trigger::after {
  content: "";
  width: 100%;
  height: 2px;
  display: block;
  background: var(--primary-color);
  transition: 150ms;
  bottom: 0;
  left: 0;
  position: absolute;
  opacity: 0;
  margin-bottom: -2px;
  transform: scaleY(0);
  transform-origin: bottom;
}

.underline-trigger:hover::after {
  opacity: 1;
  transform: scaleY(1);
}

.opacity-trigger {
  transition-duration: var(--transition-duration);
}

.brightness-trigger:hover {
  filter: brightness(0.9);
}

.brightness-trigger {
  opacity: 1 !important;
}

.opacity-trigger:hover {
  opacity: 0.6;
}

.overflow-hidden {
  overflow: hidden !important;
}

#menu-trigger {
  display: none;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 70px;
  margin-right: -10px;
  margin-left: -10px;
}

.header-menu-trigger {
  width: 100%;
  padding: 7px 0;
  cursor: pointer;
  transition-duration: var(--transition-duration);
  opacity: 1 !important;
}

.header-menu-trigger:hover .underline-trigger {
  color: var(--primary-color);
}

.header-menu-trigger:hover .underline-trigger::after {
  opacity: 1;
  transform: scaleY(1);
}

#menu-trigger-menu-icon {
  transition: 0.1s;
}

#menu-trigger-cross-icon {
  position: absolute;
  height: 36px;
  transition: 0.1s;
  opacity: 0;
}

.previous-trigger {
  box-shadow: var(--box-shadow);
  width: 40px;
  height: 8px;
  margin-top: 4px;
  border-radius: 200px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 5;
}

.close-trigger {
  border-radius: 100px;
  height: 29px;
  width: 29px;
  padding: 8px;
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--primary-color);
}

.close-trigger &gt; svg {
  height: 30px;
  width: 30px;
}

#payment-container-main-subcontainer {
  display: grid;
  width: 100%;
  height: 100%;
  grid-auto-columns: minmax(0, 1fr);
  grid-auto-flow: column;
  border-radius: 0 0 10px 10px;
  overflow: hidden auto;
}

.loading-circle {
  opacity: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  height: 60%;
  animation: rotating 1s linear infinite;
}

@keyframes rotating {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

.loading-trigger {
  pointer-events: none !important;
}

.loading-trigger &gt; :not(.loading-circle) {
  opacity: 0 !important;
}

.primary-trigger &gt; span {
  line-height: normal !important;
}

.primary-trigger &gt; * {
  transition: var(--transition-duration);
}

.loading-trigger &gt; .loading-circle {
  opacity: 1;
}

button &gt; span {
  line-height: normal;
}

#payment-container-desktop-title {
  margin: 15px 0;
}

#payment-container-mobile-title {
  margin: 8px 0;
  display: none;
  font-size: clamp(18px, 3vw, 19px);
}

#payment-popup-date-cvc-container {
  display: flex;
  gap: 10px;
}

#payment-popup-cvc {
  position: relative;
  flex: 1;
}

.payment-popup-paypal-icon {
  height: 18px;
  width: fit-content;
}

#payment-container-right-container {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 20px 0;
  justify-content: space-between;
  gap: 20px;
  background-color: #f9f9f9;
  border-radius: 0 0 10px 0;
}

#payment-popup-cvc &gt; svg {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 5px;
  margin: auto 0;
}

.payment-popup-right-element {
  display: flex;
  align-items: center;
  padding: 15px 15px 15px 0;
}

.payment-popup-right-element-texts-container {
  display: flex;
  flex-direction: column;
  margin-left: 10px;
}

.payment-popup-right-element &gt; svg {
  min-width: 45px;
}

.padding-top-0 {
  padding-top: 0;
}

#payment-popup-right-second-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 40px;
  height: 100%;
}

#payment-popup-right-second-container p {
  line-height: normal;
}

.height-100 {
  height: 100px;
}

#payment-popup-right-border-bottom {
  width: 100%;
  border-bottom: 1px solid var(--border-color);
}

.flex-column {
  display: flex;
  flex-direction: column;
}

#payment-popup-right-header-container {
  display: flex;
  width: 100%;
  align-items: center;
  padding: 0 20px;
}

#payment-popup-right-second-container p {
  font-size: 15px;
  margin-top: 3px;
}

#payment-popup-date {
  flex: 1;
}

#payment-paypal-input {
  margin: 5px;
  margin-left: 0;
}

#popup-payment-methods-delimiter {
  border-top: 1px solid var(--border-color);
}

#payment-method-paypal-container {
  padding: 0 15px;
  overflow: hidden;
  transition: 0.3s;
}

#product-fixed-bottom-container {
  position: fixed;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  z-index: 50;
  width: 100%;
  box-shadow: var(--box-shadow);
  overflow: hidden;
  padding: 0.6vw 0px;
}

#product-fixed-bottom-container-left-svg {
  position: absolute;
  left: -482px;
  height: clamp(250px, 71vw, 500px);
}

#product-fixed-bottom-container-right-svg {
  position: absolute;
  right: -632px;
  height: clamp(300px, 71vw, 500px);
}

#product-fixed-bottom-desktop-h4 {
  z-index: 5;
  margin: 8px 0;
  text-align: center;
}

#product-fixed-bottom-order-trigger {
  margin: 0 20px;
  z-index: 5;
}

#product-fixed-bottom-mobile-h4 {
  z-index: 5;
  margin: 8px 0;
  display: none;
  text-align: center;
  font-size: clamp(10px, 5.2vw, 22px);
}

@media (max-width: 1000px) {
  .payment-popup-upsell {
    padding-bottom: 40px !important;
  }

  #payment-popup-right-price-container {
    flex-direction: column !important;
    align-items: unset !important;
  }

  #payment-popup-upsell-triggers-container {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #fff;
    left: 0;
    padding: 12px 20px;
    box-shadow: var(--box-shadow);
  }

  .payment-popup-right-element &gt; svg {
    min-width: 30px;
    max-width: 30px;
  }

  #payment-popup-upsell-triggers-container .secured-payment-container {
    display: none;
  }

  #payment-popup-upsell-triggers-container {
    display: flex !important;
    gap: 10px !important;
  }

  #payment-popup-upsell-triggers-container &gt; * {
    width: 100% !important;
  }

  .payment-popup-upsell-first-container {
    flex-direction: column-reverse !important;
  }

  .payment-popup-upsell-first-container &gt; p {
    display: none !important;
  }

  .payment-popup-limited-offer-container {
    display: flex !important;
  }

  #payment-popup-upsell-1,
  #payment-popup-upsell-2 {
    flex-direction: column;
    padding-bottom: 50px;
    gap: 40px !important;
    max-width: 460px;
  }

  #payment-order-summary {
    display: flex !important;
  }

  #payment-container {
    width: 100% !important;
    max-width: none;
    height: 100%;
    max-height: none;
    border-radius: 0 !important;
    position: fixed;
  }

  #payment-container-mobile-title {
    margin: 10px 20px !important;
  }

  #payment-container-header {
    border-radius: 0 !important;
  }

  #payment-container .close-trigger {
    top: 3px;
    right: 3px;
  }

  #payment-container-right-container {
    display: none !important;
  }

  #payment-container-main-subcontainer {
    min-height: initial !important;
    display: flex !important;
  }

  #payment-container-desktop-title {
    display: none !important;
  }

  #payment-container-mobile-title {
    display: block !important;
  }

  #product-fixed-bottom-container {
    flex-direction: column !important;
  }

  #product-fixed-bottom-container button {
    margin-bottom: 8px !important;
  }

  #product-fixed-bottom-desktop-h4 {
    display: none !important;
  }

  #product-fixed-bottom-mobile-h4 {
    display: block !important;
  }

  #header-triggers-container {
    display: none !important;
  }

  #menu-trigger {
    display: flex !important;
  }

  #footer-first-mockup {
    display: none !important;
  }

  #footer-second-mockup {
    display: block !important;
  }

  #free-revision-sheets-container {
    flex-direction: column !important;
  }
}

.our-engagements-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 10px;
}

.logo {
  margin-right: auto;
  display: flex;
  align-items: center;
  font-size: 22px;
  color: var(--primary-color) !important;
  text-decoration: none;
  height: 100%;
  font-weight: 700 !important;
  height: fit-content;
  transition: var(--transition-duration) !important;
  gap: 5px;
}

#header-subcontainer &gt; .logo {
  height: 100%;
}

header {
  width: 100%;
  box-shadow: var(--box-shadow);
  z-index: 90;
  position: fixed;
  top: 0;
  background-color: #fff;
}

#product-subcontainer {
  width: 100%;
  display: flex;
  max-width: 900px;
  margin: 0 auto;
}

#product-image-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 250px;
}

#product-image-container &gt; img {
  width: 100%;
  max-height: 325px;
  overflow: hidden;
  object-fit: contain;
}

/*
#free-revision-sheets-popup-container&gt;img,
#produit img,
#index-mockup-container&gt;img,
#product-image-container&gt;img {
    image-rendering: -webkit-optimize-contrast
}
*/

#header-resources-menu {
  transition: 150ms;
  padding: 9px 0;
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  background-color: #fff;
  border-top: 2px solid var(--primary-color);
  position: absolute;
  width: fit-content;
  cursor: auto;
  box-shadow: var(--box-shadow);
  z-index: 90;
  top: 62px;
  left: 0;
  gap: 4px;
}

#header-resources-container svg {
  margin-left: 3px;
  position: relative;
  top: -1px;
}

#header-resources-container {
  position: relative;
  height: 100%;
  cursor: default;
}

#header-triggers-container {
  display: flex;
  align-items: center;
  height: 100%;
  margin: 0 20px;
  gap: 5px;
}

#header-menu &gt; a:first-child {
  border-top: 1px solid #ddd;
}

.header-menu-actived &gt; svg:first-child {
  transform: rotate(180deg);
  opacity: 0 !important;
}

#header-menu-studentrating-image {
  height: 20px;
}

#header-menu-studentrating-reviews {
  font-size: 15px;
}

.header-menu-actived &gt; svg:last-child {
  transform: rotate(180deg);
  opacity: 1 !important;
}

.z-index-100 {
  z-index: 100 !important;
}

#header-subcontainer {
  width: 100%;
  max-width: 1200px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 0 clamp(10px, 4vw, 60px);
  white-space: nowrap;
  gap: 10px;
  height: var(--header-height);
}

header {
  width: 100%;
  box-shadow: var(--box-shadow);
  z-index: 90;
  position: fixed;
  top: 0;
  background-color: #fff;
}

#header-menu {
  background-color: #fff;
  top: var(--full-header-height);
  flex-direction: column;
  text-align: center;
  box-shadow: var(--box-shadow-bottom);
  max-width: 100vw;
  align-items: center;
}

#header-menu-studentrating-reviews {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: normal;
}

#header-menu-studentrating-reviews &gt; img {
  height: 40px;
  object-fit: contain;
  margin-bottom: 4px;
  margin-top: 5px;
}

#header-menu-studentrating-reviews &gt; div {
  display: flex;
  font-family: Roboto;
  align-items: center;
  margin-bottom: 10px;
}

.logo:hover {
  opacity: 0.6;
}

.logo &gt; img {
  height: 28px;
}

#subjects-sheets-subcontainer {
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 15px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min-content, 300px));
  grid-auto-rows: 1fr;
  margin-bottom: 60px;
}

.subject-sheet img {
  height: 65px;
  margin: 15px 0 10px 0;
}

.subject-sheet span {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-inline-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 1.5em;
  margin: auto 0;
  line-height: normal;
  font-weight: 500;
  text-align: center;
  font-size: 15px;
}

#engagements-main-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

.engagements-title {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  margin: 0;
  line-height: 1.7;
}

#engagements-main-container &gt; div {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 10px 20px;
  min-width: 285px;
  max-width: 285px;
}

.subject-sheet {
  background-color: #f3f5ff;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(7px, 1vw, 15px);
  overflow: hidden;
  font-size: 14px;
}

.subject-sheet h3 {
  font-size: 18px;
}

.subject-sheet li {
  margin: 5px 0;
}

.subject-sheet ul {
  margin-top: 3px;
  width: 230px;
}

#payment-container-header {
  width: 100%;
  background-color: #f3f5ff;
  border-radius: 10px 10px 0 0;
  display: flex;
  padding: 0 20px;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border-color);
  position: relative;
}

#payment-container {
  display: flex;
  flex-direction: column;
  width: 1100px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
}

@media (max-width: 600px) {
  :root {
    --header-height: 65px !important;
  }

  #div_6d5d_0 {
    text-align: center;
  }

  #h1_6d5d_0 {
    font-size: clamp(0px, 7vw, 37px) !important;
    text-align: center !important;
    white-space: initial !important;
  }

  #announcement-bar-desktop {
    display: none;
  }

  #announcement-bar-mobile {
    display: block !important;
  }

  .blog-first-post {
    flex-direction: column-reverse !important;
    align-items: center;
    width: 320px;
    max-width: 380px;
    gap: 0 !important;
  }

  .blog-first-post h3 {
    margin: 0;
    font-weight: 700;
    font-size: 18px;
    padding-top: 15px;
  }

  .blog-first-post &gt; div {
    width: 100% !important;
  }

  #free-revision-sheets-popup-second-subcontainer {
    max-width: 100% !important;
  }

  #free-revision-sheets-popup-container {
    padding: 5px 30px 15px 30px !important;
  }

  #subjects-sheets-subcontainer {
    flex-direction: column;
    align-items: center;
  }

  .subject-sheet {
    width: 100%;
    max-width: 300px !important;
  }

  .subject-sheet span {
    height: auto !important;
  }

  .subject-sheet {
    padding: 15px !important;
  }

  footer {
    font-size: 14px !important;
  }

  #revision-sheets-container {
    display: flex !important;
    flex-direction: column;
    align-items: center;
  }

  #produit,
  #product-subcontainer {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  #index-mockup-container {
    min-width: 150px !important;
  }
}

.secured-payment-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 5px;
}

.secured-payment-container &gt; span {
  font-size: 14px;
  font-style: italic;
  margin: 0 6px 0 4px;
  line-height: normal;
}

.secured-payment-container &gt; svg {
  height: 15px;
}

.product-price {
  font-size: 22px;
  font-weight: 500;
  margin: 5px 0;
  display: flex;
  align-items: center;
  gap: 5px;
}

.single-payment-span {
  font-size: 14px;
  color: #6a6a6a;
  font-style: italic;
  font-weight: 500;
  line-height: normal;
}

@media (max-width: 500px) {
  .swiper {
    width: calc(100vw - 50px) !important;
    max-width: 90vw !important;
  }

  .swiper-button-prev-trigger,
  .swiper-button-next-trigger {
    display: none !important;
  }

  #index-primary-studentrating-desktop-text {
    display: none !important;
  }

  #index-primary-studentrating-mobile-text {
    display: block !important;
  }

  #member-space-content-subcontainer {
    justify-content: center;
  }

  #send-email-container {
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }

  #send-email-container h5,
  #send-email-container p {
    text-align: left;
    width: 100%;
  }

  #send-email-subcontainer {
    max-width: none !important;
  }

  #contact-large-text {
    display: none !important;
  }

  #contact-small-text {
    display: block !important;
  }

  #contact-1-container,
  #contact-3-container,
  #contact-4-container,
  #contact-5-container {
    grid-template-columns: 1fr !important;
  }

  #contact-5-container div {
    margin: 10px 0 !important;
  }

  #contact-5-container input {
    max-width: 100% !important;
  }
}

#document-title {
  padding: 0 clamp(10px, 4vw, 60px);
}

#header-menu .header-menu-trigger {
  color: #2f2c35;
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid #ddd;
  line-height: 30px;
}

.footer-box .toggle-content a:first-child {
  margin-top: 6px;
}

.footer-box-trigger {
  display: none;
}

.footer-box .toggle-content {
  display: flex;
  flex-direction: column;
  line-height: 1.7em;
}

@media (max-width: 360px) {
  .primary-trigger {
    padding: 8px 10px !important;
  }

  .logo {
    font-size: 19px !important;
  }

  .logo &gt; img {
    height: 24px !important;
  }

  #menu-trigger-cross-icon,
  #menu-trigger-menu-icon {
    width: 25px;
  }

  .studentrating-review-img {
    height: 20px !important;
  }

  #index-primary-subcontainer-large-text {
    display: none !important;
  }

  #index-primary-subcontainer-small-text {
    display: block !important;
  }

  #index-primary-subcontainer-studentrating-img {
    margin-left: 0 !important;
  }

  .formation-list {
    display: block !important;
  }
}

#product-list-description {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  /* overflow: hidden; */
}

.blog-post {
  height: 283px;
  width: 333px;
  max-width: 380px;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  display: flex;
  flex-direction: column;
  position: relative;
  color: inherit;
  background-color: #fff;
}

.blog-post-keyword {
  font-size: 12px;
  background-color: var(--primary-color);
  border-radius: 50px;
  color: #fff;
  padding: 3px 10px;
  width: fit-content;
  position: absolute;
  top: 12px;
  right: 12px;
  font-family: Montserrat;
  font-weight: 600;
}

.blog-first-post .blog-post-description,
.second-blog-post .blog-post-description {
  color: #8b898f;
  font-weight: 500;
  margin: 5px 0px 10px 0;
  padding: 0 0;
  display: -webkit-box;
  max-width: 100%;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 15px;
  line-height: 1.5em;
}

.blog-post .blog-post-description {
  color: #8b898f;
  font-weight: 500;
  font-size: 14px;
  padding: 0 15px;
  display: -webkit-box;
  max-width: 100%;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 8px;
}

.second-blog-post .blog-post-author {
  border-top: none !important;
  padding: 0 !important;
}

.blog-post &gt; .blog-post-image {
  width: 100%;
  height: 162px;
  object-fit: cover;
  border-radius: 0px !important;
}

caption {
  caption-side: bottom;
  font-style: italic;
  margin-top: 10px;
}

.blog-post &gt; .blog-post-title {
  margin: 0;
  font-weight: 700;
  font-size: 18px;
  padding: 8px 15px;
}

.blog-post-author {
  color: var(--primary-color);
  border-top: 1px solid var(--border-color);
  padding: 10px 15px;
  margin-top: auto;
  font-size: 12px;
}

.second-blog-post {
  box-shadow: none;
  height: fit-content;
  width: 320px;
  max-width: 380px;
  border-radius: 5px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  color: inherit;
}

.second-blog-post &gt; .blog-post-image {
  border-radius: 5px;
  width: 100%;
  height: 162px;
}

.second-blog-post &gt; .blog-post-title {
  padding: 15px 0 0;
  margin: 0;
  font-weight: 700;
  font-size: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pointer-events-none {
  pointer-events: none !important;
}

@media (max-width: 1000px) and (min-height: 600px) {
  #payment-order-summary-container {
    display: flex !important;
  }

  #payment-popup-right-second-container h5 {
    font-size: 16px !important;
  }

  #our-equip-subcontainer {
    justify-content: space-evenly !important;
  }

  #payment-container-right-container {
    display: block !important;
    border-left: none !important;
    background: 0 0 !important;
    padding: 0 !important;
  }

  #payment-popup-right-border-bottom,
  #payment-popup-right-header-container {
    display: none !important;
  }

  #payment-container-main-sub-subcontainer {
    flex-direction: column !important;
  }

  #payment-popup-right-second-container {
    padding: 20px clamp(15px, 4vw, 40px) 8px;
  }

  #payment-popup-right-second-container h5 {
    font-size: 17px !important;
  }

  #payment-popup-right-second-container {
    align-items: initial !important;
  }
}

.studentrating-review p {
  font-weight: 400;
}

@media (max-width: 400px) {
  .payment-popup-upsell {
    padding-bottom: 80px !important;
  }

  #payment-popup-upsell-triggers-container {
    flex-direction: column !important;
  }

  #header-product-order-trigger &gt; .trigger-arrow-svg {
    display: none !important;
  }

  #payment-popup-upsell-1,
  #payment-popup-upsell-2 {
    padding-bottom: 100px !important;
  }

  #payment-order-summary-price-container {
    flex-direction: column !important;
  }

  .studentrating-review {
    min-width: calc(100% - 24px) !important;
  }

  #header-menu {
    top: var(--full-header-height) !important;
  }

  #home-free-revision-sheets-container {
    min-width: 200px !important;
  }

  .blog-box {
    min-width: 220px !important;
  }
}

#engagements-background-desktop {
  margin: auto 20px;
  position: absolute;
  z-index: -1;
  height: 100%;
  left: 0;
  right: 0;
  width: calc(100% - 40px);
  object-fit: contain;
}

#engagements-background-mobile {
  display: none;
  margin: auto 20px;
  position: absolute;
  z-index: -1;
  height: 100%;
  left: 0;
  right: 0;
  width: calc(100% - 40px);
  object-fit: contain;
}

.faq-question-container {
  display: flex;
  flex-direction: column;
  width: 800px;
  max-width: 100%;
  box-shadow: var(--box-shadow);
  margin-bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
}

.faq-plus {
  font-size: 30px;
  font-weight: 500;
  margin-left: auto;
  opacity: 1;
  transition: 0.1s;
  padding-left: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 750px) {
  #confirm-order-box {
    flex-direction: column !important;
  }

  #confirm-order-box-subcontainer {
    border-right: none !important;
  }

  #confirm-order-order-summary,
  #confirm-order-interest {
    padding-left: 0px !important;
  }

  #div_1eb9_6 {
    padding-top: 15px !important;
  }

  #member-space-content-folder {
    padding-top: 50px;
  }

  #member-space-navigator {
    border-right-width: 0 !important;
  }

  #your-formater-image {
    min-width: 70%;
  }

  .member-space-nav-border {
    display: block !important;
  }

  #member-space-content-container {
    margin-top: 20px;
  }

  #member-space-primary-container {
    flex-direction: column !important;
    padding: 0 !important;
  }

  #member-space-navigator {
    padding: 0 !important;
  }

  .member-space-nav-trigger,
  #div_9c0b_2 {
    padding: 3px;
    margin: 0 15px;
  }

  .member-space-nav-subtrigger {
    margin: 0 15px !important;
    padding-right: 10px;
  }

  #member-space-content-container {
    padding: 0 clamp(18px, 5vw, 30px) !important;
  }

  #member-space-navigator {
    width: 100% !important;
  }

  #bottom-send-mail-trigger {
    display: none !important;
  }

  #index-primary-rect-svg {
    bottom: -24vw !important;
    right: clamp(-454px, -84vh, -800px) !important;
    height: 93vw !important;
    max-width: 800px !important;
    min-height: 323px !important;
  }

  #index-primary-circle-svg {
    left: -506px !important;
    height: clamp(400px, 84vw, 900px) !important;
    top: -20vw !important;
  }

  #engagements-background-desktop {
    display: none !important;
  }

  #engagements-background-mobile {
    display: block !important;
  }

  #notes-simulator-container {
    grid-template-columns: 1fr !important;
  }

  #studentrating-reviews-container {
    max-width: 324px !important;
  }

  .swiper {
    width: calc(100vw - 100px);
    max-width: 75vw;
  }

  .swiper-button-prev-trigger {
    left: clamp(-42px, -4vw, -40px) !important;
  }

  .swiper-button-next-trigger {
    right: clamp(-42px, -4vw, -40px) !important;
  }

  #footer-box-1 {
    margin: auto auto 20px auto !important;
    align-items: center;
  }

  .footer-box .toggle-content a:first-child {
    padding-top: 0;
  }

  .footer-box .toggle-content {
    height: 0;
  }

  #footer-container {
    flex-direction: column;
  }

  .footer-box-trigger {
    display: flex !important;
    text-align: start;
    color: inherit;
    align-items: center;
  }

  .footer-box .toggle-content {
    transition: var(--transition-duration);
    padding: 0 clamp(10px, 4vw, 60px);
    overflow: hidden;
  }

  .footer-box-span {
    display: none;
  }

  #footer-container {
    padding: 0 !important;
  }

  .footer-box {
    margin: 0 !important;
  }

  .footer-box-span,
  .footer-box-trigger {
    border-top: 1px solid #ddd;
    padding: 10px clamp(10px, 4vw, 60px) !important;
  }

  #technologies-container {
    grid-template-columns: 1fr 1fr 1fr !important;
  }

  .equip-box {
    min-width: 154px !important;
    margin: auto !important;
    max-width: 154px !important;
    padding: 10px 7px;
  }

  #equip-container {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    max-width: 550px !important;
  }

  .equip-box img {
    height: 140px !important;
  }

  #footer-links-container {
    border-top: 1px solid #ddd !important;
    border-bottom: none !important;
  }

  #footer-subcontainer {
    margin-top: 0 !important;
  }

  #footer-mobile-br {
    display: block !important;
  }

  .display-none-less-750px {
    display: none !important;
  }

  #home-product-box:last-child {
    flex-direction: column;
  }

  .formation-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-left: 40px;
  }

  #footer-container .logo {
    margin-left: auto;
    margin-right: auto;
  }

  #social-network-container {
    margin-top: 5px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 7px 10px;
  }
}

@media (min-width: 750px) {
  .formation-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-left: 50px;
  }

  /* ⚠️ ATTENTION : Checker si "body{overflow:visible} pose des soucis ou non ⚠️ (Sert au position sticky de l'espace-membre) */
  body {
    overflow: visible;
  }

  #member-space-navigator,
  #member-space-content-container {
    position: sticky;
    top: 90px;
  }

  #member-space-navigator {
    max-width: 400px;
  }

  #social-network-container {
    margin-left: -5px;
    margin-top: 5px;
    display: flex;
    flex-direction: column;
    gap: 3px;
  }
}

.footer-box {
  display: flex;
  flex-direction: column;
  flex: 25%;
}

.footer-box-span,
.footer-box-trigger {
  font-size: 18px;
  font-weight: 600;
}

#payment-container-mobile-title {
  margin: 10px 0;
}

.position-relative {
  position: relative !important;
}

#payment-method-card-container {
  padding: 0 15px;
  overflow: hidden;
  transition: 0.3s;
}

#payment-main-second-subcontainer {
  display: flex;
  flex-direction: column;
  padding: clamp(15px, 3vw, 20px) clamp(15px, 4vw, 40px) clamp(15px, 4vw, 40px);
}

.margin-top-30 {
  margin-top: 30px;
}

.margin-bottom-20 {
  margin-bottom: 20px;
}

.margin-bottom-10 {
  margin-bottom: 10px;
}

.disabled-trigger {
  opacity: 0.5;
  pointer-events: none !important;
}

.list-check-icons,
.list-number-icons {
  padding: 0;
  margin-left: 4px;
}

.list-check-icons li,
.list-number-icons li {
  list-style: none;
}

#product-order-trigger {
  margin-top: 5px;
  width: 100%;
}

.trigger-arrow-svg {
  height: 16px;
  margin-right: 7px;
}

#payment-popup-card-informations-container {
  border: 1px solid #d5d5d5;
  border-radius: 10px;
  width: 100%;
}

.input-right-icons-container {
  display: flex;
  position: absolute;
  top: 2px;
  bottom: 2px;
  right: 5px;
  align-items: center;
  gap: 5px;
  pointer-events: none;
}

#zefi3479 {
  margin: 20px auto;
  width: fit-content;
}

.width-max {
  width: 100%;
}

.height-auto {
  height: auto;
}

#payment-card-input {
  margin: 5px;
  margin-left: 0;
}

.payment-popup-choose-method-label {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 5px;
  cursor: pointer;
  padding: 10px 0 10px 15px;
}

li {
  margin: 10px 0;
}

.list-check-icons li::before {
  content: "";
  display: inline-block;
  height: 20px;
  width: 20px;
  background-image: url(/assets/icons/circle-check-solid.svg);
  background-repeat: no-repeat;
  position: relative;
  bottom: -4px;
  left: -4px;
}

.list-number-icons li::before {
  content: "";
  display: inline-block;
  height: 20px;
  width: 20px;
  background-repeat: no-repeat;
  position: relative;
  bottom: -4px;
  left: -4px;
}

.list-number-icons li:nth-child(1):before {
  background-image: url(/assets/icons/circle-1.svg);
}

.list-number-icons li:nth-child(2):before {
  background-image: url(/assets/icons/circle-2.svg);
}

.list-number-icons li:nth-child(3):before {
  background-image: url(/assets/icons/circle-3.svg);
}

.list-number-icons li:nth-child(4):before {
  background-image: url(/assets/icons/circle-4.svg);
}

.list-number-icons li:nth-child(5):before {
  background-image: url(/assets/icons/circle-5.svg);
}

@media (min-width: 750px) and (max-width: 1125px) {
  #studentrating-reviews-container {
    max-width: 648px !important;
  }

  .swiper {
    width: 624px !important;
  }
}

#payment-order-summary .before-promotion-product-price,
#payment-order-summary .product-price,
#payment-order-summary-price-container .before-promotion-product-price,
#payment-order-summary-price-container .product-price {
  font-size: 15px !important;
}

#member-space-content-subcontainer h3 {
  margin-bottom: 20px;
}

.member-space-nav-subtrigger,
.member-space-nav-trigger {
  border-radius: 5px;
  transition: 0.1s;
}

.member-space-nav-subtrigger:hover,
.member-space-nav-trigger:hover {
  background-color: var(--primary-color);
  opacity: 0.7;
  color: #fff;
}

.member-space-trigger-actived {
  background-color: var(--primary-color) !important;
  color: #fff;
}

#member-space-breadcrumb {
  font-weight: 400;
}

#member-space-breadcrumb &gt; a {
  transition: var(--transition-duration);
}

#member-space-breadcrumb &gt; a:hover {
  opacity: 0.6;
}

#member-space-content-container {
  display: flex;
  flex: 1;
  height: 100%;
  flex-direction: column;
  gap: 10px;
}

#member-space-navigator {
  height: 100%;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-right: 1px solid var(--border-color);
  margin-right: 30px;
}

.member-space-main-file {
  border-radius: 5px;
  box-shadow: var(--box-shadow);
  background-color: #fff;
  width: 213px;
  height: 178px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  cursor: pointer;
  max-width: 45%;
  transition-duration: var(--transition-duration);
}

.member-space-main-file:hover {
  filter: brightness(0.9);
}

.member-space-main-file:active {
  filter: brightness(0.85);
}

.member-space-main-file &gt; div {
  width: 100%;
  overflow: hidden;
  background: #fff;
  bottom: 0;
  left: 0;
  height: 40px;
  box-shadow: 0 -1px 10px 5px #00000033;
  display: flex;
  align-items: center;
  padding: 4px 10px;
  gap: 5px;
  flex: 1;
  max-height: 40px;
}

.member-space-main-file &gt; img {
  width: 100%;
  object-fit: contain;
  flex: 1;
  overflow: hidden;
}

.member-space-main-file &gt; span {
  position: absolute;
  bottom: 5px;
  left: 5px;
  right: 5px;
  margin: 0 auto;
  font-size: 14px;
  text-align: center;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  padding: 0 clamp(5px, 1.2vw, 15px);
}

.member-space-nav-trigger {
  text-align: left;
  font-size: 17px;
  font-weight: 700;
  padding: 8px;
}

.member-space-nav-subtrigger {
  text-align: left;
  font-size: 15px;
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 3px;
  transition: 0.1s;
  margin-left: 15px;
}

.member-space-nav-subtrigger &gt; span {
  margin-left: 8px;
  max-width: 300px;
}

.member-space-nav-subtrigger-img-container {
  border-radius: 3px;
  background-color: #edeff0;
  min-width: 30px;
  max-width: 30px;
  min-height: 30px;
  max-height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.member-space-secondary-trigger {
  color: var(--primary-color);
  text-align: left;
  transition-duration: var(--transition-duration);
}

.member-space-secondary-trigger:hover {
  opacity: 0.6;
}

.transform-left {
  transform: translateX(-100%) !important;
}

.transform-right {
  transform: translateX(100%) !important;
}

.transform-center {
  transform: translateX(0) !important;
}

.blog-post-image {
  border-radius: 5px;
}

.blog-first-post h3 {
  margin-top: 0;
}

.blog-first-post {
  color: inherit;
}

.blog-first-post-author {
  padding: 0;
  border: none;
  margin-top: 0;
}

.blog-first-post img {
  border-radius: 10px;
  object-fit: cover;
  overflow: hidden;
  height: 100%;
  width: 100%;
}

.simulator-box {
  display: flex;
  flex-direction: column;
  max-width: 278px;
  height: 100%;
  overflow: hidden;
}

.simulator-box &gt; span {
  max-width: fit-content;
  margin-top: auto;
}

.simulator-box &gt; .input-container {
  width: 278px !important;
  max-width: 100%;
}

.simulator-box &gt; .input-container {
  margin-top: 5px;
}

.subject-sheet img {
  height: 65px;
  margin: 15px 0 10px 0;
}

.subject-sheet span {
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.subject-sheet {
  background-color: #f3f5ff;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(7px, 1vw, 15px);
  overflow: hidden;
  flex: 1;
  min-width: 265px;
  max-width: 265px;
  font-size: 14px;
}

.subject-sheet h3 {
  font-size: 18px;
}

.subject-sheet span {
  overflow: hidden;
}

.subject-sheet li {
  margin: 5px 0;
}

.subject-sheet ul {
  margin-top: 3px;
}

.swiper-slide {
  height: auto;
  display: flex;
  align-items: center;
  padding: 0px 12px;
  flex-shrink: 0;
  width: 100%;
  position: relative;
  transition-property: transform;
}

.swiper {
  width: 972px;
  height: fit-content;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.swiper-pointer-events {
  touch-action: pan-y;
}

.studentrating-bottom-container {
  margin-top: auto;
  font-weight: 400;
}

.studentrating-review {
  color: #191919;
  font-size: 16px;
  padding: 15px 15px;
  background-color: #fff;
  border-radius: 5px;
  font-family: Roboto;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.studentrating-review-title {
  margin-top: 16px !important;
}

.studentrating-review p,
.studentrating-review span {
  line-height: 20px;
}

.studentrating-review p {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.swiper-button-next-trigger:hover,
.swiper-button-prev-trigger:hover {
  opacity: 0.5;
}

@keyframes alertAnimation {
  0% {
    top: -250px;
    opacity: 0;
  }

  20% {
    top: 30px;
    opacity: 1;
  }

  80% {
    top: 30px;
    opacity: 1;
  }

  100% {
    top: -250px;
    opacity: 0;
  }
}

.alert-animate {
  animation: alertAnimation 5s normal forwards ease-in-out;
}

.alert-green {
  background-color: #24a94d !important;
}

.alert-green #alert-check-svg {
  display: block !important;
}

.alert-red {
  background-color: #a92424 !important;
}

.alert-red #alert-cross-svg {
  display: block !important;
}

.member-space-await-resend-code {
  pointer-events: none !important;
}

.member-space-await-resend-code span {
  display: block !important;
}

.member-space-await-resend-code button {
  color: #b9b9b9;
}

.buy-notification &gt; img {
  object-fit: contain;
  height: 100%;
}

.buy-notification &gt; div {
  display: flex;
  flex-direction: column;
  margin-left: 5px;
  flex: 1;
}

.buy-notification-title {
  margin: 0px;
  font-weight: 500;
  white-space: nowrap;
  display: flex;
  line-height: normal;
}

.buy-notification-title &gt; span {
  overflow: hidden;
  white-space: nowrap;
  max-width: 86px;
  text-overflow: ellipsis;
  display: block;
  line-height: normal;
}

.buy-notification-time-ago {
  color: #6a6a6a;
  font-style: italic;
  font-size: 13px;
  font-weight: 400;
}

.buy-notification-product {
  color: var(--primary-color);
  margin: 5px 0px;
  font-weight: 600;
  line-height: normal;
}

#buy-notifications-container {
  position: fixed;
  bottom: 50px;
  left: 40px;
  z-index: 95;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.buy-notification {
  background-color: white;
  box-shadow: var(--box-shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  width: fit-content;
  overflow: hidden;
  border-radius: 5px;
  transform: translateX(calc(-100% - 40px));
  transition: var(--transition-duration);
  color: initial;
  opacity: 1 !important;
  padding: 10px 20px 10px 5px;
}

.buy-notification-active {
  transform: translateX(0) !important;
}

.buy-notification-removing {
  opacity: 0 !important;
  height: 0px !important;
  padding: 0px !important;
}

h6 {
  font-size: 15px;
}

.footer-box-trigger-actived svg {
  transform: rotate(180deg) !important;
}

#announcement-bar {
  position: relative;
  width: 100%;
  height: 30px;
  background-color: var(--primary-color);
  color: white;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

:root {
  --announcement-bar-height: 0px;
  --space-member-bar-height: 0px;
}

@media (max-width: 700px) {
  #free-revision-sheets-container {
    margin: 15px auto !important;
  }

  #index-primary-subcontainer &gt; div:first-child {
    flex-direction: column;
  }

  #index-primary-subcontainer &gt; div:last-child {
    flex-direction: column;
    gap: 6px;
  }

  #index-primary-subcontainer &gt; div:first-child &gt; div:first-child {
    justify-content: left !important;
  }

  #index-primary-subcontainer-guarantee-img {
    margin-right: 7px !important;
    margin-left: 5px !important;
  }

  #index-primary-subcontainer-studentrating-img {
    margin-left: -25px;
  }

  #index-primary-subcontainer {
    padding-top: 60px !important;
    line-height: 30px;
  }

  #index-primary-dash {
    display: none;
  }

  #index-primary-container {
    padding: 10px clamp(10px, 4vw, 60px) !important;
  }

  #index-primary-container:last-child {
    margin: 0 !important;
  }

  #index-primary-background {
    padding: 20px 0 !important;
  }

  #index-mockup-container {
    margin: 0 40px !important;
  }
}

#index-primary-main-subcontainer {
  flex: 1;
  width: 100%;
  z-index: 5;
}

#index-primary-background {
  width: 100%;
  background-color: #fbfbfb;
  padding: clamp(10px, 5vw, 100px) 0;
  position: relative;
  overflow: hidden;
}

#index-primary-rect-svg {
  position: absolute;
  top: -16vw;
  right: -670px;
  height: 65vw;
}

#index-primary-circle-svg {
  position: absolute;
  left: -506px;
  height: 84vw;
  top: -13vw;
}

#index-primary-container {
  display: flex;
  margin: auto;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  padding: 0 clamp(80px, 4vw, 60px);
  flex-wrap: wrap-reverse;
}

.get-formation-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 300px;
  max-width: 300px;
}

.margin-0 {
  margin: 0;
}

.margin-top-0 {
  margin-top: 0 !important;
}

#post-image-src {
  width: 100%;
  height: 400px;
  object-fit: cover;
  margin: 20px auto 0;
  border-radius: 10px;
  max-height: 53vw;
}

.alert-left-svg {
  display: none;
  border-radius: 500px;
  border: clamp(3px, 0.7vw, 5px) solid #fff;
  min-height: clamp(40px, 8vw, 70px);
  min-width: clamp(40px, 8vw, 70px);
  padding: clamp(5px, 1.2vw, 12px);
  max-width: clamp(40px, 8vw, 70px);
  max-height: clamp(40px, 8vw, 70px);
}

#product-subcontainer {
  margin: 20px 0;
}

#blog-post-container h2,
#blog-post-container h3 {
  text-align: left;
}

#blog-post-container ul,
#blog-post-container ol {
  padding-left: 40px;
}

#blog-post-container h2 + h3 {
  margin-top: 10px !important;
}

#product-subcontainer ul {
  padding-left: 0;
}

#blog-post-container p {
  margin: 8px 0;
}

#blog-post-container li {
  margin: 15px 0;
}

.blog-post-container {
  color: inherit;
}

.payment-popup-mobile {
  position: initial !important;
  transform: none !important;
  box-shadow: none !important;
  max-width: none;
  max-height: none;
  width: 100% !important;
  height: 100% !important;
}

.payment-popup-mobile #payment-container-header {
  border-radius: 0 !important;
}

.payment-popup-mobile .close-trigger {
  display: none !important;
}

.payment-popup-mobile .previous-trigger {
  display: flex !important;
}

.promotions-container {
  display: flex;
  gap: 5px;
}

.before-promotion-product-price {
  text-decoration: line-through;
  color: #8d8d8d !important;
  font-size: 16px;
  line-height: normal;
}

.line-height-normal {
  line-height: normal !important;
  white-space: nowrap;
}

.product-price-promotion::before {
  content: attr(data-product-price);
  color: var(--primary-color);
  position: relative;
  margin-right: 5px;
  display: inline-block;
  font-weight: 500;
}

.promotion {
  border-radius: 5px;
  padding: 0 6px;
  background-color: var(--primary-color);
  font-size: 12px;
  font-weight: 600;
  color: #fff;
}

.input-alert {
  margin-top: 2px !important;
  margin-bottom: 0 !important;
}

#payment-method-paypal-subcontainer:hover {
  filter: brightness(0.95);
}

#revision-sheets-container &gt; img {
  cursor: pointer;
  flex: 1;
  overflow: hidden;
  border-radius: 5px;
  width: 100%;
  /* transition-duration: var(--transition-duration);*/
  transition-duration: 100ms;
  max-width: 250px;
  background: white;
}

#revision-sheets-container &gt; img:hover {
  filter: brightness(0.95);
  /* filter: opacity(.7); */
}

.margin-top-0 {
  margin-top: 0 !important;
}

.margin-vertical-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.input-container {
  position: relative;
  display: flex;
  align-items: center;
  cursor: text;
  background-color: white;
}

.input-container &gt; input,
.input-container &gt; select,
.input-container &gt; .StripeElement,
.input-container &gt; textarea {
  width: 100%;
}

.input-container &gt; input:not(:placeholder-shown) + label,
.input-container &gt; textarea:not(:placeholder-shown) + label,
.input-container &gt; .StripeElement:not(.StripeElement--empty) + label,
.input-container &gt; select + label {
  transform: scale(0.75) translateY(-90%);
}

.input-container &gt; input:focus + label,
.input-container &gt; textarea:focus + label,
.input-container &gt; select:focus + label,
.input-container &gt; .StripeElement--focus + label {
  color: var(--primary-color);
  transform: scale(0.75) translateY(-90%);
}

.input-container &gt; input:focus,
.input-container &gt; textarea:focus,
.input-container &gt; select:focus,
.input-container &gt; .StripeElement--focus {
  border-color: var(--primary-color);
}

.input-container &gt; input,
.input-container &gt; select,
*[type="text"],
*[type="email"],
*[type="tel"],
*[type="number"],
*[type="password"],
.input-container &gt; textarea {
  transition-duration: var(--transition-duration);
  padding: 18px 14px 6px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
}

.input-container &gt; select {
  padding-left: 10px;
}

.input-container &gt; input::placeholder {
  opacity: 0;
  transition-duration: var(--transition-duration);
}

.input-container &gt; input:focus::placeholder {
  opacity: 1 !important;
}

.input-label {
  position: absolute;
  left: 14px;
  transition-duration: 0.1s;
  pointer-events: none;
  color: #757575;
  transform-origin: bottom left;
}

.input-alert {
  color: var(--error-color);
  font-size: 14px;
  width: 100%;
  margin-top: -18px;
}

/* GENERATED CSS */

#div_6d5d_0 {
  width: 470px;
  margin: auto;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#h1_6d5d_0 {
  margin-bottom: 10px;
  text-align: start;
  font-size: clamp(0px, 6.05vw, 35px);
  /* width: 100%; */
  white-space: nowrap;
}

#index-primary-subcontainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding-top: 30px;
}

#div_6d5d_1 {
  display: flex;
  position: absolute;
  top: 0;
  white-space: nowrap;
  justify-content: center;
  gap: 0px 10px;
}

#div_6d5d_2 {
  display: flex;
  align-items: center;
  white-space: nowrap;
  justify-content: center;
  gap: 8px;
}

#img_6d5d_0 {
  height: 22px;
  width: 30px;
}

#div_6d5d_3 {
  display: flex;
  align-items: center;
  gap: 4px;
}

#index-primary-subcontainer-guarantee-img {
  height: 23px;
  width: 23px;
}

#div_6d5d_4 {
  display: flex;
  align-items: center;
  white-space: nowrap;
}

#div_6d5d_5 {
  display: flex;
  align-items: center;
  gap: 9px;
}

#div_6d5d_5_bis {
  display: flex;
  align-items: center;
  gap: 4px;
}

#index-primary-subcontainer-studentrating-img {
  width: 100px;
  height: fit-content;
  object-fit: contain;
  height: 19px;
}

#index-primary-studentrating-mobile-text {
  display: none;
}

#index-primary-dash {
  margin-left: -9px;
}

#index-mockup-container {
  width: 300px;
  flex: 1;
  margin: 40px auto;
  overflow: hidden;
  min-width: 300px;
  max-width: 450px;
  display: flex;
  z-index: 5;
  justify-content: center;
}

.index-mockup-container-formav {
  border-radius: 30px;
}

#div_6d5d_6 {
  flex-wrap: wrap;
  display: flex;
  align-items: center;
  flex-direction: row;
  max-width: 1100px;
  gap: clamp(20px, 6vw, 80px);
}

#div_6d5d_7 {
  flex: 1;
  display: flex;
  align-items: center;
  min-width: 280px;
  margin-left: 0px;
  justify-content: center;
}

#img_6d5d_1 {
  width: 100%;
  max-width: 450px;
}

#div_6d5d_8 {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 280px;
}

#a_6d5d_0 {
  font-weight: bold;
  width: fit-content;
  margin-top: 10px;
}

#svg_6d5d_0 {
  height: 23px;
  margin-right: 5px;
}

#div_6d5d_9 {
  flex-wrap: wrap-reverse;
  display: flex;
  align-items: center;
  flex-direction: row;
  max-width: 1100px;
  gap: clamp(20px, 6vw, 80px);
}

#div_6d5d_10 {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 280px;
}

#a_6d5d_1 {
  font-weight: bold;
  width: fit-content;
  margin-top: 10px;
}

#svg_6d5d_1 {
  height: 23px;
  margin-right: 5px;
}

#div_6d5d_11 {
  flex: 1;
  display: flex;
  align-items: center;
  min-width: 280px;
  justify-content: center;
}

#img_6d5d_2 {
  width: 100%;
  max-width: 450px;
}

#div_6d5d_12 {
  background-color: #f9faff;
}

#div_6d5d_13 {
  display: flex;
  width: 100%;
  margin-bottom: 30px;
  flex-wrap: wrap;
  justify-content: space-evenly;
  gap: 20px;
}

#span_6d5d_0 {
  font-size: 100px;
  font-weight: 600;
  line-height: normal;
}

#p_6d5d_0 {
  text-align: center;
}

#span_6d5d_1 {
  font-size: 100px;
  font-weight: 600;
  line-height: normal;
}

#p_6d5d_1 {
  text-align: center;
}

#span_6d5d_2 {
  font-size: 100px;
  font-weight: 600;
  line-height: normal;
}

#p_6d5d_2 {
  text-align: center;
}

#div_6d5d_14 {
  position: relative;
}

#engagements-background-desktop {
  margin: auto 20px;
  position: absolute;
  z-index: -1;
  height: 100%;
  left: 0;
  right: 0;
  width: calc(100% - 40px);
  object-fit: contain;
}

#engagements-background-mobile {
  display: none;
  margin: auto 20px;
  position: absolute;
  z-index: -1;
  height: 100%;
  left: 0;
  right: 0;
  width: calc(100% - 40px);
  object-fit: contain;
}

#div_6d5d_15 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

#div_6d5d_16 {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 10px 20px;
  min-width: 285px;
  max-width: 285px;
}

#span_6d5d_3 {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
}

#div_6d5d_17 {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 10px 20px;
  min-width: 285px;
  max-width: 285px;
}

#span_6d5d_4 {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
}

#div_6d5d_18 {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 10px 20px;
  min-width: 285px;
  max-width: 285px;
}

#span_6d5d_5 {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
}

#div_6d5d_19 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

#blog-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  flex-direction: row;
  gap: 40px;
  width: 100%;
}

#a_6d5d_2 {
  margin: 20px auto 0px;
}

.primary-trigger-size {
  margin: 20px auto 0px;
}

/* 404 */

#p_1c8a_0 {
  margin-bottom: 30px;
}

/* BLOG */

/* CGV-CGU */

#div_d1c1_0 {
  display: block;
}

/* CONFIRMATION DE COMMANDE */

#confirm-order-box {
  flex-direction: row;
}

#confirm-order-box-subcontainer {
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--border-color);
  padding-right: 30px;
}

#div_1eb9_0 {
  display: flex;
  width: 100%;
  justify-content: space-between;
  margin-bottom: 20px;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
}

#div_1eb9_1 {
  display: flex;
  gap: 10px;
  margin-right: auto;
  margin-left: 10px;
}

#span_1eb9_0 {
  border-radius: 5px;
  background-color: var(--border-color);
  padding: 2px 5px;
  color: #5c5c5c;
  line-height: normal;
  font-size: 14px;
  font-weight: 500;
  height: fit-content;
}

#span_1eb9_1 {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #404040;
}

#p_1eb9_0 {
  line-height: 1.5em;
}

#div_1eb9_2 {
  display: flex;
  align-items: center;
  color: #393939;
  gap: 20px;
  border: 1px solid var(--border-color);
  padding: 12px 20px;
  border-radius: 5px;
  margin-top: 30px;
}

#svg_1eb9_0 {
  min-width: 15px;
  max-width: 20px;
}

#div_1eb9_3 {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

#h5_1eb9_0 {
  margin-bottom: 7px;
}

#span_1eb9_2 {
  line-height: normal;
}

#span_1eb9_3 {
  line-height: normal;
  overflow: hidden;
  text-overflow: ellipsis;
}

#svg_1eb9_1 {
  margin-left: auto;
  min-width: 25px;
  max-width: 30px;
}

#div_1eb9_4 {
  display: flex;
  align-items: center;
  color: #393939;
  gap: 20px;
  border: 1px solid var(--border-color);
  padding: 12px 20px;
  border-radius: 5px;
  margin-top: 20px;
}

#svg_1eb9_2 {
  min-width: 15px;
  max-width: 20px;
}

#svg_1eb9_3 {
  min-width: 15px;
  max-width: 20px;
}

#div_1eb9_5 {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

#h5_1eb9_1 {
  margin-bottom: 7px;
}

#span_1eb9_4 {
  line-height: normal;
}

#span_1eb9_5 {
  line-height: normal;
  overflow: hidden;
  text-overflow: ellipsis;
}

#svg_1eb9_4 {
  margin-left: auto;
  min-width: 25px;
  max-width: 30px;
}

#div_1eb9_6 {
  flex: 1;
}

#confirm-order-order-summary {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-left: 30px;
}

.div_1eb9_7 {
  display: flex;
  width: 335px;
  align-items: center;
  gap: 10px;
  max-width: 100%;
}

.div_1eb9_7 .product-price,
.div_1eb9_13 .product-price {
  font-size: 17px !important;
}

#div_1eb9_8 {
  display: flex;
  flex-direction: column;
}

#span_1eb9_6 {
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
}

#span_1eb9_7 {
  line-height: normal;
}

#div_1eb9_9 {
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  padding-top: 10px;
}

#div_1eb9_10 {
  display: flex;
  flex-direction: column;
}

#span_1eb9_8 {
  font-size: 15px;
  font-weight: 500;
}

#span_1eb9_9 {
  font-size: 12px;
  color: #6d6d6d;
}

#div_1eb9_11 {
  display: flex;
  align-items: center;
}

#span_1eb9_10 {
  font-size: 12px;
  color: #6d6d6d;
  line-height: normal;
  margin-right: 6px;
}

#div_1eb9_12 {
  border-top: 1px solid var(--border-color);
  width: 100%;
  margin: 20px 0px;
}

#confirm-order-interest {
  display: flex;
  flex-direction: column;
  padding-left: 30px;
  margin-top: 15px;
}

.div_1eb9_13 {
  display: flex;
  width: 335px;
  align-items: center;
  gap: 10px;
  max-width: 100%;
  margin-top: 20px;
}

#div_1eb9_14 {
  display: flex;
  flex-direction: column;
}

#span_1eb9_11 {
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
}

#span_1eb9_12 {
  line-height: normal;
}

/* ESPACE MEMBRE */

#member-space-primary-container {
  flex-direction: row;
}

#img_9c0b_0 {
  width: 50%;
}

#div_9c0b_0 {
  display: none;
  border-top: 2px solid var(--border-color);
  margin-top: 10px;
}

#img_9c0b_1 {
  width: 60%;
}

#img_9c0b_2 {
  width: 60%;
}

#img_9c0b_3 {
  width: 55%;
}

#img_9c0b_4 {
  width: 60%;
}

#img_9c0b_5 {
  width: 50%;
}

#img_9c0b_6 {
  width: 50%;
}

#img_9c0b_7 {
  width: 50%;
}

#div_9c0b_1 {
  display: none;
  border-top: 2px solid var(--border-color);
  margin-top: 10px;
}

#img_9c0b_8 {
  width: 60%;
}

#img_9c0b_9 {
  width: 60%;
}

#img_9c0b_10 {
  width: 60%;
}

#img_9c0b_11 {
  width: 60%;
}

#img_9c0b_12 {
  width: 60%;
}

#img_9c0b_13 {
  width: 50%;
}

#div_9c0b_2 {
  border-radius: 5px;
  margin-top: 10px;
  background-color: #00000012;
  padding: 7px 13px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 15px;
}

#svg_9c0b_0 {
  height: 20px;
}

#path_9c0b_0 {
  fill: #363636;
}

#div_9c0b_3 {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

#span_9c0b_0 {
  font-size: 17px;
  color: #4b4b4b;
  line-height: normal;
  word-break: break-word;
}

#button_9c0b_0 {
  width: fit-content;
}

#div_9c0b_4 {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 2vw, 40px);
}

#img_9c0b_14 {
  height: 20px;
}

#span_9c0b_1 {
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: 14px;
}

#img_9c0b_15 {
  height: 20px;
}

#span_9c0b_2 {
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: 14px;
}

#img_9c0b_16 {
  height: 20px;
}

#span_9c0b_3 {
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: 14px;
}

#div_9c0b_5 {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 4vw, 40px);
}

#img_9c0b_17 {
  height: 20px;
}

#span_9c0b_4 {
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: 14px;
}

#div_9c0b_6 {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 4vw, 40px);
}

#img_9c0b_18 {
  height: 20px;
}

#span_9c0b_5 {
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: 14px;
}

#img_9c0b_19 {
  height: 20px;
}

#span_9c0b_6 {
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: 14px;
}

#img_9c0b_20 {
  height: 20px;
}

#span_9c0b_7 {
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: 14px;
}

#img_9c0b_21 {
  height: 20px;
}

#span_9c0b_8 {
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: 14px;
}

#img_9c0b_22 {
  height: 20px;
}

#span_9c0b_9 {
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: 14px;
}

#img_9c0b_23 {
  height: 20px;
}

#span_9c0b_10 {
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: 14px;
}

#img_9c0b_24 {
  height: 20px;
}

#span_9c0b_11 {
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: 14px;
}

#div_9c0b_7 {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 4vw, 40px);
}

#img_9c0b_25 {
  height: 20px;
}

#span_9c0b_12 {
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: 14px;
}

#img_9c0b_26 {
  height: 20px;
}

#span_9c0b_13 {
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: 14px;
}

#img_9c0b_27 {
  height: 20px;
}

#span_9c0b_14 {
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: 14px;
}

#img_9c0b_28 {
  height: 20px;
}

#span_9c0b_15 {
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: 14px;
}

#img_9c0b_29 {
  height: 20px;
}

#span_9c0b_16 {
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: 14px;
}

#img_9c0b_30 {
  height: 20px;
}

#span_9c0b_17 {
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: 14px;
}

#a_9c0b_0 {
  margin-bottom: 20px;
  width: fit-content;
}

#a_9c0b_1 {
  margin-bottom: 20px;
  width: fit-content;
}

#a_9c0b_2 {
  margin-bottom: 20px;
  width: fit-content;
}

#a_9c0b_3 {
  margin-bottom: 20px;
  width: fit-content;
}

#a_9c0b_4 {
  margin-bottom: 20px;
  width: fit-content;
}

#div_9c0b_8 {
  border-radius: 10px;
  box-shadow: 0px 0px 3px #53535361;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(23px, 4.7vw, 60px) 0px;
  width: fit-content;
  width: 425px;
  margin: 20px auto;
  max-width: 100%;
}

#member-space-title {
  margin: 0;
  padding: 0px clamp(10px, 4vw, 50px);
}

#member-space-description {
  margin-top: 5px;
  padding: 0px clamp(10px, 4vw, 50px);
}

#member-space-main-container {
  display: flex;
  overflow: hidden;
  padding: 5px 0px;
  height: 250px;
  width: 100%;
  position: relative;
}

#member-space-email-container {
  position: absolute;
  transition: 300ms;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: calc(100% - 15px);
  padding: 0px clamp(10px, 4vw, 50px);
  padding-top: 20px;
}

#div_9c0b_9 {
  width: 100%;
  margin-top: 10px;
}

#svg_9c0b_1 {
  min-height: 12px;
  min-width: 12px;
  max-width: 12px;
  max-height: 12px;
  vertical-align: middle;
  margin-bottom: 2px;
}

#span_9c0b_18 {
  color: #818181;
  margin-bottom: 20px;
  margin-top: 20px;
}

#div_9c0b_10 {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  margin-top: auto;
}

#member-space-code-container {
  position: absolute;
  transition: 300ms;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: calc(100% - 15px);
  padding: 0px clamp(10px, 4vw, 50px);
  transform: translateX(100%);
  padding-top: 20px;
}

#div_9c0b_11 {
  width: 100%;
  margin-top: 10px;
}

#svg_9c0b_2 {
  min-height: 12px;
  min-width: 12px;
  max-width: 12px;
  max-height: 12px;
  vertical-align: middle;
  margin-bottom: 2px;
}

#span_9c0b_19 {
  color: #818181;
  margin-bottom: 20px;
  margin-top: 20px;
}

#div_9c0b_12 {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  margin-top: auto;
}

#member-space-resend-code-container {
  display: flex;
}

#member-space-resend-code-span {
  color: #b9b9b9;
  display: none;
}

#member-space-forget-email-container {
  position: absolute;
  transition: 300ms;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: calc(100% - 15px);
  padding: 0px clamp(10px, 4vw, 50px);
  padding-top: 20px;
}

#div_9c0b_13 {
  width: 100%;
  margin-top: 10px;
}

#svg_9c0b_3 {
  min-height: 12px;
  min-width: 12px;
  max-width: 12px;
  max-height: 12px;
  vertical-align: middle;
  margin-bottom: 2px;
}

#span_9c0b_20 {
  color: #818181;
  margin-bottom: 20px;
  margin-top: 20px;
}

#div_9c0b_14 {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  margin-top: auto;
}

#member-space-forget-email-match-container {
  position: absolute;
  transition: 300ms;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: calc(100% - 15px);
  padding: 0px clamp(10px, 4vw, 50px);
}

#div_9c0b_15 {
  width: 100%;
  margin-top: 10px;
}

#span_9c0b_21 {
  color: #818181;
  margin-bottom: 20px;
  margin-top: 20px;
}

#div_9c0b_16 {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  margin-top: auto;
}

#button_9c0b_1 {
  text-align: left;
}

#member-space-recover-forget-email-container {
  position: absolute;
  transition: 300ms;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: calc(100% - 15px);
  padding: 0px clamp(10px, 4vw, 50px);
}

#span_9c0b_23 {
  color: #818181;
}

#div_9c0b_17 {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  margin-top: auto;
  justify-content: center;
}

#member-space-recover-forget-email-container li {
  margin: 0px !important;
}

/* Notre équipe */

#div_cd41_0 {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

#div_cd41_1 {
  flex: 17%;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 280px;
}

#img_cd41_0 {
  width: 100%;
  max-width: 300px;
  border-radius: 22px;
}

#div_cd41_2 {
  flex: 52%;
  margin: 0px 12px;
}

#our-equip-subcontainer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0px 20px;
}

#div_cd41_3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 20px;
  width: 265px;
  text-align: center;
}

#span_cd41_0 {
  font-weight: 500;
  font-size: 20px;
}

#span_cd41_1 {
  font-size: 18px;
}

#div_cd41_4 {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 20px;
  width: 265px;
  text-align: center;
}

#img_cd41_1,
#img_cd41_2,
#img_cd41_3 {
  width: 100%;
  height: 265px;
  object-fit: cover;
  border-radius: 22px;
}

#span_cd41_2 {
  font-weight: 500;
  font-size: 20px;
}

#span_cd41_3 {
  font-size: 18px;
}

#div_cd41_5 {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 20px;
  width: 265px;
  text-align: center;
}

#span_cd41_4 {
  font-weight: 500;
  font-size: 20px;
}

#span_cd41_5 {
  font-size: 18px;
}

#h2_cd41_0 {
  margin-top: 0px;
}

#our-equip-main p {
  margin: 10px 0px !important;
}

/* Politique de confidentialité */

#div_f62e_0 {
  display: block;
}

.margin-p p {
  margin: 10px 0px;
}

.margin-p h2,
.margin-p h3,
.margin-p h4 {
  text-align: left;
}

/* MODULES */

/* FAQ-BOX */

.faq-answer {
  height: 0px;
}

.faq-answer &gt; div {
  padding: 5px 15px;
  width: 100%;
}

.faq-answer p {
  margin: 10px 0px;
}

#div_9ea6_0 {
  align-items: center;
}

#div_9ea6_1 {
  margin-top: 15px;
}

#div_9ea6_2 {
  height: 0px;
}

#div_9ea6_3 {
  padding: 15px;
  width: 100%;
}

#div_9ea6_4 {
  height: 0px;
}

#div_9ea6_5 {
  padding: 15px;
  width: 100%;
}

#div_9ea6_6 {
  padding: 15px;
  width: 100%;
}

/* FOOTER */

#div_9378_0 {
  background-color: #f9faff;
  position: relative;
  overflow: hidden;
  display: flex;
}

#free-revision-sheets-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px auto;
  z-index: 5;
  text-align: center;
  flex-direction: row;
}

#footer-first-mockup {
  height: 204px;
}

#div_9378_1 {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#h3_9378_0 {
  z-index: 2;
}

#footer-second-mockup {
  height: 204px;
  display: none;
  object-fit: contain;
}

#div_9378_2 {
  display: flex;
  width: 100%;
  margin-top: 10px;
  align-items: center;
  gap: 10px;
}

#div_9378_3 {
  width: 100%;
  flex: 1;
}

#fullscreen-background {
  background-color: #00000088;
  position: fixed;
  z-index: 95;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  transform: translateY(0px) !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

#free-revision-sheets {
  background-color: white;
  border-radius: 10px;
  width: fit-content;
  height: fit-content;
  z-index: 105;
  max-width: 85vw;
  max-height: 85vh;
  box-shadow: var(--box-shadow);
}

#button_9378_0 {
  border-radius: 100px;
  height: 35px;
  width: 35px;
  padding: 10px;
  position: absolute;
  right: -15px;
  top: -15px;
}

#svg_9378_0 {
  height: 30px;
  width: 30px;
}

#free-revision-sheets-popup-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
  max-height: 100%;
  max-height: calc(100vh - 120px);
  padding: 25px 30px;
}

#img_9378_0 {
  object-fit: contain;
  height: 175px;
  margin: auto;
  max-width: 100%;
}

#free-revision-sheets-popup-second-subcontainer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 510px;
}

#span_9378_0 {
  margin: 0px;
  font-size: 25px;
  font-weight: 800;
}

#p_9378_0 {
  margin: 15px 0px 20px;
}

#span_9378_1 {
  font-weight: 600;
}

#div_9378_4 {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  overflow: hidden;
  width: 100%;
  padding-bottom: 10px;
  align-items: center;
}

#div_9378_5 {
  width: 100%;
  flex: 1;
}

#free-revisions-sheets-popup-send-trigger {
  margin-left: auto;
}

#revision-sheets-overview {
  width: fit-content;
  max-width: 90vw;
}

#button_9378_1 {
  border-radius: 100px;
  height: 35px;
  width: 35px;
  padding: 10px;
  position: absolute;
  right: -15px;
  top: -15px;
}

#svg_9378_1 {
  height: 30px;
  width: 30px;
}

#div_9378_6 {
  border-radius: 10px;
  width: fit-content;
  overflow: hidden;
  background-color: white;
}

#revision-sheets-overview-img {
  object-fit: contain;
  max-height: calc(100vh - 100px);
  max-width: 90vw;
}

#button_9378_2 {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  background-color: white;
  margin: auto 0 auto 10px;
}

#payment-container-main-sub-subcontainer {
  min-height: initial;
  display: flex;
  overflow: hidden;
  width: 100%;
  background-color: whitesmoke;
  height: fit-content;
}

#div_9378_7 {
  max-width: 100%;
  flex: 1;
  background-color: white;
  border-right: 1px solid var(--border-color);
  height: 100%;
}

#payment-order-summary {
  width: 100%;
  background-color: #fafafa;
  display: flex;
  white-space: nowrap;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-color);
  overflow: hidden;
  padding: 11px clamp(15px, 4vw, 40px);
}

#payment-order-summary-trigger {
  color: #555555;
  display: flex;
  align-items: center;
  font-size: 14px;
  gap: 7px;
  font-weight: 600;
  cursor: pointer;
  width: fit-content;
  overflow: hidden;
}

#img_9378_1 {
  margin-top: -2px;
}

#payment-order-summary-span {
  text-overflow: ellipsis;
  overflow: hidden;
}

#order-summary-arrow {
  transition-duration: var(--transition-duration);
}

#div_9378_8 {
  display: flex;
  align-items: center;
  margin-left: 20px;
  align-items: center;
  gap: 8px;
}

#payment-order-summary-content {
  overflow: hidden;
  transition-duration: var(--transition-duration);
  background-color: #fafafa;
  overflow: hidden;
  height: 0px;
}

#div_9378_9 {
  display: flex;
  align-items: center;
  gap: 5px;
  border-bottom: 1px solid var(--border-color);
  padding: 10px clamp(15px, 4vw, 40px);
}

#div_9378_10 {
  display: flex;
  flex-direction: column;
  width: 100%;
}

#p_9378_1 {
  line-height: normal;
  font-size: 15px;
}

#payment-order-summary-price-container {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--border-color);
  margin-top: 10px;
  padding-top: 10px;
  gap: 10px;
}

#div_9378_11 {
  display: flex;
  flex-direction: column;
}

#span_9378_2 {
  line-height: normal;
}

#span_9378_3 {
  color: #919191;
  font-weight: 500;
  font-size: 12px;
  line-height: normal;
}

#div_9378_12 {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  margin-right: 5px;
}

#span_9378_4 {
  color: var(--primary-color);
  font-size: 15px;
}

#payment-request-button {
  margin: 10px clamp(15px, 4vw, 40px) -10px;
}

#payment-remark-container {
  background-color: var(--primary-color);
  border-radius: 5px;
  display: flex;
  margin: 20px clamp(15px, 4vw, 40px) 0px;
  padding: 10px;
  box-shadow: inset 0 0 100px 100px rgb(255 255 255 / 90%);
}

#img_9378_2 {
  min-height: 17px;
  max-height: 17px;
  margin-right: 6px;
  margin-top: 1px;
  min-width: 17px;
}

#div_9378_13 {
  display: flex;
  flex-direction: column;
}

#span_9378_5 {
  font-weight: bold;
  line-height: normal;
  margin-bottom: 3px;
  font-size: 15px;
}

#p_9378_2 {
  line-height: normal;
  font-size: 15px;
}

#span_9378_6 {
  padding-bottom: clamp(10px, 2vw, 10px);
}

#div_9378_14 {
  width: 100%;
}

#svg_9378_2 {
  min-height: 12px;
  min-width: 12px;
  max-width: 12px;
  max-height: 12px;
  vertical-align: middle;
  margin-bottom: 2px;
}

#div_9378_15 {
  width: 100%;
  margin-top: 10px;
}

#svg_9378_3 {
  min-height: 12px;
  min-width: 12px;
  max-width: 12px;
  max-height: 12px;
  vertical-align: middle;
  margin-bottom: 2px;
}

#span_9378_7 {
  padding: clamp(15px, 3vw, 25px) 0px clamp(10px, 2vw, 10px);
}

#payment-method-card-container {
  display: flex;
  flex-direction: column;
  padding-bottom: 10px;
}

#div_9378_16 {
  width: 100%;
}

#payment-method-card-number {
  width: 100%;
}

#payment-popup-date-cvc-container {
  margin-top: 10px;
}

#div_9378_17 {
  width: 100%;
}

#payment-popup-date {
  width: 100%;
}

#div_9378_18 {
  width: 100%;
}

#payment-popup-cvc {
  width: 100%;
}

#svg_9378_4 {
  min-height: 12px;
  min-width: 12px;
  max-width: 12px;
  max-height: 12px;
  vertical-align: middle;
  margin-bottom: 2px;
}

#payment-popup-pay-trigger {
  margin-top: 10px;
}

#payment-method-paypal-container {
  padding-bottom: 10px;
}

#payment-method-paypal-subcontainer {
  height: 39px;
  cursor: pointer;
}

#payment-method-paypal-sub-subcontainer {
  height: 100%;
  display: flex;
  justify-content: center;
}

#payment-container-right-container {
  flex: 1;
}

#div_9378_19 {
  overflow: hidden;
}

#p_9378_3 {
  line-height: normal;
  margin-top: 6px;
}

#payment-popup-right-price-container {
  display: flex;
  border-top: 1px solid var(--border-color);
  align-items: center;
  padding-top: 8px;
  width: 100%;
  justify-content: space-between;
  margin-top: 8px;
  gap: 10px;
}

#div_9378_20 {
  display: flex;
  flex-direction: column;
}

#span_9378_8 {
  line-height: normal;
}

#span_9378_9 {
  font-size: 13px;
  color: #6a6a6a;
  font-weight: normal;
  white-space: nowrap;
}

#div_9378_21 {
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

#svg_9378_5 {
  padding: 4px;
}

#payment-container-second-sub-subcontainer {
  width: 100%;
  height: 100%;
  overflow: hidden;
  overflow-y: auto;
  border-radius: 0px 0px 10px 10px;
  padding: 20px;
}

#div_9378_22 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  overflow: hidden;
  flex: 1;
  min-width: 250px;
}

#h4_9378_0 {
  text-align: center;
}

#div_9378_23 {
  display: flex;
  flex-direction: column;
  flex: 1;
}

#h4_9378_1 {
  text-align: left;
}

#div_9378_24 {
  display: none;
  background-color: #f9e8e8;
  border-radius: 5px;
  display: flex;
  padding: 10px;
  height: fit-content;
  margin-bottom: 20px;
}

#svg_9378_6 {
  height: fit-content;
  margin-right: 6px;
  margin-top: 1px;
  width: 22px;
  height: 16px;
}

#div_9378_25 {
  display: flex;
  flex-direction: column;
}

#span_9378_10 {
  font-weight: bold;
  line-height: normal;
  margin-bottom: 3px;
  font-size: 15px;
}

#p_9378_4 {
  line-height: normal;
  font-size: 15px;
}

#payment-popup-upsell-triggers-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 0px 10px;
}

.button_9378_3 {
  width: fit-content;
  padding: 10px 43px;
  flex: 30%;
  white-space: nowrap;
  padding: 10px 16px;
  width: 100%;
}

#send-email-container {
  position: fixed;
  bottom: 0;
  right: 0;
  display: flex;
  z-index: 110;
  padding: 20px;
  width: fit-content;
  height: fit-content;
}

#send-email-desktop-profile-img {
  width: 120px;
  height: 120px;
  border: 5px solid var(--primary-color);
  border-radius: 50%;
  background: linear-gradient(var(--linear-gradient));
  margin-top: 30px;
  margin-right: 0px;
}

#send-email-subcontainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: white;
  max-width: 300px;
}

#button_9378_4 {
  border-radius: 100px;
  height: 35px;
  width: 35px;
  padding: 10px;
  margin-left: auto;
}

#svg_9378_7 {
  height: 30px;
  width: 30px;
}

#div_9378_26 {
  display: flex;
}

#send-email-mobile-profile-img {
  width: 120px;
  height: 120px;
  border: 5px solid var(--primary-color);
  border-radius: 50%;
  background: linear-gradient(var(--linear-gradient));
  margin: auto 10px auto auto;
}

#div_9378_27 {
  display: flex;
  flex-direction: column;
}

#span_9378_11 {
  margin: 0px;
  color: white;
  font-size: 20px;
}

#send-email-full-name-input {
  width: 100%;
}

#send-email-email-input {
  width: 100%;
  margin-top: 10px;
}

#send-email-content-input {
  width: 100%;
  margin: 10px 0px;
  height: 100px;
}

#send-email-trigger {
  margin-right: auto;
  margin-top: 10px;
}

#svg_9378_8 {
  height: 16px;
  margin-right: 7px;
}

#bottom-send-mail-trigger {
  border-radius: 50%;
  width: 60px;
  height: 60px;
  margin-left: auto;
  position: fixed;
  z-index: 90;
  bottom: 20px;
  right: 30px;
}

#alert-container {
  box-shadow: var(--box-shadow-bottom);
  position: fixed;
  top: -250px;
  right: 0px;
  left: 0px;
  margin: 0 auto;
  z-index: 500;
  border-radius: 15px;
  width: fit-content;
  opacity: 0;
  color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 60px;
  padding: clamp(12px, 2vw, 40px) clamp(17px, 3vw, 60px);
  max-width: 90vw;
  box-shadow: var(--box-shadow);
}

#div_9378_28 {
  display: flex;
  align-items: center;
  padding-right: 25px;
  gap: clamp(15px, 2vw, 30px);
}

#svg_9378_9 {
  cursor: pointer;
  height: 25px;
  width: 25px;
  position: absolute;
  z-index: 5;
  top: 15px;
  right: 15px;
}

#div_9378_29 {
  display: flex;
  flex-direction: column;
  max-width: 500px;
  padding-bottom: 5px;
  gap: 5px;
}

#alert-container-title {
  color: white;
  text-align: left;
  margin: 0px;
  font-size: 25px;
  font-weight: bold;
  font-family: Poppins;
}

#alert-container-description {
  color: white;
  line-height: normal;
}

#footer_9378_0 {
  background-color: #f9faff;
  padding: 30px 0px 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #6e6e73;
  border-top: 1px solid #dddddd;
}

#footer-container {
  max-width: 1200px;
  overflow: hidden;
  width: 100%;
  display: flex;
  justify-content: space-around;
  margin: auto;
  padding: 0px clamp(10px, 4vw, 60px);
  gap: 0px 2vw;
}

#footer-box-1 {
  margin-left: 0px;
}

#div_9378_30 {
  display: flex;
  flex-direction: column;
  line-height: 25px;
}

#a_9378_0 {
  white-space: nowrap;
}

#svg_9378_10 {
  margin-right: 2px;
  vertical-align: middle;
}

#a_9378_1 {
  white-space: nowrap;
}

#svg_9378_11 {
  margin-right: 3px;
  vertical-align: middle;
}

#svg_9378_12 {
  margin-left: auto;
  transition-duration: var(--transition-duration);
}

#svg_9378_13 {
  margin-left: auto;
  transition-duration: var(--transition-duration);
}

#svg_9378_14 {
  margin-left: auto;
  transition-duration: var(--transition-duration);
}

#p_9378_5 {
  margin: 10px 0px 20px;
}

#footer-links-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  border-bottom: 1px solid #dddddd;
  padding: 25px clamp(10px, 4vw, 60px);
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
  line-height: 20px;
  font-weight: 500;
  gap: 5px 2px;
}

#a_9378_2 {
  margin: 0px 5px;
}

#a_9378_3 {
  margin: 0px 5px;
}

#a_9378_4 {
  margin: 0px 5px;
}

#a_9378_5 {
  margin: 0px 5px;
}

#a_9378_6 {
  margin: 0px 5px;
}

#a_9378_7 {
  margin: 0px 5px;
}

#a_9378_8 {
  margin: 0px 5px;
}

#a_9378_9 {
  margin: 0px 5px;
}

#footer-subcontainer {
  margin: 20px auto;
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

#div_9378_31 {
  display: flex;
  margin: 10px 0px;
  align-items: center;
}

#img_9378_3 {
  height: 20px;
}

#span_9378_12 {
  color: #28274b;
  font-size: 15px;
  margin-left: 7px;
  font-weight: 400;
  white-space: nowrap;
  line-height: normal;
  font-family: Roboto;
}

#span_9378_13 {
  margin: 5px 0px;
}

#span_9378_14 {
  margin: 5px 0px;
}

/* HEADER */
#announcement-bar-desktop {
  font-weight: 500;
  transition-duration: var(--transition-duration);
}

#b_e643_0 {
  color: white;
}

#b_e643_1 {
  color: white;
}

#b_e643_2 {
  color: white;
}

#b_e643_3 {
  color: white;
}

#header-menu {
  position: fixed;
}

#span_e643_0 {
  color: #28274b;
  font-size: 15px;
  margin-left: 7px;
  font-weight: 400;
  white-space: nowrap;
  line-height: normal;
}

/* OUR-ENGAGEMENTS */

#engagements-main-container {
  margin-top: 15px;
}

/* PREMAIN */

#div_457f_0 {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #fcfcfc;
  position: relative;
  overflow: hidden;
  height: clamp(155px, 24vw, 200px);
}

#svg_457f_0 {
  position: absolute;
  left: -482px;
  height: clamp(250px, 71vw, 500px);
}

#svg_457f_1 {
  position: absolute;
  right: -632px;
  height: clamp(300px, 71vw, 500px);
}

#document-title {
  z-index: 5;
  text-align: center;
  margin: 0px;
}

#span_457f_0 {
  white-space: nowrap;
}

/* PRODUCT-BOX */

#h2_a93e_0 {
  text-align: center;
}

#produit {
  width: 100%;
  display: flex;
  max-width: 900px;
  margin: auto;
}

#div_a93e_0 {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#button_a93e_0 {
  display: flex;
  margin-top: 10px;
  margin-bottom: 3px;
  font-family: Roboto;
  align-items: center;
  color: inherit;
  width: fit-content;
}

#img_a93e_0 {
  height: 20px;
}

#span_a93e_0 {
  font-size: 15px;
  margin-left: 7px;
  font-weight: 400;
  line-height: normal;
  padding-top: 5px;
}

#ul_a93e_0 {
  padding: 0px;
  margin-left: 4px;
}

#a_a93e_0 {
  margin-top: 5px;
}

#h2_a93e_1 {
  text-align: center;
}

#produit {
  width: 100%;
  display: flex;
  max-width: 900px;
  margin: auto;
}

#div_a93e_1 {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

#h2_a93e_2 {
  text-align: left;
  margin-bottom: 0px;
}

#button_a93e_1 {
  display: flex;
  margin-top: 10px;
  font-family: Roboto;
  align-items: center;
  color: inherit;
}

#img_a93e_1 {
  height: 20px;
}

#span_a93e_1 {
  font-size: 15px;
  margin-left: 7px;
  font-weight: 400;
  line-height: normal;
}

#ul_a93e_1 {
  padding: 0px;
  margin-left: 4px;
}

#a_a93e_1 {
  margin-top: 5px;
}

#h2_a93e_3 {
  text-align: center;
}

#produit {
  width: 100%;
  display: flex;
  max-width: 900px;
  margin: auto;
}

#div_a93e_2 {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

#button_a93e_2 {
  display: flex;
  margin-top: 10px;
  font-family: Roboto;
  align-items: center;
  color: inherit;
}

#img_a93e_2 {
  height: 20px;
}

#span_a93e_2 {
  font-size: 15px;
  margin-left: 7px;
  font-weight: 400;
  line-height: normal;
}

#ul_a93e_2 {
  padding: 0px;
  margin-left: 4px;
}

#a_a93e_2 {
  margin-top: 5px;
}

#button_a93e_3 {
  display: flex;
  margin-top: 10px;
  font-family: Roboto;
  align-items: center;
  color: inherit;
}

#img_a93e_3 {
  height: 20px;
}

#span_a93e_3 {
  font-size: 15px;
  margin-left: 7px;
  font-weight: 400;
  line-height: normal;
}

#button_a93e_4 {
  display: flex;
  margin-top: 10px;
  font-family: Roboto;
  align-items: center;
  color: inherit;
}

#img_a93e_4 {
  height: 20px;
}

#span_a93e_4 {
  font-size: 15px;
  margin-left: 7px;
  font-weight: 400;
  line-height: normal;
}

#button_a93e_5 {
  display: flex;
  margin-top: 10px;
  font-family: Roboto;
  align-items: center;
  color: inherit;
}

#img_a93e_5 {
  height: 20px;
}

#span_a93e_5 {
  font-size: 15px;
  margin-left: 7px;
  font-weight: 400;
  line-height: normal;
}

#button_a93e_6 {
  display: flex;
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Roboto;
  align-items: center;
  color: inherit;
}

#img_a93e_6 {
  height: 20px;
}

#span_a93e_6 {
  font-size: 15px;
  margin-left: 7px;
  font-weight: 400;
  line-height: normal;
}

#button_a93e_7 {
  display: flex;
  margin-top: 10px;
  font-family: Roboto;
  align-items: center;
  color: inherit;
}

#img_a93e_7 {
  height: 20px;
}

#span_a93e_7 {
  font-size: 15px;
  margin-left: 7px;
  font-weight: 400;
  line-height: normal;
}

#button_a93e_8 {
  display: flex;
  margin-top: 10px;
  font-family: Roboto;
  align-items: center;
  color: inherit;
}

#img_a93e_8 {
  height: 20px;
}

#span_a93e_8 {
  font-size: 15px;
  margin-left: 7px;
  font-weight: 400;
  line-height: normal;
}

/* REVIEWS-BOX */

#studentrating-reviews {
  background-image: linear-gradient(var(--linear-gradient));
  scroll-margin-top: var(--full-header-height);
  font-family: Roboto;
  overflow: visible;
  padding-top: 1px;
}

#div_c22e_0 {
  align-items: center;
}

#h2_c22e_0 {
  color: white;
  font-family: Poppins;
}

#svg_c22e_0 {
  object-fit: contain;
}

#div_c22e_1 {
  display: flex;
  margin-top: 10px;
  font-family: Roboto;
  align-items: center;
}

#img_c22e_0 {
  height: 20px;
}

#span_c22e_0 {
  font-size: 15px;
  margin-left: 7px;
  font-weight: 400;
  color: white;
  line-height: normal;
  padding-top: 5px;
}

#div_c22e_2 {
  position: relative;
  margin: 40px 0px;
}

#div_c22e_3 {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 29px;
  min-width: 29px;
  border: 2px solid white;
  border-radius: 50px;
  margin: auto 0px auto 0;
  width: fit-content;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -50px;
  cursor: pointer;
  transition: 200ms;
}

#svg_c22e_1 {
  margin-right: 2px;
}

#div_c22e_4 {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 29px;
  min-width: 29px;
  border: 2px solid white;
  border-radius: 50px;
  margin: auto 0px auto 0;
  width: fit-content;
  position: absolute;
  top: 0;
  bottom: 0;
  right: -50px;
  cursor: pointer;
  transition: 200ms;
}

#svg_c22e_2 {
  margin-left: 2px;
}

#span_c22e_1 {
  color: white;
  font-size: 15px;
  margin-bottom: 30px;
  font-family: Roboto;
  font-weight: 400;
  text-align: center;
}

#span_c22e_2 {
  color: white;
}

#span_c22e_3 {
  color: white;
}

#span_c22e_4 {
  text-decoration: underline;
  color: white;
}

/* SUBJECTS-SHEETS */

#subjects-sheets-subcontainer {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

/* YOUR FORMATER BOX */

#div_84c5_0 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-top: 15px;
}

#your-formater-image {
  object-fit: contain;
  border-radius: 22px;
  width: 280px;
  margin: auto;
  max-width: 100%;
}

#div_84c5_1 {
  flex: 1;
  min-width: clamp(100px, 400px, 100%);
}

#div_84c5_1 &gt; p {
  margin: 10px 0px;
}

#div_84c5_2 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-top: 15px;
}

#div_84c5_3 {
  flex: 1;
  min-width: clamp(100px, 400px, 100%);
}

#div_84c5_4 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-top: 15px;
}

#div_84c5_5 {
  flex: 1;
  min-width: clamp(100px, 400px, 100%);
}

#blog-post-container li {
  margin: 5px 0px;
}

table {
  border-spacing: 0px;
  border-collapse: collapse;
  margin: 10px 0px;
  width: 100%;
}

table th {
  border: 1px solid grey;
  background-color: rgba(var(--rgb-primary-color), 0.12);
  padding: 10px;
}

table td {
  padding: 10px;
  border: 1px solid grey;
}

figure {
  margin: 20px auto;
  text-align: center;
}

figcaption {
  font-style: italic;
  margin-top: 10px;
}

video + button {
  transition: 0.1s;
}

video + button:hover {
  filter: brightness(0.88);
}

hr {
  border-top: 1px solid var(--border-color);
  width: 100%;
}

#produit {
  scroll-margin-top: calc(var(--header-height) + 60px);
}

#img-logo-formav-equipe {
  border-radius: 100%;
  height: 50px;
  width: 50px;
  margin: auto auto 10px auto;
}

#img-logo-formav-mentions {
  border-radius: 100%;
  height: 50px;
  width: 50px;
  margin: auto;
}

#img-logo-formav-footer {
  border-radius: 100%;
  height: 28px;
  width: 28px;
  margin: auto;
}

.logo-formav-footer {
  margin: auto;
  display: flex;
  align-items: center;
  font-size: 22px;
  color: #1dbf73;
  text-decoration: none;
  height: fit-content;
  transition: var(--transition-duration);
  gap: 5px;
  margin-bottom: 2px;
}

#figure-logo-formav-mentions {
  margin: 10px auto 20px auto;
}

.h3-mentions-legales {
  margin-bottom: 30px;
}

.div-formav {
  background-color: var(--primary-color);
  padding: 30px;
}

.h1-formav {
  text-align: center;
  margin: 0px;
  color: #fff;
  font-style: italic;
}

/* SUPPRESSION DU BOUTON PAYAPL
#payment-popup-paypal-label {
    display: none !important;
}
*/

/* DEBUT SUPPRESSION LOGO TRUSTPILOT *
#svg_c22e_0 {
    visibility: hidden;
}

/* RAJOUT FAUX LOGO AVIS EN CSS *
#div_c22e_1::before {
    box-sizing: border-box;
    content: '⭐ Avis Clients';
    display: block !important;
    position: absolute;
    justify-content: center;
    color: #fff;
    font-style: italic;
    font-family: 'Montserrat';
    margin: -90px 0px 0px 20px;
    font-size: 23px;
    font-weight: 600;
}

#div_6d5d_4&gt;.primary-color.underline-trigger {
    display: none;
}

/*
#studentrating-reviews {
    display: none;
}
*/

/* FIN SUPPRESSION LOGO TRUSTPILOT */

/* ======================
   Container principal
   ====================== */
.searchbar-container {
  position: relative;
  /* On force un z-index élevé pour que .search-results
       soit au-dessus d'autres éléments. */
  max-width: 340px;
  margin: 20px auto 20px auto;
}

/* ======================
   Barre de recherche
   ====================== */
.searchbar-inner {
  /* On utilise flex pour aligner l’input et la croix
       sur la même ligne, centrés verticalement. */
  display: flex;
  align-items: center;

  /* On peut conserver la même apparence que l’input tout entier,
       si on veut un look "arrondi" pour tout le conteneur. */
  background-color: #fff;
  border-radius: 50px;
  box-shadow: var(--box-shadow, 0 0 6px rgba(0, 0, 0, 0.15));
  padding-left: 48px;
  /* Espace pour la loupe en background */
  position: relative;
}

/* L'input prend tout l'espace restant */
#searchDiplomas {
  flex: 1;
  background: none;
  /* On va gérer le background loupe ci-après */
  border: none;
  outline: none;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  height: fit-content;
  padding: 10px 0;
  min-width: 0;
  /* on laisse flex gérer la largeur */
  -webkit-appearance: none;
  /* Supprime la croix par défaut (Chrome) */
}

/* On remet la loupe en background,
   mais au conteneur "searchbar-inner"
   pour qu'elle soit à gauche. */
.searchbar-inner {
  background: #fff
    url("data:image/svg+xml;utf8,&lt;svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' fill='%23666'&gt;&lt;path d='M500.3 443.7l-119.7-119.7c27.22-40.41 40.65-90.9 33.46-144.7C401.8 87.79 326.8 13.32 235.2 1.723C99.01-15.51-15.51 99.01 1.724 235.2c11.6 91.64 86.08 166.7 177.6 178.9c53.8 7.189 104.3-6.236 144.7-33.46l119.7 119.7c15.62 15.62 40.95 15.62 56.57 0C515.9 484.7 515.9 459.3 500.3 443.7zM79.1 208c0-70.58 57.42-128 128-128s128 57.42 128 128c0 70.58-57.42 128-128 128S79.1 278.6 79.1 208z'/&gt;&lt;/svg&gt;")
    no-repeat 20px center;
  background-size: 20px 20px;
}

/* Supprimer la croix bleue natif IE/Edge/Chrome */
#searchDiplomas::-webkit-search-cancel-button,
#searchDiplomas::-webkit-search-decoration,
#searchDiplomas::-webkit-search-results-button,
#searchDiplomas::-webkit-search-results-decoration {
  display: none;
}

#searchDiplomas::-ms-clear,
#searchDiplomas::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
  opacity: 0;
}

/* Placeholder */
#searchDiplomas::placeholder {
  color: #666;
}

/* ======================
   Croix pour effacer
   ====================== */
.search-clear-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  /* On force une taille fixe pour s'assurer que l'icône s'affiche
       correctement sur iOS (Safari mobile) */
  width: 24px;
  height: 24px;
  margin-right: 12px;
  cursor: pointer;
  margin-left: -36px;
}

/* On s'assure que le &lt;svg&gt; occupe tout l'espace parent */
.search-clear-icon svg {
  width: 100%;
  height: 100%;
}

.search-clear-icon:hover svg path {
  opacity: 0.8;
}

/* ======================
   Liste déroulante
   ====================== */
.search-results {
  display: none;
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  right: 0;
  z-index: 9999;
  background-color: #fff;
  list-style: none;
  margin: 0;
  padding: 8px 0;
  border: 1px solid #ccc;
  border-radius: 12px;
  max-height: 8em;
  overflow-y: auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Chaque résultat */
.search-results li {
  cursor: pointer;
  transition: 100ms;
}

.no-result-search-results {
  padding: 8px 12px;
}

.search-results a li {
  display: block;
  width: 100%;
  text-decoration: none;
  color: #333;
  text-align: left;
  padding: 8px 24px;
  margin: 0px;
}

/* Survol d'un résultat =&gt; fond gris */
.search-results li:hover {
  background-color: #f1f1f1;
}

.search-results li a:hover {
  opacity: 1 !important;
}

#searchResults {
  padding: 0px;
}

.search-results &gt; li {
  margin: 0px;
}

#voir-cursus-a {
  margin-bottom: 20px;
}

#icon-formav-index {
  width: 25px;
}

.searchbar-wrapper {
  width: fit-content;
  margin: 20px auto 0px auto;
}

/* INSTAGRAM FEED formav.co */
.instagram-mosaic-parent {
  padding: 60px 20px;
  background: linear-gradient(
    145deg,
    var(--primary-color) 25%,
    var(--secondary-color) 75%
  );
  color: #fff;
  text-align: center;
  position: relative;
  font-family: sans-serif;
}

.instagram-mosaic-title {
  margin: 0 0 40px;
  font-size: 25px;
  font-weight: 600;
  color: #fff;
}

.instagram-mosaic-grid {
  display: grid;
  grid-gap: 10px;
  margin: 0 auto;
  max-width: 800px;
  /* Largeur max du grid */
  /* Sur desktop (≥ 768px) : 4 colonnes × 2 lignes */
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, auto);
}

.instagram-mosaic-item {
  overflow: hidden;
  border-radius: 5px;
  background: #fff;
  transition: 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  background: inherit;
}

.instagram-mosaic-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 5px;
  position: relative;
}

.instagram-mosaic-footer {
  margin-top: 25px;
}

.instagram-mosaic-footer a {
  display: inline-flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  gap: 8px;
  transition: 0.2s;
}

.instagram-mosaic-footer a:hover {
  opacity: 0.8;
}

.instagram-mosaic-icon {
  width: 24px;
  height: 24px;
  fill: #fff;
}

/* Responsive mobile : 4 lignes × 2 colonnes */
@media (max-width: 768px) {
  .instagram-mosaic-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, auto);
  }
}

.legal-page-box &gt; p {
  margin-top: 20px;
}

.pagination-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0px 30px 40px 40px;
}

.pagination-container a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  color: #28274b;
  text-decoration: none;
  border: 1px solid #dddddd;
  border-radius: 100%;
  font-weight: 500;
  transition: 0.2s;
  box-sizing: border-box;
}

.pagination-container a:hover {
  background-color: #f0f0f0;
}

.pagination-container a.pagination-active {
  background: linear-gradient(
    162deg,
    var(--primary-color),
    var(--secondary-color)
  ) !important;
  color: #fff;
}

/* KEYWORDS BUTTONS */
.keywords-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  width: 100%;
}

.keyword-button {
  justify-content: center;
  align-items: center;
  color: #2f2c35;
  text-decoration: none;
  border: 1px solid #dddddd;
  transition: 0.2s;
  box-sizing: border-box;
  text-align: center;
  font-size: 13px;
  border-radius: 50px;
  height: fit-content;
  padding: 9px 15px;
  display: flex;
  position: relative;
}

.keyword-button:hover {
  background-color: #f0f0f0;
}

.keyword-button.keyword-active {
  background: linear-gradient(
    162deg,
    var(--primary-color),
    var(--secondary-color)
  ) !important;
  color: #fff;
}

.total-revenue {
  display: flex;
  align-items: center;
  background: linear-gradient(
    to left,
    rgba(var(--rgb-primary-color), 0.2) 37px,
    #fff 0px
  );
  background-repeat: no-repeat;
  background-size: 100% 100%;
  border-radius: 50px;
  box-shadow: var(--box-shadow, 0 0 6px rgba(0, 0, 0, 0.15));
  padding: 10px 16px;
  position: relative;
  width: fit-content;
  margin: 20px auto;
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
}

.logout-btn {
  background-color: #ff4d4d;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
}

.logout-btn:hover {
  background-color: #e60000;
}

@media (min-width: 1000px) {
  .display-grid-block {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    justify-content: center;
    margin: 30px auto;
  }

  .display-4-grid-2-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    justify-content: center;
    margin: 30px auto;
    text-align: center;
    gap: 25px;
  }

  #filterForm {
    display: flex;
    gap: 20px;
  }
}

@media (max-width: 1000px) {
  .display-grid-block {
    display: block;
    justify-content: center;
    margin: 20px auto;
  }

  .display-4-grid-2-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    margin: 20px auto;
    text-align: center;
    gap: 10px;
  }

  #filterForm {
    display: block;
  }

  .filter-group {
    margin: 10px auto;
  }

  #revenueChart {
    height: 300px !important;
  }
}

.data-block {
  background: rgba(var(--rgb-primary-color), 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 7rem;
  padding: 10px;
  border-radius: 20px;
  gap: 4px;
}

.data-block &gt; h6 {
  margin: 0;
  font-size: 16px;
}

.chart-container {
  display: flex;
  margin: auto;
  min-height: 18em;
  align-items: center;
  justify-content: center;
}

.revenue-container {
  width: 100%;
  overflow: hidden;
}

.revenue-container table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.revenue-container thead {
  display: table-header-group;
}

.revenue-container tbody {
  display: block;
  max-height: 18em;
  overflow-y: auto;
}

.revenue-container th,
.revenue-container td {
  padding: 10px;
  text-align: left;
  border: 1px solid #ddd;
  box-sizing: border-box;
  width: 50%;
}

.revenue-container tbody tr {
  display: table;
  table-layout: fixed;
  width: 100%;
}

canvas {
  margin: auto;
  max-width: 100% !important;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  min-height: 18em;
}

.admin-container {
  max-height: 500px;
}

.logout-container,
.filter-container {
  margin: 10px auto;
}

.tr-title-table {
  background-color: var(--primary-color);
  font-weight: bold;
  color: #fff;
}

.filter-group &gt; select {
  font-size: 16px;
  font-family: "Montserrat", Sans-serif;
  cursor: pointer;
}

.filter-group {
  flex: 0 0 200px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.filter-select {
  padding: 10px 27px 10px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  color: #28274b;
  background-color: #fff;
  appearance: none;
  background-image: url('data:image/svg+xml;charset=UTF-8,&lt;svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23333"&gt;&lt;path d="M7 10l5 5 5-5H7z"/&gt;&lt;/svg&gt;');
  background-repeat: no-repeat;
  background-position: right 5px center;
  background-size: 20px;
  box-sizing: border-box;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  text-overflow: ellipsis;
  white-space: nowrap;
  height: fit-content;
}

.filter-select:hover {
  border-color: #1a73e8;
  box-shadow: 0 0 5px rgba(26, 115, 232, 0.2);
}

.filter-select:focus {
  outline: none;
  border-color: #1a73e8;
  box-shadow: 0 0 5px rgba(26, 115, 232, 0.5);
}

.filter-label {
  font-weight: bold;
  margin-bottom: 5px;
  color: #333;
  font-size: 16px;
}

.filter-option-disabled {
  font-weight: bold;
  background-color: rgba(var(--rgb-primary-color), 0.2);
  text-align: center;
}

.display-flex {
  display: flex;
  gap: 20px;
}

.contenu-input {
  align-items: baseline;
}

.contenu-input &gt; label {
  margin-top: 13px;
}

.contenu-input &gt; textarea {
  resize: none;
}

.reviews-logo-box {
  display: flex;
}

.reviews-logo-box {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: Roboto;
}

.reviews-logo-box svg {
  height: 35px;
  width: 35px;
}

.reviews-logo-box-p {
  font-size: 30px;
  margin: 0;
  padding-top: 2px;
  font-family: "Lobster", cursive;
}

.reviews-logo-box-span-orange {
  color: #f8b749;
}

.reviews-logo-box-span-black {
  color: #525252;
}

.reviews-logo-box-span-white {
  color: white;
}

.per-month-price {
  color: #8d8d8d !important;
  font-size: 15px;
  line-height: normal;
}

.middle-dot-p {
  font-weight: 900;
  font-size: 18px;
}

.subjects-wrap {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
  width: 100%;
  box-sizing: border-box;
}

.subjects-wrap .subject-box {
  flex: 0 1 calc(25% - 20px);
  max-width: calc(25% - 20px);
  background: rgba(var(--rgb-primary-color), 0.05);
  border-top: 3px solid var(--primary-color);
  padding: 20px;
  text-align: center;
  border-radius: 10px;
  box-sizing: border-box;
  position: relative;
}

.subject-box.empty-box {
  display: none;
}

.subject-icon {
  width: 70px;
  height: 70px;
}

.subject-name {
  font-size: 1.1em;
  font-weight: bold;
  margin: 10px 0px;
}

.subject-details {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9em;
}

.subject-details li {
  margin: 0px;
}

.subject-link {
  position: absolute;
  bottom: 10px;
  right: 15px;
}

@media (max-width: 1000px) {
  .subjects-wrap .subject-box {
    flex: 0 1 calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
  }
}

@media (max-width: 700px) {
  .subjects-wrap .subject-box {
    flex: 0 1 calc(50% - 20px);
    max-width: calc(50% - 20px);
  }
}

@media (max-width: 500px) {
  .subjects-wrap .subject-box {
    flex: 0 1 calc(100% - 20px);
    max-width: calc(100% - 20px);
  }
}

.subjects-wrap-container-a {
  margin: 15px auto 0px auto;
}

.icon-member-space-formav {
  width: 50%;
}

.member-space-nav-trigger {
  width: 95%;
  margin: auto;
}

.member-space-nav-section {
  display: flex;
  flex-direction: column;
}

.member-space-nav-submenu {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

#div_9378_21 &gt; .product-price {
  font-size: 18px !important;
}

.member-space-nav-submenu {
  overflow: hidden;
  transition: max-height 0.3s ease;
  max-height: 0;
}

.member-space-view-overview-locked {
  margin: 1.5rem 0;
  text-align: left;
  border: 1px solid #ccc;
  padding: 1rem;
  border-radius: 6px;
}

.member-space-view-overview-locked &gt; .primary-color.opacity-trigger {
  margin-top: 0.5rem;
}

.searchbar-container {
  position: relative;
  margin-bottom: 1.5rem;
}

.searchbar-inner {
  display: flex;
  align-items: center;
  position: relative;
  background-color: #fff;
  transition: background-color 0.2s ease;
}

.searchbar-inner.has-selection {
  background-color: #f5f6fc;
}

.searchbar-inner input[type="search"] {
  flex: 1;
  padding: 0.5rem 2rem 0.5rem 0.5rem;
  border: 1px solid #ccc;
}

.search-clear-icon {
  position: absolute;
  right: 0px;
  cursor: pointer;
}

.search-clear-icon svg {
  width: 100%;
  height: 100%;
}

.search-results {
  position: absolute;
  top: 44px;
  left: 0;
  right: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  background: #fff;
  border: 1px solid #ccc;
  max-height: 10em;
  overflow-y: auto;
  display: none;
}

.search-results li {
  padding: 8px 12px;
  cursor: pointer;
  font-weight: 600;
}

.search-results li:hover {
  background: #eee;
  opacity: 0.6;
}

.searchbar-inner input.selected-formation {
  background: #f2f2f2;
  color: #555;
  font-weight: 600 !important;
}

button.member-space-nav-subtrigger.paid-course .member-space-element-title {
  display: inline-flex;
  align-items: center;
  filter: opacity(0.5);
}

.paid-formav-icon {
  width: 16px;
  height: 16px;
  display: inline-block;
  margin-left: auto;
  margin-right: 5px;
}

.highlighted-green {
  background-color: #d4f8d4;
  padding: 2px 4px;
  border-radius: 4px;
  width: fit-content;
  font-weight: 600;
}

.highlighted-red {
  background-color: #f8d4d4;
  padding: 2px 4px;
  border-radius: 4px;
  width: fit-content;
  font-weight: 600;
}

.highlighted-yellow {
  background-color: #f8f8d4;
  padding: 2px 4px;
  border-radius: 4px;
  width: fit-content;
  font-weight: 600;
}

#member-space-content-container h2 {
  margin: 10px 0px 15px;
  text-align: left;
}

#member-space-content-container h3 {
  margin: 10px 0px 10px 0px;
  text-align: left;
  font-size: 20px;
}

.quiz-question-flex {
  flex-direction: column;
}

.quiz-choice-label {
  padding: 5px 0px;
}

.searchbar-inner.has-selection &gt; #searchDiplomas {
  font-weight: 600;
}

.no-formation-selected {
  margin: 0 15px;
}

.container-category {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
  margin-bottom: 15px;
}

.container-category-card {
  flex: 0 1 calc(25% - 20px);
  background: #f9faff;
  border-radius: 8px;
  padding: 15px;
  color: #28274b;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  gap: 5px;
  min-width: 180px;
}

.container-category-card h3 {
  margin: 0;
  text-align: center;
  font-weight: 600;
}

.container-category-card p {
  text-align: center;
  margin: auto;
}

.container-category-a {
  color: var(--primary-color) !important;
}

.container-category &gt; a &gt; img {
  width: 100%;
  margin-bottom: 10px;
}

#span_a93e_9 {
  font-size: 15px;
  font-weight: 400;
  padding-top: 5px;
}

.free-extract-container {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 10px;
}

.free-extract-container &gt; a {
  font-size: 14px;
}

.social-network-icons-svg {
  width: 25px;
  background: #e2e2e2;
  height: 25px;
  padding: 5px;
  border-radius: 100%;
}

.social-network-icons-path {
  fill: #6e6e73;
}

.social-network-a {
  align-items: center;
  display: flex;
  gap: 6px;
}

/* Placeholder boxes pour Instagram mosaic */
.instagram-mosaic-item.placeholder {
  background: var(--primary-color);
  width: 100%;
  aspect-ratio: 1440 / 1800;
}

.instagram-mosaic-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--primary-color);
}

#bacproCategory,
#btsCategory,
#btsaCategory,
#butCategory,
#capCategory,
#licencesCategory {
  scroll-margin-top: 10.2vh;
}

/* Début CSS Pour le Bac Pro ASSP uniquement */
.listes-flex-bacpro {
  display: flex;
  flex-direction: column;
}

.bloc-list {
  flex: 1;
  box-shadow: var(--box-shadow);
  border-radius: 20px;
  margin-top: 10px;
}

@media (min-width: 751px) {
  .listes-flex-bacpro {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .bloc-list {
    max-width: 32%;
  }
}

.bloc-list h4 {
  margin-bottom: 1.2rem;
  font-size: 1.2rem;
  font-weight: bold;
  color: #fff;
  padding: 12px 0px;
  text-align: center;
  border-radius: 20px 20px 0px 0px;
  margin-top: 0px;
  background: linear-gradient(
    162deg,
    var(--primary-color),
    var(--secondary-color)
  ) !important;
}

.bloc-list h5 {
  margin: 0;
  font-size: 16px;
  font-style: italic;
  margin-top: -5px;
  color: var(--primary-color);
  text-align: center;
}

.bloc-list ul {
  padding-left: 2rem;
  padding-right: 1rem;
  margin: auto;
  width: fit-content;
  padding-bottom: 5px;
}

.bloc-list li {
  margin-bottom: 0.8rem;
  line-height: 1.5;
}

.bloc-list {
  display: flex;
  flex-direction: column;
  height: 100%;
  align-items: stretch; /* Pour forcer toutes les colonnes à la même hauteur */
}

/*
.bloc-1 {
  background-color: var(--primary-color);
}

.bloc-2 {
  background-color: var(--secondary-color);
}

.bloc-3 {
  background-color: #f7b74a;
}
*/

/* Fin CSS Pour le Bac Pro ASSP uniquement */

/* Début page annales */
.annales-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 15px;
}

.annales-buttons a {
  flex: 1 1 calc(25% - 15px);
}

@media (max-width: 750px) {
  .annales-buttons a {
    flex: 1 1 calc(50% - 15px);
  }

  .annales-year {
    flex-direction: column;
  }

  .annale-card {
    flex: 0 0 100%;
  }
}

.annales-year {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 10px;
}

.annale-card {
  display: flex;
  flex-direction: column;
  flex: 0 0 auto;
  width: fit-content;
  /* garde la largeur naturelle, ne serre plus les cartes */
}

.annale-card &gt; .primary-trigger {
  width: fit-content;
}

.hr-annales-top {
  margin-bottom: 8px;
  max-width: 1080px;
}

.hr-annales-bottom {
  margin-bottom: -30px;
  margin-top: 40px;
  max-width: 1080px;
}
/* Fin page annales */
</pre></body></html>