/**
* 2007-2023 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-2023 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.
*/
.progress {
	display: flex;
    height: 1rem;
    overflow: hidden;
    font-size: .75rem;
    background-color: #e9ecef;
    border-radius: 0.25rem;
}

.progress-bar {
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    background-color: #ff662e;
    transition: width .6s ease;
}

#amount-free-shipping-bar {
    padding: 30px 0 15px;
}

#amount-free-shipping .completed .progress-bar, #amount-free-shipping-bar.completed .progress-bar {
    background-color: #69aa46;
    width: 100%;
}

#amount-free-shipping-bar .amount-left {
    font-weight: normal;
    font-size: 1rem;
}

body#cart .mv-flex-scroll {
    overflow-x: scroll;
    overflow-y: hidden;
    margin-bottom: 2rem;
}

body#cart article.product-miniature{
    margin-bottom: 10px;
}

@media (min-width: 1200px) {
    body#cart .products article.product-miniature, body#cart #products .products article.product-miniature, body#cart #pack-to-item .products article.product-miniature, body#cart #products-tags .products article.product-miniature {
        -webkit-box-flex: 1 0 30%;
        -moz-box-flex: 1 0 30%;
        -webkit-flex: 1 0 30%;
        -ms-flex: 1 0 30%;
        flex: 1 0 30%;
        max-width: 25%;
    }
}

body#cart .wishlist-button-add {
    display: none;
}