/**
* 2007-2018 PrestaShop
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/afl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
*  @author    PrestaShop SA <contact@prestashop.com>
*  @copyright 2007-2018 PrestaShop SA
*  @license   http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
*  International Registered Trademark & Property of PrestaShop SA
*
* Don't forget to prefix your containers with your own identifier
* to avoid any conflicts with others containers.
*/
.thumbnail-container .product-thumbnail
{
    position: relative;
}
.thumbnail-container-list .feature_picto,
.product-miniature .product-thumbnail .feature_picto {
left: 10px;
position: absolute;
top: 40px;
}

.product-miniature .product-thumbnail .feature_picto .fea-picto-list {
    margin-top: 5px ; 
    max-width: 50px !important;
}
.feature_picto .fea-picto-list {
    max-width: 65px;
    height: auto;
    margin-top: 10px;
    display: block;
}
#product .feature_picto .fea-picto-list{
    display: inline-block;
}
.picto-item {
  position: relative;  /*les .picto-item deviennent référents*/
/*  cursor: help;*/
  border-radius: 50%;
}

/* on génère un élément :after lors du survol et du focus :*/
body#index .product-miniature .product-thumbnail .feature_picto {
left: 10px;
position: absolute;
top: 45px;
}
body#index .picto-item:hover:after, .picto-item:focus:after{
        transform: translateX(-15%) !important;
}
.picto-item:hover:after,
.picto-item:focus:after {
  content: attr(aria-label);  /* on affiche aria-label */
  position: absolute;
  top: -40px;
  left: 0;
  transform: translateX(0); /* on centre horizontalement  */
  z-index: 1; /* pour s'afficher au dessus des éléments en position relative */
  white-space: nowrap;  /* on interdit le retour à la ligne*/
  padding: 5px 14px;
  background:#fff ;
  color: #000000;
  border-radius: 4px;
  border :1px solid #8c837c;
  font-size: 14px;
font-weight: 400;
z-index: 99;
font-family: 'Poppins', 'Playfair Display', 'Open Sans' !important;
}

/* on génère un second élément en :before pour la flèche */

.feature_sub_picto [aria-label]:hover:before,
.feature_sub_picto [aria-label]:focus:before {
  content: "▼";
  position: absolute;
  top: -20%;
  left: 30%;
  transform: translateX(0); /* on centre horizontalement  */
  font-size: 20px;
  color: #000000;
  z-index:10000;
}
#product .feature_sub_picto [aria-label]:hover:before,
#product .feature_sub_picto [aria-label]:focus:before {
  content: "▼";
  position: absolute;
  top: -31px;
  left: 99%;
  transform: translateX(-197%); /* on centre horizontalement  */
  font-size: 20px;
  color: #000000;
  z-index:10000;

}
#category .picto-item.picto-item_hover:after,
#category .picto-item.picto-item_hover:focus:after{
 top :-42px !important;
 z-index: 999;
}
#category .feature_sub_picto.sub_picto_hover [aria-label]:before,
#category .feature_sub_picto.sub_picto_hover [aria-label]:focus:before{
  top:-13px !important;
}
/* pas de contour durant le :focus */
.feature_sub_picto [aria-label]:focus {
  outline: none;
}
#product .picto-item:hover:after,
#product .picto-item:focus:after {
  content: attr(aria-label);  /* on affiche aria-label */
  position: absolute;
 top: -58px;
    left: 50%;
    transform: translateX(-46%); /* on centre horizontalement  */
  z-index: 1; /* pour s'afficher au dessus des éléments en position relative */
  white-space: nowrap;  /* on interdit le retour à la ligne*/
  padding: 5px 14px;
  background:#fff ;
  color: #000000;
  border-radius: 4px;
  border :1px solid #8c837c;
  font-size: 14px;
font-weight: 400;
font-family: 'Poppins', 'Playfair Display', 'Open Sans' !important;
}
@media (max-width: 767px) {
  .product-miniature .product-thumbnail .feature_picto .fea-picto-list {
     
    max-width: 40px;
}
}