/**
* 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
*/
.item.badcategoryslider-content-box-inner {
    margin: 0 15px;
}
.badcategoryslider-item {
    cursor: pointer;
    margin-top: 15px;
    height: 92px;
    background-color: #f7f7f7;
    padding-top: 10px;
}
.badcategoryslider-item-title {
    display: block;
    font-size: 18px;
    line-height: 29px;
    color: #262626;
    font-weight: 500;
}
.badcategoryslider-item-sub-title{
    font-size: 12px;
    line-height: 18px;
    color: #979797;
    text-align: left;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    display: none;
}
.badcategoryslider-item-content {
    display: flex;
    justify-content: center;
}
/* .badcategoryslider-item-title::after {
    position: absolute;
    content: "";
    background-color: var(--theme-custom-color);
    width: 0;
    height: 2px;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
    transition: all 0.35s ease-in-out 0s;
    -webkit-transition: all 0.35s ease-in-out 0s;
    -moz-transition: all 0.35s ease-in-out 0s;
    -ms-transition: all 0.35s ease-in-out 0s;
    -o-transition: all 0.35s ease-in-out 0s;
} */
.badcategoryslider-content-box-inner:hover .badcategoryslider-item-title::after {
    width: 50px;
    transition: all 0.35s ease-in-out 0s;
    -webkit-transition: all 0.35s ease-in-out 0s;
    -moz-transition: all 0.35s ease-in-out 0s;
    -ms-transition: all 0.35s ease-in-out 0s;
    -o-transition: all 0.35s ease-in-out 0s;
}
.badcategoryslider-item-title {
    position: initial;
    text-align: left;
    transition: all 0.35s ease-in-out 0s;
    -webkit-transition: all 0.35s ease-in-out 0s;
    -moz-transition: all 0.35s ease-in-out 0s;
    -ms-transition: all 0.35s ease-in-out 0s;
    -o-transition: all 0.35s ease-in-out 0s;
    transform: unset;
}
.badcategoryslider-content-box-inner:hover .badcategoryslider-item-title {
    color: var(--theme-custom-color);
}
.badcategoryslider-item-img-wrapper {
    transition: all 0.4s ease-in-out;
    height: 50px;
}
.badcategoryslider-content-box-inner:hover .badcategoryslider-item-img-wrapper {
    transform: rotateY(180deg);
}
.badcategoryslider-item-total-prod {
    font-size: 14px;
    line-height: 30px;
    color: #999;
    font-weight: 500;
    text-align: center;
}
.badcategoryslider-item-desc{
    display: none;
}
@media(max-width: 767px){
    .badcategoryslider-item {
        margin-top: 0;
    }
}
@media(max-width: 991px){
    .badcategoryslider-item-title {
        font-size: 16px;
    }
    .badcategoryslider-item-total-prod {
        font-size: 13px;
        line-height: 24px;
    }
}
