/**
* 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
*/
.badcategoryslider-block {
    padding-bottom: 80px;
    margin: 0 60px;
}
.item.badcategoryslider-content-box-inner {
    margin: 0 15px;
}
.badcategoryslider-item {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    min-height: 140px;
    cursor: pointer;
}
.badcategoryslider-block .bad-all-pagination {
    padding-top: 0;
}
.badcategoryslider-item-title {
    display: block;
    font-size: 18px;
    line-height: 29px;
    color: #262626;
    font-weight: 500;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
}
.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;
}
.badcategoryslider-item-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    opacity: 0;
    transition: all 0.5s;
}
.badcategoryslider-item:hover .badcategoryslider-item-content {
    opacity: 1;
}
.badcategoryslider-item-content a{
    font-size: 16px;
    line-height: 25px;
    font-weight: 500;
    padding: 10px 35px;
    color: #fff;
    background-color: var(--theme-custom-color);
    text-transform: uppercase;
}
.badcategoryslider-item-content:hover a{
    color: #fff;
}
.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 {
    width: 100%;
    transition: all 0.4s ease-in-out;
}
.badcategoryslider-item-total-prod {
    font-size: 14px;
    line-height: 30px;
    color: #979797;
    font-weight: 500;
}
.badcategoryslider-item-desc{
    display: none;
}
@media(max-width: 1470px){
    .badcategoryslider-block {
        margin: 0;
    }
}
@media(max-width: 1200px){
    .badcategoryslider-block {
        padding-bottom: 20px;
    }
}
@media(max-width: 991px){
    .badcategoryslider-item-title {
        font-size: 16px;
    }
    .badcategoryslider-item-content a {
        padding: 10px 25px;
    }
    .badcategoryslider-item-total-prod {
        font-size: 13px;
        line-height: 24px;
    }
    .badcategoryslider-block {
        padding-bottom: 30px;
    }
    .badcategoryslider-item {
        margin-bottom: 30px;
    }
    .badcategoryslider-item {
        min-height: 120px;
    }
}
@media(max-width: 767px){
    .badcategoryslider-item {
        margin-top: 0;
        margin-bottom: 15px;
    }
    .badcategoryslider-block {
        padding-bottom: 20px;
    }
    .badcategoryslider-item {
        margin-bottom: 20px;
    }
}
@media(max-width: 575px){
    .badcategoryslider-item-content a {
        padding: 6px 18px;
    }
}
