/* =========================================================
   RUMAHOST MODERN HEADER
   SAFE VERSION FOR WHMCS
========================================================= */

:root{

    --rh-bg:#060b16;
    --rh-bg2:#0d1526;
    --rh-card:#101b31;

    --rh-line:rgba(255,255,255,.07);

    --rh-text:#ffffff;
    --rh-muted:#94a3b8;

    --rh-blue:#3b82f6;
    --rh-cyan:#06b6d4;

    --rh-radius:18px;
    --rh-radius-sm:12px;

    --rh-shadow:
    0 10px 40px rgba(0,0,0,.35);

    --rh-transition:.25s cubic-bezier(.4,0,.2,1);

    --rh-font-head:'Syne',sans-serif;
    --rh-font-body:'DM Sans',sans-serif;
}

/* =========================================================
   BODY
========================================================= */

body.modern-body{

    background:
    radial-gradient(circle at top,
    rgba(59,130,246,.12),
    transparent 35%),
    #08101d;

    color:#fff;
    font-family:var(--rh-font-body);
}

/* =========================================================
   SAFE CONTAINER
   TIDAK MERUSAK CONTAINER BOOTSTRAP WHMCS
========================================================= */

.rh-container{
    width:100%;
    max-width:1280px;
    margin:auto;
    padding-inline:24px;
}

/* =========================================================
   TOPBAR
========================================================= */

.rh-topbar{

    border-bottom:1px solid var(--rh-line);

    background:
    rgba(255,255,255,.02);

    position:relative;
    z-index:998;
}

.rh-topbar-inner{

    height:42px;

    display:flex;
    align-items:center;
    justify-content:space-between;
}

.rh-topbar-left{

    display:flex;
    align-items:center;
    gap:10px;

    font-size:13px;

    color:var(--rh-muted);
}

.rh-live-dot{

    width:8px;
    height:8px;

    border-radius:999px;

    background:#10b981;

    box-shadow:0 0 12px #10b981;
}

.rh-topbar-right{

    display:flex;
    align-items:center;
    gap:18px;
}

.rh-topbar-right a{

    text-decoration:none;

    color:var(--rh-muted);

    font-size:13px;

    display:flex;
    align-items:center;
    gap:7px;

    transition:var(--rh-transition);
}

.rh-topbar-right a:hover{

    color:#fff;
}

/* =========================================================
   HEADER
========================================================= */

.rh-header{

    position:sticky;

    top:0;

    z-index:999;

    backdrop-filter:blur(20px);

    background:
    rgba(6,11,22,.75);

    border-bottom:1px solid var(--rh-line);

    transition:var(--rh-transition);
}

.rh-header.scrolled{

    background:
    rgba(6,11,22,.96);

    box-shadow:
    0 10px 30px rgba(0,0,0,.25);
}

.rh-header-inner{

    height:82px;

    display:flex;
    align-items:center;
    justify-content:space-between;

    gap:30px;
}

/* =========================================================
   LOGO
========================================================= */

.rh-logo{

    display:flex;
    align-items:center;
    gap:14px;

    text-decoration:none;

    flex-shrink:1;
    min-width:0;
}

.rh-logo img{

    height:28px;
    width:auto;
}

.rh-logo-icon{

    width:42px;
    height:42px;

    border-radius:14px;

    background:
    linear-gradient(
    135deg,
    var(--rh-blue),
    var(--rh-cyan)
    );

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;

    font-size:17px;
}

.rh-logo-text{

    font-size:24px;

    font-family:var(--rh-font-head);

    font-weight:800;

    color:#fff;

    letter-spacing:-.03em;
    
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}

/* =========================================================
   NAVIGATION
========================================================= */

.rh-nav{

    flex:1 1 auto;
    min-width:0;
    
    display:flex;
    justify-content:center;
}

.rh-nav-list{

    display:flex;
    align-items:center;
    justify-content:center;

    gap:8px;
    
    flex-wrap:nowrap;

    list-style:none;

    margin:0;
    padding:0;
}

.rh-nav-list li{

    list-style:none;
}

.rh-nav-list li a{

    display:flex;
    align-items:center;

    padding:11px 16px;

    border-radius:12px;

    text-decoration:none;

    color:var(--rh-muted);

    font-size:14px;
    font-weight:500;

    transition:var(--rh-transition);
}

.rh-nav-list li a:hover{

    color:#fff;

    background:
    rgba(255,255,255,.05);
}

