/* _content/SoftMadeResto/Components/Layout/AdminMenu.razor.rz.scp.css */
/* 1. Main Container */
.admin-sidebar[b-ag2hc51yzq] {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    background-color: #11101d;
    z-index: 2000;
    transition: width 0.3s ease-in-out;
    box-shadow: 3px 0 20px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    color: #fff;
    white-space: nowrap;
}

/* 2. States */
.side-menu-open[b-ag2hc51yzq] {
    width: 260px;
}

.side-menu-closed[b-ag2hc51yzq] {
    width: 78px;
}

/* 3. Header (Centered) */
.sidebar-header[b-ag2hc51yzq] {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center; /* Keeps Logo Centered */
    padding: 0;
    margin-bottom: 10px;
    overflow: hidden;
}

.brand-icon[b-ag2hc51yzq] {
    min-width: 40px;
    height: 40px;
    background: #4e73df;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    margin-right: 12px;
    box-shadow: 0 4px 10px rgba(78, 115, 223, 0.4);
    transition: margin 0.3s;
}

.brand-text[b-ag2hc51yzq] {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: opacity 0.3s;
}

.navbar-brand[b-ag2hc51yzq] {
    display: flex;
    align-items: center;
    text-decoration: none;
    width: auto;
}

/* 4. Scrollable Area */
.nav-scrollable[b-ag2hc51yzq] {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
}

.custom-scrollbar[b-ag2hc51yzq]::-webkit-scrollbar {
    width: 4px;
}

.custom-scrollbar[b-ag2hc51yzq]::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
}

/* 5. Footer */
.sidebar-footer[b-ag2hc51yzq] {
    padding: 20px 0; /* Remove side padding to let flex handle centering */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: center; /* Center the Logout Button */
}

/* 6. Nav Links (THE FIX) */
.nav-item[b-ag2hc51yzq] {
    margin-bottom: 8px;
    padding: 0 10px;
}

.nav-link[b-ag2hc51yzq] {
    color: #b0b0b0 !important;
    display: flex;
    align-items: center;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    font-weight: 500;
    text-decoration: none;
    height: 50px;
    width: 100%;
    /* DEFAULT STATE (OPEN): "Smart Center" */
    /* We align LEFT, but add Padding to push it to the middle. */
    /* This keeps icons in a straight line. */
    justify-content: flex-start;
    padding-left: 50px;
}

    .nav-link:hover[b-ag2hc51yzq] {
        background: rgba(255,255,255,0.05);
        color: #fff !important;
        transform: translateX(5px);
    }

    .nav-link.active[b-ag2hc51yzq] {
        background: #4e73df;
        color: white !important;
        box-shadow: 0 4px 15px rgba(78, 115, 223, 0.3);
    }

/* Icon Wrapper */
.icon-wrapper[b-ag2hc51yzq] {
    min-width: 30px;
    height: 30px;
    margin-right: 15px;
    font-size: 1.1rem;
    transition: margin 0.3s;
}

    .icon-wrapper i[b-ag2hc51yzq] {
        line-height: 1; /* Fix vertical alignment of the icon itself */
    }

.link-text[b-ag2hc51yzq] {
    line-height: 1; /* Fix vertical alignment of text */
    padding-top: 2px; /* Micro-adjustment to align perfectly with icon */
}

.nav-link.active .icon-wrapper[b-ag2hc51yzq] {
    color: white;
}

/* Logout Button */
.logout-btn[b-ag2hc51yzq] {
    background: rgba(255, 71, 87, 0.1);
    color: #ff4757 !important;
    width: 90%; /* Fit inside sidebar */
    border: none; /* Remove default button borders */
}

    .logout-btn:hover[b-ag2hc51yzq] {
        background: #ff4757;
        color: white !important;
    }

/* 7. Collapsed Logic (Closed State) */
.side-menu-closed .brand-text[b-ag2hc51yzq],
.side-menu-closed .link-text[b-ag2hc51yzq] {
    display: none;
}

.side-menu-closed .brand-icon[b-ag2hc51yzq] {
    margin-right: 0;
}

.side-menu-closed .nav-link[b-ag2hc51yzq] {
    /* CLOSED STATE: Perfect Center */
    justify-content: center;
    padding-left: 0; /* Remove the "Smart Center" padding */
    padding-right: 0;
}

.side-menu-closed .icon-wrapper[b-ag2hc51yzq] {
    margin-right: 0;
}

