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

#infoVaping{
  display: none;
  width: 100%;
  height: 500vh;
  background-image:url('../img/infographie_nicotine.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
#introVaping {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 5%;
}
#introVaping h2,h3,h4,p{
  text-align: center;
}
.smoke_quantity{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-top: 2%;
}

input#all{
  /* display:none; */
}
input#all:before{
  content:"x";
}
.smoke_quantity .under_10:hover,
.smoke_quantity .over_10:hover,
.smoke_quantity .over_20:hover{
  background-color: rgb(250 178 10 / 50%);
  cursor: pointer;
}
.smoke_quantity .under_10,
.smoke_quantity .over_10,
.smoke_quantity .over_20,
.smoke_quantity .all{
  height: 100px;
  width: 150px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: column;
  background-position: 50% 15%;
  background-repeat: no-repeat;
  background-size: 50%;
  border-radius: 20px;
  font-weight: 400;
  font-size: 16px;
  color:black;
}
.under_10{background-image: url('../img/icon/under_10.png');}
.over_10{background-image: url('../img/icon/over_10.png');}
.over_20{background-image: url('../img/icon/over_20.png');}
.all{background-image: url('../img/icon/all.png');}

.smoke_quantity .all {display:none;cursor: pointer;}
div.advice{
  font-weight: 500;
  font-size: 14px;
  color:#f25c19;
  display: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%;
  border-radius: 7px;
}
@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%;
  border-radius: 5px;
  /* box-shadow: #c3c3c3 0px 0px 10px 5px; */
}
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 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;
}
/* @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 .productInner .row{
  width: 100% !important;
  margin: 0px;
  padding: 0px;
  display: flex;
  justify-content: space-between;
}
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;
}
