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

.dbcategories {
    /*background-color: #fff;*/
    /*padding: 2rem;*/
    display: table;
    width: 100%;
}

.dbcategories .title {
    margin-bottom: 1.5rem;
}

.dbcategories .cat_home .name {
    color: #232323;
    margin-top: 10px;
    font-size: 15px;
    font-weight: 400;
    width: calc(100% - 10px);
    margin: 0;
}

.dbcategories .cat_home .name:hover {
    color: var(--primary_color);
}

.dbcategories .categories_list {
    position: relative;
    max-height: 188px;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.dbcategories .categories_list li {
    width: 25%;
}

.dbcategories .categories_list .read-more {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: left;
    margin: 0;
    padding: 15px 0 0 25px;
    font-size: 0.9rem;
    cursor: pointer;
    background-image: linear-gradient(to bottom, transparent, #FFF);
    background-image: linear-gradient(to bottom, white, #FFF);
    color: #232323;
    font-weight: 400;
}

.dbcategories .categories_list .cat_home {
    width: 100%;
    color: #000;
    margin: 8px 0;
    display: flex;
    font-size: 15px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.dbcategories .categories_list .cat_home>i {
    float: right;
    color: #232323;
}

@media (max-width: 991px) {
    .dbcategories .categories_list {
        max-height: 275px;
    }

    .dbcategories {
        margin-left: -15px;
        margin-right: -15px;
        width: calc(100% + 30px);
        padding: 1.25rem 1.25rem 0.5rem;
    }
}
