section.produit {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}
section.produit div.left-info {
  flex: 0 0 40%;
}
@media screen and (max-width: 1024px) {
  section.produit div.left-info {
    flex: 1 0 100%;
    order: 2;
  }
}
section.produit div.left-info div.price-block > span:not(.price) {
  display: block;
  font-size: 17px;
  line-height: 1;
}
section.produit div.left-info div.price-block span.price {
  line-height: 1;
  font-size: 35px;
  font-weight: 600;
  color: var(--e-global-color-primary);
}
section.produit div.left-info .checkout {
  margin-bottom: 50px;
}
section.produit div.left-info .checkout div#custom-variation-wrapper div#variation-options div.option {
  padding-top: 15px;
  border-top: 1px solid rgba(73, 74, 76, 0.25);
  margin-top: 25px;
}
section.produit div.left-info .checkout div#custom-variation-wrapper div#variation-options div.option label {
  display: block;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
}
section.produit div.left-info .checkout div#custom-variation-wrapper div#variation-options div.option div.variation-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
}
section.produit div.left-info .checkout div#custom-variation-wrapper div#variation-options div.option div.variation-buttons button {
  line-height: 1;
  border: 1px solid #D3D3D3;
  background-color: white;
  border-radius: 50px;
  opacity: 0.5;
  color: var(--e-global-color-text);
  padding: 10px 20px;
}
section.produit div.left-info .checkout div#custom-variation-wrapper div#variation-options div.option div.variation-buttons button.active {
  border: 1.5px solid #C01827;
  opacity: 1;
}
section.produit div.left-info .checkout div#custom-variation-wrapper div#variation-options span.out-of-stock-variation {
  display: none;
  margin-top: 20px;
  font-weight: 500;
  color: var(--e-global-color-primary);
}
section.produit div.left-info .checkout div#custom-variation-wrapper div#variation-options span.out-of-stock-variation.visible {
  display: block;
}
section.produit div.left-info .checkout div.quote-actions {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-top: 50px;
}
section.produit div.left-info .checkout div.quote-actions a {
  display: inline-flex;
  align-items: center;
  gap: 30px;
  padding: 10px 10px 10px 25px;
  border-radius: 50px;
  font-weight: 600;
}
section.produit div.left-info .checkout div.quote-actions a#af-quote-btn {
  background-color: var(--e-global-color-primary);
  color: white;
}
section.produit div.left-info .checkout div.quote-actions a#af-quote-btn:hover {
  background-color: var(--e-global-color-accent);
}
section.produit div.left-info .checkout div.quote-actions a#af-quote-btn:hover svg {
  transform: rotate(45deg);
}
section.produit div.left-info .checkout div.quote-actions a#pdf {
  border: 1.5px solid var(--e-global-color-text);
  color: var(--e-global-color-text);
}
section.produit div.left-info .checkout div.quote-actions a#pdf:hover {
  background-color: var(--e-global-color-text);
  color: white;
}
section.produit div.left-info .checkout div.quote-actions a svg {
  width: 27px;
  height: 27px;
  transition: 0.3s ease-out;
}
section.produit div.left-info div.accordeons {
  border-top: 1px solid rgba(73, 74, 76, 0.25);
}
section.produit div.left-info div.accordeons .accordeon {
  border-bottom: 1px solid rgba(73, 74, 76, 0.25);
  opacity: 0.5;
}
section.produit div.left-info div.accordeons .accordeon.is-open {
  opacity: 1;
}
section.produit div.left-info div.accordeons .accordeon .trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 10px 6px 10px 0;
  background: transparent;
  border: 0;
  text-align: left;
  cursor: pointer;
}
section.produit div.left-info div.accordeons .accordeon .trigger .icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  /* make Elementor icon inherit size nicely */
}
section.produit div.left-info div.accordeons .accordeon .trigger .icon i, section.produit div.left-info div.accordeons .accordeon .trigger .icon svg {
  max-width: 100%;
  max-height: 100%;
}
section.produit div.left-info div.accordeons .accordeon .trigger .title {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.25;
  color: var(--e-global-color-text);
}
section.produit div.left-info div.accordeons .accordeon .trigger .chevron {
  display: inline-grid;
  place-items: center;
  transition: transform 200ms ease;
}
section.produit div.left-info div.accordeons .accordeon .trigger .chevron svg {
  display: block;
}
section.produit div.left-info div.accordeons .accordeon .trigger:focus-visible {
  outline: 2px solid #e30813;
  outline-offset: 2px;
  border-radius: 6px;
}
section.produit div.left-info div.accordeons .accordeon .trigger[aria-expanded=true] .chevron {
  transform: rotate(-45deg);
}
section.produit div.left-info div.accordeons .accordeon .panel {
  overflow: hidden;
  height: 0;
  transition: height 260ms ease;
  will-change: height;
}
section.produit div.left-info div.accordeons .accordeon .panel .description {
  padding: 0 6px 18px 0px;
  color: var(--e-global-color-text);
  font-size: 16px;
  line-height: 1.6;
}
section.produit div.left-info div.accordeons .accordeon .panel .description p {
  margin: 0 0 10px;
}
section.produit div.left-info div.accordeons .accordeon .panel .description ul {
  margin: 10px 0 0 18px;
}
section.produit div.left-info div.more {
  margin-top: 50px;
  background-color: white;
  border-radius: 5px;
  padding: 30px;
}
section.produit div.left-info div.more > span {
  margin-bottom: 15px;
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 20px;
  font-weight: 600;
}
section.produit div.left-info div.more p {
  font-size: 17px;
}
section.produit div.left-info div.more a {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 30px;
  padding: 10px 10px 10px 25px;
  background-color: var(--e-global-color-primary);
  border-radius: 50px;
  color: white;
  font-weight: 600;
}
section.produit div.left-info div.more a svg {
  width: 27px;
  height: 27px;
  transition: 0.3s ease-out;
}
section.produit div.left-info div.more a:hover {
  background-color: var(--e-global-color-accent);
}
section.produit div.left-info div.more a:hover svg {
  transform: rotate(45deg);
}
@media screen and (max-width: 767px) {
  section.produit div.left-info div.more a {
    gap: 15px;
  }
}
section.produit div.right-gallery {
  flex: 0 0 50%;
}
@media screen and (max-width: 1024px) {
  section.produit div.right-gallery {
    flex: 1 0 100%;
    order: 1;
  }
}
section.produit div.right-gallery div.sticky-wrapper {
  height: 100%;
}
section.produit div.right-gallery div.sticky-wrapper div.slideshow {
  position: sticky;
  top: 30px;
  left: 0;
  z-index: 1;
}
section.produit div.right-gallery div.sticky-wrapper div.slideshow div.main #container-viewly.hidden {
  display: none;
}
section.produit div.right-gallery div.sticky-wrapper div.slideshow div.main #container-viewly div.loader-viewly {
  padding-bottom: 80%;
  position: relative;
  background-color: white;
  border-radius: 10px;
}
section.produit div.right-gallery div.sticky-wrapper div.slideshow div.main #container-viewly div.loader-viewly div.content {
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
section.produit div.right-gallery div.sticky-wrapper div.slideshow div.main #container-viewly div.loader-viewly div.content span {
  text-align: center;
  font-size: 24px;
}
section.produit div.right-gallery div.sticky-wrapper div.slideshow div.main #container-viewly div.loader-viewly div.content svg {
  width: 100px;
  height: auto;
}
section.produit div.right-gallery div.sticky-wrapper div.slideshow div.main div.img-sizer {
  padding-bottom: 80%;
  position: relative;
  border-radius: 5px;
  overflow: hidden;
}
section.produit div.right-gallery div.sticky-wrapper div.slideshow div.main div.img-sizer.hidden {
  display: none;
}
section.produit div.right-gallery div.sticky-wrapper div.slideshow div.main div.img-sizer img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
section.produit div.right-gallery div.sticky-wrapper div.slideshow div.bottom-nav {
  margin-top: 15px;
}
section.produit div.right-gallery div.sticky-wrapper div.slideshow div.bottom-nav div.swiper {
  overflow: hidden;
}
section.produit div.right-gallery div.sticky-wrapper div.slideshow div.bottom-nav div.swiper div.swiper-slide {
  width: 130px;
  height: 100px;
  background-color: white;
  position: relative;
  cursor: pointer;
  border-radius: 5px;
  overflow: hidden;
  opacity: 0.55;
}
@media screen and (max-width: 767px) {
  section.produit div.right-gallery div.sticky-wrapper div.slideshow div.bottom-nav div.swiper div.swiper-slide {
    width: 80px;
    height: 70px;
  }
}
section.produit div.right-gallery div.sticky-wrapper div.slideshow div.bottom-nav div.swiper div.swiper-slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
section.produit div.right-gallery div.sticky-wrapper div.slideshow div.bottom-nav div.swiper div.swiper-slide#view-3D {
  text-align: center;
}
section.produit div.right-gallery div.sticky-wrapper div.slideshow div.bottom-nav div.swiper div.swiper-slide#view-3D.selected {
  border: 2px solid var(--e-global-color-primary);
}
section.produit div.right-gallery div.sticky-wrapper div.slideshow div.bottom-nav div.swiper div.swiper-slide#view-3D svg {
  width: 64px;
  height: 100%;
}
section.produit div.right-gallery div.sticky-wrapper div.slideshow div.bottom-nav div.swiper div.swiper-slide.selected {
  opacity: 1;
}
section.produit div.right-gallery div.sticky-wrapper div.slideshow div.bottom-nav div.pagination span svg {
  width: 26px;
  height: 26px;
}
