/**
* 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 {
    margin-bottom: 100px;
}
.badcategoryslider-item-btn:hover{
    text-decoration: underline;
}
.badcategoryslider-item{
    cursor: pointer;
}
.badcategoryslider-content-box-inner {
    padding: 0 15px;
}
.badcategoryslider-item-img-wrapper {
    padding-bottom: 30px;
}
.badcategoryslider-item .badcategoryslider-item-img-wrapper {
    transition: all 0.3s ease-in-out;
    width: 200px;
    height: 200px;
    border: 1px solid #ddd;
    margin: 0 auto;
    border-radius: 100%;
}
.badcategoryslider-item:hover .badcategoryslider-item-img-wrapper{
    transform: rotateY(180deg);
}
.badcategoryslider-item-content {
    text-align: center;
    display: grid;
    padding-top: 20px;
}
.badcategoryslider-item-img-wrapper img.owl-lazy {
    padding: 42px;
}
.badcategoryslider-item-title {
    display: inline-block;
    font-size: 20px;
    line-height: 26px;
    color: #141213;
    font-weight: 400;
    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-block {
        margin-bottom: 50px;
}
}
@media(max-width: 991px){
    .badcategoryslider-block {
        margin-bottom: 30px;
    }
}
@media(max-width: 767px){
    .badcategoryslider-item-title {
        font-size: 18px;
    }
    .badcategoryslider-item-content {
        padding-top: 15px;
    }
}