﻿#invoicebody {
    padding: 0 !important;
    margin: 0 !important;
    font-family: 'Poppins', sans-serif;
    display: block !important;
    background: #ffff;
    -webkit-text-size-adjust: none;
}

    #invoicebody a {
        color: #38353E;
        text-decoration: none
    }
    /* Campaign Monitor wraps the text in editor in paragraphs. In order to preserve design spacing we remove the padding/margin */
    #invoicebody p {
        padding: 0 !important;
        margin: 0 !important
    }

    #invoicebody a:hover {
        text-decoration: underline;
        color: #AA796A;
    }

    #invoicebody b {
        font-weight: 700;
    }

    #invoicebody table tbody ul li:before {
        font-family: 'FontAwesome';
        content: '\f0da';
        margin: 0 6px 0 -11px;
    }


#watermarked {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' height='100px' width='100px'><text transform='translate(20, 100) rotate(-45)' fill='rgb(255,204,204)' font-size='20'>Draft Invoice</text></svg>");
}

#watermarked1 {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' height='100px' width='100px'><text transform='translate(20, 100) rotate(-45)' fill='rgb(255,204,204)' font-size='20'>Draft Invoice</text></svg>");
}

/* START TOOLTIP STYLES   */
[tooltip] {
    position: relative; /* opinion 1 */
}

    /* Applies to all tooltips */
    [tooltip]::before,
    [tooltip]::after {
        text-transform: none; /* opinion 2 */
        font-size: .9em; /* opinion 3 */
        line-height: 1;
        user-select: none;
        pointer-events: none;
        position: absolute;
        display: none;
        opacity: 0;
    }

    [tooltip]::before {
        content: '';
        border: 5px solid transparent; /* opinion 4 */
        z-index: 1001; /* absurdity 1 */
    }

    [tooltip]::after {
        content: attr(tooltip); /* magic! */
        /* most of the rest of this is opinion */
        font-family: Helvetica, sans-serif;
        text-align: center;
        /* 
    Let the content set the size of the tooltips 
    but this will also keep them from being obnoxious
    */

        max-width: 350px;
        text-align: left;
        border-radius: 2px;
        padding: 1ch 1.5ch;
        border-radius: .3ch;
        box-shadow: 0 1em 2em -.5em rgba(0, 0, 0, 0.35);
        background: #333;
        color: #fff;
        z-index: 1000; /* absurdity 2 */
    }

    /* Make the tooltips respond to hover */
    [tooltip]:hover::before,
    [tooltip]:hover::after {
        display: block;
    }

/* don't show empty tooltips */
[tooltip='']::before,
[tooltip='']::after {
    display: none !important;
}

/* FLOW: UP */
[tooltip]:not([flow])::before,
[tooltip][flow^="up"]::before {
    bottom: 100%;
    border-bottom-width: 0;
    border-top-color: #333;
}

[tooltip]:not([flow])::after,
[tooltip][flow^="up"]::after {
    bottom: calc(100% + 5px);
}

[tooltip]:not([flow])::before,
[tooltip]:not([flow])::after,
[tooltip][flow^="up"]::before,
[tooltip][flow^="up"]::after {
    left: 50%;
    transform: translate(-50%, -.5em);
}

/* FLOW: DOWN */
[tooltip][flow^="down"]::before {
    top: 100%;
    border-top-width: 0;
    border-bottom-color: #333;
}

[tooltip][flow^="down"]::after {
    top: calc(100% + 5px);
}

[tooltip][flow^="down"]::before,
[tooltip][flow^="down"]::after {
    left: 50%;
    transform: translate(-50%, .5em);
}

/* FLOW: LEFT */
[tooltip][flow^="left"]::before {
    top: 50%;
    border-right-width: 0;
    border-left-color: #333;
    left: calc(0em - 5px);
    transform: translate(-.5em, -50%);
}

[tooltip][flow^="left"]::after {
    top: 50%;
    right: calc(100% + 5px);
    transform: translate(-.5em, -50%);
}

/* FLOW: RIGHT */
[tooltip][flow^="right"]::before {
    top: 50%;
    border-left-width: 0;
    border-right-color: #333;
    right: calc(0em - 5px);
    transform: translate(.5em, -50%);
}

[tooltip][flow^="right"]::after {
    top: 50%;
    left: calc(100% + 5px);
    transform: translate(.5em, -50%);
}

