/* Common CSS */
:root {
    --black-color: #000000;
    --white-color: #FFFFFF;
    --main-color: #FBB116;
    --admin-background: rgba(251, 177, 22, 0.12);
    --text-secondary: #808080;
    --btn-text-secondary: #dadada;
    --nav-inactive: #000000;
    --signed-status: #04C300;
    --cancel-status: #FF1717;
    --sidebar-width: 250px;
    --sidebar-width-collapsed: 8%;
    --sidebar-text: #21272A;
    --light-background: #F8F9FE;
    --table-border-color: #ddd;
}

html,
body {
    font-family: "Roboto", serif;
    height: 100%;
    margin: 0;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

a {
    text-decoration: none;
    background-color: transparent;
}

    a:hover {
        text-decoration: none;
    }

.break-word{
    word-break:break-all;
}
:focus-visible {
    outline: none !important;
}

a.signup-text {
    font-weight: 600;
}

.waves-effect {
    box-shadow: none !important;
    overflow: visible !important;
}

.waves-ripple {
    display: none !important;
}

.default-color {
    color: var(--text-secondary);
}

.container,
.container-lg,
.container-md,
.container-sm,
.container-xl {
    max-width: 1440px;
}

.intl-tel-input,
.iti {
    width: 100%;
}

.iti__country-list {
    width: 200px;
}

/* Preloader css */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 9999;
    align-items: center;
}