/* =========================================================
   ACTION AREA
========================================================= */

.rh-actions{

    display:flex;
    align-items:center;
    gap:12px;
    s
    flex-shrink:0;
}

/* =========================================================
   SEARCH
========================================================= */

.rh-search{

    width:120px;
    min-width:120px;
    height:44px;

    border-radius:14px;

    border:1px solid var(--rh-line);

    background:
    rgba(255,255,255,.03);

    display:flex;
    align-items:center;

    gap:10px;

    padding:0 16px;
}

.rh-search i{

    color:var(--rh-muted);
}

.rh-search input{

    flex:1;

    border:none;
    outline:none;

    background:none;

    color:#fff;

    font-size:14px;

    font-family:var(--rh-font-body);
}

.rh-search input::placeholder{

    color:var(--rh-muted);
}

/* =========================================================
   CART
========================================================= */

.rh-cart{

    width:44px;
    height:44px;

    border-radius:14px;

    border:1px solid var(--rh-line);

    display:flex;
    align-items:center;
    justify-content:center;

    position:relative;

    color:#fff;

    text-decoration:none;

    transition:var(--rh-transition);
}

.rh-cart:hover{

    background:
    rgba(255,255,255,.05);
}

.rh-cart span{

    position:absolute;

    top:-5px;
    right:-5px;

    min-width:20px;
    height:20px;

    border-radius:999px;

    background:var(--rh-blue);

    color:#fff;

    font-size:11px;
    font-weight:700;

    display:flex;
    align-items:center;
    justify-content:center;
}

/* =========================================================
   BUTTON
========================================================= */

.rh-btn-login,
.rh-btn-client{

    height:44px;

    padding:0 20px;

    border-radius:14px;

    background:
    linear-gradient(
    135deg,
    var(--rh-blue),
    var(--rh-cyan)
    );

    display:flex;
    align-items:center;
    justify-content:center;

    text-decoration:none;

    color:#fff;

    font-weight:700;

    font-size:14px;

    transition:var(--rh-transition);

    box-shadow:
    0 10px 30px rgba(59,130,246,.25);
}

.rh-btn-login:hover,
.rh-btn-client:hover{

    transform:translateY(-2px);

    color:#fff;
}

/* =========================================================
   MOBILE BUTTON
========================================================= */

.rh-mobile-toggle{

    display:none;

    width:44px;
    height:44px;

    border:none;

    border-radius:14px;

    background:
    rgba(255,255,255,.05);

    color:#fff;

    font-size:18px;

    cursor:pointer;
}

/* =========================================================
   MOBILE MENU
========================================================= */

.rh-mobile-menu{

    display:none;
}

.rh-mobile-menu.active{

    display:block;

    background:var(--rh-bg2);

    border-bottom:1px solid var(--rh-line);
}

.rh-mobile-menu ul{

    list-style:none;

    padding:20px;

    margin:0;
}

.rh-mobile-menu li{

    list-style:none;
}

.rh-mobile-menu a{

    display:block;

    padding:14px 0;

    color:#fff;

    text-decoration:none;

    border-bottom:1px solid var(--rh-line);
}

/* =========================================================
   BREADCRUMB
========================================================= */

.rh-breadcrumb{

    border-bottom:1px solid var(--rh-line);

    padding:14px 0;

    color:var(--rh-muted);

    font-size:13px;

    background:
    rgba(255,255,255,.02);
}

/* =========================================================
   MAIN BODY FIX
========================================================= */

#main-body{

    position:relative;

    z-index:1;

    padding-top:40px;
    padding-bottom:60px;

    background:#f4f7fb;
}

/* JANGAN IKUT STYLE HEADER */

#main-body .container{

    max-width:1140px;
}

/* CONTENT */

.primary-content{

    color:#111827 !important;
}

/* Semua text body */

.primary-content,
.primary-content p,
.primary-content span,
.primary-content div,
.primary-content li,
.primary-content a,
.primary-content h1,
.primary-content h2,
.primary-content h3,
.primary-content h4,
.primary-content h5,
.primary-content h6{

    color:#111827;
}

/* SIDEBAR */

.sidebar{

    background:transparent;
}

.sidebar .card,
.sidebar .panel,
.sidebar .list-group{

    border-radius:16px;

    border:1px solid #e5e7eb;

    overflow:hidden;

    box-shadow:
    0 10px 30px rgba(0,0,0,.04);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:1200px){

    .rh-nav{
        display:none !important;
    }

    .rh-search{
        display:none !important;
    }

    .rh-mobile-toggle{
        display:flex !important;
        align-items:center;
        justify-content:center;
    }
}

