/**
* 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
*/

/************* category ***************/
.tvcategory-slider-content-box {
    display: flex;
    overflow: hidden;
}
.tvcmscategory-slider {
    position: relative;
    margin-bottom: 100px;
}
.tvcategory-slider-wrapper-info {
    min-width: 212px;
}
.owl-item .tvcategory-slider-wrapper-info {
    min-width: initial;
}
.tvcategory-slider-main-title-wrapper {
    position: relative;
}
.tvcategory-slider-inner-info-box {
    margin-left: -15px;
    margin-right: -15px;
}
.tvcategory-img-block {
    /*display: inline-grid;*/
    height: 70px
}
.tvcategory-img-block img.tv-img-responsive {
    width: auto;
    margin: 0;
}
.tvcategory-slider-inner-info-box {
    position: relative;
    background-color: #f5f5f5;    
    border-bottom: 1px solid #dddddd;
}
.tvcategory-slider-wrapper-info{
    position: relative;
    border-left: 1px solid #ddd;
}
.tvcategory-slider-wrapper-info:after{
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background-color: #6bb42f;
    opacity: 0;
    display: inline-block; 
    z-index: 0;
}
.tvcategory-slider-wrapper-info:hover:after{
    opacity: .9;
}
.tvcategory-slider-wrapper-info a {
    display: block;
    cursor: pointer;
    padding: 55px 40px;
    position: relative;
    z-index: 1;
}
.tvcategory-slider-info-box span{
    color: #333;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: .8px;
    position: relative;
    padding-bottom: 10px;
    margin-top: 13px;
    text-align: center;
    display: inline-block;
}
.tvcategory-slider-short-desc{
    font-size: 14px;
    color: #666;
    line-height: 24px;
}
.tvcategory-slider-wrapper-info:hover .tvcategory-slider-short-desc,
.tvcategory-slider-wrapper-info:hover span{
    color: #fff;
}
.tvcategory-slider-wrapper-info:hover .tvcategory-img-block img{
    filter: invert(1);
}
.tvcategory-slider-bg{
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    height: 100%;
    width: 100%;
}
.tvcategory-slider-wrapper-info:hover .tvcategory-slider-bg{
    opacity: .8
}
.lang-rtl .tvcategory-slider-wrapper-info a{
    text-align: right;
}
@media (max-width: 991px) {
    .tvcmscategory-slider {
        margin-bottom: 30px;
    }
}