div.marques {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
div.marques div.marque {
  width: calc((100% - 60px) / 4);
  border: 1px solid rgba(31, 47, 91, 0.1607843137);
  border-radius: 15px;
  aspect-ratio: 16/9;
  padding: 30px;
  transition: 0.3s ease-out;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
div.marques div.marque:nth-child(n) {
  margin-bottom: 20px;
  margin-right: 20px;
}
div.marques div.marque:nth-child(4n) {
  margin-right: 0;
}
div.marques div.marque img {
  width: auto;
  height: 80px;
  object-fit: scale-down;
  object-position: center;
}
div.marques div.marque:hover {
  transform: scale(0.95);
  background-color: var(--e-global-color-primary);
}
div.marques div.marque:hover img {
  filter: brightness(0) invert(1);
}
@media screen and (max-width: 767px) {
  div.marques div.marque {
    width: calc((100% - 10px) / 2);
    padding: 0;
  }
  div.marques div.marque:nth-child(n) {
    margin-bottom: 10px;
    margin-right: 10px;
  }
  div.marques div.marque:nth-child(2n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  div.marques {
    justify-content: flex-start;
    padding: 15px;
    border-radius: 20px;
    background-color: #F4F6F9;
  }
}

div.image_grb {
  padding-bottom: 100%;
  position: relative;
}
@media screen and (max-width: 767px) {
  div.image_grb {
    padding-bottom: 0;
  }
}
div.image_grb[data-side=right] img {
  left: 0;
}
div.image_grb[data-side=left] img {
  right: 0;
}
div.image_grb svg {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(-10px);
  z-index: 1;
  height: 100%;
}
div.image_grb img {
  width: 100vw;
  height: 100%;
  position: absolute;
  top: 0;
  max-width: unset !important;
  object-fit: cover;
  object-position: center;
}
@media screen and (max-width: 767px) {
  div.image_grb img {
    position: relative;
    aspect-ratio: 16/9;
    width: 100% !important;
  }
}

div.widget-selecteur {
  max-width: 70%;
}
@media screen and (max-width: 767px) {
  div.widget-selecteur {
    max-width: 100%;
  }
}
div.widget-selecteur div.selecteur-vehicules {
  display: flex;
}
div.widget-selecteur div.selecteur-vehicules select {
  appearance: none;
  background-color: #FFFFFF;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10.439' height='6.633' viewBox='0 0 10.439 6.633'%3E%3Cpath id='Path_16' data-name='Path 16' d='M0,4.512,4.512,0,9.025,4.512' transform='translate(9.732 5.219) rotate(180)' fill='none' stroke='%23848ea7' stroke-width='2'/%3E%3C/svg%3E%0A");
  background-position: calc(100% - 15px) 50%;
  background-repeat: no-repeat;
  color: #626D8C;
  font-size: 17px;
  line-height: 20px;
  padding: 20px 30px;
  border: 0;
}
@media screen and (max-width: 767px) {
  div.widget-selecteur div.selecteur-vehicules select {
    padding: 15px 20px;
  }
}
div.widget-selecteur div.selecteur-vehicules select:first-of-type {
  border-radius: 50px 0 0 50px;
  border-right: 1px solid #EAEAEA;
  padding-left: 40px;
}
@media screen and (max-width: 767px) {
  div.widget-selecteur div.selecteur-vehicules select:first-of-type {
    padding-left: 20px;
  }
}
div.widget-selecteur div.selecteur-vehicules select:last-of-type {
  border-radius: 0;
}
div.widget-selecteur div.selecteur-vehicules select.disabled {
  opacity: 0.5;
  pointer-events: none;
}
div.widget-selecteur div.selecteur-vehicules select.loading {
  pointer-events: none;
  animation: pulse 4s infinite linear;
}
div.widget-selecteur div.selecteur-vehicules a {
  background-color: var(--e-global-color-secondary);
  border-radius: 0px 50px 50px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  padding: 0 25px;
}
div.widget-selecteur div.selecteur-vehicules a.disabled {
  background-color: #EAEAEA;
  opacity: 0.5;
  pointer-events: none;
}
div.widget-selecteur a.more-vehicle {
  display: inline-block;
  margin-top: 10px;
  margin-left: 20px;
  color: rgba(236, 240, 246, 0.5);
  text-decoration: underline;
  font-size: 14px;
  line-height: 17px;
}

div.mise-en-avant {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
div.mise-en-avant a.article {
  border-radius: 10px 10px 0 0;
  background-color: #ECF0F6;
  padding: 30px 30px 50px;
  transition: 0.3s ease-out;
  flex: 0 0 calc(33.3333% - 13.3333px);
}
@media screen and (max-width: 767px) {
  div.mise-en-avant a.article {
    flex: 1 0 100%;
    border-radius: 10px;
  }
}
div.mise-en-avant a.article:hover {
  transform: translateY(20px);
}
div.mise-en-avant a.article div.flex {
  display: flex;
  justify-content: space-between;
}
div.mise-en-avant a.article h5 {
  font-family: "Inter";
  color: var(--e-global-color-primary);
  font-size: 21px;
  line-height: 25px;
  font-weight: 600;
  margin: 0;
  flex: 0 0 70%;
}

div#slider-marques {
  overflow: visible;
}
div#slider-marques div.swiper-wrapper {
  overflow: visible;
  -webkit-transition-timing-function: linear;
  -o-transition-timing-function: linear;
  transition-timing-function: linear;
}
div#slider-marques div.swiper-wrapper div.swiper-slide {
  border-radius: 5px;
  overflow: hidden;
  user-select: none;
}
div#slider-marques div.swiper-wrapper div.swiper-slide > * {
  user-select: none;
}
div#slider-marques div.swiper-wrapper div.swiper-slide div.img-sizer {
  position: relative;
  padding-bottom: 100%;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  div#slider-marques div.swiper-wrapper div.swiper-slide div.img-sizer {
    width: 150px;
    height: 120px;
  }
}
div#slider-marques div.swiper-wrapper div.swiper-slide div.img-sizer img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: scale-down;
  object-position: center;
  padding: 30px;
  z-index: -1;
}

