/* /Components/Basics/ClickOverlay.razor.rz.scp.css */
/* Ensure our component has its own stacking context */
.cr-wrapper[b-ehvtwbange] {
    position: relative;
    isolation: isolate;   /* <- key line */
    display: inline-block;
}

/* Base layer stays at the bottom of this context */
.cr-base[b-ehvtwbange] {
    position: relative;
    z-index: 0;
}

/* Overlay sits above everything inside the wrapper */
.cr-overlay[b-ehvtwbange] {
    position: absolute;
    inset: 0;
    z-index: 9999;        /* higher than any z-index on children */
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(233, 236, 239,.75);
    border-radius: inherit;
    opacity: 0;
    transform: scale(0.985);
    transition: opacity .12s ease, transform .12s ease;
}

.cr-overlay.cr-open[b-ehvtwbange] {
    opacity: 1;
    transform: scale(1);
}
/* /Components/Basics/IconSearchTextBox.razor.rz.scp.css */
:host[b-vmnf1oeu2p]  .hstn-search-input.e-input-group,
:host[b-vmnf1oeu2p]  .hstn-search-input.e-input-group.e-control-wrapper {
    background: #000;
    border: 1px solid #000;
    border-radius: 0;           /* square corners */
    box-shadow: none;
    height: 36px;               /* match your other buttons */
    align-items: center;
    padding: 0.25rem 0.5rem;
}

:host[b-vmnf1oeu2p]  .hstn-search-input.e-input-group input.e-input {
    background: transparent;
    color: #fff;
    caret-color: #fff;
}

:host[b-vmnf1oeu2p]  .hstn-search-input.e-input-group input.e-input::placeholder {
    color: rgba(255,255,255,.65);
}

:host[b-vmnf1oeu2p]  .hstn-search-input.e-input-group .e-input-group-icon,
:host[b-vmnf1oeu2p]  .hstn-search-input.e-input-group i {
    color: #fff;
    opacity: .9;
}

:host[b-vmnf1oeu2p]  .hstn-search-input.e-input-group.e-input-focus,
:host[b-vmnf1oeu2p]  .hstn-search-input.e-input-group:hover {
    border-color: #000;
    box-shadow: none;
}

