/*
|--------------------------------------------------------------------------
| BESTBROKER.ID - HEADER
|--------------------------------------------------------------------------
| File khusus tampilan header.
| Semua class menggunakan awalan bb- agar tidak bentrok dengan style lama.
|--------------------------------------------------------------------------
*/

.bb-header,
.bb-header * {
    box-sizing: border-box;
}

.bb-header {
    position: relative;
    z-index: 900;

    width: 100%;

    background: #ffffff;
    border-bottom: 1px solid #dce5f0;

    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
}

.bb-container {
    width: min(1180px, calc(100% - 32px));
    margin-right: auto;
    margin-left: auto;
}

/*
|--------------------------------------------------------------------------
| HEADER BAGIAN ATAS
|--------------------------------------------------------------------------
*/

.bb-header__top {
    position: relative;

    padding: 18px 0;

    background:
        radial-gradient(
            circle at top right,
            rgba(37, 99, 235, 0.09),
            transparent 34%
        ),
        linear-gradient(
            180deg,
            #f8fbff 0%,
            #f1f6fc 100%
        );
}

.bb-header__top-inner {
    display: grid;
    grid-template-columns:
        minmax(220px, 280px)
        minmax(300px, 1fr)
        auto;
    align-items: center;
    gap: 22px;
}

/*
|--------------------------------------------------------------------------
| LOGO CARD
|--------------------------------------------------------------------------
*/

.bb-logo-card {
    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 82px;
    padding: 12px 18px;

    overflow: hidden;

    background: #ffffff;

    border: 1px solid #d5dfeb;
    border-radius: 18px;

    box-shadow:
        0 8px 24px rgba(15, 23, 42, 0.07),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);

    text-decoration: none;

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.bb-logo-card:hover {
    transform: translateY(-2px);

    border-color: #9cb7dd;

    box-shadow:
        0 12px 30px rgba(15, 23, 42, 0.11),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.bb-logo-card:focus-visible {
    outline: 3px solid rgba(37, 99, 235, 0.3);
    outline-offset: 3px;
}

.bb-logo-card__image {
    display: block;

    width: 100%;
    max-width: 245px;
    height: auto;
    max-height: 58px;

    object-fit: contain;
}

/*
|--------------------------------------------------------------------------
| SEARCH
|--------------------------------------------------------------------------
*/

.bb-search {
    position: relative;

    display: flex;
    align-items: center;

    width: 100%;
    min-width: 0;
    height: 54px;

    overflow: hidden;

    background: #ffffff;

    border: 1px solid #cad7e7;
    border-radius: 16px;

    box-shadow:
        0 7px 20px rgba(15, 23, 42, 0.06),
        inset 0 1px 2px rgba(15, 23, 42, 0.02);

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.bb-search:focus-within {
    border-color: #2563eb;

    box-shadow:
        0 0 0 4px rgba(37, 99, 235, 0.12),
        0 9px 25px rgba(15, 23, 42, 0.08);
}

.bb-search input {
    flex: 1;

    width: 100%;
    height: 100%;
    min-width: 0;
    padding: 0 18px;

    color: #172033;

    background: transparent;

    border: 0;
    outline: 0;

    font-family: inherit;
    font-size: 15px;
    font-weight: 500;
}

.bb-search input::placeholder {
    color: #8290a3;
    opacity: 1;
}

.bb-search input::-webkit-search-cancel-button {
    cursor: pointer;
}

.bb-search__button {
    display: flex;
    flex: 0 0 54px;
    align-items: center;
    justify-content: center;

    width: 54px;
    height: 100%;
    padding: 0;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #2563eb 0%,
            #1748bb 100%
        );

    border: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.15);

    cursor: pointer;

    transition:
        filter 0.2s ease,
        transform 0.2s ease;
}

.bb-search__button:hover {
    filter: brightness(1.1);
}

.bb-search__button:active {
    transform: scale(0.96);
}

.bb-search__button:focus-visible {
    outline: 3px solid rgba(37, 99, 235, 0.35);
    outline-offset: -4px;
}

.bb-search__button svg {
    width: 23px;
    height: 23px;

    fill: currentColor;
}

