@import '_content/AuditsPlatformCommon/AuditsPlatformCommon.bundle.scp.css';
@import '_content/Microsoft.AspNetCore.Components.QuickGrid/Microsoft.AspNetCore.Components.QuickGrid.bundle.scp.css';

/* /Components/Loader.razor.rz.scp.css */
.loading-progress[b-3wiuzepacz] {
    position: relative;
    display: block;
    width: 15rem;
    margin: 0 auto 1rem auto;
}

    .loading-progress.rotate[b-3wiuzepacz] {
        width: 3rem;
        margin: 20vh auto 1rem auto;
        animation: loading-b-3wiuzepacz 3.3s linear infinite;
    }

    .loading-progress circle[b-3wiuzepacz] {
        fill: none;
        stroke: #e0e0e0;
        stroke-width: 0.6rem;
        transform-origin: 50% 50%;
        transform: rotate(-90deg);
    }

        .loading-progress circle:last-child[b-3wiuzepacz] {
            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[b-3wiuzepacz] {
    position: absolute;
    text-align: center;
    font-weight: bold;
    inset: calc(20vh + 3.25rem) 0 auto 0.2rem;
}

    .loading-progress-text[b-3wiuzepacz]:after {
        content: var(--blazor-load-percentage-text, "Loading");
    }

@keyframes loading-b-3wiuzepacz {
    0 {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
/* /Components/UpdateAvailableDetector.razor.rz.scp.css */
/*.floating-update-button {
    position: fixed;
    right: 2rem;
    bottom: 2rem;
    padding: 1rem 1.5rem;
    animation: fadein 2s ease-out;
}

@keyframes fadein {
    from {
        right: -100%;
    }

    to {
        right: 2rem;
    }
}*/
/* /Layout/BlankLayout.razor.rz.scp.css */
.page[b-4dmoxiggsj] {
    position: relative;
    display: flex;
    flex-direction: column;
    /*Code I added - Start*/
    min-height: 100vh;
    /*Code I added - End*/
}

main[b-4dmoxiggsj] {
    flex: 1;
}

.sidebar[b-4dmoxiggsj] {
    /*background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);*/ /*Original code*/
    background-color: #16345f;
}

.top-row[b-4dmoxiggsj] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 4rem;
    display: flex;
    align-items: center;
}

    .top-row[b-4dmoxiggsj]  a, .top-row .btn-link[b-4dmoxiggsj] {
        white-space: nowrap;
        margin-left: 1.5rem;
    }

    .top-row a:first-child[b-4dmoxiggsj] {
        overflow: hidden;
        text-overflow: ellipsis;
    }

/*Code I added - Start*/
.bottom-row[b-4dmoxiggsj] {
    background-color: #f7f7f7;
    border-top: 1px solid #d6d5d5;
    height: 3.5rem;
    display: flex;
    align-items: center;
    position: absolute;
    bottom: 0;
    width: 100vw;
    background-color: #de7139;
}

    /*Select all a elements where parent is a .bottom-row*/
    .bottom-row > a[b-4dmoxiggsj] {
        display: flex;
        color: rgb(33, 37, 41);
        /*color and text-decor used to not show it as link*/
        text-decoration: none;
        /*fontsize is the same copied from navbar-brand style inside NavMenu.razor.css*/
        font-size: 1.1rem;
    }

/*Optionally this selector will also work: main article.content*/
main > .content[b-4dmoxiggsj] {
/*    overflow-y: auto;*/
    margin-bottom: 3.5rem;
}
/*Code I added - End*/

/*less than or equal to*/
/*Max-width is the maximum width at which a style will continue to be applied. 
After that, the style will STOP being applied.*/
@media (max-width: 640.98px) {
    .top-row:not(.logindisplay)[b-4dmoxiggsj] {
        display: none;
    }

    .top-row.logindisplay[b-4dmoxiggsj] {
        justify-content: space-between;
    }

    .top-row a[b-4dmoxiggsj], .top-row .btn-link[b-4dmoxiggsj] {
        margin-left: 0;
    }
}

/*greater than or equal to*/
/*Min-width is the minimum width at which a style will START to be applied*/
@media (min-width: 641px) {
    .page[b-4dmoxiggsj] {
        flex-direction: row;
    }

    .sidebar[b-4dmoxiggsj] {
        min-width:250px;
        width: 250px;
        height: 100vmax; /*changed*/
        position: sticky;
        top: 0;
    }

    /*Code I added - Start*/
    .bottom-row[b-4dmoxiggsj] {
        /*left: 250px;
        width: calc(100vw - 250px);*/
        justify-content: flex-end;
        width: 100%;
        padding-right: 10px;
    }
    /*Code I added - End*/

    .top-row[b-4dmoxiggsj] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row[b-4dmoxiggsj], article[b-4dmoxiggsj] {
      /*  padding-left: 0.5rem !important;*/
        /*padding-right: 2.0rem !important;*/
    }
}
/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-ay1z32aqgc] {
    position: relative;
    display: flex;
    flex-direction: column;
    /*Code I added - Start*/
    min-height: 100vh;
    /*Code I added - End*/
}

main[b-ay1z32aqgc] {
    flex: 1;
}

.sidebar[b-ay1z32aqgc] {
    /*background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);*/ /*Original code*/
    background-color: #16345f;
}

.top-row[b-ay1z32aqgc] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 4rem;
    display: flex;
    align-items: center;
}

    .top-row[b-ay1z32aqgc]  a, .top-row .btn-link[b-ay1z32aqgc] {
        white-space: nowrap;
        margin-left: 1.5rem;
    }

    .top-row a:first-child[b-ay1z32aqgc] {
        overflow: hidden;
        text-overflow: ellipsis;
    }

