
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Alexandria:wght@100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


/* --------------------------------------------------------------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------- GLOBAL CSS - LESTER-------------------------------------------------------- */
/* ------------- PLEASE AVOID CREATING CSS STYLE FOR ONE COMPONENT ONLY, THIS CSS ONLY APPLIES TO TWO OR MORE COMPONENT ------------ */
/* --------------------------------------------------------------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------------------------------------------------------------- */

:root {
    --clr-primary: rgba(87, 0, 0, 1.0); /* #570000 HEX */
    --clr-secondary: #793333;
    --clr-accent: #FFD8C4;
    --clr-success: #10b981;
    --clr-error: #ef4444;
    --clr-warning: #f59e0b;
    --clr-white: #FEF9F9;
    --clr-black: #000000;
    --clr-gray-50: #f9fafb;
    --clr-gray-100: #f3f4f6;
    --clr-gray-200: #e5e7eb;
    --clr-gray-300: #d7d7d7;
    --clr-gray-400: #9ca3af;
    --clr-gray-500: #6b7280;
    --clr-gray-600: #4b5563;
    --clr-gray-700: #374151;
    --clr-gray-800: #1f2937;
    --clr-gray-900: #111827;
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    --font-sans: "Poppins", serif;
    --font-serif: "Poppins", serif;
    --font-mono: ui-monospace, SFMono-Regular, Menlo, monospace;
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --border-radius-sm: 0.25rem;
    --border-radius-md: 0.375rem;
    --border-radius-lg: 0.5rem;
    --border-radius-full: 9999px;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    /* TEST */
    --clr-theme-base: #570000;
    --clr-theme-secondary: #793333;
    --clr-theme-tertiary: #A34141;
    --clr-theme-bg-a: #FFFFFF;
    --clr-theme-txt-a: #FFFFFF;
    /* RGB */
    --clr-theme-base-rgba: rgba(87, 0, 0,1);
    --clr-theme-secondary-rgba: rgba(121,51,51,1);
    --clr-theme-tertiary-rgba: rgba(163,65,65,1);
    /* GRADIENTS */
    --clr-grad-base-tertiary: 90deg, var(--clr-theme-base-rgba) 0%, var(--clr-theme-tertiary-rgba) 50%;
    --clr-grad-200-100: 90deg, var(--clr-theme-200) 0%, var(--clr-theme-100) 50%;
    --clr-grad-100-50: 90deg, var(--clr-theme-100) 0%, var(--clr-theme-50) 50%;
    /* COLOR PALETTE from https://uicolors.app/generate/570000 */
    --clr-theme-900: #900C0C;
    --clr-theme-800: #AE0606;
    --clr-theme-700: #D40101;
    /* LIGHTER */
    --clr-theme-600: #FB0707;
    --clr-theme-500: #FF2727;
    --clr-theme-400: #FF5A5A;
    --clr-theme-300: #FF9696;
    /* LIGHTEST */
    --clr-theme-200: #FFC1C1;
    --clr-theme-100: #FFDDDD;
    --clr-theme-50: #FFF0F0;
    /* SHADOWS */
    --shadow-table-sm-drop: drop-shadow(0 2pt 4pt rgba(0,0,0,0.2));
    --shadow-table-md-drop: drop-shadow(0 2pt 4.5pt rgba(0,0,0,0.25));
    --shadow-table-lg-drop: drop-shadow(0 2pt 5pt rgba(0,0,0,0.33));
    /* BORDER RADIUS */
    --curve-tables: 4pt;
}

.curved-4 {
    border-radius: 4pt;
}

html, body {
    font-family: var(--font-sans);
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: #242934;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
    padding-top: 0px;
}

ul,
ol {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: break-word;
    font-weight: 600;
    line-height: 1.2;
}

input, textarea {
    user-select: none !important; /* Prevent text selection */
    -webkit-user-drag: none !important; /* Prevent drag and drop on WebKit browsers */
}


/* ------------ Container/SideMenu --------------- */

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    min-height: 100vh;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: 196px;
}

.navigationBar {
    background: #1e2f57;
    padding: 50px 5px 5px 5px;
    text-align: center;
}

/* -------------- Labels --------------- */


.warning {
    color: var(--clr-warning);
}

.error {
    color: var(--clr-error);
}

.success {
    color: var(--clr-success);
}

.main-label {
    font-size: 16px;
    font-weight: 700;
    color: #1c0b0b;
}

.sub-label {
    font-size: 14px;
    font-weight: 700;
}

.form-label {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 3px !important;
}

.nav-menu-title {
    font-size: 17px;
    color: white;
    font-weight: 700;
}

.required {
    color: var(--clr-error);
    margin-left: 3px;
    vertical-align: super;
}

.line-separator {
    width: 90%;
    height: 1px;
    background-color: var(--clr-primary);
    margin: 10pt 0 10pt 0;
    opacity: 10%;
}

.white-separator {
    border-bottom: 2px solid white !important;
    margin: 5px 15px;
    width: 100% !important;
    height: 3px !important;
}