/*
|--------------------------------------------------------------------------
| USER ACCOUNT
|--------------------------------------------------------------------------
*/

.bb-account {
    position: relative;
}

.bb-account > summary {
    list-style: none;
}

.bb-account > summary::-webkit-details-marker {
    display: none;
}

.bb-account__summary {
    display: flex;
    align-items: center;
    gap: 10px;

    min-width: 185px;
    height: 54px;
    padding: 7px 12px 7px 9px;

    color: #172033;

    background: #ffffff;

    border: 1px solid #cad7e7;
    border-radius: 16px;

    box-shadow: 0 7px 20px rgba(15, 23, 42, 0.06);

    cursor: pointer;
    user-select: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.bb-account__summary:hover {
    transform: translateY(-1px);

    border-color: #9db5d3;

    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.09);
}

.bb-account[open] .bb-account__summary {
    border-color: #2563eb;

    box-shadow:
        0 0 0 4px rgba(37, 99, 235, 0.11),
        0 10px 24px rgba(15, 23, 42, 0.09);
}

.bb-account__icon {
    display: flex;
    flex: 0 0 38px;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #2563eb 0%,
            #133f9f 100%
        );

    border-radius: 12px;
}

.bb-account__icon svg {
    width: 21px;
    height: 21px;

    fill: currentColor;
}

.bb-account__content {
    display: flex;
    flex: 1;
    flex-direction: column;

    min-width: 0;
}

.bb-account__content small {
    margin-bottom: 1px;

    color: #7a8799;

    font-size: 10px;
    line-height: 1.2;
}

.bb-account__content strong {
    max-width: 95px;

    overflow: hidden;

    color: #172033;

    font-size: 13px;
    line-height: 1.3;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.bb-account__arrow {
    display: flex;
    align-items: center;
    justify-content: center;

    color: #748196;

    transition: transform 0.2s ease;
}

.bb-account__arrow svg {
    width: 17px;
    height: 17px;

    fill: currentColor;
}

.bb-account[open] .bb-account__arrow {
    transform: rotate(180deg);
}

/*
|--------------------------------------------------------------------------
| ACCOUNT DROPDOWN
|--------------------------------------------------------------------------
*/

.bb-account__dropdown {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    z-index: 1000;

    display: flex;
    flex-direction: column;

    width: 245px;
    padding: 9px;

    visibility: hidden;
    overflow: hidden;

    background: #ffffff;

    border: 1px solid #d8e1ed;
    border-radius: 16px;

    box-shadow:
        0 20px 50px rgba(15, 23, 42, 0.18),
        0 5px 15px rgba(15, 23, 42, 0.07);

    opacity: 0;
    transform: translateY(-5px);

    transition:
        opacity 0.18s ease,
        transform 0.18s ease,
        visibility 0.18s ease;
}

.bb-account[open] .bb-account__dropdown {
    visibility: visible;

    opacity: 1;
    transform: translateY(0);
}

.bb-account__dropdown::before {
    position: absolute;
    top: -7px;
    right: 24px;

    width: 13px;
    height: 13px;

    background: #ffffff;

    border-top: 1px solid #d8e1ed;
    border-left: 1px solid #d8e1ed;

    content: "";
    transform: rotate(45deg);
}

.bb-account__welcome {
    display: flex;
    flex-direction: column;
    gap: 3px;

    margin-bottom: 6px;
    padding: 10px 11px;

    background: #f3f7fd;

    border-radius: 11px;
}

.bb-account__welcome strong {
    color: #172033;

    font-size: 14px;
}

.bb-account__welcome small {
    color: #748196;

    font-size: 11px;
    line-height: 1.45;
}

.bb-account__dropdown > a {
    position: relative;
    z-index: 1;

    display: flex;
    align-items: center;
    gap: 10px;

    padding: 11px 12px;

    color: #344054;

    border-radius: 10px;

    font-size: 13px;
    font-weight: 600;
    text-decoration: none;

    transition:
        color 0.18s ease,
        background-color 0.18s ease,
        transform 0.18s ease;
}

.bb-account__dropdown > a:hover {
    color: #1748bb;

    background: #eff5ff;

    transform: translateX(2px);
}

.bb-account__dropdown > a svg {
    flex: 0 0 19px;

    width: 19px;
    height: 19px;

    fill: currentColor;
}

.bb-account__dropdown > a.bb-account__register {
    margin-top: 4px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #2563eb 0%,
            #1748bb 100%
        );
}

