/**
* 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 .owl-carousel .owl-item img {
    width: auto;
}
.tvcmscategory-slider {
    position: relative;
    margin-bottom: 100px;
}
.tvcategory-slider-wrapper-info {
    padding: 0 15px;
    text-align: center;
}
.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;
    }
}
.tvcmscategory-slider {
    margin-bottom: 30px;
}
.tvcategory-img-block {
    margin: auto;
    overflow: hidden;
    position: relative;
    margin-bottom: 32px;
    padding: 5px 0;
}
.tvcategory-img-block::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    margin: auto;
    right: 0;
    background-color: #4e7661;
    bottom: 0;
    height: 150px;
    width: 150px;
    border-radius: 100%;
    z-index: -1;
}
.owl-carousel.owl-drag .owl-item:nth-child(1) .tvcategory-img-block::before {
    background-color: #EAA78D;
}
.owl-carousel.owl-drag .owl-item:nth-child(2) .tvcategory-img-block::before {
    background-color: #D1ECCF;
}
.owl-carousel.owl-drag .owl-item:nth-child(3) .tvcategory-img-block::before {
    background-color: #89D4C7;
}
.owl-carousel.owl-drag .owl-item:nth-child(4) .tvcategory-img-block::before {
    background-color: #A1CEE5;
}
.owl-carousel.owl-drag .owl-item:nth-child(5) .tvcategory-img-block::before {
    background-color: #84B76B;
}
.owl-carousel.owl-drag .owl-item:nth-child(6) .tvcategory-img-block::before {
    background-color: #E8D2B2;
}
.tvcategory-slider-wrapper-info a {
    display: block;
    cursor: pointer;
    overflow: hidden;
}
.tvcategory-slider-info-box {
    font-weight: 400;
    font-size: 24px;
    line-height: 1.125;
    letter-spacing: 0.96px;
    text-transform: capitalize;
    color: #000000;
    padding-bottom: 12px;
    position: relative;
    font-family: Coiny;
}
.tvcategory-img-block:after {
    border: 3px dashed transparent;
    position: absolute;
    content: '';
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 160px;
    width: 160px;
    z-index: 1;
    border: 3px dashed transparent;
    border-radius: 100%;
}
.tvcategory-slider-wrapper-info:hover .tvcategory-img-block:after {
    border: 3px dashed #4C5F89;
    -webkit-animation: spinAround 9s linear infinite;
    -moz-animation: spinAround 9s linear infinite;
    animation: spinAround 9s linear infinite;
}
@-webkit-keyframes spinAround {
    from {
        -webkit-transform: rotate(0deg)
    }
    to {
        -webkit-transform: rotate(360deg)
    }
}
@-moz-keyframes spinAround {
    from {
        -moz-transform: rotate(0deg)
    }
    to {
        -moz-transform: rotate(360deg)
    }
}
@keyframes spinAround {
    from {
        transform: rotate(0deg)
    }
    to {
        transform: rotate(360deg)
    }
}
.tvcategory-slider-wrapper-info a:hover .tvcategory-img-block {
    border-color: transparent;
}
.tvcategory-slider-wrapper-info:hover .tvcategory-slider-info-box {
    color: #434377;
}
.tvcategory-slider-info-box:after {
    position: absolute;
    content: "";
    background-color: #434377;
    width: 0;
    height: 2px;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
    transition: all 0.35s ease-in-out 0s;
    -webkit-transition: all 0.35s ease-in-out 0s;
    -moz-transition: all 0.35s ease-in-out 0s;
    -ms-transition: all 0.35s ease-in-out 0s;
    -o-transition: all 0.35s ease-in-out 0s;
}
.tvcategory-slider-wrapper-info:hover .tvcategory-slider-info-box:after {
    width: 98px;
    transition: all 0.35s ease-in-out 0s;
    -webkit-transition: all 0.35s ease-in-out 0s;
    -moz-transition: all 0.35s ease-in-out 0s;
    -ms-transition: all 0.35s ease-in-out 0s;
    -o-transition: all 0.35s ease-in-out 0s;
}
@media (max-width: 1024px) {
    .tvcategory-slider-info-box {
        padding-bottom: 7px;
    }
    .tvcategory-slider-info-box {
        font-size: 21px;
    }
    .tvcategory-img-block {
        margin-bottom: 20px;
    }
}
@media (max-width: 991px) {
    .tvcmscategory-slider {
        margin-bottom: 30px;
    }
}
@media(max-width: 650px) {
    .tvcmscategory-slider .owl-carousel .owl-item img {
        width: 120px;
    }
    .tvcategory-img-block::before {
        height: 120px;
        width: 120px;
    }
    .tvcategory-img-block {
        padding: 9px 0;
    }
    .tvcategory-img-block:after {
        height: 136px;
        width: 136px;
    }
}
@media(max-width: 575px) {
    .tvcategory-slider-info-box {
        font-size: 18px
    }
    .tvcategory-slider-wrapper-info {
        padding: 0 7.5px;
    }
}