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

                  CSS Social wall
****************************************************************/
#ite_socialwall .entete{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 67px 0px 5px 0px;
}
#ite_socialwall .entete h2{
    padding: 15px;
}
#ite_socialwall .entete h2:before{
    content: "";
    background-image: url(/img/cms/maison-grise.svg);
    background-size: contain;
    background-repeat: no-repeat;
    display: block;
    width: 100px;
    height: 100px;
    position: absolute;
    top: -20px;
    left: -20px;
}
#ite_socialwall .entete a{
    border: 2px solid #333333;
    color: #333333;
    padding: 15px 30px;
    font-weight: bold;
}
#ite_socialwall .entete a:hover{
    background-color: #333333;
    color: #FFFFFF;
}
#ite_socialwall .contenu {
    display: flex;
    gap: 35px;
    padding-top: 20px;
    padding-bottom: 20px;
}
#ite_socialwall .contenu .facebookContent{
    background-color: #FFFFFF;
    max-width: 350px;
    border-radius: 5px;
}
#ite_socialwall .contenu .facebookContent .facebookContenu{
    background-color: #FFFFFF;
    padding: 35px;
    border-radius: 0 0 5px 5px;
}
#ite_socialwall .contenu .facebookContent .facebookContenu p,#ite_socialwall .contenu .facebookContent .facebookContenu b{
    color: #333333;
}
#ite_socialwall .contenu .facebookLogo{
    display: flex;
    align-items: center;
}
#ite_socialwall .contenu .facebookLogo img{
    width: 50px;
    height: 50px;
    margin-right: 15px;
}
#ite_socialwall .contenu .facebookContent .facebookImage{
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px 5px 0 0;
}
@media (max-width: 1024px){
    #ite_socialwall .contenu, #ite_socialwall .contenu{
        flex-direction: column;
        align-items: center;
    }
}
@media (max-width: 767px){
    #ite_socialwall .contenu .facebookContent .facebookImage{
        width: 100%;
    }
    #ite_socialwall .contenu, #ite_socialwall .entete{
        flex-direction: column;
    }
}
  