.bb-account__dropdown > a.bb-account__register:hover {
    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #1d4ed8 0%,
            #10368d 100%
        );
}

.bb-account__dropdown > a.bb-account__logout {
    color: #c62828;
}

.bb-account__dropdown > a.bb-account__logout:hover {
    color: #a31414;

    background: #fff1f1;
}

.bb-account__divider {
    height: 1px;
    margin: 6px 4px;

    background: #e6ebf2;
}

/*
|--------------------------------------------------------------------------
| NAVIGATION
|--------------------------------------------------------------------------
*/

.bb-header__navigation {
    position: relative;

    background:
        linear-gradient(
            135deg,
            #101c35 0%,
            #122b59 55%,
            #16459b 100%
        );

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 5px 14px rgba(15, 23, 42, 0.14);
}

.bb-main-nav {
    display: flex;
    align-items: stretch;
    gap: 4px;

    min-height: 54px;

    overflow-x: auto;
    overflow-y: hidden;

    scrollbar-width: none;
}

.bb-main-nav::-webkit-scrollbar {
    display: none;
}

.bb-main-nav a {
    position: relative;

    display: flex;
    flex: 0 0 auto;
    align-items: center;

    padding: 0 18px;

    color: rgba(255, 255, 255, 0.84);

    font-size: 14px;
    font-weight: 650;
    letter-spacing: 0.1px;
    text-decoration: none;
    white-space: nowrap;

    transition:
        color 0.2s ease,
        background-color 0.2s ease;
}

.bb-main-nav a::after {
    position: absolute;
    right: 18px;
    bottom: 0;
    left: 18px;

    height: 3px;

    background: #62b5ff;

    border-radius: 4px 4px 0 0;

    content: "";
    opacity: 0;
    transform: scaleX(0.35);

    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
}

.bb-main-nav a:hover {
    color: #ffffff;

    background: rgba(255, 255, 255, 0.08);
}

.bb-main-nav a:hover::after {
    opacity: 0.7;
    transform: scaleX(1);
}

.bb-main-nav a.is-active {
    color: #ffffff;

    background: rgba(255, 255, 255, 0.11);
}

.bb-main-nav a.is-active::after {
    opacity: 1;
    transform: scaleX(1);
}

/*
|--------------------------------------------------------------------------
| ACCESSIBILITY
|--------------------------------------------------------------------------
*/

.bb-visually-hidden {
    position: absolute !important;

    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;

    overflow: hidden !important;

    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;

    border: 0 !important;
}

/*
|--------------------------------------------------------------------------
| TABLET
|--------------------------------------------------------------------------
*/

@media (max-width: 950px) {
    .bb-header__top-inner {
        grid-template-columns: minmax(190px, 240px) 1fr auto;
        gap: 14px;
    }

    .bb-account__summary {
        min-width: auto;
    }

    .bb-account__content {
        display: none;
    }

    .bb-account__arrow {
        display: none;
    }

    .bb-main-nav a {
        padding-right: 15px;
        padding-left: 15px;
    }
}

/*
|--------------------------------------------------------------------------
| MOBILE
|--------------------------------------------------------------------------
*/

@media (max-width: 720px) {
    .bb-container {
        width: min(100% - 22px, 1180px);
    }

    .bb-header__top {
        padding: 12px 0;
    }

    .bb-header__top-inner {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 11px;
    }

    .bb-logo-card {
        min-height: 64px;
        padding: 9px 13px;

        border-radius: 15px;
    }

    .bb-logo-card__image {
        max-width: 210px;
        max-height: 47px;
    }

    .bb-search {
        grid-column: 1 / -1;

        height: 50px;

        border-radius: 14px;
    }

    .bb-search input {
        padding-right: 14px;
        padding-left: 14px;

        font-size: 14px;
    }

    .bb-search__button {
        flex-basis: 50px;

        width: 50px;
    }

    .bb-account__summary {
        width: 50px;
        height: 50px;
        min-width: 50px;
        padding: 6px;

        border-radius: 14px;
    }

    .bb-account__icon {
        width: 36px;
        height: 36px;

        border-radius: 11px;
    }

    .bb-account__dropdown {
        position: fixed;
        top: auto;
        right: 11px;
        left: 11px;

        width: auto;
        margin-top: 12px;
    }

    .bb-account__dropdown::before {
        display: none;
    }

    .bb-main-nav {
        min-height: 49px;
    }

    .bb-main-nav a {
        min-height: 49px;
        padding: 0 13px;

        font-size: 12.5px;
    }

    .bb-main-nav a::after {
        right: 13px;
        left: 13px;
    }
}