/* KEYFRAMES */
@keyframes tooltips-vert {
    to {
        opacity: .9;
        transform: translate(-50%, 0);
    }
}

@keyframes tooltips-horz {
    to {
        opacity: .9;
        transform: translate(0, -50%);
    }
}

/* FX All The Things */
[tooltip]:not([flow]):hover::before,
[tooltip]:not([flow]):hover::after,
[tooltip][flow^="up"]:hover::before,
[tooltip][flow^="up"]:hover::after,
[tooltip][flow^="down"]:hover::before,
[tooltip][flow^="down"]:hover::after {
    animation: tooltips-vert 300ms ease-out forwards;
}

[tooltip][flow^="left"]:hover::before,
[tooltip][flow^="left"]:hover::after,
[tooltip][flow^="right"]:hover::before,
[tooltip][flow^="right"]:hover::after {
    animation: tooltips-horz 300ms ease-out forwards;
}

@media all {
    .page-break {
        display: none;
    }
}



@media print {
    .page-break {
        display: block;
        page-break-before: always;
    }
}

@media print {
    body * {
        visibility: hidden !important;
    }


    #printArea, #printArea * {
        visibility: visible !important;
        background-color: transparent;
    }
}


.ms-drop ul {
    max-height: 150px !important;
}


.popover {
    z-index: 99999 !important;
}







.paper {
    height: 300px;
    width: 600px;
    margin: 50px auto;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

    .paper::after {
        content: '';
        display: block;
        border-width: 0px 75px 75px 0px;
        border-style: solid;
        border-color: #fff transparent;
        position: absolute;
        top: 0;
        right: 0;
    }

    .paper::after {
        content: '';
        display: block;
        border-width: 0px 75px 75px 0px;
        border-style: solid;
        border-color: #d7d7d7 #FFF;
        box-shadow: -5px 6px 10px rgb(129, 127, 127);
        position: absolute;
        top: 0;
        right: 0;
    }

    .paper > h1 {
        margin: 30px 210px;
        font-family: cursive;
    }

    .paper > p {
        padding: 0px 30px;
        font-size: 20px;
        font-family: cursive;
        color: #555;
        margin-top: 100px;
    }


.loader-img1 {
    position: absolute;
    right: 0;
    bottom: 0;
    top: 43%;
    left: 0;
    margin: 0 auto;
    text-align: center;
    background: #f8f9fa !important;
    border-radius: 50% !important;
}


#global-loader1 {
    position: fixed;
    z-index: 50000;
    background: #f5d8d83d !important;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.Mainloader {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: 0 auto;
    z-index: 99;
    background: rgba(255,255,255,0.8);
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Chrome, Safari, Edge, Opera */
/*input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
      -webkit-appearance: none;
      margin: 0;
}*/

/* Firefox */
/*input[type=number] {
      -moz-appearance: textfield;
}*/


.columnText {
    padding: 5px !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    color: black !important;
}
.footer-row {
    margin-top: 0.5rem;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    margin-left: -0.5rem !important;
    margin-right: -0.5rem !important;
    color: #000;
    box-shadow: 0 5px 10px rgba(227, 228, 237, 0.3);
}


.sm-checkbox {
    display: inline-block;
    -moz-appearance: 0px 0px 0px 1px rgba(255,0,0,1);
    -webkit-appearance: none;
    -o-appearance: 0px 0px 0px 1px rgba(255,0,0,1);
    width: 1.94rem;
    height: 1.94rem;
    border-radius: 5px;
    border: 1px solid #eaedf1 !important;
    /* outline: 1px solid #eaedf1 !important; */
    color: #fff;
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 5%);
}

    .sm-checkbox:checked[type=checkbox]:after {
        display: block;
    }

sm-checkbox:after {
    content: "";
    display: none;
    position: relative;
    top: 7px;
    left: 11px;
    width: 0.5rem;
    height: 0.75rem;
    border-bottom: 3px solid #fff;
    border-right: 3px solid #fff;
    -webkit-transform: rotate(45deg);
}

.f-12 {
    font-size: 12px !important;
}


.bg-cyan-light {
    background: #52bced !important;
}
.bg-gradient {
    background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
}
.bg-danger-light {
    background-color: rgb(255 191 187) !important;
}
.bg-danger-lightest {
    background-color: #fbf5f5 !important;
}
.bg-warning-light {
    background-color: rgb(255 219 172 / 99%) !important;
}

.bg-success-light {
    background-color: rgb(214 255 237) !important;
}

.tab-content .rzi {
    color: white;
}