.preloader_inner {
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gif-loader {
    height: min-content;
    display: flex;
    align-items: center;
}

.loader-gif {
    width: 300px;
    height: auto;
    display: block;
    margin: 0 auto;
    align-items: center;
}

.preloader-text {
    display: block;
    margin-top: 10px;
    font-size: 16px;
    color: #333;
    font-weight: bold;
}

/* Left Navigation Menu */
.navigation-menu {
    display: flex;
    flex-direction: column;
    padding: 25px 0px 20px 0px;
    width: 250px;
    height: 100%;
    min-height: 100vh;
    justify-content: space-between;
    position: fixed;
    box-shadow: 3px 4px 8px rgba(0, 0, 0, 0.05);
    border-radius: 0px 20px 20px 0px;
    background-color: white;
}

.navigation-menu-inner {
    display: flex;
    flex-direction: column;
    gap: 24px;
    height: calc(100% - 0px);
}

.accordsign-logo {
    width: -webkit-fill-available;
    width: -moz-available;
    display: flex;
    padding-left: 20px;
}

a.nav-link {
    display: flex;
    padding: 8px 16px;
    align-items: center;
    gap: 10px;
}

.nav {
    gap: 12px;
    overflow-y: auto;
}

    .nav li {
        width: -webkit-fill-available;
        width: -moz-available;
        position: relative;
    }

a.nav-link {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 5px;
    line-height: 0%;
    font-size: 14px;
    color: var(--black-color);
}

    a.nav-link:focus,
    a.nav-link:hover {
        color: var(--black-color);
    }

li.active a.nav-link {
    background: var(--admin-background);
    border-radius: 6px;
}

.nav-pills .nav-link {
    background: 0 0;
    border: 0;
    border-radius: .25rem;
    margin: 0 20px;
}

.nav-pills li.active:before {
    content: " ";
    display: block;
    height: 41px;
    width: 6px;
    position: absolute;
    background: var(--main-color);
    left: 0px;
    border-radius: 0px 6px 6px 0px;
}

/* Breadcrumb css */
ul {
    list-style: none;
}

    ul.breadcrumb li {
        display: inline;
        font-size: 18px;
    }

        ul.breadcrumb li + li:before {
            padding: 8px;
            color: black;
            content: "/\00a0";
        }

        ul.breadcrumb li a {
            color: #0275d8;
            text-decoration: none;
        }

            ul.breadcrumb li a:hover {
                color: #01447e;
                text-decoration: none;
            }

.separate-field {
    position: relative;
    margin: auto;
    width: 100%;
}

.form-label {
    font-size: 14px;
    font-weight: 600;
}

.separate-field input,
.separate-field select {
    width: 100%;
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid #cccccc;
    border-radius: 5px;
    color: var(--black-color);
    transition: all 0.15s ease;
}

.separate-field textarea {
    width: 100%;
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid #cccccc;
    border-radius: 5px;
    color: var(--black-color);
    transition: all 0.15s ease;
}

.table-responsiveness {
    overflow-x: auto;
}

.admin-table-header {
    display: flex;
    padding: 8px;
    align-items: center;
    border-bottom: 1px solid #dee2e6;
    background-color: var(--light-background);
}

.admin-table-column {
    display: flex;
    padding: 8px;
    align-items: center;
    flex-wrap: wrap;
    border-bottom: 1px solid #dee2e6;
    word-break: break-word;
}

.table-col-width {
    min-width: 1152px;
}

.dropdown-menu.dropdown-menu-right.head-profile-dropdown-menu {
    padding: 0;
}

.head-main-dropdown {
    list-style: none;
    margin: 0;
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 10px;
    width: 180px;
}

    .head-main-dropdown h1 {
        font-size: 18px;
        font-weight: bold;
        max-width: 200px;
        overflow: hidden;
        text-overflow: ellipsis;
        margin-bottom: 10px;
    }

    .head-main-dropdown p {
        font-size: 12px;
        margin-bottom: 2px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        font-weight: 400;
    }

/* ---------- notification popup start ---------- */
.notification-popup {
    position: absolute;
    top: 0px;
    right: 5px;
    border-radius: 16px;
    border: 0.2px solid #E0E0E0;
    background: #FFF;
    box-shadow: 3px 3px 8px 0px rgba(0, 0, 0, 0.20);
    backdrop-filter: blur(15.050000190734863px);
    display: none;
    width: min-content;
    justify-content: space-between;
    height: 96%;
    padding: 16px;
    flex-direction: column;
    z-index: 999;
    margin: 20px 0px;
}

.notification-popup-main-section {
    display: flex;
    width: min-content;
    height: 90%;
    flex-direction: column;
}

.notification-tab-section {
    width: -webkit-fill-available;
    width: -moz-available;
}

.notification-tabings {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 8px;
    gap: 20px;
    background: var(--light-background);
    border-radius: 7px;
    width: -webkit-fill-available;
    width: -moz-available;
}

.notification-tab {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 8px 16px;
    gap: 8px;
    width: -webkit-fill-available;
    width: -moz-available;
    border-radius: 8px;
    cursor: pointer;
}

.block-header-title,
.block-header-subtitle {
    font-size: 13px;
    font-weight: 400;
}

.document-name {
    font-size: 13px;
    font-weight: 500;
    text-overflow: ellipsis;
    width: 160px;
    overflow: hidden;
}

.document-size {
    font-size: 12px;
    font-weight: 400;
    color: var(--text-secondary);
}

.status-section {
    background-color: #f6f6f6;
    padding: 2px 10px;
    border-radius: 5px;
}

.active-notification-tab {
    background: var(--white-color);
    border: 0.5px solid #EDEDED;
    box-shadow: 1px 1px 2.5px rgba(0, 0, 0, 0.1);
}

.notification-tab-text,
.notification-tab-text:hover {
    color: var(--nav-inactive);
    font-size: 14px;
}

.eod-notification::before,
.eod-notification::after {
    content: "";
    display: block;
    width: 25%;
    height: 1px;
    left: 0;
    background-color: #e9e9e9;
    position: relative;
}

.eod-notification {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
}

.notification-header {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
    padding: 10px;
}

.notification-body {
    overflow-y: scroll;
    scrollbar-width: none;
    height: calc(100vh - 270px);
}

.close-icon {
    cursor: pointer;
}

.all-notification-section {
    flex-direction: column;
    gap: 10px;
}

.received-notification-section {
    flex-direction: column;
    gap: 10px;
}

.sent-notification-section {
    flex-direction: column;
    gap: 10px;
}

.notification-block {
    display: flex;
    padding: 10px;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    background-color: var(--light-background);
    border-radius: 8px;
}

.block-header {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: flex-start;
}

.block-bottom {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

hr.notification-block-line {
    width: -webkit-fill-available;
    width: -moz-available;
    border: none;
    border-top: 1px dashed #eee;
    height: 1px;
    margin: 0px;
}

.notification-update-section {
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 10px;
    background: var(--white-color);
    border: 1px solid #F5F5F5;
    box-shadow: 1.8px 1.8px 4px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    justify-content: space-between;
}

.notification-tabs {
    display: none;
}

    .notification-tabs.actives {
        display: flex;
    }

.modal.modalright {
    transform: none !important;
    transition: opacity 0.1s linear;
}

    .modal.modalright.fade.show .modal-dialog {
        right: 1%;
        transform: translate(2%, 1%);
    }

.modalright.fade .modal-dialog {
    right: -20%;
    transform: translate(20%, 1%);
    transition: transform 0.2s linear, right 0.2s linear;
    position: fixed;
    margin: auto;
    width: 27%;
    max-width: 27%;
    height: 98%;
}

/* ---------- notification popup end ---------- */

/* Home page CSS */
.home-page-left-menu {
    min-width: 250px;
    padding: 0px;
    z-index: 9;
}

.admin-header-section {
    display: flex;
    padding: 18px;
    height: 95px;
    justify-content: center;
    align-items: center;
    box-shadow: 3px 4px 8px 0px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid #eee;
}

.admin-notification {
    display: flex;
    background-color: var(--light-background);
    width: fit-content;
    cursor: pointer;
    padding: 14px 14px;
    border-radius: 6px;
}

.popup-icon {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 0px;
}

    .popup-icon svg {
        display: flex;
        height: 32px;
        width: 32px;
        padding: 6px;
        align-items: center;
        gap: 10px;
        border-radius: 6px;
        background: #F5F5F5;
    }

/* User management page CSS */
.admin-main-top {
    width: 100%;
    padding: 15px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 0px;
    background: var(--admin-background);
}

.sec-filters,
.document-section {
    padding: 20px 20px;
    margin: 25px 15px;
    border: 1px solid #ebebeb;
    background: #FFF;
    border-radius: 6px;
}

.lock-btn {
    background-color: #079404;
}

.view-btn {
    background-color: #164bfb;
}

.header-title {
    font-size: 22px;
    font-weight: 500;
}

/* pagination css */
.admin-table-footer {
    display: flex;
    text-align: center;
    margin: 20px 0px;
    justify-content: center;
    gap: 15px;
}

.links a {
    display: inline-block;
    background: var(--white-color);
    border: 1px solid var(--btn-text-secondary);
    color: var(--black-color);
    padding: 2px 8px;
    border-radius: 5px;
}

    .links a.active {
        display: inline-block;
        background: var(--main-color);
        color: var(--white-color);
        padding: 2px 8px;
        border-radius: 5px;
    }

.toggle-password {
    position: absolute;
    top: 34%;
    right: 10px;
    transform: translateY(-50%);
    cursor: pointer;
}

/* Add Taxation page CSS */
.signer-section {
    display: flex;
    width: -webkit-fill-available;
    width: -moz-available;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px 35px;
    gap: 30px;
    position: relative;
    background-color: var(--light-background);
}

.Tax-type-header {
    position: absolute;
    top: -35px;
    left: 0;
    background-color: var(--main-color);
    color: var(--white-color);
    z-index: 1;
    padding: 10px;
    border-radius: 6px;
    font-weight: 500;
}

.signer-middle-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: -webkit-fill-available;
    width: -moz-available;
}

.user-sign-section.sortable-item {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    background-color: white;
    padding: 15px;
    border-radius: 10px;
    transition: transform 0.2s ease;
    position: relative;
}

span.user-sign-section-remove {
    position: absolute;
    width: 30px;
    right: -10px;
    height: 30px;
    top: -10px;
    cursor: pointer;
}

.user-sign-section-remove::after {
    content: "\f057";
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    margin: 0 auto;
    text-decoration: none;
    font-size: 28px;
    color: #E31529;
}

.drag-button.ui-sortable-handle {
    background-color: var(--main-color);
    padding: 8px;
    border-radius: 5px;
    cursor: move;
    opacity: 1;
    margin-bottom: 12px;
}

.recipientInnerFileds {
    width: 100%;
    padding: 12px 0;
}

.signer-bottom-section {
    display: flex;
    align-items: center;
    width: -webkit-fill-available;
    width: -moz-available;
    justify-content: flex-end;
}

button.add-signer-button {
    display: flex;
    gap: 10px;
    align-items: center;
    border-radius: 7px;
    padding: 10px 20px;
    background-color: var(--white-color);
    border: 1px solid #dadada;
    font-weight: 600;
    color: #6d6d6d;
}

/* Change Password page CSS */
.profile-right {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.password-title {
    font-size: 28px;
    font-weight: 500;
}

.form-group {
    width: 100%;
    position: relative;
    margin-bottom: 12px;
}

.form-label {
    font-size: 14px;
    font-weight: 600;
}

.form-group input {
    width: 100%;
    border-radius: 7px;
    padding: 10px 20px;
    border: 1px solid var(--btn-text-secondary);
    font-size: 14px;
    color: var(--black-color);
}

.password-width {
    min-width: 600px;
}

.form-control {
    display: block;
    width: 100%;
    height: auto;
    padding: 15px 19px;
    font-size: 1rem;
    line-height: 1.4;
    color: #475F7B;
    background-color: #FFF;
    border: 1px solid #DFE3E7;
    border-radius: .267rem;
    -webkit-transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.progress {
    height: 5px;
    margin-bottom: 10px;
}

/* Index page CSS */
.admin-login-main {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-color: var(--table-border-color);
}

.login-sec {
    width: 50%;
    margin: auto;
    background-color: var(--white-color);
    padding: 50px;
    box-shadow: rgba(100, 100, 111, 0.1) 0px 7px 29px 0px;
}

.login-logo {
    width: 100%;
    display: flex;
    justify-content: center;
}

.login-form {
    width: 100%;
    margin-top: 20px;
}

/* Customer Business and Individual Plan Details page css */
.profile-right-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: center;
    position: relative;
    padding: 20px;
}

span.hr-line {
    height: 1px;
    width: -webkit-fill-available;
    width: -moz-available;
    background-color: #eeeeee;
}

.subscription-elements {
    display: flex;
}

.document-limit {
    background-color: #E9E9E9;
    padding: 22px;
    border-radius: 7px;
}

.subscription-tabs {
    display: flex;
    padding: 12px;
    flex-direction: row;
    align-items: flex-start;
    gap: 8px;
    flex: 1 1 calc(100% / 4 - 30px);
    max-width: calc(100% / 4 - 18px);
    align-self: stretch;
    border-radius: 7px;
    justify-content: space-between;
}

.account-detail {
    background-color: white;
    padding: 20px;
    border-radius: 7px;
}

.manage-profile-body {
    width: 100%;
    position: relative;
    overflow: auto;
    background-color: #E9E9E9;
    padding: 40px;
    border-radius: 7px;
}

.plan-active {
    color: var(--signed-status);
}

.cardNotes {
    color: var(--cancel-status);
    font-size: 14px;
}

.custom-credit-label {
    display: none;
    margin-top: 15px;
}

.custom-credit-input {
    display: none;
    margin-top: 10px;
}

/* Upgarde Downgrade plan page css */
.plans-section {
    position: relative;
    overflow: hidden;
    min-height: 360px;
}

    .plans-section .ribbon {
        width: 160px;
        height: 32px;
        font-size: 12px;
        text-align: center;
        color: #fff;
        font-weight: bold;
        box-shadow: 0px 2px 3px rgba(136, 136, 136, 0.25);
        background: #4dbe3b;
        transform: rotate(45deg);
        position: absolute;
        right: -42px;
        top: 20px;
        padding-top: 7px;
    }

.business-plan {
    text-align: center;
    font-size: 22px;
    font-weight: 600;
}

/* toggle plan switch css */
.inner {
    width: 100%;
    position: relative;
}

.pricingTable .tabsBtnHolder ul.toggle-switch {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 220px;
    margin: 0 auto 30px;
    padding: 4px;
    background-color: rgba(0, 0, 0, .05);
    border-radius: 30px;
    position: relative;
    list-style: none;
}

.pricingTable .tabsBtnHolder ul li {
    width: 50%;
    text-align: center;
    z-index: 1;
}

    .pricingTable .tabsBtnHolder ul li p {
        margin: 0;
        padding: 10px 0;
        cursor: pointer;
        color: #333;
        font-weight: 500;
        width: 106px;
        z-index: 2;
        position: relative;
        user-select: none;
        white-space: nowrap;
        display: block;
        line-height: normal;
    }

        .pricingTable .tabsBtnHolder ul li p.active {
            color: #fff;
        }

    .pricingTable .tabsBtnHolder ul li.indicator {
        position: absolute;
        top: 2px;
        left: 2px;
        height: calc(100% - 4px);
        width: calc(50% - 4px);
        background-color: var(--main-color);
        border-radius: 30px;
        z-index: 0;
        transition: left 0.3s ease;
    }

/* Team Members page css */
.user-licenses {
    background-color: var(--white-color);
    padding: 25px 20px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.current-workspace {
    background-color: var(--white-color);
    padding: 25px 20px;
    border-radius: 15px;
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.license-progress-bar {
    height: 8px !important
}

.license-main {
    background-color: #fff;
    border: 1px solid rgb(193, 193, 193);
    border-left: 5px solid var(--main-color);
    padding: 15px 15px;
    margin: 10px 0;
    border-radius: 5px;
    height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.1s linear;
}

    .license-main .license-icons-main {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex: 0 0 auto;
    }

.toggle-password {
    position: absolute;
    top: 34%;
    right: 10px;
    transform: translateY(-50%);
    cursor: pointer;
}

/* Payment Methods page css */
.saveCards-main .row {
    gap: 20px;
}

/* Saved Credit Card */
.savedCard {
    background: linear-gradient(135deg, #a44be1, #ffe38f);
    padding: 30px;
    border-radius: 20px;
    color: #fff;
    height: 230px;
    position: relative;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.defaultCard {
    position: absolute;
    top: 0;
    left: 0;
    background: #404040;
    padding: 5px 10px;
    border-radius: 20px 0 20px 0;
}

.savedCards-btnsInner button.editCards {
    background: var(--main-color);
}

.savedCards-btnsInner button.deleteCards {
    background: #dc3545;
}

.savedCard h4 {
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.savedCard .card-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.savedCard small {
    font-size: 10px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.savedCard .fw-bold {
    font-size: 14px;
    color: #fff;
}

.savedCard img {
    height: 24px;
    width: auto;
}

.add-newCard-box {
    min-height: 230px;
    border: 2px dashed #ccc;
    background-color: var(--light-background);
    border-radius: 20px;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.3s ease;
}

    .add-newCard-box button {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: var(--white-color);
        border: none;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 10px;
    }

    .add-newCard-box i {
        font-size: 24px;
        color: #416efc;
    }

/* card add/edit modal popup css */
.orderAmmount-img {
    width: 100%;
    position: relative;
    display: flex;
    flex-flow: revert;
    gap: 16px;
    margin: 22px 0;
    flex-wrap: wrap;
}

    .orderAmmount-img img {
        width: 55px;
        flex: 0 1;
    }

/* Plan Payment page css */
.quantity-container {
    max-width: 160px;
}

input.quantity-input {
    padding: 8px 10px;
}

.license-amount {
    text-align: center;
    background-color: #ffd885;
    font-size: 12px;
    width: 29%;
    padding: 8px 12px;
    border-radius: 25px;
    font-weight: 600;
}

.total-license-amount {
    text-align: center;
    background-color: #ffd885;
    font-size: 12px;
    width: min-content;
    padding: 8px 12px;
    border-radius: 10px;
    font-weight: 600;
}

.license-total-amount {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: flex-end;
}

.order-header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    height: 100%;
}

.order-summary {
    border-bottom: 1px dashed #ccc;
    padding-bottom: 20px;
}

.license-quantity {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.apply-button {
    min-width: 190px;
}

.upArrow {
    -webkit-transform: rotate(-180deg);
}

.totalamount-show {
    display: flex !important;
}

.totalamount-hide {
    display: none !important;
}

/* Coupons List page CSS */
.coupon-card {
    border-radius: 10px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.coupon-left {
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    writing-mode: vertical-lr;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
}

.coupon-blue {
    background: linear-gradient(135deg, #007cf0, #00dfd8);
}

.coupon-purple {
    background: linear-gradient(135deg, #8e2de2, #4a00e0);
}

.coupon-pink {
    background: linear-gradient(135deg, #f0006c, #ff5a5f);
}

.coupon-body {
    flex: 1;
    padding: 16px 16px 12px 16px;
}

.badge-status {
    font-size: 0.75rem;
}

.card-footer {
    font-size: 0.875rem;
}

.coupon-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.more-options {
    cursor: pointer;
}

.contextContent {
    position: absolute;
    right: 8px;
    top: -4px;
    background: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    display: none;
    padding: 0.5rem;
    z-index: 1;
}

/* Add Coupons page CSS */
.radio-main {
    display: flex;
    gap: 20px;
    align-items: center;
}

.radio-inner {
    display: flex;
    gap: 6px;
    align-items: center;
}

.checkbox-section {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Customer Business and Individual details page payment popup css */
.paymentLinkFieldsMain {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    column-gap: 20px;
    row-gap: 20px;
    height: auto;
    max-height: 160px;
    overflow: auto;
}

.addEmailSubfield {
    margin: 15px 0 15px 0;
}

    .addEmailSubfield::before {
        width: 40%;
    }

.addTaxationSubfield::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 20px;
    width: 42%;
    transform: translate(0px, -50%);
    margin: auto;
    border-radius: 20px;
    height: 2px;
    background-color: #ededed;
}

.addEmailSubfield::after {
    width: 40%;
}

.addTaxationSubfield::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 20px;
    width: 42%;
    transform: translate(0px, -50%);
    margin: auto;
    border-radius: 20px;
    height: 2px;
    background-color: #ededed;
}

.addTaxationSubfield {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0 10px 0;
}

.btn:not(:disabled):not(.disabled) {
    cursor: pointer;
}

.addMore-btn {
    background: var(--main-color);
    color: var(--white-color);
    border-color: var(--main-color);
    padding: 8px 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

    .addMore-btn i {
        font-size: 13px;
    }

.paymentLinkEditorMain {
    width: 100%;
}

.paymentLinkFilterArea {
    margin-top: 10px;
}

    .paymentLinkFilterArea input {
        margin-bottom: 15px;
    }

.signatureModalpopup .modal-dialog {
    max-width: 760px;
    margin: auto;
    display: flex;
    justify-content: center;
    min-height: 100vh;
    align-items: center;
}

.ck.ck-editor__editable td img, .ck.ck-editor__editable th img {
    max-width: inherit !important;
}

.ml-2{
    margin-left: 2px;
}
