/* Common CSS */
:root {
    --black-color: #000000;
    --white-color: #FFFFFF;
    --auth-background-color: #FFFDF6;
    --main-color: #FBB116;
    --text-secondary: #808080;
    --btn-text-secondary: #dadada;
    --signed-status: #0d9d25;
    --cancel-status: #FF1717;
    --sidebar-width: 250px;
    --sidebar-width-collapsed: 6%;
    --sidebar-text: #21272A;
    --light-background: #F8F9FE;
    --signer-two-color: #19C5FB;
    --table-border-color: #ddd;
    --menu-color: #fffefa;
}

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;
    }

:focus-visible {
    outline: none !important;
}

a.signup-text {
    font-weight: 600;
    cursor: pointer;
}

a.disable-link {
    color: var(--text-secondary);
    cursor: default;
}

.waves-effect {
    box-shadow: none !important;
    overflow: visible !important;
}

.waves-ripple {
    display: none !important;
}

.toolsMenu {
    position: absolute;
    inset: 0px auto auto 0px;
    margin: 0px;
    transform: translate(-90px, 23px);
}
/* Breadcrumb css */
/* Style the list */
ul.breadcrumb {
    list-style: none;
}
    /* Display list items side by side */
    ul.breadcrumb li {
        display: inline;
        font-size: 18px;
    }
        /* Add a slash symbol (/) before/behind each list item */
        ul.breadcrumb li + li:before {
            padding: 8px;
            color: var(--black-color);
            content: "/\00a0";
        }
        /* Add a color to all links inside the list */
        ul.breadcrumb li a {
            color: #0275d8;
            text-decoration: none;
        }
            /* Add a color on mouse-over */
            ul.breadcrumb li a:hover {
                color: #01447e;
                text-decoration: none;
            }
/* 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;
}
/* Inner container for centered content */
.preloader_inner {
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
/* GIF loader container */
.gif-loader {
    height: min-content;
    display: flex;
    align-items: center;
}
/* The actual GIF image */
.loader-gif {
    width: 300px;
    height: auto;
    display: block;
    margin: 0 auto;
    align-items: center;
}
/* Loader text styling */
.preloader-text {
    display: block;
    margin-top: 10px;
    font-size: 16px;
    color: #333;
    font-weight: bold;
}

.black-text {
    color: var(--black-color);
}

a.user-noticebar {
    color: #664d03;
    font-weight: 600;
    text-decoration: underline;
}

.alert {
    border-radius: 0.75rem;
}

.default-color {
    color: var(--text-secondary);
    font-weight: 500;
}

.container-fluid {
    overflow: hidden;
}

.button-max-content {
    width: max-content;
}

.logo {
    width: 100%;
    display: flex;
    margin-bottom: 30px;
}
/* password icon */
.fa.fa-eye {
    cursor: pointer;
}
/* check box start */
.remember-me a {
    display: flex;
    justify-content: end;
    color: var(--main-color);
    font-weight: 500;
}

.one-line {
    display: flex;
    gap: 12px;
    width: -webkit-fill-available;
    width: -moz-available;
    flex-direction: row;
}

.check-box {
    width: 15px !important;
}
/* check box end */

/* home page right section text*/
.two-toned {
    color: var(--main-color);
    font-weight: 700;
}
/* Form Elements */
.separate-field {
    position: relative;
    margin: auto;
    width: 100%;
}

.form-group {
    width: 100%;
    position: relative;
    margin-bottom: 12px;
}

    .form-group p {
        text-align: center;
    }

.form-select:focus {
    border-color: var(--btn-text-secondary);
    outline: 0;
    box-shadow: none;
}

.form-label {
    font-size: 14px;
    font-weight: 600;
}

input.form-control.search:focus {
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.05) !important;
}

.form-control:focus,
.form-check-input:focus {
    color: #212529;
    border-color: var(--btn-text-secondary) !important;
    outline: 0;
    box-shadow: none !important;
}

.form-group select {
    cursor: pointer;
    border-radius: 7px;
    padding: 10px 20px;
    border: 1px solid var(--btn-text-secondary);
    font-size: 14px;
}

.business-address-box {
    resize: vertical;
    border: 1px solid var(--btn-text-secondary) !important;
    font-size: 14px !important;
    border-radius: 7px !important;
    height: 100%;
    max-height: 39px;
}

    .business-address-box::placeholder {
        text-align: left;
    }

.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);
}

label.form-check-label.drag-required-field {
    font-size: 18px;
    color: var(--text-secondary);
}

.form-gap {
    gap: 50px;
}

input::placeholder {
    color: var(--text-secondary) !important;
}

input#btnfilterfalse {
    background-color: var(--text-secondary);
    border: 1px solid var(--text-secondary) !important;
}
/* login and signup page */
.login-right {
    padding: 10px 100px;
    width: 100%;
    border-radius: 32px 0px 0px 32px;
    min-height: 100vh;
    justify-content: center;
    display: flex;
    flex-direction: column;
    position: relative;
}

.copyright-content {
    position: absolute;
    bottom: 20px;
    padding-right: 100px;
    width: -webkit-fill-available;
    width: -moz-available;
}

a#forgotpassword {
    width: fit-content;
    margin: auto 0 auto auto;
}

.shadow-box {
    box-shadow: -3px 4px 8px rgba(0, 0, 0, 0.05);
    border-radius: 32px 0px 0px 32px;
    background-color: white;
    z-index: 9;
}

.login-section {
    width: 100%;
}

.login-left {
    width: 100%;
    position: relative;
    display: flex;
    min-height: 100vh;
    height: 100%;
    background-color: var(--auth-background-color);
}

.other-methods {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 20px;
}

.region-name {
    color: #606060;
    font-weight: 600;
}
/* authentication screens left side images */
.auth-vector-left-top {
    position: absolute;
    left: 0%;
}

.auth-vector-left-bottom {
    position: absolute;
    left: 6%;
    bottom: 4%;
}

.auth-vector-right-top {
    position: absolute;
    right: -3%;
}

.auth-vector-right-bottom {
    position: absolute;
    right: -3%;
    bottom: 0%;
}

.auth-tagline {
    position: absolute;
    bottom: 14px;
    left: 0px;
    right: 0px;
    margin: auto auto;
    text-align: center;
    font-size: 18px;
    border-radius: 5px;
    background: #FBC819;
    padding: 10px 15px;
    align-items: center;
    color: white;
    width: fit-content;
}

.digital-signature-logo {
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    top: 0;
    margin: auto auto;
}
/* signup page */
.formNameGroup {
    display: flex;
    gap: 10px;
    align-items: center;
}

.formCompanyGroup {
    display: flex;
    flex-direction: column;
    gap: 0px;
    align-items: center;
}

span.line {
    height: 1px;
    width: -webkit-fill-available;
    width: -moz-available;
    display: flex;
    background-color: var(--text-secondary);
    flex-direction: row;
    margin-bottom: 10px;
}

.account p {
    text-align: start;
}

.account-region {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
/* phone number drop down */
.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;
}

    .form-control:focus {
        color: var(--black-color);
        background-color: #FFF;
        border-color: #5A8DEE;
        outline: 0;
        box-shadow: 0 3px 8px 0 rgb(0 0 0 / 10%);
    }

.intl-tel-input,
.iti {
    width: 100%;
}

.iti__country-list {
    width: 200px;
}
/* otp page */
.otpMainContainer {
    display: block;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 20px 0px 40px;
}

