.elementor-7903 .elementor-element.elementor-element-47a665b{--display:flex;}/* Start custom CSS for html, class: .elementor-element-33691d9 */.tutor-header-profile-photo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.tutor-header-profile-content {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.tutor-header-submenu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tutor-header-submenu ul li {
    padding: 8px 12px;
}

.tutor-header-submenu ul li a {
    text-decoration: none;
    color: black;
}

.tutor-header-submenu ul li a:hover {
    color: #007BFF;
}/* End custom CSS */
/* Start custom CSS */function toggleMenu() {
    var menu = document.getElementById('dropdown-menu');
    if (menu.style.display === 'none' || menu.style.display === '') {
        menu.style.display = 'block'; // Mostra o menu
    } else {
        menu.style.display = 'none'; // Esconde o menu
    }
}/* End custom CSS */