.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS */.menu-home, .menu-transactions, .menu-concierge, .menu-referrals, .menu-settings {
    position: relative; /* Required for positioning the line */
}

.menu-home::before,
.menu-referrals::before,
.menu-concierge::before,
.menu-subscription::before,
.menu-settings::before {
    content: ""; /* This creates the pseudo-element */
    position: absolute;
    top: 0px; /* Adjust distance of the line below the image */
    left: 50%; /* Start at the center */
    transform: translateX(-50%); /* Center align */
    width: 40%; /* Line width */
    height: 3px; /* Line height */
    background-color: transparent; /* Default: no line */
    transition: background-color 0.3s ease;
    border-radius: 99px;
}

.active-menu::before {
    background-color: #fff; /* Replace with your desired line color */
}/* End custom CSS */