/* ----------------------------
     MODAL DIALOG STYLING
   ---------------------------- */
.dialog-box {
    position: absolute;
    top: -1000px;
    height: auto;
    width: 100%;
    margin-top: 80px;
    display: none;
    pointer-events: none;
}

.dropdown-dialog {
    position: relative;
    background-color: inherit;
    height: auto;
    text-align: center;
    width: auto;
    box-shadow: 0px 6px 10px 5px rgba(200,200,200,0.5);
    border: 1px solid #c3c5c7;
    border: 1px solid var(--border-color);
    z-index: 2;
}



.dialog-arrow-right:before {
    content: '';
    width: 10px;
    height: 10px;
    border-width: 1px;
    border-style: solid;
    border-color: #d3dae1;
    border-color: var(--border-color);
    border-right-color: transparent;
    border-bottom-color: transparent;
    z-index: 2;
    position: absolute;
    top: -6px;
    right: 40px;
    background-color: inherit;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}

.dialog-arrow-left:before {
    content: '';
    width: 0;
    width: 10px;
    height: 10px;
    border-width: 1px;
    border-style: solid;
    border-color: rgb(180,180,180);
    border-right-color: transparent;
    border-bottom-color: transparent;
    z-index: 2;
    position: absolute;
    top: -6px;
    left: 40px;
    background-color: inherit;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}

.dialog-arrow-center:before {
    content: '';
    width: 0;
    width: 10px;
    height: 10px;
    border-width: 1px;
    border-style: solid;
    border-color: rgb(180,180,180);
    border-right-color: transparent;
    border-bottom-color: transparent;
    z-index: 2;
    position: absolute;
    top: -6px;
    left: 45%;
    background-color: inherit;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}

.dialog-title {
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    align-items: center;
    -webkit-align-items: center;
    position: relative;
    padding: 15px 20px;
    background-color: inherit;
    height: 60px;
    border-bottom: 1px solid #d6d6d6;
    border-bottom: 1px solid var(--border-color);
    width: 100%;
}

.dialog-title-caption {
    font-size: 1.2rem;
    color: var(--gray-20);
    text-transform: initial;
}

    .dialog-title-caption span {
        font-size: 1.2rem;
        color: inherit;
        text-transform: initial;
    }

.dialog-title-icon {
    font-size: 1.9rem;
    line-height: 12px;
    color: #333333;
    color: var(--gray-20);
    color: inherit;
    margin-left: auto;
}

    .dialog-title-icon .icon-svg {
        width: 12px;
        height: 12px;
        cursor: pointer;
    }

.dialog-content {
    position: relative;
    min-height: 60px;
    height: auto;
    width: 100%;
    padding: 20px;
    font-size: 0;
    letter-spacing: -1px;
    background-color: #FFFFFF;
    background-color: var(--white-color);
    color: #808080;
    max-height: calc(100vh - 250px);
    overflow: auto;
    overflow-x: hidden;
    text-transform: none;
}

.dialog-content-caption {
    position: relative;
    width: auto;
    height: auto;
    margin-bottom: 20px;
    color: #333333;
    color: var(--gray-20);
    text-align: left;
}

.dialog-content-msg {
    position: relative;
    height: auto;
    color: #4c4c4c;
    color: var(--charcoal-grey);
    /*font-family: "Open Sans Semibold";*/
    /*    font-variation-settings: var(--font_weight_600);*/
    line-height: 22px;
    width: 100%;
}

.dialog-content-captcha {
    position: relative;
    padding-top: 20px;
}

#confirmDialogWithCaptcha .dialog-content-captcha {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 0 5px;
}

/* Footer layout: link left, buttons right */
#confirmDialogWithCaptcha .dialog-footer {
    display: flex;
    align-items: center;
    padding: 8px 10px;
    gap: 2px;
}

#confirmDialogWithCaptcha .dialog-footer .captcha-reset-link {
    flex-shrink: 0;
    margin-right: auto;
}

#confirmDialogWithCaptcha .dialog-footer button {
    flex-shrink: 0;
}

#confirmDialogWithCaptcha,
#confirmDialogWithCaptcha .dialog-wrapper {
    min-width: 410px !important;
}

