

body {
    font-family: "Inter", sans-serif !important; /* Google font */
}


.body-admin-pages {
    font-family: "Inter", sans-serif !important; /* Google font */
    margin-top: 110px;
}


/* QUOTE PAGES */
/* ------------------------------------------------------------ */
.body-quote-pages {
    /* font-family: "Inter", sans-serif !important; */ /* Google font */
    font-family: "Plus Jakarta Sans", sans-serif; /* Google font */
    min-height: 100vh; /* fallback */
    padding-bottom: 30px;
    display: block;
    color: #494949;
}
    .body-quote-pages label {
        font-size: 0.90rem
    }
    .body-quote-pages select {
        border: 2px solid #ee3235;
        background-color: transparent;
        color: #494949;
    }
        .body-quote-pages select option {
            /* background-color: #0f3e65; /* same as page background */
            /* color: #fff; /* white text */
        }
    .body-quote-pages input,
    .body-quote-pages textarea {
        border: 2px solid #ee3235;
        color:#494949;
    }
        .body-quote-pages input:focus,
        .body-quote-pages textarea:focus {
            /* background-color: #2c5577 !important; */
            border: 2px solid #ee3235 !important;
            color: #494949 !important;
            box-shadow: none !important; /* optional: removes Bootstrap blue glow */
        }
        .body-quote-pages input::placeholder,
        .body-quote-pages textarea::placeholder {
            color: #767474;
            opacity: 1; /* ensure full visibility across browsers */
            font-size: 13px;
            font-style: italic;
        }

    .body-quote-pages .card {
        background-color: transparent; /* or whatever matches your theme */
        color: #494949; /* ensure text stays visible */
    }
    .body-quote-pages .icon {
        color: #ee3235;
    }

    /* HACK TO ADD A PERMANENT GAP BETWEEN THE NAVBAR AND THE CONTENT WHEN SCROLLING */
    .body-quote-pages::before {
        content: '';
        display: block;
        height: 10px; /* Your desired gap - adjust as needed */
        background-color: #fff; /* Match navbar color */
        position: sticky;
        top: 40px; /* Height of your navbar */
        z-index: 1029; /* Just below navbar */
    }


