/**
* 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.
*/
#fa_customerreviews{
    margin: 5rem auto;
}
#fa_customerreviews .row_customerreviews{
    display: flex;
    justify-content: space-between;
    gap: 25px;
    padding-top: 4rem;
}


#fa_customerreviews .item_reviews{
    box-shadow: 0px 15.6151px 32.5314px rgba(0, 0, 0, 0.25);
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    padding: 15px;
    border-radius: 9px;
    height: fit-content;
}
#fa_customerreviews .logo{
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
    background-color: #fff;
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px;
    height: 80px;
    width: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
#fa_customerreviews .logo svg{
    max-width: 100%;
    height: auto;
}

#fa_customerreviews .notation{
    margin-top: 45px;
}
#fa_customerreviews .notation svg path{
    fill: var(--secondary);
}
#fa_customerreviews .customer_reviews{
    font-weight: 300;
    font-size: 13px;
    text-align: center;
}
@media (max-width:980px){
    #fa_customerreviews .row_customerreviews{
        flex-wrap: wrap;
        row-gap: 60px;
    }
    #fa_customerreviews .item_reviews{
        min-width: calc(50% - 25px);
    }
}