/*Code I added - Start*/
.bottom-row[b-ay1z32aqgc] {
    background-color: #f7f7f7;
    border-top: 1px solid #d6d5d5;
    height: 3.5rem;
    display: flex;
    align-items: center;
    position: absolute;
    bottom: 0;
    width: 100vw;
    background-color: #de7139;
}

    /*Select all a elements where parent is a .bottom-row*/
    .bottom-row > a[b-ay1z32aqgc] {
        display: flex;
        color: rgb(33, 37, 41);
        /*color and text-decor used to not show it as link*/
        text-decoration: none;
        /*fontsize is the same copied from navbar-brand style inside NavMenu.razor.css*/
        font-size: 1.1rem;
    }

/*Optionally this selector will also work: main article.content*/
main > .content[b-ay1z32aqgc] {
/*    overflow-y: auto;*/
    margin-bottom: 3.5rem;
}
/*Code I added - End*/

/*less than or equal to*/
/*Max-width is the maximum width at which a style will continue to be applied. 
After that, the style will STOP being applied.*/
@media (max-width: 640.98px) {
    .top-row:not(.logindisplay)[b-ay1z32aqgc] {
        display: none;
    }

    .top-row.logindisplay[b-ay1z32aqgc] {
        justify-content: space-between;
    }

    .top-row a[b-ay1z32aqgc], .top-row .btn-link[b-ay1z32aqgc] {
        margin-left: 0;
    }
}

/*greater than or equal to*/
/*Min-width is the minimum width at which a style will START to be applied*/
@media (min-width: 641px) {
    .page[b-ay1z32aqgc] {
        flex-direction: row;
    }

    .sidebar[b-ay1z32aqgc] {
        min-width:250px;
        width: 250px;
        height: 100vmax; /*changed*/
        position: sticky;
        top: 0;
    }

    /*Code I added - Start*/
    .bottom-row[b-ay1z32aqgc] {
        /*left: 250px;
        width: calc(100vw - 250px);*/
        justify-content: flex-end;
        width: 100%;
        padding-right: 10px;
    }
    /*Code I added - End*/

    .top-row[b-ay1z32aqgc] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row[b-ay1z32aqgc], article[b-ay1z32aqgc] {
      /*  padding-left: 0.5rem !important;*/
        /*padding-right: 2.0rem !important;*/
    }
}
/* /Layout/NavLinksDev.razor.rz.scp.css */
.navbar-toggler[b-6orlv4t2nm] {
    background-color: rgba(255, 255, 255, 0.1);
}