/* ---------- FORMS ---------- */

input[type=radio] {
    accent-color: var(--clr-primary);
    -ms-transform: scale(1.2); /* IE 9 */
    -webkit-transform: scale(1.2); /* Chrome, Safari, Opera */
    transform: scale(1.2);
    margin-right: 5px;
}

input {
    border-color: #bfbfbf !important;
}

.form-control {
    border-color: #bfbfbf !important;
    /* Custom input styling */
    border: 1pt solid #bfbfbf;
    border-radius: 4pt;
    font-size: 1rem;
}

select:hover {
    cursor: pointer;
}

select.form-control option {
    height: auto !important; /* Set the desired height for the options */
    font-size: 1rem;
}

.dropdown-icon {
    -webkit-appearance: menulist-button;
    appearance: menulist-button;
    text-align: start;
    height: auto;
/*    flex: auto;*/
}

.custom-select {
    -webkit-appearance: menulist-button;
    appearance: menulist-button;
    font-size: 13px !important;
    border-radius: 0px !important;
}


/*  TABLES  */

/*  TABLES  -   Custom defaults */
table {
    width: 100%;
    overflow: auto !important;
    font-size: 0.95rem;
    filter: var(--shadow-table-lg-drop);
}
thead > tr > th:first-child {
    border-top-left-radius: var(--curve-tables);
}
thead > tr > th:last-child {
    border-top-right-radius: var(--curve-tables);
}
tbody > tr:last-child > td:first-child,
tfoot > tr > td:first-child {
    border-bottom-left-radius: var(--curve-tables);
}
tbody > tr:last-child > td:last-child,
tfoot > tr > td:last-child {
    border-bottom-right-radius: var(--curve-tables);
}
thead, tfoot {
    font-weight: 600;
}
tbody, tfoot {
    color: var(--clr-theme-base);
}
thead {
    background: linear-gradient(var(--clr-grad-base-tertiary));
    color: var(--clr-theme-txt-a);
}
tbody {
    font-weight: 500;
}
tbody > tr {
    background: var(--clr-theme-bg-a);
}
tbody > tr:nth-child(even) {
    background: var(--clr-theme-50);
}
.tr-hover:hover {
    background: linear-gradient(var(--clr-grad-200-100));
    color: black;
}

tfoot {
    background: linear-gradient(var(--clr-grad-200-100));
}
th, td {
    padding: 5pt 10pt;
    text-align: center;
    white-space: normal;
    vertical-align: middle;
}
th, tr, td {
    border: none;
}
.wrapper {
    overflow: auto !important;
    position: relative !important;
    white-space: nowrap !important;
}
.table-container {
    /*
    margin: auto;
    width: 100%;
    */
}
.table-container::-webkit-scrollbar-thumb {
    background-color: var(--clr-theme-200);
    border-radius: 5pt;
}
.table-container::-webkit-scrollbar-thumb:hover {
    cursor: pointer;
}
.table-container::-webkit-scrollbar {
    width: 5px;
    height: 7px;
}
.table-container::-webkit-scrollbar-track {
    background-color: var(--clr-theme-200);
    border-radius: 5pt;
}
.valid.modified:not([type=checkbox]) {
    outline: 1pt solid #26b050;
}
.max-container::-webkit-scrollbar {
    height: 5pt !important;
    width: 5pt !important;
}
.max-container::-webkit-scrollbar-track {
    border-radius: 15pt !important;
    background: var(--clr-theme-txt-a) !important;
}
.max-container::-webkit-scrollbar-thumb {
    border-radius: 15pt !important;
    background: #9b9aba !important;
}
.invalid {
    outline: 1px solid red;
}
.validation-message {
    color: red;
}
/*
    .table-container-sbs     =   <div> container for 'side-by-side' tables
    .table-w-footer          =   Tables with <tfoot> to show correct [border-radius]
    .table-rating            =   Tables in the [Rating] page/forms
                                 (NONE have this class as of now)
    .table-summary           =   Tables in the [Summary] page/forms
    .table-summary-child     =   Child/nested tables in the [Summary] page/forms
    .table-summary-sidebar   =   The "sidebar" table in the [Summary] page/forms
*/
.table-w-footer > tbody > tr:last-child > td:first-child {
    border-bottom-left-radius: unset;
}
.table-w-footer > tbody > tr:last-child > td:last-child {
    border-bottom-right-radius: unset;
}
.table-summary-sidebar {
    filter: var(--shadow-table-md-drop);
}
.table-summary-child {
    filter: var(--shadow-table-sm-drop);
}
.table-summary-child thead,
.table-container-sbs > table:not(:first-child) > thead {
    background: var(--clr-theme-tertiary);
}
.table-summary > tbody > tr {
    background: var(--clr-theme-bg-a) !important;
}
.table-summary > tbody > tr:not(tr:last-child) {
    border-bottom: solid 1pt var(--clr-theme-tertiary);
}
.table-container-sbs {
    filter: var(--shadow-table-lg-drop);
}
.table-container-sbs > table {
    filter: unset;
}
.table-container-sbs > table:not(:first-child) > thead > tr > th:first-child {
    border-top-left-radius: unset;
}
.table-container-sbs > table:not(:last-child) > thead > tr > th:last-child {
    border-top-right-radius: unset;
}
.table-container-sbs > table:not(:first-child) > tbody > tr:last-child > td:first-child,
.table-container-sbs > table:not(:first-child) > tfoot > tr > td:first-child {
    border-bottom-left-radius: unset;
}
.table-container-sbs > table:not(:last-child) > tbody > tr:last-child > td:last-child,
.table-container-sbs > table:not(:last-child) > tfoot > tr > td:last-child {
    border-bottom-right-radius: unset;
}