.inputsContainer {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
    width: -webkit-fill-available;
    width: -moz-available;
}

.OTPInput {
    border: 2px solid var(--btn-text-secondary);
    text-align: center;
    font-size: 24px;
    color: var(--black-color);
    border-radius: 7px;
    flex: 1 1 calc(100% / 6 - 30px);
    max-width: calc(100% / 6 - 30px);
}

    .OTPInput:focus {
        border: 2px solid var(--main-color);
        outline: none;
    }

.otp-right {
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 50px 155px;
    width: 100%;
    border-radius: 32px 0px 0px 32px;
    min-height: 100vh;
    position: relative;
}

.otp-inputs input::-webkit-outer-spin-button,
.otp-inputs input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.otp-inputs input[type=number] {
    -moz-appearance: textfield;
}

input.OTPInput {
    flex: 1 1 calc(100% / 6 - 30px);
    max-width: calc(100% / 6 - 30px);
}

.otp-resend {
    display: flex;
    flex-direction: row;
    justify-content: center;
}
/* set password page */
.progress {
    height: 5px;
    margin-bottom: 10px;
}

.result {
    color: var(--signed-status);
}

.popover-password {
    margin-bottom: 12px;
}

.password-requirements li {
    font-size: 14px;
}
/* home page navigation menu */
.wrapping {
    flex-wrap: nowrap;
    min-height: 100vh;
    height: 100%;
}
/* main get started popup of home page */
.modal-popup-inner {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 24px;
}

.modal-popup {
    align-items: center;
    padding: 48px;
    gap: 16px;
}

.start-with-document-image-section,
.get-sign-image-section,
.keep-it-all-in-one-place-image-section {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    margin-bottom: 24px;
    gap: 8px;
}

h1.popup-title {
    text-align: center;
    font-size: 30px;
}

p.popup-sub-title {
    text-align: center;
    color: var(--text-secondary);
}

span.popup-line {
    height: 200px;
    background-color: black;
    width: 1px;
    margin-top: 50px;
}

.accordsign-logo {
    width: -webkit-fill-available;
    width: -moz-available;
    display: flex;
    padding-left: 20px;
}
/* ---------- notification section ---------- */
.notification-dropdown-section {
    display: flex;
    justify-content: flex-end;
    width: -webkit-fill-available;
    width: -moz-available;
}
/* ---------- 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(--black-color);
    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;
    }
/* ---------- notification popup end ---------- */
/* main section css */
.home-notification {
    display: flex;
    padding: 10px 20px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    align-self: stretch;
    border-radius: 9px;
    background: #F5F5F5;
    cursor: pointer;
}

.top-header {
    display: flex;
    padding: 10px 20px;
    justify-content: space-between;
    align-items: center;
    min-height: 90px;
    background: var(--menu-color);
    border-bottom: 1px solid #ededed;
    margin-bottom: 16px;
}

.head-profile-dropdown-menu {
    top: 32px !important;
    left: 15px !important;
    position: absolute !important;
    width: 300px;
    padding: 17px 15px;
    align-items: flex-start;
    border-radius: 16px;
    background: var(--white-color);
    box-shadow: 3px 4px 8px 0px rgba(0, 0, 0, 0.05);
}

    .head-profile-dropdown-menu i {
        font-size: 16px;
        color: #666;
    }

    .head-profile-dropdown-menu span {
        color: #333;
    }

.popup-icon {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 0px;
}

#logoutLabel {
    cursor: pointer;
}

.popup-icon svg {
    display: flex;
    height: 32px;
    width: 32px;
    padding: 6px;
    align-items: center;
    gap: 10px;
    border-radius: 6px;
    background: #F5F5F5;
}

.data-tabs {
    display: flex;
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    flex: 1 0 0;
    align-self: stretch;
    border-radius: 16px;
}

.orange-bg {
    background-color: #FFE8CD;
}

.yellow-bg {
    background-color: #FFF3CD;
}

.inner-tabs {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    align-self: stretch;
}

a.get-started-text {
    color: var(--main-color);
    text-decoration: underline;
}

    a.get-started-text:hover {
        color: var(--main-color);
    }

.user-text {
    font-size: 14px;
    font-weight: 500;
}

.company-text {
    font-size: 12px;
    color: var(--text-secondary);
}

.account-text {
    font-size: 14px;
    font-weight: 500;
    color: var(--main-color);
}

.documents-usage {
    display: flex;
    padding: 24px;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    border-radius: 16px;
    border: 1px solid rgba(251, 177, 22, 0.50);
    background: #FFF9EB;
}

.documents-usage-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.start-with-document-section {
    display: flex;
    padding: 0px 30px;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex: 1 0 0;
    border-radius: 16px;
    background: #f9f9f9;
    border: 1px dashed #CBCBCB;
}

.start-with-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    text-align: center;
}
/* recent documents section css */
.recent-documents-section {
    display: flex;
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    align-self: stretch;
    border-radius: 24px;
    background: #F9f9f9;
}

.search-navigation-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    row-gap: 8px;
    align-self: stretch;
    flex-wrap: wrap;
    border-radius: 8px;
}

.date-ranges {
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

.from-date,
.to-date {
    display: flex;
    gap: 5px;
    align-items: center;
}

p.date-range-sub-title {
    font-size: 12px;
    width: max-content;
}

.date-picker-input {
    width: 165px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 7px;
    padding: 7px;
    border: 1px solid var(--btn-text-secondary);
}

.status-filter {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: -webkit-fill-available;
    width: -moz-available;
}

.status-filter-title {
    font-size: 14px;
    font-weight: 400;
}

.status-filter-options.show {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 7px;
    width: -webkit-fill-available;
    width: -moz-available;
    margin-top: 14%;
}

label.filter-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: -webkit-fill-available;
    width: -moz-available;
    padding: 6px 12px;
    border-radius: 5px;
}
/* Status badge styling start */
.status-badge {
    display: flex;
    width: 150px;
    padding: 4px 12px;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    text-align: center;
}

    .status-badge.draft {
        background-color: #e8e8e8;
        color: #a7a7a7;
    }

    .status-badge.action-required {
        background-color: #fed0d0;
        color: #fc5252;
    }

    .status-badge.declined {
        background-color: #FEEFD0;
        color: #FBB116;
    }

    .status-badge.signed {
        background-color: #D6F4DE;
        color: #34C759;
    }

    .status-badge.pending {
        background-color: #CCE4FF;
        color: #007AFF;
    }

    .status-badge.cancelled {
        background-color: #EAEAEA;
        color: #8C8C8C;
    }
/* Status badge styling end */
.eye {
    margin-right: 12px;
    cursor: pointer;
}

.download {
    cursor: pointer;
}
/* table css */
.custom-table {
    overflow: hidden;
    width: 100%;
}

.table-container {
    display: table;
    width: 100%;
    border-collapse: collapse;
}

.overflow-x-auto {
    overflow-x: auto;
}

.table-row {
    display: table-row;
    background: var(--white-color);
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid #f7f7f7;
    font-size: 14px;
}

.table-cell {
    display: table-cell;
    vertical-align: middle;
    padding: 16px 20px;
}

.table-head {
    box-shadow: none;
    background-color: var(--white-color);
}

.table-header-cell {
    color: var(--text-secondary);
    font-weight: 600;
    text-align: left;
    padding: 12px 20px;
    background: transparent;
}

