/**
* 2007-2024 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-2024 PrestaShop SA
*  @license    http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
*  International Registered Trademark & Property of PrestaShop SA
*/
.badcategoryslider-block {
    margin-bottom: 100px;
}
.badcategoryslider-main-title .badmain-title-wrapper .badmain-title {
    text-align: left;
    padding: 0;
    border-bottom: 1px solid #ebebeb;
}
.badcategoryslider-main-title .badmain-title::after{
    display: none;
}
.badcategoryslider-item{
    cursor: pointer;
}
.badcategoryslider-content-box-inner {
    padding: 0 15px;
}
.badcategoryslider-item-img-wrapper {
    padding-bottom: 20px;
}
.badcategoryslider-item .badcategoryslider-item-img-wrapper{
    transition: all 0.3s ease-in-out;
}
.badcategoryslider-item:hover .badcategoryslider-item-img-wrapper{
    transform: rotateY(180deg);
}
.badcategoryslider-item-content {
    position: absolute;
    top: 0;
    right: 20px;
}
.badcategoryslider-item-title {
    display: inline-block;
    font-size: 20px;
    line-height: 26px;
    color: #454545;
    font-weight: 400;
}
.badcategoryslider-item:hover .badcategoryslider-item-title{
    color: var(--theme-custom-color);
}
.badcategoryslider-item-total-prod {
    font-size: 12px;
    line-height: 26px;
    color: #da3f3f;
    text-transform: uppercase;
    text-align: center;
}
.badcategoryslider-item-desc{
    display: none;
}

@media(max-width: 1200px){
    .badcategoryslider-block {
        margin-bottom: 60px;
    }
}
@media(max-width: 991px){
    .badcategoryslider-block {
        margin-bottom: 30px;
    }
}
@media(max-width: 767px){
    .badcategoryslider-item-title{
        font-size: 18px;
    }
    .badcategoryslider-item-img-wrapper {
        padding-bottom: 0;
    }
}