/**********************************************************************************************************************************/
/* MAIN CONTAINER
/**********************************************************************************************************************************/
#ficheProduit {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

#ficheProduit a{
  color: inherit;
}

/**********************************************************************************************************************************/
/* IMAGE COVER
/**********************************************************************************************************************************/
#displayImg {
  max-width: 400px;
  max-height: 400px;
  object-fit: contain;
  position: relative;
  width: 100%;
}


/**********************************************************************************************************************************/
/* IMAGES UNDERCOVER
/**********************************************************************************************************************************/
#wheel {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 15px;
}

#wheel img:hover {
  cursor: pointer;
}

#wheel img,
#wheel video{
  max-width: 110px;
  max-height: 110px;
  object-fit: contain;
  margin: 5px;
  width: 100%;
}

#wheel video{
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}

a.video{
  position: relative;
}

a.video img{
  position: relative;
  z-index: 2;
}

a.video::after{
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: block;
  content: '';
  width: 32px;
  height: 32px;
  background: url(../Icons/playVideo.png) no-repeat center center / contain transparent;
  opacity: .7;
}

a.video:hover::after{
  opacity: 1;
}

#wheel video{
  width: 100%;
  height: auto;
}


/**********************************************************************************************************************************/
/* AVANTAGES
/**********************************************************************************************************************************/
#opinion {
  background-color: #201547;
  padding: 50px;
  color: white;
  margin-top: 30px;
  margin-bottom: 30px;
  line-height: 1.6em;
}

@media only screen and (max-width: 800px) {
  #opinion {
    padding: 30px 20px;
    margin: 30px -20px 20px -20px;
  }
}

#opinion-boutons {
  margin-top: 15px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

#opinion-texte{
  margin: 30px 0;
}

#opinion-texte p + p{
  margin-top: 10px;
}

#opinion > span {
  font-size: 24px;
  font-family: "RationalText-SemiBold";
}

#opinion-texte a{
  text-decoration: underline;
}

#opinion-boutons a{
  display: flex;
  align-items: center;
}

#opinion-boutons a:hover{
  opacity: .8;
  text-decoration: underline;
}

#opinion-boutons a:first-child {
  flex-grow: 1;
}

#opinion-boutons a:last-child {
  flex-grow: 1.5;
}

#avis-contact::before{
  content: '';
  display: block;
  width: 32px;
  height: 32px;
  border-radius: 320px;
  background: url(../Icons/Contact.png) no-repeat center center / 16px #77bee4;
  margin-right: 10px;
}

#avis-wishlist::before{
  content: '';
  display: block;
  width: 32px;
  height: 32px;
  border-radius: 320px;
  background: url(../Icons/Devis.png) no-repeat center center / 12px #77bee4;
  margin-right: 10px;
}

/**********************************************************************************************************************************/
/* MAIN CONTAINER
/**********************************************************************************************************************************/
@media only screen and (min-width: 800px) {
  #ficheProduitSheet{
    margin-left: 40px;
  }
}


/**********************************************************************************************************************************/
/* PRODUCT HEADER
/**********************************************************************************************************************************/
#ficheTitle{
  display: flex;
}

/**********************************************************************************************************************************/
/* ADD TO WISH
/**********************************************************************************************************************************/
#ficheTitle{
  display: flex;
}

.addToWish{
  width: 24px;
  height: 24px;
  background-size: contain;
  background-color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../Icons/Favoris.png);
  font-size: 0;
  display: inline-block;
  margin-left: 20px;
}

.addToWish.on{
  background-image: url(../Icons/Favoris-full.png);
}

/**********************************************************************************************************************************/
/* TITRE PRODUIT
/**********************************************************************************************************************************/
#ficheTitle h1 {
  font-size: 30px;
  line-height: 35px;
  color: #201547;
  margin-bottom: 20px;
  font-family: "RationalText-ExtraBold";
}

#ficheTitle h1 span{
  display: block;
  margin-top: 10px;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 100;
  font-family: "RationalText-ExtraLight";
}

/**********************************************************************************************************************************/
/* AVAILABLE ZONE
/**********************************************************************************************************************************/
#availableZone{
  display: inline-flex;
  background-color: #77bee4;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 14px;
  margin-bottom: 30px !important;
}

/**********************************************************************************************************************************/
/* DESCRIPTION
/**********************************************************************************************************************************/
#descriptif {
  padding-left: 25px;
  line-height: 1.6em;
}

#descriptif p {
  margin-bottom: 15px;
}