.bi-file-lock-fill-nav-menu[b-6orlv4t2nm] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-file-lock-fill' viewBox='0 0 16 16'%3E%3Cpath d='M7 6a1 1 0 0 1 2 0v1H7zM6 8.3c0-.042.02-.107.105-.175A.637.637 0 0 1 6.5 8h3a.64.64 0 0 1 .395.125c.085.068.105.133.105.175v2.4c0 .042-.02.107-.105.175A.637.637 0 0 1 9.5 11h-3a.637.637 0 0 1-.395-.125C6.02 10.807 6 10.742 6 10.7z'/%3E%3Cpath d='M12 0H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2m-2 6v1.076c.54.166 1 .597 1 1.224v2.4c0 .816-.781 1.3-1.5 1.3h-3c-.719 0-1.5-.484-1.5-1.3V8.3c0-.627.46-1.058 1-1.224V6a2 2 0 1 1 4 0'/%3E%3C/svg%3E");
    margin-left: 10px;
}

/*.top-row {
    background-color: #2f8562;
}*/

.navbar-brand[b-6orlv4t2nm] {
    font-size: 1.1rem;
}

.oi[b-6orlv4t2nm] {
    width: 2rem;
    font-size: 1.1rem;
    vertical-align: text-top;
    top: -2px;
}

.nav-item[b-6orlv4t2nm] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-6orlv4t2nm] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-6orlv4t2nm] {
        padding-bottom: 1rem;
    }

    .nav-item[b-6orlv4t2nm]  a {
        border-radius: 4px;
        height: 2.5rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
        background-color: rgba(255,255,255,0.25);
        color: white;
        border-left: solid;
        border-left-width: 5px;
        border-left-color: #de7139;
    }

        .nav-item[b-6orlv4t2nm]  a.active {
            background-color: rgba(255,255,255,0.1);;
            color: white;
            border-left: solid;
            border-left-width: 10px;
            border-left-color: green;
            border-radius: 0px;
        }

/*        .active{
            background-color:yellow;
        }*/

/*        .nav-item ::deep a:hover {
            background-color: rgba(255,255,255,0.1);
            color: white;
            border-left: solid;
            border-left-width: 5px;
            border-left-color: #de7139;
            border-radius: 0px;
        }*/

@media (min-width: 641px) {
    .navbar-toggler[b-6orlv4t2nm] {
        display: none;
    }

    .collapse[b-6orlv4t2nm] {
        /*Never collapse the sidebar for wide screens*/
        display: block;
    }


    .py-2-5[b-6orlv4t2nm] {
        padding-top: .76rem !important;
        padding-bottom: .76rem !important;
    }
}
/* /Layout/NavLinksPrd.razor.rz.scp.css */
.navbar-toggler[b-foiu8687lz] {
    background-color: rgba(255, 255, 255, 0.1);
}

.bi-file-lock-fill-nav-menu[b-foiu8687lz] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-file-lock-fill' viewBox='0 0 16 16'%3E%3Cpath d='M7 6a1 1 0 0 1 2 0v1H7zM6 8.3c0-.042.02-.107.105-.175A.637.637 0 0 1 6.5 8h3a.64.64 0 0 1 .395.125c.085.068.105.133.105.175v2.4c0 .042-.02.107-.105.175A.637.637 0 0 1 9.5 11h-3a.637.637 0 0 1-.395-.125C6.02 10.807 6 10.742 6 10.7z'/%3E%3Cpath d='M12 0H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2m-2 6v1.076c.54.166 1 .597 1 1.224v2.4c0 .816-.781 1.3-1.5 1.3h-3c-.719 0-1.5-.484-1.5-1.3V8.3c0-.627.46-1.058 1-1.224V6a2 2 0 1 1 4 0'/%3E%3C/svg%3E");
    margin-left: 10px;
}

/*.top-row {
    background-color: #2f8562;
}*/

.navbar-brand[b-foiu8687lz] {
    font-size: 1.1rem;
}

.oi[b-foiu8687lz] {
    width: 2rem;
    font-size: 1.1rem;
    vertical-align: text-top;
    top: -2px;
}

.nav-item[b-foiu8687lz] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-foiu8687lz] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-foiu8687lz] {
        padding-bottom: 1rem;
    }

    .nav-item[b-foiu8687lz]  a {
        border-radius: 4px;
        height: 2.5rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
        background-color: rgba(255,255,255,0.25);
        color: white;
        border-left: solid;
        border-left-width: 5px;
        border-left-color: #de7139;
    }

        .nav-item[b-foiu8687lz]  a.active {
            background-color: rgba(255,255,255,0.1);;
            color: white;
            border-left: solid;
            border-left-width: 10px;
            border-left-color: green;
            border-radius: 0px;
        }

/*        .active{
            background-color:yellow;
        }*/

