/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Mar 31 2026 | 06:59:18 */
/* ANIMOWANY PASEK POD MENU - CSS */

#main_menu {
    position: relative;
}

.menu-indicator {
    position: fixed;
    bottom: auto;
    left: 0 !important;
    height: 0px;
    background: #072575;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9999;
    pointer-events: none;
    transform-origin: left;
}

@keyframes slideFromLeft {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.menu-indicator.init {
    animation: slideFromLeft 0.5s ease-out;
}