@media(max-width:768px){

    .rh-topbar-right{
        display:none;
    }

    .rh-logo-text{
        font-size:20px;
    }

    .rh-header-inner{
        height:72px;
    }

    #main-body{
        padding-top:24px;
    }

    .rh-container{
        padding-inline:18px;
    }
}


/* =========================================
   FIX YOUR INFO PANEL TEXT
========================================= */

.sidebar .card,
.sidebar .panel{
    color:#111827 !important;
}

.sidebar .card *,
.sidebar .panel *,
.sidebar .list-group-item,
.sidebar .panel-body,
.sidebar .card-body{
    color:#111827 !important;
}

/* LINK DI SIDEBAR */

.sidebar a{
    color:#2563eb !important;
}

.rh-btn-logout{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:12px 20px;
    border-radius:12px;
    background:#ef4444;
    color:#fff;
    font-weight:600;
    text-decoration:none;
    transition:.3s;
}

.rh-btn-logout:hover{
    background:#dc2626;
    color:#fff;
    transform:translateY(-2px);
}

/* WRAPPER NAV ITEM */
.rh-dropdown{
    position:relative;
}

/* LINK UTAMA */
.rh-nav-link{
    display:flex;
    align-items:center;
    gap:8px;
    padding:12px 16px;
    border-radius:12px;
    color:#111;
    font-weight:600;
    text-decoration:none;
    transition:.25s;
    
    white-space: nowrap;
}

/* HOVER LINK */
.rh-nav-link:hover{
    background:#f3f4f6;
    color:#2563eb;
}

/* ICON ARROW DROPDOWN */
.rh-arrow{
    font-size:12px;
    margin-left:6px;
    transition:.3s;
}

/* ROTATE ARROW SAAT HOVER */
.rh-dropdown:hover .rh-arrow{
    transform:rotate(180deg);
}

/* ===== DROPDOWN BOX ===== */
.rh-dropdown-menu{
    position:absolute;
    top:120%;
    left:0;
    min-width:240px;

    background:#ffffff;
    border-radius:16px;
    padding:10px;

    box-shadow:0 25px 60px rgba(0,0,0,.12);

    opacity:0;
    visibility:hidden;
    transform:translateY(15px) scale(.98);

    transition:.25s ease;

    z-index:9999;
}

/* SHOW DROPDOWN */
.rh-dropdown:hover .rh-dropdown-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0) scale(1);
}

/* ITEM DROPDOWN */
.rh-dropdown-item{
    display:flex;
    align-items:center;
    gap:10px;

    padding:10px 12px;
    border-radius:12px;

    color:#111;
    font-size:14px;
    font-weight:500;

    text-decoration:none;
    transition:.2s;
}

/* HOVER ITEM */
.rh-dropdown-item:hover{
    background:#2563eb;
    color:#fff;
    transform:translateX(4px);
}

/* DIVIDER */
.rh-divider{
    height:1px;
    background:#eee;
    margin:8px 0;
}

/* =========================================
   MOBILE EXTRA SMALL (320px)
========================================= */