#confirmDialogWithCaptcha .captcha-reset-link {
    font-size: 8px;
    color: #6b7280;
    text-decoration: none;
    white-space: nowrap;
}

#confirmDialogWithCaptcha .captcha-reset-link-click {
    font-size: 9px;
    color: #2563eb;
    text-decoration: underline;
    vertical-align: baseline;
    cursor: pointer;
    white-space: nowrap;
}

.dialog-footer {
    position: relative;
    width: 100%;
    height: auto;
    padding: 10px 20px;
    color: var(--gray-20);
    background-color: #F5F5F5;
    background-color: var(--white-smoke);
    border-top: 1px solid #d6d6d6;
    border-top: 1px solid var(--border-color);
}

    .dialog-footer.multiple-button .button,
    .dialog-footer.multiple-button button {
        margin-left: 5px;
    }


.record-count {
    color: var(--base-color);
}

.single-button {
    text-align: center;
}

.multiple-button {
    text-align: right;
}

.full-screen,
.full-screen .dialog-wrapper,
.full-screen .dialog-content {
    -webkit-transition: all 1s; /* Safari prior 6.1 */
    transition: all 1s;
}

.full-screen-aligned {
    top: 0 !important;
    left: 0 !important;
}

.dialog-box.full-screen {
    margin-top: 0 !important;
}

.full-screen, .full-screen .dialog-wrapper {
    width: 100vw !important;
    min-width: 700px;
}

    .full-screen .dialog-content {
        height: calc(100vh - 120px) !important;
        max-height: calc(100vh - 120px) !important;
    }

    .full-screen .full-vh,
    .full-screen .full-vh-355,
    .full-screen .full-vh-440 {
        -webkit-transition: all 1s;
        transition: all 1s;
    }

    .full-screen .full-vh-355 {
        max-height: calc(100vh - 225px);
    }

    .full-screen .full-vh-440 {
        max-height: calc(100vh - 310px);
    }
/*-------------------------------
  Body of Alert Dialog
  ------------------------------*/
.dialog-content-icon {
    display: inline-block;
    width: 12%;
    vertical-align: top;
    font-size: 3rem;
    color: #FF9800;
}

.dialog-content-text {
    display: inline-block;
    width: 88%;
    vertical-align: top;
    font-size: 1.2rem;
}

.dropdown-dialog-wrapper, .dropdown-dialog-wrapper-blocked-event {
    position: absolute;
    height: auto;
    top: 50px;
    left: 0px;
    display: none;
    background-color: inherit;
    width: auto;
    min-width: 400px;
}

.left-side {
    left: auto;
    right: 0;
}

.dropdown-dialog-wrapper.middle-side {
    left: 50%;
    right: 0;
}

.icon-svg + .dropdown-dialog-wrapper {
    top: 40px;
}

    .icon-svg + .dropdown-dialog-wrapper.left-side {
        right: -35px;
    }


.bqe-table .icon-svg + .dropdown-dialog-wrapper {
    top: 30px;
}

    .bqe-table .icon-svg + .dropdown-dialog-wrapper.left-side {
        right: -40px;
    }
