/**
* 2007-2022 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-2022 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.
*/
.simplblocks{
    background:#ffff;
    /*margin-top:50px;*/
    width:  100%;
    max-width:  100%;
    display: flex;
    padding: 55px 5px;
    align-items: center;
    justify-content: center;
    gap: 60px;
    /*height:50px;*/
}
.simplblocks ul{
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    list-style: none;
    padding-left: unset;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 60px;
    max-width: 1390px;
    margin: auto;


    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;





}
.simplblocks ul li {
    display: flex;
    /*padding-left: 8px;*/
    transition: all 0.3s ease-in-out;
    /*padding-top: 8px;*/
    /*padding-bottom: 8px;*/
    position: relative;
}
.simplblocks ul li a, .simplblocks ul li span{
    display: flex;
    justify-items: center;
    align-items: center;
}
.simplblocks ul li  img{

    max-height: 50px;
    margin-right: 23px;
}

.simplblocks ul li a span, .simplblocks ul li span{
    font-size: 18px;
    line-height: 24px;
    color: #2b3443;
    font-weight: 600;
}


@media (max-width: 767px) {


    .simplblocks{
        gap: unset;
        padding:0;
    }
    .simplblocks ul{
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: unset;
        justify-content: center;
}

    .simplblocks ul li{
        /*width: 250px;*/
        -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
        flex-shrink: 0;
        border: 0;
        border-bottom: 1px solid #f1f1f1;
        padding: 13px 35px;
        border-radius: 0;
        width: 100%;
    }

    .simplblocks ul li:last-child{
        border-bottom: unset;
    }


    .simplblocks ul li a span, .simplblocks ul li span{
        font-size:16px;
        font-weight: bold;
    }
    .simplblocks ul li img{
        /*max-height:  23px;*/
    }

    .simplblocks ul li img{
        width:40px;    margin-right: 10px;}


}