/*        .nav-item ::deep a:hover {
            background-color: rgba(255,255,255,0.1);
            color: white;
            border-left: solid;
            border-left-width: 5px;
            border-left-color: #de7139;
            border-radius: 0px;
        }*/

@media (min-width: 641px) {
    .navbar-toggler[b-foiu8687lz] {
        display: none;
    }

    .collapse[b-foiu8687lz] {
        /*Never collapse the sidebar for wide screens*/
        display: block;
    }


    .py-2-5[b-foiu8687lz] {
        padding-top: .76rem !important;
        padding-bottom: .76rem !important;
    }
}
/* /Layout/NavLinksStg.razor.rz.scp.css */
.navbar-toggler[b-s41y5zuwu0] {
    background-color: rgba(255, 255, 255, 0.1);
}

.bi-file-lock-fill-nav-menu[b-s41y5zuwu0] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-file-lock-fill' viewBox='0 0 16 16'%3E%3Cpath d='M7 6a1 1 0 0 1 2 0v1H7zM6 8.3c0-.042.02-.107.105-.175A.637.637 0 0 1 6.5 8h3a.64.64 0 0 1 .395.125c.085.068.105.133.105.175v2.4c0 .042-.02.107-.105.175A.637.637 0 0 1 9.5 11h-3a.637.637 0 0 1-.395-.125C6.02 10.807 6 10.742 6 10.7z'/%3E%3Cpath d='M12 0H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2m-2 6v1.076c.54.166 1 .597 1 1.224v2.4c0 .816-.781 1.3-1.5 1.3h-3c-.719 0-1.5-.484-1.5-1.3V8.3c0-.627.46-1.058 1-1.224V6a2 2 0 1 1 4 0'/%3E%3C/svg%3E");
    margin-left: 10px;
}

/*.top-row {
    background-color: #2f8562;
}*/

.navbar-brand[b-s41y5zuwu0] {
    font-size: 1.1rem;
}

.oi[b-s41y5zuwu0] {
    width: 2rem;
    font-size: 1.1rem;
    vertical-align: text-top;
    top: -2px;
}

.nav-item[b-s41y5zuwu0] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-s41y5zuwu0] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-s41y5zuwu0] {
        padding-bottom: 1rem;
    }

    .nav-item[b-s41y5zuwu0]  a {
        border-radius: 4px;
        height: 2.5rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
        background-color: rgba(255,255,255,0.25);
        color: white;
        border-left: solid;
        border-left-width: 5px;
        border-left-color: #de7139;
    }

        .nav-item[b-s41y5zuwu0]  a.active {
            background-color: rgba(255,255,255,0.1);;
            color: white;
            border-left: solid;
            border-left-width: 10px;
            border-left-color: green;
            border-radius: 0px;
        }

/*        .active{
            background-color:yellow;
        }*/

/*        .nav-item ::deep a:hover {
            background-color: rgba(255,255,255,0.1);
            color: white;
            border-left: solid;
            border-left-width: 5px;
            border-left-color: #de7139;
            border-radius: 0px;
        }*/

@media (min-width: 641px) {
    .navbar-toggler[b-s41y5zuwu0] {
        display: none;
    }

    .collapse[b-s41y5zuwu0] {
        /*Never collapse the sidebar for wide screens*/
        display: block;
    }


    .py-2-5[b-s41y5zuwu0] {
        padding-top: .76rem !important;
        padding-bottom: .76rem !important;
    }
}
/* /Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-46rb394mvb] {
    background-color: rgba(255, 255, 255, 0.1);
}

.bi-file-lock-fill-nav-menu[b-46rb394mvb] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-file-lock-fill' viewBox='0 0 16 16'%3E%3Cpath d='M7 6a1 1 0 0 1 2 0v1H7zM6 8.3c0-.042.02-.107.105-.175A.637.637 0 0 1 6.5 8h3a.64.64 0 0 1 .395.125c.085.068.105.133.105.175v2.4c0 .042-.02.107-.105.175A.637.637 0 0 1 9.5 11h-3a.637.637 0 0 1-.395-.125C6.02 10.807 6 10.742 6 10.7z'/%3E%3Cpath d='M12 0H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2m-2 6v1.076c.54.166 1 .597 1 1.224v2.4c0 .816-.781 1.3-1.5 1.3h-3c-.719 0-1.5-.484-1.5-1.3V8.3c0-.627.46-1.058 1-1.224V6a2 2 0 1 1 4 0'/%3E%3C/svg%3E");
    margin-left: 10px;
}

/*.top-row {
    background-color: #2f8562;
}*/