/* ------------ Scrollbar ---------------- */

.scroll-bar-wrap {
    width: 100%;
    position: relative;
}

.scroll-box {
    width: 100%;
    overflow-y: scroll;
}

    .scroll-box::-webkit-scrollbar {
        width: .3em;
    }

    .scroll-box::-webkit-scrollbar,
    .scroll-box::-webkit-scrollbar-thumb {
        overflow: visible;
        border-radius: 4px;
    }

    .scroll-box::-webkit-scrollbar-thumb {
        background: rgba(0,0,0,.2);
    }

.cover-bar {
    position: absolute;
    background: white;
    height: 100%;
    top: 0;
    right: 0;
    width: .3em;
    -webkit-transition: all .5s;
    opacity: 0;
}

.scroll-bar-wrap:hover .cover-bar {
    opacity: 1;
    -webkit-transition: all .5s;
}


/* ---------- CHECKBOX ---------- */

.app-checkbox {
    --borderColor: #48c;
    --borderWidth: .125em;
}

    .app-checkbox label {
        margin-right: 0px;
        display: inline-block;
    }

    .app-checkbox:hover {
        transform: scale(1.1);
    }

.app-checkbox-disabled {
    opacity: 40%;
}

    .app-checkbox-disabled:hover {
        transform: unset;
    }

    .app-checkbox-disabled label:hover, .app-checkbox-disabled input:hover {
        cursor: not-allowed;
    }

.app-checkbox input[type=checkbox] {
    -webkit-appearance: none;
    appearance: none;
    vertical-align: middle;
    background: #fff;
    font-size: 1.5em;
    border-radius: 0.125em;
    display: inline-block;
    border: var(--borderWidth) solid var(--borderColor);
    width: .9em;
    height: .9em;
    position: relative;
    word-wrap: break-word;
}

    .app-checkbox input[type=checkbox]:before,
    .app-checkbox input[type=checkbox]:after {
        content: "";
        position: absolute;
        background: var(--borderColor);
        width: calc(var(--borderWidth) * 3);
        height: var(--borderWidth);
        top: 50%;
        left: 10%;
        transform-origin: left center;
    }

    .app-checkbox input[type=checkbox]:before {
        transform: rotate(45deg) translate(calc(var(--borderWidth) / -2), calc(var(--borderWidth) / -2)) scaleX(0);
        transition: transform 200ms ease-in 200ms;
    }

    .app-checkbox input[type=checkbox]:after {
        width: calc(var(--borderWidth) * 5);
        transform: rotate(-45deg) translateY(calc(var(--borderWidth) * 2)) scaleX(0);
        transform-origin: left center;
        transition: transform 200ms ease-in;
    }

    .app-checkbox input[type=checkbox]:checked:before {
        transform: rotate(45deg) translate(calc(var(--borderWidth) / -2), calc(var(--borderWidth) / -2)) scaleX(1);
        transition: transform 200ms ease-in;
    }

    .app-checkbox input[type=checkbox]:checked:after {
        width: calc(var(--borderWidth) * 5);
        transform: rotate(-45deg) translateY(calc(var(--borderWidth) * 2)) scaleX(1);
        transition: transform 200ms ease-out 200ms;
    }

    .app-checkbox input[type=checkbox]:focus {
        outline: calc(var(--borderWidth) / 2) dotted rgba(0, 0, 0, 0.25);
    }




/* ---------- NO DATA OR LOADING DATA INDICATOR ---------- */
.centered-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

    .centered-content img {
        width: 100px;
        height: auto;
        padding: 0;
        margin-top: 15px;
        display: inline-flex;
    }

    .centered-content h5 {
        margin-top: 30px;
        margin-left: 10px;
        font-size: 16px;
        font-weight: 700;
    }

    .centered-content.no-data {
        flex-direction: column;
    }

.no-data {
    font-size: 13px !important;
    margin-top: 20px;
    font-weight: 600;
}

.loading-indicator {
    margin-left: 3px;
    width: 20px;
    margin-bottom: 2px;
}

/*CARRIER MODAL*/
div.carrier {
    display: flex;
    justify-content: center;
    align-items: center;
}

.carrier-container {
    box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
    display: inline-block;
    text-align: center;
    width: 180px;
    height: 220px;
    padding: 10pt 0 0 0;
    margin: 5pt;
}
    .carrier-container:hover {
        font-weight: 600;
        color: var(--clr-primary);
    }
