/**
* 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.
*/

body#cart .item-to-pack, body#cart .pack-to-item {
	white-space: normal;
    text-transform: lowercase;
    background-color: white;
    color: #3D9266;
    border: 2px solid #3D9266;
    padding: 0.5rem 1.5rem;
    margin-top: 25px;
    font-size: .925rem;
    font-weight: 500;
}

body#cart .pack-to-item {
    color: grey;
    border: 2px solid grey;
    text-transform: inherit;
}

body#cart .item-to-pack-icon .icon-shopping-bag::before {
    font-weight: bold;
    vertical-align: text-top;
    font-size: 1.1rem;
}

body#cart .item-to-pack:hover {
    background-color: #3D9266;
    color: white;
    border: 2px solid #3D9266;
    transition: .8s;
}

body#cart .pack-to-item:hover {
    background-color: grey;
    color: white;
    border: 2px solid grey;
    transition: .8s;
}

body#cart .item-to-pack .item-to-pack-icon, body#cart .pack-to-item .pack-to-item-icon {
	padding: 0;
}

body#cart .item-to-pack .unit-price, body#cart .pack-to-item .unit-price {
	color: grey;
}

body#cart .d-flex {
	display: flex;
}

body#cart .align-items-center {
    align-items: center;
}
@media (min-width: 768px) {
    body#cart .item-to-pack, body#cart .pack-to-item {
        margin-top: 0;
    }
}
@media (min-width: 660px) and (max-width: 767px) {
    body#cart .item-to-pack, body#cart .pack-to-item {
        margin-left: 15px;
    }
}
@media (max-width: 660px) {
    body#cart .item-to-pack, body#cart .pack-to-item {
        width: 100%;
    }
}