﻿
.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");
    }





.icon-wrapper {
    display: block;
    position: relative;
    width: 50px;
    height: 50px;
    float: left;
    text-align: center;
    color: #fff;
    overflow: hidden;
    border-radius: 50%;
}

.custom-bg-white {
    background-color: #fff !important;
}

.custom-bg-orange {
    background-color: #ff4402 !important;
}
.custom-bg-orange2 {
    background-color: #f89b03 !important;
}
.custom-bg-purple {
    background-color: #ab7df6 !important;
}
.custom-bg-green {
    background-color: #7cac25 !important;
}
.custom-bg-green2 {
    background-color: #20b2aa !important;
}
.custom-bg-green3 {
    background-color: #5bd37e !important;
}
.custom-bg-blue {
    background-color: #0e9be2 !important;
}
.custom-bg-blue2 {
    background-color: #ab7df6 !important;
}
.custom-bg-blue3 {
    background-color: #45aeef !important;
}
.custom-bg-blue4 {
    background-color: #85b5ea !important;
}
.custom-bg-gray {
    color: gray !important;
}


.custom-color-orange {
    color: #ff4402 !important;
}

.custom-color-orange2 {
    color: #f89b03 !important;
}

.custom-color-purple {
    color: #ab7df6 !important;
}

.custom-color-green {
    color: #7cac25 !important;
}

.custom-color-green2 {
    color: #20b2aa !important;
}

.custom-color-green3 {
    color: #5bd37e !important;
}

.custom-color-blue {
    color: #0e9be2 !important;
}

.custom-color-blue2 {
    color: #ab7df6 !important;
}

.custom-color-blue3 {
    color: #45aeef !important;
}

.custom-color-blue4 {
    color: #85b5ea !important;
}

.custom-color-gray {
    color: gray !important;
}
