/**
* 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
*/

/************************* brand ******************/
.tvbrandlist-slider-inner {
  position: relative;
  /* padding: 24px 0; */
  border-radius: 5px;
}
.tvcmsbrandlist-slider {
position: relative;
margin-bottom: 100px;
}
.tvbrandlist-slider-info-box {
display: none;
}
.owl-carousel .owl-item .tvbrandlist-slider-wrapper-info img {
width: auto;
margin: auto;
}
.tvbrand-img-block-main {
  padding: 15px 15px 0;
}
.owl-carousel .owl-item .tvbrandlist-slider-wrapper-info .tvbrand-img-block img {
  opacity: 1;
  -webkit-opacity: 1;
  -moz-opacity: 1;
  -ms-opacity: 1;
  -o-opacity: 1;
  transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  max-width: 100%;
  margin: 0 auto;
  width: auto;
}
.owl-carousel .owl-item .tvbrandlist-slider-wrapper-info .tvbrand-img-block:hover .tvbrand-img-block-main img {
  transform: scale(1.03);
  -webkit-transform: scale(1.03);
  -moz-transform: scale(1.03);
  -ms-transform: scale(1.03);
  -o-transform: scale(1.03);
  filter: grayscale(1);
  transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
}
@media (max-width: 991px) {
.tvcmsbrandlist-slider {
  margin-bottom: 50px;
}
}
/* .tvbrand-img-block {
  border-radius: 0px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  background-color: transparent;
} */
/* .tvbrandlist-slider-wrapper-info {
  margin: 0 15px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 3px;
  background-color: #fff;
} */
.tvbrandlist-slider-block {
  margin: 0 -15px;
  position: relative;
}
.owl-carousel .owl-item .tvbrandlist-slider-wrapper-info .tvbrand-img-block:hover img {
 /* opacity: 0.6;
  -webkit-opacity: 0.6;
  -moz-opacity: 0.6;
  -ms-opacity: 0.6;
  -o-opacity: 0.6;
  transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease; */
  animation: tv-shake 1s ease-in-out;
}
@media(max-width: 575px) {
  .tvbrandlist-slider-content-box {
      padding: 0 35px;
  }
  .tvbrandlist-slider-inner {
      padding: 5px 0;
  }
}

@keyframes tv-shake {
16.65% {
  -webkit-transform: translateX(8px);
  transform: translateX(8px);
}

33.3% {
  -webkit-transform: translateX(-6px);
  transform: translateX(-6px);
}

49.95% {
  -webkit-transform: translateX(4px);
  transform: translateX(4px);
}

66.6% {
  -webkit-transform: translateX(-2px);
  transform: translateX(-2px);
}

83.25% {
  -webkit-transform: translateX(1px);
  transform: translateX(1px);
}

100% {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
}