.navbar-brand[b-46rb394mvb] {
    font-size: 1.1rem;
}

.oi[b-46rb394mvb] {
    width: 2rem;
    font-size: 1.1rem;
    vertical-align: text-top;
    top: -2px;
}

.nav-item[b-46rb394mvb] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-46rb394mvb] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-46rb394mvb] {
        padding-bottom: 1rem;
    }

    .nav-item[b-46rb394mvb]  a {
        border-radius: 4px;
        height: 2.5rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
        background-color: rgba(255,255,255,0.25);
        color: white;
        border-left: solid;
        border-left-width: 5px;
        border-left-color: #de7139;
    }

        .nav-item[b-46rb394mvb]  a.active {
            background-color: rgba(255,255,255,0.1);;
            color: white;
            border-left: solid;
            border-left-width: 10px;
            border-left-color: green;
            border-radius: 0px;
        }

/*        .active{
            background-color:yellow;
        }*/

/*        .nav-item ::deep a:hover {
            background-color: rgba(255,255,255,0.1);
            color: white;
            border-left: solid;
            border-left-width: 5px;
            border-left-color: #de7139;
            border-radius: 0px;
        }*/

@media (min-width: 641px) {
    .navbar-toggler[b-46rb394mvb] {
        display: none;
    }

    .collapse[b-46rb394mvb] {
        /*Never collapse the sidebar for wide screens*/
        display: block;
    }


    .py-2-5[b-46rb394mvb] {
        padding-top: .76rem !important;
        padding-bottom: .76rem !important;
    }
}
/* /Pages/Diagnostics.razor.rz.scp.css */


.grid[b-wmgug25sra] {
    column-gap: 5px;
}

    .grid[b-wmgug25sra]  table {
        min-width: 100%;
        max-width: 100%;
    }

[b-wmgug25sra] .quickgrid[theme=marstons] .col-title {
    font-size: 12px;
}

[b-wmgug25sra] .quickgrid[theme=marstons] .extra {
    font-size: 10px;
}

[b-wmgug25sra] .quickgrid[theme=marstons] .col-options {
    transform: none !important;
}

[b-wmgug25sra] .quickgrid[theme=marstons] .col-title {
    gap: 0.4rem;
    font-weight: bold;
    text-transform: uppercase;
    background-color: #2f8562;
    color: white;
    padding: 5px;
}

[b-wmgug25sra] .quickgrid[theme=marstons] .sort-indicator {
    filter: invert(100%) sepia(0%) saturate(7500%) hue-rotate(151deg) brightness(115%) contrast(102%);
}

[b-wmgug25sra] .quickgrid[theme=marstons] .col-options-button {
    background-color: #2f8562;
    padding-left: 30px;
}

[b-wmgug25sra] .quickgrid[theme=marstons] .gridStyling {
    font-size: 14px;
    font-family: Manier-Medium,serif;
    line-height: 3;
    border-bottom-style: solid;
    border-bottom-width: medium;
    border-bottom-color: #de7139;
}

[b-wmgug25sra] table {
    width: 100%
}

.title[b-wmgug25sra] {
    display: flex;
    flex-direction: row;
    padding: 10px;
    align-items: center
}


.indicator[b-wmgug25sra] {
    margin-left: 10px;
}

.badgeIndicatoPass[b-wmgug25sra] {
    display: inline-block;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    font-size: 13px;
    margin-bottom: 2px;
    width: 100%;
    background-color: #2f8562;
}

.badgeIndicatorFail[b-wmgug25sra] {
    display: inline-block;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    font-size: 13px;
    margin-bottom: 2px;
    width: 100%;
    background-color: #de7139;
}
/* /Pages/InProgress.razor.rz.scp.css */


.grid[b-y8ksnu24d9] {
    column-gap: 5px;
}

    .grid[b-y8ksnu24d9]  table {
        min-width: 100%;
        max-width: 100%;
    }

[b-y8ksnu24d9] .quickgrid[theme=marstons] .col-title {
    font-size: 12px;
}

[b-y8ksnu24d9] .quickgrid[theme=marstons] .extra {
    font-size: 10px;
}

[b-y8ksnu24d9] .quickgrid[theme=marstons] .col-options {
    transform: none !important;
}

