/**
* 2016-2018 ARPA3 SARL
*
* 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 ARPA3 SARL <contact@arpa3.fr>
*  @copyright  2016-2018 ARPA3 SARL
*  @license    http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
*  International Registered Trademark & Property of ARPA3 SARL
*
*/
#sticky-panier {
    align-items: center;
    background-color: rgba(255,255,254,0.95);
    border-top: solid 1px #d2dae3;
    bottom: 0;
    display: flex;
    left: 0;
    opacity: 0;
    padding: 10px;
    position: fixed;
    text-align: right;
    width: 100%;
    z-index: 1040;
}

#sticky-panier .product-title {
    flex: 1;
    padding-left: 10px;
    text-align: left;
    margin: 0px;
}

#sticky-panier .product-image img {
    max-height: 55px;
}

#sticky-panier .sticky-price{
    margin: 0px 20px 0px 0px;
    text-align: right;
}

#sticky-panier .sticky-add{
    text-transform: uppercase;
}

.our_price_display_sticky {
    margin: 0;
    padding-right: 10px;
}

.click-active {
    display: none;
}

#sticky-panier .sticky-cart-mobile{
    display: none;
}

@media (max-width: 768px) {
    #sticky-panier .product-image,
    #sticky-panier .product-title,
    #sticky-panier .product-price{
        display: none;
    }

    #sticky-panier .sticky-cart-mobile{
        display: inline-block;
    }

    #sticky-panier {
        justify-content: center;
    }

    #sticky-panier .product-btn {
        flex: 1;
    }

    #sticky-panier .product-btn a {
        width: 100%;
    }

}

.sticky-tooltip {
    position: relative;
    display: inline-block;
}

/* Tooltip text */
.sticky-tooltip .tooltiptext {
    visibility: hidden;
    width: 160px;
    background-color: black;
    color: #fff;
    text-align: center;
    padding: 5px;
    border-radius: 6px;
    opacity: 1;
    position: absolute;
    z-index: 1;
    bottom: 60px;
    right: 10px;
    right: -10px;
    overflow-wrap: break-word;
    word-break: normal;
    text-transform: none;
}

/* Show the tooltip text when you mouse over the tooltip container */
.sticky-tooltip:hover .tooltiptext {
    visibility: visible;
}

.sticky-tooltip .tooltiptext::after {
    content: " ";
    position: absolute;
    top: 100%; /* At the bottom of the tooltip */
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: black transparent transparent transparent;
}