/**
* 2007-2023 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-2023 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.
*/
.wrap-product-custom-features {
    margin-bottom: 75px;
}

.wrap-product-custom-features .feature-card {
    padding: 0 25px;
    margin: 15px 0;
}

.wrap-product-custom-features > h2 {
    color: #F59A29;
    font-size: 60px;
    text-align: center;
    font-family: 'Chewy';
    letter-spacing: 1.15px;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.wrap-product-custom-features .feature-group-name {
    color: #5F98AE;
    font-size: 1.15rem;
    line-height: 40px;
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}
.wrap-product-custom-features .eg-feature-values > ul {
    border-radius: 20px;
}
.wrap-product-custom-features .eg-feature-values > ul:nth-child(odd) {
    background: rgba(95, 152, 175, 0.13);
}

.wrap-product-custom-features .eg-feature-values .wrap-feature {
    font-size: 1rem;
    font-weight: 700;
    line-height: 20px;
    padding: 1rem 2rem;
    margin-bottom: 10px;
    color: #363A36;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wrap-product-custom-features .eg-feature-values .wrap-feature span:first-child {
    width: 40%;
}
.wrap-product-custom-features .eg-feature-values .wrap-feature span:last-child {
    text-align: right;
    padding-left: 5px;
    margin: 0;
    width: 60%;
}

.features-multi-level .feature-group-name {
    position: relative;
}
.features-multi-level .feature-group-name:after {
    content: "\f067";
    font-family: 'FontAwesome';
    font-size: 10px;
    font-weight: 400;
    width: 20px;
    height: 20px;
    color: #fff;
    background: #F59A29;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50px;
    line-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.features-multi-level.feature-opened .feature-group-name:after {
    content: "\f068";
}

.wrap-product-custom-features .wrap-feature .info-bulle  {
    position: relative;
    top: 2px;
    color: #f59a29;
    margin-left: 5px;
    cursor: pointer;
}

#product .wrap-product-custom-features .info-bulle .info-bulle-content {
    background: #f59a29;
    color: #fff;
    position: absolute;
    text-align: left;
    min-width: 200px;
    padding: 4px 8px;
    border-radius: 3px;
    left: 30px;
    top: -4px;
    width: auto;
    height: auto;
    display: none;
}

#product .wrap-product-custom-features .info-bulle .info-bulle-content * {
    color: #fff;
}

#product .wrap-product-custom-features .wrap-feature .info-bulle svg:hover + .info-bulle-content {
    display: block;
}

body#product.eg-mobile .wrap-product-custom-features .info-bulle .info-bulle-content {
    position: relative;
    width: 70vw;
    left: 0;
    top: 0;
}

body#product.eg-mobile .wrap-product-custom-features .eg-feature-values .wrap-feature {
    align-items: flex-start;
}