/*CSS for making dropdown dialog open upwards - arrow should move to bottom*/
.dropdown-dialog-wrapper.open-upward {
    margin-bottom: 20px;
}

    .dropdown-dialog-wrapper.open-upward .dialog-arrow-right::before {
        content: '';
        width: 10px;
        height: 10px;
        border-width: 1px;
        border-style: solid;
        border-color: #d3dae1;
        border-color: var(--border-color);
        border-left-color: transparent;
        border-top-color: transparent;
        z-index: 2;
        position: absolute;
        top: 98%;
        right: 40px;
        background-color: #FFFFFF;
        background-color: var(--white-color);
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    .dropdown-dialog-wrapper.open-upward .dialog-arrow-left::before {
        content: '';
        width: 10px;
        height: 10px;
        border-width: 1px;
        border-style: solid;
        border-color: rgb(180,180,180);
        border-left-color: transparent;
        border-top-color: transparent;
        z-index: 2;
        position: absolute;
        top: 97%;
        left: 20%;
        background-color: #FFFFFF;
        background-color: var(--white-color);
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        transform: rotate(45deg);
    }
/*-------------------------------
  Notifications Dialog
  ------------------------------*/
.notification-content {
    position: relative;
    min-height: 100px;
    height: auto;
    width: 100%;
    padding: 20px;
    font-size: 0;
    letter-spacing: -1px;
    background-color: #FFFFFF;
    background-color: var(--white-color);
    color: #808080;
}

.notification-icon {
    display: inline-block;
    vertical-align: top;
    color: #FF9800;
}

.notification-message {
    display: inline-block;
    width: 82%;
    font-size: 1.2rem;
    vertical-align: middle;
    margin-left: 10px;
}

.notification-container {
    min-height: 76px;
    display: -webkit-flex;
    display: flex;
    flex-flow: row nowrap;
    -webkit-flex-flow: row nowrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
}



.dialog-wrapper {
    position: relative;
    text-align: center;
    background-color: #FFFFFF;
    background-color: var(--white-color);
    height: auto;
    margin: 0 auto;
    box-shadow: 0 0 3px 2px rgb(220,220,220);
    width: 500px;
    min-width: 400px;
    top: 0;
    pointer-events: visible;
}

.modal_layer .dialog-wrapper {
    box-shadow: 0 0 3px 2px rgb(170,170,170);
}

/*Notes Dialog Loading Upwards*/
.dialog-open-upwards {
    top: unset !important;
    bottom: 40px !important;
}

    .dialog-open-upwards .dialog-arrow-right:before {
        content: none;
    }

    .dialog-open-upwards .dialog-footer:before,
    .dialog-open-upwards.downward-pointer:before {
        content: '';
        width: 10px;
        height: 10px;
        border-width: 1px;
        border-style: solid;
        border-color: rgb(180,180,180);
        border-right-color: transparent;
        border-bottom-color: transparent;
        z-index: 2;
        position: absolute;
        bottom: -6px;
        right: 40px;
        background-color: inherit;
        -webkit-transform: rotate(-135deg);
        -moz-transform: rotate(-135deg);
        transform: rotate(-135deg);
    }
/*------------------*/
/*user in-app promo */
#notification-video-dialog .dialog-content {
    max-height: 500px;
    min-height: 250px;
}
/*=================*/

.hover-dialog-wrapper {
    position: absolute;
    right: 70px;
    top: -9px;
    z-index: 3;
    padding: 10px;
    background-color: #FFF;
    background-color: var(--white-color);
    border: 1px solid var(--border-color);
    -moz-box-shadow: 0px 0px 3px 0px #6a6e73;
    -webkit-box-shadow: 0px 0px 3px 0px #6a6e73;
    box-shadow: -1px 1px 9px -2px #6a6e73;
    display: none;
}

.hover-info-dialog {
    top: -3px;
    z-index: 2;
    right: 100%;
    width: 450px;
}

    .hover-info-dialog .field-label {
        width: 35%;
        max-width: 145px;
        color: #4e4e4e;
        font-size: 14px;
    }

    .hover-info-dialog .field-value-wrapper {
        color: #333333;
        color: var(--gray-20);
    }

.hover-dialog-wrapper::before {
    content: '';
    width: 10px;
    height: 10px;
    border: 1px solid transparent;
    border-left-color: transparent;
    border-top-color: var(--border-color);
    border-left-color: #d3dae1;
    border-left-color: var(--border-color);
    background-color: inherit;
    position: absolute;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
    right: -6px;
    top: 18px;
    z-index: 2;
}

.hover-dialog-wrapper.top-changed::before {
    top: unset;
    bottom: 20px;
}

.hover-dialog {
    padding: 0 10px;
    color: #4a4a4a;
    width: 450px;
    max-height: 280px;
    overflow: auto;
    white-space: initial;
}

    .hover-dialog .field-label {
        line-height: 16px;
        width: 35%;
        max-width: 145px;
        color: #4e4e4e;
        font-size: 14px;
    }

    .hover-dialog .field-value-wrapper {
        margin-bottom: 0;
    }

        .hover-dialog .field-value-wrapper:not(.tel-link):not(.email-link) {
            color: #333333;
            color: var(--gray-20);
        }

