/*
Theme Name: Right Time Electric Hello Child
Theme URI: https://profoundweb.com/right-time-electric
Author: Alfred
Author URI: https://alfredkumar.com
Description: Child theme for Hello Elementor tailored for Right Time Electric.
Template: hello-elementor
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: right-time-electric
*/

/* Add a pointer/arrow to dropdown menus */
.elementor-nav-menu .elementor-item.has-submenu > .elementor-nav-menu--dropdown {
    position: relative;
    margin-top: 15px; /* space for the arrow */
}

.elementor-nav-menu .elementor-item.has-submenu > .elementor-nav-menu--dropdown::before {
    content: "";
    position: absolute;
    top: -10px; /* position above dropdown */
    left: 20px; /* adjust horizontally */
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #fff; /* dropdown background color */
    z-index: 10;
}