:root {
    --standard-width: 42px;
    --standard-height: 42px;
    --approve-color: var(--mud-palette-success-lighten);
    --reject-color: var(--mud-palette-warning-lighten);
    --request-color: var(--mud-palette-info-lighten);
    --suspend-color: var(--mud-palette-error-lighten);
}

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    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;
    }

@font-face {
    font-family: 'kanit';
    src: url('fonts/Kanit-Regular.ttf');
}

html, body {
    font-family: 'helvetica neue', helvetica, arial, sans-serif;
    /*font-family: 'kanit', 'Pyidaungsu';*/
}

body {
    height: calc(100vh);
}

main {
    height: calc(100% - 1px);
}

article {
    height: 100%;
/*    background-color: var(--mud-palette-surface);*/
    background: var(--mud-palette-background-gray);
}

button {
    outline: none;
    border: none;
}

    button :hover {
        outline: none;
        border: none;
    }

.standardbtn {
    min-width: var(--standard-width) !important;
    min-height: var(--standard-height) !important;
}

.relative {
    position: relative;
}

.icon-only-btn .mud-button-label .mud-button-icon-start {
    margin: 0px !important;
}

.text-break {
    word-break: break-word !important;
    word-wrap: break-word !important;
}

.mud-dialog-content {
    padding: 0px !important;
    margin: 0px !important;
}

.w-full {
    width: 100% !important;
}

.w-half {
    width: 50% !important;
}

.h-full {
    height: 100% !important;
}

.h-half {
    height: 50% !important;
}

.h-auto {
    height: auto !important;
}

.h-32px {
    height: 32px !important;
}

.h-55px {
    height: 55px !important;
}

.h-56px {
    height: 56px !important;
}

