/* /Helpers/SpinnerChase.razor.rz.scp.css */

/* Config */
:root[b-vey3hdvr4w] {
    --sk-size: 40px;
    --sk-color: #333;
}


/* Utility class for centering */
.sk-center[b-vey3hdvr4w] {
    margin: auto;
}

/*  Chase

      <div class="sk-chase">
        <div class="sk-chase-dot"></div>
        <div class="sk-chase-dot"></div>
        <div class="sk-chase-dot"></div>
        <div class="sk-chase-dot"></div>
        <div class="sk-chase-dot"></div>
        <div class="sk-chase-dot"></div>
      </div>
 */
.sk-chase[b-vey3hdvr4w] {
    width: var(--sk-size);
    height: var(--sk-size);
    position: relative;
    animation: sk-chase-b-vey3hdvr4w 2.5s infinite linear both;
}

.sk-chase-dot[b-vey3hdvr4w] {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    animation: sk-chase-dot-b-vey3hdvr4w 2.0s infinite ease-in-out both;
}

    .sk-chase-dot[b-vey3hdvr4w]:before {
        content: '';
        display: block;
        width: 25%;
        height: 25%;
        background-color: var(--sk-color);
        border-radius: 100%;
        animation: sk-chase-dot-before-b-vey3hdvr4w 2.0s infinite ease-in-out both;
    }

    .sk-chase-dot:nth-child(1)[b-vey3hdvr4w] {
        animation-delay: -1.1s;
    }

    .sk-chase-dot:nth-child(2)[b-vey3hdvr4w] {
        animation-delay: -1.0s;
    }

    .sk-chase-dot:nth-child(3)[b-vey3hdvr4w] {
        animation-delay: -0.9s;
    }

    .sk-chase-dot:nth-child(4)[b-vey3hdvr4w] {
        animation-delay: -0.8s;
    }

    .sk-chase-dot:nth-child(5)[b-vey3hdvr4w] {
        animation-delay: -0.7s;
    }

    .sk-chase-dot:nth-child(6)[b-vey3hdvr4w] {
        animation-delay: -0.6s;
    }

    .sk-chase-dot:nth-child(1)[b-vey3hdvr4w]:before {
        animation-delay: -1.1s;
    }

    .sk-chase-dot:nth-child(2)[b-vey3hdvr4w]:before {
        animation-delay: -1.0s;
    }

    .sk-chase-dot:nth-child(3)[b-vey3hdvr4w]:before {
        animation-delay: -0.9s;
    }

    .sk-chase-dot:nth-child(4)[b-vey3hdvr4w]:before {
        animation-delay: -0.8s;
    }

    .sk-chase-dot:nth-child(5)[b-vey3hdvr4w]:before {
        animation-delay: -0.7s;
    }

    .sk-chase-dot:nth-child(6)[b-vey3hdvr4w]:before {
        animation-delay: -0.6s;
    }

@keyframes sk-chase-b-vey3hdvr4w {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes sk-chase-dot-b-vey3hdvr4w {
    80%, 100% {
        transform: rotate(360deg);
    }
}

@keyframes sk-chase-dot-before-b-vey3hdvr4w {
    50% {
        transform: scale(0.4);
    }

    100%, 0% {
        transform: scale(1.0);
    }
}
/* /Helpers/SpinnerWave.razor.rz.scp.css */
/* Config */
:root[b-vxqt9vacfc] {
    --sk-size: 40px;
    --sk-color: #333;
}


/* Utility class for centering */
.sk-center[b-vxqt9vacfc] {
    margin: auto;
}

/*  Wave

      <div class="sk-wave">
        <div class="sk-wave-rect"></div>
        <div class="sk-wave-rect"></div>
        <div class="sk-wave-rect"></div>
        <div class="sk-wave-rect"></div>
        <div class="sk-wave-rect"></div>
      </div>
 */
.sk-wave[b-vxqt9vacfc] {
    width: var(--sk-size);
    height: var(--sk-size);
    display: flex;
    justify-content: space-between;
}

.sk-wave-rect[b-vxqt9vacfc] {
    background-color: var(--sk-color);
    height: 100%;
    width: 15%;
    animation: sk-wave-b-vxqt9vacfc 1.2s infinite ease-in-out;
}

    .sk-wave-rect:nth-child(1)[b-vxqt9vacfc] {
        animation-delay: -1.2s;
    }

    .sk-wave-rect:nth-child(2)[b-vxqt9vacfc] {
        animation-delay: -1.1s;
    }

    .sk-wave-rect:nth-child(3)[b-vxqt9vacfc] {
        animation-delay: -1.0s;
    }

    .sk-wave-rect:nth-child(4)[b-vxqt9vacfc] {
        animation-delay: -0.9s;
    }

    .sk-wave-rect:nth-child(5)[b-vxqt9vacfc] {
        animation-delay: -0.8s;
    }

@keyframes sk-wave-b-vxqt9vacfc {
    0%, 40%, 100% {
        transform: scaleY(0.4);
    }

    20% {
        transform: scaleY(1);
    }
}
/* /Pages/CustomNotFound.razor.rz.scp.css */
.customNotFound[b-aebhcfoc16] {
	text-align: center;
	color: red;
	font-size: 35px;
	box-shadow: 1px 1px 1px grey;
}
/* /Shared/MainLayout.razor.rz.scp.css */
.page[b-dr1t5z1gz8] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-dr1t5z1gz8] {
    flex: 1;
}

.sidebar[b-dr1t5z1gz8] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-dr1t5z1gz8] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-dr1t5z1gz8]  a, .top-row[b-dr1t5z1gz8]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-dr1t5z1gz8]  a:hover, .top-row[b-dr1t5z1gz8]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-dr1t5z1gz8]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row:not(.auth)[b-dr1t5z1gz8] {
        display: none;
    }

    .top-row.auth[b-dr1t5z1gz8] {
        justify-content: space-between;
    }

    .top-row[b-dr1t5z1gz8]  a, .top-row[b-dr1t5z1gz8]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-dr1t5z1gz8] {
        flex-direction: row;
    }

    .sidebar[b-dr1t5z1gz8] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-dr1t5z1gz8] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-dr1t5z1gz8]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-dr1t5z1gz8], article[b-dr1t5z1gz8] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* /Shared/NavMenu.razor.rz.scp.css */
.nav-menu[b-5j283711sm] {
    margin-top: 25px;
}

.navbar-toggler[b-5j283711sm] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-5j283711sm] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-5j283711sm] {
    font-size: 1.1rem;
}

.oi[b-5j283711sm] {
    width: 2rem;
    font-size: 1.1rem;
    vertical-align: text-top;
    top: -2px;
}

.nav-item[b-5j283711sm] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-5j283711sm] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-5j283711sm] {
        padding-bottom: 1rem;
    }

    .nav-item[b-5j283711sm]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

.nav-item[b-5j283711sm]  a.active {
    background-color: rgba(255,255,255,0.25);
    color: white;
}

.nav-item[b-5j283711sm]  a:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

@media (min-width: 641px) {
    .navbar-toggler[b-5j283711sm] {
        display: none;
    }

    .collapse[b-5j283711sm] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }
}
/* /Shared/UpdateAvailableDetector.razor.rz.scp.css */
.floating-update-button[b-bo1afoxpk1] {
    position: fixed;
    right: 2rem;
    bottom: 2rem;
    padding: 1rem 1.5rem;
    animation: fadein-b-bo1afoxpk1 2s ease-out;
}

@keyframes fadein-b-bo1afoxpk1 {
    from {
        right: -100%;
    }

    to {
        right: 2rem;
    }
}
