/* Animated loader */
.loader {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    position: relative;
    animation: rotate 1s linear infinite
}

    .loader::before {
        content: "";
        box-sizing: border-box;
        position: absolute;
        inset: 0px;
        border-radius: 50%;
        border: 5px solid #3D4551;
        animation: prixClipFix 2s linear infinite;
    }

@keyframes rotate {
    100% {
        transform: rotate(360deg)
    }
}

@keyframes prixClipFix {
    0% {
        clip-path: polygon(50% 50%,0 0,0 0,0 0,0 0,0 0)
    }

    25% {
        clip-path: polygon(50% 50%,0 0,100% 0,100% 0,100% 0,100% 0)
    }

    50% {
        clip-path: polygon(50% 50%,0 0,100% 0,100% 100%,100% 100%,100% 100%)
    }

    75% {
        clip-path: polygon(50% 50%,0 0,100% 0,100% 100%,0 100%,0 100%)
    }

    100% {
        clip-path: polygon(50% 50%,0 0,100% 0,100% 100%,0 100%,0 0)
    }
}
/* Tippy (tooltip) theme */
.tippy-box[data-theme~='dark'] {
    background-color: #1b1b1b;
    color: #ffffff;
    font-family: Source Sans Pro Web, Helvetica Neue, Helvetica, Roboto, Arial, sans-serif;
    font-size: 100%;
}
    .tippy-box[data-theme~='dark'][data-placement^='top'] > .tippy-arrow::before {
        border-top-color: #1b1b1b;
    }
    .tippy-box[data-theme~='dark'][data-placement^='bottom'] > .tippy-arrow::before {
        border-bottom-color: #1b1b1b;
    }
    .tippy-box[data-theme~='dark'][data-placement^='left'] > .tippy-arrow::before {
        border-left-color: #1b1b1b;
    }
    .tippy-box[data-theme~='dark'][data-placement^='right'] > .tippy-arrow::before {
        border-right-color: #1b1b1b;
    }
    .tippy-box[data-theme~='dark'] > .tippy-content {
        padding: 12px;
        font-weight: normal;
    }
/* Layout styles*/
#blazor-error-ui {
    bottom: 0;
    display: none;
    left: 0;
    position: fixed;
    width: 100%;
    z-index: 99999;
}

.usa-alert .dismiss {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}
/* Related table style overrides */
.related-table-container {
    background-color: #FAF3D14D !important;
}

.transparent-table-cell {
    background-color: unset !important;
}