.table-row .table-cell {
    border-bottom: none;
}
/* home page right documents section */
.pdf-section {
    display: flex;
    gap: 20px;
}

.pdf-text {
    display: flex;
    flex-direction: column;
}

.doc-author {
    color: var(--text-secondary);
    font-size: 14px;
}

.doc-name {
    font-size: 14px;
    font-weight: 600;
    word-break: break-all;
}

span.status-text:before {
    content: " ";
    display: block;
    height: 8px;
    min-width: 8px;
    position: relative;
    border-radius: 5px;
}
/* settings page profile section */
.profile-right-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    position: relative;
    padding: 10px 20px;
}

.img-box img {
    border-radius: 50%;
}

.profile-right {
    display: flex;
    align-items: flex-start;
    gap: 80px;
}

.signupFormMain {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.account-delete {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.profile-account-delete {
    color: var(--cancel-status);
    text-decoration: underline;
    font-weight: 500;
    cursor: pointer;
}

.profile-image-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.user-profile {
    cursor: pointer;
}

.profile-width {
    width: 100%;
}

.rotate {
    transition: transform 0.3s ease;
}

.cropit-preview {
    background-color: #F8F8F8;
    background-size: cover;
    border-radius: 3px;
    margin-top: 7px;
    width: 250px;
    height: 250px;
}

.cropit-preview-image-container {
    cursor: move;
}

.cropit-preview-background {
    opacity: .2;
    cursor: auto;
}

.image-size-label {
    margin-top: 10px;
}

input.cropit-image-input {
    display: none;
}

span.thumb {
    visibility: hidden;
    display: none;
}

.cropit-image-zoom-input.custom {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    height: 5px;
    background: #eee;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    outline: none;
    width: 250px;
}

.sfImageLeft {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.image-editor {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.dropdown-item:hover {
    cursor: pointer;
}
/* settings security page css */
.password-width {
    min-width: 600px;
}
/* settings connected accounts page css */
.connected {
    color: var(--signed-status);
    text-decoration: underline;
    cursor: pointer;
}

.disconnected {
    color: var(--cancel-status);
    text-decoration: underline;
    cursor: pointer;
}

.change-password {
    text-decoration: underline;
    cursor: pointer;
}

.connect-title {
    font-size: 14px;
    font-weight: 500;
}

.connected-sub-title {
    justify-content: flex-start;
    font-size: 12px;
    font-weight: 300;
}

.connected-accounts-section {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 16px 24px;
    gap: 24px;
    box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    min-width: 340px;
}

.connected-accounts-first-div {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
}

.connected-accounts-second-div {
    width: 340px;
    margin-bottom: 10px;
}

.connected-accounts-main {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: -webkit-fill-available;
    width: -moz-available;
}

.connect-title-section {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    gap: 10px;
}

.connect-profile-title {
    font-weight: 600;
    font-size: 14px;
    display: flex;
    gap: 10px;
}
/* settings signature page css */

/* step-1 */
.step {
    display: none;
}

.create-signature-inner-step1 {
    display: flex;
    padding-top: 25px;
    flex-direction: column;
    margin-left: 10px;
}

.profile .create-signature-inner-step1 {
    display: flex;
    padding-top: 24px;
    flex-direction: column;
    margin-left: 10px;
}

.create-signature-inner-step2,
.create-signature-inner-step3 {
    padding-top: 20px;
    flex-direction: column;
    margin-left: 10px;
}

.profile .create-signature-inner-step2,
.profile.create-signature-inner-step3 {
    padding-top: 25px;
    flex-direction: column;
    margin-left: 10px;
}

.create-signature {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 32px;
    gap: 32px;
    width: -webkit-fill-available;
    width: -moz-available;
    margin: 0;
    min-height: 300px;
}

.create-signature-title {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.create-signature-title-text {
    color: var(--text-secondary);
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
}

.create-signature-subtitle-text {
    color: var(--btn-text-secondary);
    font-size: 1rem;
    margin-top: 5px;
}
/* step-2 */
.signatureModalpopup .modal-dialog {
    max-width: 760px;
    margin: auto;
    display: flex;
    justify-content: center;
    min-height: 100vh;
    align-items: center;
}

.login-right-inner.create-signature-inner-step2 {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 32px 18px;
    gap: 30px;
    width: -webkit-fill-available;
    width: -moz-available;
}

.signers-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 8px;
    width: -webkit-fill-available;
    width: -moz-available;
    margin-bottom: 10px;
}

.create-signature-canvas {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    width: -webkit-fill-available;
    width: -moz-available;
    height: fit-content;
}

.create-signature-canvas-top-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 8px;
    gap: 20px;
    background: var(--light-background);
    border-radius: 16px;
    width: -webkit-fill-available;
    width: -moz-available;
}

.create-signature-canvas-bottom-section {
    width: -webkit-fill-available;
    width: -moz-available;
}

.choose-signature-text {
    text-decoration: none;
    color: var(--sidebar-text);
}

    .choose-signature-text:hover {
        text-decoration: none;
        color: var(--sidebar-text);
    }

.sign-element {
    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;
}

.active-signature {
    background: var(--white-color);
    border: 0.5px solid #EDEDED;
    box-shadow: 1px 1px 2.5px rgba(0, 0, 0, 0.1);
}

.signature-tab {
    display: none;
}

    .signature-tab.actives {
        display: flex;
    }
/* choose signature tab */
.choose-signature-canvas-inner {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 18px 32px;
    gap: 10px;
    width: -webkit-fill-available;
    width: -moz-available;
    height: -webkit-fill-available;
    height: -moz-available;
    background: white;
    border-radius: 16px;
    border: 1px solid var(--light-background);
}

.choose-signature-canvas-main {
    flex-direction: column;
}

.choose-signature-step {
    display: flex;
    flex-direction: column;
    width: -webkit-fill-available;
    width: -moz-available;
}

.signature-group {
    display: flex;
    gap: 10%;
    width: -webkit-fill-available;
    width: -moz-available;
    border-bottom: 1px solid var(--text-secondary);
}

.form-group.signature-input-box {
    margin-bottom: 0px;
}

.signature-group-inner {
    display: flex;
    gap: 28px;
    width: -webkit-fill-available;
    width: -moz-available;
}

.signature-group-initial {
    width: 50%;
}

input.sign-radio {
    accent-color: black;
}

.signature-type-1 {
    font-family: "Stalemate", cursive;
    font-size: 40px;
    border: none;
    padding: 5px 20px;
}

.signature-type-2 {
    font-family: "Square Peg", cursive;
    font-size: 40px;
    border: none;
    padding: 5px 20px;
}

.signature-type-3 {
    font-family: "Meow Script", cursive;
    font-size: 40px;
    border: none;
    padding: 5px 20px;
}

.signature-type {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
    max-width: 200px;
    cursor: pointer;
}

.full-signature {
    display: none;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: #fff;
    padding: 6px 10px;
    border-radius: 4px;
    white-space: nowrap;
    z-index: 1000;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

    .full-signature::after {
        content: '';
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        border-width: 5px;
        border-style: solid;
        border-color: #333 transparent transparent transparent;
    }

.signature-type-wrapper:hover .full-signature {
    display: block;
    opacity: 1;
    pointer-events: auto;
}
/* draw signature tab */
.draw-signature-canvas-main {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: inherit;
    border-radius: 16px;
    padding: 32px;
    gap: 10px;
    width: -webkit-fill-available;
    width: -moz-available;
    background-color: var(--light-background);
    min-height: 460px;
}

.color-delete {
    display: flex;
    width: -webkit-fill-available;
    width: -moz-available;
    height: fit-content;
    justify-content: space-between;
    align-items: center;
}

.clear-signature {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 12px 16px;
    gap: 8px;
    border-radius: 5px;
    cursor: pointer;
}

.draw-signature-bottom-line {
    margin: 0 auto;
    width: -webkit-fill-available;
    width: -moz-available;
    height: 0px;
    border: 1px solid var(--text-secondary);
}
/* Canvas */
.signature-canvas-wrapper {
    display: flex;
    gap: 20px;
}

.fullname-signpad {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.signature-wrapper {
    position: relative;
    width: 400px;
    height: 200px;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    .signature-wrapper .signature-pad {
        position: absolute;
        left: 0;
        top: 0;
        width: 400px;
        height: 200px;
        background-color: var(--light-background);
        border: 1px solid rgba(218, 218, 218, 0.5);
        border-radius: 5px;
    }

.signature-pad {
    position: absolute;
    left: 0;
    top: 0;
    width: 200px;
    height: 200px;
    background-color: var(--light-background);
    border: 1px solid rgba(218, 218, 218, 0.5);
    border-radius: 5px;
}
/* upload signature tab */
.upload-signature-canvas-main {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: -webkit-fill-available;
    width: -moz-available;
    min-height: 400px;
    height: -webkit-fill-available;
    height: -moz-available;
    background: var(--light-background);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
    margin-bottom: 20px;
}

.upload-signature-canvas-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0px;
    gap: 8px;
    width: -webkit-fill-available;
    width: -moz-available;
    min-height: 400px;
    height: inherit;
    border: 1px dashed #CBCBCB;
    border-radius: 24px;
}

.upload-signature-canvas-text {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 18px;
    cursor: pointer;
}

.preview-image {
    width: 100px;
    height: min-content;
    object-fit: cover;
    margin: 5px;
    border-radius: 5px;
}

.upload-signature-placeholder {
    display: none;
}

div#imagePreviewContainer {
    width: -webkit-fill-available;
    width: -moz-available;
}

.preview-image {
    width: -webkit-fill-available;
    width: -moz-available;
}
/* step-3 */
.title-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.signature-step-color {
    font-weight: 300;
}

.header-color {
    background-color: var(--light-background);
}
/* account page css */
.create-account-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 32px;
    gap: 25px;
    width: -webkit-fill-available;
    width: -moz-available;
    margin: 0;
    height: 100%;
}

.create-account-title {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.create-account-title-text {
    color: var(--text-secondary);
    font-size: 1.5rem;
    font-weight: 500;
}

.guideline {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-secondary);
}

.business-guideline {
    margin-top: 10px;
}
/* wizard1 page css */

/* upload documents section css */
.settings-section {
    padding: 0px 150px;
}

.upload-document-canvas-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: -webkit-fill-available;
    width: -moz-available;
    min-height: 350px;
    gap: 10px;
    height: inherit;
    border: 1px dashed #CBCBCB;
    border-radius: 8px;
    background-color: var(--light-background);
}

.sticky-header {
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 99999;
}

.upload-document-canvas-inner-section-step1 {
    display: flex;
}

.upload-document-canvas-inner-section-step1,
.upload-document-canvas-inner-section-step2 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0px;
    gap: 12px;
    width: inherit;
}

.step-active {
    background-color: var(--main-color);
}

.document-step-1-title.step-active::after {
    background: var(--main-color);
    clip-path: polygon(0% 0%, 100% 50%, 0% 100%, 0% 100%);
}

.document-step-2-title.step-active::after {
    background: var(--main-color);
    clip-path: polygon(0% 0%, 100% 50%, 0% 100%, 0% 100%);
}

.document-step-2-title.step-completed::after {
    background: var(--black-color);
    clip-path: polygon(0% 0%, 100% 50%, 0% 100%, 0% 100%);
}

.document-step-1-title.step-active,
.document-step-2-title.step-active,
.document-step-3-title.step-active {
    background: var(--main-color);
    color: var(--black-color);
}

.document-step-2-title.step-completed {
    background: var(--black-color);
    color: white;
}

.signer-sign-section.no-records {
    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;
}

.step-completed {
    background-color: black;
}

.document-step-1-title.step-completed::after {
    background: black;
    clip-path: polygon(0% 0%, 100% 50%, 0% 100%, 0% 100%);
}

.document-step-1-title {
    display: flex;
    padding: 5px 10px 5px 30px;
    justify-content: center;
    position: relative;
    min-height: 35px;
    color: white;
    font-weight: 500;
    border-radius: 20px 0px 0px 20px;
}

.document-step-2-title {
    display: flex;
    background-color: #e1e1e6;
    padding: 5px 10px 5px 22px;
    justify-content: center;
    position: relative;
    min-height: 35px;
    color: var(--black-color);
    font-weight: 500;
}

.document-step-3-title {
    display: flex;
    background-color: #e1e1e6;
    padding: 5px 10px 5px 22px;
    justify-content: center;
    position: relative;
    min-height: 35px;
    color: var(--black-color);
    font-weight: 500;
    border-radius: 0px 20px 20px 0px;
}

.upload-document-canvas-text {
    font-weight: 500;
    font-size: 18px;
    cursor: pointer;
}

.or-divider {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .or-divider::before {
        content: "";
        display: block;
        height: 1px;
        width: 80px;
        background: #E0E0E0;
    }

    .or-divider::after {
        content: "";
        display: block;
        height: 1px;
        width: 80px;
        background: #E0E0E0;
    }

.signer-dropdown {
    width: fit-content;
}

    .signer-dropdown option {
        background: white;
        color: black;
        text-align: start;
    }

.document-date-picker {
    position: relative;
    width: 100%;
}

    .document-date-picker .form-control {
        padding-right: 42px;
        cursor: pointer;
        background-color: #fff;
    }

        .document-date-picker .form-control[readonly] {
            background-color: #fff;
        }

    .document-date-picker .input-group-text {
        position: absolute;
        top: 50%;
        right: 12px;
        transform: translateY(-50%);
        border: none;
        background: transparent;
        cursor: pointer;
        color: #6c757d;
        z-index: 2;
    }

        .document-date-picker .input-group-text:hover {
            color: #000;
        }

        .document-date-picker .input-group-text i {
            pointer-events: none;
        }

.document-step-2-title::before,
.document-step-1-title::after,
.document-step-2-title::after {
    content: "";
    background: white;
    position: absolute;
    height: 36px;
    display: block;
    width: 22px;
    clip-path: polygon(0% 0%, 100% 50%, 0% 100%, 0% 100%);
    left: -1px;
    top: 0px;
    margin: auto;
}

.document-step-3-title::before {
    position: absolute;
    left: -2px;
    top: -1px;
    content: url("../img/sign-document-before-arrow.svg");
}

.document-step-1-title::after {
    right: -21.3px;
    left: unset;
}

.document-step-2-title::after {
    background: #e1e1e6;
    clip-path: polygon(0% 0%, 100% 50%, 0% 100%, 0% 100%);
    right: -21.3px;
    left: unset;
}

.upload-pdf-section {
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 15px;
    background: var(--white-color);
    border: 1px solid #F5F5F5;
    box-shadow: 1.8px 1.8px 4px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    max-width: 300px;
    width: -webkit-fill-available;
    width: -moz-available;
    margin: 0 auto 30px auto;
}

.upload-pdf-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.upload-doc-name {
    font-size: 14px;
    font-weight: 600;
    text-align: left;
}

.upload-doc-size {
    color: var(--text-secondary);
    font-size: 14px;
    text-align: left;
}

.change-document-button,
.browse-document-button {
    width: fit-content;
    margin: 0 auto;
}
/* select signer section css */
.signer-cc {
    display: flex;
    flex-direction: column;
    width: -webkit-fill-available;
    width: -moz-available;
    border-radius: 10px;
    background-color: var(--light-background);
}

.select-signer-head-section {
    display: flex;
    flex-direction: column;
    width: -webkit-fill-available;
    width: -moz-available;
}

.signer-header-section {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
}

.signer-section,
.cc-section,
.message-section {
    display: flex;
    width: -webkit-fill-available;
    width: -moz-available;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px 35px;
    gap: 30px;
}

.message-section {
    border-radius: 10px;
    background-color: var(--light-background);
}

.signer-top-section,
.cc-top-section,
.message-top-section {
    display: flex;
    width: -webkit-fill-available;
    width: -moz-available;
    flex-direction: column;
    gap: 20px;
}

.signer-title-section,
.cc-title-section,
.message-title-section {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: -webkit-fill-available;
    width: -moz-available;
}

.signer-title,
.cc-title,
.message-title {
    font-size: 24px;
    font-weight: 600;
    display: flex;
    gap: 10px;
    align-items: center;
}

.signer-sub-title,
.cc-sub-title,
.message-sub-title {
    font-size: 16px;
}

.signer-order-expire-date-section {
    display: flex;
    width: -webkit-fill-available;
    width: -moz-available;
    align-items: center;
    gap: 50px;
    border-bottom: 1px solid #e3e3e3;
    padding-bottom: 20px;
}

.docSettingsDropdown select {
    background-color: #F5F5F5;
    border-radius: 4px;
    border: none;
    font-size: 14px;
    padding: 7px 10px;
}

.expDateNotes i {
    color: #686868;
    cursor: pointer;
}

.signing-order-section {
    display: flex;
    gap: 10px;
    min-width: 150px;
    width: min-content;
    height: min-content;
    align-items: center;
    justify-content: flex-end;
}

.form-switch .form-check-input {
    width: 3em;
    height: 1.5em;
}

.signing-expiry-date-section {
    display: flex;
    gap: 10px;
}

input.accent-black {
    accent-color: black;
}

.drag-button {
    background-color: var(--main-color);
    padding: 8px;
    border-radius: 5px;
    cursor: move;
    opacity: 1;
    margin-bottom: 12px;
}

.recipientInnerFileds {
    width: 100%;
    padding: 12px 0;
}

.separate-field input,
.separate-field select {
    width: 100%;
    padding: 8px 12px;
    font-size: 14px;
    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: 10px;
    color: var(--black-color);
    transition: all 0.15s ease;
}

.signer-middle-section,
.cc-middle-section,
.message-middle-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: -webkit-fill-available;
    width: -moz-available;
}

.user-sign-section,
.message-box-section {
    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;
}

.sortable-placeholder {
    height: 50px;
    background: var(--white-color);
    border: 2px dashed var(--btn-text-secondary);
    margin-bottom: 10px;
}

.user-sign-section-remove::after,
.cc-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;
}

