/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Apr 28 2026 | 08:59:59 */
#stickymenu {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100% !important;
    z-index: 99999;
    
    /* Initial State: Hidden and slid up */
    opacity: 0;
    transform: translateY(-100%); 
    transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
    
    /* Ensure no compression */
    box-sizing: border-box;
}

/* Desktop Only: Active State */
@media only screen and (min-width: 1025px) {
    #stickymenu.is-visible {
        opacity: 1;
        transform: translateY(0); /* Slides down into view */
    }
}

/* Tablet/Mobile: Ensure it never shows */
@media (max-width: 1024px) {
    #stickymenu {
        display: none !important;
    }
}