.quote-app-wrapper {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.quote-footer-bar {
    /* background-color: #f8f9fa; */
    background-color: #ee3235;
    color: #fff;
    border-top: 1px solid #ddd;
    margin-top: 15px;
    flex-shrink: 0;
    position: sticky;
    bottom: 0;
}




.quote-header-pill {
    display: inline-block;
    padding: 10px 50px;
    background: #eef4ff;
    color: #0d6efd;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.5rem;
    border: 1px solid #d7e3ff;
}



.quote-header {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    padding: 0 40px 0 20px;
}

    .quote-header .icon-placeholder {
        color: #ee3235;
        width: 30px;
        height: 30px;
        font-size: 18px;
    }

.quote-option {
    border: 2px solid #ee3235;
    border-radius: 10px;
    padding: 20px 25px;
    gap: 30px;
    font-size: 1.3rem;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: start;
    background-color: #faf8f8;
}

    .quote-option .icon-placeholder {
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
    }

        .quote-option .icon-placeholder .icon {
            color: #ee3235;
        }

    .quote-option.clickable {
        cursor: pointer;
        transition: background 0.3s;
        background-color: #fff;
    }

        .quote-option.clickable:hover {
            background-color: #fff6f7;
        }


.body-quote-pages .signup-option {
    border: 2px solid #ee3235;
    border-radius: 10px;
    padding: 20px 25px;
    background-color: #faf8f8;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    font-size: 1.0rem;
    font-weight: 400;
}


.body-quote-pages .list-option {
    cursor: pointer;
}

    .body-quote-pages .list-option:hover {
        background-color: #f5f5f5;
    }

.body-quote-pages .list-option-selected {
    background-color: #f7f7f7;
}


/* Modal styling for quote area */
.body-quote-pages .modal-content {
    background: #fcfcfc;
    color: #494949;
}

/* Scroll only the body */
.body-quote-pages .modal-body.terms-modal {
    max-height: 70vh;
    overflow-y: auto;
}

/* Header / footer styling only, no height/size manipulation */
.body-quote-pages .modal-header,
.body-quote-pages .modal-footer,
.modal-header,
.modal-footer {
    background: #f4f4f4;
    border-color: rgba(255, 255, 255, 0.15);
}


/* Quote terms modal text */
.terms-modal h5,
.terms-modal h6 {
    margin-top: 2rem;
}

.terms-modal {
    font-size: 14px;
}


.body-quote-pages .btn {
    min-width: 120px;
}




.progress-stage-indicator {
    display: flex;
}

.progress-stage {
    position: relative;
    text-align: center;
    height: 30px;
    line-height: 30px; /* vertical centering */
    padding: 0 12px;
    color: #fff;
    font-weight: 600;
    font-size: 0.85rem;
}

    /* Arrow */
    .progress-stage:not(:last-child)::after {
        content: "";
        position: absolute;
        top: 0;
        right: -16px; /* was -15px */
        width: 0;
        height: 0;
        border-top: 14px solid transparent;
        border-bottom: 14px solid transparent;
        border-left: 16px solid; /* was 15px */
        z-index: 2;
    }


    /* Cover overlap */
    .progress-stage:not(:first-child)::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 0;
        height: 0;
        border-top: 14px solid transparent;
        border-bottom: 14px solid transparent;
        border-left: 16px solid; /* page background */
        z-index: 1;
    }

    /* STATES */
    .progress-stage.complete {
        background-color: #14b820;
    }

        .progress-stage.complete::after {
            border-left-color: #14b820;
        }

    .progress-stage.current {
        background-color: #ffc107;
    }

        .progress-stage.current::after {
            border-left-color: #ffc107;
        }

    .progress-stage.incomplete {
        background-color: #ee3235;
        background-color: #ededed;
        color: inherit;
    }

        .progress-stage.incomplete::after {
            border-left-color: #ee3235;
            border-left-color: #ededed;
        }

    /* Rounded ends */
    .progress-stage.start {
        border-radius: 5px 0 0 5px;
        border-left: 1px solid #C0C0C0;
        border-top: 1px solid #C0C0C0;
        border-bottom: 1px solid #C0C0C0;
    }

    .progress-stage.middle {
        border-top: 1px solid #C0C0C0;
        border-bottom: 1px solid #C0C0C0;
    }

    .progress-stage.end {
        border-radius: 0 5px 5px 0;
        border-right: 1px solid #C0C0C0;
        border-top: 1px solid #C0C0C0;
        border-bottom: 1px solid #C0C0C0;
    }


/* LEFT COLUMN SCROLLING */
.left-panel {
    padding: 0 20px;
}

@media (max-width: 768px) {
    .left-panel {
        padding: 20px 20px;
    }
}


.quote-sidebar-text-muted {
    color: #8c8c8c;
    font-size: 0.9rem;
}

.quote-text-total {
    color: #0484ec;
}

.help-text {
    font-size: 0.9rem;
    color: #494949;
}

.help-popover {
    background-color: #f5f5f5; /* soft off-white */
    color: #1a1a1a;
    border: 1px solid #143c54; /* your dark blue */
    padding: 10px 14px;
    font-size: 0.9rem;
    border-radius: 8px;
    z-index: 9999 !important;
}

    .help-popover .popover-arrow {
        display: none; /* optional: hide arrow */
    }

.quote-sidebar {
    position: sticky;
    top: 20px;
    padding: 20px;
    background-color: transparent;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
    margin-left: 10px;
    height: 100%;
    border: 2px solid #ee3235;
    /* background: linear-gradient(to bottom, #1b527f, #0f3e65 60%, #0a2f4c); */
    box-shadow: 0 4px 12px rgba(234, 116, 44, 0.32);
}

/* Keep quote total at top nicely styled */
.quote-total {
    font-size: 1.2rem;
    display: flex;
    justify-content: space-between;
}