div.annuaire-post div.filter-bar {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}
div.annuaire-post div.filter-bar ul {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
  list-style: none;
  padding: 0;
  border: 1px solid #B4BAC9;
  border-radius: 50px;
  overflow: hidden;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  div.annuaire-post div.filter-bar ul {
    display: none;
  }
}
div.annuaire-post div.filter-bar ul span {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0%, -50%);
  background-color: var(--e-global-color-primary);
  border-radius: 50px;
  z-index: -1;
  height: 100%;
  width: 100px;
  transition: 0.3s ease-out;
  pointer-events: none;
}
div.annuaire-post div.filter-bar ul li {
  padding: 15px 30px;
  cursor: pointer;
  color: rgba(31, 47, 91, 0.5);
  font-weight: 500;
}
div.annuaire-post div.filter-bar ul li.active {
  color: white;
}
div.annuaire-post div.filter-bar div.filter-mobile {
  display: none;
  width: 100%;
}
@media screen and (max-width: 767px) {
  div.annuaire-post div.filter-bar div.filter-mobile {
    display: block;
  }
}
div.annuaire-post div.filter-bar div.filter-mobile label {
  margin-bottom: 20px;
  font-weight: 600;
}
div.annuaire-post div.filter-bar div.filter-mobile select {
  appearance: none;
  padding: 0;
  margin: 0;
  border-radius: 5px;
  border: 1px solid var(--e-global-color-primary);
  background-color: white;
  padding: 10px 40px 10px 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15.746' height='8.58' viewBox='0 0 15.746 8.58'%3E%3Cpath id='Path_16470' data-name='Path 16470' d='M2772.02-16617.705l7.519,7.52,7.52-7.52' transform='translate(-2771.666 16618.059)' fill='none' stroke='%23003d1f' stroke-width='1'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: calc(100% - 20px) 50%;
}
div.annuaire-post div.articles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}
@media screen and (max-width: 1024px) {
  div.annuaire-post div.articles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 767px) {
  div.annuaire-post div.articles {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
div.annuaire-post div.articles div.article {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 10px;
  background-color: white;
  overflow: hidden;
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
  opacity: 1;
  border: 1px solid #EAEAEA;
}
div.annuaire-post div.articles div.article.scale-up {
  animation: scaleUp 0.3s ease-out forwards;
}
div.annuaire-post div.articles div.article.scale-down {
  animation: scaleDown 0.3s ease-out forwards;
  animation-fill-mode: forwards; /* Keep the final state after animation */
  display: none !important; /* Ensure it is hidden */
}
@media screen and (min-width: 1023px) {
  div.annuaire-post div.articles div.article.first {
    grid-column-start: 1;
    grid-column-end: 3;
    flex-direction: row;
    align-items: center;
  }
  div.annuaire-post div.articles div.article.first div.img-sizer {
    width: 50%;
  }
  div.annuaire-post div.articles div.article.first div.img-sizer img {
    aspect-ratio: 1/1;
  }
  div.annuaire-post div.articles div.article.first div.content h5 {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 30px;
  }
}
div.annuaire-post div.articles div.article div.img-sizer {
  padding: 10px;
  width: 100%;
}
div.annuaire-post div.articles div.article div.img-sizer img {
  border-radius: 10px;
  aspect-ratio: 16/9;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
div.annuaire-post div.articles div.article div.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  height: 100%;
  padding: 10px 20px 30px;
}
div.annuaire-post div.articles div.article div.content div.meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
div.annuaire-post div.articles div.article div.content div.meta > span {
  font-size: 15px;
  line-height: 19px;
  color: #626D8C;
}
div.annuaire-post div.articles div.article div.content h5 {
  font-family: "GTEestiProDisplay";
  color: var(--e-global-color-primary);
  font-weight: 500;
  margin: 10px 0 50px;
  font-size: 25px;
  line-height: 35px;
}
@media screen and (max-width: 767px) {
  div.annuaire-post div.articles div.article div.content h5 {
    font-size: 18px;
    line-height: 25px;
  }
}
div.annuaire-post div.articles div.article div.content div.top {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
div.annuaire-post div.articles div.article div.content div.button {
  margin-top: auto;
}
div.annuaire-post div.articles div.article div.content div.button a {
  font-weight: 500;
  color: var(--e-global-color-primary);
  padding: 10px 20px;
  background-color: var(--e-global-color-secondary);
  border-radius: 7px 30px 7px 7px;
  display: inline-flex;
  align-items: center;
  gap: 30px;
  transition: 0.3s ease-out;
}
div.annuaire-post div.articles div.article div.content div.button a:hover {
  transform: scale(0.95);
  gap: 20px;
}

@keyframes scaleUp {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes scaleDown {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0.8);
    opacity: 0;
  }
}
div.timeline {
  overflow: visible;
  position: relative;
  z-index: 1;
}
div.timeline:before {
  content: "";
  height: 1px;
  background-color: rgba(212, 237, 100, 0.2705882353);
  width: 100vw;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
div.timeline div.swiper-wrapper div.swiper-slide > span {
  display: block;
  color: var(--e-global-color-secondary);
  font-size: 45px;
  font-weight: 700;
  line-height: 52px;
  font-family: "GTEestiProDisplay";
  padding-top: 30px;
  opacity: 0.7;
  transition: 0.3s ease-out;
}
div.timeline div.swiper-wrapper div.swiper-slide > span:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 12px;
  height: 12px;
  background-color: var(--e-global-color-secondary);
  border-radius: 50%;
  z-index: 2;
  transform: translateY(-50%);
  box-shadow: 0px 0px 0px 10px #7a8f60;
}
div.timeline div.swiper-wrapper div.swiper-slide div.desc {
  opacity: 0.7;
  color: white;
}
div.timeline div.swiper-wrapper div.swiper-slide.swiper-slide-active > span {
  opacity: 1;
}
div.timeline div.swiper-wrapper div.swiper-slide.swiper-slide-active div.desc {
  opacity: 1;
}
div.timeline div.pagination {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
div.timeline div.pagination button {
  border: 0;
  padding: 0;
  background-color: transparent;
  transition: 0.3s ease-out;
}
div.timeline div.pagination button:hover, div.timeline div.pagination button:focus {
  background-color: transparent;
}
div.timeline div.pagination button.swiper-button-disabled {
  opacity: 0.5;
  pointer-events: none;
  transform: scale(0.95);
}

div.offres-emplois div.container-offres {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
div.offres-emplois div.container-offres div.left-filters {
  flex: 0 0 25%;
  padding: 30px;
}
@media screen and (max-width: 1024px) {
  div.offres-emplois div.container-offres div.left-filters {
    flex: 1 0 100%;
    padding: 30px;
  }
}
div.offres-emplois div.container-offres div.left-filters > span {
  font-weight: 700;
  margin-bottom: 30px;
  display: block;
}
div.offres-emplois div.container-offres div.left-filters form {
  position: sticky;
  top: 30px;
  left: 0;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  div.offres-emplois div.container-offres div.left-filters form {
    position: static;
  }
}
div.offres-emplois div.container-offres div.left-filters form div.accordeon {
  margin-bottom: 10px;
  border-radius: 5px;
  background-color: white;
  overflow: hidden;
}
div.offres-emplois div.container-offres div.left-filters form div.accordeon button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 0;
  padding: 10px 0;
  padding-right: 10px;
  color: var(--e-global-color-primary);
  font-size: 18px;
  line-height: 21px;
  font-weight: 500;
  border-radius: 0;
}
div.offres-emplois div.container-offres div.left-filters form div.accordeon button:hover, div.offres-emplois div.container-offres div.left-filters form div.accordeon button:focus {
  background-color: transparent;
}
div.offres-emplois div.container-offres div.left-filters form div.accordeon button div.group {
  display: flex;
  align-items: center;
  gap: 10px;
}
div.offres-emplois div.container-offres div.left-filters form div.accordeon button svg {
  transition: 0.3s ease-out;
}
div.offres-emplois div.container-offres div.left-filters form div.accordeon button.active svg {
  transform: rotate(90deg);
}
div.offres-emplois div.container-offres div.left-filters form div.accordeon div.panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s ease-out;
}
div.offres-emplois div.container-offres div.left-filters form div.accordeon div.panel ul {
  list-style: none;
  padding: 0px;
}
div.offres-emplois div.container-offres div.left-filters form div.accordeon div.panel ul li {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 20px 0;
}
div.offres-emplois div.container-offres div.left-filters form div.accordeon div.panel ul li input[type=checkbox] {
  appearance: none;
  background-color: #fff;
  margin: 0;
  font: inherit;
  color: currentColor;
  width: 1.15em;
  height: 1.15em;
  border: 0.15em solid #A29E9E;
  border-radius: 0;
  transform: translateY(-0.075em);
  display: grid;
  place-content: center;
  flex: 0 0 auto;
}
div.offres-emplois div.container-offres div.left-filters form div.accordeon div.panel ul li input[type=checkbox]::before {
  content: "";
  width: 0.65em;
  height: 0.65em;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
  box-shadow: inset 1em 1em var(--e-global-color-secondary);
}
div.offres-emplois div.container-offres div.left-filters form div.accordeon div.panel ul li input[type=checkbox]:checked::before {
  transform: scale(1);
}
div.offres-emplois div.container-offres div.left-filters form div.accordeon div.panel ul li label {
  margin-top: -0.25em;
  line-height: 25px;
}
div.offres-emplois div.container-offres div.right-offre {
  flex: 0 0 70%;
  padding: 30px;
}
@media screen and (max-width: 1024px) {
  div.offres-emplois div.container-offres div.right-offre {
    flex: 1 0 100%;
  }
}
div.offres-emplois div.container-offres div.right-offre div.grid-offre {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
div.offres-emplois div.container-offres div.right-offre div.offre {
  flex: 1 0 100%;
  background-color: var(--e-global-color-accent);
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  transition: 0.3s ease-out;
}
div.offres-emplois div.container-offres div.right-offre div.offre:hover {
  cursor: pointer;
  transform: scale(0.95);
}
div.offres-emplois div.container-offres div.right-offre div.offre > svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 300px;
  height: auto;
  z-index: -1;
  transform: translateX(-50px) translateY(10px);
}
@media screen and (max-width: 767px) {
  div.offres-emplois div.container-offres div.right-offre div.offre > svg {
    display: none;
  }
}
div.offres-emplois div.container-offres div.right-offre div.offre div.content {
  padding: 30px;
  display: flex;
  flex-direction: column;
}
div.offres-emplois div.container-offres div.right-offre div.offre div.content h5 {
  font-family: "GTEestiProDisplay", sans-serif;
  color: var(--e-global-color-primary);
  font-weight: 500;
  margin: 10px 0 5px;
  font-size: 26px;
  font-weight: 500;
  line-height: 30px;
  margin-bottom: 5px;
}
div.offres-emplois div.container-offres div.right-offre div.offre div.content p.pastille {
  color: white;
}
div.offres-emplois div.container-offres div.right-offre div.offre div.content p.pastille span {
  display: inline-flex;
  border: 1px solid var(--e-global-color-primary);
  border-radius: 50px;
  padding: 5px 20px;
}
div.offres-emplois div.container-offres div.right-offre div.offre div.content > span {
  color: #848EA7;
}
div.offres-emplois div.container-offres div.right-offre div.offre div.content div.terms {
  margin: 30px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
div.offres-emplois div.container-offres div.right-offre div.offre div.content div.terms div.term {
  font-size: 16px;
  line-height: 16px;
  font-weight: 500;
  color: var(--e-global-color-primary);
  border-radius: 12px;
  padding: 10px 20px;
  background-color: rgba(31, 47, 91, 0.1333333333);
}
div.offres-emplois div.container-offres div.right-offre div.no-offre {
  text-align: center;
  padding: 50px 0;
}
div.offres-emplois div.container-offres div.right-offre div.no-offre h3 {
  color: var(--e-global-color-text);
}
div.offres-emplois div.container-offres div.right-offre div.no-result {
  display: none;
  text-align: center;
  padding: 50px 0;
}
div.offres-emplois div.container-offres div.right-offre div.no-result h3 {
  color: var(--e-global-color-text);
}
div.offres-emplois div.container-offres div.right-offre div.no-result p {
  color: var(--e-global-color-text);
}
div.offres-emplois div.container-offres div.right-offre div.no-result.active {
  display: block;
}
div.offres-emplois div.container-offres div.right-offre div.bar {
  margin-top: 30px;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-bottom: 100px;
  border-bottom: 1px solid #E0E8FF;
}
div.offres-emplois div.container-offres div.right-offre div.bar span {
  font-size: 14px;
  line-height: 17px;
  font-weight: 500;
  color: var(--e-global-color-primary);
  text-decoration: underline;
}

div.metiers div.accordeon {
  overflow: hidden;
  transition: 0.3s ease-out;
  border-radius: 10px;
  margin: 30px 0;
  background-color: #ECF0F6;
  padding: 15px 30px;
}
div.metiers div.accordeon:first-child {
  margin-top: 0;
}
div.metiers div.accordeon:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  div.metiers div.accordeon {
    padding: 10px 20px;
  }
}
div.metiers div.accordeon .accordion {
  position: relative;
  font-weight: normal;
  cursor: pointer;
  width: 100%;
  border: none;
  outline: none;
  background-color: transparent;
  display: flex;
  align-items: center;
  padding: 0;
  transition: 0.3s ease-out;
  justify-content: space-between;
}
div.metiers div.accordeon .accordion svg {
  transition: 0.3s ease-out;
}
div.metiers div.accordeon .accordion h4 {
  flex: 1;
  text-align: left;
  margin: 0;
  white-space: break-spaces;
  color: var(--e-global-color-primary);
  font-size: 24px;
  font-weight: 500;
  line-height: 28px;
  font-family: "GTEestiProDisplay";
}
@media screen and (max-width: 767px) {
  div.metiers div.accordeon .accordion h4 {
    font-size: 18px;
    padding-left: 0;
  }
}
div.metiers div.accordeon .accordion div.icon-sizer {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 20px;
  position: relative;
}
div.metiers div.accordeon .accordion div.icon-sizer img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
div.metiers div.accordeon .accordion.active svg {
  transform: rotate(90deg);
}
div.metiers div.accordeon .panel {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
}
@media screen and (max-width: 767px) {
  div.metiers div.accordeon .panel {
    padding: 0px;
  }
}
div.metiers div.accordeon .panel div.description {
  display: flex;
  gap: 100px;
  margin-top: 50px;
}
@media screen and (max-width: 1024px) {
  div.metiers div.accordeon .panel div.description {
    gap: 0;
    margin-top: 20px;
    flex-wrap: wrap;
  }
}
div.metiers div.accordeon .panel div.description div.left-part, div.metiers div.accordeon .panel div.description div.right-part {
  padding: 30px;
  flex: 1;
}
@media screen and (max-width: 1024px) {
  div.metiers div.accordeon .panel div.description div.left-part, div.metiers div.accordeon .panel div.description div.right-part {
    padding: 20px;
    flex: 1 0 100%;
  }
}
div.metiers div.accordeon .panel div.description div.left-part div.temoignage, div.metiers div.accordeon .panel div.description div.right-part div.temoignage {
  font-family: "GTEestiProDisplay";
  background-color: white;
  padding: 30px 50px;
  border-radius: 15px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  div.metiers div.accordeon .panel div.description div.left-part div.temoignage, div.metiers div.accordeon .panel div.description div.right-part div.temoignage {
    padding: 20px;
  }
}
div.metiers div.accordeon .panel div.description div.left-part div.temoignage svg, div.metiers div.accordeon .panel div.description div.right-part div.temoignage svg {
  position: absolute;
  top: 0;
  left: 50px;
  transform: translateY(-50%);
}
div.metiers div.accordeon .panel div.description div.left-part div.temoignage > p, div.metiers div.accordeon .panel div.description div.right-part div.temoignage > p {
  font-size: 20px;
  font-weight: 400;
  line-height: 23px;
  color: var(--e-global-color-primary);
}
@media screen and (max-width: 1024px) {
  div.metiers div.accordeon .panel div.description div.left-part div.temoignage > p, div.metiers div.accordeon .panel div.description div.right-part div.temoignage > p {
    font-size: 15px;
    font-weight: 400;
    line-height: 20px;
  }
}
div.metiers div.accordeon .panel div.description div.left-part div.temoignage div.temoin, div.metiers div.accordeon .panel div.description div.right-part div.temoignage div.temoin {
  margin-top: 30px;
}
div.metiers div.accordeon .panel div.description div.left-part div.temoignage div.temoin span, div.metiers div.accordeon .panel div.description div.right-part div.temoignage div.temoin span {
  font-size: 19px;
  font-weight: 500;
  line-height: 22px;
  color: #848EA7;
}
@media screen and (max-width: 1024px) {
  div.metiers div.accordeon .panel div.description div.left-part div.temoignage div.temoin span, div.metiers div.accordeon .panel div.description div.right-part div.temoignage div.temoin span {
    font-size: 15px;
    font-weight: 400;
    line-height: 20px;
  }
}
div.metiers div.accordeon .panel div.description div.left-part div.temoignage div.temoin p, div.metiers div.accordeon .panel div.description div.right-part div.temoignage div.temoin p {
  font-size: 17px;
  font-weight: 350;
  line-height: 19px;
  color: #848EA7;
}
@media screen and (max-width: 1024px) {
  div.metiers div.accordeon .panel div.description div.left-part div.temoignage div.temoin p, div.metiers div.accordeon .panel div.description div.right-part div.temoignage div.temoin p {
    font-size: 13px;
    font-weight: 400;
    line-height: 20px;
  }
}
div.metiers div.accordeon .panel div.description div.left-part div.part, div.metiers div.accordeon .panel div.description div.right-part div.part {
  margin-bottom: 50px;
}
@media screen and (max-width: 1024px) {
  div.metiers div.accordeon .panel div.description div.left-part div.part, div.metiers div.accordeon .panel div.description div.right-part div.part {
    margin-bottom: 20px;
  }
}
div.metiers div.accordeon .panel div.description div.left-part div.part:last-child, div.metiers div.accordeon .panel div.description div.right-part div.part:last-child {
  margin-bottom: 0px;
}
div.metiers div.accordeon .panel div.description div.left-part div.part span, div.metiers div.accordeon .panel div.description div.right-part div.part span {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  gap: 10px;
  font-family: "GTEestiProDisplay";
  font-size: 22px;
  line-height: 26px;
  font-weight: normal;
  color: var(--e-global-color-primary);
}
div.metiers div.accordeon .panel div.description div.left-part div.part p, div.metiers div.accordeon .panel div.description div.right-part div.part p {
  font-size: 15px;
  line-height: 22px;
  color: #848EA7;
}

div.offres-emplois div.container-offres {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
div.offres-emplois div.container-offres div.grid-offre {
  flex: 1 0 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
div.offres-emplois div.container-offres div.offre {
  flex: 1 0 100%;
  background-color: var(--e-global-color-accent);
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  transition: 0.3s ease-out;
}
div.offres-emplois div.container-offres div.offre:hover {
  cursor: pointer;
  transform: scale(0.95);
}
div.offres-emplois div.container-offres div.offre > svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 300px;
  height: auto;
  z-index: -1;
  transform: translateX(-50px) translateY(10px);
}
@media screen and (max-width: 767px) {
  div.offres-emplois div.container-offres div.offre > svg {
    display: none;
  }
}
div.offres-emplois div.container-offres div.offre div.content {
  padding: 30px;
  display: flex;
  flex-direction: column;
}
div.offres-emplois div.container-offres div.offre div.content h5 {
  font-family: "GTEestiProDisplay", sans-serif;
  color: var(--e-global-color-primary);
  font-weight: 500;
  margin: 10px 0 5px;
  font-size: 26px;
  font-weight: 500;
  line-height: 30px;
  margin-bottom: 5px;
}
div.offres-emplois div.container-offres div.offre div.content p.pastille {
  color: white;
}
div.offres-emplois div.container-offres div.offre div.content p.pastille span {
  display: inline-flex;
  border: 1px solid var(--e-global-color-primary);
  border-radius: 50px;
  padding: 5px 20px;
}
div.offres-emplois div.container-offres div.offre div.content > span {
  color: #848EA7;
}
div.offres-emplois div.container-offres div.offre div.content div.terms {
  margin: 30px 0 0;
  display: flex;
  gap: 10px;
  align-items: center;
}
div.offres-emplois div.container-offres div.offre div.content div.terms div.term {
  font-size: 16px;
  line-height: 16px;
  font-weight: 500;
  color: var(--e-global-color-primary);
  border-radius: 12px;
  padding: 10px 20px;
  background-color: rgba(31, 47, 91, 0.1333333333);
}

div.form-entretien {
  display: flex;
  flex-direction: column;
  align-items: center;
}
div.form-entretien div.step-status {
  position: relative;
  display: inline-flex;
  gap: 100px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 10px;
  z-index: 1;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  div.form-entretien div.step-status {
    gap: 50px;
  }
}
div.form-entretien div.step-status span {
  position: relative;
  padding-top: 10px;
  color: #A2ABBD;
  font-size: 15px;
  line-height: 19px;
  font-weight: 600;
}
div.form-entretien div.step-status span.active {
  color: #1F2F5B;
}
div.form-entretien div.step-status span.active::before {
  background-color: #1F2F5B;
}
div.form-entretien div.step-status span:before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #A3ABBD;
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  box-shadow: 0px 0px 0px 5px #D8DCE4;
}
div.form-entretien div.step-status:before {
  content: "";
  display: block;
  width: calc(100% - 135px);
  height: 1px;
  background-color: #BBC1D0;
  position: absolute;
  top: 0;
  z-index: -2;
}
@media screen and (max-width: 767px) {
  div.form-entretien div.step-status:before {
    display: none;
  }
}
div.form-entretien div.step-status:after {
  content: "";
  display: block;
  width: 0%;
  height: 1px;
  background-color: #1F2F5B;
  position: absolute;
  top: 0;
  z-index: -1;
}
div.form-entretien div.step {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
  position: absolute;
  visibility: hidden;
  opacity: 0;
}
div.form-entretien div.step.visible {
  position: static;
  visibility: visible;
  opacity: 1;
}
div.form-entretien div.step div.cards {
  display: flex;
  gap: 15px;
  margin-bottom: 50px;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  div.form-entretien div.step div.cards {
    flex-wrap: wrap;
  }
}
div.form-entretien div.step div.cards div.card {
  flex: 1;
  border-radius: 15px;
  border: 1px solid #BBC1D0;
  overflow: hidden;
  transition: 0.3s ease-out;
}
div.form-entretien div.step div.cards div.card div.img-sizer {
  position: relative;
  padding-bottom: 62.5%;
}
div.form-entretien div.step div.cards div.card div.img-sizer img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s ease-out;
}
div.form-entretien div.step div.cards div.card div.content {
  height: 100%;
  padding: 30px;
  transition: 0.3s ease-out;
}
div.form-entretien div.step div.cards div.card div.content h5 {
  font-family: "GTEestiProDisplay";
  font-size: 25px;
  line-height: 28px;
  color: #757E9B;
  margin: 0 0 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
div.form-entretien div.step div.cards div.card div.content h5 span {
  flex: none;
  display: inline-block;
  width: 15px;
  height: 15px;
  border: 1px solid #848EA7;
  border-radius: 50%;
}
div.form-entretien div.step div.cards div.card div.content p {
  font-size: 14px;
  line-height: 20px;
  color: #757E9B;
}
div.form-entretien div.step div.cards div.card:hover div.img-sizer img {
  transform: scale(1.1);
}
div.form-entretien div.step div.cards div.card:hover div.content {
  background-color: white;
}
div.form-entretien div.step div.cards div.card.active {
  border: 2px solid var(--e-global-color-secondary);
}
div.form-entretien div.step div.cards div.card.active div.content {
  background-color: white;
}
div.form-entretien div.step div.cards div.card.active div.content h5 span {
  background-color: #1F2F5B;
  border: 2px solid white;
  box-shadow: 0px 0px 0px 3px var(--e-global-color-secondary);
}
@media screen and (max-width: 1024px) {
  div.form-entretien div.step div.cards div.card {
    flex: 0 0 32%;
  }
}
@media screen and (max-width: 767px) {
  div.form-entretien div.step div.cards div.card {
    flex: 1 0 100%;
  }
}
div.form-entretien div.step div.cards.hidden {
  display: none;
}
div.form-entretien div.step span.button {
  border-radius: 50px;
  background-color: #1F2F5B;
  color: white;
  display: inline-flex;
  align-items: center;
  gap: 30px;
  padding: 15px 30px;
  font-size: 18px;
  line-height: 21px;
  font-weight: 500;
  font-family: "GTEestiProDisplay";
  transition: 0.3s ease-out;
  cursor: pointer;
}
div.form-entretien div.step span.button:hover {
  gap: 10px;
}
div.form-entretien div.step span.button.disabled {
  opacity: 0.33;
  pointer-events: none;
}
div.form-entretien div.step span.button-back {
  border-radius: 50px;
  background-color: transparent;
  color: var(--e-global-color-primary);
  border: 1px solid var(--e-global-color-primary);
  display: inline-flex;
  align-items: center;
  gap: 30px;
  padding: 15px 30px;
  font-size: 18px;
  line-height: 21px;
  font-weight: 500;
  font-family: "GTEestiProDisplay";
  transition: 0.3s ease-out;
  cursor: pointer;
}
div.form-entretien div.step span.button-back:hover {
  gap: 10px;
}
div.form-entretien div.step button[type=submit] {
  border-radius: 50px;
  background-color: #1F2F5B;
  color: white;
  display: inline-flex;
  align-items: center;
  gap: 30px;
  padding: 15px 30px;
  border: 0;
  font-size: 18px;
  line-height: 21px;
  font-weight: 500;
  font-family: "GTEestiProDisplay";
  transition: 0.3s ease-out;
  cursor: pointer;
}
div.form-entretien div.step button[type=submit]:hover {
  gap: 10px;
}
div.form-entretien div.step button[type=submit].loading {
  animation: pulseOpacity 2s infinite ease-in-out;
  pointer-events: none;
}
div.form-entretien div.step form {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
}
div.form-entretien div.step form div.input-group {
  flex: 0 0 calc(50% - 10px);
}
@media screen and (max-width: 767px) {
  div.form-entretien div.step form div.input-group {
    flex: 1 0 100%;
  }
}
div.form-entretien div.step form div.input-group input,
div.form-entretien div.step form div.input-group select {
  background-color: white;
  padding: 15px 30px;
  border-radius: 7px;
  color: #A5ACBE;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  border: 1px solid rgba(187, 193, 208, 0.26);
  width: 100%;
}
div.form-entretien div.step form div.input-group input[type=tel],
div.form-entretien div.step form div.input-group select[type=tel] {
  padding: 15px 30px 15px 55px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='19.134' height='19.134' viewBox='0 0 19.134 19.134'%3E%3Cpath id='Icon_awesome-phone-volume' data-name='Icon awesome-phone-volume' d='M3.922,19.14A13.39,13.39,0,0,1,3.922.2a.693.693,0,0,1,.857-.1L7.391,1.738a.693.693,0,0,1,.276.845L6.361,5.847a.693.693,0,0,1-.712.432L3.4,6.055a10.7,10.7,0,0,0,0,7.234l2.249-.225a.693.693,0,0,1,.712.432l1.306,3.265a.693.693,0,0,1-.276.845L4.779,19.238a.693.693,0,0,1-.857-.1Z' transform='translate(0 5.457) rotate(-45)' fill='%23a5acbe'/%3E%3C/svg%3E%0A");
  background-position: 30px 50%;
  background-repeat: no-repeat;
}
div.form-entretien div.step form div.input-group input[type=email],
div.form-entretien div.step form div.input-group select[type=email] {
  padding: 15px 30px 15px 55px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16.06' height='12.848' viewBox='0 0 16.06 12.848'%3E%3Cpath id='Icon_material-mail-outline' data-name='Icon material-mail-outline' d='M17.454,6H4.606a1.6,1.6,0,0,0-1.6,1.606L3,17.242a1.611,1.611,0,0,0,1.606,1.606H17.454a1.611,1.611,0,0,0,1.606-1.606V7.606A1.611,1.611,0,0,0,17.454,6Zm0,11.242H4.606V9.212l6.424,4.015,6.424-4.015ZM11.03,11.621,4.606,7.606H17.454Z' transform='translate(-3 -6)' fill='%23a5acbe'/%3E%3C/svg%3E%0A");
  background-position: 30px 50%;
  background-repeat: no-repeat;
}
div.form-entretien div.step form div.input-group input[type=time],
div.form-entretien div.step form div.input-group select[type=time] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='19.256' height='19.256' viewBox='0 0 19.256 19.256'%3E%3Cg id='Icon_ion-md-time' data-name='Icon ion-md-time' transform='translate(-3.375 -3.375)'%3E%3Cpath id='Path_73302' data-name='Path 73302' d='M12.994,3.375A9.628,9.628,0,1,0,22.631,13,9.624,9.624,0,0,0,12.994,3.375ZM13,20.705a7.7,7.7,0,1,1,7.7-7.7A7.7,7.7,0,0,1,13,20.705Z' fill='%23a5acbe'/%3E%3Cpath id='Path_73303' data-name='Path 73303' d='M17.982,10.688H16.538v5.777L21.592,19.5l.722-1.185-4.333-2.569Z' transform='translate(-4.497 -2.499)' fill='%23a5acbe'/%3E%3C/g%3E%3C/svg%3E%0A");
  background-position: calc(100% - 30px) 50%;
  background-repeat: no-repeat;
}
div.form-entretien div.step form textarea {
  background-color: white;
  padding: 15px 30px;
  border-radius: 7px;
  color: #A5ACBE;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  border: 1px solid rgba(187, 193, 208, 0.26);
  width: 100%;
}
div.form-entretien div.step form#form-step1 div.input-group {
  flex: 1 0 100%;
}
div.form-entretien div.step form#form-step1 div.button-group {
  justify-content: flex-end;
}
div.form-entretien div.step div.button-group {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  div.form-entretien div.step div.button-group {
    flex-wrap: wrap;
    gap: 20px;
  }
}
div.form-entretien div.step div.message {
  width: 100%;
  text-align: right;
  opacity: 0;
  visibility: hidden;
}
div.form-entretien div.step div.message span {
  font-size: 16px;
  line-height: 21px;
  font-family: "GTEestiProDisplay";
}
div.form-entretien div.step div.message.success {
  color: var(--e-global-color-primary);
}
div.form-entretien div.step div.message.error {
  color: rgb(255, 59, 59);
}
div.form-entretien div.step div.message.visible {
  opacity: 1;
  visibility: visible;
}