.show-dialog-on-hover:hover .hover-dialog-wrapper {
    display: block;
}
/*=================*/
.detachable-dialog-wrapper {
    position: absolute;
    height: auto;
    top: 50px;
    left: auto;
    right: 0;
    background-color: inherit;
    width: auto;
    min-width: 400px;
    display: block !important;
}

    .detachable-dialog-wrapper .dialog-arrow-right:before {
        right: 63px;
    }

/***************Mini Notification dialog*********************/
.mini-notification-dialog {
    position: relative;
    background-color: #feffff;
    background-color: var(--white-color);
    height: auto;
    box-shadow: 0px 3px 5px 0px rgb(204, 203, 203);
    width: 205px;
    min-width: 205px;
    margin: 0 auto;
    border: 1px solid var(--border-color);
    pointer-events: visible;
    border-radius: 2px 2px 0 0;
}

    .mini-notification-dialog::after {
        content: "";
        position: absolute;
        width: 10px;
        height: 40px;
        right: -10px;
        top: 18px;
    }

    .mini-notification-dialog .dialog-title {
        background-color: #e1e1e2;
        height: 23px;
        padding: 2px 7px;
    }

.within-app .mini-notification-dialog {
    min-width: 175px;
    width: 175px;
    border-radius: 5px;
}

.call-support-dialog-title {
    color: #898989;
}

    .call-support-dialog-title .fa {
        margin: 0 5px 0 0 !important;
    }

        .call-support-dialog-title .fa.last-child {
            margin: 0 !important;
        }

.call-support-dialog-content {
    background-color: #f4f5f6;
    padding: 15px;
    max-height: unset;
}

.dialog-content-inner-container {
    border: 1px solid #d3dae1;
    border: 1px solid var(--border-color);
    background-color: #FFF;
    background-color: var(--white-color);
    text-align: center;
    height: 250px;
}

    .dialog-content-inner-container .core-logo-svg {
        width: 119px;
        height: 47px;
        margin: 5px 0 15px 0;
        fill: #333;
        fill: var(--gray-20);
    }

    .dialog-content-inner-container .stage3 .core-logo-svg {
        margin: 55px 0 10px 0;
    }

.within-app .dialog-content-inner-container {
    height: 240px;
}



.call-support-caption {
    font-size: 13px;
    line-height: 13px;
    color: #898989;
}

.call-duration {
    background-color: #4caf50;
    padding: 1px 15px;
    border-radius: 10px;
    color: #FFF;
}

.dialpad.flex-columnwise {
    border: 1px solid #d3dae1;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    flex-flow: row wrap;
    -webkit-flex-flow: row wrap;
}

.dialpad-number {
    width: 30%;
    width: 33.33%;
    height: 29.96px;
    line-height: 29.96px;
    border-bottom: 1px solid #d3dae1;
    border-bottom: 1px solid var(--border-color);
    border-right: 1px solid #d3dae1;
    border-right: 1px solid var(--border-color);
    text-align: center;
    cursor: pointer;
    color: #2c99f0;
    color: var(--base-color);
}

    .dialpad-number.special-number {
        color: #999;
    }

    .dialpad-number:nth-child(3n) {
        border-right: none;
    }

    .dialpad-number:nth-child(10), .dialpad-number:nth-child(11), .dialpad-number:nth-child(12) {
        border-bottom: none;
    }

.call-ended-button {
    width: 101%;
    border-radius: 0;
    left: -1px;
    top: -1px;
    position: relative;
    padding: 5px;
}

.mini-dialog-close {
    text-align: right;
    padding: 5px 10px 10px 10px;
}

    .mini-dialog-close .icon-svg {
        width: 10px;
        height: 10px;
        fill: var(--grey);
    }

.active-support, .additional-info > .additional-info-section.active-support:hover {
    background-color: var(--base-color);
}

    .active-support .live-support {
        fill: var(--white-color-text);
    }

.live-support-actions {
    margin-top: 10px;
    width: 100%;
}

    .live-support-actions .button {
        width: 100%;
        padding: 4px 10px;
        margin: 0 0 15px 0;
        height: 30px;
        line-height: normal;
    }

    .live-support-actions .button-call {
        background-color: #4caf50;
        line-height: normal;
    }

        .live-support-actions .button-call:hover {
            background-color: #4caf50;
            opacity: 0.9;
        }