/*
|--------------------------------------------------------------------------
| MOBILE KECIL
|--------------------------------------------------------------------------
*/

@media (max-width: 420px) {
    .bb-logo-card__image {
        max-width: 175px;
    }

    .bb-search input {
        font-size: 13px;
    }

    .bb-search input::placeholder {
        font-size: 12px;
    }
}




/*
|--------------------------------------------------------------------------
| STICKY / FLOATING HEADER
|--------------------------------------------------------------------------
*/

.bb-header {
    position: sticky;
    top: 0;
    z-index: 9999;

    width: 100%;

    transition:
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.bb-header.is-scrolled {
    box-shadow:
        0 12px 35px rgba(15, 23, 42, 0.16),
        0 2px 8px rgba(15, 23, 42, 0.08);
}

.bb-desktop-header {
    display: block;
}

.bb-mobile-header {
    display: none;
}

/*
|--------------------------------------------------------------------------
| MOBILE HEADER BARU
|--------------------------------------------------------------------------
*/

@media (max-width: 720px) {
    .bb-header {
        top: 0;

        padding-top: env(safe-area-inset-top);

        background: rgba(244, 248, 253, 0.97);

        border-bottom: 1px solid rgba(203, 214, 228, 0.95);

        box-shadow:
            0 8px 25px rgba(15, 23, 42, 0.13),
            0 2px 6px rgba(15, 23, 42, 0.05);

        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
    }

    .bb-desktop-header {
        display: none !important;
    }

    .bb-mobile-header {
        position: relative;

        display: block;

        padding: 10px 11px 12px;

        background:
            radial-gradient(
                circle at top right,
                rgba(37, 99, 235, 0.1),
                transparent 40%
            ),
            linear-gradient(
                180deg,
                rgba(248, 251, 255, 0.98) 0%,
                rgba(239, 245, 252, 0.98) 100%
            );
    }

    /*
    |--------------------------------------------------------------------------
    | BAR: USER - LOGO - MENU
    |--------------------------------------------------------------------------
    */

    .bb-mobile-header__bar {
        display: grid;
        grid-template-columns: 48px minmax(0, 1fr) 48px;
        align-items: center;
        gap: 10px;

        width: 100%;
    }

    /*
    |--------------------------------------------------------------------------
    | LOGO MOBILE
    |--------------------------------------------------------------------------
    */

    .bb-mobile-logo {
        display: flex;
        align-items: center;
        justify-content: center;

        width: 100%;
        min-width: 0;
        height: 58px;
        padding: 8px 13px;

        overflow: hidden;

        background: #ffffff;

        border: 1px solid #d4dfec;
        border-radius: 16px;

        box-shadow:
            0 8px 22px rgba(15, 23, 42, 0.09),
            inset 0 1px 0 rgba(255, 255, 255, 0.95);

        text-decoration: none;
    }

    .bb-mobile-logo img {
        display: block;

        width: 100%;
        max-width: 210px;
        height: auto;
        max-height: 42px;

        object-fit: contain;
    }

    /*
    |--------------------------------------------------------------------------
    | FLOATING TOGGLE
    |--------------------------------------------------------------------------
    */

    .bb-mobile-toggle {
        position: relative;

        display: flex;
        align-items: center;
        justify-content: center;

        width: 48px;
        height: 48px;
        padding: 0;

        color: #ffffff;

        background:
            linear-gradient(
                145deg,
                #2563eb 0%,
                #153f9e 100%
            );

        border: 1px solid rgba(255, 255, 255, 0.35);
        border-radius: 16px;

        box-shadow:
            0 10px 22px rgba(30, 75, 165, 0.28),
            inset 0 1px 0 rgba(255, 255, 255, 0.22);

        cursor: pointer;

        transition:
            transform 0.2s ease,
            box-shadow 0.2s ease,
            background 0.2s ease;
    }

    .bb-mobile-toggle:hover,
    .bb-mobile-toggle.is-active {
        background:
            linear-gradient(
                145deg,
                #1748bb 0%,
                #0e2d79 100%
            );

        box-shadow:
            0 12px 26px rgba(30, 75, 165, 0.36),
            0 0 0 4px rgba(37, 99, 235, 0.12);

        transform: translateY(-2px);
    }

    .bb-mobile-toggle:active {
        transform: scale(0.94);
    }

    .bb-mobile-toggle:focus-visible {
        outline: 3px solid rgba(37, 99, 235, 0.3);
        outline-offset: 3px;
    }

    .bb-mobile-toggle > svg {
        width: 23px;
        height: 23px;

        fill: currentColor;
    }

    /*
    |--------------------------------------------------------------------------
    | HAMBURGER
    |--------------------------------------------------------------------------
    */

    .bb-hamburger {
        display: flex;
        flex-direction: column;
        gap: 5px;

        width: 23px;
    }

    .bb-hamburger span {
        display: block;

        width: 100%;
        height: 2px;

        background: currentColor;

        border-radius: 10px;

        transition:
            transform 0.2s ease,
            opacity 0.2s ease;
    }

    .bb-mobile-toggle.is-active .bb-hamburger span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .bb-mobile-toggle.is-active .bb-hamburger span:nth-child(2) {
        opacity: 0;
    }

    .bb-mobile-toggle.is-active .bb-hamburger span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    /*
    |--------------------------------------------------------------------------
    | SEARCH MOBILE
    |--------------------------------------------------------------------------
    */

    .bb-mobile-search {
        width: 100%;
        height: 48px;
        margin-top: 10px;

        border-radius: 14px;

        box-shadow:
            0 7px 20px rgba(15, 23, 42, 0.08),
            inset 0 1px 2px rgba(15, 23, 42, 0.02);
    }

    .bb-mobile-search input {
        padding: 0 14px;

        font-size: 14px;
    }

    .bb-mobile-search input::placeholder {
        font-size: 13px;
    }

    .bb-mobile-search .bb-search__button {
        flex: 0 0 49px;

        width: 49px;
    }

    /*
    |--------------------------------------------------------------------------
    | FLOATING PANELS
    |--------------------------------------------------------------------------
    */

    .bb-mobile-panel {
        position: absolute;
        top: calc(100% + 8px);
        right: 11px;
        left: 11px;
        z-index: 10002;

        max-height: calc(100vh - 170px);
        padding: 10px;

        overflow-x: hidden;
        overflow-y: auto;

        background: rgba(255, 255, 255, 0.98);

        border: 1px solid #d5dfeb;
        border-radius: 18px;

        box-shadow:
            0 25px 60px rgba(15, 23, 42, 0.23),
            0 8px 20px rgba(15, 23, 42, 0.09);

        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);

        animation: bbMobilePanelOpen 0.2s ease;
    }

    .bb-mobile-panel[hidden] {
        display: none !important;
    }

    @keyframes bbMobilePanelOpen {
        from {
            opacity: 0;
            transform: translateY(-8px) scale(0.98);
        }

        to {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }

    /*
    |--------------------------------------------------------------------------
    | MOBILE USER PANEL
    |--------------------------------------------------------------------------
    */

    .bb-mobile-panel__heading {
        display: flex;
        align-items: center;
        gap: 11px;

        margin-bottom: 8px;
        padding: 12px;

        background:
            linear-gradient(
                135deg,
                #eef5ff 0%,
                #f7faff 100%
            );

        border: 1px solid #dce8f8;
        border-radius: 13px;
    }

    .bb-mobile-panel__heading > span:last-child {
        display: flex;
        flex-direction: column;
        gap: 2px;

        min-width: 0;
    }

    .bb-mobile-panel__heading strong {
        overflow: hidden;

        color: #172033;

        font-size: 14px;
        line-height: 1.35;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .bb-mobile-panel__heading small {
        color: #758297;

        font-size: 11px;
        line-height: 1.4;
    }

    .bb-mobile-panel__avatar {
        display: flex;
        flex: 0 0 40px;
        align-items: center;
        justify-content: center;

        width: 40px;
        height: 40px;

        color: #ffffff;

        background:
            linear-gradient(
                145deg,
                #2563eb 0%,
                #153f9e 100%
            );

        border-radius: 12px;
    }

    .bb-mobile-panel__avatar svg {
        width: 22px;
        height: 22px;

        fill: currentColor;
    }

    .bb-mobile-user-panel > a {
        display: flex;
        align-items: center;

        min-height: 45px;
        margin-top: 4px;
        padding: 0 13px;

        color: #344054;

        background: #ffffff;

        border: 1px solid transparent;
        border-radius: 11px;

        font-size: 13px;
        font-weight: 650;
        text-decoration: none;

        transition:
            color 0.18s ease,
            background-color 0.18s ease,
            border-color 0.18s ease,
            transform 0.18s ease;
    }

    .bb-mobile-user-panel > a:hover {
        color: #1748bb;

        background: #f1f6ff;

        border-color: #d6e4fa;

        transform: translateX(3px);
    }

    .bb-mobile-user-panel > a.bb-mobile-panel__primary {
        justify-content: center;

        color: #ffffff;

        background:
            linear-gradient(
                135deg,
                #2563eb 0%,
                #1748bb 100%
            );

        border-color: transparent;
    }

    .bb-mobile-user-panel > a.bb-mobile-panel__logout {
        color: #c62828;
    }

    .bb-mobile-user-panel > a.bb-mobile-panel__logout:hover {
        color: #a61616;

        background: #fff1f1;

        border-color: #ffdada;
    }

    /*
    |--------------------------------------------------------------------------
    | MOBILE MENU PANEL
    |--------------------------------------------------------------------------
    */

    .bb-mobile-menu-panel {
        padding: 9px;
    }

    .bb-mobile-menu-panel > a {
        display: flex;
        align-items: center;
        justify-content: space-between;

        min-height: 47px;
        margin-bottom: 5px;
        padding: 0 14px;

        color: #344054;

        background: #ffffff;

        border: 1px solid #e2e8f0;
        border-radius: 11px;

        font-size: 13px;
        font-weight: 650;
        text-decoration: none;

        transition:
            color 0.18s ease,
            background-color 0.18s ease,
            border-color 0.18s ease,
            transform 0.18s ease;
    }

    .bb-mobile-menu-panel > a:last-child {
        margin-bottom: 0;
    }

    .bb-mobile-menu-panel > a strong {
        color: #9aa7b9;

        font-size: 22px;
        font-weight: 400;
    }

    .bb-mobile-menu-panel > a:hover {
        color: #1748bb;

        background: #f1f6ff;

        border-color: #cbdcf5;

        transform: translateX(3px);
    }

    .bb-mobile-menu-panel > a.is-active {
        color: #ffffff;

        background:
            linear-gradient(
                135deg,
                #2563eb 0%,
                #1748bb 100%
            );

        border-color: transparent;

        box-shadow: 0 7px 18px rgba(37, 99, 235, 0.22);
    }

    .bb-mobile-menu-panel > a.is-active strong {
        color: #ffffff;
    }
}

/*
|--------------------------------------------------------------------------
| HP SANGAT KECIL
|--------------------------------------------------------------------------
*/

@media (max-width: 390px) {
    .bb-mobile-header {
        padding-right: 8px;
        padding-left: 8px;
    }

    .bb-mobile-header__bar {
        grid-template-columns: 44px minmax(0, 1fr) 44px;
        gap: 7px;
    }

    .bb-mobile-toggle {
        width: 44px;
        height: 44px;

        border-radius: 14px;
    }

    .bb-mobile-logo {
        height: 54px;
        padding-right: 9px;
        padding-left: 9px;

        border-radius: 14px;
    }

    .bb-mobile-logo img {
        max-width: 170px;
        max-height: 38px;
    }

    .bb-mobile-panel {
        right: 8px;
        left: 8px;
    }
}




