﻿/* remove bullets */
ul {
    list-style: none;
}

/* remove bullets */
ol {
    list-style:none;
}

.c-profile__roundedpill .mud-icon-root{
    margin-right: 8px !important;
}

.loading-progress {
    position: relative;
    display: block;
    width: 8rem;
    height: 8rem;
    margin: 20vh auto 1rem auto;
}

    .loading-progress circle {
        fill: none;
        stroke: #e0e0e0;
        stroke-width: 0.6rem;
        transform-origin: 50% 50%;
        transform: rotate(-90deg);
    }

        .loading-progress circle:last-child {
            stroke: #1b6ec2;
            stroke-dasharray: calc(3.141 * var(--blazor-load-percentage, 0%) * 0.8), 500%;
            transition: stroke-dasharray 0.05s ease-in-out;
        }

.loading-progress-text {
    position: absolute;
    text-align: center;
    font-weight: bold;
    inset: calc(20vh + 3.25rem) 0 auto 0.2rem;
}

    .loading-progress-text:after {
        content: var(--blazor-load-percentage-text, "Loading");
    }


.flex_container {
    display: flex;
    width: 100%;
    gap: 21px;
}

.flex_item_left {
    width: 394px;
}

.flex_item_right {
    flex: 1;
}

.flx-header {
    color: #15234A;
    font-weight: 700;
    font-size: 24px;
}

.flx-title {
    color: #15234A;
    font-weight: 600;
    font-size: 16px;
}

.flx-color {
    color: #15234A;
}

.flx-block-title {
    color: #181d27;
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 16px;
    display: block;
}

.flx-block-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0 2px;
}

.flx-block-item {
    display: flex;
    flex-direction: column;
}

.flx-block-item-link {
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
}

.flx-block-item-link:hover {
    text-decoration: none;
}

.flx-block-item-link:hover .flx-block-item-title {
    text-decoration: underline;
}

.flx-block-item-title-row {
    display: flex;
    align-items: center;
    gap: 6px;
}

.flx-block-item-title {
    color: #1b2d58;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
}

.flx-block-item-description {
    color: #535862;
    font-size: 14px;
    line-height: 20px;
    margin-top: 2px;
}

.flx-block-item-icon {
    font-size: 1rem; /* 16px — rendered at ~20px visual weight in FA6 */
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #1b2d58;
    flex-shrink: 0;
}

.flx-block-item-icon--lock {
    color: #717680;
}

.flx-page-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 832px;
    width: 100%;
    margin: 0 auto;
    padding: 32px;
    box-sizing: border-box;
}

.flx-page-header {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.flx-page-title {
    color: #181d27;
    font-weight: 600;
    font-size: 30px;
    line-height: 38px;
    letter-spacing: -0.02em;
    display: block;
}

.flx-page-header-sub {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.flx-brand-bars {
    display: flex;
    flex-direction: column;
    gap: 4.6px;
}

.flx-brand-bar {
    width: 46px;
    height: 7.7px;
    border-radius: 27px;
    background: linear-gradient(to right, #00c1d5, #b5bd00);
}

.flx-block {
    display: flex;
    flex-direction: column;
    position: relative;
}

.flx-block + .flx-block::before {
    content: '';
    position: absolute;
    top: -20px; /* sits in the middle of the 40px gap */
    left: 0;
    right: 0;
    border-top: 1px solid #d5d7da;
}