.mobile-quote-bar {
    position: sticky;
    top: 45px;
    z-index: 2000;
    border: 2px solid #256192;
    border-radius: 10px;
    background-color: #ffffff;
    background: linear-gradient(to bottom, #ffffff, #f5f8fa 70%, #eef2f6);
    box-shadow: 0 4px 12px rgba(0, 50, 100, 0.12);
}

@media (min-width: 768px) {
    .mobile-quote-bar {
        margin-bottom: 20px;
    }
}



/*  Styling for the YES/NO toggle buttons */
/* ------------- */
.toggle-group {
    display: flex; /* horizontal layout for buttons */
    justify-content: space-between; /* pushes children to edges */
    gap: 8px; /* space between Yes/No */
    margin-top: 4px; /* small spacing below label */
}

@media (max-width: 768px) {
    .toggle-group {
        justify-content: flex-start; /* or center */
    }
}

.toggle-option {
    padding: 6px 16px;
    font-size: 0.95rem;
    width: 110px;
    border: 2px solid #ee3235;
    border-radius: 8px;
    background-color: transparent;
    color: #494949;
    cursor: pointer;
    transition: background-color 0.15s, color 0.15s, border-color 0.15s;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

    /* Hover effect (desktop only) */
    .toggle-option:hover {
        background-color: #fff6f7;
    }

    /* Press feedback */
    .toggle-option:active {
        background-color: #fff6f7;
    }

    /* Selected (from Blazor .active class) */
    .toggle-option.active {
        background-color: #ee3235;
        border: 2px solid #fff;
        color: white;
    }

    /* Keyboard focus accessibility */
    .toggle-option:focus-visible {
        outline: 2px solid #80bdff;
        outline-offset: 2px;
    }

/* --- Error / invalid state --- */
.toggle-group.is-invalid .toggle-option {
    border-color: #dc3545; /* Bootstrap danger red */
    color: #dc3545;
    color: #494949;
}

    /* Optional: when hovered in invalid state */
    .toggle-group.is-invalid .toggle-option:hover {
        background-color: #fff6f7;
    }

    /* If one is selected while invalid (user hasn't fixed yet) */
    .toggle-group.is-invalid .toggle-option.active {
        background-color: #ee3235;
        border-color: #dc3545;
        color: #fff;
    }
/* ------------- */
/* ------------------------------------------------------------ */





/* CRM PAGES */
/* ------------------------------------------------------------ */
.body-crm-pages .icon {
    color: #ee3235;
}

.crm-sidebar {
    transition: width 160ms ease;
    overflow-x: hidden;
    white-space: nowrap;
    padding-top: 90px;
    flex-shrink: 0;
}

.crm-sidebar-expanded {
    width: 240px;
    flex-basis: 240px;
}

.crm-sidebar-collapsed {
    width: 60px;
    flex-basis: 60px;
}

.crm-table-scroll {
    max-height: calc(100vh - 200px);
    overflow-y: auto; /* only rows scroll */
    overflow-x: auto;
    width: 100%;
}
.crm-table-scroll.child-table {
    max-height: calc(100vh - 340px);
}

.crm-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 0.94rem;
}

    .crm-table thead th {
        position: sticky;
        top: 0;
        z-index: 2;
        background: #fff;
        color: #6c757d;
        font-size: 0.78rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.04em;
        padding: 0.9rem 1.25rem;
        white-space: nowrap;
        border: 0;
        border-bottom: 1px solid #e9ecef;
    }

    .crm-table tbody td {
        padding: 0.65rem 1.25rem;
        border: 0;
        border-bottom: 1px solid #f1f3f5;
        white-space: nowrap;
        background: #fff;
    }

    .crm-table tbody tr.compact td {
        padding: 0.20rem 1.25rem;
    }

    .crm-table tbody tr:hover td {
        background: #fafafa;
        cursor: pointer;
    }

    .crm-table tbody tr.no-hover:hover td {
        background: #fff;
        cursor: default;
    }

    .crm-table .col-organisation {
        width: 300px; /* adjust to taste */
        min-width: 300px; /* note below */
        white-space: normal;
        overflow-wrap: anywhere;
        word-break: break-word;
        text-overflow: unset;
    }



.crm-tabs {
    border-bottom: 1px solid #e5e7eb;
}

    .crm-tabs .nav-item {
        position: relative;
    }

    .crm-tabs .nav-link {
        border: none;
        background: transparent;
        color: #6b7280;
        padding: 0.7rem 1.2rem;
        border-bottom: 2px solid transparent;
        border-radius: 0;
        font-weight: 500;
    }

    /* vertical divider */
    .crm-tabs .nav-item:not(:last-child)::after {
        content: "";
        position: absolute;
        right: 0;
        top: 25%;
        height: 50%;
        width: 1px;
        background: #e5e7eb;
    }

    .crm-tabs .nav-link:hover {
        color: #111827;
    }

    .crm-tabs .nav-link.active {
        color: #111827;
        border-bottom: 2px solid #ee3235;
    }


.crm-info-panel {
    background: #fff;
    border: 1px solid #edf0f2;
    border-radius: 1rem;
    padding: 1rem 1rem 0.25rem 1rem;
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04);
}

