/**
* 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;
}
.tvcategory-slider-wrapper-info {
    /*display: inline-block;*/
}
.tvcmscategory-slider {
    position: relative;
    /* padding: 100px 105px; */
    margin-bottom: 100px;
}
.tvcategory-slider-wrapper-info {
    padding: 0 15px;
    position: relative;
    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 {
    margin: auto;
    background-color: #fff;
    /*border: 1px solid #006AFC;*/
    border-radius: 20px;
    overflow: hidden;
    display: inline-block;
}
.tvcategory-slider-wrapper-info a {
    display: inline-block;
    cursor: pointer;
    position: relative;
    text-align: center;
}
.tvcategory-slider-info-box {
    position: absolute;
    bottom: 25px;
    left: 15px;
    right: 15px;
    text-align: center;
}
.tvcategory-slider-title .tvcategory-slider-info-title::after {
    background-color: #000;
    z-index: -1;
}
.tvcategory-slider-title:hover .tvcategory-slider-info-title::after {
    background-color: #006AFC;
}
.tvcategory-slider-info-title {
    padding: 12px 30px 9px;
    display: inline-block;
    position: relative;
    z-index: 1;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.1;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: #FFFFFF;
    word-wrap: break-all;
    -webkit-transition: all 200ms ease-in-out;
    -moz-transition: all 200ms ease-in-out;
    -ms-transition: all 200ms ease-in-out;
    -o-transition: all 200ms ease-in-out;
}
@keyframes fillToRight {
    to {
        width: 100%;
    }
}
/* .tvcategory-slider-wrapper-info:hover .tvcategory-slider-info-box {
    background-color: #006AFC;
    border-color: #006AFC;
} */
.tvcategory-slider-wrapper-info:hover .tvcategory-slider-info-title {
    color: #fff;
}
.tvcategory-img-block img {
    display: block;
    -webkit-transition: all 400ms linear;
    -moz-transition: all 400ms linear;
    -ms-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    transition: all 400ms linear;
    backface-visibility: hidden;
}
.tvcategory-slider-wrapper-info:hover .tvcategory-img-block img {
    filter: grayscale(100%);
    opacity: .9;
}
@media (max-width: 1080px) {
    .tvcategory-slider-info-title {
        font-size: 18px;
    }
}
@media (max-width: 575px) {
   .tvcategory-slider-info-title{
    font-size: 14px;
    padding: 12px 24px 9px;
   }
   .tvcategory-slider-info-title::after{
    border-radius: 6px;
   }
}