@media (max-width: 320px){

    /* BODY */
    html,
    body{
        overflow-x:hidden;
    }

    /* CONTAINER */
    .container{
        padding-left:12px !important;
        padding-right:12px !important;
    }

    /* TOPBAR */
    .rh-topbar{
        padding:6px 0;
    }

    .rh-topbar-inner{
        display:flex;
        flex-direction:column;

        gap:6px;

        text-align:center;
    }

    .rh-topbar-left,
    .rh-topbar-right{
        font-size:11px;
    }

    .rh-topbar-right{
        display:flex;
        flex-wrap:wrap;
        justify-content:center;
        gap:10px;
    }

    /* HEADER */
    .rh-header{
        padding:8px 0;
    }

    .rh-header-inner{
        display:flex;
        align-items:center;
        justify-content:space-between;

        gap:6px;
    }

    /* LOGO */
    .rh-logo{
        display:flex;
        align-items:center;

        gap:8px;

        flex:1;
        min-width:0;
    }

    .rh-logo img{
        max-height:30px;
        width:auto;
        max-width:220px;
    }

    .rh-logo-icon{
        width:34px;
        height:34px;

        font-size:14px;
    }

    .rh-logo-text{
        font-size:16px;
        white-space:nowrap;

        overflow:hidden;
        text-overflow:ellipsis;
    }

    /* HIDE DESKTOP */
    .rh-nav,
    .rh-search,
    .rh-btn-login,
    .rh-btn-client{
        display:none !important;
    }

    /* ACTIONS */
    .rh-actions{
        display:flex;
        align-items:center;

        gap:6px;

        flex-shrink:0;
    }

    /* CART */
    .rh-cart{
        width:36px;
        height:36px;

        border-radius:10px;

        display:flex;
        align-items:center;
        justify-content:center;

        font-size:14px;
    }

    .rh-cart span{
        width:16px;
        height:16px;

        font-size:10px;
    }

    /* TOGGLE */
    .rh-mobile-toggle{
        width:36px;
        height:36px;

        border:none;
        outline:none;

        border-radius:10px;

        display:flex !important;
        align-items:center;
        justify-content:center;

        background:linear-gradient(135deg,#3b82f6,#06b6d4);

        color:#fff;

        font-size:15px;

        flex-shrink:0;
    }

    /* MOBILE MENU */
    .rh-mobile-menu{
        position:fixed;

        top:0;
        right:-100%;

        width:88%;

        height:100vh;

        background:#0f172a;

        z-index:99999;

        padding:75px 16px 20px;

        overflow-y:auto;

        transition:.3s ease;
    }

    .rh-mobile-menu.active{
        right:0;
    }

    /* MENU */
    .rh-mobile-menu ul{
        list-style:none;
        margin:0;
        padding:0;
    }

    .rh-mobile-menu li{
        margin-bottom:8px;
    }

    .rh-mobile-menu a{
        display:block;

        padding:12px 14px;

        border-radius:12px;

        font-size:13px;

        color:#fff !important;
        text-decoration:none;

        background:rgba(255,255,255,.04);
    }

    /* MAIN BODY */
    #main-body{
        overflow-x:hidden;
    }

}

/* =========================================
   PREMIUM MOBILE SIDEBAR
========================================= */

.rh-mobile-menu{
    position:fixed;

    top:0;
    right:-100%;

    width:88%;
    max-width:340px;

    height:100vh;

    background:
        linear-gradient(
            180deg,
            #111827 0%,
            #0f172a 100%
        );

    backdrop-filter:blur(20px);

    z-index:99999;

    overflow-y:auto;

    transition:.35s ease;

    box-shadow:
        -10px 0 40px rgba(0,0,0,.45);

    border-left:
        1px solid rgba(255,255,255,.06);

    padding:0;
}

/* ACTIVE */
.rh-mobile-menu.active{
    right:0;
}

/* =========================================
   HEADER
========================================= */

.rh-mobile-header{
    padding:20px;

    border-bottom:
        1px solid rgba(255,255,255,.06);

    background:
        rgba(255,255,255,.02);

    position:sticky;
    top:0;

    backdrop-filter:blur(10px);

    z-index:5;
}

.rh-mobile-brand{
    display:flex;
    align-items:center;
    gap:12px;
}

.rh-mobile-brand img{
    max-height:38px;
}

.rh-mobile-brand-text{
    font-size:20px;
    font-weight:800;
    color:#fff;
}

/* =========================================
   BODY
========================================= */

.rh-mobile-body{
    padding:18px;
}

/* MENU LIST */
.rh-mobile-menu ul{
    list-style:none;
    margin:0;
    padding:0;
}

/* ITEM */
.rh-mobile-menu li{
    margin-bottom:10px;
}

/* LINK */
.rh-mobile-menu a{
    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:14px 16px;

    border-radius:16px;

    color:#fff !important;
    text-decoration:none;

    font-size:14px;
    font-weight:500;

    background:
        rgba(255,255,255,.03);

    border:
        1px solid rgba(255,255,255,.04);

    transition:.25s ease;
}

/* HOVER */
.rh-mobile-menu a:hover{
    background:
        linear-gradient(
            135deg,
            #3b82f6,
            #06b6d4
        );

    transform:translateX(4px);

    border-color:transparent;
}

/* ACTIVE */
.rh-mobile-menu .active > a{
    background:
        linear-gradient(
            135deg,
            #3b82f6,
            #06b6d4
        );
}

/* =========================================
   CLOSE BUTTON
========================================= */

.rh-mobile-close{
    position:absolute;

    top:18px;
    right:18px;

    width:38px;
    height:38px;

    border:none;

    border-radius:12px;

    background:
        rgba(255,255,255,.05);

    color:#fff;

    font-size:16px;

    cursor:pointer;
}

