html, body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}


/*.rz-body {
    background: #0f172a !important;
    color: #e2e8f0;
    font-family: 'Segoe UI', sans-serif;
}
*/

.loading-progress {
    position: relative;
    display: block;
    width: 8rem;
    height: 8rem;
    margin: 20vh auto 1rem auto;
}

    .loading-progress circle {
        fill: none;
        stroke: #fff;
        stroke-width: 0.6rem;
        transform-origin: 50% 50%;
        transform: rotate(-90deg);
    }

        .loading-progress circle:last-child {
            stroke: #c2350a;
            stroke-dasharray: calc(3.141 * var(--blazor-load-percentage, 0%) * 0.8), 500%;
            transition: stroke-dasharray 0.05s ease-in-out;
        }

.loading-progress-text {
    color: #ccc;
    position: absolute;
    text-align: center;
    font-weight: bold;
    inset: calc(20vh + 3.25rem) 0 auto 0.2rem;
}

    .loading-progress-text:after {
        content: var(--rz-color-white, "Loading");
    }



.gx-breadcrumb {
    margin-bottom: 12px;
}

.gx-breadcrumb__list {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
    padding: 0;
    margin: 0;
    font-weight: 800;
    font-size: 18px;
}

.gx-breadcrumb__item {
    color: var(--gx-muted);
    display: flex;
    align-items: center;
}

    .gx-breadcrumb__item a {
        color: var(--gx-muted);
        text-decoration: none;
        padding: 4px 6px;
        border-radius: 8px;
        transition: all .15s ease;
    }

        .gx-breadcrumb__item a:hover {
            color: var(--gx-title);
            background: rgba(34,211,238,.08);
        }

.gx-breadcrumb__item--current {
    color: var(--gx-title);
    cursor: default;
    padding: 4px 6px;
    border-radius: 8px;
    background: rgba(34,211,238,.10);
    border: 1px solid rgba(34,211,238,.18);
}

.gx-breadcrumb__sep {
    color: var(--gx-muted-2);
    font-weight: 900;
    margin: 0 2px;
}

