/**
 * 2024 ALCALINK E-COMMERCE & SEO, S.L.L.
 *
 * NOTICE OF LICENSE
 *
 * This source file is subject to the Open Software License (OSL 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/osl-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
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 *
 * @author ALCALINK E-COMMERCE & SEO, S.L.L. <info@alcalink.com>
 * @copyright  2024 ALCALINK E-COMMERCE & SEO, S.L.L.
 * @license    http://opensource.org/licenses/osl-3.0.php  Open Software License (OSL 3.0)
 *
 * Registered Trademark & Property of ALCALINK E-COMMERCE & SEO, S.L.L.
 */

 /* Product Section */
.alca-combinations-pro {
    position: relative;
    display: none;
}
.alca-combinations-pro.default {
    position: relative;
    /*display: inline-block;*/
}
.alca-combinations-pro.default .pack-option-container {
    position: relative;
    width: 100%; /* Ancho del contenedor */
    height: 425px; /* Altura del contenedor */
    overflow-y: scroll; /* Habilitar scroll vertical */
    /*border: 1px solid #ccc;*/
    padding: 10px 0; /* Espaciado interno */
    box-sizing: border-box; /* Incluye borde y padding en el tamaño total */
    /*background-color: #E2F06A;*/
    background-color: transparent;
}
.alca-combinations-pro.default .pack-option-container.single {
    height: auto;
    overflow-y: unset;
}
.alca-combinations-pro.default .pack-option {
    color: #7a7a7a;
    padding: 7px;
    display: flex;
    /*background-color: #f9f9f9;*/
    background-color: transparent;
    border: 1px solid #e7e7e7;
    border-radius: 3px;
    margin-bottom: 7px;
}
.alca-combinations-pro.default .pack-option:hover {
    background-color: #F2F2F2;
}
.alca-combinations-pro.default .pack-option.selected {
    background-color: #F2F2F2;
    /*color: #fff;*/
}
.alca-combinations-pro.default .pack-option:hover .pack-item, .pack-option.selected .pack-item {
    color: #7a7a7a;
}
.alca-combinations-pro a {
    text-decoration: none;
}
.alca-combinations-pro.default .pack-option .image {
    width: 15%;
}
.alca-combinations-pro.default .pack-option .product {
    display: block;
    width: 85%;
}
.alca-combinations-pro.default .pack-option .product.fullwidth {
    width: 100%;
}
.alca-combinations-pro.default .pack-option .image img {
    max-height: 64px;
}
.alca-combinations-pro.default .pack-option .footer {
    display: flex;
    width: 100%;
    margin-top: 7px;
}
.alca-combinations-pro.default .pack-option .packs {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background-color: #fff;
    border: 1px solid #e7e7e7;
    border-radius: 6px;
    padding: 10px;
    margin-top: 10px;
}
.alca-combinations-pro.default .pack-option .packs label {
    font-size: 12px;
    margin: 0;
}
.alca-combinations-pro.default .pack-option .pack-item {
    font-size: 10px;
    font-style: italic;
}
.alca-combinations-pro.default .pack-option .name {
    font-size: 1.2em;
    font-weight: 600;
}
/* Cart Section */
.product-line-info a.label ul {
    padding-left: 7px;
}
.product-line-info a.label ul li {
    font-size: 10px;
    font-style: italic;
}
.product-line-info a.label ul li::before {
    content: "- ";
    margin-right: 5px;
    color: #000;
}
.btn-pack-select {
    display: none;
}
.alca-combinations-pro.default .footer .price {
    font-weight: 500;
}
.alca-combinations-pro.default .footer .no-stock {
    color: #EB716F;
    font-weight: 500;
    padding: 0 7px;
}

.alca-combinations-pro .loading {
    display: none;
    position: absolute;
    z-index: 10;
    top: 0;
    width: 100%;
    height: 100%;
    /*background: rgba(226, 240, 106,0.5);*/
    background-color: transparent;
    text-align: center;
}

.alca-combinations-pro .loading img {
    max-width: 90px;
    margin: auto;
    /*margin-top: 140px;*/
}