/* =========================================
   OVERLAY
========================================= */

.rh-mobile-overlay{
    position:fixed;

    inset:0;

    background:
        rgba(0,0,0,.55);

    backdrop-filter:blur(4px);

    opacity:0;
    visibility:hidden;

    transition:.3s ease;

    z-index:99990;
}

.rh-mobile-overlay.active{
    opacity:1;
    visibility:visible;
}

/* =========================================================
   MOBILE SIDEBAR FINAL
========================================================= */

@media (max-width: 991px){

    /* SIDEBAR PANEL */
    .rh-mobile-menu{
        position:fixed;

        top:0;
        right:-100%;

        width:88%;
        max-width:340px;

        height:100vh;

        background:
            linear-gradient(
                180deg,
                #0f172a 0%,
                #020617 100%
            );

        z-index:999999;

        overflow-y:auto;

        transition:.35s ease;

        box-shadow:
            -10px 0 40px rgba(0,0,0,.45);

        border-left:
            1px solid rgba(255,255,255,.06);
    }

    /* OPEN */
    .rh-mobile-menu.active{
        right:0;
    }

    /* OVERLAY */
    .rh-mobile-overlay{
        position:fixed;
        inset:0;

        background:
            rgba(0,0,0,.65);

        backdrop-filter:blur(4px);

        opacity:0;
        visibility:hidden;

        transition:.3s ease;

        z-index:999990;
    }

    .rh-mobile-overlay.active{
        opacity:1;
        visibility:visible;
    }

    /* HEADER */
    .rh-mobile-header{
        position:sticky;
        top:0;

        z-index:5;

        padding:20px;

        background:
            rgba(255,255,255,.03);

        border-bottom:
            1px solid rgba(255,255,255,.06);

        backdrop-filter:blur(10px);
    }

    /* BRAND */
    .rh-mobile-brand{
        display:flex;
        align-items:center;
        gap:12px;
    }

    .rh-mobile-brand img{
        max-height:34px;
    }

    .rh-mobile-brand-text{
        color:#fff;

        font-size:20px;
        font-weight:800;
    }

    /* CLOSE BUTTON */
    .rh-mobile-close{
        position:absolute;

        top:16px;
        right:16px;

        width:40px;
        height:40px;

        border:none;
        outline:none;

        border-radius:14px;

        background:
            rgba(255,255,255,.06);

        color:#fff;

        font-size:15px;

        cursor:pointer;

        transition:.25s ease;
    }

    .rh-mobile-close:hover{
        background:
            rgba(255,255,255,.12);
    }

    /* BODY */
    .rh-mobile-body{
        padding:18px;
    }

    /* MENU */
    .rh-mobile-menu ul{
        list-style:none;
        margin:0;
        padding:0;
    }

    .rh-mobile-menu li{
        list-style:none;
    }

    /* NORMAL LINK */
    .rh-mobile-menu .rh-nav-link{
        width:100%;

        display:flex;
        align-items:center;
        justify-content:space-between;

        padding:15px 16px;

        border-radius:16px;

        margin-bottom:10px;

        background:
            rgba(255,255,255,.03);

        border:
            1px solid rgba(255,255,255,.05);

        color:#ffffff !important;

        text-decoration:none;

        font-size:14px;
        font-weight:600;

        transition:.25s ease;
    }

    /* HOVER */
    .rh-mobile-menu .rh-nav-link:hover{
        background:
            linear-gradient(
                135deg,
                #3b82f6,
                #06b6d4
            );

        color:#fff !important;

        transform:translateX(4px);

        border-color:transparent;
    }

    /* ACTIVE */
    .rh-mobile-menu .rh-dropdown.open > .rh-nav-link{
        background:
            linear-gradient(
                135deg,
                #3b82f6,
                #06b6d4
            );

        color:#fff !important;
    }

    /* ARROW */
    .rh-mobile-menu .rh-arrow{
        transition:.3s ease;
    }

    .rh-mobile-menu .rh-dropdown.open .rh-arrow{
        transform:rotate(180deg);
    }

    /* =========================================
       DROPDOWN
    ========================================= */

    .rh-mobile-menu .rh-dropdown-menu{

        display:none;

        position:relative !important;

        inset:auto !important;

        transform:none !important;

        float:none !important;

        width:100% !important;
        min-width:100% !important;

        padding:10px !important;

        margin:0 0 12px 0 !important;

        border-radius:18px;

        background:#ffffff !important;

        box-shadow:
            0 10px 30px rgba(0,0,0,.15);

        overflow:hidden;
    }

    /* OPEN */
    .rh-mobile-menu .rh-dropdown.open > .rh-dropdown-menu{
        display:block;
    }

    /* DROPDOWN ITEM */
    .rh-mobile-menu .rh-dropdown-item{
        display:flex !important;
        align-items:center;

        gap:10px;

        width:100%;

        padding:13px 14px !important;

        border-radius:12px;

        margin-bottom:6px;

        background:#ffffff !important;

        color:#0f172a !important;

        text-decoration:none !important;

        font-size:13px !important;
        font-weight:600 !important;

        transition:.2s ease;
    }

    /* LAST */
    .rh-mobile-menu .rh-dropdown-item:last-child{
        margin-bottom:0;
    }

    /* HOVER */
    .rh-mobile-menu .rh-dropdown-item:hover{
        background:#eff6ff !important;

        color:#2563eb !important;

        transform:translateX(3px);
    }

    /* FORCE TEXT */
    .rh-mobile-menu .rh-dropdown-menu *,
    .rh-mobile-menu .rh-dropdown-item *,
    .rh-mobile-menu .rh-dropdown-item{
        color:#0f172a !important;
    }

    /* DIVIDER */
    .rh-mobile-menu .rh-divider{
        height:1px;

        background:#e5e7eb;

        margin:8px 0;
    }

    /* LOCK BODY */
    body.mobile-menu-open{
        overflow:hidden;
    }

}

