/**
* 2007-2020 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-2020 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;
}
.tvcategory-slider-wrapper-info {
	padding: 0 15px;
	position: relative;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
}
.tvcategory-slider-info-box {
	position: absolute;
	top: 50%;
	right: 50px;
	transform: translate(0,-50%);
}
.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-slider-inner-info-box .owl-item.active .tvcategory-slider-wrapper-info:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    height: 70%;
    width: 1px;
    background-color: #f1f1f1;
    margin: auto;
    display: none;
}

.tvcategory-slider-info-box{
	display: inline-block;
}
.tvcategory-slider-info-box:before {
    position: absolute;
    content: "";
    background-color: #fec02a;
    transform: scaleX(0);
    height: 32px;
    left: 0;
    right: 0;
    top: -3px;
    margin: 0 auto;
    border-radius: 7px;
    z-index: -1;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
}

.tvcategory-slider-wrapper-info:hover .tvcategory-slider-info-box:before {
    transform: scaleX(1.5);
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
}


.tvcategory-slider-wrapper-info:hover .tvcategory-slider-info-box {
    color: #000;
}