.h-1{
    height : 10%;
}
.h-2 {
    height: 20%;
}
.h-3 {
    height: 30%;
}
.h-4 {
    height: 40%;
}
.h-5 {
    height: 50%;
}
.h-6 {
    height: 60%;
}
.h-7 {
    height: 70%;
}
.h-8 {
    height: 80%;
}
.h-9 {
    height: 90%;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

.text-center {
    text-align: center;
}

.g-10px {
    gap: 10px !important;
}

.g-20px {
    gap: 20px !important;
}

.w-7 {
    width: 70%;
}

.w-3 {
    width: 30%;
}

.w-65 {
    width: 65%;
}

.w-32px {
    width: 32px !important;
}

.p-relative {
    position: relative !important;
}

.p-absolute {
    position: absolute !important;
}

.top-10px {
    top: 10px !important;
}

.right-10px {
    right: 10px !important;
}

.br-4px {
    border-radius: 4px !important;
}

.p-7px {
    padding: 7px !important;
}

.cur-pointer {
    cursor: pointer !important;
}

.mxw-380px {
    max-width: 380px !important;
}

.text-overflow {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 210px;
}

/* ======== margin styles ===========*/

.mr-10px {
    margin-right: 10px !important;
}

.mr-15px {
    margin-right: 15px !important;
}

.mr-minus-10px {
    margin-right: -10px !important;
}

.mr-minus-15px {
    margin-right: -15px !important;
}

.mb-10px {
    margin-bottom: 10px !important;
}

/* ======== margin styles end =======*/

/* ======== padding styles ===========*/

.p-none {
    padding: 0px !important;
}

.p-10px {
    padding: 10px !important;
}

.p-20px {
    padding: 20px !important;
}

/* ======== padding styles end =======*/


/* ======== justify content styles ===========*/

.justify-content-center {
    justify-content: center !important;
}

/* ======== justify content styles end =======*/



/* ======== align items styles ===============*/

.align-items-center {
    align-items: center !important;
}

/* ======== align items styles end =======*/



/* ======== over flow styles =============*/

.o-auto {
    overflow: auto !important;
}

.o-unset {
    overflow: unset !important;
}

.ox-hidden {
    overflow-x: hidden !important;
}

.oy-hidden {
    overflow-y: hidden !important;
}

.primary-color {
    color: var(--mud-palette-primary);
}

.self-center {
    align-self: center;
}
/* ======== over flow styles end =========*/
/* ========border styles =============*/
.bt-none {
    border-top: none !important;
}

.bb-none {
    border-bottom: none !important;
}

.bt-primary {
    border-top: 1px solid var(--mud-palette-primary) !important;
}

.border-primary {
    border: 1px solid var(--mud-palette-primary);
}

.br-50px {
    border-radius: 50px !important;
}
/* ======== border styles end ========*/

.primary-bg {
    background: var(--mud-palette-primary) !important;
}

.secondary-bg {
    background: var(--mud-palette-surface) !important;
}

.approve-bg {
    background: var(--approve-color) !important;
}

.request-bg {
    background: var(--request-color) !important;
}

.register-bg {
    background: var(--mud-palette-secondary-text) !important;
}

.suspend-bg {
    background: var(--suspend-color) !important;
}

.reject-bg {
    background: var(--reject-color) !important;
}

.validation-message {
    color: var(--mud-palette-error) !important;
}

.o-unset .mud-dialog-content {
    overflow: unset;
}

.my-autocomplete .mud-primary-hover {
    background: none !important;
}

.my-autocomplete .mud-primary-text {
    color: var(--mud-palette-text-primary) !important;
}

.my-autocomplete .hightlight .mud-chip-filled.mud-chip-color-error {
    font-size: 12px;
    padding: 5px;
}

.my-modal-title .mud-dialog-title {
    padding: 16px 0px;
}

.my-container .mud-focus-trap-child-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.my-content .mud-dialog-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.p20 .mud-dialog-content {
    padding: 20px !important;
}

.modal-pca .desktop-menu.transparent-bg {
    background: transparent !important;
}

.primary-font-color {
    color: var(--mud-palette-text-primary) !important;
}

.my-tabs .mud-tabs-tabbar-wrapper {
    overflow: auto;
    width: 100%;
}

.no-scroll-buttons .mud-tabs-scroll-button {
    display: none !important;
}

.mud-tabs-tabbar-wrapper {
    transform: none !important;
}

.force-w-full .mud-button-root {
    width: 100% !important;
}

.custom-muditem.mt-10px .mud-input-control {
    margin-top: 10px;
}

.custom-muditem.mt-15px .mud-input-control {
    margin-top: 15px;
}

.custom-muditem.mt-8px .mud-input-control {
    margin-top: 8px;
}

.app-msgd-titlebox {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 5px;
}

    .app-msgd-titlebox.info {
        color: var(--request-color);
    }

    .app-msgd-titlebox.err {
        color: var(--suspend-color);
    }

    .app-msgd-titlebox.warn {
        color: var(--reject-color);
    }

    .app-msgd-titlebox.del {
        color: var(--reject-color);
    }

        .app-msgd-titlebox.warn .app-msgdt-svg, .app-msgd-titlebox.del .app-msgdt-svg {
            background: #ffe5884a;
        }

    .app-msgd-titlebox.info .app-msgdt-svg {
        background: rgb(92 173 255 / 18%);
    }

    .app-msgd-titlebox.err .app-msgdt-svg {
        background: rgb(246 78 98 / 32%);
    }

    .app-msgd-titlebox .app-msgdt-svg {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 10px;
        border-radius: 50%;
    }

    .app-msgd-titlebox .app-msgdt-text {
        font-size: 23px;
        font-weight: bold;
    }

.settings-backdrop {
    position: fixed;
    inset: 0;
    background: transparent;
    z-index: 1000;
    border: none;
    cursor: default;
}

.app-skeleton-loading {
    transform: scale(1) !important;
}

.app-msgd-box {
    padding: 15px 24px 15px 24px;
    border-top: 1px solid #4f4f4f;
    border-bottom: 1px solid #4f4f4f;
    min-width: 320px;
    margin: 0px 0px 10px 0px;
    min-height: 80px;
    display: flex;
    align-items: center;
}

    .app-msgd-box .app-msgdb-title {
        font-size: 15px;
        font-weight: bold;
        margin-right: 5px;
    }


    .app-msgd-box .app-msgdb-message {
    }

.app-msgdia-actionbtn {
    border-radius: 20px !important;
}

.register-color, .A-color .mud-input-slot {
    
}

.request-color, .B-color .mud-input-slot {
    color: var(--request-color) !important;
}


.approve-color, .C-color .mud-input-slot {
    color: var(--approve-color) !important;
}

.reject-color, .D-color .mud-input-slot {
    color: var(--reject-color) !important;
}

.suspend-color, .E-color .mud-input-slot {
    color: var(--suspend-color) !important;
}

.A-color, .A-color .mud-input-slot {
    
}

.B-color, .B-color .mud-input-slot {
    color: var(--request-color) !important;
}

.C-color, .C-color .mud-input-slot {
    color: var(--approve-color) !important;
}

.D-color, .D-color .mud-input-slot {
    color: var(--reject-color) !important;
}

.E-color, .E-color .mud-input-slot {
    color: var(--suspend-color) !important;
}

.disable {
    cursor: not-allowed !important;
    opacity: 0.4 !important;
}

.readonly-box .mud-input .mud-input-root[readonly] {
    cursor: not-allowed !important;
}

.readonly-box .mud-input {
    background: var(--mud-palette-primary-hover) !important;
    cursor: not-allowed !important;
}

.readonly-box .mud-input-adornment, .readonly-box .mud-input-adornment button {
    cursor: unset !important;
}

.nav-app-title{

}

.nestlayout {
    display: flex;
    height: 100%;
}

    .nestlayout .nestly-left {
        height: calc(100% - 20px);
        min-width: 150px;
        width: 150px;
        transition: 0.3s ease-in-out;
        display: flex;
        justify-content: space-between;
        flex-direction: column;
        position: relative;
        overflow-x: hidden !important;
        margin: 10px 0px 5px 10px;
        padding: 0px 8px;
        border-radius: 10px;
        background-color: var(--mud-palette-surface);
    }

.nestlayout .nestly-left .nestly-l-menu {
}

    .nestlayout .nestly-left .nestly-l-menu .nestly-lm-item {
        width: 100%;
        height: 40px;
        min-width: 45px;
        border-radius: 5px;
        display : flex;
        gap : 10px;
        justify-content : flex-start;
        padding : 0px 12px;
    }

        .nestlayout .nestly-left .nestly-l-menu .nestly-lm-item.pn-active {
            background-color: var(--mud-palette-primary);
        }

        .nestlayout .nestly-left .nestly-l-menu .nestly-lm-item .nes-lmi-text {
            font-size: 13px;
        }

        .nestlayout .nestly-left .nestly-l-menu .nestly-lm-item.pn-active .nes-lmi-text {
            color: white;
        }

        .nestlayout .nestly-left .nestly-l-menu .nestly-lm-item.pn-active .nes-lmi-icon {
            color: white;
            display : flex;
        }

        .nestlayout .nestly-left .nestly-l-menu .nestly-lm-item .mud-button-label {
            gap: 10px;
            position: relative;
        }

        .nestlayout .nestly-left .nestly-l-menu .nestly-lm-item.pn-active .nes-lmi-indicator {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            right: -20px;
            width: 2px;
            height: 100%;
            background: var(--mud-palette-primary);
            box-shadow: -1px 0px 5px var(--mud-palette-primary);
        }

        .nestlayout .nestly-left .shrink-box {
            position: absolute;
            top: 50%;
            right: -20px;
            transform: translateY(-50%);
            height: 50px;
            width: 50px;
        }

            .nestlayout .nestly-left .shrink-box button {
                padding: 0px 17px 0px 0px;
                width: 100%;
                height: 100%;
                border-top-left-radius: 20px;
                border-bottom-left-radius: 20px;
                color: var(--mud-palette-drawer-icon);
            }

    .nestlayout .nestly-right {
        width: calc(100% - 160px);
    }

.nest-ly-menu-btn {
}

.nestly-l-hide .nestly-left {
    width: 0px !important;
    padding: 0px !important;
    min-width: 0px !important;
    border: none !important;
}

.nestly-lm-backdropbtn {
    position: fixed;
}

.nestly-l-hide .nestly-right {
    width: 100% !important;
}

.dash-hov-pn-active {
    background: #ab47bc38 !important;
    transform : scale(1.2) !important;
}

.modal-pca.modal-pc-fullscreen {
    height: 100%;
}

.modal-pca .desktop-menu {
    background: var(--mud-palette-primary) !important;
    color: #ffffffb2;
}

    .modal-pca .desktop-menu button {
        color: #ffffffb2;
    }

.page-content-area {
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
}

    .page-content-area .pca-header {
        position: sticky;
        top: 0;
        z-index: 100;
    }

    .page-content-area .lr-header {
        height: 50px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0px 10px;
    }

        .page-content-area .lr-header .pca-h-leftside {
            display: flex;
            gap: 10px;
            align-items: center;
        }

        .page-content-area .lr-header .pca-h-rightside {
            display: flex;
            gap: 10px;
            align-items: center;
        }

    .page-content-area .pca-body {
        padding: 10px 10px 10px 10px;
        overflow: auto;
    }

        .page-content-area .pca-body .mud-table-pagination-toolbar {
        }

    .page-content-area .pca-footer {
        position: sticky;
        bottom: 0;
        z-index: 100;
    }

.modal-pca .pca-body {
    padding: 20px;
    height: auto !important;
    overflow: auto;
}

.pca-nohead-no-bf .pca-body {
    height: 100%;
}

.modal-pca .mpca-ha-mob {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.modal-pca .pca-footer .mpca-ha-mob {
    padding: 10px;
}



.nodata-container {
    height: 300px;
    color: var(--mud-palette-primary);
}

    .nodata-container .nodata-textbox {
        margin-top: -30px;
    }

.app-header {
    height: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 15px;
    position: relative;
}

/*-------------------Login Form Start-------------------*/
.login_background {
    background-image: url('/image/abstract.png');
    background-color: var(--mud-palette-surface);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: 100%;
    width: 100%;
    overflow: hidden;
    font-family: 'Arial', sans-serif;
}

.login_container {
    position: relative;
    background-color: var(--mud-palette-surface);
    border-radius: 25px;
    box-shadow: -1px 6px 30px rgb(99 99 99 / 20%);
    width: 900px;
    max-width: 95%;
    overflow: hidden;
    min-height: 550px;
}

    .login_container p {
        font-size: 14px;
        line-height: 24px;
        letter-spacing: 0.3px;
        margin: 20px 0;
        opacity: 0.9;
    }

.login_additional_action {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

    .login_additional_action .mud-icon-button {
        padding: 0px !important;
        padding-right: 6px !important;
    }

.login_container a {
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0.9
}

    .login_container a:hover {
        color: var(--mud-palette-primary);
        text-decoration: underline;
    }

.login_container .button {
    background: linear-gradient(to right, var(--mud-palette-primary), var(--mud-palette-secondary));
    font-size: 14px;
    color: #fff;
    padding: 12px 45px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .login_container .button.hidden {
        background: transparent;
        border: 2px solid #fff;
        box-shadow: none;
    }

        .login_container .button.hidden:hover {
            background: rgba(255, 255, 255, 0.1);
        }

.login_container form {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 35px;
    height: 100%;
}

/*MudStep controls*/
.login_container .mud-step {
    padding: 0 !important;
}

.login_container .mud-stepper {
    padding: 0 !important;
}

.login_container .mud-stepper-button-complete, .login_container .mud-stepper-button-previous {
    display: none;
}

.stepValid .mud-stepper-button-previous {
    display: flex;
    margin-top: 3px;
    margin-left: -28px;
    font-size: 12px;
}

.mud-stepper-actions {
    padding: 0;
    justify-content: center;
}

    .mud-stepper-actions .flex-grow-1 {
        flex-grow: 0 !important;
    }

.mud-input-control.city {
    width: 28%;
}

.mud-stepper-button-next {
    background: linear-gradient(to right, var(--mud-palette-primary), var(--mud-palette-secondary));
    font-size: 14px;
    color: #fff !important;
    padding: 10px 15px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: fixed;
    bottom: 80px;
    right: 55px;
}


/*-----------------------------*/
.login_form_container {
    position: absolute;
    top: 0;
    height: 100%;
    transition: all 0.6s ease-in-out;
}

.sign_in {
    left: 0;
    width: 50%;
    z-index: 2;
}

.login_container.active .sign_in {
    transform: translateX(100%);
    opacity: 0;
    z-index: 1;
}

.sign_up {
    left: 0;
    width: 50%;
    opacity: 0;
    z-index: 1;
}

.login_container.active .sign_up {
    transform: translateX(100%);
    opacity: 1;
    z-index: 5;
    animation: move 0.6s;
}

@keyframes move {
    0%, 50% {
        opacity: 0;
        z-index: 1;
    }

    51%, 100% {
        opacity: 1;
        z-index: 5;
    }
}

.login_toggle-container {
    position: absolute;
    top: 0;
    left: 50%;
    width: 50%;
    height: 100%;
    overflow: hidden;
    transition: all 0.6s ease-in-out;
    z-index: 10;
    border-radius: 150px 0 0 100px;
}

.login_container.active .login_toggle-container {
    transform: translateX(-100%);
    border-radius: 0 150px 100px 0;
}

.login_container .toggle {
    background: linear-gradient(to right, var(--mud-palette-primary), var(--mud-palette-secondary));
    height: 100%;
    color: #fff;
    width: 200%;
    position: relative;
    left: -100%;
    transform: translateX(0);
    transition: all 0.6s ease-in-out;
}

.login_container.active .toggle {
    transform: translateX(50%);
}

.login_container .toggle_panel {
    position: absolute;
    display: flex;
    width: 50%;
    height: 100%;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 40px;
    text-align: center;
    top: 0;
    transform: translateX(0);
    transition: all 0.6s ease-in-out;
}

.toggle_left {
    transform: translateX(-200%);
}

.toggle_right {
    right: 0;
    transform: translateX(0);
}

.login_container.active .toggle_left {
    transform: translateX(0);
}

.login_container.active .toggle_right {
    transform: translateX(200%);
}

.login_container h1 {
    font-size: 28px;
    margin-bottom: 45px;
}

.toggle_panel h1 {
    color: #fff;
    font-size: 32px;
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.confetti {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #f00;
    opacity: 0;
}

.additional-text {
    display: none !important;
    font-size: 14px;
    color: #666;
}

.toggle-link {
    display: none;
    color: var(--mud-palette-primary);
    font-size: 14px;
    text-decoration: underline;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .toggle-link:hover {
        color: var(--mud-palette-secondary);
    }

.welcome-block {
    display: none;
    text-align: center;
    margin-bottom: 20px;
}

.city_address_pair {
    flex-direction: row !important;
}

.mud-input-control.city {
    width: 28%;
}

.mud-step.mud-ripple {
    background: var(--mud-palette-surface);
}

.stepValid .placeholder-block {
    display: none;
}

/*mobile view*/


/*    smallest view*/


/*-------------------Login Form-------------------*/

/*------------------- OTP -------------------*/
.login_background.otp-container .sign_in {
    display: flex;
    align-items: center;
    justify-content: center;
}

.login_background.otp-container h1 {
    /*    margin-bottom: 25px;*/
    /*    margin-top: 53px;*/
    text-align: center;
}

.login_background.otp-container .button:disabled {
    background: #e5e7eb;
    color: #9ca3af;
    box-shadow: none;
    cursor: not-allowed;
    filter: saturate(.25) contrast(.95);
    transform: none;
}

.otp-box {
    width: 50px;
    height: 50px;
    border: 1px solid var(--mud-palette-primary-text);
    font-size: 20px;
    text-align: center;
    color: var(--mud-palette-primary-text);
    border-radius: 15px;
    background: var(--mud-palette-surface);
    transition: all 0.25s ease;
    outline: none;
}

    .otp-box:focus {
        border-color: var(--mud-palette-primary);
        box-shadow: 0 0 6px 3px var(--mud-palette-primary);
        outline: none;
    }



/*------------------- OTP -------------------*/

/*------------------- Loading -------------------*/

.loader-container {
    display: none;
    opacity: 0;
    visibility: hidden;
}

    .loader-container.active {
        display: block;
        opacity: 1;
        visibility: visible;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 9999;
    }

#container {
    width: 100px;
    height: 125px;
    margin: auto auto;
}

.loader {
    display: block;
    text-align: center;
    font-size: 20px;
    font-family: 'Inter', sans-serif;
    font-weight: bold;
    padding-bottom: 15px;
    color: #888;
}

.loading-circle {
    display: block;
    border-left: 5px solid;
    border-top-left-radius: 100%;
    border-top: 5px solid;
    margin: 5px;
    animation-name: Loader_611;
    animation-duration: 1500ms;
    animation-timing-function: linear;
    animation-delay: 0s;
    animation-iteration-count: infinite;
    animation-direction: normal;
    animation-fill-mode: forwards;
}

.sp1 {
    border-left-color: var(--mud-palette-primary);
    border-top-color: var(--mud-palette-primary);
    width: 40px;
    height: 40px;
}

.sp2 {
    border-left-color: var(--mud-palette-secondary);
    border-top-color: var(--mud-palette-secondary);
    width: 30px;
    height: 30px;
}

.sp3 {
    width: 20px;
    height: 20px;
    border-left-color: gray;
    border-top-color: gray;
}

@keyframes Loader_611 {
    0% {
        transform: rotate(0deg);
        transform-origin: right bottom;
    }

    25% {
        transform: rotate(90deg);
        transform-origin: right bottom;
    }

    50% {
        transform: rotate(180deg);
        transform-origin: right bottom;
    }

    75% {
        transform: rotate(270deg);
        transform-origin: right bottom;
    }

    100% {
        transform: rotate(360deg);
        transform-origin: right bottom;
    }
}
/*------------------- Loading -------------------*/


/*------------------- Splash Screen -------------------*/

.splash-container {
    display: none;
    opacity: 0;
    visibility: hidden;
}

    .splash-container.active {
        background-color: var(--mud-palette-surface);
        display: block;
        opacity: 1;
        visibility: visible;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 9999;
    }

.splash-card {
    padding: 1rem 2rem;
    border-radius: 1.25rem;
}

.splash-loader {
    color: rgb(124, 124, 124);
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 37px;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    height: 40px;
    padding: 10px 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-radius: 8px;
}

.splash-words {
    overflow: hidden;
    position: relative;
}

    .splash-words::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( var(--bg-color) 10%, transparent 30%, transparent 70%, var(--bg-color) 90% );
        z-index: 20;
    }

.splash-word {
    display: block;
    height: 100%;
    padding-left: 6px;
    color: #7e6fff;
    animation: spin_4991 4s infinite;
}

@keyframes spin_4991 {
    10% {
        -webkit-transform: translateY(-102%);
        transform: translateY(-102%);
    }

    25% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    35% {
        -webkit-transform: translateY(-202%);
        transform: translateY(-202%);
    }

    50% {
        -webkit-transform: translateY(-200%);
        transform: translateY(-200%);
    }

    60% {
        -webkit-transform: translateY(-302%);
        transform: translateY(-302%);
    }

    75% {
        -webkit-transform: translateY(-300%);
        transform: translateY(-300%);
    }

    85% {
        -webkit-transform: translateY(-402%);
        transform: translateY(-402%);
    }

    100% {
        -webkit-transform: translateY(-400%);
        transform: translateY(-400%);
    }
}
/*------------------- Splash Screen -------------------*/

.app-grid {
    height: 100%;
}

    .app-grid .mud-table-container {
        height: 100%;
    }

    .app-grid.my-grid .mud-table-container {
        max-height: calc(100vh - 280px);
        overflow: auto !important;
    }

.app-grid-mobile.my-grid .mud-table-container {
    max-height: calc(100vh - 370px);
    overflow: auto !important;
}

.app-grid .grid-header {
    /*background-color: var(--mud-palette-primary) !important;
    color: white !important;
    border-right: 1px solid white !important;*/
    /* border-right: 1px solid var(--mud-palette-action-default-hover) !important;*/
   /* background: #F7F5FB !important;*/
}

.mud-table-head:hover .mud-resizer {
    border-right: 1px solid var(--mud-palette-action-default-hover) !important;
}
    
.app-grid .mud-table {
    height: 100%;
}

.app-grid.selectable {
    height: calc(100% - 33px);
}

.filter-button, .drag-icon-options {
    display: none;
}

.templateColumn {
    background-color: var(--mud-palette-primary) !important;
    color: var(--mud-palette-primary-text) !important;
}

.w100 {
    width: 100px;
}

.w180 {
    width: 180px;
}

.w200 {
    width: 200px
}

.w215 {
    width: 215px;
}

.w228 {
    width: 228px;
}

.w250 {
    width: 250px;
}

.w262 {
    width: 262px;
}

.w300 {
    width: 300px;
}

.w370 {
    width: 370px;
}

.w400 {
    width: 400px;
}

.w420 {
    width: 420px;
}

.w430 {
    width: 430px;
}

.w500 {
    width: 500px;
}

.w600 {
    width: 600px;
}

.w700 {
    width: 700px;
}

.w800 {
    width: 800px;
}

.mw145 {
    min-width: 145px;
}

.mw340 {
    min-width: 340px;
}

.mxw340 {
    max-width: 340px;
}

/*===========================Client========================*/

.clientForm {
    height: calc(100% - 82px);
}

.cli_mobile_h {
    min-height: 82px;
}

.rese-client-count {
    position: absolute;
    font-size: 11px;
    border-radius: 50%;
    background: var(--mud-palette-primary);
    height: 20px;
    width: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mud-palette-text-primary) !important;
}

.resecc-desk {
    right: -5px;
    border: 1px solid var(--mud-palette-drawer-text);
}

.resecc-mob {
    top: 0;
    left: 15px;
}

.client-list-tmenu .dtm-menu-item.active {
    background: var(--mud-palette-primary);
    border-radius: 25px;
    transition: color 0.3s ease;
    background: linear-gradient(to right, var(--mud-palette-primary), var(--mud-palette-secondary));
}

.clie-mud-tab {
    height: calc(100% - 10px);
}

    .clie-mud-tab .mud-tabs-panels {
        height: calc(100% - 48px);
    }

    .clie-mud-tab .mud-tabs-tabbar {
        position: sticky;
        top: 0;
        z-index: 100;
    }

.resellerListTap {
    overflow-x: auto;
    max-width: calc(100% - 195px);
}

.resellerEntryTap {
    overflow-x: auto;
    max-width: calc(100% - 150px);
}

    .resellerEntryTap.resellerEntryInfo {
        max-width: calc(100% - 200px);
    }

.clientListTap {
    overflow-x: auto;
    max-width: calc(100% - 250px);
}

.invoiceListTap {
    overflow-x: auto;
    max-width: calc(100% - 250px);
}



.mobile-menu .client-list-tmenu {
    overflow-x: auto;
    gap: 14px;
}

.mobile-menu .m-menu-bar {
    justify-content: center !important;
}

.headerTap .dtm-menu-item, .client-list-tmenu .m-menu-item {
    white-space: nowrap;
    min-width: auto !important;
}

.mobile-menu .client-list-tmenu .m-menu-item.active :is(.m-menu-i-text, .m-menu-i-icon) {
    transition: color 0.4s ease;
    font-weight: 300;
    font-size: 15px;
    background: var(--mud-palette-primary);
    color: var(--mud-palette-secondary-text);
    padding: 5px 10px;
    border-radius: 15px;
    background: linear-gradient(to right, var(--mud-palette-primary), var(--mud-palette-secondary));
}


.cliCont {
    width: auto;
    border-radius: 12px;
    padding: 12px;
    border: 1px solid var(--mud-palette-lines-default);
}

    .cliCont.slide-in-fwd-center {
        -webkit-animation: slide-in-fwd-center 0.7s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
        animation: slide-in-fwd-center 0.7s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    }

.sws {
    padding: 20px;
}

.software-selection-mudchip {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2px;
    margin-top: 20px;
}

.ssm-item {
    padding: 20px 30px;
}

.software-selected-mudchip {
    padding: 20px 30px;
    width: 100%;
    overflow: hidden;
}

.app-mud-menu-icon-only button {
    padding: 6px 16px !important;
    min-width: var(--standard-width) !important;
    min-height: var(--standard-height);
}

.cli-mudtab-action-btnbox {
    position: absolute;
    right: 2px;
    top: -45px;
    margin-right: 5px;
    z-index: 101;
}

.client-search-mud-menu .mud-popover.mud-popover-open {
    min-width: 200px;
}

.mudtab-d-actionbtn {
    margin-top: 5px;
}

    .mudtab-d-actionbtn button {
        padding: 6px 16px !important;
        min-width: var(--standard-width) !important;
        min-height: 55px !important;
    }

@-webkit-keyframes slide-in-fwd-center {
    0% {
        -webkit-transform: translateZ(-1400px);
        transform: translateZ(-1400px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        opacity: 1;
    }
}

@keyframes slide-in-fwd-center {
    0% {
        -webkit-transform: translateZ(-1400px);
        transform: translateZ(-1400px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        opacity: 1;
    }
}
/*===========================Client========================*/
/*===========================Invoice========================*/
/*search filter in reseller entry*/
.search-filter {
    position: absolute;
    width: 380px;
    background: var(--mud-palette-black);
    border-radius: 10px;
}

    .search-filter.invctyp {
        width: 250px;
    }

.search-filter-tr-reseller {
    top: 60px;
    right: 14px;
}

.drange-pd {
    padding: 5px;
}

/*search filter in client entry*/

.search-container {
    text-align: end;
    padding-right: 10px;
    margin-top: -20px;
}

.search-filter-tr-client {
    top: 50px;
    right: 0px;
    z-index: 10;
}

.search-select {
    width: 100px;
    padding: 5px;
    margin-bottom: 8px;
}

.adornament .mud-input-adornment-start {
    margin-right: 0px !important;
    margin-inline-end: 0px !important;
}

.text-align {
    text-align: left;
}

.invoicelist-pca .invlist-daterange-box {
    width: 320px;
    margin-left: auto;
    margin-right: 5px;
}

.inv-data-width {
    min-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 10px;
}

.invoicelist-pca-100 .app-grid {
    height: 100%;
}

.invoicelist-pca .app-grid {
    height: calc(100% - 55px);
}

.mud-dialog-fullscreen > div:first-child, .mud-dialog-fullscreen .mud-dialog-content {
    height: 100%;
}

.inv-ent-desk {
    height: 100%;
    border-radius: 15px;
    background: var(--mud-palette-background-gray);
}

.inv-voucher-section {
    padding: 15px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.inv-entry .inv-vs-item {
    display: flex;
    justify-content: space-between;
    height: 50px;
    align-items: center;
}

    .inv-entry .inv-vs-item div:nth-child(1) {
    }

    .inv-entry .inv-vs-item div:nth-child(2) {
        font-size: 15px;
        font-weight: bold;
    }

.inv-entry-tra-monthbox {
    margin-bottom: -10px;
}

.inv-entry .inv-vsi-border {
    border-bottom: 1px dotted var(--mud-palette-action-default);
}

.inv-entry .bot-margin {
    margin-bottom: 10px;
}

.inv-entry .section-border {
    border-bottom: 2px solid var(--mud-palette-drawer-text);
}

.inv-action-btn, .clientSearchBtn {
    background: linear-gradient(to right, var(--mud-palette-primary), var(--mud-palette-secondary));
    font-size: 14px;
    padding: 12px 45px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.inv-ent-mobile {
    height: 64px;
    position: relative;
    padding: 0px 10px;
    background: var(--mud-palette-background-gray);
    align-items: center;
    justify-content: center;
}

    .inv-ent-mobile .inv-vous-mobile {
        position: absolute;
        width: 100%;
        left: 0;
        bottom: 64px;
        background: var(--mud-palette-background-gray);
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
        height: calc(100dvh - 90px);
        overflow: auto;
    }

.inv-ent-mob-hide {
    overflow: hidden;
    background-color: var(--mud-palette-surface);
    height: 0 !important;
}

    .inv-ent-mob-hide .inv-en-mh-closebtn {
        display: none;
    }

.inv-ent-mobile .inv-action-btn {
    background: var(--mud-palette-action-disabled-background);
}

.inv-vous-m-ani {
    animation: inv-enm;
    animation-iteration-count: initial;
    animation-duration: 0.3s;
    animation-timing-function: linear;
}

/* card layout for all list*/

.inv-ent-headtext {
    font-size: 20px;
    font-weight: bold;
}

.inv-e-extent-container {
    max-width: 100%;
}

.inve-info-box {
    padding: 15px;
    border-radius: 15px;
    background: var(--mud-palette-background-gray);
}

.inve-info-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.inve-info-b-typetext {
    font-size: 18px !important;
    color: var(--mud-palette-primary-darken) !important;
}

.inve-info-i-d {
    width: 50%;
    display: flex;
    gap: 10px;
}

    .inve-info-i-d div:nth-child(1) {
        min-width: 100px;
    }

    .inve-info-i-d div:nth-child(3) {
        text-overflow: ellipsis;
        overflow: hidden;
        font-size: 16px;
        font-weight: bold;
        color: var(--mud-palette-drawer-text);
    }



.inve-info-i-f {
}

.inve-info-i-s {
}

.inve-headerbar {
    border: none !important;
    box-shadow: none !important;
}

.inve-tran-totaltext {
    font-size: 18px;
    font-weight: bold;
    color: var(--mud-palette-primary);
}

.inve-boxborder {
    border: 1px solid var(--mud-palette-drawer-text);
}

.inve-infobox-bg {
    background: linear-gradient(90deg, var(--mud-palette-background-gray), var(--mud-palette-secondary-hover));
}

.inve-fromto-box {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 15px 10px;
    justify-content: center;
    border: 1px solid var(--mud-palette-background);
    border-radius: 10px;
}

    .inve-fromto-box :is(div:nth-child(1), div:nth-child(3)) {
        font-size: 16px;
        font-weight: bold;
        color: var(--mud-palette-primary);
    }

    .inve-fromto-box :is(div:nth-child(2), div:nth-child(4)) {
        color: var(--mud-palette-drawer-text);
    }

.inve-total-num {
    font-size: 18px !important;
    color: var(--mud-palette-drawer-text) !important;
}

.inve-price-info {
    font-size: 11px !important;
    color: var(--mud-palette-info-lighten) !important;
    font-weight: normal !important;
}

.relatedExtLis {
    height: calc(100dvh - 415px);
}


.extendBtnArea {
    display: flex;
    justify-content: end;
    padding: 10px;
}

.sticky {
    position: sticky;
    z-index: 3;
    background-color: var(--mud-palette-surface) !important;
}

.mud-data-grid .mud-table-cell.sticky-left, .mud-data-grid .mud-table-cell.sticky-right {
    position: sticky;
    background-color: var(--mud-palette-surface);
    z-index: 1;
}

.sticky-col1 {
    left: 0px;
}

.sticky-col2 {
    left: 255px;
}

.sticky-col3 {
    left: 520px;
}

.delMsg {
    font-weight: bold;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    min-width: 0;
}

.mud-data-grid {
    overflow-x: auto !important;
    overflow-y: auto !important;
}

.sticky-header {
    background: white;
    z-index: 5 !important;
}

@keyframes inv-enm {
    0% {
        position: absolute;
        bottom: -200px;
        opacity: 0;
    }

    100% {
    }
}

/*===========================Invoice========================*/
/*---------------------------Reseller=======================*/
.resellerPaper .btn {
    border: none;
    outline: none;
    border-radius: 14px;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.resellerPaper {
    width: 150px;
    height: 150px;
    border: 1px solid;
    display: flex;
    justify-content: center;
    border-radius: 14px;
}

    .resellerPaper.req:hover {
        box-shadow: 0px 0px 1px 2px var(--request-color);
    }

    .resellerPaper.apv:hover {
        box-shadow: 0px 0px 1px 2px var(--approve-color);
    }

    .resellerPaper.rej:hover {
        box-shadow: 0px 0px 1px 2px var(--reject-color);
    }

    .resellerPaper.sus:hover {
        box-shadow: 0px 0px 1px 2px var(--suspend-color);
    }

.stsDialog .mud-dialog-title {
    background: var(--mud-palette-primary);
}

/*===== skeleton loading css =====*/

.mud-skeleton-wave::after {
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    content: "";
    position: absolute;
    transform: translateX(-100%);
    animation: 1.6s linear 0.5s infinite normal none running mud-skeleton-keyframes-wave;
    background: linear-gradient(90deg, transparent, rgba(255,255,255, 0.1), transparent);
}

/*===== skeleton loading css end =====*/

/*Custom Popover CSS*/

.popover-backdropbtn {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 500;
    position: fixed;
    cursor: default;
}

.popover-area {
    z-index: 501;
    position: relative;
   /* box-shadow : 0px 0px 5px gray;*/
    border-radius : 5px;
}

.checkbox-disable {
    cursor: not-allowed !important;
}

    .checkbox-disable .mud-input-control-input-container {
        pointer-events: none !important;
    }

.popover-container {
    border: 1px solid var(--mud-palette-lines-default);
    background-color: var(--mud-palette-surface);
    position: absolute;
    top: 60px;
    right: 10px;
    padding: 10px;
    z-index: 999;
}

    .popover-container.license {
        max-width: 340px;
    }

.type-container {
    display: flex;
    flex-direction: row;
}

.search-select {
    margin-bottom: 10px;
}


.historySearchBtn {
    margin-top: 4px;
    height: 59px !important;
}

.popcontainer {
    min-width: 182px;
}

/*Custom Popover CSS End*/



.planCard-parent-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    height: 100%;
}

.plan-grid {
    width: 100%;
    max-width: 1200px;
    height: 100%;
}

.plan-container {
    width: 100%;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    padding-bottom: 10px;
}

    .plan-container .first-row {
        display: flex;
        gap: 20px;
    }

    .plan-container .second-row {
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
        position: relative;
    }

.plan-card.recent {
    background: none;
}

    .plan-card.recent .discount-badge {
        background: var(--mud-palette-success);
    }

    .plan-card.recent .choose-button {
        background: var(--mud-palette-success);
        box-shadow: 0 0px 15px var(--mud-palette-success);
        border: 2px solid var(--mud-palette-success);
        color: var(--mud-palette-white);
    }

.plan-card {
    background: var(--mud-palette-background-gray);
    backdrop-filter: blur(12px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 30px;
    width: 100%;
    max-width: 350px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .plan-card.customize {
        max-width: 350px;
        text-align: center;
        padding: 30px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        /*        order: 1; */
        background: none;
        border: 2px dashed var(--mud-palette-primary);
    }

.customize-btn-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.customize .plan-name {
    margin-bottom: 25px;
}

.customize .choose-button {
    width: auto;
    padding: 16px 32px;
}

.plan-card:hover, .plan-card.customize:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.discount-badge {
    background: linear-gradient(to right, var(--mud-palette-primary), var(--mud-palette-secondary));
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

.plan-name {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.price-container {
    background-color: var(--mud-palette-action-disabled-background);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 25px;
}

.original-price {
    font-size: 1.2rem;
    text-decoration: line-through;
    opacity: 0.7;
    margin-bottom: 5px;
}

.current-price {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.savings {
    font-size: 0.9rem;
    color: var(--mud-palette-success-darken);
    margin-bottom: 5px;
    font-weight: 600;
}

.features {
    list-style-type: none;
    margin-bottom: 30px;
}

    .features li {
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        display: flex;
        align-items: center;
        gap: 10px;
    }

        .features li:last-child {
            border-bottom: none;
        }

.choose-button {
    display: block;
    width: 100%;
    padding: 16px;
    background: transparent;
    border: 2px solid var(--mud-palette-primary);
    border-radius: 14px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0px 15px var(--mud-palette-primary);
}

.popular .choose-button {
    background: linear-gradient(to right, var(--mud-palette-primary), var(--mud-palette-secondary));
    border: none;
    color: var(--mud-palette-white);
}

.plan-card.popular {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--mud-palette-primary);
    box-shadow: 0px 0px 7px 2px var(--mud-palette-primary);
}

    .plan-card.popular:hover {
        box-shadow: 0 0px 20px var(--mud-palette-primary);
    }

.popular-flag {
    display: none;
}

.popular .popular-flag {
    display: block;
    position: absolute;
    top: 32px;
    right: -45px;
    background: var(--mud-palette-primary);
    color: white;
    padding: 6px 40px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 2px 10px var(--mud-palette-primary);
}

.divider {
    display: flex;
    align-items: center;
    margin: 40px 0;
    width: 100%;
    position: relative;
}

.divider-line {
    flex: 1;
    height: 2px;
    background-color: var(--mud-palette-primary);
}

.divider-or {
    font-size: 13px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -30px;
    color: var(--mud-palette-drawer-icon);
}


.divider-label {
    padding: 0 15px;
    color: var(--mud-palette-primary);
    font-weight: 600;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.divider-gradient .divider-line {
    background: linear-gradient(90deg, transparent, var(--mud-palette-primary), transparent);
}

.plane-userinpit-box {
    position: absolute;
    top: -55px;
    right: 0;
    display: flex;
    gap: 10px;
    align-items: center;
}

    .plane-userinpit-box .plane-e-userinput {
        height: 40px;
        width: 60px;
        border: 1px solid var(--mud-palette-action-disabled);
        border-radius: 10px;
        background: var(--mud-palette-primary-hover);
        color: var(--mud-palette-text-primary);
        font-size: 15px;
        padding: 10px;
        text-align: center;
    }

        .plane-userinpit-box .plane-e-userinput::-webkit-outer-spin-button,
        .plane-userinpit-box .plane-e-userinput::-webkit-inner-spin-button {
            -webkit-appearance: none;
            margin: 0;
        }

    .plane-userinpit-box .plane-e-usertext {
        font-size: 13px;
    }

.plane-e-userinput:before {
    content: "User"
}



/*reseller profile start*/

.pnt {
    display: flex;
    justify-content: center;
}

.pInfo {
    display: flex;
    flex-direction: row;
    gap: 25px;
}

.pitem {
    display: flex;
    gap: 10px;
}

.pleftData, .prightData, .pinpData {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.res-profile-card {
    border: 1px solid var(--mud-palette-primary);
    padding: 25px;
    border-radius: 12px;
    gap: 22px;
}

.nestly-l-menu .mud-tooltip-inline {
    width: 100% !important;
}

/*reseller profile end*/

/*unauth start*/
.unauth {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    flex-direction: column;
    margin-bottom: 8px;
}

    .unauth button {
        background: linear-gradient(to right, var(--mud-palette-primary), var(--mud-palette-secondary));
        font-size: 14px;
        color: #fff;
        padding: 12px 45px;
        border: none;
        border-radius: 50px;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
        margin-top: 10px;
    }
/*unauth end*/
.cliActBtn {
    border: 1px solid white;
    color: white;
}

.inv-data-list.inv-elli-text.delete {
    color: var(--suspend-color);
}

.selectErr fieldset {
    border-color: var(--mud-palette-error) !important;
}

.mb-6 {
    margin-bottom: -6px !important;
}

.selectErr .mud-input-control-input-container label.mud-input-label {
    color: var(--mud-palette-error) !important;
}

.switches {
    width: max-content;
}

.mud-popover, .popover-container {
   /* box-shadow: 0 2px 8px var(--mud-palette-primary) !important;*/
    border-radius: 10px;
}

.invc-popover {
    width: auto;
    max-width: 310px;
}

.custom-placeholder ::placeholder {
    font-size: 0.9rem;
}

.custom-select .mud-typography, .custom-select-input .mud-input-slot {
    font-size: 0.9rem !important;
}

.applogo {
    color: var(--mud-palette-dark-lighten);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    gap : 10px;
}

.nly-r-header {
    height: 75px;
    padding : 10px 10px 5px 10px;
}

.appheader {
    width: 100%;
    height: 65px;
    border-radius: 10px;
    background-color: var(--mud-palette-surface);
    display: flex;
    justify-content: space-between;
    padding: 0px 0px 0px 15px;
}

.apphead-first {
    display: flex;
    flex-direction: column;
    justify-content : center;
    gap: 3px;
}

.aph-user-name{
    font-weight : bold;
    font-size : 20px;
}

.apphead-second {
    display: flex;
    align-items: center;
    gap: 5px;
}


.aph-lang-btn {
    display: flex;
    padding: 5px 10px;
    gap: 5px;
   /* background: #e0e0e0ad;*/
    border-radius: 15px;
}

    .aph-lang-btn img {
        height : 14px;
       /* width : 15px;*/
       /* border-radius : 50%;*/
    }

.theme-change-btn{
    padding : 10px !important;
}

.theme-change-btn svg {
    height : 18px !important;
    width : 18px !important;
}

.nly-r-body {
    height: calc(100% - 75px); 
}

.dash-box-style {
    background-color: var(--mud-palette-surface);
    padding : 10px;
    min-width : 240px;
    min-height : 205px;
    border-radius : 10px;
}

.dash-perbtn {
    padding: 7px 10px;
    border-radius: 5px;
    background-color: var(--mud-palette-surface);
    color: var(--mud-palette-gray-dark);
    font-size: 13px;
}

.dperb-active {
    background: var(--mud-palette-warning) !important;
    color : #fff;
}

.dash-infobox-header {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: -10px;
    width: 90%;
    /*background: var(--mud-palette-primary-text);*/
    padding: 10px 15px;
    border-radius: 10px;
   /* box-shadow: rgba(0, 0, 0, 0.09) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgb(255 255 255 / 9%) 0px 8px 4px, rgb(191 191 191 / 18%) 0px 16px 8px, rgb(227 184 255 / 9%) 0px 32px 16px;*/
    box-shadow: rgba(50, 50, 105, 0.15) 0px 2px 5px 0px, rgba(0, 0, 0, 0.05) 0px 1px 1px 0px;
}

.dash-invoice-type-card {
    /*background-color: #f8fafc;*/
    border-radius: 14px;
    padding: 10px;
    /*border: 1px solid var(--mud-palette-action-disabled);*/
    border: 1px solid var(--mud-palette-action-default-hover);
    min-width: 80px;
}

    .dash-invoice-type-card.all svg {
        color: #3b82f6;
    }

    .dash-invoice-type-card.renew svg {
        color: #10b981;
    }

    .dash-invoice-type-card.extend svg {    
        color: #f59e0b;
    }

    .dash-invoice-type-card.req {
        border-bottom:2px solid var(--request-color);
    }

        .dash-invoice-type-card.req svg {
            color: var(--request-color);
        }

    .dash-invoice-type-card.apv {
        border-bottom: 2px solid var(--approve-color);
    }

        .dash-invoice-type-card.apv svg {
            color: var(--approve-color);
        }

    .dash-invoice-type-card.sus {
        border-bottom: 2px solid var(--suspend-color);
    }

        .dash-invoice-type-card.sus svg {
            color: var(--suspend-color);
        }

.dash-type-label {
    font-size: 12px;
    color: #8d8d8d;
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dash-type-count {
    font-size: 17px;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 5px;
    color: #8d8d8d;
}


.page-header-btn:hover {
    background: var(--mud-palette-primary-hover) !important;
}

.info-indicator {
    width: 10px;
    height: 14px;
    position: absolute;
    border-left: 1px solid var(--mud-palette-primary);
    border-bottom: 1px solid var(--mud-palette-primary);
    bottom: 9px;
    left: -17px;
    border-bottom-left-radius: 5px;
    opacity : 0.5;
}