@keyframes pulseOpacity {
  0% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.3;
  }
}
div.points_ventes {
  background-color: #F4F6F9;
}
div.points_ventes div#map-points_ventes {
  height: 60vh;
  width: 100%;
}
div.points_ventes div#map-points_ventes .mapboxgl-popup {
  border-radius: 15px;
  overflow: hidden;
}
div.points_ventes div#map-points_ventes .mapboxgl-popup .mapboxgl-popup-tip {
  border-bottom-color: var(--e-global-color-text);
  border-top-color: var(--e-global-color-text);
}
div.points_ventes div#map-points_ventes .mapboxgl-popup .mapboxgl-popup-content {
  padding: 0;
  border-radius: 15px;
  overflow: hidden;
}
div.points_ventes div#map-points_ventes .mapboxgl-popup .mapboxgl-popup-content div.img-sizer {
  position: relative;
  padding-bottom: 62.5%;
}
div.points_ventes div#map-points_ventes .mapboxgl-popup .mapboxgl-popup-content div.img-sizer img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
div.points_ventes div#map-points_ventes .mapboxgl-popup .mapboxgl-popup-content div.description {
  background-color: var(--e-global-color-text);
  padding: 20px;
  display: flex;
  flex-direction: column;
}
div.points_ventes div#map-points_ventes .mapboxgl-popup .mapboxgl-popup-content div.description h3 {
  font-size: 16px;
  line-height: 25px;
  color: white;
  font-weight: bold;
  margin: 0 0 5px;
}
div.points_ventes div#map-points_ventes .mapboxgl-popup .mapboxgl-popup-content div.description span {
  display: block;
  font-size: 14px;
  line-height: 22px;
  color: white;
  margin-bottom: 20px;
}
div.points_ventes div#map-points_ventes .mapboxgl-popup .mapboxgl-popup-content div.description a {
  font-size: 14px;
  line-height: 22px;
  color: var(--e-global-color-secondary);
  font-weight: 600;
}
div.points_ventes div#map-points_ventes .mapboxgl-popup .mapboxgl-popup-content .mapboxgl-popup-close-button {
  color: white;
}
div.points_ventes div.container-points_ventes {
  padding: 50px 0 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1440px;
  margin: 0 auto;
}
div.points_ventes div.container-points_ventes div.left-filters {
  flex: 1 0 100%;
  padding: 30px;
  flex-wrap: wrap;
  display: flex;
  justify-content: space-between;
}
div.points_ventes div.container-points_ventes div.left-filters h1 {
  font-family: "GTEestiProDisplay";
  font-weight: 400;
  color: var(--e-global-color-primary);
}
div.points_ventes div.container-points_ventes div.left-filters form {
  z-index: 1;
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
div.points_ventes div.container-points_ventes div.left-filters form select {
  appearance: none;
  border: 1px solid #848EA7;
  background-color: transparent;
  border-radius: 7px;
  color: #848EA7;
  width: auto;
  font-size: 13px;
  font-weight: 500;
  line-height: 16px;
  padding: 10px 40px 10px 15px;
  background-image: url("data:image/svg+xml,%0A%3Csvg width='9px' height='6px' viewBox='0 0 9 6' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cg id='Page-1' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg id='Group' transform='translate(1.000000, 1.000000)' stroke='%23848EA7' stroke-width='1.5'%3E%3Cpolyline id='Path_73322' transform='translate(3.460500, 1.730500) rotate(180.000000) translate(-3.460500, -1.730500) ' points='0 3.461 3.461 4.4408921e-16 6.921 3.461'%3E%3C/polyline%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-position: calc(100% - 15px) 50%;
  background-repeat: no-repeat;
}
div.points_ventes div.container-points_ventes div.right-points_ventes {
  flex: 1 0 100%;
  padding: 30px;
}
div.points_ventes div.container-points_ventes div.right-points_ventes div.grid-points_ventes {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
@media screen and (max-width: 1024px) {
  div.points_ventes div.container-points_ventes div.right-points_ventes div.grid-points_ventes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 767px) {
  div.points_ventes div.container-points_ventes div.right-points_ventes div.grid-points_ventes {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
div.points_ventes div.container-points_ventes div.right-points_ventes div.grid-points_ventes div.point {
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
  opacity: 1;
}
div.points_ventes div.container-points_ventes div.right-points_ventes div.grid-points_ventes div.point.scale-up {
  animation: scaleUp 0.3s ease-out forwards;
}
div.points_ventes div.container-points_ventes div.right-points_ventes div.grid-points_ventes div.point.scale-down {
  animation: scaleDown 0.3s ease-out forwards;
  animation-fill-mode: forwards; /* Keep the final state after animation */
  display: none !important; /* Ensure it is hidden */
}
div.points_ventes div.container-points_ventes div.right-points_ventes div.grid-points_ventes div.point div.img-sizer {
  position: relative;
  padding-bottom: 62.5%;
  overflow: hidden;
}
div.points_ventes div.container-points_ventes div.right-points_ventes div.grid-points_ventes div.point div.img-sizer img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s ease-out;
}
div.points_ventes div.container-points_ventes div.right-points_ventes div.grid-points_ventes div.point div.content {
  height: 100%;
  padding: 20px;
  background-color: white;
  display: flex;
  flex-direction: column;
}
div.points_ventes div.container-points_ventes div.right-points_ventes div.grid-points_ventes div.point div.content span {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  box-shadow: 0 0 0 4px white;
  background-color: var(--e-global-color-secondary);
  margin-top: -47px;
  z-index: 1;
  position: relative;
}
div.points_ventes div.container-points_ventes div.right-points_ventes div.grid-points_ventes div.point div.content span img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70%;
  height: 70%;
  object-fit: contain;
  transform: translate(-50%, -50%);
}
div.points_ventes div.container-points_ventes div.right-points_ventes div.grid-points_ventes div.point div.content h3 {
  font-family: "GTEestiProDisplay";
  font-size: 24px;
  line-height: 28px;
  font-weight: 500;
  color: var(--e-global-color-primary);
  margin: 15px 0 10px;
}
div.points_ventes div.container-points_ventes div.right-points_ventes div.grid-points_ventes div.point div.content p {
  font-size: 14px;
  line-height: 19px;
  color: var(--e-global-color-text);
}
div.points_ventes div.container-points_ventes div.right-points_ventes div.grid-points_ventes div.point:hover div.img-sizer img {
  transform: scale(1.1);
}
div.points_ventes div.container-points_ventes div.right-points_ventes div.no-point {
  text-align: center;
  padding: 50px 0;
}
div.points_ventes div.container-points_ventes div.right-points_ventes div.no-point h3 {
  color: var(--e-global-color-accent);
}
div.points_ventes div.container-points_ventes div.right-points_ventes div.no-result {
  display: none;
  text-align: center;
  padding: 50px 0;
}
div.points_ventes div.container-points_ventes div.right-points_ventes div.no-result h3 {
  color: var(--e-global-color-accent);
}
div.points_ventes div.container-points_ventes div.right-points_ventes div.no-result p {
  color: var(--e-global-color-text);
}
div.points_ventes div.container-points_ventes div.right-points_ventes div.no-result.active {
  display: block;
}

ul.switch {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
  list-style: none;
  padding: 0;
  border: 1px solid #ECF0F6;
  background-color: #ECF0F6;
  border-radius: 50px;
  overflow: hidden;
  line-height: 1;
}
ul.switch span {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0%, -50%);
  background-color: var(--e-global-color-secondary);
  border-radius: 50px;
  z-index: -1;
  height: 100%;
  width: 210px;
  transition: 0.3s ease-out;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  ul.switch span {
    transform: translate(1px, -50%);
    width: 151.65px;
  }
}
ul.switch li {
  padding: 15px 30px;
  cursor: pointer;
  color: var(--e-global-color-text);
  font-size: 17px;
  font-weight: 600;
  line-height: 20px;
}
ul.switch li.active {
  color: var(--e-global-color-primary);
}
@media screen and (max-width: 767px) {
  ul.switch li {
    text-align: center;
  }
}

select#points_de_vente {
  padding: 15px 40px 15px 45px;
  background-color: white;
  border-radius: 50px;
  border: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 17px;
  color: var(--e-global-color-primary);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11.912' height='14.226' viewBox='0 0 11.912 14.226'%3E%3Cg id='Icon_feather-map-pin' data-name='Icon feather-map-pin' transform='translate(-3.75 -0.75)' opacity='0.6'%3E%3Cpath id='Path_598' data-name='Path 598' d='M14.912,6.706c0,4.049-5.206,7.52-5.206,7.52S4.5,10.755,4.5,6.706a5.206,5.206,0,1,1,10.412,0Z' fill='none' stroke='%231f2f5b' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5'/%3E%3Cpath id='Path_599' data-name='Path 599' d='M17.285,12.393A1.893,1.893,0,1,1,15.393,10.5a1.893,1.893,0,0,1,1.893,1.893Z' transform='translate(-5.687 -5.647)' fill='none' stroke='%231f2f5b' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5'/%3E%3C/g%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: 20px 50%;
  appearance: none;
}

div.selecteur {
  position: relative;
}
div.selecteur svg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  pointer-events: none;
}