.carrier-img {
    width: 80%;
    height: 60%;
    cursor: pointer;
    padding: 10px;
    box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px, rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
}

    .carrier-img:hover {
        zoom:1.1;
    }

.carri
.label-btn {
    padding: 10px;
    border-radius: 5px;
    background-color: var(--clr-primary);
    color: #fff;
    cursor: pointer;
}

.dragdrop {
    background-color: #f1f2f3;
}

.carrier-name {
    height: 50px;
    padding: 10px 5px 5px 5px;
    display: block;
    overflow: hidden;
    text-align: center;
}

/* --------------------- MODAL -------------------------*/


.medium-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1050;
    display: flex;
    width: 90%;
    max-width: 450px;
    text-align: center;
    justify-content: center;
    flex-direction: column;
    height: auto;
    padding: 20px 20px 40px 20px;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 2px 2px rgba(0,0,0,.25);
}


.small-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1050;
    display: flex;
    width: 80vw;
    max-width: 400px;
    text-align: center;
    justify-content: center;
    flex-direction: column;
    max-height: 90vh;
    padding: 10px 20px 40px 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 2px rgba(0,0,0,.25);
}

.bm-container {
    z-index: 1000 !important;
}

.size-large {
    margin-top: 130px !important;
}

.size-extra-large {
    margin-top: 40px !important;
}

.Large-Modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1050;
    display: flex;
    width: 90%;
    max-width: 1000px;
    max-height: 800px;
    justify-content: center;
    flex-direction: column;
    padding: 0px 20px 20px 25px;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 2px 2px rgba(0,0,0,.25);
}

.blazored-loading-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1050;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80vw;
    max-width: 550px;
    height: 80vh;
    padding: 20px 20px 45px 20px;
    background-color: white;
    z-index: -1;
    border-radius: 10px;
    box-shadow: 0 2px 2px rgba(0,0,0,.25);
}

    .blazored-loading-modal img {
        max-width: 100%;
    }

    .blazored-loading-modal h5 {
        font-size: 15px;
    }


/* --------- Error Indicator (Blazor) DO NOT DELETE ---------*/

#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

.blazor-error-boundary {
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNDkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIG92ZXJmbG93PSJoaWRkZW4iPjxkZWZzPjxjbGlwUGF0aCBpZD0iY2xpcDAiPjxyZWN0IHg9IjIzNSIgeT0iNTEiIHdpZHRoPSI1NiIgaGVpZ2h0PSI0OSIvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMCkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yMzUgLTUxKSI+PHBhdGggZD0iTTI2My41MDYgNTFDMjY0LjcxNyA1MSAyNjUuODEzIDUxLjQ4MzcgMjY2LjYwNiA1Mi4yNjU4TDI2Ny4wNTIgNTIuNzk4NyAyNjcuNTM5IDUzLjYyODMgMjkwLjE4NSA5Mi4xODMxIDI5MC41NDUgOTIuNzk1IDI5MC42NTYgOTIuOTk2QzI5MC44NzcgOTMuNTEzIDI5MSA5NC4wODE1IDI5MSA5NC42NzgyIDI5MSA5Ny4wNjUxIDI4OS4wMzggOTkgMjg2LjYxNyA5OUwyNDAuMzgzIDk5QzIzNy45NjMgOTkgMjM2IDk3LjA2NTEgMjM2IDk0LjY3ODIgMjM2IDk0LjM3OTkgMjM2LjAzMSA5NC4wODg2IDIzNi4wODkgOTMuODA3MkwyMzYuMzM4IDkzLjAxNjIgMjM2Ljg1OCA5Mi4xMzE0IDI1OS40NzMgNTMuNjI5NCAyNTkuOTYxIDUyLjc5ODUgMjYwLjQwNyA1Mi4yNjU4QzI2MS4yIDUxLjQ4MzcgMjYyLjI5NiA1MSAyNjMuNTA2IDUxWk0yNjMuNTg2IDY2LjAxODNDMjYwLjczNyA2Ni4wMTgzIDI1OS4zMTMgNjcuMTI0NSAyNTkuMzEzIDY5LjMzNyAyNTkuMzEzIDY5LjYxMDIgMjU5LjMzMiA2OS44NjA4IDI1OS4zNzEgNzAuMDg4N0wyNjEuNzk1IDg0LjAxNjEgMjY1LjM4IDg0LjAxNjEgMjY3LjgyMSA2OS43NDc1QzI2Ny44NiA2OS43MzA5IDI2Ny44NzkgNjkuNTg3NyAyNjcuODc5IDY5LjMxNzkgMjY3Ljg3OSA2Ny4xMTgyIDI2Ni40NDggNjYuMDE4MyAyNjMuNTg2IDY2LjAxODNaTTI2My41NzYgODYuMDU0N0MyNjEuMDQ5IDg2LjA1NDcgMjU5Ljc4NiA4Ny4zMDA1IDI1OS43ODYgODkuNzkyMSAyNTkuNzg2IDkyLjI4MzcgMjYxLjA0OSA5My41Mjk1IDI2My41NzYgOTMuNTI5NSAyNjYuMTE2IDkzLjUyOTUgMjY3LjM4NyA5Mi4yODM3IDI2Ny4zODcgODkuNzkyMSAyNjcuMzg3IDg3LjMwMDUgMjY2LjExNiA4Ni4wNTQ3IDI2My41NzYgODYuMDU0N1oiIGZpbGw9IiNGRkU1MDAiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvZz48L3N2Zz4=) no-repeat 1rem/1.8rem, #b32121;
    padding: 1rem 1rem 1rem 3.7rem;
    color: white;
}

    .blazor-error-boundary::after {
        content: "An error has occurred."
    }

