/**
* 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;
    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-title-content {
    /*margin-left: 0;*/
    margin-right: -7.5px;
    display: flex;
    flex-wrap: wrap;
}
.tvcategory-slider-main-title-wrapper {
    position: relative;
    padding: 0;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    width: 20%;
}
.tvcategory-slider-inner-info-box {
    /*margin-left: -15px;*/
    /*margin-right: -15px;*/
    width: 80%;
    padding: 0 0 0 7.5px;
}
.tvcategory-img-block {
    margin: auto;
}
.tvcategory-slider-main-title-banner {
    position: relative;
    background-color: #e4e4e4f0;
    height: 100%;
    width: 100%;
    padding: 20px;
    text-align: center;
    display: grid;
    align-content: center;
}
.tvcategory-slider-main-title-banner .tvcms-next-pre-btn{
    margin-top: 0;
}
.tvcategory-slider-main-title-banner i{
    font-size: 34px;
    color: #be903d;
    margin: auto;
    margin-bottom: 20px;
}
.tvcategory-slider-wrapper-info a {
    display: block;
    cursor: pointer;
    background-color: #fff;
}
.tvcategory-slider-info-box {
    padding: 10px 5px;
    text-align: center;
}
.tvcategory-slider-info-title {
    color: #222;
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
}
.tvcategory-slider-all-link{
    font-size: 13px;
    line-height: normal;
    color: #888;
}
.tvcategory-slider-wrapper-info:hover .tvcategory-slider-all-link{
    color: #be903d;
}
.tvcategory-slider-wrapper-info {
    padding: 0 7.5px;
}
@media (max-width: 1600px){
    .tvcategory-slider-main-title-wrapper{
        width: 25%;
    }
    .tvcategory-slider-inner-info-box{
        width: 75%;
    }
}
@media (max-width: 1199px){
    .tvcategory-slider-main-title-wrapper{
        width: 22%;
    }
    .tvcategory-slider-inner-info-box{
        width: 78%;
    }
}
@media (max-width: 991px){
    .tvcategory-slider-main-title-wrapper{
        width: 30%;
    }
    .tvcategory-slider-inner-info-box{
        width: 70%;
    }
}
@media (max-width: 650px){
    .tvcategory-slider-main-title-wrapper{
        width: 50%;
    }
    .tvcategory-slider-inner-info-box{
        width: 50%;
    }
}
@media (max-width: 768px) {
    .tvcategory-slider {
        display: block;
    }
}
@media(max-width: 480px) {
     .tvcategory-slider-main-title-wrapper{
        width: 100%;
        margin: 0 7.5px;
        margin-bottom: 15px;
    }
    .tvcategory-slider-inner-info-box{
        width: 100%;
    }
    .tvcategory-slider-inner-info-box {
        padding: 0;
    }
    .tvcategory-slider-title-content{
        margin: 0 -7.5px;
    }
}
.tvcategory-img-block{
    overflow: hidden;
}
.tvcategory-img-block img{
     -webkit-transition: all 600ms cubic-bezier(.25,.46,.45,.94);
    -o-transition: all 600ms cubic-bezier(.25,.46,.45,.94);
    transition: all 600ms cubic-bezier(.25,.46,.45,.94);
}
.tvcategory-slider-wrapper-info:hover .tvcategory-img-block img{
        -webkit-transform: scale(1.08);
    -ms-transform: scale(1.08);
    transform: scale(1.08);
}