.crm-info-section {
    margin-bottom: 1rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid #f1f3f5;
}

    .crm-info-section:last-child {
        border-bottom: 0;
        margin-bottom: 0;
    }

.crm-info-title {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #6c757d;
    margin-bottom: 0.8rem;
}

.crm-info-grid {
    display: grid;
    grid-template-columns: 140px 1fr;
    row-gap: 0.45rem;
    column-gap: 0.75rem;
}

.crm-label,
.crm-value {
    font-size: 0.85rem;
    line-height: 1.25rem;
    margin: 0;
    padding: 0;
}

.crm-label {
    font-weight: 600;
    color: #6c757d;
    white-space: nowrap;
}

.crm-label-wrap {
    white-space: normal;
}

.crm-value {
    font-weight: 400;
    color: #212529;
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.crm-inline-link {
    font-size: 0.88rem;
    font-weight: 500;
    color: #0d6efd;
    cursor:pointer;
    text-decoration: none;
}

    .crm-inline-link:hover {
        text-decoration: underline;
    }

@media (max-width: 1399.98px) {
    .crm-info-grid {
        grid-template-columns: 105px 1fr;
    }

    .crm-label,
    .crm-value,
    .crm-inline-link {
        font-size: 0.83rem;
    }
}


.crm-edit-icon {
    color: #6c757d;
    font-size: 0.8rem;
    text-decoration: none;
    cursor:pointer;
}

    .crm-edit-icon:hover {
        color: #0d6efd;
    }





.crm-contact-card-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: stretch;
}

.crm-contact-card {
    width: 320px;
    min-height: 220px;
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

.crm-contact-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom:1px solid #e2e2e2;
    padding-bottom: 5px;
    margin-bottom: 12px;
}

.crm-contact-card-title {
    font-weight: 600;
    font-size: 1rem;
    color: #212529;
}

.crm-contact-edit-btn {
    padding: 0;
    font-size: 1.1rem;
    text-decoration: none;
}

.crm-contact-row {
    margin-bottom: 10px;
}

.crm-contact-label {
    font-size: 0.8rem;
    color: #6c757d;
    margin-bottom: 2px;
}

.crm-contact-value {
    font-size: 0.95rem;
    color: #212529;
    word-break: break-word;
}

.crm-add-contact-card {
    border: 2px dashed #ced4da;
    cursor: pointer;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: #fafafa;
}

    .crm-add-contact-card:hover {
        background: #f5f5f5;
        border-color: #adb5bd;
    }

.crm-add-contact-inner {
    width: 100%;
}

.crm-add-contact-plus {
    font-size: 2rem;
    line-height: 1;
    color: #6c757d;
    margin-bottom: 8px;
}

.crm-add-contact-text {
    font-weight: 600;
    color: #495057;
}


.crm-file-row,
.crm-file-row:hover,
.crm-file-row td,
.crm-file-row td:hover {
    cursor: default !important;
}
.crm-file-row .crm-edit-file-icon {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.10s ease-in-out;
    cursor:pointer;
}
.crm-file-row:hover .crm-edit-file-icon {
    opacity: 1;
    pointer-events: auto;
}

.crm-folder-tree-container {
    max-height: 600px;
    overflow-y: auto;
}


.crm-task-row .row-checkbox {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s ease-in-out;
}
    .crm-task-row:hover .row-checkbox,
    .crm-task-row .row-checkbox.always-visible {
        opacity: 1;
        pointer-events: auto;
    }


.crm-autocomplete {
    position: relative;
}

.crm-autocomplete-list {
    margin-top: 0;
    border-top: none;
    max-height: 200px;
    overflow-y: auto;
    position: absolute;
    width: 100%;
    z-index: 1000;
    cursor:pointer;
}

.crm-upload-dropzone {
    transition: all 0.2s ease-in-out;
    min-height: 120px;
}

    .crm-upload-dropzone:hover {
        border-color: var(--bs-primary) !important;
        background-color: var(--bs-primary-bg-subtle) !important;
    }

    .crm-upload-dropzone.dragover {
        border-color: var(--bs-primary) !important;
        background-color: var(--bs-primary-bg-subtle) !important;
    }
