/* /Shared/Banner.razor.rz.scp.css */
@keyframes slideDownFadeIn-b-iz78kktc3o {
    0% {
        margin-top: -50px;
        opacity: 0;
    }

    100% {
        margin-top: 0;
        opacity: 1;
    }
}

.scrolling-banner[b-iz78kktc3o] {
    /* Remove absolute positioning */
    position: static;
    width: 100%;
    height: 50px;
    box-sizing: border-box;
    background-color: #F5AE18;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 0;
    /*margin-top: -50px;*/ /* Start above the page */
    /*animation: slideDownFadeIn 1s forwards;
    animation-delay: 2s;*/
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3); /* Adjust as needed */
}

.scrolling-text[b-iz78kktc3o] {
    display: flex;
    align-items: center;
    padding: 0 20px;
    white-space: nowrap;
    animation: scroll-text linear infinite;
}

.dy-banner-subheader[b-iz78kktc3o] {
    font-family: 'Barlow Condensed', sans-serif;
    font-style: italic;
    color: black;
    font-size: 1.25rem;
    line-height: 1;
    text-align: left;
}

.scrolling-banner img[b-iz78kktc3o] {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 10px;
}
/* /Shared/MainLayout.razor.rz.scp.css */
.page[b-g2wgqqa2kq] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-g2wgqqa2kq] {
    flex: 1;
    overflow: auto;
}

.sidebar[b-g2wgqqa2kq] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-g2wgqqa2kq] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-g2wgqqa2kq]  a, .top-row[b-g2wgqqa2kq]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-g2wgqqa2kq]  a:hover, .top-row[b-g2wgqqa2kq]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-g2wgqqa2kq]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row:not(.auth)[b-g2wgqqa2kq] {
        display: none;
    }

    .top-row.auth[b-g2wgqqa2kq] {
        justify-content: space-between;
    }

    .top-row[b-g2wgqqa2kq]  a, .top-row[b-g2wgqqa2kq]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-g2wgqqa2kq] {
        flex-direction: row;
    }

    .sidebar[b-g2wgqqa2kq] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-g2wgqqa2kq] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-g2wgqqa2kq]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-g2wgqqa2kq], article[b-g2wgqqa2kq] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* /Shared/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-f681fqah1l] {
    background-color: rgba(255, 255, 255, 0.1);
    outline: none;
    border: none;
}

    .navbar-toggler:focus[b-f681fqah1l] {
        outline: 1px solid gray;
        box-shadow: none;
    }


.NAV--LOGO[b-f681fqah1l] {
    width: 5%;
    height: 5%;

}

.top-row[b-f681fqah1l] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-f681fqah1l] {
    margin: 0;
}