.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");
    }

::placeholder {
    color: #727272 !important;
    opacity: 1; /* Firefox */
}



/* ---------- SCROLLBAR CUSTOM ---------- */

::-webkit-scrollbar {
    width: 5px; 
    height: 7px; 
}

::-webkit-scrollbar-thumb {
    background-color: #9ca3af;
    border-radius: 5px;
}

::-webkit-scrollbar-track {
    background-color: var(--clr-gray-50);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    cursor: pointer;
}




/*A24Sys COMMON STYLING*/
.app-bg-c1 {
    background-color: var(--clr-primary);
}

.app-bg-c2 {
    background-color: var(--clr-secondary);
}

.app-bg-c3 {
    background-color: #fff9f9;
}

.app-bg-c4 {
    background-color: #f5efef
}

.app-bg-c5 {
    background-color: var(--clr-theme-bg-a);
}


.app-t-c1 {
    color: var(--clr-primary) !important
}

.app-t-c1 {
    color: #793132;
}

.app-t-c3 {
    color: #fff9f9;
}

.app-grad-primary {
    background: rgb(87,0,0);
    background: linear-gradient(90deg, rgba(87,0,0,1) 0%, rgba(163,65,65,1) 50%);
    border-bottom: solid;
    border-width: 2px;
    border-bottom-color: var(--clr-primary);
}


.app-box-shadow1 {
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}

.app-box-shadow2 {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.app-label-c1 {
    color: #570000 !important;
    font-weight: 650 !important;
    font-size: .9rem !important;
}

.app-clickable {
    cursor:pointer;
}

    .app-clickable:hover {
        font-weight:600;
    }
     
.app-cursor-pointer {
    cursor: pointer !important;
}

.app-cursor-download {
    cursor: url('images/downloads.png'), auto !important
}

/*BUTTONS*/

/*    PRIMARY BUTTON*/
.app-btn-primary {
    background-color: var(--clr-primary);
    border: 1px solid #d5d9d9;
    border-radius: 6px;
    box-shadow: rgba(213, 217, 217, .5) 0 2px 5px 0;
    box-sizing: border-box;
    color: var(--clr-theme-txt-a) !important;
    cursor: pointer;
    display: inline-block;
    font-size: 13px;
    line-height: 29px;
    padding: 0 10px 0 11px;
    position: relative;
    text-align: center;
    text-decoration: none;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    vertical-align: middle;
}

    .app-btn-primary:hover {
        background-color: #f7fafa;
        color: var(--clr-primary);
    }

    .app-btn-primary:focus {
        border-color: white;
        box-shadow: rgba(213, 217, 217, .5) 0 2px 5px 0;
        outline: 0;
    }

/* BUTTON MODS PRIMARY*/
.app-btn-mod-primary {
    background-color: var(--clr-primary);
    border: 1px solid #450202;
    border-radius: 6px;
    height: 37px !important;
}
    .app-btn-mod-primary:hover {
        background-color: #793333;
        border: 1px solid #450202;
        color: white;
    }
    .app-btn-mod-primary:focus {
        background-color: #793333;
        border: 1px solid #450202;
        color: white;
    }


/* BUTTON MODS LIGHT*/
.app-btn-mod-light {
    background-color: white;
    border: 1px solid #bdbdbd;
    border-radius: 6px;
    height: 37px !important;
    color: dimgray;
}

    .app-btn-mod-light:hover {
        background-color: white;
        border: 1px solid #bdbdbd;
        color: black;
    }

    .app-btn-mod-light:focus {
        background-color:whitesmoke;
        border: 1px solid black;
        color: var(--clr-primary);
    }

.app-btn-mod-danger {
    height: 37px !important;
    border-radius: 6px;
}

.app-t-bold {
    font-weight: 500 !important;
}

.app-form-label {
    font-size: .9rem;
    color: var(--clr-primary);
    font-weight: 450;
    width: 100%;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}


/* QUESTIONNAIRE STYLING */

.bottom-arrow {
    content: 'xs';
    position: absolute;
    margin-left: 35px;
    width: 0;
    height: 0;
    border-top: 25px solid #e9dddd;
    border-left: 25px solid #e9dddd;
    border-right: 25px solid #e9dddd;
}

.questionnaire-child-container {
    background-color: #e9dddd;
    margin: 10px 25px 20px 25px !important;
    padding: 10px 0px 15px 10px !important;
    border-radius: 6px;
    box-shadow: rgba(0, 0, 0, 0.15) 2.4px 2.4px 3.2px;
}

.questionnaire-item {
    font-size: 1rem;
    color: var(--clr-theme-base);
    padding: 7px;
    border-radius: 6pt;
    background-color: white;
    height: auto;
    margin: 5px 25px 0px 15px;
    margin-top: 5px;
    box-shadow: rgba(0, 0, 0, 0.15) 2.4px 2.4px 3.2px;
}

.app-questionnaire-container {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    font-size: .9rem;
    width: 100%;
}



.app-questionnaire-desc {
    font-weight: 400;
    color: var(--clr-primary);
    font-size: 1rem;
    width: 100%;
}

    .app-questionnaire-desc:hover {
        font-weight: 550 !important;
        color: #793333;
    }

    .app-questionnaire-input {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        font-weight: 700;
        width: 70%;
        align-items: center;
    }

    .app-questionnaire-input .RadioLabel {
        margin-right: 10pt;
    }


.switch-field {
    display: flex;
    overflow: hidden;
}

    .switch-field input {
        position: absolute !important;
        clip: rect(0, 0, 0, 0);
        height: 1px;
        width: 1px;
        border: 0;
        overflow: hidden;
    }

    .switch-field label {
        background-color: #e4e4e4;
        color: rgba(0, 0, 0, 0.6);
        font-size: 1.1rem;
        line-height: 1;
        text-align: center;
        padding: 8px 16px;
        margin-right: -1px;
        border: 1px solid rgba(0, 0, 0, 0.2);
        box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3), 0 1px rgba(255, 255, 255, 0.1);
        transition: all 0.1s ease-in-out;
    }

        .switch-field label:hover {
            cursor: pointer;
            background-color: white;
            color: var(--clr-primary);
        }

    .switch-field input:checked + label {
        background: rgb(87,0,0);
        background: linear-gradient(90deg, rgba(87,0,0,1) 0%, rgba(163,65,65,1) 50%);
        box-shadow: none;
        color:white;
    }

    .switch-field label:first-of-type {
        border-radius: 4px 0 0 4px;
    }

    .switch-field label:last-of-type {
        border-radius: 0 4px 4px 0;
    }


