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

/* Add your custom styles here */


.my-account {
    position: relative;
    display: inline-block;
}

.my-account .fa-user {
    font-size: 24px;
    color: #000199; /* Adiciona a cor azul ao ícone */
    cursor: pointer;
}

.my-account-dropdown {
    display: none;
    position: absolute;
    background-color: #fff;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 1;
    min-width: 160px;
}

.my-account:hover .my-account-dropdown {
    display: block;
}

.my-account-menu {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.my-account-menu li {
    padding: 8px 16px;
    transition: background-color 0.3s ease; /* Transição suave */
}

.my-account-menu li:hover {
    background-color: #ffff00; /* Fundo amarelo no hover */
}

.my-account-menu li a {
    text-decoration: none;
    color: #000199; /* Azul para os links */
    display: block; /* Certifica que o link ocupa toda a área do item do menu */
}

.my-account-menu li a:hover {
    color: #000; /* Texto em preto ao hover */
}


woocommerce a.remove {
    display: block;
    font-size: 1.5em;
    height: 1.2em !important;
    width: 1.2em !important;
    text-align: center;
    line-height: 1;
    border-radius: 100%;
    color: var(--wc-red) !important;
    text-decoration: none;
    font-weight: 700;
    border: 0;
}