.user-sign-section-remove,
.cc-user-sign-section-remove {
    position: absolute;
    width: 30px;
    right: -10px;
    height: 30px;
    top: -10px;
    cursor: pointer;
}

.cc-user-sign-section,
.cc-signer-sign-section {
    display: flex;
    gap: 20px;
    align-items: flex-end;
    justify-content: space-between;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    position: relative;
}

.nameEmailGroup {
    display: flex;
    gap: 10px;
    align-items: center;
    width: -webkit-fill-available;
    width: -moz-available;
}

.signer-radio-buttons-group {
    display: flex;
    flex-direction: column;
    width: fit-content;
}

.approver-radio,
.signer-radio {
    display: flex;
    gap: 5px;
}

.delete-icon {
    margin-bottom: 10px;
}

.signer-bottom-section {
    display: flex;
    align-items: center;
    width: -webkit-fill-available;
    width: -moz-available;
    justify-content: flex-end;
}

span.hr-line {
    height: 1px;
    width: -webkit-fill-available;
    width: -moz-available;
    background-color: #eeeeee;
}

.collapsed .nav span.hr-line {
    margin: 10px 0px;
}

.cc-bottom-section {
    display: flex;
    align-items: center;
    width: -webkit-fill-available;
    width: -moz-available;
    justify-content: flex-end;
}

