﻿.TransitionClean {
    background-color: rgba(var(--mud-palette-success-rgb), .25)
}

.TransitionDirty {
    background-color: rgba(var(--mud-palette-warning-rgb), .25)
}

.TransitionNone {
    background-color: rgba(var(--mud-palette-error-rgb), .25)
}

.mud-table-row.SnbiDashedRow {
    border-collapse: collapse;
}

    .mud-table-row.SnbiDashedRow td.mud-table-cell {
        border-top: 1px dashed var(--mud-palette-warning);
        border-bottom: 1px dashed var(--mud-palette-warning);
        border-left: none;
        border-right: none;
    }

    .mud-table-row.SnbiDashedRow td:first-child.mud-table-cell {
        border-left: 1px dashed var(--mud-palette-warning);
    }

    .mud-table-row.SnbiDashedRow td:last-child.mud-table-cell {
        border-right: 1px dashed var(--mud-palette-warning);
    }

@media screen and (max-width: 600px) {
    .mud-table-row.SnbiDashedRow td.mud-table-cell {
        display: block;
        border-top: none;
        border-left: 1px dashed var(--mud-palette-warning);
        border-bottom: none;
        border-right: 1px dashed var(--mud-palette-warning);
    }

    .mud-table-row.SnbiDashedRow td:first-child.mud-table-cell {
        border-top: 1px dashed var(--mud-palette-warning);
    }

    .mud-table-row.SnbiDashedRow td:last-child.mud-table-cell {
        border-bottom: 1px dashed var(--mud-palette-warning);
    }
}

.mud-table-row.SnbiDashedRowFlagDeleted {
    border-collapse: collapse;
}

    .mud-table-row.SnbiDashedRowFlagDeleted td.mud-table-cell {
        border-top: 1px dashed var(--mud-palette-error);
        border-bottom: 1px dashed var(--mud-palette-error);
        border-left: none;
        border-right: none;
    }

    .mud-table-row.SnbiDashedRowFlagDeleted td:first-child.mud-table-cell {
        border-left: 1px dashed var(--mud-palette-error);
    }

    .mud-table-row.SnbiDashedRowFlagDeleted td:last-child.mud-table-cell {
        border-right: 1px dashed var(--mud-palette-error);
    }

@media screen and (max-width: 600px) {
    .mud-table-row.SnbiDashedRowFlagDeleted td.mud-table-cell {
        display: block;
        border-top: none;
        border-left: 1px dashed var(--mud-palette-error);
        border-bottom: none;
        border-right: 1px dashed var(--mud-palette-error);
    }

    .mud-table-row.SnbiDashedRowFlagDeleted td:first-child.mud-table-cell {
        border-top: 1px dashed var(--mud-palette-error);
    }

    .mud-table-row.SnbiDashedRowFlagDeleted td:last-child.mud-table-cell {
        border-bottom: 1px dashed var(--mud-palette-error);
    }
}

.mud-table-row.SnbiSolidRowFlagDeleted {
    border-collapse: collapse;
}

    .mud-table-row.SnbiSolidRowFlagDeleted td.mud-table-cell {
        border-top: 1px solid var(--mud-palette-error);
        border-bottom: 1px solid var(--mud-palette-error);
        border-left: none;
        border-right: none;
    }

    .mud-table-row.SnbiSolidRowFlagDeleted td:first-child.mud-table-cell {
        border-left: 1px solid var(--mud-palette-error);
    }

    .mud-table-row.SnbiSolidRowFlagDeleted td:last-child.mud-table-cell {
        border-right: 1px solid var(--mud-palette-error);
    }

@media screen and (max-width: 600px) {
    .mud-table-row.SnbiSolidRowFlagDeleted td.mud-table-cell {
        display: block;
        border-top: none;
        border-left: 1px solid var(--mud-palette-error);
        border-bottom: none;
        border-right: 1px solid var(--mud-palette-error);
    }

    .mud-table-row.SnbiSolidRowFlagDeleted td:first-child.mud-table-cell {
        border-top: 1px solid var(--mud-palette-error);
    }

    .mud-table-row.SnbiSolidRowFlagDeleted td:last-child.mud-table-cell {
        border-bottom: 1px solid var(--mud-palette-error);
    }
}

.SnbiCountyFilterContainer {
    width: 386px;
}

    .SnbiCountyFilterContainer .CountyCodeFilter {
        overflow-y: auto;
        max-height: 250px;
    }

.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");
    }

iframe[name='JSD widget'] {
    display: block;
}