/**
 * Copyright since 2007 PrestaShop SA and Contributors
 * PrestaShop is an International Registered Trademark & Property of PrestaShop SA
 *
 * NOTICE OF LICENSE
 *
 * This source file is subject to the Academic Free License 3.0 (AFL-3.0)
 * that is bundled with this package in the file LICENSE.md.
 * It is also available through the world-wide-web at this URL:
 * https://opensource.org/licenses/AFL-3.0
 * 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 https://devdocs.prestashop.com/ for more information.
 *
 * @author    JA Modules <info@jamodules.com>
 * @copyright Since 2007 JA Modules
 * @license   https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0)
 */

/*En classic height sí, en Warehouse no*/
.product-image-slider {
    position: relative;
    height: 300px;
}

/*Estilos de carousel a partir de la 1.7.7*/
.carousel .carousel-inner {
    height: auto !important;
}

#products .product-miniature,
.featured-products .product-miniature {
    margin: 0 auto;
    padding-right: 5px;
}

@media (max-width: 991px) {
    .carousel {
        width: auto;
        margin-left: 0;
        left: 0;
    }
}
/*end*/

.carousel-control-prev,
.carousel-control-next {
    position: absolute;
    top: 16px;
    bottom: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 10%;
    color: white;
    text-align: center;
    font-size: 40px;
    opacity: 0.7;
}

.carousel-control-prev {
    left: 0;
}

.carousel-control-next {
    right: 0;
}

.carousel-control-prev i {
    font-size: 45px;
}

.carousel-control-next i {
    font-size: 45px;
}

.carousel-control-prev i:hover {
    opacity: 0.7;
}

.carousel-control-next i:hover {
    opacity: 0.7;
}

.carousel-indicators {
    position: absolute;
    bottom: 10px;
    left: 50%;
    z-index: 15;
    width: 60%;
    padding-left: 0;
    margin-left: -30%;
    text-align: center;
    list-style: none;
}

.carousel-indicators .active {
    width: 12px;
    height: 12px;
    margin: 0;
    background-color: #fff;
}

.carousel-indicators li {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 1px;
    text-indent: -999px;
    cursor: pointer;
    background-color: transparent;
    border: 1px solid #fff;
    border-radius: 10px;
}