.EmailGroup {
    display: flex;
    flex-direction: column;
    width: -webkit-fill-available;
    width: -moz-available;
    gap: 30px;
}

.sign-expiry-date-time-section {
    display: flex;
    gap: 20px;
    align-items: center;
}

.sign-expiry-date {
    display: flex;
    gap: 20px;
    align-items: center;
}

.expiry-date {
    cursor: pointer;
}

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;
}
/* wizard2 page css */
.page-header {
    border-bottom: 1px solid #dfdfdf;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 999;
}

.wizard2-top-section {
    align-items: center;
    padding: 10px;
    box-shadow: 3px 4px 8px 0px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid #ededed;
}

.wizard2-inner {
    overflow-y: hidden;
    height: 100vh;
}

.wizard2-title h4 {
    width: max-content;
}

.wizard2-workarea {
    display: flex;
    justify-content: space-between;
    background-color: var(--light-background);
    gap: 20px;
}
/* Right page navigator section css */
.page-navigator {
    background-color: var(--white-color);
}

.page-navigator-inner {
    width: 100%;
    height: calc(100vh - 115px);
    position: relative;
    overflow: auto;
}

.tag-active {
    position: relative;
    display: inline-block;
    width: 60%;
    margin: 10px auto;
    border: 1px solid #333;
    background-color: var(--white-color);
}

    .tag-active img {
        height: auto;
        width: 100%;
    }

.tag-container {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 5px 0;
    z-index: 1;
    pointer-events: none;
}

.tag-shape {
    position: relative;
    height: 30px;
    width: 15px;
    background-color: var(--main-color);
    z-index: 1;
    clip-path: polygon(0 16%, 66% 16%, 100% 45%, 67% 73%, 0 73%);
}

.image-set {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    width: 100%;
    position: relative;
}
/* PDF middle section css */
.main-document-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #808080;
}

.pdf-zoom-in-out {
    display: flex;
    padding: 15px;
    background-color: var(--white-color);
    width: -webkit-fill-available;
    width: -moz-available;
    justify-content: center;
    align-items: center;
    gap: 5px;
    box-shadow: -3px 4px 8px rgba(0, 0, 0, 0.05);
    border-radius: 0px 0px 16px 16px;
    z-index: 10;
}

.pdf-box-inner {
    position: relative;
    display: flex;
    gap: 10px;
}

    .pdf-box-inner select {
        padding: 5px 10px;
        border-radius: 5px;
        font-size: 14px;
    }

.wizard2-bottom-section {
    overflow: hidden;
    background-color: var(--light-background);
}

.pdf-sec-middle {
    width: 100%;
    height: calc(100vh - 175px);
    position: relative;
    overflow: auto;
    padding: 0 50px;
}

