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

/*Pagina personal de producto favoritos*/
.wishlist {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.wishlist_product {
    width: 25%;
    position: relative;
}
.wishlist_product .delete_wishlist,
.dbwishlist-container .wishlist_cart .delete_wishlist {
    position: absolute;
    top: 8px;
    right: 22px;
    z-index: 99;
    width: 36px;
    height: 36px;
    background-color: #FFF;
    padding: 8px;
    border-radius: 50%;
    box-shadow: 0 0 10px #0000004a;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}
.wishlist_product .delete_wishlist svg,
.dbwishlist-container .wishlist_cart .delete_wishlist svg{
    width: 14px;
}
.wishlist_product .product-miniature {
    margin: 0 0.8125rem;
}
.miniature_wishlist_custom .dbwishlist_hearth {
    display: none;
}

/*Productos en el carrito*/
.dbwishlist-container {
    margin-top: 3rem;
    border: 1px solid #E0E0E0;
    border-radius: 4px;
    padding: 24px;
}
.dbwishlist-container .dbwishlist-block {
    padding-bottom: 1rem;
    border-bottom: 1px solid #E0E0E0;
    display: flex;
    flex-direction: row;
    align-items: center;
}
#cart .dbwishlist-container .dbwishlist-block .title {
    font-weight: 600;
    font-size: 18px;
    margin-left: 8px;
}
.dbwishlist-container .dbwishlist_empty {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
}
.dbwishlist-container .dbwishlist_empty .title {
    font-weight: 600;
    font-size: 18px;
    text-align: center;
    margin-bottom: 12px;
}
.dbwishlist-container .dbwishlist_empty .text {
    font-weight: normal;
    font-size: 14px;
    text-align: center;
}
.dbwishlist-container .wishlist_cart {
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
.dbwishlist-container .wishlist_cart > div {
    width: calc(33.33% - 20px);
    margin: 0 10px;
    position: relative;
}
.product-miniature-horizontal {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-self: flex-start;
    width: 100%;
    background-color: #FFF;
    padding: 15px;
    margin-bottom: 20px;
}
.product-miniature-horizontal .thumbnail img {
    width: 80px;
    height: auto;
}
.product-miniature-horizontal .product-center {
    margin-left: 15px;
    max-width: 80%;
}
.product-miniature-horizontal .product-actions {
    margin-left: auto;
}
.product-miniature.product-miniature-horizontal .product-price-and-shipping {
    justify-content: flex-start;
    margin-top: 10px;
}
.product-miniature.product-miniature-horizontal .product-price-and-shipping .discount-product {
    margin-left: 20px;
}
.product-miniature.product-miniature-horizontal .product-title {
    padding: 0;
    font-size: 18px;
}
.product-miniature-horizontal .product-actions .add-to-cart-wishlist {
    background-color: initial;
    border: 0;
    color: var(--color_font);
    padding: 0;
    font-size: 15px;
    margin-top: 15px;
    cursor: pointer;
}
.product-miniature-horizontal .product-actions .add-to-cart-wishlist:hover {
    color: var(--color_hover);
}
.product-miniature-horizontal .delete_wishlist_cart {
    cursor: pointer;
}
.product-miniature-horizontal .delete_wishlist_cart:hover {
    color: #C81D25;
}
.dbwishlist-container .wishlist_cart .delete_wishlist {
    right: 8px;
}

/*** FICHA PRODUCTO ***/
.dbwishlist_hearth .fav_list {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 99;
    width: 36px;
    height: 36px;
    background-color: #FFF;
    padding: 8px;
    border-radius: 50%;
    box-shadow: 0 0 10px #0000004a;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}
.dbwishlist_hearth .fav_list svg path {
    fill: var(--color_font);
}
.dbwishlist_hearth .fav_list.active svg path,
.dbwishlist_hearth .fav_list:hover svg path {
    fill: #C81D25;
}
.dbwishlist_hearth .fav_list.hidden {
    display: none;
}
