#CarrousselProduit {
  width: 100%;
  border: dashed 1px #9FA85C;
  box-sizing: border-box;
  position: relative;
  height: 411px;
  overflow: hidden;
  margin: 20px auto; }

#WrappyCarroussel {
  height: 100%;
  position: absolute;
  top: 0px;
  transition: left 0.5s;
  left: 0px; }
  #WrappyCarroussel .OneItemCarr {
    width: 500px;
    height: 100%;
    float: left;
    position: relative; }
    #WrappyCarroussel .OneItemCarr .Titre {
      width: 100%;
      height: 40px;
      line-height: 40px;
      text-align: center;
      font-size: 1.2em;
      font-weight: bold; }
    #WrappyCarroussel .OneItemCarr .ImgCarr {
      width: 100%;
      height: 300px;
      position: relative; }
      #WrappyCarroussel .OneItemCarr .ImgCarr img {
        width: auto;
        height: 80%;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%); }
    #WrappyCarroussel .OneItemCarr .AccesCarr {
      width: 60%;
      height: 40px;
      position: absolute;
      bottom: 15px;
      left: 50%;
      transform: translateX(-50%);
      text-align: center;
      line-height: 40px;
      color: white;
      border-radius: 8px;
      background: #9FA85C; }
      #WrappyCarroussel .OneItemCarr .AccesCarr:hover {
        cursor: pointer; }