.dropped-image,
.signature-multiple {
    position: absolute;
}
/* Right page placefield section css */
.field-panel {
    box-shadow: -3px 4px 8px rgba(0, 0, 0, 0.05);
    padding: 20px 20px 0px 20px;
    background-color: var(--white-color);
    position: relative;
}

.field-panel-inner {
    width: 100%;
    height: calc(100vh - 150px);
    position: relative;
    overflow: auto;
}

.signers-dropdown {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-bottom: 20px;
    position: relative;
}

.dropdown-toggle::after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
}

.psl-top-dot {
    background-color: var(--main-color);
    height: 10px;
    width: 10px;
    min-width: 10px;
    border-radius: 100px;
    display: inline-block;
}

.signers-dropdown-list {
    width: min-content;
}

    .signers-dropdown-list li {
        display: flex;
        gap: 10px;
        align-items: center;
        padding: 5px 10px;
        border-radius: 8px;
        cursor: pointer;
    }

.dropdown-title-section {
    display: flex;
    align-items: center;
    gap: 7px;
}

.psl-top-title {
    color: var(--black-color);
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    width: 140px;
    font-size: 14px;
    text-align: start;
}

.drag-drop-fields {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.signing-fields {
    display: flex;
    flex-direction: column;
    width: -webkit-fill-available;
    width: -moz-available;
}

.psl-body-title {
    font-size: 18px;
    margin: 10px 0px;
}

.psl-body-fields {
    width: 100%;
}

.placefield-left {
    position: absolute;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    height: 100%;
    width: 16px;
    transition: opacity 0.25s ease 0s, visibility 0.15s ease 0s;
    opacity: 0;
    visibility: hidden;
    background-color: var(--main-color);
}

    .placefield-left svg {
        fill: white;
        height: 20px;
    }

.placefield-right {
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    transition: padding 0.15s ease 0s;
    cursor: all-scroll;
}

.placefield-right-text {
    text-overflow: ellipsis;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 16px;
    transition: padding 0.25s ease .0s;
    font-size: 14px;
}

.placefield-right-icon span {
    margin-right: 0px;
    height: 40px;
    width: 40px;
}

.placefield-right-icon svg {
    height: 18px;
    fill: white;
    width: 18px;
}

.signers-dropdown-header {
    display: flex;
    width: -webkit-fill-available;
    width: -moz-available;
    justify-content: space-between;
}

p.dropdown-header-text {
    font-size: 20px;
    font-weight: 500;
}

.drag-drop-inputfield {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.required-box {
    width: 15px;
    padding: 5px;
    margin-top: 0px;
}

    .required-box.form-check-input:checked {
        background-color: #000000;
        border-color: #000;
    }

.img-box-main {
    margin: auto;
    display: block;
    width: 100%;
}

.image-box {
    width: 100%;
    position: relative;
    max-width: 100%;
    margin: 30px 0 60px 0;
    background-color: var(--white-color);
}

.img-boxsigner-canvas {
    width: 100%;
    height: 100%;
    position: relative;
    background-color: var(--white-color);
}

.signer-canvas {
    position: relative;
}

    .signer-canvas img {
        width: 100%;
        pointer-events: none;
    }

.image-box img {
    height: 100%;
    mix-blend-mode: multiply;
}

.resizable .resizers {
    border: 3px solid #ffc107;
    box-sizing: border-box;
}

.placefieldBadge {
    background: #ffc107;
    display: block;
    width: 8px;
    height: 100%;
}

.resizable .resizers .resizer {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 3px solid #ffc107;
    position: absolute;
}

    .resizable .resizers .resizer.bottom-right {
        right: -5px;
        bottom: -5px;
    }
/* Property Modal popup css */
.setupmodal .modal-dialog {
    max-width: 600px;
}

.modal.sign-model-right {
    padding-right: 0px;
    position: absolute;
    top: 0px;
    bottom: 0px;
}

.close {
    border: none;
    background: none;
}

.modal.sign-model-right.fade.show .modal-dialog {
    right: 0;
    box-shadow: 0px 0px 19px rgba(0, 0, 0, .5);
}

.modal.sign-model-right.fade .modal-dialog {
    transition: opacity 0.3s linear, right 0.3s ease-out;
}

.modal.sign-model-right .modal-dialog {
    transform: translate3d(0%, 0, 0);
}

.modal.sign-model-right .modal-dialog {
    margin: auto;
    height: calc(100vh - 90px);
}

.modal.sign-model-right .modal-content {
    height: 100%;
    overflow-y: auto;
    border: none;
    border-radius: initial;
}

.signatureAction-header {
    padding: 0;
    margin: 0;
}

.modal-header {
    width: 100%;
    position: relative;
    border: none;
}

.signatureAction-top {
    padding: 13px 15px;
    border-bottom: 1px solid rgb(217, 217, 217);
    display: flex;
    width: -webkit-fill-available;
    width: -moz-available;
    justify-content: space-between;
}

.signatureAction-top-text {
    display: flex;
    -webkit-box-pack: justify;
    -webkit-box-align: center;
    align-items: center;
}

    .signatureAction-top-text svg {
        height: 22px;
        fill: var(--black-color);
        margin-right: 10px;
    }

    .signatureAction-top-text p {
        font-size: 18px;
        color: var(--black-color);
        font-weight: 500;
        margin-bottom: 0;
    }

.signatureAction-body {
    padding: 0px;
    margin: 0px;
    height: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
}

.sign-model-content {
    list-style: none;
    flex-grow: 1;
}

.sign-model-inner {
    width: 100%;
    padding: 0;
    font-size: 16px;
}

.signer-model-user {
    width: 100%;
    background-color: var(--white-color);
    color: var(--main-color);
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    padding: 20px 10px 0 10px;
    font-size: 18px;
}

.signer-model-user-title {
    color: var(--black-color);
    text-transform: capitalize;
    white-space: nowrap;
}

.model-required {
    width: 100%;
    position: relative;
    padding: 0px 10px;
}

.model-required-fields {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    align-items: center;
}

.sign-modal-delete {
    width: 100%;
    flex-shrink: 0;
    display: flex;
    gap: 10px;
    padding: 0 10px 10px;
}
/* Wizard 3 css */
.wizard-3-section {
    height: calc(99vh - 110px);
    overflow: hidden;
    margin: 0;
}

.login-right-inner.upload-document-inner-pdf {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 0px;
    gap: 30px;
    width: -webkit-fill-available;
    width: -moz-available;
    margin-left: 10px;
    height: 100vh;
    overflow: hidden;
}

.select-signer-preview-bottom-section {
    display: flex;
    padding: 30px 20px 0 20px;
    gap: 32px;
    width: -webkit-fill-available;
    width: -moz-available;
    flex-direction: column;
    align-items: flex-end;
    position: relative;
    overflow-y: scroll;
    scrollbar-width: none;
    height: calc(100vh - 140px);
}

    .select-signer-preview-bottom-section::after {
        position: absolute;
        content: "";
        height: 100%;
        border-radius: 50px;
        background-color: #e9e9e9;
        width: 1px;
        top: 0%;
        right: 0%;
    }

.card-custom {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    padding: 20px;
    border: 1px solid #D8D8D8;
}

.recipients-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.status-dot {
    height: 10px;
    width: 10px;
    border-radius: 5px;
    display: inline-block;
    margin-left: 10px;
}

.approver {
    background-color: #C82828;
}

.approver-signer {
    position: relative;
}

.signer-signer {
    position: relative;
}

    .signer-signer div:first-child:before {
        content: " ";
        display: block;
        height: -webkit-fill-available;
        height: -moz-available;
        width: 5px;
        position: absolute;
        background: #C82828;
        border-radius: 0px 20px 20px 0px;
        left: 0;
        top: 0;
    }

.approver-signer div:first-child:before {
    content: " ";
    display: block;
    height: -webkit-fill-available;
    height: -moz-available;
    width: 5px;
    position: absolute;
    background: #04C300;
    border-radius: 0px 20px 20px 0px;
    left: 0;
    top: 0;
}

.signer {
    background-color: #04C300;
}

.section-seprator-line {
    width: 1px;
    height: 100%;
    background: #D8D8D8;
}

.pdf-document-section-inner-header select {
    border: 1px solid #e9e9e9;
    padding: 7px 70px 7px 10px;
    border-radius: 4px;
    color: #6b6b6b;
    font-size: 16px;
    width: max-content;
}

.expiry-text {
    font-size: 14px;
}

.pdf-expiry-date-time {
    display: flex;
    gap: 10px;
    align-items: center;
}

.seprator-line {
    width: 2px;
    height: 20px;
    background-color: var(--btn-text-secondary);
}

.recipient-title {
    text-decoration: underline;
    text-decoration-color: var(--main-color);
}

.preview-file-main {
    border: 1px solid var(--text-secondary);
    width: 100%;
    height: calc(100vh - 225px);
    overflow: auto;
    padding: 10px 10px 0 10px;
    background-color: #808080;
}

.message-card-section-inner-hr {
    color: var(--table-border-color);
}

.pdf-document-section-inner-header {
    display: flex;
    justify-content: space-between;
    margin: 30px 0 20px 0;
    align-items: center;
}
/* cced no records section css */
.no-records-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
/* Documents page css */
.table-col-width {
    min-width: 1152px;
}

.col-min-width {
    min-width: 133px;
}

.small-text {
    font-size: 14px;
}

.doc-sub-name {
    font-size: 14px;
}

.no-documents-found {
    display: flex;
    padding: 20px;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

    .no-documents-found p {
        font-size: 18px;
        font-weight: 500;
    }
/* document status filter section css */
.document-filter-header {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: 20px;
}

.status-button {
    border-radius: 20px;
    border: 1px solid var(--btn-text-secondary);
    color: var(--black-color);
    padding: 5px 15px;
    cursor: pointer;
    min-width: 50px;
    text-align: center;
    font-size: 14px;
}

a.status-button:hover {
    color: var(--black-color);
}

.status-button.active {
    background-color: #fee7b2;
    border: 1px solid rgba(251, 177, 22, 0.50);
}

    .status-button.active:hover {
        background-color: #fee7b2;
        border: 1px solid rgba(251, 177, 22, 0.50);
    }

.status-button:hover {
    background-color: #f5f5f5;
}

.filter-status-tab {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.document-divider {
    width: 1px;
    background-color: #ccc;
    height: 35px;
    margin: 0 12px;
}

.filter-head {
    display: flex;
    align-items: center;
    gap: 15px;
}
/* desktop filter section css */
.filterMainDocument {
    display: flex;
    gap: 15px;
    align-items: center;
    width: 100%;
}

.filterIconMain {
    background-color: var(--btn-text-secondary);
    border-radius: 4px;
    padding: 8px 14px;
}

.filterTxtMain {
    width: 28%;
}

    .filterTxtMain input[type="text"] {
        font-size: 14px;
        border-radius: 4px;
        padding: 8px 12px;
        font-weight: 500;
        border: 1px solid var(--text-secondary);
        color: var(--black-color);
        width: 100%;
    }
/* document property bar section css */
.documentNameBox {
    padding: 12px 10px;
    border-radius: 5px;
    border: 1px solid #e1e1e1;
    margin-bottom: 20px;
    width: 100%;
}

.detailContent h4 {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 7px;
}

.detailContent h2 {
    font-size: 14px;
    color: #25313E;
    margin: 0;
}

.twoDetailContent {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
}

.docDetailBottomMain {
    background-color: #ffffff;
    padding: 10px 10px;
    border-radius: 6px;
    margin-top: 12px;
    border: 1px solid #ededed;
}

.detailCollapseTop {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 8px;
    border-bottom: 1px solid #f2f2f2;
    opacity: 1 !important;
}

.detailCollapseCount span {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px 7px;
    background-color: #f2f2f2;
    border-radius: 50px;
}

    .detailCollapseCount span i {
        font-size: 14px;
        color: #25313E;
    }

.detailCollapseInner {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    margin: 8px 4px;
}

    .detailCollapseInner h6 {
        color: #767e8d;
        font-size: 11px;
        padding: 3px 8px;
        border-radius: 4px;
        background-color: #f2f2f2;
        margin: 0;
        height: 20px;
        width: 22px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .detailCollapseInner span {
        color: #767e8d;
    }

.detailCollapseTitle {
    display: flex;
    align-items: center;
    gap: 6px;
}

    .detailCollapseTitle h2 {
        font-size: 14px;
    }

.modal.modalright.fade.show .modal-dialog {
    right: 1%;
    transform: translate(2%, 1%);
}

.checkbox-list {
    padding: 10px;
    border-bottom: 1px solid #ededed;
    display: flex;
    gap: 20px;
    font-size: 18px;
}
/* document page pagination css */
.custom-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

    .custom-pagination a {
        display: block;
        padding: 8px 14px;
        border: 1px solid #dee2e6;
        border-radius: 6px;
        text-decoration: none;
        color: var(--black-color);
        transition: all 0.2s ease-in-out;
        font-size: 14px;
    }

        .custom-pagination a:hover {
            background-color: var(--main-color);
            color: var(--white-color);
        }

    .custom-pagination .active {
        background-color: var(--main-color);
        color: var(--white-color);
        border-color: var(--main-color);
    }

    .custom-pagination .disabled {
        pointer-events: none;
        opacity: 0.5;
    }
/* document preview section css */
.document-preview-section {
    display: none;
}

.document-content {
    display: flex;
    gap: 20px;
    width: -webkit-fill-available;
    width: -moz-available;
    justify-content: space-between;
    padding: 0 25px;
}

.document-body-top {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
    width: -webkit-fill-available;
    width: -moz-available;
    flex-direction: column;
}

.doc-back-btn {
    display: flex;
    align-items: center;
    gap: 10px;
}

.document-header {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: flex-start;
    width: -webkit-fill-available;
    width: -moz-available;
}

.document-pdf-section {
    height: calc(100vh - 225px);
}
/* Google OAuth Page css */
.oauth-text {
    color: var(--text-secondary);
    font-size: 20px;
}
/* Notification signature done Page css */
.signature-done-section {
    margin: auto 30%;
    width: -webkit-fill-available;
    width: -moz-available;
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .signature-done-section img {
        height: 90px;
    }

.signature-button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}
/* Document audit Page css */
.complete-document-body {
    width: 100%;
    min-height: 90vh;
    position: relative;
    overflow: auto;
    overflow-x: hidden;
    padding: 0px 20px;
}

.audit-document-body-top {
    padding: 30px;
    border-bottom: 1px solid var(--btn-text-secondary);
}

    .audit-document-body-top h2 {
        font-size: 20px;
        margin: 0;
        margin-bottom: 10px;
        padding-top: 20px;
    }

    .audit-document-body-top p {
        color: var(--text-secondary);
    }

    .audit-document-body-top h6 {
        margin-top: 20px;
    }

        .audit-document-body-top h6 svg {
            height: 13px;
            margin-right: 5px;
        }

.audit-table {
    max-height: 300px;
    overflow-y: auto;
    overflow-x: hidden;
}

.doc-detail-button {
    display: flex;
    margin-top: 10px;
    gap: 10px;
}

.table-row > .d-flex {
    flex-shrink: 0;
}

.table-row:last-child .table-column {
    border: none;
}

.document-body-field {
    width: 100%;
}

.complete-doc-title {
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
}

    .complete-doc-title h2 {
        margin: 20px 0;
        font-size: 18px;
        font-weight: 600;
        line-height: 24px;
    }

.complete-doc-table {
    width: 100%;
    text-align: left;
}
/* Subscription page css */
.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;
}
/* Business and Individual Plan Details page css */
.manage-profile-body {
    width: 100%;
    position: relative;
    overflow: auto;
    background-color: #E9E9E9;
    padding: 35px;
    border-radius: 7px;
}

.plan-details-left,
.plan-details-billingArea {
    background-color: var(--white-color);
    box-shadow: rgb(149 157 165 / 20%) 0px 8px 24px;
    border-radius: 7px;
    width: 100%;
}

.plans-details-left-top {
    padding: 20px 20px 0px 20px;
}

.plan-status {
    width: 100%;
}

.plan-table {
    max-height: calc(100% - 300px);
    overflow: auto;
}

.upgradeplan-title {
    width: 100%;
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: flex-start;
}

.plan-status h1 {
    font-size: 22px;
    margin: 0;
    margin-bottom: 10px;
}

.plan-status p {
    font-size: 14px;
    margin-bottom: 10px;
    color: var(--text-secondary);
}

.twoLineEllipse {
    word-break: break-word;
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.plan-status p span {
    font-weight: bold;
}

.plan-details-left-main {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}

.oneLineEllipse {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.plans-details-action-btn {
    width: 100%;
    position: relative;
    padding-bottom: 10px;
    border-top: 1px solid var(--table-border-color);
}

    .plans-details-action-btn ul {
        padding: 0;
        margin-bottom: 10px;
        list-style: none;
    }

    .plans-details-action-btn li {
        margin: 4px 0;
    }

        .plans-details-action-btn li:hover {
            background-color: var(--table-border-color);
        }

.plan-detail-links {
    display: flex;
    gap: 10px;
    font-size: 16px;
    color: var(--text-secondary);
    padding: 8px 30px;
}

    .plan-detail-links span svg {
        width: 20px;
        fill: var(--text-secondary);
        height: 20px;
    }

.plan-details-center {
    overflow: unset;
}

.plan-status p span {
    font-weight: bold;
}

.plan-active {
    color: var(--signed-status);
}

.plan-inactive {
    color: var(--cancel-status);
}

.plan-details-billingArea {
    padding: 20px;
}

.billing-details {
    width: 100%;
    position: relative;
    border: 1px solid var(--table-border-color);
    padding: 20px;
}

.plan-details-billingArea h1 {
    font-size: 22px;
    margin: 0;
}

.plan-details-billingArea-top {
    margin-top: 30px;
    width: 100%;
    position: relative;
}

    .plan-details-billingArea-top h1 {
        font-size: 16px;
        color: black;
        display: flex;
        gap: 8px;
    }

    .plan-details-billingArea-top p {
        font-size: 14px;
        color: #717171;
        margin-top: 8px;
        margin-bottom: 0;
    }

    .plan-details-billingArea-top a {
        font-size: 14px;
        margin-top: 8px;
        margin-bottom: 0;
    }

.plan-price-table {
    width: 100%;
    position: relative;
    margin-top: 30px;
}

.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;
}

.switch-accounts-section {
    background-color: var(--white-color);
}

    .plans-section .ribbon,
    .switch-accounts-section .ribbon {
        width: 160px;
        height: 32px;
        font-size: 12px;
        text-align: center;
        color: var(--white-color);
        font-weight: bold;
        box-shadow: 0px 2px 3px rgba(136, 136, 136, 0.25);
        background: #4dbe3b;
        transform: rotate(45deg);
        position: absolute;
        right: -34px;
        top: 30px;
        padding-top: 7px;
    }

    .switch-accounts-section .ribbon {
        right: -50px;
        top: 10px;
    }

.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 */
.table-responsiveness {
    overflow-x: auto;
}

.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
}

.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;
}

.plan-main-body {
    background-color: var(--white-color);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    width: 100%;
    padding: 20px 20px;
    border-radius: 10px;
}

.customeAvtar {
    width: 100%;
    position: relative;
    height: 130px;
    overflow: hidden;
    display: flex;
}

.edit-button {
    display: flex;
    justify-content: flex-end;
}

.account-edit-button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    width: min-content;
}

input.quantity-input {
    padding: 8px 10px;
}

.license-amount {
    text-align: center;
    background-color: #ffd885;
    font-size: 12px;
    width: auto;
    padding: 8px 20px;
    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;
}
/* Accept invitation page css */
.invitation-card {
    max-width: 500px;
    margin: 50px auto;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.avatar {
    background-color: #f0ad4e;
    color: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    flex-shrink: 0;
}

.privacy-text {
    font-size: 12px;
    color: #6c757d;
}
/* View All Accounts page css */
.switch {
    color: var(--main-color);
    font-weight: 700;
    cursor: pointer;
}

.default-account {
    color: var(--signed-status);
    font-weight: 700;
    cursor: pointer;
}

.connect-account-sub-title {
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

.switch-account-sub-title {
    font-size: 16px;
}

.switch-account-title .title {
    font-size: 18px;
    font-weight: 600;
    text-decoration: underline;
    color: var(--black-color);
}

.switch-accounts-section {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 16px 24px;
    gap: 15px;
    box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    width: 32%;
    position: relative;
    overflow: hidden;
}
/* Invalid url page css */
.logo-error-content {
    position: absolute;
    top: 20%;
    left: 0;
    right: 0;
}

/* order summary page css */
.progress-line {
    margin: 0 5%;
}

.wizard {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    padding: 0;
    margin-bottom: 0;
}
    /* background line */
    .wizard::before {
        content: "";
        position: absolute;
        top: 20px;
        left: 0;
        right: 0;
        height: 5px;
        background: #e9ecef;
        z-index: 0;
    }
/* step style */
.wizard-step {
    position: relative;
    text-align: center;
    flex: 1;
    z-index: 1;
}

.step-circle {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background: #e9ecef;
    color: #495057;
    font-weight: 600;
    margin: 0 auto;
    z-index: 1;
    position: relative;
}

.wizard-step.completed .step-circle {
    background: var(--main-color);
    color: var(--black-color);
}

.wizard-step.not-completed .step-circle {
    background: var(--btn-text-secondary);
    color: var(--black-color);
}

.step-label {
    display: block;
    margin-top: 0.5rem;
    font-weight: 500;
}

.billing-address-box, .order-summary-box {
    border: 1px solid #dee2e6;
}

.license-counter {
    max-width: 60%;
}

.customeDetails {
    word-wrap: break-word;
}

.order-summary-card {
    width: 100%;
    margin: 30px auto;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}
