/**
* 2007-2024 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-2024 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.
*/
.sticky-container{
display:none;}
@media(max-width:767px){
.sticky-container {

    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;

    display:block;

    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transition: -webkit-transform 0.15s ease-in;
    transition: -webkit-transform 0.15s ease-in;
    transition: transform 0.15s ease-in;
    transition: transform 0.15s ease-in, -webkit-transform 0.15s ease-in;
    z-index: 100;
    /*border-radius: 8px 8px 0 0;*/
    box-shadow: 0 -5px 30px 0 rgba(0,0,0,0.1);
    background: #fff;
    padding: 16px;
}
#sticky-container.sticky_hidden {
    -webkit-transform: translateY(0);
    transform: translateY(0);
}
.add-to-cart-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.button-add-to-cart a{
   
    display: flex;
    font-size: 13px;
   
    justify-content: center;
    align-items: center;
    line-height: 30px;
    padding: 5px 20px;
  
    /*width: 200px;*/
    border-radius: 50px;
}




.button-add-to-cart a:before{
    content: '\e928';
    font-size: 15px;
    margin-right: 15px;
    font-family: icomoon;
}

.add-to-cart-wrapper .price-cart{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.add-to-cart-wrapper .regular-price{
    order: 1;
    display: block;
    width: 100%;
    position: relative;
    text-decoration: line-through;

    font-size: 12px;
    font-weight: 300;
    opacity: .59;
}
.add-to-cart-wrapper .price{
    order: 2;
    font-size: 18px;
    font-weight: bold;
   
}
}
