/**
* 2007-2023 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-2023 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.
*/

.featured-products.cicerone-featured-products{
    clear: both;
    overflow: hidden;
}
.featured-products.cicerone-featured-products h2{}
.featured-products.cicerone-featured-products h3{cursor: pointer;}
.featured-products .products {justify-content: space-between;}
.featured-products .products article.product-miniature {
    width: 24%;
}



/* LOADER CSS */
.loader-ap {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}
.loader-ap div {
    position: absolute;
    width: 5px;
    height: 5px;
    background: #aaa;
    border-radius: 50%;
    animation: loader-ap 1.8s linear infinite;
}
.loader-ap div:nth-child(1) {
    animation-delay: 0s;
    top: 37px;
    left: 66px;
}
.loader-ap div:nth-child(2) {
    animation-delay: -0.15s;
    top: 22px;
    left: 62px;
}
.loader-ap div:nth-child(3) {
    animation-delay: -0.3s;
    top: 11px;
    left: 52px;
}
.loader-ap div:nth-child(4) {
    animation-delay: -0.45s;
    top: 7px;
    left: 37px;
}
.loader-ap div:nth-child(5) {
    animation-delay: -0.6s;
    top: 11px;
    left: 22px;
}
.loader-ap div:nth-child(6) {
    animation-delay: -0.75s;
    top: 22px;
    left: 11px;
}
.loader-ap div:nth-child(7) {
    animation-delay: -0.8s;
    top: 37px;
    left: 7px;
}
.loader-ap div:nth-child(8) {
    animation-delay: -0.95s;
    top: 52px;
    left: 11px;
}
.loader-ap div:nth-child(9) {
    animation-delay: -1.1s;
    top: 62px;
    left: 22px;
}
.loader-ap div:nth-child(10) {
    animation-delay: -1.25s;
    top: 66px;
    left: 37px;
}
.loader-ap div:nth-child(11) {
    animation-delay: -1.4s;
    top: 62px;
    left: 52px;
}
.loader-ap div:nth-child(12) {
    animation-delay: -1.55s;
    top: 52px;
    left: 62px;
}
@keyframes loader-ap {
    0%, 20%, 80%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.5);
    }
}