/**
* 2007-2021 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-2021 PrestaShop SA
*  @license   http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
*  International Registered Trademark & Property of PrestaShop SA
*
* Don't forget to prefix your containers with your own identifier
* to avoid any conflicts with others containers.
*/

#product .wim-related-products{
  padding: 15px 0;
}

#product .wim-related-products .title {
  text-align: left;
  display: block !important;
  margin-bottom: 7px;
  font-weight: bold;
  font-size: 15px;
}

/** slick **/

.wim-related-products .slick-prev {
  margin-left: 16px;
}

.wim-related-products .slick-next {
  margin-right: -47px;
}

.wim-related-products .slick-arrow {
  position: absolute;
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  height: 50px;
  width: 50px;
  line-height: normal;
  text-align: center;
  color: #000000;
  z-index: 9;
  background: transparent;
  border: 0;
  top: 50%;
}

.wim-related-products .slick-prev:before {
  content: "\E314";
  font-size: 25px;
  display: block;
  font-family: 'Material Icons', sans-serif;
  opacity: 0.75;
}

.wim-related-products .slick-next:before {
  content: "\E315";
  font-size: 25px;
  display: block;
  font-family: 'Material Icons', sans-serif;
  opacity: 0.75;
}

.wim-related-products .slick-slide{
  padding-left: 5px;
  padding-right: 5px;
}

#wim-related-product-pai .wim-related-products-slick {
  padding: 0 10px;
}

/** overlay **/
.wim-related-products-overlay{
  width: 100%;
  height: 100%;
  min-height: 340px;
  margin: 15px 0;
  text-align: center;
}

.wim-related-products-overlay .spinner {
  margin-top: 15px;
  width: 75px;
  height: 75px;
  display: inline-block;
  border-width: 2px;
  border-color: rgba(152, 131, 131, 0.05);
  border-top-color: #000000;
  animation: wrp-spin 1s infinite linear;
  border-radius: 100%;
  border-style: solid;
}

@media (max-width: 768px) {
  .wim-related-products-overlay {
    min-height: 100px;
  }
}

@keyframes wrp-spin {
  100% {
    transform: rotate(360deg);
  }
}