.tab-content .rzi-times {
    color: red;
}


.textBox-color-blue {
    background: #edf4ff;
    border: solid 1px #467fcf6b;
}

.textBox-color-green {
    background: #f2fbf2;
    border: solid 1px #4ecc488c;
}

.textBox-color-yellow {
    background: #fff8e0;
    border: solid 1px #ecb40359;
}

.width130 {
    width: 130px !important;
}

.rz-grid-table-composite {
    table-layout: auto;
}

.cardTDS {
    min-height: 97px;
    background: #dedefd0a;
    border: 1px solid #0000001f !important;
}

.bg-green {
    background: #179311 !important;
}

.bg-yellow {
    background: #b18700 !important;
}

.bg-blue {
    background: #205db3 !important;
}

.circle-icon-222 {
    height: 60px;
    width: 60px;
    margin-top: 18px;
}

.circle-icon-2 {
    height: 45px;
    width: 45px;
}

.row-highlight {
    background-color: #ffce3461;
}

.row-white {
    background-color: white;
}

.row-warning-highlight {
    background-color: #ffe0e0;
}

.labelHead {
    font-size: 15px;
    font-family: Calibri;
    font-style: oblique;
    color: #0816b3;
    text-transform: uppercase;
    margin-bottom: -8px;
    font-weight: 800;
}

.labelBody {
    font-size: 15px;
    font-family: Calibri;
    font-style: oblique;
    color: #080f60;
    /* text-transform: uppercase; */
    margin-bottom: 10px;
}

.rz-datatable-thead th, .rz-grid-table thead th {
    background: linear-gradient(180deg, rgba(140, 140, 140, 1) 0%, rgba(110, 110, 110, 1) 100%);
}

    .rz-grid-table thead th .rz-column-title-content {
        color: white !important;
        font-size: 0.75rem !important;
    }

/*UnComment this to make the grid more compact If the buttons of the grid is replaced with Variant="Variant.Text" */

/*.rz-data-grid.rz-density-compact {
    --rz-grid-cell-padding: 0.2rem 0.5rem !important;
}*/

.rz-panel-menu .rz-navigation-item-link {
    padding: 5px 2px 5px 18px !important;
}

thead th.rz-frozen-cell {
    background: linear-gradient(180deg, rgba(140, 140, 140, 1) 0%, rgba(110, 110, 110, 1) 100%) !important;
}


.side-menu__item {
    margin: 7px 0px 0px 0px;
    border-radius: 0 3.5rem 3.5rem 0 !important;
}

.side-menu {
    height: calc(80dvh + 50px);
}
/* Small height screens */
@media (max-height:650px) {
    .side-menu {
        height: calc(80dvh + 40px);
    }
}

/* Medium height screens */
@media (min-height: 651px) and (max-height: 900px) {
    .side-menu {
        height: calc(85dvh + 24px);
    }
}

/* Large height screens */
@media (min-height: 901px) {
    .side-menu {
        height: calc(80dvh + 24px);
    }
}

