.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS *//* Styling the trigger text */
.custom-tooltip {
    border-bottom: 1px dashed #666; /* Gives a subtle hint it's hoverable */
    cursor: help;
    position: relative;
    display: inline-block;
}

/* Creating the tooltip box */
.custom-tooltip::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 125%; /* Position above the text */
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: #fff;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 13px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s;
    z-index: 99;
}

/* Showing it on hover */
.custom-tooltip:hover::after {
    opacity: 1;
    visibility: visible;
}/* End custom CSS */