.icon-svg.icon-disconnect {
    transform: rotate(135deg);
    width: 15px;
    height: 15px;
}
/***************End Mini Notification dialog*********************/
/***************Hover dialog for Cloud feeds GAL-58727 & in Invoice Review*********************/
.cf-hover-dialog-wrapper,
.inv-hover-dialog-wrapper {
    position: absolute;
    right: -7px;
    top: 42px;
    z-index: 3;
    padding: 10px;
    background-color: #FFFFFF;
    background-color: var(--white-color);
    border: #d3dae1;
    border: 1px solid var(--border-color);
    width: max-content;
    display: none;
}

.inv-hover-dialog-wrapper {
    right: unset;
    left: -7px;
    top: 35px;
    width: 340px;
    display: none;
}

    .cf-hover-dialog-wrapper::before,
    .inv-hover-dialog-wrapper::before {
        content: '';
        width: 10px;
        height: 10px;
        border: 1px solid transparent;
        border-top-color: transparent;
        border-left-color: transparent;
        border-top-color: var(--border-color);
        border-left-color: #d3dae1;
        border-left-color: var(--border-color);
        background-color: inherit;
        position: absolute;
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(135deg);
        transform: rotate(45deg);
        right: 9px;
        top: -6px;
        z-index: 2;
    }

    .inv-hover-dialog-wrapper::before {
        right: unset;
        left: 15px;
    }

    .cf-hover-dialog-wrapper.top-changed::before,
    .inv-hover-dialog-wrapper.top-changed::before {
        top: unset;
        bottom: 20px;
    }

.cf-hover-dialog,
.inv-hover-dialog {
    padding: 0 10px;
    color: #4a4a4a;
    width: auto;
    max-height: 280px;
    overflow: auto;
    white-space: initial;
    text-transform: none;
}

.inv-hover-dialog {
    padding: 0 5px;
}

.cf-hover-dialog .small-note {
    font-size: 10px;
}

.cf-show-dialog-on-hover:hover .cf-hover-dialog-wrapper,
.inv-show-dialog-on-hover:hover .inv-hover-dialog-wrapper {
    display: block;
}

/***************End of Hover dialog for Cloud feeds*********************/

.v2_dialog_box,
.v2_dialog_box .dialog-wrapper {
    border-radius: 8px;
}

    .v2_dialog_box .dialog-title h3 {
        color: var(--typography-color-primary);
    }

    .v2_dialog_box.dialog-box .dialog-title-caption {
        font-variation-settings: var(--font_weight_500);
        font-size: 16px;
    }

    .v2_dialog_box .dialog-title {
        height: auto;
        min-height: 56px;
        padding: 16px 16px 16px 24px;
        border-radius: 8px 8px 0 0;
    }

    .v2_dialog_box .v2_dialog_title {
        padding: 16px 16px 8px 16px;
    }

    .v2_dialog_box .dialog-title-icon {
        display: flex;
        display: -webkit-flex;
        align-items: center;
        -webkit-align-items: center;
        justify-content: center;
        margin: 0;
        width: 24px;
        height: 24px;
    }


        .v2_dialog_box .dialog-title-icon .icon-svg {
            fill: var(--typography-color-tertiary);
        }

        .v2_dialog_box .dialog-title-icon:hover .icon-svg {
            fill: var(--typography-color-primary);
        }


    .v2_dialog_box .dialog-content {
        padding: 16px 24px;
    }

    .v2_dialog_box .dialog-footer {
        display: flex;
        flex-flow: row nowrap;
        justify-content: flex-end;
        padding: 16px 24px;
        background-color: transparent;
        border-radius: 0 0 8px 8px;
    }

        .v2_dialog_box .dialog-footer.multiple-button .btn {
            margin-left: 8px;
        }

    .v2_dialog_box .dialog-content .field-label {
        font-size: 14px;
        line-height: 20px;
        color: var(--text_color_dark);
        max-width: 130px;
        text-transform: none;
    }

    .v2_dialog_box .dialog-content input::placeholder {
        font-style: normal;
    }

    .v2_dialog_box .dialog-content .textbox,
    .v2_dialog_box .dialog-content .custom-select {
        border-radius: 8px;
    }

    .v2_dialog_box .dialog_sub_title {
        color: var(--text_color_8);
    }

    .v2_dialog_box .custom_field_label {
        font-size: 14px;
        line-height: 20px;
        color: var(--text_color_8);
        text-transform: none;
    }

