@keyframes slideInRight {
    0% { transform: translateX(100%); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

@keyframes slideOutRight {
    0% { transform: translateX(0); opacity: 1; }
    100% { transform: translateX(100%); opacity: 0; }
}
#elementor-popup-modal-3397 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999; /* ensure it's on top */
    background: rgba(0, 0, 0, 0.5); /* optional dark background */
    display: none; /* hidden by default */
    justify-content: center;
    align-items: center;
}

#elementor-popup-modal-3397 > .popup-content {
    background: #fff;
    border-radius: 8px;
    max-height: 90vh;
    overflow-y: auto;
}

.menu-item-container:hover > .menu-list-items {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.menu-list-items{
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    padding: 16px !important;
    position: absolute;
    background-color: white;
    box-shadow: 0 0 10px 5px rgba(0,0,0,0.1);
    border-radius: 10px;
}

.menu-list-items li:not(:last-child)
{
    padding-bottom: 8px;
}