.item-circle {
    border: 1pt solid var(--clr-primary);
    border-radius: 100%;
    height: 23px;
    min-width: 30px;
    padding: 0px 3px 0 3px;
    text-align: center;
    margin-right: 3px;
    background-color: #e9dddd;
    display:grid;
}


    .item-circle p {
        margin-top: 0.2em;
        font-size: .9rem;
        color: var(--clr-primary);
    }

.h-divider {
    margin: 80px auto 40px;
    width: 80%;
    position: relative;
}

    .h-divider .shadow {
        overflow: hidden;
        height: 20px;
    }

        .h-divider .shadow:after {
            content: '';
            display: block;
            margin: -25px auto 0;
            width: 100%;
            height: 25px;
            border-radius: 125px/12px;
            box-shadow: 0 0 8px black;
        }

/* MAINRATER LAYOUT CONTAINERS */
#rater-container-sidebar {
    position: fixed;
    top: 124px;
    right: 10px;
    width: inherit;
    height: 89%;
    z-index: 10;
    padding-bottom: 48pt;
    overflow-x: unset;
    overflow-y: scroll;
    /* Gutter definition(s) from Bootstrap for .row children */
    /*padding-right: calc(var(--bs-gutter-x) * .5);*/
}
.parent-rater-container-sidebar {
    width: 480px;
}
.rater-container-buttons {
    position: fixed;
    bottom: 0;
    right: 19pt;
    width: calc(480px - 5px);
    padding: 1rem 0 1rem 0;
    background-color: var(--clr-theme-bg-a);
    border-top: 2px solid rgba(0, 0, 0, .125);
    border-left: 1pt solid rgba(0, 0, 0, .125);
    border-right: 1pt solid rgba(0, 0, 0, .125);
    border-bottom: 1pt solid rgba(0, 0, 0, .125);
    border-bottom-left-radius: .25rem;
    border-bottom-right-radius: .25rem;
}
/*@media only screen and (max-width: 860px) {
    #rater-container-sidebar {
        height: 70%;
    }
}*/

#rater-container-sidebar .card, #rater-container-sidebar .card-body {
    min-height: 100%;
}

/* MAINRATER & DASHBOARD CONTAINERS WIDTHS */

.container-mainrater {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: start;
    width: 100% !important;
    transition: all 300ms;
    transition-timing-function: ease;
}

#rater-container-forms {
    margin-top: 17px;
    width: calc(100% - (480px + 10px + 12px));
}
.move-down-rater-container-forms {
}

#MainRaterCheckboxes,
#rater-container-steps,
.rater-container-quoteinfo {
    width: calc(100% - (480px + 10px + 12px));
}

