ul.grid [class*="list-"]{
  display: none;
}
ul.list [class*="grid-"]{
  display: none;
}



div.combinations_product{
  width: 100%;
  bottom: 125px;
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 5px;
  border:1px solid #e9e9e9;
  z-index: 9;
}
ul.selection{
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  position: relative;
}
.combinations_product:hover > ul.selection > li.option:first-child:before{
  content: "\f0d8";
}
li.option:first-child:before{
  content: "\f0d7";
  display: inline-block;
  font-family: "FontAwesome";
  font-size: 14px;
  position: absolute;
  right: 10px;
}
ul.selection li:first-child{
  height: 40px;
  display: block;
  border: 1px solid #e9e9e9;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
  padding-right: 15px;
  padding-top: 7px;
  pointer-events:none;
}

li.option{
  font-size: 12px;
  display: none;
  width: 100%;
  text-align: center;
}

li.option:hover{
  background: #e9e9e9;
  cursor: pointer;
}


span.pdt_indisponible{
  position: absolute;
  bottom:60px;
}
/* quantity_wanted  MODIF 2020*/
.product_qty {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 70px;
  position: absolute;
  bottom: 50px;
}
.product_qty .quantity_choice{
  user-select: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
  .product_qty input {
    width: 50px;
    height: 30px;
    font-size: 20px;
    margin: 0 5px;
    text-align: center;
    border: none !important;
    font-weight: 500;
    pointer-events:none;
  }
  .product_qty .qty_down:hover,
  .product_qty .qty_up:hover {
    cursor: pointer;
    background: none;
    color:black;
  }
  .product_qty .qty_up,
  .product_qty .qty_down {
    border: none;
    padding: 0;
    font-size: 12pt;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: none;
  }

/* ------------------------- */
/* --------  GRID ---------- */
/* ------------------------- */

 ul.product_list.grid{
  display: flex !important;
  width: 98%;
  margin: 0 auto;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
}
ul.grid.product_list:before{
  display: none;
}
ul.grid li.product{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  margin: 0.5%;
  width: 100%;
}
@media  (min-width: 900px) and (max-width: 1200px){
  ul.grid li.product{
    width: 45%;
    max-width: 300px;
  }
}
@media (min-width: 1200px) and (max-width: 1450px){
  ul.grid li.product{
    width:30%;
    max-width: 300px;
  }
}
@media (min-width: 1450px){
  ul.grid li.product{
    width:24%;
    max-width: 300px;
  }
}

ul.grid li.product img{
  height: auto;
  width: auto;
  max-width: 100%;
  max-height: 100%;
}
ul.grid .product-container{
  width: 100%;
  height: 100%;
}
ul.grid .productInner{
  width: 100%;
  height: 500px;
  padding: 5%;
  border: 2px solid #e9e9e9;
  border-radius: 4px;
  box-shadow: 1px 2px 4px #e9e9e9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
@media  (min-width: 900px) and (max-width: 1200px){
  ul.grid .productInner{
    height: calc(300px + 10vw);
  }
}
@media (min-width: 1200px){
  ul.grid .productInner{
    height: calc(300px + 5vw);
  }
}
ul.grid .productInner h5{
  /* margin-top:30px; */
  text-align: center;
  font-weight: 800;
  /* height: 40px; */
  line-height: 20px;
}
ul.grid .productInner h5 span.brand-name{
  font-size: 12px;
  font-weight: 400;
  color: #a7a7a7;
  margin-top: 10px;
  line-height: 10px;
}
ul.grid .productInner a.product-name{
  font: 500 10pt/18px "Ubuntu", sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #333;
}
ul.grid .left-block{
  flex:1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
}
ul.grid .product-image-container{
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
  flex:1;
  max-height: 70%;
  width: 100%;
}
ul.grid .product-image-container a{
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
ul.grid .left-block .price-container{
  position: absolute;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 400;
  position: absolute;
  right: 5px;
  bottom: 10px;
}
ul.grid .right-block{
  flex: 1;
  width: 100%;
  display: none;
  position: relative;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
ul.grid .right-block .product-desc{
  margin-top: 10px;
  text-align: justify;
  height: 100px;
  overflow: none;
}
.tab-content {
    margin-top: 20px;
    margin: 0 auto;
    width: 80%;
    float: none;
}
ul.grid li.product:hover
.left-block{
  display: none;
}
ul.grid li.product:hover
.right-block{
  display: flex;
}
ul.grid .right-block .price{
  font-size: 10pt;
  text-transform: uppercase;
  font-weight: 400;
  line-height: 25px;
}

/* ------------------------- */
/* --------  LIST ---------- */
/* ------------------------- */


 ul.list.product_list{
  display: flex !important;
  width: 98%;
  margin: 0 auto;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
}
ul.list ul.product_list:before{
  display: none;
}
ul.list li.product{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  margin: 0.5%;
  width: 100%;
}

ul.list li.product img{
  height: auto;
  width: auto;
  max-width: 200px;
  max-height: 200px;
}
ul.list .product-container{
  width: 100%;
  height: 100%;
}
ul.list .productInner{
  width: 100%;
  height: 100%;
  padding: 5% 0%;
  border: 2px solid #e9e9e9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

ul.list .productInner .row{
  width: 100% !important;
  margin: 0px;
  padding: 0px;
  display: flex;
  justify-content: space-between;
}
/* @media  (min-width: 900px) and (max-width: 1200px){
  ul.list .productInner{
    height: calc(300px + 10vw);
  }
}
@media (min-width: 1200px){
  ul.list .productInner{
    height: calc(250px + 5vw);
  }
} */
ul.list .productInner h5,a.product-name{
  font: 300 10pt/18px "Ubuntu", sans-serif;
  height: 40px;
  text-align: center;
  padding: 10px 0px;
  letter-spacing: 1px;
  font-weight: 500;
  text-transform: uppercase;
  color: #333;
}
ul.list .left-block{
flex:0.2;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
}
ul.list .product-image-container{
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
  flex:1;
  max-height: 70%;
  width: 100%;
}
ul.list .product-image-container a{
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
ul.list .left-block .price{
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 400;
}
ul.list .center-block{
  flex: 0.8;
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  height: 250px;
}
ul.list .center-block .product-desc{
  margin-top: 10px;
  text-align: justify;
  height: 100px;
  overflow: none;
}

/* ul.list li.product:hover
.left-block{
  display: none;
}
ul.list li.product:hover
.right-block{
  display: flex;
} */
ul.list .left-block > h5{
  display:none;
}
ul.list .left-block .price{
  display:none;

}
ul.list .center-block .price,h5{

}

.right-block .button-container{
  position: absolute;
  width: 100%;
  height: 50px;
  bottom: 0px;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
}
ul.list .right-block {
  position: absolute;
  width: 40%;
  right: 10%;
  bottom: 20px;
}
ul.list .right-block  .button-container{
  position: absolute;
  width: 100%;
  height: 50px;
  bottom: 0px;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
}
.pdt_indisponible{
  text-align: center;
  color: red;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.3;
  font-style: italic;
}
.ajax_add_to_cart_button.product-button,.ajax_add_to_cart_unable,.moreBox > a,.addToWishlist{
  display: flex;
  height: 45px;
  width: 45px;
  border-radius: 4px;
  align-items: center;
  justify-content: center;
}
.ajax_add_to_cart_unable:hover{
  background: none;
  color:#505050;
  border:2px solid #505050;
  cursor:no-drop;
}
.ajax_add_to_cart_unable:before{
  font-family: "material-design";
  content: "";
  vertical-align: 0;
  margin: 0;
  font-size: 16pt;
}
.ajax_add_to_cart_unable{
  color:#505050;
  border:2px solid #505050;
  cursor:no-drop;
}
.ajax_add_to_cart_button.product-button{
  border: 3px solid #60c231;
  color:#60c231;
}
.ajax_add_to_cart_button.product-button:before{
  font-family: "material-design";
  content: "";
  vertical-align: 0;
  margin: 0;
  font-size: 16pt;
}
.ajax_add_to_cart_button.product-button:hover{
  background-color: #60c231;
  border: none !important;

}
.addToWishlist {
  border: 3px solid #ec0677;
  color:#ec0677;
}
.wishlist > a:hover {
  background-color: #ec0677 !important;
  border: none !important;
}
.addToWishlist:before {
  display: inline-block;
  font-family: "material-design";
  content: "\e07f";
  font-size: 16pt;
}
.wishlist span{
  display: none;
}
.moreBox span{
  display: none;
}
.moreBox > a {
  border: 3px solid #505250;
  color:#505250;
}
.moreBox > a:hover {
  background-color:#505250 !important;
  border: none !important;
}
.moreBox > a:before {
  content: "\f06e";
  display: inline-block;
  font-family: "FontAwesome";
  font-size: 16pt;
}