/* your clear button inside the suffix */
.hstn-clear-btn[b-vmnf1oeu2p] { color: #fff; }


/* Black background everywhere */
:host[b-vmnf1oeu2p]  .hstn-search-input.e-input-group,
:host[b-vmnf1oeu2p]  .hstn-search-input.e-input-group.e-control-wrapper,
:host[b-vmnf1oeu2p]  .hstn-search-input.e-input-group input.e-input {
    background: #000 !important;
}

/* Pure white placeholder (no dimming) */
:host[b-vmnf1oeu2p]  .hstn-search-input.e-input-group input.e-input::placeholder {
    color: #fff !important;
    opacity: 1; /* some browsers dim placeholders */
}

/* Vendor fallbacks just in case */
:host[b-vmnf1oeu2p]  .hstn-search-input.e-input-group input.e-input::-webkit-input-placeholder { color:#fff !important; opacity:1; }
:host[b-vmnf1oeu2p]  .hstn-search-input.e-input-group input.e-input::-moz-placeholder { color:#fff !important; opacity:1; }
:host[b-vmnf1oeu2p]  .hstn-search-input.e-input-group input.e-input:-ms-input-placeholder { color:#fff !important; opacity:1; }
:host[b-vmnf1oeu2p]  .hstn-search-input.e-input-group input.e-input::-ms-input-placeholder { color:#fff !important; opacity:1; }

/* /Components/Basics/Responsive/MediaQueryBreakPoint.razor.rz.scp.css */

/* ------------- Small ------------- */
/* Small devices (landscape phones, 576px and up) */
@media (max-width: 575.9px) {
    .small-after[b-po54kxwm9f] {
        display: none !important;
    }
}

@media (min-width: 576px) {
    .small-before[b-po54kxwm9f] {
        display: none !important;
    }
}


/* ------------- Medium ------------- */
/* Medium devices (tablets, 768px and up) */
@media (max-width: 767.9px) { 
    .medium-after[b-po54kxwm9f] {
        display: none !important;
    }
}

@media (min-width: 768px) {
    .medium-before[b-po54kxwm9f] {
        display: none !important;
    }
}

/* ------------- Large ------------- */
/* Large devices (desktops, 992px and up) */
@media (max-width: 991.9px) {
    .large-after[b-po54kxwm9f] {
        display: none !important;
    }
}

@media (min-width: 992px) {
    .large-before[b-po54kxwm9f] {
        display: none !important;
    }
}

/* ------------- Extra Large ------------- */
/* Extra large devices (large desktops, 1200px and up) */
@media (max-width: 1199.9px) {
    .extra-large-after[b-po54kxwm9f] {
        display: none !important;
    }
}

@media (min-width: 1200px) {
    .extra-large-before[b-po54kxwm9f] {
        display: none !important;
    }
}
/* /Components/Basics/Tooltip.razor.rz.scp.css */
/* Tooltip wrapper — stable regardless of child display type */
.tt-wrapper[b-z4aj7xy3f8] {
    position: relative;
    display: inline-flex;
    pointer-events: auto;
}

/* Tooltip body */
.tt[b-z4aj7xy3f8] {
    position: fixed;              /* viewport coordinate system */
    z-index: 2147483647;          /* maximum z-index value - above everything */
    max-width: 280px;
    padding: 8px 10px;
    border-radius: 0px;
    box-shadow: 0 8px 24px rgba(0,0,0,.12), 0 2px 6px rgba(0,0,0,.08);
    background: rgba(0,0,0,.9);
    color: #fff;
    font-family: inherit;
    font-size: .875rem;
    line-height: 1.2;
    pointer-events: auto;
    transform-origin: var(--tt-origin, top center);
    opacity: 0;
    transform: translate3d(0, 2px, 0) scale(0.98);
    transition: opacity .12s ease, transform .12s ease;
}

/* Animate visible */
.tt[style*="visible"][b-z4aj7xy3f8] {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}

/* Hide pointer events when aria-hidden */
.tt[aria-hidden="true"][b-z4aj7xy3f8] {
    pointer-events: none;
}

/* Arrow */
.tt .tt-arrow[b-z4aj7xy3f8] {
    position: absolute;
    width: 10px;
    height: 10px;
    background: rgba(0,0,0,.9);
    transform: rotate(45deg);
    box-shadow: -1px -1px 2px rgba(0,0,0,.08);
}

/* fallback arrow placement */
.tt[data-placement^="top"] .tt-arrow[b-z4aj7xy3f8] { bottom: -5px; left: calc(50% - 5px); }
.tt[data-placement^="bottom"] .tt-arrow[b-z4aj7xy3f8] { top: -5px; left: calc(50% - 5px); }
.tt[data-placement^="left"] .tt-arrow[b-z4aj7xy3f8] { right: -5px; top: calc(50% - 5px); }
.tt[data-placement^="right"] .tt-arrow[b-z4aj7xy3f8] { left: -5px; top: calc(50% - 5px); }

/* Motion preference */
@media (prefers-reduced-motion: reduce) {
    .tt[b-z4aj7xy3f8] { transition: none; }
}
/* /Components/Items/Filter/ItemFilterDropDown.razor.rz.scp.css */
.accordion-header[b-fhpkqst5n7] {
    cursor:pointer;
    user-select:none;
}

.caret[b-fhpkqst5n7] {
    transition: transform .2s ease;
}

.rotate-180[b-fhpkqst5n7] {
    transform: rotate(180deg);
}
/* /Components/Kpi/KpiTiles.razor.rz.scp.css */
/* /Components/Layout/Mobile/MobileMenu.razor.rz.scp.css */

.mobile-menu-container[b-bh0p3j8w71] {
    max-height: calc(100% - 6em);
    overflow: auto;
    width: 21em;
    background-color: #1d1d1d;
    margin-left: 0.75em;
}
/* /Components/Layout/Mobile/MobileNavigationMenu.razor.rz.scp.css */
/* /Components/Metrics/GeneralMetricsTile.razor.rz.scp.css */

.kpi-tile-values[b-e6mi5akljv] {
    font-size: 4em;
}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
    .kpi-tile-values[b-e6mi5akljv] {
        font-size: 2em;
    }
}

/* Large devices (desktops, less than 1200px) */
@media (min-width: 991.99px) and (max-width: 1199.98px) {
    .kpi-tile-values[b-e6mi5akljv] {
        font-size: 2.5em;
    }
}
/* /Components/Products/ProductsTopListSub/TopListItem.razor.rz.scp.css */
.heading[b-pjwlznm0hd] {
    
}
/* /Components/TimeMachine/RightSidebar/RightSidebarChanged.razor.rz.scp.css */
.ai-pulse-circle[b-it134ld47b] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #2d61a6;
    margin-top: 0.25rem;
    animation: ai-pulse-b-it134ld47b 1s ease-in-out infinite;
}

@keyframes ai-pulse-b-it134ld47b {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.8);
        opacity: 0.3;
    }
    100% {
        transform: scale(1);
        opacity: 0.8;
    }
}
/* /Shared/MainLayout.razor.rz.scp.css */
.page[b-j8k7apqiav] {
    position: relative;
    display: flex;
    flex-direction: column;
}

.main[b-j8k7apqiav] {
    flex: 1;
}

.sidebar[b-j8k7apqiav] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-j8k7apqiav] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-j8k7apqiav]  a, .top-row .btn-link[b-j8k7apqiav] {
        white-space: nowrap;
        margin-left: 1.5rem;
    }

    .top-row a:first-child[b-j8k7apqiav] {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row:not(.auth)[b-j8k7apqiav] {
        display: none;
    }

    .top-row.auth[b-j8k7apqiav] {
        justify-content: space-between;
    }

    .top-row a[b-j8k7apqiav], .top-row .btn-link[b-j8k7apqiav] {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-j8k7apqiav] {
        flex-direction: row;
    }

    .sidebar[b-j8k7apqiav] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-j8k7apqiav] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .main > div[b-j8k7apqiav] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* /Shared/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-aqdea5ztdm] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-aqdea5ztdm] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-aqdea5ztdm] {
    font-size: 1.1rem;
}

.oi[b-aqdea5ztdm] {
    width: 2rem;
    font-size: 1.1rem;
    vertical-align: text-top;
    top: -2px;
}

.nav-item[b-aqdea5ztdm] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-aqdea5ztdm] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-aqdea5ztdm] {
        padding-bottom: 1rem;
    }

    .nav-item[b-aqdea5ztdm]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

.nav-item[b-aqdea5ztdm]  a.active {
    background-color: rgba(255,255,255,0.25);
    color: white;
}

.nav-item[b-aqdea5ztdm]  a:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

@media (min-width: 641px) {
    .navbar-toggler[b-aqdea5ztdm] {
        display: none;
    }

    .collapse[b-aqdea5ztdm] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }
}