/* =========================================================
   MOBILE FIX 375px - 420px
========================================================= */

@media (min-width: 321px) and (max-width: 426px){

    html,
    body{
        overflow-x:hidden;
    }

    /* HEADER */
    .rh-header{
        padding:8px 0;
    }

    .rh-header-inner{
        height:72px;

        display:flex;
        align-items:center;
        justify-content:space-between;

        gap:10px;
    }

    /* LOGO */
    .rh-logo{
        display:flex;
        align-items:center;

        gap:10px;

        flex:1;
        min-width:0;
    }

    .rh-logo img{
        max-height:34px;
        width:auto;
    }

    .rh-logo-text{
        font-size:18px;

        white-space:nowrap;
        overflow:hidden;
        text-overflow:ellipsis;
    }

    /* ACTION */
    .rh-actions{
        display:flex;
        align-items:center;

        gap:8px;

        flex-shrink:0;
    }

    /* CART */
    .rh-cart{
        width:40px;
        height:40px;

        border-radius:12px;

        flex-shrink:0;
    }

    .rh-cart span{
        min-width:18px;
        height:18px;

        font-size:10px;
    }

    /* MOBILE BUTTON */
    .rh-mobile-toggle{
        width:40px;
        height:40px;

        border-radius:12px;

        font-size:16px;

        flex-shrink:0;
    }

    /* HIDE BUTTON LOGIN */
    .rh-btn-login,
    .rh-btn-client,
    .rh-search,
    .rh-nav{
        display:none !important;
    }

    /* TOPBAR */
    .rh-topbar-inner{
        height:auto;

        padding:8px 0;

        display:flex;
        align-items:center;
        justify-content:center;
    }

    .rh-topbar-left{
        font-size:12px;
        text-align:center;
    }

    .rh-topbar-right{
        display:none;
    }

    /* MOBILE MENU */
    .rh-mobile-menu{
        width:85%;
        max-width:320px;
    }

    .rh-mobile-header{
        padding:18px;
    }

    .rh-mobile-brand img{
        max-height:32px;
    }

    .rh-mobile-brand-text{
        font-size:18px;
    }

    /* MENU BODY */
    .rh-mobile-body{
        padding:16px;
    }

    /* MENU LINK */
    .rh-mobile-menu .rh-nav-link{
        padding:14px 15px;

        font-size:13px;

        border-radius:14px;
    }

    /* DROPDOWN */
    .rh-mobile-menu .rh-dropdown-menu{
        padding:8px !important;

        border-radius:14px;
    }

    .rh-mobile-menu .rh-dropdown-item{
        padding:12px !important;

        font-size:12px !important;

        border-radius:10px;
    }

    /* CLOSE BUTTON */
    .rh-mobile-close{
        width:36px;
        height:36px;

        border-radius:10px;

        font-size:14px;
    }

}
