

html body .site-header .menu,
html body .site-header nav.menu {
    display: flex !important;
    align-items: center !important;
    gap: 5px !important;
    flex-wrap: nowrap !important;
    white-space: nowrap !important;
}

html body .site-header .menu > a,
html body .site-header nav.menu > a,
html body .site-header .rasa-menu-more-toggle {
    min-height: 34px !important;
    padding: 0 10px !important;
    border-radius: 13px !important;
    font-size: 11.5px !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 5px !important;
    transition:
        background-color .14s ease,
        color .14s ease,
        box-shadow .14s ease,
        border-color .14s ease !important;
}

html body .site-header .menu > a.rasa-menu-section-link {
    color: #073B4C !important;
    background: rgba(255,255,255,.44) !important;
    border: 1px solid rgba(7,59,76,.06) !important;
}

html body .site-header .menu > a.rasa-menu-section-link:hover {
    color: #073B4C !important;
    background: rgba(255,255,255,.78) !important;
    box-shadow: 0 8px 18px rgba(7,49,61,.08) !important;
}

html body .site-header .rasa-menu-more {
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    flex: 0 0 auto !important;
}

html body .site-header .rasa-menu-more-toggle {
    border: 1px solid rgba(7,59,76,.08) !important;
    color: #073B4C !important;
    background: rgba(255,255,255,.54) !important;
    font-family: inherit !important;
    cursor: pointer !important;
}

html body .site-header .rasa-menu-more-toggle::after {
    content: "" !important;
    width: 6px !important;
    height: 6px !important;
    border-right: 1.8px solid currentColor !important;
    border-bottom: 1.8px solid currentColor !important;
    transform: rotate(45deg) translateY(-1px) !important;
    opacity: .75 !important;
}

html body .site-header .rasa-menu-more:hover .rasa-menu-more-toggle,
html body .site-header .rasa-menu-more.is-open .rasa-menu-more-toggle {
    color: #073B4C !important;
    background: #fff !important;
    box-shadow: 0 10px 24px rgba(7,49,61,.10) !important;
}

html body .site-header .rasa-menu-more-panel {
    position: absolute !important;
    top: calc(100% + 10px) !important;
    left: 0 !important;
    min-width: 170px !important;
    display: grid !important;
    gap: 5px !important;
    padding: 8px !important;
    border-radius: 18px !important;
    background: rgba(255,255,255,.94) !important;
    border: 1px solid rgba(7,59,76,.08) !important;
    box-shadow: 0 18px 48px rgba(7,49,61,.14) !important;
    backdrop-filter: blur(12px) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(6px) !important;
    transition: opacity .15s ease, transform .15s ease, visibility .15s ease !important;
    z-index: 9999 !important;
}

html body .site-header .rasa-menu-more:hover .rasa-menu-more-panel,
html body .site-header .rasa-menu-more.is-open .rasa-menu-more-panel {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

html body .site-header .rasa-menu-more-panel a {
    min-height: 34px !important;
    padding: 0 11px !important;
    border-radius: 12px !important;
    display: flex !important;
    align-items: center !important;
    color: #073B4C !important;
    background: transparent !important;
    text-decoration: none !important;
    font-size: 11.5px !important;
    font-weight: 900 !important;
    font-family: inherit !important;
}

html body .site-header .rasa-menu-more-panel a:hover {
    color: #073B4C !important;
    background: rgba(22,199,199,.10) !important;
}

html body .site-header a[href*="dashboard"],
html body .site-header a[href*="/user/dashboard"],
html body .site-header .header-actions a[href*="dashboard"],
html body .site-header .header-actions .btn {
    font-family: inherit !important;
}

html body .site-header a[href*="dashboard"]:hover,
html body .site-header a[href*="/user/dashboard"]:hover,
html body .site-header .header-actions a[href*="dashboard"]:hover {
    color: #073B4C !important;
    background: rgba(255,255,255,.92) !important;
    text-shadow: none !important;
}

html body .site-header .header-actions .btn:hover {
    color: #073B4C !important;
    text-shadow: none !important;
}

@media (max-width: 1180px) {
    html body .site-header .menu > a,
    html body .site-header nav.menu > a,
    html body .site-header .rasa-menu-more-toggle {
        padding: 0 8px !important;
        font-size: 11px !important;
    }

    html body .site-header .menu,
    html body .site-header nav.menu {
        gap: 4px !important;
    }
}

@media (max-width: 768px) {
    html body .site-header .rasa-menu-more {
        width: 100% !important;
        display: grid !important;
    }

    html body .site-header .rasa-menu-more-toggle {
        width: 100% !important;
    }

    html body .site-header .rasa-menu-more-panel {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none !important;
        background: rgba(255,255,255,.55) !important;
        margin-top: 6px !important;
    }
}

