/**
* 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
*/
.badfooterlogo-content-wrapper {
    text-align: left;
    padding: 50px 15px;
    margin-bottom: 70px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
.badfooterlogo-content-inner {
    position: relative;
    font-size: 16px;
    line-height: 26px;
    color: #181818;
    font-weight: 300;
    padding: 0;
    text-align: center;
    letter-spacing: 0.4px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    display: -webkit-box;
}
.badfooterlogo-content-inner::after{
    content: "";
    position: absolute;
    top: 0;
    left: -50px;
    width: 1px;
    height: 100%;
    background-color: #E3E3E3;
    z-index: 1;
}
.badfooterlogo-content-inner::before{
    content: "";
    position: absolute;
    top: 0;
    right: -50px;
    width: 1px;
    height: 100%;
    background-color: #E3E3E3;
    z-index: 1;
}
.badfooterlogo-content-wrapper a{
    display: block;
}
@media (max-width: 1440px){
    .badfooterlogo-content-inner::after{
        left: -30px;
    }
    .badfooterlogo-content-inner::before{
        right: -30px;
    }
}
@media(max-width:1200px){
    .badfooterlogo-content-wrapper{
        padding-bottom: 30px;
        margin-bottom: 50px;
    }
    .badfooterlogo-content-inner{
        font-size: 16px;
        line-height: 24px;
    }
    .badfooterlogo-content-inner::after{
        left: -10px;
    }
    .badfooterlogo-content-inner::before{
        right: -10px;
    }
}
@media(max-width: 991px){
    .badfooterlogo-content-wrapper {
        padding: 20px 15px;
        margin-bottom: 20px;
    }
    .badfooterlogo-content-wrapper a{
        text-align: center;
    }
    .badfooterlogo-content-inner {
        font-size: 15px;
        line-height: 24px;
        width: 80%;
        margin: 20px auto;
        text-align: center;
        margin: 0 15px;
    }
    .badfooterlogo-content-inner::after,
    .badfooterlogo-content-inner::before{
        display: none;
    }
}
@media (max-width:767px) {
    .badfooterlogo-content-inner{
        margin: 15px 0;
        width: 100%;
    }
}
@media(max-width:575px){
    .badfooterlogo-content-inner{
        font-size: 13px;
        line-height: 22px;
    }
}