/*************************/
.v2_dialog_box_no_border .dialog-title {
    border-bottom: none;
}

.v2_dialog_box_no_border .dialog-footer {
    border-top: none;
}

.v2_dialog_box_no_border .dialog-content {
    padding: 8px 24px;
}

.v2_dialog_box.dialog-padding-16 .dialog-title{
   padding: 16px 16px 8px 16px;
}

.v2_dialog_box.dialog-padding-16 .dialog-footer {
    padding: 16px;
}

.v2_dialog_box.dialog-padding-16 .dialog-content {
    padding: 8px 16px;
}
    /* -- new budget dialog -- */
    .budget-new-dialog .field-value-wrapper {
        justify-content: initial !important; /*overwrote the field-value wrapper style*/
    }

.budget-new-dialog .budget-new-dialog-search-border {
    position: relative;
    border: 1px solid var(--border-color);
}

.budget-new-dialog .search-icon {
    position: absolute;
    top: 30%;
    left: 1%;
    color: var(--typography-color-tertiary) !important;
    width: 14px;
    height: 14px;
}

.budget-new-dialog .dialog-content .budget-new-dialog-table-height {
    max-height: calc(100vh - 525px);
    border: 1px solid var(--border-color);
    border-radius: 8px;
}


/*-------------------------------------*/
/*  New Design from Tony 02/05/2025    */
/*-------------------------------------*/
.new-dialog-design .dialog-wrapper {
    border-radius: 8px;
    background-color: #fff;
    width: 540px !important;
}

html[data-theme="dark"] .new-dialog-design .dialog-wrapper {
    background-color: #23242D !important;
}

.new-dialog-design .dialog-title {
    background-color: transparent !important;
    padding: 16px;
    padding-bottom: 0px;
    margin-bottom: 8px;
    border: none !important;
    max-height: 48px;
}

.new-dialog-design .dialog-title-caption {
    font-size: 20px;
    font-weight: 500;
    line-height: 32px;
    color: #1E293B;
}

html[data-theme="dark"] .new-dialog-design .dialog-title-caption {
    color: #fff !important;
}

.new-dialog-design .dialog-title-icon {
    padding: 10px;
}

    .new-dialog-design .dialog-title-icon svg {
        fill: #1E293B !important;
    }

html[data-theme="dark"] .new-dialog-design .dialog-title-icon svg {
    fill: #fff !important;
}

.new-dialog-design .dialog-content {
    background-color: transparent !important;
    padding: 0 16px;
    margin: 0;
}

.new-dialog-design .dialog-content-msg {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: #1E293B;
}

html[data-theme="dark"] .new-dialog-design .dialog-content-msg {
    color: #fff !important;
}

.new-dialog-design .dialog-footer {
    padding: 16px;
    border: none !important;
    background-color: transparent !important;
    display: flex !important;
    flex-direction: row;
    justify-content: flex-end;
}

    .new-dialog-design .dialog-footer .button-secondary {
        background-color: transparent !important;
        border: #CBD5E1 1px solid;
        border-radius: 8px !important;
        color: #1E293B;
        font-size: 14px;
        font-weight: 400;
        text-transform: unset !important;
    }

html[data-theme="dark"] .new-dialog-design .dialog-footer .button-secondary {
    color: #CBD5E1;
}

.new-dialog-design .dialog-footer .button-primary {
    text-transform: unset !important;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 400;
    border-radius: 8px !important;
}

.new-dialog-design .dialog-footer.multiple-button .button,
.new-dialog-design .dialog-footer.multiple-button button {
    margin-left: 8px;
}

/*=====================================*/
/*  New Design from Tony 02/05/2025    */
/*=====================================*/

