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


.features{
    width: auto;
    padding: 0;
}

.features > label{
    display: flex;
    text-align: left;
}
.feature-bold{
    font-weight: bold;
    font-size: 12px;
}
@media (max-width: 768px){
    .container-features.features-after::after{
        text-align: justify;
        font-size: 10px;
        margin-top: 1.5rem;
        content: "Este producto puede estar compuesto por diferentes paquetes o piezas y para poder ser utilizado puede ser necesario ensamblar piezas u otro tipo de montaje sencillo. Quizás pueda necesitar algunas herramientas básicas de bricolaje";
    }
}

.features > label > label{
    font-size: 10px;
    text-align: unset;
    line-height: 1;
    }
    
    .features > label > img {
        width: 37px;
        margin-top: -8px;
        height: 39px;
    }
.container-features{
    margin-bottom: 0px;
    padding: 0px;    
}

.row-features{
    display: flex;
    gap: 0.78em;
    justify-content: flex-start;
}

@media(max-width: 991px ){
    .features{
        margin-bottom: -8px; 
    }
}
@media (min-width: 768px ) and (max-width: 1256px ){
    .row-features{
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
    }
}

@media(max-width: 768px ){
    .row-features{
        /* padding-left: 10px; */
        margin-left: -3px;
        margin-bottom: 10px;
        display: grid;
        grid-template-columns: repeat(2,1fr);
    }
    .container-features{
        margin-bottom: 20px;
        margin-top: 20px;
        padding: 0px;    
    }
    .features > label > img {
        margin-top: -5px;
    }
}

@media(min-width: 1200px ){
    .row-features{
        margin-left: -5px;
    }
}
@media(min-width: 1440px ){
    .row-features{
        gap: 1.78em;
    }
}