/**
* 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.
*/
.page-product .product__short-add-description {
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  color: var(--gray-500);
}

.page-product .product__short-add-description p,
.page-product .product__short-add-description li {
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  color: var(--gray-500);
}

.page-product .product__short-add-description p {
  margin-bottom: 6px;
}

.page-product .product__short-add-description a {
  text-decoration: underline;
}

.page-product .product__image {
  position: relative;
}

.page-product .product__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.page-product .product__video.video-initialized .product__video__blank-img{
  opacity: 1;
}

.page-product .product__video__thumb-wrapper {
  overflow: hidden;
}

.page-product .product__video__thumb {
  position: relative;
  transform: scale(1.79);
}

.page-product .product__video__play-icon{
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border: 1px solid var(--gray-400);
  border-radius: 50%;
  background: rgb(229, 231, 235, 0.75);
  z-index: 2;
  cursor: pointer;
}

.page-product .product__video__play-icon:hover{
  background: rgb(229, 231, 235, 1);
}

.page-product .product__video__play-icon svg{
  width: 25px;
  height: 25px;
}

.page-product .product__video__blank-img{
  opacity: 0;
  width: 100%;
  height: auto;
  filter: invert(1);
}

.product__video__thumb-wrapper iframe{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}