/**
* 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-miniature {
    position: relative;
    overflow: hidden;
}

.shttMC__combinationPanel {
    width: 100%;
    background: var(--primary-green-1);
    position: absolute;
    bottom: 0;
    border-radius: 4px;
    padding: 16px 16px 80px 16px;
    transform: translateY(100%);
    transition: 300ms ease;
    z-index: 97;
    max-height: 95%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.shttMC--open .shttMC__combinationPanel {
    transform: translateY(0);
}

.shttMC__action {
    background: var(--primary-green-1);
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    transition: 150ms ease;
    border: 1px solid white;
    position: relative;
    z-index: 98;
    margin: 0 16px 16px 0;
    position: absolute;
    bottom: 0;
    right: 0;
}

.shttMC__combinations form {
    margin-bottom: 0px;
}

.shttMC__action:hover {
    background: black;
}

.shttMC__button {
    background: white;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    transition: 150ms ease;
    width: 100%;
    border: 0px;
    cursor: pointer;
}

.shttMC__combinations {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.shttMC__button span {
    transition: 150ms ease;
    color: black;
}

.shttMC__combinationName {
    font-size: 15px;
}

.shttMC__combinationPrice {
    font-size: 17px;
    font-weight: bold;
}

.shttMC__combinationProductName {
    font-size: 16px;
    color: white;
    text-align: center;
    margin-bottom: 0px;
}

.shttMC__button:hover {
    background: black;
}

.shttMC__button:hover span {
    color: white;
}

.shttMC__close {
    display: none;
}

.shttMC--open .shttMC__cart {
    display: none;
}

.shttMC--open .shttMC__close {
    display: block;
}

.shttMC__combinationsContainer {
    max-height: 100%;
    overflow: auto;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.shttMC__combinationsContainer::-webkit-scrollbar {
    display: none;
}

p.shttAttributesAvailable {
    font-size: 13px;
    line-height: 1.4em;
    margin: 0px;
    overflow: hidden;
}

.product-miniature .product-price-and-shipping {
    max-width: calc(100% - 64px);
}

.product-miniature .product-description .product-title {
    margin-bottom: 32px;
}

p.shttAttributesPrice {
    margin: 0;
    font-weight: bold;
}

.input-radio:checked+.radio-label .shttAttributesPrice,
.input-radio:hover+.radio-label .shttAttributesPrice {
    color: white;
}

@media (max-width: 767px) {
    p.shttAttributesAvailable {
        font-size: 10px;
    }

    .shttMC__action {
        width: 44px;
        height: 44px;
        margin: 0 8px 8px 0;
        position: absolute;
        bottom: 0;
        right: 0;
    }

    .shttMC__combinationPanel {
        padding: 8px 8px 70px 8px;
    }

    .shttMC__combinationProductName,
    .shttMC__combinationName,
    .shttMC__combinationPrice {
        font-size: 14px;
    }
}

p.shttAttributesAvailable.shttAttributesAvailable--desktop {
    display: none
}

p.shttAttributesAvailable.shttAttributesAvailable--laptop {
    display: none
}

p.shttAttributesAvailable.shttAttributesAvailable--mobile {
    display: block;
}

@media (min-width: 800px){
    p.shttAttributesAvailable.shttAttributesAvailable--laptop {
        display: block
    }

    p.shttAttributesAvailable.shttAttributesAvailable--mobile {
        display: none;
    }   
}

@media (min-width: 1400px){
    p.shttAttributesAvailable.shttAttributesAvailable--desktop {
        display: block
    }

    p.shttAttributesAvailable.shttAttributesAvailable--laptop {
        display: none;
    }   
}