/**********************************************************************************************************************************/
/* PHOTOS ENTETE
/**********************************************************************************************************************************/
#photos-entete{
  margin-top: 50px;
  display: flex;
}

#photos-entete div + div{
  margin-left: 20px;
}

#photos-entete img{
  max-width: 100%;
  height: auto;
}

/**********************************************************************************************************************************/
/* AVANTAGES
/**********************************************************************************************************************************/
#avantages-title{
  font-family: "RationalText-SemiBold";
  margin-bottom: 30px;
  display: block;
}

#avantages ul {
  margin-top: 15px;
}

#avantages ul > li {
  margin-bottom: 15px;
}

#avantages li::before{
  content: '/ ';
}

#avantages {

  border-top: 1px solid #F1F1F1;
  padding-top: 40px;
  margin-top: 40px;
}

#avantages .ce-textpic{
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
}

#photos-entete + #avantages{
  border-top: none;
  margin-top: 50px;
  padding-top: 0;
}

#avantages a{
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

#avantages img {
  max-width: 300px;
  max-height: 150px;
  object-fit: contain;
  margin-left: 20px;
}

/**********************************************************************************************************************************/
/* ESPACE TELECHARGEMENT
/**********************************************************************************************************************************/
#docs .docs-category-header{
  display: flex;
  align-items: center;
}

#docs .docs-category-header img{
  width: 24px;
  height: 24px;
  display: block;
  margin-right: 10px;
}

#docs .docs-category-header span {
  color: #201547;
  font-family: "RationalText-SemiBold";
  font-size: 14px;
}

.doc-label::before{
  content: '/ ';
  display: inline;
}

.lang-file{
  padding-left: 5px;
}

#docs .docs-category {
  position: relative;
  margin-top: 30px;
}

#docs .docs-listing{
  margin-top: 10px;
  padding-left: 30px;
  font-size: 14px;
  font-family: "RationalText-Medium";
}

.docs-listing a{
  opacity: .6;
  font-family: "RationalText-ExtraLight";
}

.docs-listing a:hover{
  opacity: 1;
  text-decoration: underline;
}

.docs-listing .toggle .doc-label{
  padding-right: 20px;
  position: relative;
  display: inline-block;
  cursor: pointer;
}
.docs-listing .toggle .doc-label::after{
  content: '';
  width: 24px;
  height: 24px;
  display: block;
  background: url(../Icons/toggleDl.png) no-repeat center center / contain transparent;
  opacity: .5;

  /* TRANSFORM */
  transform: rotate(0);
  -webkit-transform: rotate(0);
  -moz-transform: rotate(0);
  -o-transform: rotate(0);
  -ms-transform: rotate(0);
}

.docs-listing .toggle .doc-label::after{
  content: '';
  width: 12px;
  height: 20px;
  display: block;
  background: url(../Icons/toggleDl.png) no-repeat center center / contain transparent;
  opacity: .5;
  position: absolute;
  top: 0;
  right: 0;

  /* TRANSFORM */
  transform: rotate(0);
  -webkit-transform: rotate(0);
  -moz-transform: rotate(0);
  -o-transform: rotate(0);
  -ms-transform: rotate(0);

  /* TRANSITION */
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.docs-listing .toggle:hover .doc-label::after{
  opacity: 1;
}

.docs-listing .toggle .doc-label.toClose::after{
  /* TRANSFORM */
  transform: rotate(180deg);
  -webkit-transform:rotate(180deg);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
}

.docs-listing .toggle ul .doc-label{
  padding-right: 0;
}
.docs-listing .toggle ul .doc-label::after{
  content: none;
}

.docs-listing ul{
  padding-left: 10px;
  margin: 5px 0;
}

#docs li + li{
  margin-top: 5px;
}

/**********************************************************************************************************************************/
/* PRODUITS ASSOCIES
/**********************************************************************************************************************************/
#complementary {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  font-family: "RationalText-SemiBold";
  margin-top: 150px;
  background: #F1F1F1;
  padding: 50px 0;
}

.edc-associee + #complementary{
  margin-top: 0 !important;
}

#complementaryTitle {
  font-size: 36px;
  color: #201547;
  margin-bottom: 25px;
}

#complementary > a {
  width: fit-content;
  align-self: center;
  margin-top: 50px;
}

#complementaryListing {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

#complementary .prodComp {
  display: flex;
  flex-direction: column;
  max-width: 240px;
  margin: 30px;
}