#rater-container-forms, .container-browse {
    background-color: #f4efef;
    box-shadow: rgba(0, 0, 0, 0.15) 0 5pt 10pt 0, rgba(0, 0, 0, 0.02) 0 0 6pt 1pt;
    border-radius: 5pt;
    transition: all 300ms;
}
.container-browse {
    width: calc(100% - 10pt);
    height: fit-content;
    min-height: 80vh;
    padding: 15pt;
    margin: 10pt 10pt 10pt 0;
}

.main-browse, .main-rater {
    flex-grow: 1;
}
.menu-navigation {
    width: fit-content;
}

.filter-rad-btn {
    padding-top:2px;
    text-align: center;
    height: 35px;
    text-align:center;
    font-size: 1.1rem;
    font-weight:500;
}

/*@media only screen and (max-width: 1654px) {
    .parent-rater-container-sidebar {
        width: 22.5%;
    }
    #rater-container-forms,
    #MainRaterCheckboxes,
    #rater-container-steps,
    .rater-container-quoteinfo {
        width: 77.5%;
    }
}*/
/* MAINRATER STEPPERS */
/*.testdiv {
    background-color: green !important;
    position: sticky !important;
    z-index: 19 !important;
}*/
#rater-container-steps {
    position: sticky;
    z-index: 9;
    top: 111px;
    padding: 0 2.5% 0 2.5%;
    border-radius: 0pt 0pt 5pt 5pt;
}

.move-down-rater-container-steps {
    top: 167px !important;
    transition: top 1s;
    transition-timing-function: ease;
    border-radius: 0 0 5pt 5pt !important;
}

/* MAINRATER QUOTATION INFO */

.rater-container-quoteinfo {
    position: sticky;
    z-index: 8;
    top: 111px;
    padding: 0 2.5% 0 2.5%;
}

.rater-container-quoteinfo .textbox {
    background: var(--clr-secondary);
    color: white;
    padding: 1pt 4pt 1pt 4pt;
    border-radius: 4pt;
    font-weight: 600;
}

#rater-container-steps,
.rater-container-quoteinfo {
    -webkit-box-shadow: rgba(0, 0, 0, 0.15) 0 5pt 10pt 0, rgba(0, 0, 0, 0.02) 0 0 6pt 1pt;
    -moz-box-shadow: rgba(0, 0, 0, 0.15) 0 5pt 10pt 0, rgba(0, 0, 0, 0.02) 0 0 6pt 1pt;
    box-shadow: rgba(0, 0, 0, 0.15) 0 5pt 10pt 0, rgba(0, 0, 0, 0.02) 0 0 6pt 1pt;
}

/* MAINRATER LEFT SIDEBARS */

.sidebar-rater-dropdown-icon {
    padding: 5px;
    width: 126px;
    height: 33.5px !important;
    border-radius: 0px !important;
}
.sidebar-rater-items-container {
    display: flex;
    font-size: 1rem;
    color: var(--clr-theme-base);
    padding: 12px 10px 0px 10px;
    border-radius: 4pt;
    border: 2pt solid var(--clr-theme-200);
    background: linear-gradient(var(--clr-grad-100-50));
    height: auto;
}
.sidebar-rater-items-container:hover {
    cursor: pointer;
    border: 2pt solid var(--clr-theme-700);
    background: linear-gradient(var(--clr-grad-200-100));
}
.sidebar-rater-items-container:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}
.sidebar-rater-DataValue {
    font-weight: 600;
    
}