div.container-offres div.filter-bar {
  display: flex;
  justify-content: center;
  margin-top: -32px;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  div.container-offres div.filter-bar {
    padding: 30px;
    margin-top: 0;
    margin-bottom: 0;
  }
}
div.container-offres div.filter-bar ul {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
  list-style: none;
  padding: 0;
  background-color: #ECF0F6;
  border-radius: 50px;
  border: 7px solid white;
  overflow: hidden;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  div.container-offres div.filter-bar ul {
    display: none;
  }
}
div.container-offres div.filter-bar ul span {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0%, -50%);
  background-color: var(--e-global-color-secondary);
  border-radius: 50px;
  z-index: -1;
  height: 100%;
  width: 82px;
  transition: 0.3s ease-out;
  pointer-events: none;
}
div.container-offres div.filter-bar ul li {
  padding: 15px 25px;
  cursor: pointer;
  color: rgba(31, 47, 91, 0.5);
  font-size: 15px;
  line-height: 19px;
  font-weight: 500;
}
div.container-offres div.filter-bar ul li.active {
  color: var(--e-global-color-primary);
}
div.container-offres div.filter-bar div.filter-mobile {
  display: none;
  width: 100%;
}
@media screen and (max-width: 767px) {
  div.container-offres div.filter-bar div.filter-mobile {
    display: block;
  }
}
div.container-offres div.filter-bar div.filter-mobile label {
  margin-bottom: 20px;
  font-weight: 600;
}
div.container-offres div.filter-bar div.filter-mobile select {
  appearance: none;
  padding: 0;
  margin: 0;
  border-radius: 5px;
  border: 1px solid var(--e-global-color-primary);
  background-color: white;
  padding: 10px 40px 10px 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15.746' height='8.58' viewBox='0 0 15.746 8.58'%3E%3Cpath id='Path_16470' data-name='Path 16470' d='M2772.02-16617.705l7.519,7.52,7.52-7.52' transform='translate(-2771.666 16618.059)' fill='none' stroke='%23003d1f' stroke-width='1'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: calc(100% - 20px) 50%;
}
div.container-offres div.offres {
  padding: 30px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
@media screen and (max-width: 767px) {
  div.container-offres div.offres {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
div.container-offres div.offres div.en-avant {
  grid-column: 3 span;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media screen and (max-width: 767px) {
  div.container-offres div.offres div.en-avant {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    grid-column: 1 span;
  }
}
div.container-offres div.offres h3 {
  display: block;
  text-align: center;
  font-size: 26px;
  line-height: 34px;
  grid-column: 1/4;
}
div.container-offres div.offres div.offre {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  border-radius: 10px;
  padding: 30px;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
  overflow: hidden;
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
  opacity: 1;
}
div.container-offres div.offres div.offre.scale-up {
  animation: scaleUp 0.3s ease-out forwards;
}
div.container-offres div.offres div.offre.scale-down {
  animation: scaleDown 0.3s ease-out forwards;
  animation-fill-mode: forwards; /* Keep the final state after animation */
  display: none !important; /* Ensure it is hidden */
}
div.container-offres div.offres div.offre:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: radial-gradient(circle at center, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.35) 100%);
}
div.container-offres div.offres div.offre h4 {
  font-family: "Inter";
  font-size: 25px;
  line-height: 30px;
  font-weight: 800;
  color: white;
  margin-bottom: 100px;
}
div.container-offres div.offres div.offre a {
  margin-top: auto;
  background-color: var(--e-global-color-secondary);
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 10px 20px;
  border-radius: 7px 30px 7px 7px;
  font-size: 15px;
  line-height: 19px;
  font-weight: 500;
}

div.points_de_ventes span {
  margin-bottom: 10px;
  display: flex;
  gap: 5px;
  font-size: 14px;
  line-height: 17px;
  font-weight: 600;
  color: var(--e-global-color-primary);
}
div.points_de_ventes span svg {
  height: auto;
}

div.offres-concession {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
@media screen and (max-width: 1024px) {
  div.offres-concession {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 767px) {
  div.offres-concession {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
div.offres-concession div.en-avant {
  grid-column: 3 span;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
div.offres-concession div.offre {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  border-radius: 10px;
  padding: 30px;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
  overflow: hidden;
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
  opacity: 1;
}
div.offres-concession div.offre.scale-up {
  animation: scaleUp 0.3s ease-out forwards;
}
div.offres-concession div.offre.scale-down {
  animation: scaleDown 0.3s ease-out forwards;
  animation-fill-mode: forwards; /* Keep the final state after animation */
  display: none !important; /* Ensure it is hidden */
}
div.offres-concession div.offre:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: radial-gradient(circle at center, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.35) 100%);
}
div.offres-concession div.offre h4 {
  font-family: "Inter";
  font-size: 25px;
  line-height: 30px;
  font-weight: 800;
  color: white;
  margin-bottom: 100px;
}
div.offres-concession div.offre a {
  margin-top: auto;
  background-color: var(--e-global-color-secondary);
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 10px 20px;
  border-radius: 7px 30px 7px 7px;
  font-size: 15px;
  line-height: 19px;
  font-weight: 500;
}

select#points_de_vente {
  padding: 15px 40px 15px 45px;
  background-color: white;
  border-radius: 50px;
  border: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 17px;
  color: var(--e-global-color-primary);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11.912' height='14.226' viewBox='0 0 11.912 14.226'%3E%3Cg id='Icon_feather-map-pin' data-name='Icon feather-map-pin' transform='translate(-3.75 -0.75)' opacity='0.6'%3E%3Cpath id='Path_598' data-name='Path 598' d='M14.912,6.706c0,4.049-5.206,7.52-5.206,7.52S4.5,10.755,4.5,6.706a5.206,5.206,0,1,1,10.412,0Z' fill='none' stroke='%231f2f5b' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5'/%3E%3Cpath id='Path_599' data-name='Path 599' d='M17.285,12.393A1.893,1.893,0,1,1,15.393,10.5a1.893,1.893,0,0,1,1.893,1.893Z' transform='translate(-5.687 -5.647)' fill='none' stroke='%231f2f5b' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5'/%3E%3C/g%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: 20px 50%;
  appearance: none;
}

div.selecteur-pos {
  text-align: center;
}
div.selecteur-pos form {
  position: relative;
}
div.selecteur-pos form svg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  pointer-events: none;
}
div.selecteur-pos span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 15px;
  font-size: 14px;
  line-height: 17px;
  font-weight: 500;
  color: #A5ACBE;
  text-decoration: underline;
  cursor: pointer;
}
div.selecteur-pos span.loading svg.spinner {
  opacity: 1;
  visibility: visible;
}
div.selecteur-pos span svg.spinner {
  opacity: 0;
  visibility: hidden;
  animation: infinite-loop 1s infinite linear;
}

@keyframes infinite-loop {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
div.image-marque {
  border-radius: 50%;
  overflow: hidden;
  background-color: var(--e-global-color-secondary);
  border: 5px solid white;
  width: 105px;
  height: 105px;
}
div.image-marque div.img-sizer {
  position: relative;
  padding-bottom: 100%;
}
div.image-marque div.img-sizer img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 75%;
  height: 100%;
  object-fit: contain;
  transform: translate(-50%, -50%);
}

div.vehicules-neufs div.filter-vehicules {
  margin: 0 0 50px;
  padding: 30px 30px 0;
}
div.vehicules-neufs div.filter-vehicules ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  list-style: none;
  padding: 0;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  div.vehicules-neufs div.filter-vehicules ul {
    display: none;
  }
}
div.vehicules-neufs div.filter-vehicules ul span {
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translate(463.367px, -50%) translateY(15px);
  width: 36.3667px;
  background-color: var(--e-global-color-primary);
  z-index: -1;
  height: 3px;
  transition: 0.3s ease-out;
  pointer-events: none;
}
div.vehicules-neufs div.filter-vehicules ul li {
  font-size: 17px;
  line-height: 20px;
  font-weight: 500;
  color: rgba(31, 47, 91, 0.5);
  cursor: pointer;
}
div.vehicules-neufs div.filter-vehicules ul li.active {
  font-weight: 500;
  color: var(--e-global-color-primary);
}
div.vehicules-neufs div.filter-vehicules div.filter-mobile {
  display: none;
  width: 100%;
}
@media screen and (max-width: 767px) {
  div.vehicules-neufs div.filter-vehicules div.filter-mobile {
    display: block;
  }
}
div.vehicules-neufs div.filter-vehicules div.filter-mobile label {
  margin-bottom: 20px;
  font-weight: 600;
}
div.vehicules-neufs div.filter-vehicules div.filter-mobile select {
  appearance: none;
  padding: 0;
  margin: 0;
  border-radius: 5px;
  border: 1px solid var(--e-global-color-primary);
  background-color: white;
  padding: 10px 40px 10px 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15.746' height='8.58' viewBox='0 0 15.746 8.58'%3E%3Cpath id='Path_16470' data-name='Path 16470' d='M2772.02-16617.705l7.519,7.52,7.52-7.52' transform='translate(-2771.666 16618.059)' fill='none' stroke='%23003d1f' stroke-width='1'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: calc(100% - 20px) 50%;
}
div.vehicules-neufs div.grid-vehicules {
  padding: 30px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
  gap: 20px;
}
@media screen and (max-width: 1024px) {
  div.vehicules-neufs div.grid-vehicules {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 767px) {
  div.vehicules-neufs div.grid-vehicules {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
div.vehicules-neufs div.grid-vehicules div.vehicule {
  background-color: white;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid #EAEAEA;
  display: flex;
  flex-direction: column;
  height: 100%;
}
div.vehicules-neufs div.grid-vehicules div.vehicule div.img-sizer {
  position: relative;
  padding-bottom: 43%;
}
div.vehicules-neufs div.grid-vehicules div.vehicule div.img-sizer img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
div.vehicules-neufs div.grid-vehicules div.vehicule div.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
div.vehicules-neufs div.grid-vehicules div.vehicule div.content h3 {
  font-size: 22px;
  font-weight: 700;
  line-height: 26px;
  color: var(--e-global-color-primary);
  margin-bottom: 10px;
  margin-top: 30px;
}
div.vehicules-neufs div.grid-vehicules div.vehicule div.content span {
  padding: 5px 10px;
  border-radius: 50px;
  background-color: var(--e-global-color-secondary);
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
}
div.vehicules-neufs div.grid-vehicules div.vehicule div.content span.woocommerce-Price-currencySymbol {
  padding: 0;
}
div.vehicules-neufs div.grid-vehicules div.vehicule div.content span.amount {
  font-weight: 700;
  padding: 0;
}
div.vehicules-neufs div.grid-vehicules div.vehicule div.content p {
  margin: 20px 0;
  font-size: 14px;
  line-height: 20px;
  color: #626D8C;
}
div.vehicules-neufs div.grid-vehicules div.vehicule div.content a {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}
div.vehicules-neufs div.no-result {
  display: none;
  text-align: center;
  padding: 50px 0;
}
div.vehicules-neufs div.no-result h3 {
  color: var(--e-global-color-accent);
}
div.vehicules-neufs div.no-result p {
  color: var(--e-global-color-text);
}
div.vehicules-neufs div.no-result.active {
  display: block;
}
div.vehicules-neufs div.bar {
  padding: 0 30px;
  margin: 0 0 20px;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
div.vehicules-neufs div.bar div.pagination-vehicules {
  display: flex;
  gap: 10px;
  align-items: center;
}
div.vehicules-neufs div.bar div.pagination-vehicules span:not(.button) {
  color: #848EA7;
  font-size: 15px;
  line-height: 1;
  font-weight: 700;
  cursor: pointer;
}
div.vehicules-neufs div.bar div.pagination-vehicules span:not(.button).active {
  padding: 8px 12px;
  border-radius: 5px;
  color: white;
  background-color: var(--e-global-color-primary);
}
div.vehicules-neufs div.bar div.pagination-vehicules span.button.hidden {
  opacity: 0.1;
  pointer-events: none;
}

div.no-vehicules {
  text-align: center;
  padding: 100px 0 50px;
}
div.no-vehicules h3 {
  color: var(--e-global-color-primary);
  font-size: 26px;
  line-height: 33px;
}

div.attributs-vehicules {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 50px 0;
}
div.attributs-vehicules div.attribut {
  flex: 0 0 48%;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
div.attributs-vehicules div.attribut svg {
  flex: 0 0 auto;
}
@media screen and (max-width: 767px) {
  div.attributs-vehicules div.attribut {
    flex: 1 0 100% !important;
  }
}
div.attributs-vehicules div.attribut div span {
  display: block;
  font-family: "GTEestiProDisplay";
  font-size: 17px;
  line-height: 19px;
  color: rgba(31, 47, 91, 0.8);
}
div.attributs-vehicules div.attribut div p {
  font-size: 19px;
  font-weight: 700;
  line-height: 23px;
}

div.galerie-vehicule {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
div.galerie-vehicule div.main-image {
  border-radius: 20px;
  background-color: #F4F6F9;
  overflow: hidden;
  position: relative;
  flex: 1 0 100%;
  aspect-ratio: 16/9;
  cursor: zoom-in;
}
div.galerie-vehicule div.main-image a {
  cursor: zoom-in;
}
div.galerie-vehicule div.main-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}
div.galerie-vehicule div.image-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
}
div.galerie-vehicule div.image-selector div.woocommerce-product-gallery__image {
  flex: 0 0 90px;
  height: 90px;
  background-color: #F4F6F9;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
div.galerie-vehicule div.image-selector div.woocommerce-product-gallery__image.active {
  border: 2px solid var(--e-global-color-secondary);
}
div.galerie-vehicule div.image-selector div.woocommerce-product-gallery__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

div.link-vehicules {
  display: flex;
  gap: 20px;
  align-items: center;
}
div.link-vehicules a {
  cursor: pointer !important;
  display: flex;
  gap: 10px;
  align-items: center;
  font-family: "GTEestiProDisplay";
  font-size: 16px;
  line-height: 18px;
  font-weight: 400;
  color: #A5ACBE !important;
  text-decoration: underline !important;
}
div.link-vehicules a:first-of-type:after {
  content: "";
  height: 13px;
  width: 1.5px;
  background-color: #A5ACBE;
  margin-left: 10px;
}

div.vehicules-occasions {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
div.vehicules-occasions div.filter-vehicules {
  flex: 0 0 25%;
  padding: 30px 0 100px 30px;
}
@media screen and (max-width: 1024px) {
  div.vehicules-occasions div.filter-vehicules {
    flex: 1 0 100%;
    padding: 30px;
  }
}
div.vehicules-occasions div.filter-vehicules > span {
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  margin-bottom: 30px;
  display: block;
  color: #A5ACBE;
}
div.vehicules-occasions div.filter-vehicules form {
  position: sticky;
  top: 30px;
  left: 0;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  div.vehicules-occasions div.filter-vehicules form {
    position: static;
  }
}
div.vehicules-occasions div.filter-vehicules form div.accordeon {
  margin-bottom: 10px;
  border-radius: 5px;
  background-color: white;
  overflow: hidden;
}
div.vehicules-occasions div.filter-vehicules form div.accordeon button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 0;
  padding: 10px 0px;
  color: var(--e-global-color-text);
  border-radius: 0;
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
}
div.vehicules-occasions div.filter-vehicules form div.accordeon button:hover, div.vehicules-occasions div.filter-vehicules form div.accordeon button:focus {
  background-color: transparent;
}
div.vehicules-occasions div.filter-vehicules form div.accordeon button div.group {
  display: flex;
  align-items: center;
  gap: 10px;
}
div.vehicules-occasions div.filter-vehicules form div.accordeon button div.group span.count {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--e-global-color-secondary);
  color: var(--e-global-color-text);
}
div.vehicules-occasions div.filter-vehicules form div.accordeon button div.group svg {
  transition: 0.3s ease-out;
  transform-origin: center left;
}
div.vehicules-occasions div.filter-vehicules form div.accordeon button.active svg {
  transform: rotate(90deg);
}
div.vehicules-occasions div.filter-vehicules form div.accordeon div.panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s ease-out;
}
div.vehicules-occasions div.filter-vehicules form div.accordeon div.panel ul.marques {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 10px 0;
}
div.vehicules-occasions div.filter-vehicules form div.accordeon div.panel ul.marques li {
  flex: 0 0 calc(50% - 10px);
  border-radius: 7px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ECF0F6;
  overflow: hidden;
  position: relative;
  height: 95px;
}
div.vehicules-occasions div.filter-vehicules form div.accordeon div.panel ul.marques li label {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
div.vehicules-occasions div.filter-vehicules form div.accordeon div.panel ul.marques li label span {
  font-weight: 600;
  font-size: 20px;
  color: #8E96AD;
  line-height: 20px;
  font-family: "GTEestiProDisplay";
}
div.vehicules-occasions div.filter-vehicules form div.accordeon div.panel ul.marques li input[type=radio] {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1;
}
div.vehicules-occasions div.filter-vehicules form div.accordeon div.panel ul.marques li input[type=radio]:checked ~ label {
  background-color: #1F2F5B;
  border-radius: 7px;
}
div.vehicules-occasions div.filter-vehicules form div.accordeon div.panel ul.marques li input[type=radio]:checked ~ label img {
  filter: brightness(0) invert(1);
  height: 55px;
  object-fit: scale-down;
}
div.vehicules-occasions div.filter-vehicules form div.accordeon div.panel div.input-group {
  display: flex;
  gap: 5px;
}
div.vehicules-occasions div.filter-vehicules form div.accordeon div.panel div.input-group input[type=number] {
  background-color: transparent;
  appearance: none;
  border: 1px solid #BBC1D0;
  border-radius: 7px;
  font-size: 13px;
  line-height: 16px;
  font-weight: 500;
  padding: 10px 25px;
}
div.vehicules-occasions div.filter-vehicules form div.accordeon div.panel ul {
  list-style: none;
  padding: 0 0;
}
div.vehicules-occasions div.filter-vehicules form div.accordeon div.panel ul li {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 20px 0;
}
div.vehicules-occasions div.filter-vehicules form div.accordeon div.panel ul li input[type=checkbox] {
  appearance: none;
  background-color: #fff;
  margin: 0;
  font: inherit;
  color: currentColor;
  width: 1.15em;
  height: 1.15em;
  border: 0.15em solid #A29E9E;
  border-radius: 0;
  transform: translateY(-0.075em);
  display: grid;
  place-content: center;
  flex: 0 0 auto;
}
div.vehicules-occasions div.filter-vehicules form div.accordeon div.panel ul li input[type=checkbox]::before {
  content: "";
  width: 0.65em;
  height: 0.65em;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
  box-shadow: inset 1em 1em var(--e-global-color-secondary);
}
div.vehicules-occasions div.filter-vehicules form div.accordeon div.panel ul li input[type=checkbox]:checked::before {
  transform: scale(1);
}
div.vehicules-occasions div.filter-vehicules form div.accordeon div.panel ul li label {
  margin-top: -0.25em;
}
div.vehicules-occasions div.filter-vehicules form div.accordeon.hidden {
  display: none;
}
div.vehicules-occasions div.container-vehicules {
  flex: 0 0 70%;
  padding: 30px 30px;
  position: relative;
  z-index: 1;
}
div.vehicules-occasions div.container-vehicules::before {
  content: "";
  width: 100vw;
  background-color: #F4F6F9;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  border-radius: 20px 0 0 0;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  div.vehicules-occasions div.container-vehicules {
    flex: 1 0 100%;
    padding: 30px;
  }
}
div.vehicules-occasions div.container-vehicules div.toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
div.vehicules-occasions div.container-vehicules div.toolbar span#total_count {
  display: inline-block;
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  color: #848EA7;
}
@media screen and (max-width: 767px) {
  div.vehicules-occasions div.container-vehicules div.toolbar span#total_count {
    display: inline-block;
    margin-bottom: 30px;
  }
}
div.vehicules-occasions div.container-vehicules div.toolbar div.tools {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  div.vehicules-occasions div.container-vehicules div.toolbar div.tools {
    display: none;
  }
}
div.vehicules-occasions div.container-vehicules div.toolbar div.tools select {
  background-color: transparent;
  border: 1px solid #626D8C;
  border-radius: 10px;
  padding: 10px 50px 10px 25px;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9.732' height='5.928' viewBox='0 0 9.732 5.928'%3E%3Cpath id='Path_25' data-name='Path 25' d='M-15974.953-20537.867l4.336-4.336,4.336,4.336' transform='translate(-15965.751 -20537.336) rotate(180)' fill='none' stroke='%23848ea7' stroke-width='1.5'/%3E%3C/svg%3E%0A");
  background-position: calc(100% - 20px) 50%;
  background-repeat: no-repeat;
}
div.vehicules-occasions div.container-vehicules div.toolbar div.tools div.button-group {
  display: flex;
  align-items: center;
  gap: 5px;
}
div.vehicules-occasions div.container-vehicules div.toolbar div.tools div.button-group div {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px;
  border-radius: 10px;
  border: 1px solid #626D8C;
  background-color: transparent;
}
div.vehicules-occasions div.container-vehicules div.toolbar div.tools div.button-group div.active {
  background-color: #1F2F5B;
}
div.vehicules-occasions div.container-vehicules div.toolbar div.tools div.button-group div.active svg {
  fill: white;
}
div.vehicules-occasions div.container-vehicules div.grid-vehicules {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 20px;
  position: relative;
}
div.vehicules-occasions div.container-vehicules div.grid-vehicules.loading {
  opacity: 0.3;
}
div.vehicules-occasions div.container-vehicules div.grid-vehicules.loading::before {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3C!--!Font Awesome Pro 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2025 Fonticons, Inc.--%3E%3Cpath d='M256 116a52 52 0 1 1 0-104 52 52 0 1 1 0 104zm0 364a32 32 0 1 1 0-64 32 32 0 1 1 0 64zM448 288a32 32 0 1 1 0-64 32 32 0 1 1 0 64zM32 256a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm399.4-96.2A56 56 0 1 1 352.2 80.6a56 56 0 1 1 79.2 79.2zM97.6 414.4a32 32 0 1 1 45.3-45.3A32 32 0 1 1 97.6 414.4zm271.5 0a32 32 0 1 1 45.3-45.3 32 32 0 1 1 -45.3 45.3zM86.3 86.3a48 48 0 1 1 67.9 67.9A48 48 0 1 1 86.3 86.3z'/%3E%3C/svg%3E");
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  animation: loop 4s linear infinite;
  transform-origin: left top;
}
@keyframes loop {
  0% {
    rotate: 0deg;
  }
  50% {
    rotate: 180deg;
  }
  100% {
    rotate: 360deg;
  }
}
@media screen and (max-width: 1024px) {
  div.vehicules-occasions div.container-vehicules div.grid-vehicules {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 767px) {
  div.vehicules-occasions div.container-vehicules div.grid-vehicules {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
div.vehicules-occasions div.container-vehicules div.grid-vehicules.list {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
div.vehicules-occasions div.container-vehicules div.grid-vehicules.list div.vehicule {
  flex-direction: row;
}
div.vehicules-occasions div.container-vehicules div.grid-vehicules.list div.vehicule div.img-sizer {
  flex: 1;
  padding-bottom: 20%;
}
div.vehicules-occasions div.container-vehicules div.grid-vehicules.list div.ads {
  flex-direction: column;
}
div.vehicules-occasions div.container-vehicules div.grid-vehicules.list div.ads p {
  max-width: 40%;
}
div.vehicules-occasions div.container-vehicules div.grid-vehicules a.vehicule {
  background-color: white;
  border-radius: 20px;
  border: 1px solid #EAEAEA;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  transition: 0.3s ease-out;
  cursor: pointer;
}
div.vehicules-occasions div.container-vehicules div.grid-vehicules a.vehicule:hover {
  transform: translateY(-10px);
}
div.vehicules-occasions div.container-vehicules div.grid-vehicules a.vehicule:hover div.img-sizer img {
  transform: scale(1.1);
}
div.vehicules-occasions div.container-vehicules div.grid-vehicules a.vehicule div.img-sizer {
  position: relative;
  padding-bottom: 62.5%;
  overflow: hidden;
}
div.vehicules-occasions div.container-vehicules div.grid-vehicules a.vehicule div.img-sizer img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s ease-out;
}
div.vehicules-occasions div.container-vehicules div.grid-vehicules a.vehicule div.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px;
}
div.vehicules-occasions div.container-vehicules div.grid-vehicules a.vehicule div.content h3 {
  font-size: 22px;
  font-weight: 700;
  line-height: 26px;
  color: var(--e-global-color-primary);
  margin: 0 0 5px;
}
div.vehicules-occasions div.container-vehicules div.grid-vehicules a.vehicule div.content div.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 30px;
  margin-bottom: 30px;
}
div.vehicules-occasions div.container-vehicules div.grid-vehicules a.vehicule div.content div.meta span {
  font-size: 14px;
  line-height: 17px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
}
div.vehicules-occasions div.container-vehicules div.grid-vehicules a.vehicule div.content p {
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 20px;
  color: #626D8C;
}
div.vehicules-occasions div.container-vehicules div.grid-vehicules a.vehicule div.content > span {
  margin-top: auto;
  font-family: "GTEestiProDisplay";
  padding: 10px 20px;
  border-radius: 50px;
  background-color: var(--e-global-color-secondary);
  font-size: 19px;
  line-height: 22px;
  font-weight: 700;
  margin-left: auto;
}
div.vehicules-occasions div.container-vehicules div.grid-vehicules a.vehicule div.content > span.woocommerce-Price-currencySymbol {
  padding: 0;
}
div.vehicules-occasions div.container-vehicules div.grid-vehicules a.vehicule div.content > span.amount {
  font-weight: 700;
  padding: 0;
}
div.vehicules-occasions div.container-vehicules div.grid-vehicules div.ads {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-content: center;
  justify-content: center;
  height: 100%;
  background-image: radial-gradient(ellipse at 70% 0%, #314681 0%, #20305D 90%, #1F2F5B 100%);
  padding: 30px;
  border-radius: 10px;
}
div.vehicules-occasions div.container-vehicules div.grid-vehicules div.ads span {
  font-family: "GTEestiProDisplay";
  font-size: 25px;
  line-height: 28px;
  font-weight: 700;
  color: white;
  display: block;
  text-align: center;
  margin-bottom: 10px;
}
div.vehicules-occasions div.container-vehicules div.grid-vehicules div.ads span span {
  color: var(--e-global-color-secondary);
}
div.vehicules-occasions div.container-vehicules div.grid-vehicules div.ads p {
  color: white;
  text-align: center;
  font-size: 14px;
  line-height: 17px;
  margin-bottom: 50px;
}
div.vehicules-occasions div.container-vehicules div.grid-vehicules div.ads a {
  padding: 10px 25px;
  background-color: var(--e-global-color-secondary);
  border: 0;
  border-radius: 50px;
  font-family: "GTEestiProDisplay";
  font-size: 18px;
  font-weight: 500;
  line-height: 21px;
}
div.vehicules-occasions div.container-vehicules div.no-result {
  display: none;
  text-align: center;
  padding: 50px 0;
}
div.vehicules-occasions div.container-vehicules div.no-result h3 {
  color: var(--e-global-color-primary);
  font-size: 28px;
}
div.vehicules-occasions div.container-vehicules div.no-result p {
  color: var(--e-global-color-text);
}
div.vehicules-occasions div.container-vehicules div.no-result.active {
  display: block;
}
div.vehicules-occasions div.container-vehicules div.bar {
  padding: 0 30px;
  margin: 50px 0 20px;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
div.vehicules-occasions div.container-vehicules div.bar div.pagination-vehicules {
  display: flex;
  gap: 10px;
  align-items: center;
}
div.vehicules-occasions div.container-vehicules div.bar div.pagination-vehicules span:not(.button) {
  color: #848EA7;
  font-size: 15px;
  line-height: 1;
  font-weight: 700;
  cursor: pointer;
}
div.vehicules-occasions div.container-vehicules div.bar div.pagination-vehicules span:not(.button).active {
  padding: 8px 12px;
  border-radius: 5px;
  color: white;
  background-color: var(--e-global-color-primary);
}
div.vehicules-occasions div.container-vehicules div.bar div.pagination-vehicules span.button.hidden {
  opacity: 0.1;
  pointer-events: none;
}

div.no-vehicules {
  text-align: center;
  padding: 100px 0 50px;
}
div.no-vehicules h3 {
  color: var(--e-global-color-primary);
  font-size: 26px;
  line-height: 33px;
}

div.vehicules-occasions div.grid-vehicules {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
  gap: 20px;
}
@media screen and (max-width: 1024px) {
  div.vehicules-occasions div.grid-vehicules {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 767px) {
  div.vehicules-occasions div.grid-vehicules {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
div.vehicules-occasions div.grid-vehicules.list {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
div.vehicules-occasions div.grid-vehicules.list div.vehicule {
  flex-direction: row;
}
div.vehicules-occasions div.grid-vehicules.list div.vehicule div.img-sizer {
  flex: 1;
  padding-bottom: 20%;
}
div.vehicules-occasions div.grid-vehicules.list div.ads {
  flex-direction: column;
}
div.vehicules-occasions div.grid-vehicules.list div.ads p {
  max-width: 40%;
}
div.vehicules-occasions div.grid-vehicules div.vehicule {
  background-color: white;
  border-radius: 20px;
  border: 1px solid #EAEAEA;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  transition: 0.3s ease-out;
  cursor: pointer;
}
div.vehicules-occasions div.grid-vehicules div.vehicule:hover {
  transform: translateY(-10px);
}
div.vehicules-occasions div.grid-vehicules div.vehicule:hover div.img-sizer img {
  transform: scale(1.1);
}
div.vehicules-occasions div.grid-vehicules div.vehicule div.img-sizer {
  position: relative;
  padding-bottom: 62.5%;
  overflow: hidden;
}
div.vehicules-occasions div.grid-vehicules div.vehicule div.img-sizer img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s ease-out;
}
div.vehicules-occasions div.grid-vehicules div.vehicule div.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px;
}
div.vehicules-occasions div.grid-vehicules div.vehicule div.content h3 {
  font-size: 22px;
  font-weight: 700;
  line-height: 26px;
  color: var(--e-global-color-primary);
  margin: 0 0 5px;
}
div.vehicules-occasions div.grid-vehicules div.vehicule div.content div.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 30px;
  margin-bottom: 30px;
}
div.vehicules-occasions div.grid-vehicules div.vehicule div.content div.meta span {
  font-size: 14px;
  line-height: 17px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
}
div.vehicules-occasions div.grid-vehicules div.vehicule div.content p {
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 20px;
  color: #626D8C;
}
div.vehicules-occasions div.grid-vehicules div.vehicule div.content > span {
  margin-top: auto;
  font-family: "GTEestiProDisplay";
  padding: 10px 20px;
  border-radius: 50px;
  background-color: var(--e-global-color-secondary);
  font-size: 19px;
  line-height: 22px;
  font-weight: 700;
  margin-left: auto;
}
div.vehicules-occasions div.grid-vehicules div.vehicule div.content > span.woocommerce-Price-currencySymbol {
  padding: 0;
}
div.vehicules-occasions div.grid-vehicules div.vehicule div.content > span.amount {
  font-weight: 700;
  padding: 0;
}
div.vehicules-occasions div.grid-vehicules div.ads {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-content: center;
  justify-content: center;
  height: 100%;
  background-image: radial-gradient(ellipse at 70% 0%, #314681 0%, #20305D 90%, #1F2F5B 100%);
  padding: 30px;
  border-radius: 10px;
}
div.vehicules-occasions div.grid-vehicules div.ads span {
  font-family: "GTEestiProDisplay";
  font-size: 25px;
  line-height: 28px;
  font-weight: 700;
  color: white;
  display: block;
  text-align: center;
  margin-bottom: 10px;
}
div.vehicules-occasions div.grid-vehicules div.ads span span {
  color: var(--e-global-color-secondary);
}
div.vehicules-occasions div.grid-vehicules div.ads p {
  color: white;
  text-align: center;
  font-size: 14px;
  line-height: 17px;
  margin-bottom: 50px;
}
div.vehicules-occasions div.grid-vehicules div.ads a {
  padding: 10px 25px;
  background-color: var(--e-global-color-secondary);
  border: 0;
  border-radius: 50px;
  font-family: "GTEestiProDisplay";
  font-size: 18px;
  font-weight: 500;
  line-height: 21px;
}
div.vehicules-occasions div.no-result {
  display: none;
  text-align: center;
  padding: 50px 0;
}
div.vehicules-occasions div.no-result h3 {
  color: var(--e-global-color-accent);
}
div.vehicules-occasions div.no-result p {
  color: var(--e-global-color-text);
}
div.vehicules-occasions div.no-result.active {
  display: block;
}

div.no-vehicules {
  text-align: center;
  padding: 100px 0 50px;
}
div.no-vehicules h3 {
  color: var(--e-global-color-primary);
  font-size: 26px;
  line-height: 33px;
}

div.attributs-vehicules {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 50px 0;
}
div.attributs-vehicules div.attribut {
  flex: 0 0 48%;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  div.attributs-vehicules div.attribut {
    flex: 1 0 100% !important;
  }
}
div.attributs-vehicules div.attribut div span {
  display: block;
  font-family: "GTEestiProDisplay";
  font-size: 17px;
  line-height: 19px;
  color: rgba(31, 47, 91, 0.8);
}
div.attributs-vehicules div.attribut div p {
  font-size: 19px;
  font-weight: 700;
  line-height: 23px;
}

div.vehicules-renault div.filter-vehicules {
  margin: 0 0 50px;
  padding: 30px 30px 0;
}
div.vehicules-renault div.filter-vehicules ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  list-style: none;
  padding: 0;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  div.vehicules-renault div.filter-vehicules ul {
    display: none;
  }
}
div.vehicules-renault div.filter-vehicules ul span {
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translate(355.5px, -50%) translateY(15px);
  width: 49.95px;
  background-color: var(--e-global-color-primary);
  z-index: -1;
  height: 3px;
  transition: 0.3s ease-out;
  pointer-events: none;
}
div.vehicules-renault div.filter-vehicules ul li {
  font-family: "NouvelR";
  font-size: 23px;
  line-height: 28px;
  font-weight: 700;
  color: rgba(31, 47, 91, 0.5);
}
div.vehicules-renault div.filter-vehicules ul li.active {
  color: var(--e-global-color-primary);
}
div.vehicules-renault div.filter-vehicules div.filter-mobile {
  display: none;
  width: 100%;
}
@media screen and (max-width: 767px) {
  div.vehicules-renault div.filter-vehicules div.filter-mobile {
    display: block;
  }
}
div.vehicules-renault div.filter-vehicules div.filter-mobile label {
  margin-bottom: 20px;
  font-weight: 600;
}
div.vehicules-renault div.filter-vehicules div.filter-mobile select {
  appearance: none;
  padding: 0;
  margin: 0;
  border-radius: 5px;
  border: 1px solid var(--e-global-color-primary);
  background-color: white;
  padding: 10px 40px 10px 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15.746' height='8.58' viewBox='0 0 15.746 8.58'%3E%3Cpath id='Path_16470' data-name='Path 16470' d='M2772.02-16617.705l7.519,7.52,7.52-7.52' transform='translate(-2771.666 16618.059)' fill='none' stroke='%23003d1f' stroke-width='1'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: calc(100% - 20px) 50%;
}
div.vehicules-renault div.grid-vehicules {
  padding: 30px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 80px 60px;
}
@media screen and (max-width: 1024px) {
  div.vehicules-renault div.grid-vehicules {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 767px) {
  div.vehicules-renault div.grid-vehicules {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
div.vehicules-renault div.grid-vehicules div.vehicule {
  font-family: "NouvelR";
  background-color: white;
  display: flex;
  flex-direction: column;
  height: 100%;
}
div.vehicules-renault div.grid-vehicules div.vehicule div.img-sizer {
  position: relative;
  padding-bottom: 43%;
}
div.vehicules-renault div.grid-vehicules div.vehicule div.img-sizer img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
div.vehicules-renault div.grid-vehicules div.vehicule div.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
div.vehicules-renault div.grid-vehicules div.vehicule div.content h3 {
  font-size: 22px;
  font-weight: 700;
  line-height: 26px;
  color: #000000;
  margin-bottom: 10px;
  margin-top: 30px;
  text-transform: uppercase;
}
div.vehicules-renault div.grid-vehicules div.vehicule div.content span {
  font-size: 18px;
  line-height: 22px;
  font-weight: 400;
}
div.vehicules-renault div.grid-vehicules div.vehicule div.content span.woocommerce-Price-currencySymbol {
  padding: 0;
}
div.vehicules-renault div.grid-vehicules div.vehicule div.content span.amount {
  font-weight: 400;
  padding: 0;
}
div.vehicules-renault div.grid-vehicules div.vehicule div.content span.ce {
  display: flex;
  align-items: center;
  width: fit-content;
  color: #656666;
  font-family: "NouvelR";
  line-height: 1;
  font-weight: 700;
  gap: 8px;
  font-size: 1rem;
  margin: 0 0 10px;
}
div.vehicules-renault div.grid-vehicules div.vehicule div.content span.ce span {
  flex: 0 1;
  font-family: "NouvelR";
  line-height: 1;
  font-weight: 700;
  width: 100%;
  padding: 2px 20px 2px 4px;
  color: #fff;
  -webkit-clip-path: polygon(0 0, calc(100% - 0.4em) 0, 100% 50%, calc(100% - 0.4em) 100%, 0 100%);
  clip-path: polygon(0 0, calc(100% - 0.4em) 0, 100% 50%, calc(100% - 0.4em) 100%, 0 100%);
}
div.vehicules-renault div.grid-vehicules div.vehicule div.content span.ce span.A {
  background-color: #289548;
}
div.vehicules-renault div.grid-vehicules div.vehicule div.content span.ce span.B {
  background-color: #75AC40;
}
div.vehicules-renault div.grid-vehicules div.vehicule div.content span.ce span.C {
  background-color: #C9D22A;
}
div.vehicules-renault div.grid-vehicules div.vehicule div.content span.ce span.D {
  background-color: #EBEC00;
}
div.vehicules-renault div.grid-vehicules div.vehicule div.content span.ce span.E {
  background-color: #E9B818;
}
div.vehicules-renault div.grid-vehicules div.vehicule div.content span.ce span.F {
  background-color: #CF661C;
}
div.vehicules-renault div.grid-vehicules div.vehicule div.content span.ce span.G {
  background-color: #C10E1A;
}
div.vehicules-renault div.grid-vehicules div.vehicule div.content p {
  margin: 10px 0;
  font-size: 14px;
  line-height: 20px;
  color: #626D8C;
  max-width: 80%;
}
@media screen and (max-width: 767px) {
  div.vehicules-renault div.grid-vehicules div.vehicule div.content p {
    max-width: 100%;
  }
}
div.vehicules-renault div.grid-vehicules div.vehicule div.content div.link-group {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
div.vehicules-renault div.grid-vehicules div.vehicule div.content div.link-group a {
  text-decoration: underline;
  text-decoration-color: #EFDF00;
  text-decoration-thickness: 2px;
}
div.vehicules-renault div.grid-vehicules div.vehicule div.content div.link-group a:hover {
  text-decoration-color: black;
}
div.vehicules-renault div.no-result {
  display: none;
  text-align: center;
  padding: 50px 30px;
}
div.vehicules-renault div.no-result h3 {
  color: var(--e-global-color-accent);
}
div.vehicules-renault div.no-result p {
  color: var(--e-global-color-text);
}
div.vehicules-renault div.no-result.active {
  display: block;
}
div.vehicules-renault div.bar {
  padding: 0 30px;
  margin: 30px 0 20px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
div.vehicules-renault div.bar div.pagination-vehicules {
  display: flex;
  gap: 10px;
  align-items: center;
}
div.vehicules-renault div.bar div.pagination-vehicules span:not(.button) {
  color: black;
  font-size: 15px;
  line-height: 1;
  font-weight: 700;
  cursor: pointer;
  border-radius: 50%;
  border: 1px solid black;
  padding: 8px 12px;
}
div.vehicules-renault div.bar div.pagination-vehicules span:not(.button).active {
  padding: 8px 12px;
  border-radius: 50%;
  color: white;
  background-color: #7F7F7F;
  border: 1px solid #7F7F7F;
}
div.vehicules-renault div.bar div.pagination-vehicules span.button {
  line-height: 0;
}
div.vehicules-renault div.bar div.pagination-vehicules span.button.hidden {
  opacity: 0.1;
  pointer-events: none;
}

div.no-vehicules {
  text-align: center;
  padding: 100px 0 50px;
}
div.no-vehicules h3 {
  color: var(--e-global-color-primary);
  font-size: 26px;
  line-height: 33px;
}

div.vehicules-dacia {
  margin-top: 30px;
}
div.vehicules-dacia div.grid-vehicules {
  padding: 30px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 80px 60px;
}
@media screen and (max-width: 1024px) {
  div.vehicules-dacia div.grid-vehicules {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 767px) {
  div.vehicules-dacia div.grid-vehicules {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
div.vehicules-dacia div.grid-vehicules div.vehicule {
  font-family: "DaciaBlock";
  background-color: white;
  display: flex;
  flex-direction: column;
  height: 100%;
}
div.vehicules-dacia div.grid-vehicules div.vehicule div.img-sizer {
  position: relative;
  padding-bottom: 43%;
}
div.vehicules-dacia div.grid-vehicules div.vehicule div.img-sizer img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
div.vehicules-dacia div.grid-vehicules div.vehicule div.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
div.vehicules-dacia div.grid-vehicules div.vehicule div.content h3 {
  font-family: "DaciaBlock";
  font-size: 22px;
  font-weight: 400;
  line-height: 26px;
  color: #000000;
  margin-bottom: 10px;
  margin-top: 30px;
  text-transform: uppercase;
}
div.vehicules-dacia div.grid-vehicules div.vehicule div.content span {
  font-size: 18px;
  line-height: 22px;
  font-weight: 400;
  color: #000000;
}
div.vehicules-dacia div.grid-vehicules div.vehicule div.content span.woocommerce-Price-currencySymbol {
  padding: 0;
}
div.vehicules-dacia div.grid-vehicules div.vehicule div.content span.amount {
  font-weight: 400;
  padding: 0;
}
div.vehicules-dacia div.grid-vehicules div.vehicule div.content span.ce {
  display: flex;
  align-items: center;
  width: fit-content;
  color: rgb(119, 119, 119);
  font-family: "DaciaBlock";
  line-height: 1;
  font-weight: 400;
  gap: 8px;
  font-size: 1rem;
  margin: 0 0 10px;
}
div.vehicules-dacia div.grid-vehicules div.vehicule div.content span.ce span {
  flex: 0 1;
  font-family: "DaciaBlock";
  line-height: 1;
  font-weight: 400;
  width: 100%;
  padding: 2px 20px 2px 4px;
  color: #fff;
  -webkit-clip-path: polygon(0 0, calc(100% - 0.4em) 0, 100% 50%, calc(100% - 0.4em) 100%, 0 100%);
  clip-path: polygon(0 0, calc(100% - 0.4em) 0, 100% 50%, calc(100% - 0.4em) 100%, 0 100%);
}
div.vehicules-dacia div.grid-vehicules div.vehicule div.content span.ce span.A {
  background-color: #289548;
}
div.vehicules-dacia div.grid-vehicules div.vehicule div.content span.ce span.B {
  background-color: #75AC40;
}
div.vehicules-dacia div.grid-vehicules div.vehicule div.content span.ce span.C {
  background-color: #C9D22A;
}
div.vehicules-dacia div.grid-vehicules div.vehicule div.content span.ce span.D {
  background-color: #EBEC00;
}
div.vehicules-dacia div.grid-vehicules div.vehicule div.content span.ce span.E {
  background-color: #E9B818;
}
div.vehicules-dacia div.grid-vehicules div.vehicule div.content span.ce span.F {
  background-color: #CF661C;
}
div.vehicules-dacia div.grid-vehicules div.vehicule div.content span.ce span.G {
  background-color: #C10E1A;
}
div.vehicules-dacia div.grid-vehicules div.vehicule div.content p {
  margin: 10px 0;
  font-size: 14px;
  line-height: 20px;
  color: #000000;
  max-width: 80%;
}
@media screen and (max-width: 767px) {
  div.vehicules-dacia div.grid-vehicules div.vehicule div.content p {
    max-width: 100%;
  }
}
div.vehicules-dacia div.grid-vehicules div.vehicule div.content div.link-group {
  display: flex;
  justify-content: space-between;
}
div.vehicules-dacia div.grid-vehicules div.vehicule div.content div.link-group a {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 400;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

div.no-vehicules {
  text-align: center;
  padding: 100px 0 50px;
}
div.no-vehicules h3 {
  color: var(--e-global-color-primary);
  font-size: 26px;
  line-height: 33px;
}

div.vehicules-points div.container-vehicules {
  position: relative;
  z-index: 1;
}
div.vehicules-points div.container-vehicules::before {
  content: "";
  width: 100vw;
  background-color: #F4F6F9;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  border-radius: 20px 0 0 0;
  z-index: -1;
}
div.vehicules-points div.container-vehicules div.grid-vehicules {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
  gap: 20px;
}
@media screen and (max-width: 1024px) {
  div.vehicules-points div.container-vehicules div.grid-vehicules {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 767px) {
  div.vehicules-points div.container-vehicules div.grid-vehicules {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
div.vehicules-points div.container-vehicules div.grid-vehicules div.vehicule {
  background-color: white;
  border-radius: 20px;
  border: 1px solid #EAEAEA;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  transition: 0.3s ease-out;
  cursor: pointer;
}
div.vehicules-points div.container-vehicules div.grid-vehicules div.vehicule:hover {
  transform: translateY(-10px);
}
div.vehicules-points div.container-vehicules div.grid-vehicules div.vehicule:hover div.img-sizer img {
  transform: scale(1.1);
}
div.vehicules-points div.container-vehicules div.grid-vehicules div.vehicule div.img-sizer {
  position: relative;
  padding-bottom: 62.5%;
  overflow: hidden;
}
div.vehicules-points div.container-vehicules div.grid-vehicules div.vehicule div.img-sizer img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s ease-out;
}
div.vehicules-points div.container-vehicules div.grid-vehicules div.vehicule div.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px;
}
div.vehicules-points div.container-vehicules div.grid-vehicules div.vehicule div.content h3 {
  font-size: 22px;
  font-weight: 700;
  line-height: 26px;
  color: var(--e-global-color-primary);
  margin: 0 0 5px;
}
div.vehicules-points div.container-vehicules div.grid-vehicules div.vehicule div.content div.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 30px;
  margin-bottom: 30px;
}
div.vehicules-points div.container-vehicules div.grid-vehicules div.vehicule div.content div.meta span {
  font-size: 14px;
  line-height: 17px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
}
div.vehicules-points div.container-vehicules div.grid-vehicules div.vehicule div.content p {
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 20px;
  color: #626D8C;
}
div.vehicules-points div.container-vehicules div.grid-vehicules div.vehicule div.content > span {
  margin-top: auto;
  font-family: "GTEestiProDisplay";
  padding: 10px 20px;
  border-radius: 50px;
  background-color: var(--e-global-color-secondary);
  font-size: 19px;
  line-height: 22px;
  font-weight: 700;
  margin-left: auto;
}
div.vehicules-points div.container-vehicules div.grid-vehicules div.vehicule div.content > span.woocommerce-Price-currencySymbol {
  padding: 0;
}
div.vehicules-points div.container-vehicules div.grid-vehicules div.vehicule div.content > span.amount {
  font-weight: 700;
  padding: 0;
}
div.vehicules-points div.container-vehicules div.no-result {
  display: none;
  text-align: center;
  padding: 50px 0;
}
div.vehicules-points div.container-vehicules div.no-result h3 {
  color: var(--e-global-color-accent);
}
div.vehicules-points div.container-vehicules div.no-result p {
  color: var(--e-global-color-text);
}
div.vehicules-points div.container-vehicules div.no-result.active {
  display: block;
}
div.vehicules-points div.container-vehicules div.bar {
  padding: 0 30px;
  margin: 50px 0 20px;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media screen and (max-width: 767px) {
  div.vehicules-points div.container-vehicules div.bar {
    flex-wrap: wrap;
    padding: 0;
  }
}
div.vehicules-points div.container-vehicules div.bar div.but {
  flex: 1 0 auto;
  display: flex;
}
@media screen and (max-width: 767px) {
  div.vehicules-points div.container-vehicules div.bar div.but {
    justify-content: center;
    margin-bottom: 15px;
  }
}
div.vehicules-points div.container-vehicules div.bar div.but a {
  background-color: var(--e-global-color-primary);
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 10px 30px;
  color: white;
  border: 0;
  font-family: "GTEestiProDisplay";
  font-size: 18px;
  font-weight: 500;
  line-height: 21px;
  transition: 0.3s ease-out;
}
div.vehicules-points div.container-vehicules div.bar div.but a:hover {
  transform: scale(0.95);
  gap: 20px;
}
div.vehicules-points div.container-vehicules div.bar div.pagination-vehicules {
  display: flex;
  gap: 10px;
  align-items: center;
  flex: 1 0 auto;
  justify-content: flex-end;
}
div.vehicules-points div.container-vehicules div.bar div.pagination-vehicules span:not(.button) {
  color: #848EA7;
  font-size: 15px;
  line-height: 1;
  font-weight: 700;
  cursor: pointer;
}
div.vehicules-points div.container-vehicules div.bar div.pagination-vehicules span:not(.button).active {
  padding: 8px 12px;
  border-radius: 5px;
  color: white;
  background-color: var(--e-global-color-primary);
}
div.vehicules-points div.container-vehicules div.bar div.pagination-vehicules span.button.hidden {
  opacity: 0.1;
  pointer-events: none;
}

div.no-vehicules {
  text-align: center;
  padding: 100px 0 50px;
}
div.no-vehicules h3 {
  color: var(--e-global-color-primary);
  font-size: 26px;
  line-height: 33px;
}

div.horaires div.accordeon {
  overflow: hidden;
  transition: 0.3s ease-out;
  border-radius: 10px;
  margin: 30px 0;
  background-color: rgba(255, 255, 255, 0.35);
  padding: 15px 30px;
}
div.horaires div.accordeon:first-child {
  margin-top: 0;
}
div.horaires div.accordeon:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  div.horaires div.accordeon {
    padding: 10px 20px;
  }
}
div.horaires div.accordeon .accordion {
  position: relative;
  font-weight: normal;
  cursor: pointer;
  width: 100%;
  border: none;
  outline: none;
  background-color: transparent;
  display: flex;
  align-items: center;
  padding: 0;
  transition: 0.3s ease-out;
  justify-content: space-between;
}
div.horaires div.accordeon .accordion svg {
  transition: 0.3s ease-out;
}
div.horaires div.accordeon .accordion h4 {
  flex: 1;
  text-align: left;
  margin: 0;
  white-space: break-spaces;
  color: var(--e-global-color-primary);
  font-size: 24px;
  font-weight: 500;
  line-height: 28px;
  font-family: "GTEestiProDisplay";
}
@media screen and (max-width: 767px) {
  div.horaires div.accordeon .accordion h4 {
    font-size: 18px;
    padding-left: 0;
  }
}
div.horaires div.accordeon .accordion.active svg {
  transform: rotate(90deg);
}
div.horaires div.accordeon .panel {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
}
@media screen and (max-width: 767px) {
  div.horaires div.accordeon .panel {
    padding: 0px;
  }
}
div.horaires div.accordeon .panel div.description {
  margin: 20px 0;
}
div.horaires div.accordeon .panel div.description p {
  font-size: 16px;
  line-height: 22px;
  color: rgba(31, 47, 91, 0.8);
}

:root {
  scroll-padding-top: 180px;
}
@media screen and (max-width: 1024px) {
  :root {
    scroll-padding-top: 100px;
  }
}

html,
* {
  box-sizing: border-box;
  outline: none;
  text-decoration: none;
  color: inherit;
}

body {
  font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.4;
}
body a {
  color: inherit;
  text-decoration: none;
}
body a:hover {
  color: inherit;
}

html.noscroll {
  overflow-y: hidden;
}
html.noscroll body {
  overflow-y: hidden;
}

html, body, main {
  overflow-x: hidden;
}

.blue-gradient-after {
  position: relative;
}
.blue-gradient-after::after {
  content: "";
  position: absolute;
  z-index: -1;
  background-color: #253768;
  width: 100vw;
  height: 100%;
  top: 0;
  right: 0;
  border-radius: 0 0 30px 0px;
}
@media screen and (max-width: 767px) {
  .blue-gradient-after::after {
    border-radius: 0;
  }
}

.green-gradient-after {
  position: relative;
}
.green-gradient-after::after {
  content: "";
  position: absolute;
  z-index: -1;
  background-color: var(--e-global-color-secondary);
  width: 100vw;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 0 0 0px 30px;
}

.gray-after {
  position: relative;
}
.gray-after::after {
  content: "";
  position: absolute;
  z-index: -1;
  background-color: var(--e-global-color-accent);
  width: 100vw;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 30px 0 0px 30px;
}
@media screen and (max-width: 767px) {
  .gray-after::after {
    border-radius: 0;
  }
}

@keyframes pulse {
  0% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.3;
  }
}