[b-y8ksnu24d9] .quickgrid[theme=marstons] .col-title {
    gap: 0.4rem;
    font-weight: bold;
    text-transform: uppercase;
    background-color: #2f8562;
    color: white;
    padding: 5px;
}

[b-y8ksnu24d9] .quickgrid[theme=marstons] .sort-indicator {
    filter: invert(100%) sepia(0%) saturate(7500%) hue-rotate(151deg) brightness(115%) contrast(102%);
}

[b-y8ksnu24d9] .quickgrid[theme=marstons] .col-options-button {
    background-color: #2f8562;
    padding-left: 30px;
}

[b-y8ksnu24d9] .quickgrid[theme=marstons] .gridStyling {
    font-size: 14px;
    font-family: Manier-Medium,serif;
    line-height: 3;
    border-bottom-style: solid;
    border-bottom-width: medium;
    border-bottom-color: #de7139;
}

[b-y8ksnu24d9] table {
    width: 100%
}

[b-y8ksnu24d9] .quickgrid[theme=marstons] tr {
    border-bottom: solid 1px lightgrey;
    padding: 4px 2px;
}

.title[b-y8ksnu24d9] {
    display: flex;
    flex-direction: row;
    padding: 10px;
    align-items: center
}


.indicator[b-y8ksnu24d9] {
    margin-left: 10px;
}

.badgeIndicatoPass[b-y8ksnu24d9] {
    display: inline-block;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    font-size: 13px;
    margin-bottom: 2px;
    width: 100%;
    background-color: #2f8562;
}

.badgeIndicatorFail[b-y8ksnu24d9] {
    display: inline-block;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    font-size: 13px;
    margin-bottom: 2px;
    width: 100%;
    background-color: #de7139;
}
/* /Pages/Shared/AuditsList.razor.rz.scp.css */
.e[b-ok2dqrznbm] {
}

.grid[b-ok2dqrznbm] {
    column-gap: 5px;
}

    .grid[b-ok2dqrznbm]  table {
        min-width: 100%;
        max-width: 100%;
    }

[b-ok2dqrznbm] .quickgrid[theme=marstons] .col-title {
    font-size: 12px;
}

[b-ok2dqrznbm] .quickgrid[theme=marstons] .extra {
    font-size: 10px;
}

/*::deep .quickgrid[theme=marstons] .col-options {
    transform: none !important;
}*/

[b-ok2dqrznbm] .quickgrid[theme=marstons] .col-title {
    gap: 0.4rem;
    font-weight: bold;
    text-transform: uppercase;
    background-color: white;
    color: white;
    padding: 0px;
    height: 1px;
}

[b-ok2dqrznbm] .quickgrid[theme=marstons] .sort-indicator {
    filter: invert(100%) sepia(0%) saturate(7500%) hue-rotate(151deg) brightness(115%) contrast(102%);
}

[b-ok2dqrznbm] .quickgrid[theme=marstons] .col-options-button {
    background-color: #2f8562;
    padding-left: 30px;
}

[b-ok2dqrznbm] .quickgrid[theme=marstons] .gridStyling {
    font-size: 14px;
    font-family: Manier-Medium,serif;
    line-height: 2;
    border-bottom-style: solid;
    border-bottom-width: 5px;
    border-bottom-color: white;
}

/*::deep thead {
    display:none;
}*/

/*::deep thead {
    display: none;
}*/

[b-ok2dqrznbm] table {
    width: 100%
}

[b-ok2dqrznbm] tr {
    width: 100%
}

.title[b-ok2dqrznbm] {
    display: flex;
    flex-direction: row;
    padding: 10px;
    align-items: center
}


.indicator[b-ok2dqrznbm] {
    margin-left: 10px;
}

.badgeIndicatoPass[b-ok2dqrznbm] {
    display: inline-block;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    font-size: 13px;
    margin-bottom: 2px;
    width: 100%;
    background-color: #2f8562;
}

.badgeIndicatorFail[b-ok2dqrznbm] {
    display: inline-block;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    font-size: 13px;
    margin-bottom: 2px;
    width: 100%;
    background-color: #de7139;
}

/*::deep thead {
    display: none;
}*/
/* /Pages/Shared/NewAudit.razor.rz.scp.css */


