/**
* 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 {
    background-color: transparent;
    margin: 80px 0;
}
.badcategoryslider-item {
    cursor: pointer;
    border: 1px solid #CCCCCC;
    border-radius: 10px;
    background-color: #fff;
    padding: 20px 0;
}
.badcategoryslider-item:hover{
    border: 1px solid var(--theme-custom-color);
}
.badcategoryslider-content-box-inner {
    padding: 0 20px;
}
.badcategoryslider-item .badcategoryslider-item-img-wrapper {
    transition: all 0.3s ease-in-out;
    margin: 0;
}
.badcategoryslider-content{
    margin: 0 -15px;
}
.badcategoryslider-item-content {
    padding: 0 10px;
    text-align: center;
}
.badcategoryslider-item:hover .badcategoryslider-item-img-wrapper{
    transform: rotateY(180deg);
}
.badcategoryslider-item-btn {
    display: block;
    color: #444444;
    font-size: 16px;
    font-weight: 500;
}
.badcategoryslider-item-btn:hover{
    color: #444444;
}
.badcategoryslider-item-title {
    font-size: 18px;
    line-height: 26px;
    padding-top: 20px;
    color: #555555;
    font-weight: 500;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    display: -webkit-box;
    margin: 0;
    font-family: var(--badtheme-font-name-2);
}
.badcategoryslider-item-sub-title {
    font-size: 16px;
    font-weight: 600;
    padding-top: 7px;
}
.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;
}
@media(max-width: 1200px){
    .badcategoryslider-content-box-inner {
        padding: 0 15px;
    }
    .badcategoryslider-item-title{
        font-size: 16px;
    }
    .badcategoryslider-block{
        margin: 50px 0;
    }
}
@media(max-width: 991px){
    .badcategoryslider-block{
        margin: 30px 0;
    }
}
@media(max-width:575px){
    .badcategoryslider-item{
        padding: 10px 0;
    }
    .badcategoryslider-item-title{
        padding-top: 10px;
        font-size: 15px;
    }
}