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

#product .cc_packs__wrapper {
    padding: 16px;
    /* box-shadow: rgb(34 45 57 / 18%) 0px 14px 30px 0px, rgb(34 45 57 / 6%) 0px 4px 3px 0px, rgb(34 45 57 / 6%) 0px 0px 0px 1px; */
    border: 1px solid #D1D1D1;
    margin: 30px 0px;
    padding-bottom: 5px;
    border-radius: 8px;
}
#product .cc_packs__title {
    font-weight: 700;
    margin-bottom: 16px;
    text-align: left;
}
#product .cc_packs__title i {
    color: #79b9c7;
    margin-right: 5px;
}
#product .cc_packs__pack_product {
    display: grid;
    grid-template-columns: 74px 1fr;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 5px;
    position: relative;
}
/* #product .swiper-slide:not(:last-child) .cc_packs__pack_product::after {
    content: '';
    position: absolute;
    right: 5px;
    height: 85%;
    width: 1px;
    background: #838383;
    top: 50%;
    transform: translateY(-50%);
} */
#product .cc_packs__pack_product__image {
    flex-basis: 65px;
    align-items: center;
}
#product .cc_packs__pack_product__name {
    font-weight: 600;
    line-height: 17px;
    width: 90%;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
#product .sd_mail_alert-button {
    padding: 10px 0px;
}
#product .floating #floating_bar .cc_packs__wrapper {
    display: none;
}
#product .cc_packs__pack_product__info {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 12px;
    padding-right: 20px;
    text-align: left;
}
#product .cc_packs__pack_products .swiper-pagination-bullet {
    border: 1px solid #111;
    background: white;
    opacity: 1;
}
#product .cc_packs__pack_products .swiper-pagination-bullet-active {
    background: #111;
}
#product .cc_packs__pack_products .swiper-wrapper {
    padding-bottom: 20px;
}
#product .cc_packs__pack_product__quantity {
    font-weight: 600;
}
#product .cc_packs__pack_products .swiper-pagination {
    line-height: 10px;
    margin-bottom: -5px;
}

@media (max-width: 992px) {
    #product .cc_packs__wrapper {
        padding: 13px;
    }
    #product .cc_packs__pack_product {
        grid-template-columns: 63px 1fr;
        gap: 7px;
    }
    #product .cc_packs__pack_product__info {
        font-size: 11px;
    }
    #product .cc_packs__title {
        font-size: 13px;
        margin-bottom: 13px;
    }
    #product .cc_packs__pack_product__name {
        font-weight: 600;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

}