/* 8. Toggle Button */
.menu-toggle-btn[b-ag2hc51yzq] {
    position: fixed;
    top: 25px;
    left: 275px;
    z-index: 2100;
    background: white;
    color: #11101d;
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: left 0.3s ease-in-out;
}

/* Desktop */
@media (min-width: 768px) {
    .side-menu-closed ~ .menu-toggle-btn[b-ag2hc51yzq] {
        left: 90px;
    }
}

/* Mobile */
@media (max-width: 768px) {
        width: 0;
        transform: translateX(-100%);[b-ag2hc51yzq]
    }

    .side-menu-open[b-ag2hc51yzq] {
        width: 260px;
        transform: translateX(0);
    }

    .menu-toggle-btn[b-ag2hc51yzq] {
        left: 15px;
        top: 15px;
    }

    .side-menu-open ~ .menu-toggle-btn[b-ag2hc51yzq] {
        left: 275px;
    }
}
/* _content/SoftMadeResto/Components/Layout/LoginMenu.razor.rz.scp.css */
.navbar-toggler[b-ojxkb4onos] {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;
    color: white;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1);
}

.navbar-toggler:checked[b-ojxkb4onos] {
    background-color: rgba(255, 255, 255, 0.5);
}

.top-row[b-ojxkb4onos] {
    min-height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-ojxkb4onos] {
    font-size: 1.1rem;
}

.bi[b-ojxkb4onos] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-ojxkb4onos] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-ojxkb4onos] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-ojxkb4onos] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.nav-item[b-ojxkb4onos] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-ojxkb4onos] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-ojxkb4onos] {
        padding-bottom: 1rem;
    }

    .nav-item[b-ojxkb4onos]  .nav-link {
        color: #d7d7d7;
        background: none;
        border: none;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
        width: 100%;
    }

.nav-item[b-ojxkb4onos]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-ojxkb4onos]  .nav-link:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

.nav-scrollable[b-ojxkb4onos] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-ojxkb4onos] {
    display: block;
}

@media (min-width: 641px) {
    .navbar-toggler[b-ojxkb4onos] {
        display: none;
    }

    .nav-scrollable[b-ojxkb4onos] {
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* _content/SoftMadeResto/Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-jqdm3whldw] {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main[b-jqdm3whldw] {
    flex: 1;
    min-height: calc(100vh - 3.5rem);
    padding-top: 3.5rem;
    transition: margin-left 0.3s ease-in-out, padding-left 0.3s ease-in-out;
}

/* Sidebar Wrapper - No Z-index, let AdminMenu handle it */
.sidebar[b-jqdm3whldw] {
    display: block;
}

/* Top Bar Styling */
.top-row[b-jqdm3whldw] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    justify-content: space-between;
    height: 3.5rem;
    display: flex;
    align-items: center;
    padding: 0 1.5rem;
    z-index: 1040;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: left 0.3s ease-in-out;
}

    .top-row[b-jqdm3whldw]  a, .top-row[b-jqdm3whldw]  .btn-link {
        white-space: nowrap;
        text-decoration: none;
        color: #495057;
    }

    .top-row .badge[b-jqdm3whldw] {
        font-size: 0.75rem;
        padding: 0.25rem 0.5rem;
    }

.content[b-jqdm3whldw] {
    /* Removed padding here because your Dashboard has its own padding */
    padding: 0;
    background: #f8f9fa;
    min-height: calc(100vh - 3.5rem);
}

/* --- FIX: DEFAULT DESKTOP STATE --- */
/* This pushes the content 260px to the right so it doesn't hide behind the sidebar */
@media (min-width: 768px) {
    main[b-jqdm3whldw] {
        margin-left: 60px;
    }

    .top-row[b-jqdm3whldw] {
        left: 60px;
    }
}

/* --- MOBILE ADJUSTMENTS --- */
@media (max-width: 767.98px) {
    main[b-jqdm3whldw] {
        margin-left: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .top-row[b-jqdm3whldw] {
        left: 0 !important;
        padding-left: 3.5rem !important; /* Space for the arrow button */
        padding-right: 1rem;
    }
}

#blazor-error-ui[b-jqdm3whldw] {
    background: #fff3cd;
    color: #856404;
    bottom: 0;
    display: none;
    left: 0;
    padding: 0.75rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 2000;
}

    #blazor-error-ui .dismiss[b-jqdm3whldw] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* _content/SoftMadeResto/Components/Layout/NavMenu.razor.rz.scp.css */
/* 1. Main Container */
.admin-sidebar[b-e7qf1ryhl4] {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    background-color: #11101d; /* Deep Dark Background */
    z-index: 2000;
    transition: width 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    color: #fff;
    box-shadow: 4px 0 10px rgba(0,0,0,0.1);
}

/* 2. States */
.side-menu-open[b-e7qf1ryhl4] {
    width: 260px;
}

.side-menu-closed[b-e7qf1ryhl4] {
    width: 78px;
}

/* 3. Header */
.sidebar-header[b-e7qf1ryhl4] {
    height: 80px;
    display: flex;
    align-items: center;
    padding-left: 20px;
    margin-bottom: 10px;
}

.brand-icon[b-e7qf1ryhl4] {
    width: 40px;
    height: 40px;
    background: #6c5ce7; /* Brand Purple */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    margin-right: 12px;
    box-shadow: 0 4px 10px rgba(108, 92, 231, 0.4);
}

.brand-text[b-e7qf1ryhl4] {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    letter-spacing: 0.5px;
}

.navbar-brand[b-e7qf1ryhl4] {
    display: flex;
    align-items: center;
    text-decoration: none;
}

/* 4. Scrollable Area */
.nav-scrollable[b-e7qf1ryhl4] {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
}

.custom-scrollbar[b-e7qf1ryhl4]::-webkit-scrollbar {
    width: 4px;
}

.custom-scrollbar[b-e7qf1ryhl4]::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
}

