/* --- SECTION MENU --- */
.menu-section {
    position: sticky;
    z-index: 9;
    top: 0;
    background: #fff;
    padding: 10px 0;
    box-shadow: 0 20px 40px 0 rgba(0,0,0,0.1);
    transition: top .3s ease-out;
}
.menu-expanded .menu-section {
    top: var(--hy-header-height); /* header height set in mmstickymenu */
}
.menu-section .dropdown__content {
    top: 44px;
}
.section-menu .dropdown__toggle--icon:after {
    top: 0;
}
.section-menu .dropdown--active .dropdown__toggle:after {
    top: 2px;
}
.section-menu__item {
    display: inline-block;
    font-weight: bold;
    text-align: center;
    padding: 10px 0;
    font-size: 14px;
}
.section-menu__actions {
    gap: 20px;
}
.section-menu__actions .btn {
    white-space: nowrap;
}

/* ==========================================================================
   Media Queries
   ========================================================================== */

/* --- DESKTOP (LG) --- */
@media (min-width: 992px) {
    .section-menu {
        min-height: 68px;
    }
    .section-menu__item {
        padding: 0 40px 0 0;
    }
    .section-menu__sections,
    .section-menu__sections > .d-lg-flex {
        width: 100%;
    }
}

/* --- DESKTOP (XXL) --- */
@media (min-width: 1440px) {
    .section-menu__item {
        padding: 0 60px 0 0;
    }
}