/* ------------------------------------------------------------ */







/* ------------------------------------------------------------ */
/* QUOTES & CRM NAVBAR */
/* ------------------------------------------------------------ */
/* Modern Full-Width Navbar with Subtle Divide */
.navbar {
    background: linear-gradient(to bottom, var(--bs-body-bg) 0%, var(--bs-gray-100) 100%);
    border-bottom: 1px solid var(--bs-border-color-translucent);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05); /* soft, shallow shadow */
    backdrop-filter: blur(4px); /* optional: modern glassy effect */
    -webkit-backdrop-filter: blur(4px);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

    .navbar.quote {
        height: 40px;
        display: flex;
        align-items: center; /* ensures vertical centering on all screen sizes */
        padding: 0;
        margin-bottom: 10px !important;
    }
/* Increase margin on large screens */
@media (min-width: 992px) {
    .navbar.quote {
        margin-bottom: 20px !important;
    }
}


/* Force navbar contents to stay horizontally aligned */
.navbar.quote .container {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap; /* <<< stops the phone from dropping */
}

.navbar .quote {
    color: #fff;
    font-size: 14px;
    font-weight: 200;
}

    .navbar .quote .icon {
        color: #ee3235;
    }

    .navbar .quote a {
        color: #fff;
    }


.navbar-color {
    background: linear-gradient(to bottom, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

    .navbar-color.quote {
        background-color: #4c5454 !important;
        background-image: none !important;
    }

.navbar-brand {
    font-weight: 600;
    color: var(--bs-gray-700);
}

    .navbar-brand img {
        height: 50px;
        margin-right: 5px;
    }

    .navbar-brand.quote img {
        height: 25px;
        margin-right: 5px;
    }

/* Nav links */
.nav-link {
    color: var(--bs-gray-700);
    font-weight: 500;
    transition: color 0.2s ease;
}

    .nav-link:hover,
    .nav-link:focus {
        color: var(--bs-primary);
    }

/* Optional scroll “lift” effect if you ever fix it to the top */
.navbar.scrolled {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* ------------------------------------------------------------ */







/* GENERAL */
/* ------------------------------------------------------------ */

h1:focus {
    outline: none;
}

.body-admin-pages .valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid #e50000;
}

.validation-message {
    color: #e50000;
}

.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."
    }

.darker-border-checkbox.form-check-input {
    border-color: #929292;
}




.modal .icon {
    color: #ee3235;
}




.text-danger.small {
    font-size: 0.80rem;
}
.section-divider {
    width: 90%;
    height: 1px;
    background-color: #d7d7d7;
    margin: 20px auto 30px auto;
}
.line-divider {
    height: 1px;
    margin:8px auto 8px auto;
    background-color: #d7d7d7;
}
    .line-divider.vat {
        height: 2px;
    }


/* Fix up Blazor's "invalid" class to match Bootstrap's look */
input:not([type="radio"]):not([type="checkbox"]).invalid,
select.invalid,
textarea.invalid {
    border-color: #dc3545 !important;
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1rem 1rem;
    padding-right: calc(1.5em + 0.75rem);
}

/* Special adjustment for multiline fields */
textarea.invalid {
    background-position: top 0.75rem right 0.75rem;
    background-size: 1rem 1rem;
    padding-right: calc(1.5em + 0.75rem);
}

/* Use a cleaner exclamation SVG (Bootstrap 5.3 version) */
input:not([type="radio"]):not([type="checkbox"]).invalid,
select.invalid,
textarea.invalid {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23dc3545'%3e%3cpath d='M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14zm0-1A6 6 0 1 0 8 2a6 6 0 0 0 0 12zm-.93-6.588L7.07 4.5h1.86l-.001 2.912H7.07zM8 10a.905.905 0 1 1 0 1.81A.905.905 0 0 1 8 10z'/%3e%3c/svg%3e");
}





.fade-in {
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Applying this class removes the spinner from number fields on desktop devices */
.no-spinner::-webkit-inner-spin-button,
.no-spinner::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.no-spinner {
    -moz-appearance: textfield;
}

/* ------------------------------------------------------------ */