/* 5. Footer (Logout) */
.sidebar-footer[b-e7qf1ryhl4] {
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* 6. Nav Links (The "Pill" Design) */
.nav-item[b-e7qf1ryhl4] {
    margin-bottom: 8px; /* Space between items */
}

.nav-link[b-e7qf1ryhl4] {
    color: #a6a6a6 !important; /* Inactive Text Color */
    display: flex;
    align-items: center;
    padding: 12px 15px;
    border-radius: 12px; /* Rounded corners */
    transition: all 0.3s ease;
    white-space: nowrap;
    cursor: pointer;
    font-weight: 500;
    text-decoration: none;
    margin: 0 10px; /* Float effect inside sidebar */
}

    .nav-link:hover[b-e7qf1ryhl4] {
        color: #fff !important;
        background: rgba(255,255,255,0.05);
    }

    /* ACTIVE STATE - The Purple Pill */
    .nav-link.active[b-e7qf1ryhl4] {
        background: #6c5ce7; /* Reference Purple */
        color: white !important;
        box-shadow: 0 4px 15px rgba(108, 92, 231, 0.3);
    }

/* Icons */
.icon-wrapper[b-e7qf1ryhl4] {
    width: 30px;
    text-align: center;
    margin-right: 15px;
    font-size: 1.2rem;
    transition: margin 0.3s;
}

.nav-link.active .icon-wrapper[b-e7qf1ryhl4] {
    color: white; /* Ensure icon is white when active */
}

/* Logout Button Special Style */
.logout-btn[b-e7qf1ryhl4] {
    background: rgba(255, 71, 87, 0.1);
    color: #ff4757 !important;
}

    .logout-btn:hover[b-e7qf1ryhl4] {
        background: #ff4757;
        color: white !important;
    }

/* 7. Collapsed Logic */
.side-menu-closed .link-text[b-e7qf1ryhl4],
.side-menu-closed .brand-text[b-e7qf1ryhl4] {
    display: none;
}

.side-menu-closed .sidebar-header[b-e7qf1ryhl4] {
    padding-left: 0;
    justify-content: center;
}

.side-menu-closed .nav-link[b-e7qf1ryhl4] {
    justify-content: center;
    padding: 12px 0;
    margin: 0 8px;
}

.side-menu-closed .icon-wrapper[b-e7qf1ryhl4] {
    margin-right: 0;
}

.side-menu-closed .brand-icon[b-e7qf1ryhl4] {
    margin-right: 0;
}

/* 8. Toggle Button */
.menu-toggle-btn[b-e7qf1ryhl4] {
    position: fixed;
    top: 25px;
    left: 275px;
    z-index: 2100;
    background: white;
    color: #11101d;
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: left 0.3s ease-in-out;
}

.side-menu-closed ~ .menu-toggle-btn[b-e7qf1ryhl4] {
    left: 90px;
}

/* Mobile */
@media (max-width: 768px) {
    .side-menu-closed[b-e7qf1ryhl4] {
        width: 0;
        transform: translateX(-100%);
    }

    .side-menu-open[b-e7qf1ryhl4] {
        width: 260px;
        transform: translateX(0);
    }

    .menu-toggle-btn[b-e7qf1ryhl4] {
        left: 15px;
        top: 15px;
    }

    .side-menu-open ~ .menu-toggle-btn[b-e7qf1ryhl4] {
        left: 275px;
    }
}
/* _content/SoftMadeResto/Components/Pages/POS.razor.rz.scp.css */
.pos-screen[b-y6wlk52mux] {
    height: calc(100vh - 65px);
    background-color: #f5f6fa;
    overflow: hidden;
}
.category-scroll-container[b-y6wlk52mux] {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.8rem;
    overflow-x: auto;
    padding-bottom: 5px;
    margin-bottom: 15px;
    width: 100%;
    align-items: center;
    scrollbar-width: thin;
    scrollbar-color: #ccc transparent;
    flex-shrink: 0;
}

    .category-scroll-container[b-y6wlk52mux]::-webkit-scrollbar {
        height: 4px;
    }

    .category-scroll-container[b-y6wlk52mux]::-webkit-scrollbar-thumb {
        background-color: #ccc;
        border-radius: 10px;
    }

    .category-scroll-container[b-y6wlk52mux]::-webkit-scrollbar-track {
        background: transparent;
    }

.category-pill[b-y6wlk52mux] {
    flex: 0 0 auto;
    background: white;
    border: 1px solid #e0e0e0;
    color: #636e72;
    padding: 0.6rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.2s ease;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

    .category-pill:hover[b-y6wlk52mux] {
        background: #f1f2f6;
        border-color: #b2bec3;
        transform: translateY(-1px);
    }

    .category-pill.active[b-y6wlk52mux] {
        background: #5b45ff;
        color: white;
        border-color: #5b45ff;
        box-shadow: 0 4px 10px rgba(91, 69, 255, 0.3);
    }

.search-wrapper[b-y6wlk52mux] {
    background: white;
    padding: 0.6rem 1rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    min-width: 250px;
    border: 1px solid #e0e0e0;
}

.search-input[b-y6wlk52mux] {
    border: none;
    outline: none;
    margin-left: 10px;
    width: 100%;
    color: #555;
    font-weight: 500;
}

.item-card[b-y6wlk52mux] {
    background: white;
    border-radius: 16px;
    padding: 10px;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    cursor: pointer;
    height: 100%;
}

    .item-card:hover[b-y6wlk52mux] {
        transform: translateY(-4px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.08) !important;
        border-color: #dfe6e9;
    }

.img-wrapper[b-y6wlk52mux] {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 10px;
    background: #f1f2f6;
    position: relative;
}

    .img-wrapper img[b-y6wlk52mux] {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s;
    }

.item-card:hover .img-wrapper img[b-y6wlk52mux] {
    transform: scale(1.05);
}

.item-title[b-y6wlk52mux] {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 0;
    color: #2d3436;
}

.item-price[b-y6wlk52mux] {
    font-weight: 700;
    font-size: 1rem;
    color: #5b45ff;
}

.btn-add[b-y6wlk52mux] {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f1f2f6;
    color: #2d3436;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.item-card:hover .btn-add[b-y6wlk52mux] {
    background: #5b45ff;
    color: white;
}

.cart-panel[b-y6wlk52mux] {
    border-left: 1px solid #eee;
    z-index: 100;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.cart-img[b-y6wlk52mux] {
    width: 50px;
    height: 50px;
    background: #f8f9fa;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    border: 1px solid #eee;
}

.qty-btn[b-y6wlk52mux] {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    border: none;
    background: #f1f2f6;
    color: #2f3542;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
}

    .qty-btn:hover[b-y6wlk52mux] {
        background: #e1e2e6;
    }

    .qty-btn.dark[b-y6wlk52mux] {
        background: #2d3436;
        color: white;
    }

        .qty-btn.dark:hover[b-y6wlk52mux] {
            background: #000;
        }

.cart-footer[b-y6wlk52mux] {
    background: white;
    border-top: 1px solid #eee;
    padding: 1.5rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.03);
    flex-shrink: 0;
}

.no-scrollbar[b-y6wlk52mux]::-webkit-scrollbar {
    display: none;
}

.no-scrollbar[b-y6wlk52mux] {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
