/**
* 2007-2025 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-2025 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: #63AD0515;
    /* border: 1px solid #E4E4E4; */
    margin-bottom: 15px;
    overflow: hidden;
    /* display: inline-block; */
    border-radius: 5px;
}
.tvcategory-slider-wrapper-info a {
    display: block;
    cursor: pointer;
    text-align: center;
}
.tvcategory-slider-info-box {
    padding: 13px 20px;
    background: #F5F5F5;
    border: 1px solid #F5F5F5;
    border-radius: 5px;
    transition: all 0.6s ease-in-out 0s;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -ms-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    z-index: 1;
    position: relative;
}
.tvcategory-slider-info-box::after{
    background-color: rgba(255, 255, 255,0.5);
    content: "";
    height: 100%;
    left: 0;
    opacity: 0.2;
    -moz-opacity: 0.2;
    z-index: -1;
    -khtml-opacity: 0.2;
    -webkit-opacity: 0.2;
    position: absolute;
    top: 0;
    transition: none 0s ease 0s;
    -webkit-transition: none 0s ease 0s;
    -moz-transition: none 0s ease 0s;
    -o-transition: none 0s ease 0s;
    -ms-transition: none 0s ease 0s;
    width: 0;
}
.tvcategory-slider-info-box:hover::after{
    animation: fillToRight 0.9s forwards;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
}
.tvcategory-slider-info-title {
    display: inline-block;
    position: relative;
    z-index: 1;
    font-weight: 500;
    line-height: 1.47;
    text-align: center;
    letter-spacing: 0.01em;
    text-transform: capitalize;
    color: #182918;
    font-size: calc(16px + (19 - 16) * ((100vw - 280px) / (1920 - 280)));
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -ms-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
   
}
@keyframes fillToRight {
    to { 
        width: 100%;
    }
}
.tvcategory-slider-wrapper-info:hover .tvcategory-slider-info-box {
    background-color: #63AD05;
    border-color: #63AD05;
}
.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: 992px){
    .tvcategory-slider-info-box {
        padding: 7px 20px;
    }
}