/**
* 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
*
* Don't forget to prefix your containers with your own identifier
* to avoid any conflicts with others containers.
*/

.mrelatedproducts--empty [class$="--empty"] {
    display: block;
    background-color: rgba(0, 0, 0, .05);
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, .5), rgba(255, 255, 255, 0));
    background-size: 3rem 100%;
    background-repeat: no-repeat;
    background-position: left -3rem top 0;
    animation: shine 1.5s ease infinite;
}

@keyframes shine {
	to {
		background-position: right -3rem top 0;
	}
}

.mrelatedproducts--empty .header--empty {
    max-width: 75%;
    width: 30rem;
    height: 34px;
    margin: 1rem 0;
}

.mrelatedproducts--empty .image--empty {
    margin: 1.25rem 0;
}

.mrelatedproducts--empty .product-title--empty {
    width: 75%;
    height: 20px;
    margin-bottom: 0.5rem;
}

.mrelatedproducts--empty .price--empty {
    width: 5rem;
    height: 22px;
}

.mrelatedproducts--empty .deliverytime--empty {
    width: 10rem;
    height: 35px;
    margin: .25rem 0;
}