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

/*** CABECERA ***/
.dbwishlist_top .link_wishlist {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/*** PAGINA FAVORITOS ***/
.customer_wishlist {
    padding: 0;
    background-color: var(--background);
}
.customer_wishlist h1 {
    margin-bottom: 32px;
}
.customer_wishlist h1 svg,
.customer_wishlist h1 i {
    margin-right: 8px;
}
.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;
}
@media (max-width: 991px) {
    .wishlist_product {
        width: 50%;
    }
}
@media (max-width: 767px) {
    .wishlist_product {
        width: 100%;
    }
    .wishlist {
        margin-left: 0;
        margin-right: 0;
        background-color: var(--background);
    }
}

/*** FICHA PRODUCTO ***/
.dbwishlist_hearth .fav_list {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 97;
    width: 36px;
    height: 36px;
    background-color: #FFF;
    padding: 8px;
    border-radius: 50%;
    box-shadow: 2px 2px 4px 0 rgb(0 0 0 / 20%);
    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;
}
.dbwishlist_product {
    margin-top: 8px;
}
.dbwishlist_product .custom-checkbox label {
    margin-bottom: 0;
}

/*** LISTADO PRODUCTOS ***/
.product-description .dbwishlist_hearth {
    position: absolute;
    top: 0;
    right: 0;
}