@media only screen and (max-width: 800px) {
  #complementary .prodComp {
    max-width: 120px;
    margin: 0;
  }
}

#complementary .prodCompImage{
  width: 240px;
  height: 240px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  background: #FFFFFF;
  overflow: hidden;
}

@media only screen and (max-width: 800px) {
  #complementary .prodCompImage{
    width: 120px;
    height: 120px;
    margin-bottom: 10px;
  }
}

#complementary .prodCompImage img{
  max-height: 200px;
  max-width: 200px;
  width: 100%;
  height: 100%;
  object-fit: contain;
  align-self: center;
}

#complementary .prodComp:hover a{
  color: #77bee4;
}

@media only screen and (max-width: 800px) {
  #complementary .prodComp h3{
    font-size: 14px;
  }
}

#complementary .prodComp:hover .prodCompImage{
  box-shadow: 0 1px 3px 0 rgba(0,0,0,.1);
}

#complementary .prodComp a {
  color: #201547;
}


/**********************************************************************************************************************************/
/* CONTENUS ADDITIONNELS
/**********************************************************************************************************************************/
#dropdown-infos {
  display: flex;
  flex-direction: column;
  line-height: 1.6em;
}

#dropdown-infos img {
  object-fit: contain;
  max-width: 200px;
  max-height: 200px;
}

#dropdown-infos span:hover {
  cursor: pointer;
}

#dropdown-infos > .contenu-additionnel > span:nth-child(2) {
  color: #77bee4;
  font-family: "RationalText-SemiBold";
  font-size: 20px;
  margin-left: 10px;
}

#dropdown-infos > .contenu-additionnel > span:first-child {
  color: #77bee4;
  font-size: 30px;
  position: relative;
  top: 3px;
  font-family: "RationalText-Medium";
}

#dropdown-infos > .contenu-additionnel {
  padding-left: 20px;
  padding-bottom: 30px;
  padding-top: 30px;
  border-bottom: 2px solid #F1F1F1;
}

#dropdown-infos .contenu-additionnel .frame{
  display: none;
}

#dropdown-infos .contenu-additionnel.open .frame{
  display: block;
}

.contenu-additionnel .ce-bodytext{
  font-size: 14px;
}

.contenu-additionnel .ce-bodytext p + p{
  margin-top: 10px;
}

#dropdown-infos .frame {
  border-bottom: 1px solid #eeeeee;
  padding: 30px 0;
}

#dropdown-infos .frame:first-of-type {
  margin-top: 10px;
}

#dropdown-infos .frame > div {
  display: flex;
}

#dropdown-infos .ce-bodytext {
  vertical-align: middle;
  margin-left: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#dropdown-infos .frame:last-child{
  border-bottom: 0;
}
#dropdown-infos .ce-gallery {
  min-width: 200px;
}

#ficheProduitSidebar {
  min-width: 400px;
}

@media only screen and (max-width: 1200px) {
  #ficheProduitSidebar {
    min-width: 320px;
  }
  #wheel img, #wheel video{
    max-width: 95px;
  }
}

@media only screen and (max-width: 800px) {

  #ficheProduit{
    flex-direction: column;
    justify-content: center;
  }

  #ficheProduit h1 {
    font-family: "RationalText-ExtraBold";
    font-size: 25px;
    line-height: 30px;
    color: #201547;
  }


  #descriptif {
    padding: 0;
  }

  #wheel {
    margin-bottom: 30px;
  }

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

  #avantages > #avantage-texte:first-child {
    margin-bottom: 15px;
  }

  #dropdown-infos .frame > div {
    flex-direction: column;
    text-align: center;
  }

  #dropdown-infos .frame > div:first-child {
    margin-top: 15px;
  }

  #opinion a:first-child {
    flex-grow: 2;
    margin-left: 30px;
  }

  #opinion a:last-child {
    flex-grow: 0.5;
    margin-right: 12px;
  }

  #displayImg {
    max-width: unset;
    width: 100%;
  }

  #dropdown-infos > .contenu-additionnel {
    padding-left: 0;
  }

  #complementary {
    margin-bottom: 25px;
    margin-top: 75px;
  }

  #complementaryTitle {
    line-height: 36px;
    font-size: 30px;
  }

  #complementary .prodComp {
    margin: 20px;
  }

  body {
    overflow-x: hidden;
  }
}

p:empty {
  display: none;
}

.addToWish:hover {
  cursor: pointer;
}

.produitComplentaire{
  max-width: 30%;
}
