/**
* 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.
*/
#field_product .list_description{
    list-style: none;
    display: flex;
    width: 100%;
    justify-content: start;
    margin-top: 1rem;
}
#field_product .list_description li{
    margin-right: 15px;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 700;
    color: #202944;
    position: relative;
    cursor: pointer;
    user-select: none;
}
#field_product .list_description li::after{
    content: "";
    position: absolute;
    background-color: #202944;
    width: 0;
    left: 50%;
    bottom: -1px;
    height: 1px;
    transition: 0.3s ease-in-out;
}
#field_product .list_description li.active::after{
    left: 0;
    width: 100%;
}
#field_product .describtion_item {
    position: relative;
    
}
#field_product .item_detail p{
    font-size: 16px;
    font-weight: 300;
    line-height: 20.8px;
    text-align: left;
    color: #202944;
    margin: 0;
}
#field_product .item_detail{
    height: 0;
    opacity: 0;
    overflow: hidden;
   
}
#field_product .item_detail.active{
    height: 100%;
    opacity: 1;
    margin-bottom: 1rem;
}
#fiels_product_footer .section_1,
#fiels_product_footer .section_2{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
#fiels_product_footer .section_1{
    flex-direction: column-reverse;
}

#fiels_product_footer .section_2{
    flex-direction: column;
    margin-top: 2rem;
}
#fiels_product_footer{
    padding: 40px 0;
    background: #F1EFEE;
}
#fiels_product_footer .text_product_footer svg{
    margin-bottom: 15px;
}
#fiels_product_footer .text_product_footer{
    width: 70%;
}
#fiels_product_footer .text_product_footer h6,
#fiels_product_footer .text_product_footer h5,
#fiels_product_footer .text_product_footer h4,
#fiels_product_footer .text_product_footer h3,
#fiels_product_footer .text_product_footer h2,
#fiels_product_footer .text_product_footer h1{
    color: #202944;
    text-transform: uppercase;
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 1rem;
}
#fiels_product_footer .text_product_footer p{
    color: #202944;  
    font-size: 16px;
    font-weight: 300;
}
#fiels_product_footer .text_product_footer strong{
    color: #202944;  
    font-size: 16px;
    font-weight: 700;
}
#fiels_product_footer .image_section img{
    max-width: 100%;
    height: auto;
}
#fiels_product_footer .image_section{
    min-width: 300px;
}
#fiels_product_footer .section_1 .image_section{
    text-align: end;
}
#fiels_product_footer .section_2 .image_section{
    text-align: start;
}

@media (max-width: 500px) {
    #field_product .list_description li{
    font-size: 3.4vw;
}
}
@media (min-width: 767px) {
    #fiels_product_footer .section_1,
    #fiels_product_footer .section_2{
        display: flex;
        padding: 40px 15%;
        align-items: center;
        justify-content: center;
        flex-direction: row;
        flex-wrap: nowrap;
        margin-top: 0;
    }

    #fiels_product_footer .image_section{
        width: 40%;
    }

    #fiels_product_footer{
        padding: 40px;
    }
    #fiels_product_footer .text_product_footer{
        padding: 0 30px;
    }
}