/**
* 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 ***************/
.tvcmscategory-slider {
    position: relative;
    margin-bottom: 100px;
    padding: 100px 0;
}
.tvcategory-slider-wrapper-info {
    padding: 0 7.5px;
    position: relative;
}
.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;
}
@media (max-width: 991px) {
    .tvcmscategory-slider {
        margin-bottom: 50px;
    }
}
.tvcategory-img-block {
    height: 90px;
    width: 90px;
    margin: auto;
    background-color: #ffffff;
    border-radius: 100%;
    overflow: hidden;
    border: 1px solid transparent;
}
.tvcategory-img-block img{
    /*width: auto !important;*/
    padding: 14px;
}
.tvcategory-slider-wrapper-info :hover .tvcategory-img-block {
    border: 1px solid #fb8321;
    border-radius: 100%;
}
.tvcategory-slider-wrapper-info a{
    display: block;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 60px 0;
    border: 1px dashed transparent;
    border-radius: 5px;
    transition: all 0.6s ease-in-out 0s;
    -webkit-transition: all 0.6s ease-in-out 0s;
    -moz-transition: all 0.6s ease-in-out 0s;
    -ms-transition: all 0.6s ease-in-out 0s;
    -o-transition: all 0.6s ease-in-out 0s;
}
.tvcategory-slider-wrapper-info a:hover{
    border: 1px dashed #ffffff;
    transition: all 0.6s ease-in-out 0s;
    -webkit-transition: all 0.6s ease-in-out 0s;
    -moz-transition: all 0.6s ease-in-out 0s;
    -ms-transition: all 0.6s ease-in-out 0s;
    -o-transition: all 0.6s ease-in-out 0s;
}
.tvcategory-slider-info-box {
    text-align: center;
    color: #fff;
    font-size: 16px;
    text-transform: capitalize;
    font-weight: 500;
    letter-spacing: 0.3px;
    position: relative;
    padding-bottom: 12px;
    margin-top: 10px;
    transition: all 0.6s ease-in-out 0s;
    -webkit-transition: all 0.6s ease-in-out 0s;
    -moz-transition: all 0.6s ease-in-out 0s;
    -ms-transition: all 0.6s ease-in-out 0s;
    -o-transition: all 0.6s ease-in-out 0s;
}
.tvcategory-slider-wrapper-info:hover .tvcategory-slider-info-box{
    color: #fb8321;
}
.tvcategory-slider-info-box:after{
    position: absolute;
    content: "";
    background-color: #fb8321;
    width: 50px;
    height: 2px;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
    transition: all 0.5s ease-in-out 0s;
    -webkit-transition: all 0.5s ease-in-out 0s;
    -moz-transition: all 0.5s ease-in-out 0s;
    -ms-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
}
.tvcategory-slider-wrapper-info:hover .tvcategory-slider-info-box:after{
    width: 100px;
    transition: all 0.5s ease-in-out 0s;
    -webkit-transition: all 0.5s ease-in-out 0s;
    -moz-transition: all 0.5s ease-in-out 0s;
    -ms-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
}
@media(max-width: 575px){
    .tvcategory-slider-inner-info-box{
        padding: 0;
    }
    .tvcategory-slider-wrapper-info{
        padding: 0 10px 12px 10px;
    }
    .tvcategory-slider-wrapper-info a{
        padding: 30px 0;
    }
}