#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: 40;
}

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

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

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

.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;
        display: inline-block;
        font-size: 18px;
        font-weight: 700;
        width: 25%;
        padding: 0 5px;
    }
    #sticky-panier .sticky-add{
        width: 75%;
        font-size: 18px;
    }

    #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;
}