.nav-item[b-f681fqah1l] {
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

    .nav-item a[b-f681fqah1l] {
        color: #d7d7d7;
        border-radius: 4px;
    }

        .nav-item a.active[b-f681fqah1l] {
            background-color: rgba(255,255,255,0.25);
            color: white;
        }

        .nav-item a:hover[b-f681fqah1l] {
            background-color: transparent !important;
            color: white;
        }


.form-control:focus[b-f681fqah1l] {
    box-shadow: none;
    outline: none;
    border-color: grey;
}

/* Slide-out effect */
.slide-out-input[b-f681fqah1l] {
    width: 0;
    opacity: 0;
    overflow: hidden;
    transition: width 0.5s ease, opacity 0.5s ease;
}

    .slide-out-input.show[b-f681fqah1l] {
        width: 15rem; /* Set to the desired width */
        opacity: 1;
    }

.btn-no-outline:focus[b-f681fqah1l] {
    outline: none !important;
    box-shadow: none !important;
}

.remove-border[b-f681fqah1l] {
    border: none !important;
}

.nav-item.dropdown[b-f681fqah1l] {
    position: relative;
}

.dropdown-menu[b-f681fqah1l] {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
}

.dropdown-item:hover[b-f681fqah1l],
.dropdown-item:focus[b-f681fqah1l] {
    background-color: rgba(255, 255, 255, 0.1) !important;
    color: white !important;
    outline: none !important;
    box-shadow: none !important;
}

.dropdown-item:active[b-f681fqah1l],
.navbar-dark .navbar-nav .dropdown-menu .dropdown-item.active[b-f681fqah1l],
.navbar-dark .navbar-nav .dropdown-menu .dropdown-item:active[b-f681fqah1l] {
    background-color: rgba(255, 255, 255, 0.1) !important;
    color: white !important;
    outline: none !important;
    box-shadow: none !important;
}

.text-warning[b-f681fqah1l] {
    color: #F5AE18 !important;
}

.navbar[b-f681fqah1l] {
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
    z-index: 1060;
    position: relative;
}


/*.nav-item, .nav-link, .dropdown-item {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.8rem;
}*/

.search-results-dropdown[b-f681fqah1l] {
    height: max-content;
    max-height: 75vh;
    overflow-y: auto;
    overflow-x: hidden;
    width: max-content;
    max-width: 90vw;
    z-index: 1070;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    opacity: 0;
    visibility: hidden;
    min-height: 2rem;
    min-width: 20rem;
    display: flex; /* Add this */
    flex-direction: column; /* Add this */
}

..search-loading[b-f681fqah1l], .search-no-results[b-f681fqah1l] {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1; /* Add this */
    height: 100%;
    width: 100%;
}

.search-no-results[b-f681fqah1l] {
    color: #F5AE18;
    font-style: italic;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.5rem;
}

.search-loading[b-f681fqah1l] {
    /*color: #F5AE18;*/
    font-style: italic;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.5rem;
}

.search-results-dropdown.show[b-f681fqah1l] {
    opacity: 1;
    visibility: visible;
}

.search-results-container[b-f681fqah1l] {
    flex-grow: 1;
    overflow-y: auto;
}

.dropdown-menu .dropdown-item.active[b-f681fqah1l],
.dropdown-menu .dropdown-item:active[b-f681fqah1l] {
    background-color: #212529 !important;
    color: #F5AE18 !important;
}

.search-results-dropdown[b-f681fqah1l]::-webkit-scrollbar {
    width: 8px;
}

.search-results-dropdown[b-f681fqah1l]::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

    .search-results-dropdown[b-f681fqah1l]::-webkit-scrollbar-thumb:hover {
        background: #555;
    }

.product-no[b-f681fqah1l] {
    font-size: 1.5rem;
    font-weight: bold;
}

.product-description[b-f681fqah1l] {
    font-size: 1rem;
    color: #555;
}

.dropdown-item:focus[b-f681fqah1l], .dropdown-item:active[b-f681fqah1l], .dropdown-item.show[b-f681fqah1l] {
    color: #d7d7d7 !important;
    background-color: transparent !important;
    text-decoration: none;
    box-shadow: none !important;
}

.country-dropdown[b-f681fqah1l] {
    left: 100% !important; /* Center the dropdown */
    transform: translateX(-100%); /* Adjust position */
}

/* Overlay Styles */
.overlay[b-f681fqah1l] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: transparent;
    z-index: 1040; /* Bootstrap's modal z-index is 1050, so this is just below */
}

/* Ensure dropdown-menu has higher z-index */
.search-results-dropdown[b-f681fqah1l] {
    z-index: 1050; /* Above the overlay */
}

.search-loading[b-f681fqah1l],
.search-no-results[b-f681fqah1l] {
    text-align: center;
    padding: 10px;
    color: #fff;
}

    .search-loading img[b-f681fqah1l],
    .search-no-results img[b-f681fqah1l] {
        width: 30px;
        height: 30px;
        display: block; /* Ensure image is treated as block */
        margin: 0 auto; /* Center the image */
    }

    .search-loading span[b-f681fqah1l],
    .search-no-results span[b-f681fqah1l] {
        display: block; /* Ensure span is treated as block */
        margin-top: 10px; /* Add some space between the image and text */
    }

