/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Contenitore del menu a tendina */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Bottone per il menu */
.dropbtn {
    background-color: #1683B1;
    color: white;
    padding: 10px;
    font-size: 16px;
    border: none;
    cursor: pointer;
}
button:hover {
    color: #fff;
    background-color: #076288;
    text-decoration: none;
}
/* Contenuto del dropdown (nascosto di default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 9999;
}

/* Link all'interno del dropdown */
.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
	z-index: 9999;
}

/* Cambia colore quando si passa il mouse sui link */
.dropdown-content a:hover {
    background-color: #ddd;
}

/* Mostra il dropdown al passaggio del mouse */
.dropdown:hover .dropdown-content {
    display: block;
	z-index: 9999;
}
/* whitelist*/
.shopengine-wishlist-item {
    border: 1px solid #ddd;
    padding: 10px;
    width: calc(33.33% - 20px); /* Regola la larghezza per adattarsi alla tua pagina */
    text-align: center;
    background-color: #fff; /* Aggiungi un background bianco */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); /* Effetto ombra per risaltare il riquadro */
    border-radius: 8px; /* Aggiunge un bordo arrotondato */
}

.shopengine-wishlist-item .product-title {
    font-size: 13px;
    font-weight: bold;
    margin: 10px 0;
    text-align: center; /* Centra il titolo */
}