.ant-badge-count {
    background-color: #fff !important;
    color: #999 !important;
    box-shadow: 0 0 0 1px #d9d9d9 inset;
}
.sidebar-rater-max-ellipsis {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    max-width:75%!important;
    display:inline-block;
}
.sidebar-rater-ellipsis {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    max-width: 150px;
}
.sidebar-rater-items-container > div {
    flex: 1;
    margin-top: 0px;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
    .sidebar-rater-items-container > div:first-child,
    .sidebar-rater-items-container > div:last-child {
        display: flex;
        justify-content: space-between;
        margin-bottom: -10px;
    }
.sidebar-rater-tooltip-text {
    visibility: hidden;
    width: auto;
    text-align: center;
    border-radius: 6px;
    padding: 5px;
    position: absolute;
    z-index: 99;
    margin-left: 5px;
    opacity: 0;
    top: 90px;
    min-height: 30px;
    transition: opacity 0.2s;
    background-color: #333;
    color: #fff;
}
@media only screen and (max-width: 1199px) {
    .sidebar-rater-ellipsis {
        max-width: 100% !important;
    }
}
.sidebar-rater-btn-primary {
    background-color: var(--clr-primary);
    color: var(--clr-white);
    font-weight: 600;
    height: 37px !important;
    padding-left: 5pt;
    padding-right: 5pt;
    border: 2pt solid var(--clr-primary);
    border-radius: 6px;
}
.sidebar-rater-btn-primary:hover {
    background-color: var(--clr-white);
    color: var(--clr-primary);
    border: 2pt solid var(--clr-primary);
}
.sidebar-rater-btn-primary-ant {
    background-color: var(--clr-primary) !important;
    color: var(--clr-white) !important;
    font-weight: 500 !important;
    height: 37px !important;
    border: 2pt solid var(--clr-primary) !important;
    border-radius: 6px;
}
.sidebar-rater-btn-primary-ant:hover {
    background-color: var(--clr-white) !important;
    color: var(--clr-primary) !important;
    border: 2pt solid var(--clr-primary) !important;
}
.header-btn-primary-ant {
    background-color: var(--clr-theme-secondary) !important;
    color: var(--clr-theme-100) !important;
    font-weight: 500;
    padding: 5pt 7pt 5pt 7pt;
    width: fit-content;
    height: fit-content;
    border: 2pt solid var(--clr-theme-100) !important;
    border-radius: 6px;
}
.header-btn-primary-ant:hover {
    background-color: var(--clr-theme-100) !important;
    color: var(--clr-theme-secondary) !important;
    border: 2pt solid var(--clr-theme-100) !important;
}

/* --------------------------------------------------------------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------------------------------------------------------------- */
/* --------------------------------------------------------- RESPONSIVENESS -------------------------------------------------------- */
/* -------------- PLEASE MATCH YOUR CSS ACCORDING TO THE VIEWPORT DO NOT CREATE ANOTHER TO AVOID CONFLICT RESPONSIVENESS ---------- */
/* --------------------------------------------------------------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------------------------------------------------------------- */
@media only screen and (max-width: 991px) {
    .navigationBar {
        padding: 5px;
        text-align: start;
    }
}

/* --------------------------------------------------------------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------- SMALL PHONE VIEWPORT ------------------------------------------------------ */
/* --------------------------------------------------------------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------------------------------------------------------------- */

@media only screen and (max-width:576px) {

}


/* --------------------------------------------------------------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------- BIGGER PHONE VIEWPORT ----------------------------------------------------- */
/* --------------------------------------------------------------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------------------------------------------------------------- */


@media (min-width: 576px) and (max-width: 767.98px) {

}

/* --------------------------------------------------------------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------------------------------------------------------------- */
/* -------------------------------------------------------- TABLET VIEWPORT -------------------------------------------------------- */
/* --------------------------------------------------------------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------------------------------------------------------------- */


@media (min-width: 768px) and (max-width: 991.98px) {

}


/* --------------------------------------------------------------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------------------------------------------------------------- */
/* --------------------------------------------------- LAPTOP AND SMALLER DESKTOP  ------------------------------------------------- */
/* --------------------------------------------------------------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------------------------------------------------------------- */

@media screen and (min-width:992px) and (max-width: 1199px) {
}

/* --------------------------------------------------------------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------  DESKTOP  ------------------------------------------------------------- */
/* --------------------------------------------------------------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------------------------------------------------------------- */


@media (min-width: 1200px) and (max-width: 1499px) {
}

/* --------------------------------------------------------------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------- ULTRAWIDE DESKTOP ------------------------------------------------------- */
/* --------------------------------------------------------------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------------------------------------------------------------- */

@media (min-width: 1500px) {
}


/* Animations */

.blinking-animation {
    animation: blink-animation 3s infinite;
}

.dot-blinnk {
    animation: dot-blink 3s infinite;
}

@keyframes blink-animation {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0.5;
    }
}

@keyframes dot-blink {
    0%, 20% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    80%, 100% {
        opacity: 0;
    }
}


/* LOADING ELEMENTS */

.loading-sm,
.loading-md {
    color: var(--clr-theme-base);
    font-weight: 600;
}
.loading-sm {

}
.loading-md {
    margin: 2.5% 0 12.5pt 0;
}
.loading-md i {
    animation: growing-icons ease-in-out 1s infinite;
    font-size: 48pt !important;
}
.loading-md .anticon-loading > svg {
    width: 20pt !important;
    height: 20pt !important;
}
.loading-sm-bars {
    height: 15pt;
    width: 7.5pt;
    margin: 2.5pt;
}
.loading-md-bars {
    height: 30pt;
    width: 15pt;
    margin: 5pt;
}

.animated-loading-bars {
    animation: growing-bars ease-in-out 1s infinite;
    background-color: var(--clr-theme-base);
    display: inline-block;
}
.animated-loading-bars:nth-of-type(2) {
    animation-delay: 0.2s;
}
.animated-loading-bars:nth-of-type(3) {
    animation-delay: 0.3s;
}

@keyframes growing-bars {
    0% {
        background-color: var(--clr-theme-base);
        transform: scale(1);
    }

    50% {
        background-color: #bd7171;
        transform: scale(1.3);
    }

    100% {
        background-color: var(--clr-theme-base);
        transform: scale(1);
    }
}
@keyframes growing-icons {
    0% {
        color: var(--clr-theme-base);
    }

    50% {
        color: #bd7171;
    }

    100% {
        color: var(--clr-theme-base);
    }
}
@keyframes blinking-svg {
    0% {
        fill: var(--clr-theme-base);
    }

    50% {
        fill: #bd7171;
    }

    100% {
        fill: var(--clr-theme-base);
    }
}