@media (min-width: 992px) {
    .app-content {
        margin-left: 17rem;
    }
}
@media (min-width: 1200px) {

    .footer {
        bottom: -7rem;
    }

    .card-title {
        font-size: 0.9rem !important;
        font-weight: bold;
        margin-bottom: 0;
    }

    .left-sidemenu .side-menu__item.active {
        /* background: rgb(194, 49, 54) !important;
    background: linear-gradient(0deg, rgba(194, 49, 54, 0.6) 0%, rgb(249 109 114) 100%) !important;*/
    }

    .rz-panel-menu .rz-navigation-menu .rz-navigation-item-active, .rz-panel-menu .rz-navigation-menu .rz-navigation-item-wrapper-active {
        background-color: #ffa6a926 !important;
        color: #3e201e !important;
    }

    .rz-panel-menu .rz-navigation-menu .rz-navigation-item-wrapper {
        font-weight: 300 !important;
        color: #342e2e !important;
    }

    .version {
        margin-top: unset !important;
        padding-left: unset !important;
        bottom: unset !important;
        padding: 6px 10px 2px 25px !important;
        background: #fffafa;
        position: fixed;
        bottom: 0 !important;
        left: 0;
        width: 100%;
        max-width: 265px;
    }

    .app-content {
        margin-bottom: 0 !important;
        -webkit-transition: margin-left 0.2s ease;
        -o-transition: margin-left 0.2s ease;
        transition: margin-left 0.2s ease;
        overflow: hidden;
        position: relative;
        top: 3.7rem;
        margin-top: unset !important;
    }

        .app-content .side-app {
            padding: 0px 10px 30px 10px !important;
        }

    .page-header {
        min-height: 18px !important;
    }

    .page-header-btn {
        margin-inline-start: auto;
    }

    .card-header {
        flex-wrap: wrap;
        padding: 0.3rem 0.9rem;
    }

    .card-body {
        padding: 0.3rem 0.6rem;
    }

    .rz-grid-table thead th > div:not(.rz-cell-filter) {
        padding: 0rem !important;
    }

    label, p {
        margin-bottom: 0.2rem;
    }


    /* WebKit Browsers (Chrome, Edge, Safari) */
    .side-menu::-webkit-scrollbar {
        width: 8px !important; /* Set scrollbar width */
        height: 60% !important;
    }

    .side-menu::-webkit-scrollbar-thumb {
        border-radius: 10px;
    }

        .side-menu::-webkit-scrollbar-thumb:hover {
            background: #555;
        }

    /* Firefox */
    .side-menu {
        scrollbar-width: thin; /* "auto", "thin", or "none" */
    }

    .side-menu {
        padding: 10px 5px 0 0px;
    }

    .form-label {
        font-size: 0.8rem;
        margin-block: 0;
    }

    /* Added by Himanshu on 2025-07-30 */
    /*   select.form-select {
        background-size: 0.5rem !important;
        padding: 0.25rem 0.5rem !important;
        border-radius: 0.5rem !important;
        line-height: 1.14285714 !important;
        background-repeat: no-repeat !important;
        background-position: right .75rem center !important;
    }
*/
    .rz-datatable-data td .rz-cell-data, .rz-grid-table td .rz-cell-data {
        font-size: 0.75rem !important;
    }

    .rz-button {
        margin: 0.2rem;
    }

    .rz-button-xs {
        margin: 0.1rem;
    }

    .text-wrap {
        font-size: unset !important;
    }

    hr {
        margin: 0.25rem !important;
    }

    h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
        margin-bottom: 0.1rem;
        line-height: unset !important;
    }

    .card-header-lg {
        background: none;
        padding: 0.2rem 0.9rem;
        font-size: 0.9rem;
        font-weight: 600;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }

        .card-header-lg .card-title {
            font-size: 0.9rem;
            font-weight: 600;
        }

    .form-group {
        margin-bottom: 0 !important;
    }

    .card-footer, .card-bottom, .modal-footer {
        display: flex;
        padding: 0.4rem 0.5rem;
        margin-bottom: 0;
    }
    /*.cell-height-5 tbody td, .cell-height-5 tbody th {
    font-size: 0.75rem !important;
    padding: 0.1rem 0.2rem;
}*/

    .badge {
        display: inline-block;
        padding: 1em 0.8em;
        font-size: 75%;
        line-height: 0;
        text-align: center;
        white-space: nowrap;
        vertical-align: baseline;
        border-radius: 0.3rem;
        font-weight: 500;
        margin: 0.1rem;
    }

    .number-font {
        font-weight: 600 !important;
        font-size: 1rem;
    }

    .card {
        position: relative;
        margin-bottom: 0.5rem;
        width: 100%;
    }

    .table thead th {
        border-bottom: 1px solid #eaedf1;
        border-bottom-width: 1px;
        border-top: 0;
        padding: 0.25rem;
    }

    .table td {
        padding: .25rem .5rem;
        vertical-align: middle;
        font-size: 0.8rem;
    }

    .modal-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0.5rem 0.7rem;
    }

    .modal-body {
        position: relative;
        flex: auto;
        padding: 0.5rem;
    }

    .modal-title {
        line-height: 1.5;
        font-size: 1rem;
        font-weight: 600;
    }

    .modal-footer > * {
        margin: unset;
    }

    .fw-bold {
        font-weight: 600 !important;
    }

    .blazored-modal {
        border-radius: 0.3rem;
        padding: 0.25rem;
    }

    .blazored-modal-header {
        display: flex;
        padding: 0rem 0.25rem;
        align-items: center;
        background-color: rgb(194, 49, 54);
        color: white;
    }

    .blazored-modal-title {
        top: 0 !important;
        font-size: 1rem;
        font-weight: 450;
    }

    .blazored-modal-close {
        padding: unset !important;
        margin: unset !important;
        background-color: transparent;
        cursor: pointer;
        font-size: 1.25rem;
        font-weight: 450;
        color: white;
    }

    .blazored-modal-content {
        margin-top: 0.25rem;
    }

    .rz-dialog {
        min-height: unset;
    }

    .rz-dialog-confirm, .rz-dialog-alert {
        padding: 0.5rem;
    }

    .rz-dialog-content, .rz-dialog-side-content {
        flex: auto !important;
        padding: 0 !important;
        overflow: auto !important;
    }

    .rz-dialog-titlebar, .rz-dialog-side-titlebar {
        display: flex;
        align-items: center;
        padding: 0.5rem !important;
    }

    .rz-dialog-alert-buttons, .rz-dialog-confirm-buttons {
        text-align: end;
        justify-content: center;
        padding: 0.1rem;
    }

        .rz-dialog-confirm-buttons .rz-button {
            flex: 4rem 0 !important;
        }

    .rz-dialog-confirm-message, .rz-dialog-alert-message {
        padding: 0.5rem;
        font-size: 0.875rem;
    }

    :not(.radzen-form-field.rz-form-field-content) > .rz-colorpicker.rz-state-disabled, :not(.radzen-form-field.rz-form-field-content) > .rz-numeric.rz-state-disabled, :not(.radzen-form-field.rz-form-field-content) > .rz-listbox.rz-state-disabled, :not(.radzen-form-field.rz-form-field-content) > .rz-autocomplete-input:disabled, :not(.radzen-form-field.rz-form-field-content) > .rz-state-disabled.rz-autocomplete, :not(.radzen-form-field.rz-form-field-content) > .rz-state-disabled.rz-multiselect, :not(.radzen-form-field.rz-form-field-content) > .rz-state-disabled.rz-dropdown, .rz-timespanpicker:not(.radzen-form-field.rz-form-field-content) > .rz-inputtext:disabled, :not(.radzen-form-field.rz-form-field-content) > .rz-colorpicker:disabled, .rz-lookup-search :not(.radzen-form-field.rz-form-field-content) > input:disabled, :not(.radzen-form-field.rz-form-field-content) > .rz-numeric:disabled, .rz-datepicker:not(.radzen-form-field.rz-form-field-content) > .rz-inputtext:disabled, :not(.radzen-form-field.rz-form-field-content) > .rz-multiselect:disabled, :not(.radzen-form-field.rz-form-field-content) > .rz-dropdown:disabled, :not(.radzen-form-field.rz-form-field-content) > .mask:disabled, :not(.radzen-form-field.rz-form-field-content) > .rz-textarea:disabled, :not(.radzen-form-field.rz-form-field-content) > .rz-textbox:disabled, :not(.radzen-form-field .rz-form-field-content) > .rz-state-disabled.rz-dropdown .rz-inputtext, :not(.radzen-form-field .rz-form-field-content) > .rz-numeric.rz-state-disabled .rz-inputtext {
        color: #5d5d5d !important;
        background-color: #f5f6fb !important;
    }

    .rz-tooltip .rz-tooltip-content {
        color: var(--rz-text-contrast-color) !important;
        font-size: 0.815rem;
        padding: 0.2rem 0.3rem 0.2rem 0.3rem;
    }

    .rz-tooltip.tooltip-warning .rz-tooltip-content {
        background: var(--rz-warning) !important;
    }

    .rz-tooltip.tooltip-info .rz-tooltip-content {
        background: var(--rz-info) !important;
    }

    .rz-tooltip.tooltip-success .rz-tooltip-content {
        background: var(--rz-success) !important;
    }

    .rz-tooltip.tooltip-danger .rz-tooltip-content {
        background: var(--rz-danger) !important;
    }

    .rz-tooltip.tooltip-primary .rz-tooltip-content {
        background: var(--rz-primary) !important;
    }

    .rz-tooltip.tooltip-base .rz-tooltip-content {
        background: var(--rz-base) !important;
    }

    .rz-tooltip.tooltip-dark .rz-tooltip-content {
        background: var(--rz-dark) !important;
    }

    .rz-tooltip.tooltip-secondary .rz-tooltip-content {
        background: var(--rz-secondary) !important;
    }

    .rz-panel-menu .rz-navigation-item-link {
        padding: 5px 2px 5px 18px !important;
    }


    .side-header {
        display: flex;
        border-bottom: 1px solid #eaedf1;
        border-right: 1px solid #eaedf1;
        padding: 0.6rem;
        -webkit-transition: left 0.2s ease, width 0.2s ease;
        -o-transition: left 0.2s ease, width 0.2s ease;
        transition: left 0.2s ease, width 0.2s ease;
        height: 3.6rem;
    }

    .side-menu__item.active {
        border-radius: 0 3.5rem 3.5rem 0 !important;
    }

    .header {
        padding-block: 0.2rem;
    }

    .img-card {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 0.3rem;
    }

    .img-card-body {
        padding: 0.5rem 0.8rem;
        display: flex;
    }

    .input-group {
        width: unset !important;
    }

    .row [class*="col-"], [class*="col-"] {
        padding-block: 0.15rem;
    }

    .border-grid .row [class*="col-"] {
        border: 1px solid #eaedf1;
    }

    .border-bottom-primary {
        border-bottom: 3px solid #c23136 !important;
    }

    .tabs-menu ul li a {
        padding: 0.2rem 0.5rem !important;
        font-size: 0.8rem !important;
    }


    .dashboard-card {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-radius: 0.35rem;
        padding: 0.1rem 0.3rem 0.1rem 0.3rem;
        margin-bottom: 0.3rem;
    }

    .dashboard-card-primary {
        background-color: #fbf5f5;
        border-left: 5px solid #c23136;
    }

    .dashboard-card-secondary {
        background-color: #ffceb7;
        border-left: 5px solid #fb6b25;
    }

    .dashboard-card-success {
        background-color: #e1fae8;
        border-left: 5px solid #28a745;
    }

    .dashboard-card-warning {
        background-color: #fff9e6;
        border-left: 5px solid #ffc107;
    }

    .dashboard-card-danger {
        background-color: #fae1e1;
        border-left: 5px solid #dc3545;
    }

    .dashboard-card-info {
        background-color: #e6f0ff;
        border-left: 5px solid #007bff;
    }

    .dashboard-card-gray {
        background-color: #ebebeb;
        border-left: 5px solid #5a6970;
    }

    .dashboard-card-dark {
        background-color: #a5a5a5;
        border-left: 5px solid #343a40;
    }

    .dashboard-card-text {
    }

    .dashboard-card-icon {
        width: 2rem;
        height: 2rem;
        text-align: center;
        font-size: 0.75rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    select.form-control.form-control-sm:not([size]):not([multiple]) {
        height: 1.5rem;
    }

    .alert {
        padding: 0.5rem;
        margin-bottom: 0.5rem;
    }

    .form-control.form-control-sm.form-select {
        padding: 0.2rem 1.5rem 0.2rem 0.2rem;
    }

    .form-control.form-control-sm {
        height: 1.5rem;
        padding: 0.2rem 0.2rem 0.2rem 0.2rem;
        font-size: 0.75rem;
        border: 1px solid #bdbdbd;
        border-radius: 0.2rem;
    }

    .form-control-sm {
        min-height: unset;
    }
    /* Radzen form-field styling for compact view */

    .radzen-form-field {
        border-radius: 0.2rem !important;
        padding-block: 0rem !important;
        padding-inline: 0.2rem !important;
        height: calc(1.5rem) !important;
        line-height: 1.4rem !important;
        font-size: 0.75rem !important;
        width: 100%;
    }

    .radzen-textarea {
        box-sizing: border-box;
        border-radius: 0.2rem !important;
        padding-block: 0.1rem !important;
        padding-inline: 0.2rem !important;
        height: auto;
        line-height: 1.4rem !important;
        font-size: 0.75rem !important;
        width: 100%;
    }

        .radzen-textarea:not(.invalid) {
            outline: none;
        }

    .radzen-form-field .rz-form-field-content {
        margin-block-start: 0 !important;
    }

        .radzen-form-field.rz-variant-outlined .rz-form-field-start, .radzen-form-field.rz-variant-filled .rz-form-field-start, .radzen-form-field.rz-variant-flat .rz-form-field-start, .radzen-form-field .rz-form-field-content .rz-form-field-start, .rz-form-field-content .rz-form-field-end {
            padding-inline-start: 0 !important;
        }

            .radzen-form-field .rz-form-field-content .rz-form-field-start .rzi, .radzen-form-field .rz-form-field-content .rz-form-field-end .rzi {
                font-size: 0.9rem !important;
            }

    .radzen-form-field .rz-inputtext {
        font-size: 0.75rem !important;
    }

    .rz-numeric.radzen-form-field {
        padding: 0 !important;
    }

        .rz-numeric.radzen-form-field > input.rz-numeric-input {
            padding-inline: 0.2rem !important;
        }

    .radzen-form-field .rz-dropdown-clear-icon {
        font-size: 1rem !important;
        opacity: 0.5 !important;
    }

    .radzen-form-field .rz-multiselect-trigger .rzi, .radzen-form-field .rz-dropdown-trigger .rzi {
        color: #000000 !important;
    }

    .radzen-input-group {
        box-sizing: border-box;
        display: inline-flex;
        flex-direction: column;
        vertical-align: top;
        width: 100%;
    }

        .radzen-input-group.rz-state-disabled.rz-variant-outlined .rz-form-field-content {
            border: var(--rz-input-disabled-border);
        }

        .radzen-input-group .rz-form-field-content {
            margin-block-start: 0px;
        }

            .radzen-input-group .rz-form-field-content .rz-form-field-start, .radzen-input-group .rz-form-field-content .rz-form-field-end {
                padding-inline: 0.2rem 0 !important;
            }

                .radzen-input-group .rz-form-field-content .rz-form-field-end button {
                    border-radius: 0 0.2rem 0.2rem 0;
                }

    .radzen-radio-button-list {
        box-sizing: border-box !important;
    }

        .radzen-radio-button-list.rz-radio-button-list-vertical, .radzen-radio-button-list.rz-radio-button-list-horizontal {
            --rz-gap: 0.5rem;
        }
        .radzen-radio-button-list .rz-radio-btn .rz-radiobutton-label, .radzen-radio-button-list .rz-radio-btn .rz-radiobutton-template {
            margin-left: 0.3rem !important;
            margin-right: 0.6rem !important;
        }

    .radzen-checkbox-list {
        box-sizing: border-box;
    }

        .radzen-checkbox-list .rz-stack {
            box-sizing: border-box;
        }

            .radzen-checkbox-list .rz-stack .rz-checkbox .rz-chkbox-label, .radzen-checkbox-list .rz-stack .rz-checkbox .rz-chkbox-template {
                margin-left: 0.2rem;
                margin-right: 0.8rem;
            }

    .rz-multiselect .rz-placeholder, .rz-dropdown .rz-placeholder {
        color: #bdbdbd !important;
    }

    .radzen-datepicker {
        width: 100%;
    }

        .radzen-datepicker .rz-inputtext {
            height: calc(1.5rem) !important;
            font-size: 0.75rem !important;
            padding: 0 0.2rem !important;
        }

        .radzen-datepicker .rz-datepicker-trigger {
            font-size: 1rem;
            height: 1.1rem;
        }

    .radzen-form-label {
        font-size: 0.75rem;
        font-weight: 500;
        margin-left: 0.1rem;
    }

    .radzen-text {
        margin-bottom: 0 !important;
    }

    .radzen-upload {
        display: flex !important;
        align-items: center;
        width: 100%;
        background-color: #d5d5d520;
        border-radius: 0.3rem !important;
        height: calc(2.31rem);
    }

        .radzen-upload .rz-fileupload-buttonbar {
            background-color: transparent !important;
            padding: 0 0.4rem !important;
        }

        .radzen-upload .rz-fileupload-content .rz-fileupload-files {
            background-color: #d5d5d520;
            border-radius: 0.3rem !important;
            padding: 0 !important;
        }

            .radzen-upload .rz-fileupload-content .rz-fileupload-files > div .rz-fileupload-row {
                margin-bottom: 0 !important;
            }

                .radzen-upload .rz-fileupload-content .rz-fileupload-files > div .rz-fileupload-row .rz-button {
                    background-color: transparent !important;
                    box-shadow: none !important;
                    transition: background-color 0.3s ease, box-shadow 0.3s ease;
                }

                    .radzen-upload .rz-fileupload-content .rz-fileupload-files > div .rz-fileupload-row .rz-button:not(.rz-state-disabled):hover, .radzen-upload .rz-fileupload-content .rz-fileupload-files > div .rz-fileupload-row .rz-button:not(.rz-state-disabled):focus {
                        background-position: center;
                        background: #d5d5d550;
                        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1) !important;
                    }

                    .radzen-upload .rz-fileupload-content .rz-fileupload-files > div .rz-fileupload-row .rz-button .rz-icon-trash {
                        font-size: 1rem !important;
                    }

    .table-cell-edited {
        position: relative;
    }

        .table-cell-edited::after {
            content: "";
            position: absolute;
            top: 0;
            right: 0;
            width: 0;
            height: 0;
            border-top: 10px solid red;
            border-left: 10px solid transparent;
        }

    .radzen-tabs {
        box-sizing: border-box !important;
        display: flex !important;
    }

        .radzen-tabs.rz-tabview-top {
            flex-direction: column !important;
        }

            .radzen-tabs .rz-tabview-top > .rz-tabview-nav li {
                border-bottom: 2px solid transparent;
            }

            .radzen-tabs.rz-tabview-top > .rz-tabview-nav .rz-tabview-selected {
                border-top-width: 0;
                border-bottom: 2px solid var(--rz-primary);
            }

            .radzen-tabs.rz-tabview-top > .rz-tabview-nav li a, .radzen-tabs .rz-tabview-nav li a:not([href]):not([class]) {
                padding-block: 0.2rem !important;
                padding-inline: 0.4rem !important;
                font-size: 0.7rem !important;
                font-weight: 500 !important;
                line-height: 1rem;
                letter-spacing: 1px;
                text-transform: none !important;
                background: #ffe8e9 !important;
                border-radius: 0.5rem 0.5rem 0 0 !important;
                margin-inline-end: 0.4rem !important;
            }

            .radzen-tabs.rz-tabview-top > .rz-tabview-nav .rz-tabview-selected {
                border-bottom: 2px solid #c23136 !important;
            }

            .radzen-tabs.rz-tabview-top > .rz-tabview-nav li a {
                color: #000000 !important;
            }

            .radzen-tabs.rz-tabview-top > .rz-tabview-panels .rz-tabview-panel {
                padding: 0.5rem !important;
            }

    .radzen-steps ul li .rz-menuitem-link .rz-steps-number {
        width: 1.5rem;
        height: 1.5rem;
        line-height: 1.2;
    }

    .radzen-steps rz-widget-content {
        padding: 1rem;
    }

    .radzen-html-editor {
        box-sizing: border-box;
        width: 100%;
        display: flex;
        flex-direction: column;
        border-radius: 0.2rem;
        border: 1px solid #e0e0e0;
        overflow: hidden;
    }

        .radzen-html-editor .rz-html-editor-toolbar {
            display: flex;
            flex-wrap: wrap;
            background-color: #f5f5f5;
            border-bottom: 1px solid #e0e0e0;
            line-height: 0.75rem;
            font-size: 0.75rem;
            margin: 0;
        }

            .radzen-html-editor .rz-html-editor-toolbar button {
                background: none;
                border: none;
                padding: 0.5rem;
                cursor: pointer;
                font-size: 1rem;
                color: #333333;
            }

                .radzen-html-editor .rz-html-editor-toolbar button:hover {
                    background-color: #e0e0e0;
                }

            .radzen-html-editor .rz-html-editor-toolbar .rz-html-editor-separator {
                width: 1px;
                background-color: var(--rz-editor-separator-background-color);
                margin-inline: 0.2rem;
            }

            .radzen-html-editor .rz-html-editor-toolbar .rz-html-editor-colorpicker {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                background: #f2f3f5;
                padding: 0.5rem;
            }

                .radzen-html-editor .rz-html-editor-toolbar .rz-html-editor-colorpicker .rz-html-editor-color-value {
                    position: absolute;
                    margin-top: 1rem;
                    bottom: unset;
                    height: 0.3rem;
                    width: 80%;
                }

                .radzen-html-editor .rz-html-editor-toolbar .rz-html-editor-colorpicker button.rz-colorpicker-trigger {
                    display: inline-flex;
                    align-items: center;
                    background: #f2f3f5;
                }

        .radzen-html-editor .rz-html-editor-content {
            flex: 1;
            overflow: auto;
            padding: 0.5rem;
            outline: none;
            background-color: #ffffff;
        }

            .radzen-html-editor .rz-html-editor-content ul {
                list-style-type: none;
                padding: 0px;
                margin: 0px;
            }

                .radzen-html-editor .rz-html-editor-content ul li {
                    display: list-item;
                    margin-left: 1rem;
                    position: relative;
                }

                    .radzen-html-editor .rz-html-editor-content ul li::before {
                        content: '•';
                        position: absolute;
                        left: -1rem;
                        color: #333333;
                    }
}


.mwBreakupBg {
    font-style :normal !important;
    background: #f1f1f1 !important;
   
    padding-left: 35px !important;
}