.grid[b-pj6t9wn0om] {
    column-gap: 5px;
}

    .grid[b-pj6t9wn0om]  table {
        min-width: 100%;
        max-width: 100%;
    }

[b-pj6t9wn0om] .quickgrid[theme=marstons] .col-title {
    font-size: 12px;
}

[b-pj6t9wn0om] .quickgrid[theme=marstons] .extra {
    font-size: 10px;
}

[b-pj6t9wn0om] .quickgrid[theme=marstons] .col-options {
    transform: none !important;
}

[b-pj6t9wn0om] .quickgrid[theme=marstons] .col-title {
    gap: 0.4rem;
    font-weight: bold;
    text-transform: uppercase;
    background-color: #2f8562;
    color: white;
    padding: 5px;
}

[b-pj6t9wn0om] .quickgrid[theme=marstons] .sort-indicator {
    filter: invert(100%) sepia(0%) saturate(7500%) hue-rotate(151deg) brightness(115%) contrast(102%);
}

[b-pj6t9wn0om] .quickgrid[theme=marstons] .col-options-button {
    background-color: #2f8562;
    padding-left: 30px;
}

[b-pj6t9wn0om] .quickgrid[theme=marstons] .gridStyling {
    font-size: 14px;
    font-family: Manier-Medium,serif;
    line-height: 3;
    border-bottom-style: solid;
    border-bottom-width: medium;
    border-bottom-color: #de7139;
}

[b-pj6t9wn0om] table {
    width: 100%
}

.title[b-pj6t9wn0om] {
    display: flex;
    flex-direction: row;
    padding: 10px;
    align-items: center
}


.indicator[b-pj6t9wn0om] {
    margin-left: 10px;
}

.badgeIndicatoPass[b-pj6t9wn0om] {
    display: inline-block;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    font-size: 13px;
    margin-bottom: 2px;
    width: 100%;
    background-color: #2f8562;
}

.badgeIndicatorFail[b-pj6t9wn0om] {
    display: inline-block;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    font-size: 13px;
    margin-bottom: 2px;
    width: 100%;
    background-color: #de7139;
}
/* /Pages/Shared/SyncV2.razor.rz.scp.css */
.banner[b-tqya7oqs37] {
    background-color: #de7139;
    position: relative;
    padding: 1rem 1rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
}


.badge-container[b-tqya7oqs37] {
    position: relative;
}

.value-badge-with-value[b-tqya7oqs37] {
    font-size: 0.9em;
    position: relative;
    background-color: #2f8562;
    border-radius: 0;
    width: 4.5em;
}

.statusValue[b-tqya7oqs37] {
    font-size: 0.8em;
    position: relative;
    background-color: #2f8562;
    border-radius: 0;
    padding:0.25em;
    color:white;
    display:block;
    width:6em;
}


.value-badge[b-tqya7oqs37] {
    background-color: red;
    font-size: 12px;
    color: white;
    text-align: center;
    width: 20px;
    height: 20px;
    border-radius: 35%;
    position: relative;
    top: -35px;
    left: 17px;
}

.newSurvey[b-tqya7oqs37] {
    background-color: #de7139;
    border-color: transparent;
}

.grid[b-tqya7oqs37] {
    height: 25rem;
    overflow-y: auto;
    column-gap:10px;
}

    .grid[b-tqya7oqs37]  table {
        min-width: 100%;
        max-width: 100%;
    }
/* /Pages/Shared/ViewAudit.razor.rz.scp.css */
.category[b-5u62y71chf] {
    background-color: #de7139;
    color:white;
}

.view[b-5u62y71chf] {
    margin-bottom:5px;
}

.loggedin[b-5u62y71chf] {
    display: flex;
    justify-content: flex-end;
    padding-top: 1rem !important;
}

/* /Pages/Shared/ViewAuditNoAuth.razor.rz.scp.css */
.category[b-h33fplee5w] {
    background-color: #de7139;
    color:white;
}

.view[b-h33fplee5w] {
    margin-bottom:5px;
}

.loggedin[b-h33fplee5w] {
    display: flex;
    justify-content: flex-end;
    padding-top: 1rem !important;
}

/* /Pages/Welcome.razor.rz.scp.css */
.inprogress[b-mw2iwhh8fb] {
    background-color: #2f8562;
    color:white;
    margin-left:5px;
}

.inprogressdata[b-mw2iwhh8fb] {
    margin-left: 10px;
    margin-top:5px;
}
