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

.fpg-pack {
  border-radius: 4px;
  background-color: #f1f1f1;
  padding: 20px;
  color: #232323;
  font-size: 0.8rem;
}
.fpg-pack .fpg-widget-products {
  max-height: 450px;
  overflow: hidden;
}
@media (max-width: 999px) {
  .fpg-pack .fpg-widget-products {
    max-height: 700px;
  }
}
.fpg-pack .fpg-widget-products.expanded {
  max-height: none;
  -webkit-mask: none;
  mask: none;
  margin-bottom: 20px;
}
.fpg-pack.fpg-pack-disabled .fpg-widget-products {
  opacity: 0.7;
  pointer-events: none;
}
.fpg-pack.fpg-pack-disabled .btn-add-gifts {
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.7;
}
.fpg-pack .fpg-header {
  font-weight: bold;
  font-size: 1rem;
  padding: 10px 0 10px 0;
}
.fpg-pack .fpg-header progress {
  width: 100%;
  margin-top: 5px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.fpg-pack .fpg-header progress::-webkit-progress-bar {
  background-color: rgba(51, 51, 51, 0.1);
  border-radius: 2px;
  height: 6px;
}
.fpg-pack .fpg-header progress::-webkit-progress-value {
  background-color: #24b9d7;
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
  height: 8px;
  -webkit-transition: width 0.5s;
  transition: width 0.5s;
}
.fpg-pack a {
  text-decoration: none;
  color: #232323;
  font-weight: bold;
}
.fpg-pack .fpg-product {
  display: grid;
  grid-template-columns: 20px 50px auto 100px;
  gap: 10px;
  margin: 15px 0;
}
@media (max-width: 999px) {
  .fpg-pack .fpg-product {
    grid-template-columns: 20px 50px auto;
    grid-template-rows: auto auto;
  }
  .fpg-pack .fpg-product .fpg-price {
    grid-column: 1/-1; /* Spans the full width of the grid */
    grid-row: 2;
    line-height: 14px;
    padding: 5px 0;
  }
}
.fpg-pack .fpg-product .fpg-product-check {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}
.fpg-pack .fpg-product .fpg-product-check input {
  width: 20px;
  height: 20px;
}
@media (max-width: 999px) {
  .fpg-pack .fpg-product .fpg-product-check {
    display: block;
    padding: 0;
  }
  .fpg-pack .fpg-product .fpg-product-check input {
    width: 18px;
    height: 18px;
  }
}
.fpg-pack .fpg-product .fpg-product-image img {
  width: 40px;
  height: 40px;
  border-radius: 4px;
}
.fpg-pack .fpg-product .fpg-product-name select {
  padding: 4px;
  font-size: 0.7rem;
  width: 100%;
  border: 1px solid #e6e6e6;
}
.fpg-pack .fpg-product .fpg-price {
  display: flex;
  justify-content: center;
  background-color: rgba(51, 51, 51, 0.1);
  text-align: center;
  flex-direction: column;
  border-radius: 4px;
}

.btn-more-gifts {
  background-color: #e7e7e7;
}


/* MANUFACTURER_DISCOUNT_SPECIFIC_PRODUCTS = type 10 */
.promo-type-10 {
  font-weight: normal;
}

.promo-type-10 .promo-title {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 12pt;
}

.promo-type-10.promo-hide .promo-title {
  display: none;
}