/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Oct 29 2025 | 08:46:05 */
/* ANIMOWANY PASEK POD MENU - CSS */

#main_menu {
    position: relative;
}

.menu-indicator {
    position: fixed;
    bottom: auto;
    left: 0 !important;
    height: 3px;
    background: #e91e63;
    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;
}