/*----------------------------------------*/
/*  HAMBURGER BUTTON
/*----------------------------------------*/

#bb-mobile-menu-toggle {
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    /* z-index: 1101; */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

#bb-mobile-menu-toggle .bar {
    position: absolute;
    width: 24px;
    height: 3px;
    background-color: #fff;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

#bb-mobile-menu-toggle .bar:nth-child(1) {
    transform: translateY(-8px);
}
#bb-mobile-menu-toggle .bar:nth-child(2) {
    transform: translateY(0);
}
#bb-mobile-menu-toggle .bar:nth-child(3) {
    transform: translateY(8px);
}

#bb-mobile-menu-toggle.open .bar:nth-child(1) {
    transform: rotate(45deg);
}
#bb-mobile-menu-toggle.open .bar:nth-child(2) {
    opacity: 0;
}
#bb-mobile-menu-toggle.open .bar:nth-child(3) {
    transform: rotate(-45deg);
}

/*----------------------------------------*/
/*  MENU
/*----------------------------------------*/

#bb-mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background: #141414;
    z-index: 1100;
    transition: right 0.3s ease;
    padding: 15px 20px;
    overflow-y: auto;
    box-shadow: -4px 0 8px rgba(0, 0, 0, 0.5);
}

#bb-mobile-menu.open {
    right: 0;
}

/*----------------------------------------*/
/*  HEADER (LOGO + CLOSE)
/*----------------------------------------*/

.bb-mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.bb-mobile-menu-logo {
    height: 40px;
}

#bb-mobile-menu-close {
    background: none;
    border: none;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
}

/*----------------------------------------*/
/*  CUSTOMER
/*----------------------------------------*/

.mobile-menu-customer {
    width: 100%;
    margin: -10px 0 20px 0;
    text-align: center;
    border: 1px solid #33353C;
    border-radius: 5px;
    padding: 10px 15px;
    background-image: -webkit-linear-gradient(90deg, rgba(18, 21, 24, 0.4902) 0%, rgba(31, 41, 53, 0.36078) 100%);
}

.mobile-menu-customer-username,
.mobile-menu-customer-coins {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.mobile-menu-customer-coins {
    font-size: 14px;
    color: #fff;
}
.mobile-menu-customer-coins img {
    max-width: 14px;
    margin-right: 5px;
}

.mobile-menu-customer-username {
    font-size: 12px;
    margin-top: -5px;
}

/*----------------------------------------*/
/*  MENU ITEMS
/*----------------------------------------*/

#bb-mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

#bb-mobile-menu-list li {
    border-bottom: 1px solid #33353c60;
}

#bb-mobile-menu-list li a {
    color: #fff;
    text-decoration: none;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#bb-mobile-menu-list li a:hover {
    background-color: #33353c3d;
}

.bb-mobile-menu-list-item-active {
    color: #00bfff !important;
}

/*----------------------------------------*/
/*  SUB-MENU
/*----------------------------------------*/

.bb-mobile-submenu {
    display: none;
    list-style: none;
    padding-left: 15px;
    margin-top: 5px;
}

.bb-mobile-submenu li a {
    font-size: 0.9em;
}

.bb-mobile-submenu-toggle {
    cursor: pointer;
    font-weight: bold;
    margin-left: 10px;
}

/*----------------------------------------*/
/*  QUICK LINK BUTTONS
/*----------------------------------------*/

.bb-mobile-menu-links {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 30px 0 20px 0;
    vertical-align: top;
    gap: 10px;
}

.bb-mobile-menu-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    text-align: center;
    border: 1px solid #222222;
    border-radius: 5px;
    padding: 5px 10px;
    background-color: #1b1b1b;
    transition: background-color 0.2s ease-in-out;
    color: #d5d7dd;
}
.bb-mobile-menu-links a:hover {
    border-color: #2e2e2e;
    color: #fff;
}