/* DEFAULT HIDE DI DESKTOP */
.mobile_header,
.mobile_sidebar,
.mobile_bottom_nav,
.overlay {
    display: none;
}

/* MOBILE ONLY */
@media (max-width: 991px) {

    #navigation {
        display: none;
    }

    .mobile_header,
    .mobile_sidebar,
    .mobile_bottom_nav,
    .overlay {
        display: block;
    }

    /* HEADER */
    .mobile_header {
        position: fixed;
        top: 0;
        width: 100%;
        background: white;
        z-index: 9999;
        padding: 10px;
    }

    .mobile_top {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    /* LOGO */
    .mobile_logo img {
        height: 45px;
    }

    /* MENU ICON */
    .menu_toggle i {
        font-size: 22px;
        color: black;
        cursor: pointer;
    }

    /* SEARCH */
    .mobile_search {
        margin-top: 8px;
    }

    .mobile_search input {
        width: 100%;
        padding: 8px;
        border-radius: 20px;
        border: none;
        outline: none;
    }

  /* SIDEBAR BASE */
.mobile_sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 260px;
    height: 100%;
    background: #fff;
    z-index: 10000;
    

    /* ANIMASI SMOOTH */
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);

    padding: 20px;
}

/* ACTIVE */
.mobile_sidebar.active {
    transform: translateX(0);
}

/* USER */
.sidebar_user {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.sidebar_user img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
}

.sidebar_user h6 {
    margin: 0;
    font-size: 14px;
}

.sidebar_user span {
    font-size: 12px;
    color: #777;
}

/* MENU */
.sidebar_menu {
    list-style: none;
    padding: 0;
}

.sidebar_menu li {
    margin-bottom: 15px;
}

.sidebar_menu a {
    text-decoration: none;
    color: #333;
    font-size: 14px;

    display: flex;
    align-items: center;
    gap: 10px;

    padding: 8px;
    border-radius: 8px;
    transition: 0.2s;
}

.sidebar_menu a i {
    width: 20px;
    text-align: center;
    font-size: 16px;
}

/* HOVER EFFECT */
.sidebar_menu a:hover {
    background: #f5f5f5;
}

/* HEADER SIDEBAR */
.sidebar_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

/* ICON CLOSE */
.close_sidebar i {
    font-size: 20px;
    cursor: pointer;
    color: #333;
    transition: 0.2s;
}

.close_sidebar i:hover {
    color: #ff5722;
}

    /* SPACE */
    body {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}