.rd-navbar .rd-navbar-nav > .rd-navbar--has-dropdown.opened > .rd-navbar-dropdown {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
    max-height: 1000px !important; /* if height-based hiding is happening */
    pointer-events: auto !important;
    }

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 30, 30, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    }
    
.popup-box {
    background: white;
    padding: 30px;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    text-align: center;
    position: relative;
    }
    
.popup-close {
    position: absolute;
    top: 12px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #888;
    }
    

.wide-dropdown {
        min-width: 250px;
        width: auto;
    }