@import url(https://fonts.googleapis.com/css2?family=Inter&family=Poppins&family=Roboto:wght@400;500&family=Teko&display=swap);
@import url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css);
:root {
    --primary-color: #582FBA;
    --primary-50: #F8F7FD;
    --primary-100: #D9CEF3;
    --primary-200: #9A7CDE;
    --primary-300: #744BD2;
    --primary-400: #170C31;
    --secondary-color: #4A1942;
    --secondary-50: #F4E1F1;
    --secondary-100: #DFA5D5;
    --secondary-200: #C45AB2;
    --secondary-300: #A53B93;
    --secondary-400: #2E1029;
    --grey-900: #252626;
    --grey-800: #525454;
    --grey-700: #6E7070;
    --grey-600: #919394;
    --grey-500: #AFB2B2;
    --grey-400: #C8CBCC;
    --grey-350: #C8CBCC;
    --grey-300: #D4D8D9;
    --grey-250: #E3E7E8;
    --grey-200: #E3E7E8;
    --grey-100: #EBEDED;
    --grey-150: #e8f6f5;
    --grey-50: #F8FAFC;
    --grey-medium: #E5E5E5;
    --success-50: #BEFAE9;
    --success-100: #3FD4AA;
    --success-200: #047857;
    --success-300: #024532;
    --warning-50: #F7FABE;
    --warning-100: #E0E575;
    --warning-200: #A6AD23;
    --warning-300: #616600;
    --danger-50: #FABEBE;
    --danger-100: #FA8080;
    --danger-200: #ce3a30;
    --danger-300: #570A0A;
    --primary-color-dark: #43238d;
    --primary-color-dark-2: #4607d9;
    --primary-color-heading: #330e80;
    --primary-light-bg: #F9F5FF;
    --primary-light-color: #6840C4;
    --sidebar-bg-color: #0F050E;
    --sidebar-active-itm-bg: #260D21;
    --tertiary-btn-bg: #E4DEF7;
    --tertiary-btn: var(--tertiary-btn-bg);
    --error-light-bg: rgba(254, 240, 240, 0.50);
    --neutral-800: #26272B;
    --neutral-600: #51525C;
    --dark-medium: #4F4F4F;
    --black: #25282b;
    --text-block: #525454;
    --error-200: #F04438;
    --brand-light: #eaf3f6;
    --green-200: #15523a;
    --green-100: var(--secondary-color);
    --ruby-red: #FA1E1E;
    --green-sidebar-v2: #011A0B;
    --light-blue-200: rgba(171, 218, 255, 0.7);;
    --light-blue-100: rgba(179, 221, 255, 0.05);
    --blue-100: #6fbfce;
    --blue-dianne: var(--primary-color-heading);
    --foam: #d9caff;
    --alabaster: #F8FAFC;;
    --yellow-200: #f2c94c;
    --yellow-100: #bdb76b;
    --brand-dot-green: #46a278;
    --brand-dot-orange: #f1965a;
    --frosted-mint: #e2fff3;
    --border: #E3E7E8;
    --red: #ff4d4d;
    --white: #fff;
    --shadow: rgba(0, 0, 0, 0.2);
    --completed: var(--primary-color);
    --canceled: var(--danger-200);
    --me-waiting: #D9B020;
    --others-waiting: var(--secondary-300, #A53B93);
    --font-inter: 'Inter', sans-serif;
    --font-poppins: 'Poppins', sans-serif;
    --font-roboto: 'Roboto', sans-serif;
    --border-radius: var(--border-radius, 15px);
}

/* Utilities Styling*/
.container {
    width: 100%
}

@media (max-width: 600px) {
    .m-d-none {
        display: none !important;
    }
}

@media (min-width: 640px) {
    .container {
        max-width: 640px
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 768px
    }
}

@media (min-width: 1024px) {
    .container {
        max-width: 1024px
    }
}

@media (min-width: 1280px) {
    .container {
        max-width: 1280px
    }
}

@media (min-width: 1536px) {
    .container {
        max-width: 1536px
    }
}

.box-radius {
    border-radius: 20px
}

.sub-heading {
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    letter-spacing: .2px;
    line-height: 40px
}

.bg-primary-gradient {
    background: linear-gradient(90.1deg, var(--primary-color) 24.75%, rgba(8, 175, 75, 0.53) 96.97%);
}

.bg-primary {
    background-color: var(--primary-color) !important;
    color: #fff
}

.primary-color {
    color: var(--primary-color) !important;
}

.bg-primary-blue {
    background-color: #6fbfce !important;
    color: #fff
}

.bg-secondary {
    background-color: var(--secondary-color);
    color: var(--white);
}

.bg-secondary-light {
    background: #f0fdff
}

.bg-primary-pattern {
    background: rgba(45, 174, 122, .1)
}

.bg-v2-green {
    background: var(--sidebar-bg-color);
    color: #fff
}

.bg-v2-green-100 {
    background: var(--primary-color);
    color: #fff
}

.divider {
    border: 1px solid #bfbfbf
}

.text-left {
    text-align: left !important;
}

.text-right {
    text-align: right !important;
}

.text-disabled {
    color: #bfbfbf
}

.text-primary {
    color: var(--primary-color)
}

.text-v2-green {
    color: var(--sidebar-bg-color) !important;
}

.text-v2-green-100 {
    color: var(--primary-color) !important;
}

.text-red {
    color: red !important;
}

.text-center {
    text-align: center
}

.cursor-pointer {
    cursor: pointer;
}

.hidden {
    display: none !important;
}

.text-right {
    text-align: right
}

.section-vertical-scroll {
    overflow-y: auto;
}

.capitalize {
    text-transform: capitalize
}

.uppercase {
    text-transform: uppercase
}

.italic {
    font-style: italic;
}

.relative {
    position: relative
}

.absolute {
    position: absolute
}

.block {
    display: block;
}

.flex {
    display: flex
}

.flex-col {
    flex-direction: column
}

.justify-center {
    justify-content: center
}

.justify-between {
    justify-content: space-between
}

.justify-start {
    justify-content: flex-start;
}

.justify-end {
    justify-content: flex-end;
}

.items-center {
    align-items: center
}

.items-start {
    align-items: flex-start;
}

.items-end {
    align-items: flex-end;
}

.flex-1 {
    flex: 1 1 0
}

.flex-auto {
    flex: 1 1 auto
}

.flex-initial {
    flex: 0 1 auto
}

.flex-none {
    flex: none
}

.flex-shrink-0 {
    flex-shrink: 0
}

.my-36 {
    margin-bottom: 9rem;
    margin-top: 9rem
}

.mr-5 {
    margin-right: 1rem;
}

.mt-12px {
    margin-top: 12px;
}

.mt-150px {
    margin-top: 150px;
}

.mt-5 {
    margin-top: 1rem
}

.mt-20 {
    margin-top: 5rem
}

.mb-5 {
    margin-bottom: 1rem
}

.mb-10 {
    margin-bottom: 2rem
}

.mb-36 {
    margin-bottom: 9rem
}

.py-36 {
    padding-bottom: 9rem;
    padding-top: 9rem
}

.pt-16 {
    padding-top: 4rem
}

.pt-32 {
    padding-top: 8rem
}

.pb-16 {
    padding-bottom: 4rem
}

.pb-50px {
    padding-bottom: 50px
}

.pb-100px {
    padding-bottom: 100px
}

.py-100px {
    padding-top: 100px;
    padding-bottom: 100px
}

.pl-0 {
    padding-left: 0 !important;
}

button:not(.chakra-button):not(.chakra-tabs__tab):not(.chakra-accordion__button):not(.tox-tbtn):not(.chakra-modal__close-btn):not(.tox-statusbar__wordcount),
.btn.save-and-proceed-hab,
.btn-primary,
.btn-border-primary,
.btn:visited,
.btn {
    background: var(--primary-color);
    border-radius: var(--border-radius, 15px)!important;
    cursor: pointer;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 1.25px;
    text-transform: uppercase;
    color: var(--white);
    padding: 10px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: -moz-fit-content;
    width: fit-content;
    border: none;
    outline: none;
    text-decoration: none;
    text-align: center;
}

.btn.save-and-proceed-hab:hover,
.btn:hover {
    background: var(--primary-300, #744BD2) !important;
    color: var(--white);
}

.btn.btn-disabled,
.btn[disabled] {
    color: var(--grey-700, #6E7070) !important;
    background: var(--grey-200, #E3E7E8) !important;
}

.btn.btn-secondary {
    background: var(--secondary-color, #4A1942) !important;
}

.btn.btn-secondary:hover {
    background: var(--secondary-200, #C45AB2) !important;
}

.btn.btn-tertiary {
    color: var(--primary-color, #582FBA) !important;
    border: 2px solid var(--primary-200, #9A7CDE) !important;
    background: var(--primary-50, #9A7CDE) !important;
}

.btn.btn-tertiary:hover {
    border: none !important;
    background: var(--primary-50, #9A7CDE) !important;
}

.btn.btn-danger {
    background: var(--danger-200, #c92d22) !important;
}

.btn.btn-danger:hover {
    background: var(--danger-300, #570A0A) !important;
}

.btn-grey {
    background: #919394;
}

.btn[disabled] {
    background: #808080 !important;
}

.primary-color {
    color: var(--primary-color);
}

.btn-danger:hover {
    background: var(--red);
}

.no-pointer {
    cursor: unset;
}

.gap-8px {
    gap: 8px
}

.gap-10px {
    gap: 10px
}

.gap-15px {
    gap: 15px
}

.gap-16px {
    gap: 16px
}

.gap-20px {
    gap: 20px
}

.gap-25px {
    gap: 25px
}

.gap-30px {
    gap: 30px
}

.gap-50px {
    gap: 50px
}

.gap-100px {
    gap: 100px
}

.gap-0 {
    gap: 0
}

.gap-1 {
    gap: .25rem
}

.gap-2 {
    gap: .5rem
}

.gap-3 {
    gap: .75rem
}

.gap-4 {
    gap: 1rem
}

.gap-5 {
    gap: 1.25rem
}

.gap-6 {
    gap: 1.5rem
}

.gap-7 {
    gap: 1.75rem
}

.gap-8 {
    gap: 2rem
}

.gap-9 {
    gap: 2.25rem
}

.gap-10 {
    gap: 2.5rem
}

.gap-11 {
    gap: 2.75rem
}

.gap-12 {
    gap: 3rem
}

.gap-14 {
    gap: 3.5rem
}

.gap-16 {
    gap: 4rem
}

.gap-20 {
    gap: 5rem
}

.gap-24 {
    gap: 6rem
}

.gap-28 {
    gap: 7rem
}

.gap-32 {
    gap: 8rem
}

.gap-36 {
    gap: 9rem
}

.gap-40 {
    gap: 10rem
}

.gap-44 {
    gap: 11rem
}

.gap-48 {
    gap: 12rem
}

.gap-52 {
    gap: 13rem
}

.gap-56 {
    gap: 14rem
}

.gap-60 {
    gap: 15rem
}

.gap-64 {
    gap: 16rem
}

.p-0 {
    padding: 0
}

.p-1 {
    padding: .25rem
}

.p-2 {
    padding: .5rem
}

.p-3 {
    padding: .75rem
}

.p-4 {
    padding: 1rem
}

.p-5 {
    padding: 1.25rem
}

.p-6 {
    padding: 1.5rem
}

.p-7 {
    padding: 1.75rem
}

.p-8 {
    padding: 2rem
}

.p-9 {
    padding: 2.25rem
}

.p-10 {
    padding: 2.5rem
}

.p-11 {
    padding: 2.75rem
}

.p-12 {
    padding: 3rem
}

.p-14 {
    padding: 3.5rem
}

.p-16 {
    padding: 4rem
}

.p-20 {
    padding: 5rem
}

.p-24 {
    padding: 6rem
}

.p-28 {
    padding: 7rem
}

.p-32 {
    padding: 8rem
}

.p-36 {
    padding: 9rem
}

.p-40 {
    padding: 10rem
}

.p-44 {
    padding: 11rem
}

.p-48 {
    padding: 12rem
}

.p-52 {
    padding: 13rem
}

.p-56 {
    padding: 14rem
}

.p-60 {
    padding: 15rem
}

.p-64 {
    padding: 16rem
}

.p-16px {
    padding: 16px
}

.border {
    border: 1px solid;
}

.border-grey {
    border-color: #E3E7E8;
}

.border-blue-primary {
    border-color: var(--primary-color);
}

.w-full {
    width: 100%
}

.h-full {
    height: 100%
}

/* \Utilities Styling*/

.rotate {
    animation: rotation 2s;
}

.linear {
    animation-timing-function: linear;
}

.cubic-bezier {
    animation-timing-function: cubic-bezier(0.18, 0.89, 0.35, 1.15);
}

.infinite {
    animation-iteration-count: infinite;
}

.no-max-w {
    max-width: unset !important;
}

@keyframes rotation {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(359deg);
    }
}

.empty h5 {
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
    letter-spacing: 0.15px;
    color: #252626;
}


.empty p {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    text-align: center;
    letter-spacing: 0.5px;
    color: #525454;
}

/* Alerts */

.alert {
    --bs-alert-bg: transparent;
    --bs-alert-padding-x: 1rem;
    --bs-alert-padding-y: 1rem;
    --bs-alert-margin-bottom: 1rem;
    --bs-alert-color: inherit;
    --bs-alert-border-color: transparent;
    --bs-alert-border: 1px solid var(--bs-alert-border-color);
    --bs-alert-border-radius: 0.375rem;
    position: relative;
    padding: var(--bs-alert-padding-y) var(--bs-alert-padding-x);
    margin-bottom: var(--bs-alert-margin-bottom);
    color: var(--bs-alert-color);
    background-color: var(--bs-alert-bg);
    border: var(--bs-alert-border);
    border-radius: var(--bs-alert-border-radius);
}

.alert-heading {
    color: inherit;
}

.alert-link {
    font-weight: 700;
}

.alert-dismissible {
    padding-right: 3rem;
}

.alert-dismissible .btn-close {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    padding: 1.25rem 1rem;
}

.alert-primary {
    --bs-alert-color: #084298;
    --bs-alert-bg: #cfe2ff;
    --bs-alert-border-color: #b6d4fe;
}

.alert-primary .alert-link {
    color: #06357a;
}

.alert-secondary {
    --bs-alert-color: #41464b;
    --bs-alert-bg: #e2e3e5;
    --bs-alert-border-color: #d3d6d8;
}

.alert-secondary .alert-link {
    color: #34383c;
}

.alert-success {
    --bs-alert-color: #0f5132;
    --bs-alert-bg: #d1e7dd;
    --bs-alert-border-color: #badbcc;
}

.alert-success .alert-link {
    color: #0c4128;
}

.alert-info {
    --bs-alert-color: #055160;
    --bs-alert-bg: #cff4fc;
    --bs-alert-border-color: #b6effb;
}

.alert-info .alert-link {
    color: #04414d;
}

.alert-warning {
    --bs-alert-color: #664d03;
    --bs-alert-bg: #fff3cd;
    --bs-alert-border-color: #ffecb5;
}

.alert-warning .alert-link {
    color: #523e02;
}

.alert-danger {
    --bs-alert-color: #842029;
    --bs-alert-bg: #f8d7da;
    --bs-alert-border-color: #f5c2c7;
}

.alert-danger .alert-link {
    color: #6a1a21;
}

.alert-light {
    --bs-alert-color: #636464;
    --bs-alert-bg: #fefefe;
    --bs-alert-border-color: #fdfdfe;
}

.alert-light .alert-link {
    color: #4f5050;
}

.alert-dark {
    --bs-alert-color: #141619;
    --bs-alert-bg: #d3d3d4;
    --bs-alert-border-color: #bcbebf;
}

.alert-dark .alert-link {
    color: #101214;
}

/* /Alerts */


/* Default Resizer removal*/

.canvas-field-float.ui-resizable .ui-icon-gripsmall-diagonal-se {
    background-image: unset !important;
    border-color: transparent !important;
    color: transparent;
}

/* /Default Resizer removal*/

/* Percentage Gauge */
.percentage-gauge-wrap {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex: 1;
    align-items: center;
    gap: 10px;
}

.percentage-gauge-wrap > .percentage-gauge {
    flex: 1;
    background: #F9F5FF;
    border-radius: 4px;
    position: relative;
    height: 8px;
}

.percentage-gauge-wrap > .percentage-gauge > .gauge-value {
    background: var(--primary-color);
    height: 8px;
    border-radius: 4px;
    position: absolute;
    left: 0;
    top: 0;
}

.percentage-gauge-wrap .gauge-label {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    display: flex;
    align-items: center;
    color: #344054;
}

/* /Percentage Gauge */

/*user-photo-name-email*/
.photo-name-email-user {
    display: flex;
    align-items: center;
    padding: 0;
    gap: 12px;
}

.photo-name-email-user img {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 11.22px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.photo-name-email-user .user-img-empty {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--grey-400, #C8CBCC);
}

.photo-name-email-user .user-name-email {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.photo-name-email-user .user-name-email-empty {
    color: var(--grey-900, #252626);
    font-family: var(--font-roboto);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.15px;
}

.photo-name-email-user .user-name-email .user-name {
    color: var(--grey-900, #252626);
    font-family: var(--font-roboto);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.15px;
}

.photo-name-email-user .user-name-email .user-email {
    font-family: var(--font-poppins);
    color: var(--grey-800, #525454);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 171.429% */
    letter-spacing: 0.25px;
}

/*/user-photo-name-email*/

.range-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 15px;
    border-radius: 12px;
    background: var(--primary-50, #F8F7FD);
    outline: none;
    transition: opacity .2s;
}

.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--primary-50, #F8F7FD);
    border: 10px solid var(--primary-color, #582FBA);
    box-sizing: border-box;
    cursor: pointer;
}

.range-slider::-moz-range-thumb {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--primary-50, #F8F7FD);
    border: 10px solid var(--primary-color, #582FBA);
    box-sizing: border-box;
    cursor: pointer;
}

.chakra-table__container{
    overflow: visible!important;
}
.dropping-here-background-class{
    border: 1px dotted #777;
    border-radius: 15px;
    background: #582FBA55;
}

.rounded-btn {
    border-radius: 50px !important;
    height: 60px;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: bold;
    overflow: hidden;
    cursor: pointer;
}

.tab1-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    -moz-column-gap: 7%;
         column-gap: 7%;
    row-gap: 20px;
    width: 70%;
    margin: 50px auto;
}

.tab1-grid-item {
    border: 1px solid var(--grey-400);
    border-radius: 10px;
}

.tab1-grid-item:not(:nth-child(2)) {
    display: flex;
    justify-content: center;
    align-items: center;
}

.tab1-grid-item-2 {
    grid-column: 2 / 4;
    grid-row: 1 / 4;
}

.tab1-grid-item a {
    text-decoration: none;
    color: var(--grey-500);
    font-size: 14px;
    display: block;
    width: 100%;
    padding: 20px 0;
    text-transform: capitalize;
}

.tab1-grid-item a div {
    margin: 10px;
    text-align: center;
}

.tab1-grid-item-2-content {
    padding: 20px;
    box-sizing: border-box;
    position: relative;
}

.tab1-grid-item-2-content-heading {
    font-size: 14px;
    color: var(--grey-900);
    text-transform: capitalize;
    margin-bottom: 10px;
    font-weight: bold;
}

.tab1-grid-item-2-content small {
    font-size: 10px;
    color: var(--grey-500);
    text-transform: capitalize;
}

.tab1-grid-item-2-content small {
    font-size: 10px;
    color: var(--grey-500);
    text-transform: capitalize;
}

.tab1-grid-item-2-content select {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 90px;
    border: 1px solid var(--green-200);
    border-radius: var(--border-radius, 15px);
    color: var(--green-200);
    padding: 5px 7px;
    font-size: 10px;
    text-transform: capitalize;
}

.tab1-grid-item-2-content select:focus {
    outline: 0;
}

.tab1-subgrid {
    margin-top: 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.chart {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    /*background: conic-gradient(var(--green-100) 60%, var(--light-yellow) 40%);*/
}

.chart-inner-circle {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
}

.chart-inner-circle div {
    text-align: center;
}

.chart-inner-circle div p:first-child {
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    font-size: 20px;
    color: var(--grey-900);
}

.chart-inner-circle div p:last-child {
    text-transform: capitalize;
    color: var(--grey-500);
}

.tab1-subgrid-item-marker {
    display: inline-block;
    width: 15px;
    height: 15px;
    position: relative;
    top: 2px;
    background: var(--brand-dot-green);
}

.tab1-subgrid-item-marker.marker2 {
    background: var(--brand-dot-orange);
}

.tab1-subgrid-item {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
}

.tab1-subgrid-item-content-child {
    padding: 10px 0;
    box-sizing: border-box;
}

.tab1-subgrid-item-p {
    text-transform: capitalize;
}

.tab1-subgrid-item-p span {
    margin: 0 5px;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    font-size: 16px;
    color: var(--grey-900);
}


.subtitle {
    font-family: var(--font-poppins);
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0.15px;
    color: #252626;
}

.subtitle ~ p {
    font-family: var(--font-poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    text-align: center;
    letter-spacing: 0.5px;
    color: #6E7070;
}
.flex.gap-16.justify-center{
    margin-top: 34px;
    margin-bottom: 151px;
}
.dashboard-icon-img{
    width: 56px;
    height: 56px;
}
.dashlink{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 310px;
    height: 181px;
    background: #F8FAFC;
    border: 1px solid #E3E7E8;
    box-sizing: border-box;
    border-radius: var(--border-radius, 15px);
    max-width: 100%;
    text-align: center;
}
.dashlink > p{
    font-family: var(--font-poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 0.5px;
    color: #525454;
}

.gift-card{
    display: flex;
    gap: 18px;
}
.gift-card > .gift-card-close{
    background: #E8F5F7;
    border: 1px solid var(--foam);
    border-radius: 10px;
    padding: 10px;
    width: 40px;
    height: 40px;
    align-self: flex-end;
}
.gift-card > .gift-card-body-wrap{
    background: var(--primary-50);
    border-radius: var(--border-radius, 15px);
    /*height: 250px;*/
    overflow: hidden;
}
.gift-card > .gift-card-body-wrap img.absolute{
    bottom: 0;
}
.gift-card > .gift-card-body-wrap .pana{
    left: 0;
}
.gift-card > .gift-card-body-wrap .inject{
    right: 0;
}
.gift-card > .gift-card-body-wrap .gift-card-btn-text-wrap{
    padding: 57px 0;
    z-index: 1;
    position: relative;
}
.gift-card > .gift-card-body-wrap .gift-card-btn-text-wrap > span{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-size: 30px;
    line-height: 35px;
    letter-spacing: 0.357996px;
    color: var(--primary-color-heading);
    display: block;
}
.gift-card > .gift-card-body-wrap .gift-card-btn-text-wrap > .btn{
    margin-top: 40px;
}

.x-upgrade, .x-upgrade::before {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    cursor: default!important;
}
.x-upgrade::before {
    content: '';
    /* backdrop-filter: blur(0.5px);
    --webkit-backdrop-filter: blur(1px); */
    z-index: 1;
}
.x-upgrade::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    display: inline-block;
    width: 24px;
    height: 24px;
    z-index: 2;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='56' viewBox='0 0 48 48'%3E%3Cpath fill='%23424242' d='M24 4c-5.5 0-10 4.5-10 10v4h4v-4c0-3.3 2.7-6 6-6s6 2.7 6 6v4h4v-4c0-5.5-4.5-10-10-10'/%3E%3Cpath fill='%23fbaf00' d='M36 44H12c-2.2 0-4-1.8-4-4V22c0-2.2 1.8-4 4-4h24c2.2 0 4 1.8 4 4v18c0 2.2-1.8 4-4 4'/%3E%3Ccircle cx='24' cy='31' r='3' fill='%23fff'/%3E%3C/svg%3E");
}

.tooltip {
    position: relative;
    display: flex;
}
.tooltip .tooltip-button {
    display: inline-flex;
}
.tooltip .tooltip-content {
    position: absolute;
    border-radius: 12px;
    background: #fff;
    -webkit-backdrop-filter: blur(4px);
            backdrop-filter: blur(4px);
    box-shadow: 0px 3px 12px -3px rgba(0, 0, 0, 0.25);
    padding: 1rem;
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    color: #7B7C81;
    min-width: 240px;
    max-width: 320px;
    line-height: 1.75;
    transition: all .2s ease;
    scale: 0;
    z-index: 1;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
}
.tooltip .tooltip-content:not(.place-top):not(.place-left):not(.place-right) {
    top: calc(100% + 3px);
    left: 50%;
    transform: translateX(-50%);
    transform-origin: top left;
}
.tooltip:hover .tooltip-content {
    scale: 100%;
}
.tooltip .tooltip-content:after {
    content: '';
    position: absolute;
    width: 1px;
    height: 1px;
    border: 8px solid transparent;
}
.tooltip .tooltip-content:not(.place-top):not(.place-left):not(.place-right):after {
    left: 50%;
    bottom: calc(100% - 1px);
    transform: translateX(-50%);
    border-bottom-color: #fff;
    z-index: 1;
}

/* Doxflowy Dropdown */
.dx-dropdown {
    position: relative;
}
.dx-dropdown .dx-dropdown-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 24px;
    border-radius: 15px;
    cursor: pointer;
}
.dx-dropdown .dx-dropdown-toggle + .dx-dropdown-menu {
    display: none;
    flex-direction: column;
    justify-content: center;
    padding: 12px 0;
    position: absolute;
    width: 160px;
    background: #FFFFFF;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.11);
    border-radius: 10px;
    right: 0;
    top: 100%;
    opacity: 0;
    transform: translateY(-75%);
    transition: transform .6s ease, z-index .4s ease-in;
}
.dx-dropdown .dx-dropdown-toggle + .dx-dropdown-menu.show {
    display: flex;
    transform: none;
    opacity: 1;
    z-index: 2;
}
.dx-dropdown .dx-dropdown-toggle + .dx-dropdown-menu a {
    font-style: normal;
    font-weight: 400;
    font-size: .86rem;
    padding: .65rem 1rem;
    display: flex;
    align-items: center;
    text-align: center;
    color: #565656;
    transition: all .3s ease;
}
.dx-dropdown .dx-dropdown-toggle + .dx-dropdown-menu a:hover {
    background-color: rgba(0,0,0,.03);
    color: #565656;
}
/* End Doxflowy Dropdown */

/* Dashboard Document Grid View*/
.dashboard-grid-view-documents{
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 50px;
}
.dashboard-grid-view-documents header{
    flex: 1;
}
.dashboard-grid-view-documents header h5{
    font-family: var(--font-poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0.15px;
    color: var(--primary-color-heading);
}
.dashboard-grid-view-documents header a{
    font-family: var(--font-poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 0.5px;
    color: var(--primary-color);
}
.dashboard-grid-view-documents main{
    display: flex;
    padding: 0;
    gap: 20px;
    flex: 1;
    flex-direction: column;
    align-items: center;
}

@media screen and (min-width: 600px) {
    .dashboard-grid-view-documents main{
        flex-direction: row;
        justify-content: flex-start;
        align-items: flex-start;
    }
}

/* /Dashboard Document Grid View*/

/* Dashboard Document Grid Item*/
.dashboard-grid-document{
    display: flex;
    flex: 1;
    flex-direction: column;
    border: 1px solid var(--foam);
    border-radius: var(--border-radius, 15px);
    transition: 5ms ease-in-out all;
    max-width: 296px;
    min-width: 250px;
}
.dashboard-grid-document:hover{
    border: 2px solid var(--primary-color-heading);
}
.dashboard-grid-document > .dash-doc-icon-wrap{
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--primary-color-dark);
    padding-top: 75px;
    padding-bottom: 50px;
    border-top-right-radius: 15px;
    border-top-left-radius: 15px;
}
.dashboard-grid-document > .dash-doc-icon-wrap svg{
    transition: transform .2s;
}
.dashboard-grid-document > .dash-doc-icon-wrap:hover svg{
    transform: scale(1.2);
}
.dashboard-grid-document > .dash-doc-details-wrap{
    display: flex;
    flex-direction: column;
    background: #FBFDFE;
    padding: 17px 22px;
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;
}
.dashboard-grid-document > .dash-doc-details-wrap .document-title{
    font-family: var(--font-poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 0.5px;
    color: var(--primary-color-heading);
    overflow-wrap: anywhere;
}
.dashboard-grid-document > .dash-doc-details-wrap .document-edited{
    font-family: var(--font-poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: 0.25px;
    color: var(--primary-color);
}
/* /Dashboard Document Grid Item*/

#DocumentDashboard > .flex:first-child {
    margin-top: 32px;
    margin-bottom: 98px;
}
#DocumentDashboard > .flex:first-child > .greetings {
    font-family: var(--font-poppins);
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 30px;
    color: #252626;
}
#DocumentDashboard > .flex:first-child > a {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 13.39px;
    gap: 8.19px;
    width: 215px;
    height: 50.78px;
    left: 1207px;
    top: 103px;
    background: var(--primary-color);
    border-radius: 39px;
    font-family: var(--font-poppins);
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 1.25px;
    text-transform: uppercase;
    color: #F8FAFC;
}
#DocumentDashboard .analytics {
    gap: 40px;
    margin-bottom: 132px;
}

#DocumentDashboard .analytics > h5 {
    font-family: var(--font-poppins);
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0.15px;
    color: #252626;
}

#DocumentDashboard .analytics > .flex {
    gap: 107px;
}

#DocumentDashboard .analytics > .flex > .flex {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

#DocumentDashboard .analytics > .flex > .flex .tag {
    font-family: var(--font-poppins);
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: 0.1px;
    color: #919394;
}

#DocumentDashboard .analytics > .flex > .flex h2 {
    font-family: var(--font-poppins);
    font-style: normal;
    font-weight: 500;
    font-size: 48px;
    line-height: 60px;
    color: var(--primary-color-heading);
}

.dashboard-grid-list-view-documents {
    gap: 35px;
}

.dashboard-grid-list-view-documents .dglvd-title {
    font-family: var(--font-poppins);
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0.15px;
    color: #252626;
}

.dashboard-grid-list-view-documents header .filter-sort {
    gap: 50px;
}

.dashboard-grid-list-view-documents header .filter-sort > .flex {
    gap: 8px;
}

.dashboard-grid-list-view-documents header .filter-sort label {
    font-family: var(--font-poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 0.5px;
    color: #6E7070;
}

.dashboard-grid-list-view-documents header .filter-sort select {
    font-family: var(--font-poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 0.5px;
    color: #252626;
    background: transparent !important;
    border: none !important;
    outline: none;
}

.dashboard-grid-list-view-documents header .flex {
    align-items: center;
}

.dashboard-grid-list-view-documents header > .flex:not(.filter-sort) {
    gap: 70px;
}

.dashboard-grid-list-view-documents header .view-folder-group {
    font-family: var(--font-poppins);
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    letter-spacing: 0.15px;
    color: #525454;
    gap: 17px;
}

.dashboard-grid-list-view-documents header .view-toggle {
    gap: 18px;
}

.dashboard-grid-list-view-documents header .view-toggle svg {
    color: #6E7070;
    cursor: pointer;
}

.dashboard-grid-list-view-documents header .view-toggle svg:hover,
.dashboard-grid-list-view-documents header .view-toggle svg.active {
    color: var(--primary-color);
}

.dashboard-grid-list-view-documents main {
    display: flex;
    padding: 0;
    gap: 20px;
    flex: 1;
    flex-wrap: wrap;
}
.dashboard-grid-list-view-documents .dglvd-docs-view.hidden {
    display: none!important;
}

/********* documents list view styles *********/
.dashboard-list-view-documents  .table-item-selected{
    display: flex;
    gap: 24px;
}
.dashboard-list-view-documents  .table-item-selected select,
.dashboard-list-view-documents  .table-item-selected input[type="number"]{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px;
    gap: 10px;
    width: 51px;
    height: 39px;
    border: 1px solid var(--primary-color);
    border-radius: var(--border-radius, 15px);
}
.dashboard-list-view-documents  .table-item-selected .selected-active-item{
    display: flex;
    gap: 13px;
    justify-items: center;
    align-items: center;
}
.dashboard-list-view-documents  .table-item-selected > .selected-active-item:not(.show-always){
    display: none;
}
.dashboard-list-view-documents  .table-item-selected.visible > .selected-active-item:not(.show-always){
    display: flex;
}
.dashboard-list-view-documents  .tab1-header{
    width: 90%;
    margin: 30px auto 0;
    position: relative;
}

.dashboard-list-view-documents .tab1-header h3{
    color: var(--grey-900);
    font-family: 'Poppins', sans-serif;
    text-transform: capitalize;
}

.dashboard-list-view-documents .tab1-header-select{
    border: 1px solid var(--grey-300);
    margin: 30px 0;
    border-radius: var(--border-radius, 15px);
    width: 180px;
    height: 40px;
    overflow: hidden;
    position: relative;
    background: transparent;
}

.dashboard-list-view-documents .tab1-header-select::after{
    content: "\25be";
    top: 8px;
    right: 15px;
    position: absolute;
    color: var(--grey-500);
    z-index: 0;
}

.dashboard-list-view-documents .tab1-header-select select{
    border: 0;
    width: 180px;
    height: 40px;
    padding: 0 10px;
    color: var(--grey-500);
    -webkit-appearance: none;
    -moz-appearance: none;
         appearance: none;
    z-index: 2;
    text-transform: capitalize;
}

.dashboard-list-view-documents .tab1-header-select select:focus{
    outline: 0;
}

.dashboard-list-view-documents .tab1-btn-group{
    display: grid;
    grid-template-columns: repeat(3, auto);
    -moz-column-gap: 10px;
         column-gap: 10px;
    width: 30%;
    margin: 20px 0;
}

.dashboard-list-view-documents .tab1-btn-group a{
    text-decoration: none;
    color: var(--grey-500);
    border: 1px solid var(--grey-500);
    background: none;
    text-transform: capitalize;
    font-size: 14px;
    text-align: center;
    padding: 5px 10px;
    border-radius: var(--border-radius, 15px);
    white-space: nowrap;
}

.dashboard-list-view-documents .tab1-btn-group a.active{
    background: var(--green-100);
    color: var(--white);
    border-color: var(--green-100);
}

.dashboard-list-view-documents .tab1-btn-group a.active .btn-dot{
    background: var(--white);
}

.dashboard-list-view-documents .tab1-btn-group .btn-dot{
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 10px;
}

.dashboard-list-view-documents .tab1-form-group span{
    color: var(--grey-500);
    font-size: 14px;
    text-transform: capitalize;
}

.dashboard-list-view-documents .tab1-form-group input{
    color: var(--grey-500);
    font-size: 14px;
    border-radius: 5px;
    width: 30px;
    padding: 0 5px;
    border: 1px solid var(--green-100);
}

.dashboard-list-view-documents .tab1-form-group input:focus,
.dashboard-list-view-documents .tab1-header-side-group-form input:focus{
    outline: 0;
}

.dashboard-list-view-documents .tab1-header-side-group{
    position: absolute;
    right: 0;
    top: 0;
    text-align: right;
    height: 100%;
}

.dashboard-list-view-documents .tab1-header-side-group button{
    right: 0;
    top: 20px;
    border: 0;
    border-radius: var(--border-radius, 15px);
    background: var(--blue-100);
    overflow: hidden;
    margin-bottom: 30px;
}

.dashboard-list-view-documents .tab1-header-side-group button a{
    color: var(--white);
    text-decoration: none;
    font-family: var(--font-poppins);
    background: var(--blue-100);
    text-transform: uppercase;
    display: block;
    padding: 15px 20px;
}

.dashboard-list-view-documents .tab1-header-side-group-form{
    border: 2px solid var(--green-100);
    border-radius: var(--border-radius, 15px);
    overflow: hidden;
    height: 40px;
    margin-bottom: 20px;
    position: relative;
}

.dashboard-grid-list-view-documents .tab1-header-side-group-form form{
    height: 100%;
}

.dashboard-list-view-documents .tab1-header-side-group-form input[type=text]{
    width: 85%;
    height: 100%;
    border: 0;
    padding: 0 10px;
    box-sizing: border-box;
    display: block;
    color: var(--grey-400);
}

.dashboard-list-view-documents .tab1-header-side-group-form span{
    position: absolute;
    right: 15px;
    top: 7px;
    color: var(--grey-400);
    cursor: pointer;
}

.dashboard-list-view-documents .tab1-main{
    margin: 30px auto 65px;
    padding: 10px;
    font-size: 14px;
    border-radius: 10px;
    box-sizing: border-box;
}

.dashboard-list-view-documents .tab1-main-grid{
    display: flex;
    grid-template-columns: repeat(4, 1fr);
    /*border-bottom: 1px solid var(--grey-200);*/
    position: relative;
}
.dashboard-list-view-documents .tab1-main-grid:nth-child(odd):not(:first-of-type){
    background: #F8FAFC;
}

.dashboard-list-view-documents .tab1-main-grid.secondary{
    grid-template-columns: 9fr 1fr;
}

.dashboard-list-view-documents .tab1-main-grid:last-child{
    border-bottom: 0;
}

.dashboard-list-view-documents .tab1-main-grid input{
    accent-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 4px;
    width: 24px;
    height: 20px;
}

.dashboard-list-view-documents .tab1-main-grid.tab1-table-heading{
    padding: 25px 0;
    border-bottom: 1px solid #EBEDED;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.dashboard-list-view-documents .tab1-main-grid.tab1-table-heading > *{
    display: flex;
    gap: 15px;
    flex: 1;
    text-transform: uppercase;
}
.dashboard-list-view-documents .tab1-main-grid.tab1-table-heading > *:first-child{
    flex: 2;
}
.dashboard-list-view-documents .tab1-main-grid.tab1-table-heading > *:last-child{
    justify-content: end;
    flex: none;
    min-width: 130px;
}

.dashboard-list-view-documents .tab1-main-grid.tab1-table-heading span{
    font-family: var(--font-poppins);
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
    align-items: center;
    letter-spacing: 0.1px;
    color: #919394;
    text-transform: capitalize;
    display: inline-block;
}

.dashboard-list-view-documents .tab1-main-grid.tab1-table-heading span:last-child{
    position: relative;
}

.dashboard-list-view-documents .tab1-table-heading-dropdown{
    position: absolute;
    bottom: -55px;
    font-size: 12px;
    z-index: 2;
    background: var(--white);
    padding: 15px;
    border-radius: var(--border-radius, 15px);
    box-shadow: 0 0 30px var(--shadow);
    display: none;
    animation-name: optionsSlideIn;
    animation-duration: 0.5s;
}

.dashboard-list-view-documents .tab1-table-heading-dropdown.visible{
    display: block;
}

.dashboard-list-view-documents .tab1-table-heading-dropdown a{
    text-decoration: none;
    color: var(--red)
}

.dashboard-list-view-documents .tab1-main-grid.tab1-table-heading span.tab1-table-heading-btn{
    background: var(--green-200);
    padding: 2px 8px;
    display: none;
    border-radius: 50%;
    font-size: 10px;
    cursor: pointer;
    margin-left: 15px;
}

.dashboard-list-view-documents .tab1-main-grid.tab1-table-heading span.tab1-table-heading-btn.visible{
    display: inline-block;
}

.dashboard-list-view-documents .tab1-main-grid-item{
    padding: 10px 0;
    display: flex;
    gap: 15px;
    align-items: center;
    flex: 1;
}
.dashboard-list-view-documents .tab1-main-grid-item:first-child{
    flex: 2;
}
.dashboard-list-view-documents .tab1-main-grid-item:last-child{
    flex: none;
    width: 130px;
}
.dashboard-list-view-documents.templates .tab1-main-grid-item:last-child{
    width: 160px;
}
.dashboard-list-view-documents .tab1-main-grid-item:first-child small.signers-count{
    color: #919394;
}
.dashboard-list-view-documents .tab1-main-grid-item > .direct-click-links{
    font-family: var(--font-poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    letter-spacing: 0.5px;
    color: #252626;
}
.dashboard-list-view-documents .tab1-main-grid-item.incomplete{
    flex-direction: column;
    align-items: flex-start;
}

.dashboard-list-view-documents .tab1-main-grid-item span{
    text-transform: capitalize;
    color: var(--grey-900);
    margin-right: 5px;
}

.dashboard-list-view-documents .tab1-main-grid-item .badge{
    text-transform: uppercase;
    font-size: x-small;
    display: inline-flex;
    justify-self: center;
    align-items: center;
    border-radius: 20px;
    background: #f5d19a;
    padding: 2px 4px;
    position: relative;
    bottom: -15px;
    right: -36px;
}

.dashboard-list-view-documents .tab1-item2 span:first-child{
    padding: 11.7143px;
    background: var(--primary-color);
    border-radius: var(--border-radius, 15px);
    display: inline-block;
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 1.25px;
    color: #F8FAFC;
}

.dashboard-list-view-documents .tab1-item2 span:last-child{
    font-size: 10px;
}

.dashboard-list-view-documents .tab1-item2-guage{
    background: var(--grey-300);
    height: 11px;
    width: 50%;
    margin-bottom: 5px;
    border-radius: var(--border-radius, 15px);
}

.dashboard-list-view-documents .tab1-item2-guage div{
    background: var(--me-waiting);
    height: 100%;
    width: 0;
    color: var(--me-waiting);
    border-radius: var(--border-radius, 15px);
}
.dashboard-list-view-documents .tab1-item2 small{
    text-transform: capitalize;
    color: var(--me-waiting);
}
.dashboard-list-view-documents .canceled .tab1-item2-guage div{
    background: #F00;
    color: #F00;
}
.dashboard-list-view-documents .tab1-item2.canceled small{
    color: #F00;
}

.dashboard-list-view-documents .tab1-item3{
    flex-direction: column;
    gap: 2px;
    align-items: flex-start;
}

.dashboard-list-view-documents .tab1-item3 p{
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    color: #252626;
}

.dashboard-list-view-documents .tab1-item3 small{
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: 0.25px;
    color: #919394;
    opacity: 0.8;
    display: block;
}

.dashboard-list-view-documents .tab1-item4{
    position: relative;
    justify-content: end;
}

.dashboard-list-view-documents .tab1-item4 span:first-child{
    font-size: 12px;
    color: var(--green-200);
}

.dashboard-list-view-documents .tab1-item4-action a{
    text-decoration: none;
    color: var(--grey-900);
}

.dashboard-list-view-documents .tab1-item4-dropdown{
    background: var(--primary-color);
    width: 24px;
    height: 24px;
    color: var(--white);
    display: flex;
    border-radius: 50%;
    font-size: 10px;
    cursor: pointer;
    justify-content: center;
    align-items: center;
}

.dashboard-list-view-documents .tab1-item4-dropdown .fa,
.dashboard-list-view-documents .tab1-table-heading-btn .fa{
    color: var(--white);
    transition: transform 0.5s;
}
.dashboard-list-view-documents .tab1-dropdown{
    border-radius: var(--border-radius, 15px);
    position: absolute;
    right: 0;
    top: 50px;
    background: var(--white);
    box-shadow: 0 0 30px var(--shadow);
    padding: 10px;
    display: none;
    z-index: 2;
    animation-delay: 3s;
    animation-name: optionsSlideIn;
    animation-duration: 0.5s;
}

.dashboard-list-view-documents .tab1-dropdown a{
    display: block;
    text-decoration: none;
    color: var(--grey-900);
    text-transform: capitalize;
    font-size: 12px;
    padding: 5px;
}

.dashboard-list-view-documents .tab1-dropdown a:last-child{
    color: var(--red);
}

.dashboard-list-view-documents .tab1-pagination{
    width: 90%;
    margin: 0 auto;
    text-align: right;
}

.dashboard-list-view-documents .tab1-pagination ul{
    list-style: none;
    display: inline;
    font-size: 12px;
}

.dashboard-list-view-documents .tab1-pagination ul li{
    display: inline-block;
    padding: 4px 8px;
    background: var(--grey-300);
}

.dashboard-list-view-documents .tab1-pagination ul li a{
    text-decoration: none;
    color: var(--grey-900);
}

.dashboard-list-view-documents .tab1-pagination ul li.active{
    background: none;
}

.dashboard-list-view-documents .tab1-footer{
    padding: 20px 40px;
    margin-top: 50px;
    box-sizing: border-box;
    border-top: 1px solid var(--grey-100);
}

.dashboard-list-view-documents .tab1-footer a{
    text-decoration: none;
    color: var(--grey-400);
    transition: color 0.7s;
    font-size: 10px;
    text-transform: capitalize;
}

.dashboard-list-view-documents .tab1-footer a:not(:last-child){
    margin-right: 10px;
}

.dashboard-list-view-documents .tab1-footer a:hover{
    color: var(--grey-900);
}

/************ create documents styles *************/
.dashboard-list-view-documents .h3-secondary{
    font-size: 25px;
}

.dashboard-list-view-documents .tab1-list-group{
    width: 90%;
    margin: 50px auto;
    position: relative;
    transition: all 500ms ease-in-out;
}

.dashboard-list-view-documents .tab1-list-group div{
    padding: 30px 0;
}

.dashboard-list-view-documents .tab1-list-group h4{
    font-weight: bold;
    text-transform: capitalize;
    color: var(--green-200);
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;;
    font-size: 20px;
}

.dashboard-list-view-documents .tab1-list-group div:not(:last-child){
    border-bottom: 1px solid var(--grey-400);
}

.dashboard-list-view-documents .tab1-list-group ul{
    list-style-type: none;
    -moz-columns: 4;
         columns: 4;
}

.dashboard-list-view-documents .tab1-list-group ul li{
    margin: 5px 0;
    font-size: 14px;
}

.dashboard-list-view-documents .tab1-list-group ul li a{
    color: var(--grey-900);
    text-decoration: none;
    text-transform: capitalize;
}

.dashboard-list-view-documents .tab1-list-group ul li a::first-letter{
    text-transform: uppercase;
}

.dashboard-list-view-documents .tab1-list-group > .loading-overlay{
    display: none;
    position: absolute;
    background-color: #245340c7;
    color: #fff;
    width: 101%;
    height: 100%;
    border-radius: 25px;
    margin-left: -1%;
    justify-content: center;
    align-items: center;
}

.dashboard-list-view-documents .tab1-list-group.searching > .loading-overlay{
    display: flex;
}

@keyframes optionsSlideIn {
    from{
        opacity: 0;
        transform: translateY(-20px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}


/* Delete Document Confirmation Modal styling */
/* Modal Content */
#deleteDocumentConfirmationModal .modal-content {
    background: #FFFFFF;
    border-radius: var(--border-radius, 15px);
    display: flex;
    margin: auto;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 52px;
    gap: 40px;
    width: 548px;
    max-width: 100%;
}
#deleteDocumentConfirmationModal .modal-content > .flex.flex-col {
    align-items: center;
    gap: 27px;
}
#deleteDocumentConfirmationModal .modal-content > .flex.flex-col .title {
    font-family: var(--font-poppins);
    font-style: normal;
    font-weight: bold;
    font-size: 24px;
    line-height: 38px;
    color: #252626;
    flex: none;
    order: 0;
    flex-grow: 0;
}
#deleteDocumentConfirmationModal .modal-content > .flex.flex-col h5 {
    font-family: var(--font-poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
    letter-spacing: 0.15px;
    color: #525454;
}
#deleteDocumentConfirmationModal .modal-content .btn-wrap {
    display: flex;
    justify-content: center;
    gap: 25px;
}
#deleteDocumentConfirmationModal .modal-content button {
    border: none;
    font-family: var(--font-poppins);
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 1.25px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 39px;
    width: 180px;
    height: 48.77px;
}
#deleteDocumentConfirmationModal .modal-content button.close {
    color: #6E7070;
    background: #E3E7E8;
}
#deleteDocumentConfirmationModal .modal-content button#DeleteSelectedDocumentBtn {
    color: #F8FAFC;
    background: #FA1E1E;
}
/* /Delete Document Confirmation  Styling*/

input[type="number"].doc-query-field{
    caret-color: transparent!important;
    outline: none!important;
}

#SignDashboard {
    gap: 40px;
    margin-top: 55px;
}

#SignDashboard .dashlink-wrap {
    gap: 24px;
}

#SignDashboard > .title {
    font-family: var(--font-poppins);
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.15px;
    color: #252626;
}


#SignDashboard .stats-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px;
    gap: 50px;
}
@media screen and (min-width: 600px){
    #SignDashboard .stats-section {
        flex-direction: row;
        align-items: flex-start;
    }

}

#SignDashboard .chart-wrap {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 15px;
    gap: 10px;
    border: 1px solid #EBEDED;
    border-radius: var(--border-radius, 15px);
    flex: 1;
    max-width: 100%;
}
@media screen and (min-width: 600px){

    #SignDashboard .chart-wrap {
        padding: 31px;
        min-height: 462px;
    }
}


#SignDashboard .chart-wrap .chart-max {
    width: 250px;
    max-width: 100%;
}

#SignDashboard .chart-wrap .guage-chart-max {
    width: 250px;
    max-width: 100%;
    position: relative;
}

#SignDashboard .chart-wrap .guage-chart-max > .guage-legend {
    position: absolute;
    top: 100px;
    left: 45px;
    display: flex;
    flex-direction: column;
    justify-items: center;
    align-items: center;
}

#SignDashboard .chart-wrap .guage-chart-max > .guage-legend h6 {
    font-family: var(--font-poppins);
    font-style: normal;
    font-weight: 500;
    font-size: 20.0625px;
    line-height: 25px;
    color: #252626;
}

#SignDashboard .chart-wrap .guage-chart-max > .guage-legend span {
    font-family: var(--font-poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 16.7188px;
    line-height: 25px;
    letter-spacing: 0.125391px;
    color: #6E7070;
}

#SignDashboard .chart-wrap .bar-chart-max {
    display: flex;
    position: relative;
    width: 100%;
    justify-items: center;
    align-items: center;
}

#SignDashboard .chart-wrap .bar-chart-max span {
    font-family: var(--font-poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    text-align: center;
    letter-spacing: 0.5px;
    color: var(--primary-color);
    height: 30px;
}

#SignDashboard .chart-wrap .bar-chart-max span.rotate {
    transform: rotate(-90deg);
}

#SignDashboard .chart-wrap .bar-chart-max > div {
    flex: 1;
}

#SignDashboard .chart-wrap .subtitle {
    font-family: var(--font-poppins);
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    letter-spacing: 0.15px;
    color: #252626;
}

#SignDashboard .chart-wrap .sub-subtitle {
    font-family: var(--font-poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: 0.25px;
    color: #919394;
}


#SignDashboard .chart-wrap .chart-header {
    width: 100%;
    margin-bottom: 45px;
    gap: 15px;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
@media screen and (min-width: 600px) {
    #SignDashboard .chart-wrap .chart-header {
        justify-content: space-between;
        flex-direction: row;
        text-align: left;
    }

}

#SignDashboard .chart-wrap .chart-header select {
    background-color: transparent;
    padding: 14px;
    border: 1px solid #E3E7E8;
    border-radius: var(--border-radius, 15px);
    outline: none !important;
}

#SignDashboard .chart-wrap .doughnut-chart-legend {
    margin-top: 47px;
    width: 100%;
    gap: 15px;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
@media screen and (min-width: 600px){
    #SignDashboard .chart-wrap .doughnut-chart-legend {
        justify-content: space-between;
        flex-direction: row;
    }

}

#SignDashboard .chart-wrap .doughnut-chart-legend > .flex {
    gap: 5px;
}

#SignDashboard .chart-wrap .doughnut-chart-legend > .flex > h5 {
    font-family: var(--font-poppins);
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0.15px;
    color: #252626;
}

#SignDashboard .chart-wrap .doughnut-chart-legend > .flex > span {
    font-family: var(--font-poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: 0.25px;
    color: #525454;
}

#SignDashboard .chart-wrap .doughnut-chart-legend span.legend-color {
    display: inline-block;
    width: 13.5px;
    height: 13.5px;
    border-radius: 50%;
}

#SignDashboard .stats-tag {
    align-items: flex-start;
}

.sign-process .dashlink {
    padding: 20px 38px;
}

.sign-process .dashlink p {
    text-align: center;
}

.sign-add-signer > * {
    width: 80%;
    margin: 0 auto;
}

.sign-add-signer .dashlink {
    cursor: pointer;
}

.sign-add-signer .dashlink:hover,
.sign-add-signer .dashlink.active {
    border: 1px solid var(--primary-color);
}

.sign-add-signer .dashlink-wrap {
    margin: 34px auto 0;
    gap: 4rem;
}

.sign-add-signer .dashlink-wrap ~ .add-signer-heading > .subtitle ~ p {
    text-align: left;
}

.sign-step-wrap .sign-step {
    align-items: center;
}

.sign-step-wrap .sign-step span {
    font-size: 14px;
    letter-spacing: 0.5px;
    color: #6E7070;
    line-height: 25px;
}

.sign-step-wrap .sign-step.current span {
    color: #252626;
}

.sign #RecipientsHolder,
.sign #SignersHolder {
    margin-top: 43px;
    margin-bottom: 30px;
    gap: 23px
}

.sign #RecipientsHolder .recipient-item,
.sign #SignersHolder .signer-item {
    display: flex;
    align-items: center;
    padding: 15px;
    gap: 10px;
    width: 719px;
    height: 90px;
    background: #F8FAFC;
    border-radius: 10px;
}
.sign #SignersHolder .signer-item[draggable="true"] {
    cursor: pointer;
    border: 1px dashed #ccc;
}
.signerWrap #AddNewSignerForm {
    padding-top: 1rem;
}

.sign #RecipientsHolder .recipient-item.over,
.sign #SignersHolder .signer-item.over {
    border: 2px dotted #666;
}

.sign #RecipientsHolder .recipient-item .recipient-details-wrap,
.sign #SignersHolder .signer-item .signer-details-wrap {
    display: flex;
    align-items: center;
    padding: 15px;
    gap: 10px;
}
.sign #SignersHolder .signer-item[draggable="true"] .signer-details-wrap{
    padding-left: 0;
}
.sign #SignersHolder .signer-item:not([draggable="true"]) .signer-details-wrap .signer-drag-icon{
    display: none;
}
.sign #SignersHolder .signer-item[draggable="true"] .signer-details-wrap .signer-drag-icon{
    filter: brightness(0.5);
}

.sign #RecipientsHolder .recipient-item .recipient-details-wrap img,
.sign #SignersHolder .signer-item .signer-details-wrap img:not(.signer-drag-icon) {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 11.22px;
    width: 54px;
    height: 54px;
    border-radius: 48.2447px;
}

.sign #RecipientsHolder .recipient-item .recipient-details-wrap .recipient-name-email,
.sign #SignersHolder .signer-item .signer-details-wrap .signer-name-email {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.sign #RecipientsHolder .recipient-item .recipient-details-wrap .recipient-name-email .recipient-name,
.sign #SignersHolder .signer-item .signer-details-wrap .signer-name-email .signer-name {
    font-family: var(--font-poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 30px;
    letter-spacing: 0.5px;
    color: #252626;
}

.sign #RecipientsHolder .recipient-item .recipient-details-wrap .recipient-name-email .recipient-email,
.sign #SignersHolder .signer-item .signer-details-wrap .signer-name-email .signer-email {
    font-family: var(--font-poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 1.25px;
    color: #525454;
}

.sign #AddNewRecipientForm,
.sign #AddNewSignerForm {
    gap: 28px;
    background: aliceblue;
    padding: 40px;
    border-radius: 10px;
    margin-top: 10px;
    max-width: 715px;
}

.sign #AddNewRecipientForm.hidden,
.sign #AddNewSignerForm.hidden {
    display: none;
}

.sign #AddNewRecipientForm .form-btns,
.sign #AddNewRecipientForm .form-group,
.sign #AddNewSignerForm .form-btns,
.sign #AddNewSignerForm .form-group {
    max-width: 80%;
}

.sign #AddNewRecipientForm .form-group,
.sign #AddNewSignerForm .form-group {
    justify-content: space-between;
}

.sign #AddNewRecipientForm .form-group label,
.sign #AddNewSignerForm .form-group label {
    font-family: var(--font-poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 30px;
    letter-spacing: 0.5px;
    color: #252626;
}

.sign #AddNewRecipientForm .form-group input,
.sign #AddNewSignerForm .form-group input {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 12px;
    gap: 10px;
    width: 100%;
    max-width: 400px;
    height: 54px;
    border: 1px solid #D4D8D9;
    border-radius: var(--border-radius, 15px);
    outline: none;
}

.sign #AddNewRecipientForm .form-btns,
.sign #AddNewSignerForm .form-btns {
    justify-content: flex-end;
    gap: 8px;
}

.sign #AddNewRecipientForm .form-btns button,
.sign #AddNewRecipientForm .form-btns a,
.sign #AddNewSignerForm .form-btns button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 13.39px;
    gap: 8.19px;
    width: 168px;
    height: 44.59px;
    background: #E3E7E8;
    border-radius: 39px;
    border: none !important;
    font-family: var(--font-poppins);
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 1.25px;
    text-transform: uppercase;
    color: #6E7070;
    cursor: pointer;
}

.sign #AddNewRecipientForm .form-btns button[type="submit"],
.sign #AddNewSignerForm .form-btns button[type="submit"] {
    background: var(--primary-color);
    color: #FFF;
}

.sign #AddRecipientLinkWrap,
.sign #AddSignerOrContactLinkWrap {
    gap: 10px;
}

.sign #AddRecipientLinkWrap > *:not(span),
.sign #AddSignerOrContactLinkWrap > *:not(span) {
    cursor: pointer;
}

.sign #AddRecipientLinkWrap span,
.sign #AddSignerOrContactLinkWrap span,
.sign #AddSignerOrContactLinkWrap .show-choose-from-contact,
.sign #AddSignerOrContactLinkWrap .show-new-signer-form {
    font-family: var(--font-poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 30px;
    letter-spacing: 0.5px;
    color: #525454;
    gap: 10px;
    align-items: center;
}

.sign #AddSignerOrContactLinkWrap .show-choose-from-contact {
    color: var(--primary-color);
}

.sign #AddSetOrderingWrap{
    padding: 30px 0;
    gap: 20px;
}
.sign #AddSetOrderingWrap.hidden{
    display: none;
}


/* Choose Signer from Contact List  Modal styling */
/* Modal Content */
#chooseFromContactModal .modal-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 50px 35px;
    gap: 18px;
    width: 425px;
    max-width: 100%;
    background: #FFFFFF;
    border-radius: var(--border-radius, 15px);
    margin: auto;
}

#chooseFromContactModal .modal-content h5 {
    font-family: var(--font-poppins);
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0.15px;
    color: #252626;
}

#chooseFromContactModal .modal-content .search-input-wrap {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 13px 10px;
    gap: 15px;
    width: 355px;
    background: #F8FAFC;
    border: 1px solid #E3E7E8;
    border-radius: var(--border-radius, 15px);
    align-items: center;
}

#chooseFromContactModal .modal-content .search-input-wrap > svg {
    width: 15px;
    height: 15px;
}

#chooseFromContactModal .modal-content .search-input-wrap > input {
    flex: 1;
    border: none !important;
    outline: none !important;
    background-color: transparent;
    font-family: var(--font-poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: 0.25px;
    color: #6E7070;
}

#chooseFromContactModal .modal-content button.close {
    color: #6E7070;
    background: #E3E7E8;
}

#chooseFromContactModal .modal-content button#DeleteSelectedDocumentBtn {
    color: #F8FAFC;
    background: #FA1E1E;
}

/* /Choose Signer from Contact List Modal  Styling*/

/* Choose Signer from Contact List */
#ChooseFromContactList {
    width: 100%;
    gap: 25px;
}

#ChooseFromContactList .contact-list-item-view {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 0px;
    gap: 11px;
    cursor: pointer;
}

#ChooseFromContactList .contact-list-item-view img {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 40.2039px;
}

#ChooseFromContactList .contact-list-item-view .dash-contact-name {
    font-family: var(--font-poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 30px;
    letter-spacing: 0.5px;
    color: #252626;
}

/* /Choose Signer from Contact List */

.sign .sign-cc-info-hint{
    display: inline-block;
    margin-right: 10px;
    position: relative;
}

.sign #AddRecipientLinkWrap .sign-cc-info-hint > span.hint{
    display: none;
    position: absolute;
    bottom: 28px;
    left: 0;
    background: #FFFFFF;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.11);
    border-radius: 10px;
    flex-direction: row;
    align-items: center;
    padding: 16px 15px;
    gap: 10px;
    font-style: normal;
    font-weight: 400;
    font-size: 11px;
    line-height: 16px;
    letter-spacing: 0.5px;
    color: #7B7C81;
    width: 250px;
    transition-property: display;
    transition-duration: 2s;
    transition-timing-function: cubic-bezier(0.18, 0.89, 0.35, 1.15);
}
.sign #AddRecipientLinkWrap .sign-cc-info-hint:hover > span.hint{
    display: flex;
}
.sign:not(.review) #RecipientsHolder,
/*.sign:not(.review).i #SignersHolder,*/
.sign:not(.review) #AddNewRecipientForm,
.sign:not(.review) #AddNewRecipientForm.hidden,
.sign:not(.review).i #AddNewSignerForm,
.sign:not(.review) #AddRecipientLinkWrap,
.sign:not(.review).i #AddSignerOrContactLinkWrap {
    display: none !important;
}

.sign.i #RecipientsHolder,
.sign.i #AddNewRecipientForm:not(.hidden),
.sign.i #AddRecipientLinkWrap {
    display: flex !important;
}

.sign #ProgressButtonsWrap {
    display: flex;
    justify-content: flex-end;
    gap: 29px;
    align-items: center;
    margin-top: 50px;
}

.sign.sign-process.review {
    gap: 120px;
}
.sign.sign-process.review.tab-content-wrap{
    min-height: 80%;
}
#IntegrationsSectionWrap{
    border: 1.35776px solid #D4D8D9;
    border-radius: 13.5776px;
    max-height: 300px;
    padding: 30px;
    margin-top: 32px;
}
.sign.sign-process.review .no-integrations-wrap{
    padding-top: 30px;
    padding-bottom: 30px;
}
.sign.sign-process.review .no-integrations-wrap h5{
    margin-top: 25px;
    font-family: var(--font-poppins);
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0.15px;
    color: #525454;
}
@media screen and (min-width: 600px) {
    .sign.sign-process.review {
        max-width: 80%;
        margin: 0 auto;
    }
}

.sign.sign-process.review .review-details > h5.subtitle {
    margin-top: 34px;
    font-family: var(--font-poppins);
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0.15px;
    color: #252626;
    margin-bottom: 60px;
}

.sign.sign-process.review label {
    font-family: var(--font-poppins);
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.15px;
    color: #252626;
}
.sign.sign-process.review small {
    font-size: x-small;
    color: #252626;
}

.sign.sign-process.review .custom-input-group,
.sign.sign-process.review textarea,
.sign.sign-process.review input:not([type="checkbox"]) {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 14px;
    gap: 10px;
    width: 100%;
    height: 58px;
    border: 1px solid #919394;
    border-radius: var(--border-radius, 15px);
    outline: none;
    font-family: var(--font-poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 30px;
    letter-spacing: 0.5px;
    color: #525454;
}

.sign.sign-process.review textarea {
    height: unset;
}

.sign.sign-process.review .custom-input-group input:not([type="checkbox"]),
.sign.sign-process.review .custom-input-group select {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 0;
    gap: 10px;
    height: 30px;
    border: none !important;
}

.sign.sign-process.review .custom-input-group input:not([type="checkbox"]),
.sign.sign-process.review .custom-input-group select {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 0;
    gap: 10px;
    height: 30px;
    border: none !important;
    outline: none;
}

.sign.sign-process.review .custom-input-group select {
    gap: 10px;
    background: transparent;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sign.sign-process.review .custom-input-group #remind_after {
    border-right: 1px solid #000!important;
    border-radius: 0;
}

.sign.sign-process.review > .review-details h5.subtitle {
    font-family: var(--font-poppins);
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
    text-align: left;
    letter-spacing: 0.15px;
    color: #252626;
}

.sign.sign-process.review > .review-details .email-personalization {
    gap: 25px;
}
.sign.sign-process.review > .review-details #SetReminderMessageSection {
    transition-property: display;
    transition-duration: 2s;
    transition-timing-function: cubic-bezier(0.18, 0.89, 0.35, 1.15);
}
.sign.sign-process.review > .review-details #SetReminderMessageSection.hidden {
    display: none;
}

.sign.sign-process.review > .review-details .toggle-section-wrap {
    gap: 70px;
    align-items: center;
}

.sign.sign-process.review > .review-details .toggle-section-wrap > label,
.sign.sign-process.review > .review-details .toggle-section-wrap > .flex > span:first-of-type {
    font-family: var(--font-poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 0.5px;
    color: #252626;
    margin: 0 !important;
}

.sign.sign-process.review > .review-details .toggle-section-wrap > .flex > span:last-child {
    font-family: var(--font-poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 1.25px;
    color: #525454;
}

.sign.sign-process.review > .review-details > .signers p {
    text-align: left;
}

.sign.sign-process.review .reminder-configs .reminder_recurrency span.hint {
    font-family: var(--font-poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 1.25px;
    color: #6E7070;
}

.sign.sign-process.review .reminder-configs .form-group.flex {
    gap: 17px;
    margin-top: 40px;
}

.sign.sign-process.review .reminder-configs .form-group.flex span.subtitle {
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.15px;
    color: #252626;
    margin-bottom: 10px;
}

.sign.sign-process.review > #ProgressButtonsWrap {
    width: 100%;
}

#SignDocumentSetView,
#SendingForReviewLoadingView {
    position: fixed;
    width: 100vw;
    height: 100vh;
    min-width: 100vw;
    min-height: 100vh;
    top: 0;
    left: 0;
    z-index: 999;
    background: #FFFFFF;
    display: none;
    justify-content: center;
    align-items: center;
}

#SignDocumentSetView .content.flex,
#SignDocumentSetView .content > .flex,
#SendingForReviewLoadingView .loading-content.flex {
    gap: 34px;
    justify-content: center;
    align-items: center;
    text-align:center;
}

#SendingForReviewLoadingView .loading-content > img {
    width: 58px;
}

#SignDocumentSetView .content > .flex h5,
#SendingForReviewLoadingView .loading-content > .flex h4 {
    font-family: var(--font-poppins);
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    color: var(--primary-color-heading);
}


#SendingForReviewLoadingView .loading-content > .flex h5 {
    font-family: var(--font-poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 26px;
    letter-spacing: 0.15px;
    color: #525454;
}

#SendingForReviewLoadingView.loading{
    display: flex;
}
.with-validator-wrap>*{
    width: 100%!important;
}
.validate{
    color: red!important;
    font-size: small;
    display: block;
}
#SignDocumentSetView{
    display: flex;
    overflow-y: auto;
    padding-top:30px;
    padding-bottom:30px;
}
#SignDocumentSetView .content.flex{
    max-width: 520px;
    gap: unset;
    padding-top: 40px;
}
#SignDocumentSetView .content > .flex{
    gap: unset;
}
#SignDocumentSetView .content > .flex h4{
    color: var(--primary-color-heading);
    margin-bottom: 18px;
}
#SignDocumentSetView .content > .flex p{
    font-family: var(--font-poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 30px;
    text-align: center;
    letter-spacing: 0.5px;
    color: #525454;
    margin-bottom: 50px;
}
#SignDocumentSetView .content > .flex p > a{
    color: var(--primary-color);
}
#SignDocumentSetView .content > .flex > a.btn{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 16.3866px;
    font-family: var(--font-poppins);
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 1.25px;
    text-transform: uppercase;
    width: 279px;
    height: 57px;
}
.sign.sign-process .integrations-grid{
    display: grid;
    grid-template-columns: auto;
    gap: 30px;
    width: -moz-fit-content;
    width: fit-content;
    height: 100%;
    overflow: auto;
}
.sign.sign-process .integrations-grid .integration-item-wrap{
    display: flex;
    flex-direction: row;
    gap: 8px;
    padding: 21px 20px;
    border: 1.30932px solid #E3E7E8;
    border-radius: 13.0932px;
}
.sign.sign-process .integrations-grid .integration-item-wrap .item-logo-wrap{
    max-width: 45px;
    flex: 0;
}
.sign.sign-process .integrations-grid .integration-item-wrap .item-content-wrap,
.sign.sign-process .integrations-grid .integration-item-wrap .item-content-wrap > div{
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.sign.sign-process .integrations-grid .integration-item-wrap .item-content-wrap > div h6{
    font-family: var(--font-poppins);
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0.15px;
    color: #252626;
    display: flex;
    align-items: center;
    gap: 10px;
}
.sign.sign-process .integrations-grid .integration-item-wrap .item-content-wrap > div h6 .badge{
    display: inline-block;
    padding: 6px 10px;
    background: rgba(22, 158, 150, 0.2);
    border-radius: 5px;
    font-family: var(--font-poppins);
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.15px;
    color: var(--primary-color);
}

.sign.sign-process .integrations-grid .integration-item-wrap .item-content-wrap > div p{
    font-family: var(--font-poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 1.25px;
    color: #525454;
    max-width: 282px;
}
@media screen and (min-width: 600px) {

    .sign.sign-process .integrations-grid{
        grid-template-columns: auto auto auto;
    }
}

#Leave-A-Review{
    padding-top: 105px;
    justify-content: center;
    align-items: center;
}
#Leave-A-Review .upgrade-notice-wrap{
    max-width: 548px;
    justify-content: center;
    align-items: center;
}
#Leave-A-Review .upgrade-notice-wrap img{
    max-width: 360px;
    height: auto;
    margin-bottom: -22px;
}
#Leave-A-Review .upgrade-notice-wrap .flex.flex-col{
    text-align: center;
    gap: 18px;
    margin-bottom: 48px;
}
#Leave-A-Review .upgrade-notice-wrap .flex.flex-col h3{
    font-family: var(--font-poppins);
    font-style: normal;
    font-weight: 500;
    font-size: 34px;
    line-height: 40px;
    text-align: center;
    letter-spacing: 0.25px;
    color: var(--primary-color-heading);
}
#Leave-A-Review .upgrade-notice-wrap .flex.flex-col p{
    font-family: var(--font-poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    text-align: center;
    letter-spacing: 0.5px;
    color: #252626;
}

#Leave-A-Review{
    padding-top: 34px;
    padding-bottom: 50px;
    padding-left: 0;
    justify-content: center;
    align-items: flex-start;
    gap:110px;
    font-weight: 400;
    font-size: 14px;
    line-height: 26px;
    letter-spacing: 0.5px;
    color: #525454;
}
@media screen and (min-width: 600px) {
    #Leave-A-Review{
        padding-left: 61px;
    }

}
#Leave-A-Review > .flex.flex-col:first-child{
    gap:17px;
}
#Leave-A-Review h4,
#Leave-A-Review h5{
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 26px;
    color: #252626;
}
#Leave-A-Review h5{
    font-size: 16px;
}
#Leave-A-Review li{
    margin-left: 12px;
    line-height: 35px;
    word-wrap: anywhere;
}
#Leave-A-Review li.flex-col{
    gap:17px;
}

#Leave-A-Review li.flex-col img{
    width: 626px;
    max-width: 100%;
    flex: none;
}

#Zapier-Integrations{
    padding-top: 34px;
    padding-bottom: 50px;
    padding-left: 0;
    justify-content: center;
    align-items: flex-start;
    gap:110px;
    font-weight: 400;
    font-size: 14px;
    line-height: 26px;
    letter-spacing: 0.5px;
    color: #525454;
}
@media screen and (min-width: 600px) {
    #Zapier-Integrations{
        padding-left: 61px;
    }

}
#Zapier-Integrations > .flex.flex-col:first-child{
    gap:17px;
}
#Zapier-Integrations h4,
#Zapier-Integrations h5{
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 26px;
    color: #252626;
}
#Zapier-Integrations h5{
    font-size: 16px;
}
#Zapier-Integrations li{
    margin-left: 12px;
    line-height: 35px;
    word-wrap: anywhere;
}
#Zapier-Integrations li.flex-col{
    gap:17px;
}

#Zapier-Integrations li.flex-col img{
    width: 45%;
    max-width: 100%;
    flex: none;
}

/****** layout styles *******/

/* Animations */

@keyframes anim-slide-down {
    from {
        margin-top: -450px;
    }
    to {
        margin-top: 0;
    }
}

@keyframes anim-slide-up {
    from {
        margin-bottom: -450px;
    }
    to {
        margin-bottom: 0;
    }
}

@keyframes anim-slide-left {
    from {
        margin-right: -450px;
    }
    to {
        margin-right: 0;
    }
}

@keyframes anim-slide-right {
    from {
        margin-left: -450px;
    }
    to {
        margin-left: 0;
    }
}

/* / Animations */

* {
    padding: 0;
    margin: 0;
    font-family: var(--font-poppins);
}

body {
    width: 100vw;
    height: 100vh;
    max-width: 100vw;
    overflow-x: hidden;
    overflow-y: auto;
}

a {
    cursor: pointer;
    text-decoration: none;
}

a.toggle-context {
    display: flex;
    min-width: 24px;
    justify-content: center;
}

body .main-container {
    width: 100%;
    /*height: 100%;*/
    position: relative;
}

body .main-container > main {
    box-sizing: border-box;
    width: 100%;
    padding: 0 15px 15px 100px;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

body .main-container > main .main-section {
    padding: 0 30px;
    flex: 1;
}

body .main-container > main .main-section.no-padding {
    padding: 0;
}

/* Sidebar Menu */
aside#DashboardSidebar {
    height: 100vh;
    min-height: 100%;
    background-color: var(--sidebar-bg-color);
    color: var(--white);
    position: fixed;
    width: 100px;
    z-index: 999; /*Make sure menu is place on top other elements within the page*/
    padding-top: 62px;
    padding-bottom: 62px;
    transition: all .4s ease;
    white-space: nowrap;
}

aside#DashboardSidebar.opened {
    width: 320px;
}

aside#DashboardSidebar > header {
    padding: 0 24px;
    height: 40px;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
}

aside#DashboardSidebar:not(.opened) > header {
    justify-content: center;
}

aside#DashboardSidebar > header .menu-toggle {
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    position: relative;
    transition: all .4s ease;
}

aside#DashboardSidebar.opened > header .menu-toggle {
    transform: rotate(-180deg);
}

aside#DashboardSidebar .sidebar-link {
    display: flex;
    align-items: center;

    font-family: var(--font-poppins);
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.15px;
    color: #919394;
    animation-name: asideNavSlideIn;
    animation-duration: 0.5s;
    gap: 20px;
}

aside#DashboardSidebar:not(.opened).collapsed .sidebar-link {
    justify-content: center;
}

aside#DashboardSidebar .sidebar-link:hover,
aside#DashboardSidebar .sidebar-link.active {
    color: var(--white);
}

/* Do not expand sidebar dropdown if sidebar is collapsed*/
aside#DashboardSidebar:not(.opened).collapsed > .nav-container > nav > details > div {
    display: none;
}

aside#DashboardSidebar > footer {
    background: var(--sidebar-active-itm-bg);
    border-radius: var(--border-radius, 15px);
    margin: 0 13px 62px 14px;
    padding: 10px;
    position: relative;
}

aside#DashboardSidebar > footer form {
    display: none;
    flex-direction: column;
    max-width: 98vw;
    max-height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    gap: 21px;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: 0.25px;
    color: #D4D8D9;
    font-style: normal;
    font-weight: 400;
    box-sizing: border-box;
    background: #192424;
    border-radius: var(--border-radius, 15px);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    z-index: 3;
    animation-name: slideIn;
    animation-duration: 0.5s;
    padding: 25px;
}

aside#DashboardSidebar > footer form.show {
    position: absolute;
    bottom: 100%;
    left: 0;
    display: flex;
}

aside#DashboardSidebar > footer form.show .team-logo {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    padding: 1px;
    border: 1px solid var(--primary-color);
}

aside#DashboardSidebar > footer form.show label {
    cursor: pointer;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.15px;
}

aside#DashboardSidebar > footer form input {
    display: none;
}

aside#DashboardSidebar > footer .team-logo {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    padding: 1px;
    border: 1px solid var(--primary-color);
}

aside#DashboardSidebar > footer .team-name {
    font-family: var(--font-poppins);
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.15px;
    color: #C8CBCC;
}

aside#DashboardSidebar .nav-container::-webkit-scrollbar {
    width: 12px; /* width of the entire scrollbar */
}

aside#DashboardSidebar .nav-container::-webkit-scrollbar-track {
    background: var(--sidebar-active-itm-bg); /* color of the tracking area */
}

aside#DashboardSidebar .nav-container::-webkit-scrollbar-thumb {
    background-color: var(--sidebar-bg-color); /* color of the scroll thumb */
    border-radius: 20px; /* roundness of the scroll thumb */
    border: 3px solid var(--sidebar-active-itm-bg); /* creates padding around scroll thumb */
}

aside#DashboardSidebar:not(.collapsed) #DashboardSidebarCollapseSidebar,
aside#DashboardSidebar:not(.opened).collapsed .hide-on-collapse {
    display: none !important;
    animation-name: asideNavSlideIn;
    animation-duration: 0.5s;
}

/* \Sidebar Menu */

/* Main Header */
.dashboard-search-wrap {
    background: #F8FAFC;
    border: 1px solid #D4D8D9;
    box-sizing: border-box;
    border-radius: var(--border-radius, 15px);
    color: #000;
    padding: 8px 12px;
    gap: 10px;
    min-width: 538px;
}

.dashboard-search-wrap > input {
    background: #F8FAFC;
    border: none;
    outline: none;
    font-family: var(--font-poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 0.5px;
    color: #252626;
}

.notification-profile {
    align-items: center;
    gap: 50px;
}


.header-container {
    position: relative;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 15px 16px 15px;

    border-bottom: 1px solid #D4D8D9;
    box-sizing: border-box;
}

@media screen and (max-width: 600px) {
    .header-container h2,
    .header-container .dashboard-search-wrap {
        display: none;
    }

    .header-container .flex.notification-profile {
        justify-content: right;
        width: 100%;
    }

    .dashlink-wrap {
        flex-direction: column;
        align-items: center;
    }
}

.header-first-banner {
    margin-left: -15px;
    text-align: center;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--frosted-mint);
    position: relative;
}

.header-first-banner p {
    color: var(--grey-500);
    display: flex;
    align-items: center;
    gap: 30px;
    font-size: 14px;
}

.header-first-banner p a {
    color: var(--green-200);
    text-decoration: none;
}

.header-first-banner-btn {
    text-decoration: none;
    background: var(--primary-color);
    padding: 10px 20px;
    border-radius: 20px;
}

.header-first-banner-cls {
    position: absolute;
    right: 20px;
    font-size: 25px;
    cursor: pointer;
    color: #024532;
}

a.header-first-banner-btn.header-first-banner-btn {
    color: white;
    text-transform: uppercase;
}

.header-first-banner p::first-letter {
    text-transform: capitalize;
}

.header-container-child {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.header-container-child span {
    position: relative;
    text-transform: uppercase;
    margin-right: 5px;
    color: var(--grey-500);
    font-weight: bold;
}

.header-img-container {
    width: 40px;
    height: 40px;
    border-radius: var(--border-radius, 15px);
    overflow: hidden;
    display: inline-block;
}

.header-img-container img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}

header #MainHeaderProfileDropdownToggle {
    position: relative;
}

/********************************/
/* Main Header Profile Dropdown */
/********************************/
#MainHeaderProfileDropdown {
    position: absolute;
    width: 250px;
    right: 5%;
    top: 100%;
    margin-left: auto;
    margin-right: auto;
    font-family: var(--font-poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 0.25px;
    color: #D4D8D9;
    box-sizing: border-box;
    background: #0F1515;
    border-radius: var(--border-radius, 15px);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    display: none;
    z-index: 3;
    animation-name: slideIn;
    animation-duration: 0.5s;
    flex-direction: column;
    padding: 28px 20px;
    height: -moz-fit-content;
    height: fit-content;
    gap: 10px;
}

header #MainHeaderProfileDropdownToggle:hover #MainHeaderProfileDropdown.visible {
    display: flex !important;
}

#MainHeaderProfileDropdown > div:first-child {
    display: flex !important;
    gap: 10px;
    margin-bottom: 26px;
    max-width: 100%;
    word-wrap: anywhere;
}

#MainHeaderProfileDropdown > div:first-child > img {
    width: 45px;
    height: 45px;
    border-radius: 40.2039px;
}

.header-container-child #MainHeaderProfileDropdown.header-dropdowm-list span,
#MainHeaderProfileDropdown.header-dropdowm-list a:last-child,
#MainHeaderProfileDropdown.header-dropdowm-list span {
    margin: 0;
}

#MainHeaderProfileDropdown > div:first-child .name {
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: 0.1px;
    color: #EBEDED;
}

#MainHeaderProfileDropdown > div:first-child .email {
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.25px;
    color: #919394;
    text-transform: lowercase;
    overflow-wrap: anywhere;
}

#MainHeaderProfileDropdown a {
    display: flex;
    gap: 20px;
    font-family: var(--font-poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: 0.25px;
    color: #D4D8D9;
    text-transform: capitalize;
}

#MainHeaderProfileDropdown a:hover {
    color: #FFF;
}

.header-dropdowm-list a:last-child {
    margin-top: 10px
}

.header-dropdowm-list span {
    margin-left: 10px;
}

/* Main Header */

/**************************/


header h2 {
    color: var(--grey-900);
    font-size: 20px;
    text-transform: capitalize;
}

aside .dropdown-container {
    background: var(--white);
    width: 90%;
    margin: 20px auto;
    padding: 10px;
    box-sizing: border-box;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

aside .dropdown-container-child {
    position: relative;
}

aside .dropdown-container img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    -o-object-fit: cover;
       object-fit: cover;
}

aside .dropdown-container .img-capt {
    position: relative;
    top: -10px;
    margin-left: 10px;
    font-size: 14px;
    font-weight: bold;
    color: var(--grey-500);
}

aside .dropdown-container .down-arrow {
    position: absolute;
    right: 0;
    color: var(--grey-500);
    top: 10px;
}

.aside-dropdowm-list {
    position: absolute;
    border-radius: 20px;
    top: 200px;
    width: 90%;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    font-size: 12px;
    box-sizing: border-box;
    background: var(--white);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    display: none;
    animation-name: slideIn;
    animation-duration: 0.5s;
}

.aside-dropdowm-list.visible,
.header-dropdowm-list.visible {
    display: block;
}

.aside-dropdowm-list a {
    display: block;
    padding: 20px;
    color: var(--grey-500);
    text-decoration: none;
    transition: color 0.7s;
    text-transform: capitalize;
}

.aside-dropdowm-list a:hover {
    color: var(--green-200);
}

.aside-dropdowm-list img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    -o-object-fit: cover;
       object-fit: cover;
}

.aside-dropdowm-list span {
    position: relative;
    top: -8px;
    margin-left: 10px;
}

aside .nav-container {
    overflow: auto;
    height: calc(100vh - 240px);
}

aside nav {
    margin: 20px auto;
    box-sizing: border-box;
    width: 80%;
    font-size: 14px;
}

aside nav details {
    display: block;
    text-decoration: none;
    color: var(--grey-500);
    text-transform: capitalize;
    transition: color 0.7s;
}

aside nav details div {
    margin: 20px 0 20px 25px;
    animation-name: asideNavSlideIn;
    animation-duration: 0.5s;
    border-left: 1px solid rgba(111, 121, 121, 0.29);
}

details summary {
    list-style: none;
    padding: 15px;
    cursor: pointer;
    transition: color 0.7s;
}


aside nav a {
    display: block;
    padding: 20px 15px;
    text-decoration: none;
    color: var(--grey-500);
    text-transform: capitalize;
    transition: color 0.7s;
}

aside nav details div a {
    padding: 15px;
}

.sign-step-wrap {
    width: 80%;
    margin: 0 auto;
    display: flex;
    padding-top: 15px;
    padding-bottom: 16px;
    gap: 15px;
    flex-direction: column;
}

@media screen and (min-width: 600px) {
    .sign-step-wrap {
        flex-direction: row;
        gap: 85px;
    }
}

.sign-step {
    display: flex;
    gap: 10px;
}

/********** animations *********/
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes asideNavSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.v2-dashboard-content-area > .greetings {
    font-family: var(--font-poppins);
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 30px;
    color: #252626;
    margin-top: 32px;
    margin-bottom: 98px;
}


[data-active=""] > .recentWorkflow,
[data-active=""] > .recentRequests,
[data-active="recentRequests"] > .recentWorkflow,
[data-active="recentWorkflow"] > .recentRequests {
    display: none !important;
}

[data-active="recentWorkflow"] > .recentWorkflow,
[data-active="recentRequests"] > .recentRequests {
    display: block;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.recentWorkflow .workflow-status {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 13px;
    position: relative;
    border-radius: 24px;
    padding: 6.074px 18.222px 6.074px 15.185px;
    font-size: 12px;
    line-height: 18px;
    width: -moz-fit-content;
    width: fit-content;
    letter-spacing: 1.25px;
}

.recentWorkflow .draft {
    background: rgb(242, 244, 247);
    color: rgb(52, 64, 84);
}

.recentWorkflow .draft .dot {
    background: rgb(52, 64, 84);
}

.recentWorkflow .published {
    background: #F4F3FF;
    color: #7A5AF8;
}

.recentWorkflow .published .dot {
    background: #7A5AF8;
}

/* V2 Folder Styling*/
#FoldersListingPageHeader {
    margin-top: 22px;
    margin-bottom: 80px;
    align-items: center;
}

#FoldersListingPageHeader h4 {

    font-family: var(--font-poppins);
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 30px;
    color: #252626;
}

#FoldersListingPageHeader button {
    justify-content: center;
    align-items: center;
    padding: 13.39px;
    background: var(--primary-color);
    border-radius: 39px;
    font-family: var(--font-poppins);
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 1.25px;
    text-transform: uppercase;
    color: #F8FAFC;
    border: none;
    cursor: pointer;
}

.folder-grid-item-view {
    display: flex;
    flex-direction: column;
    max-width: 180px
}

.folder-grid-item-view .dash-folder-icon-wrap {
    color: var(--primary-color-heading);
}

.folder-grid-item-view:hover .dash-folder-icon-wrap {
    color: var(--primary-color);
}

#FoldersListingPage {
    gap: 80px;
    flex-wrap: wrap;
}

.folder-grid-item-view {
    align-items: center;
    text-align: center;
}

.folder-grid-item-view .dash-folder-name {
    font-family: var(--font-poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    text-align: center;
    letter-spacing: 0.5px;
    color: #525454;
}

/* Create a Folder Modal styling */
/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 9999; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0, 0, 0); /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}

section.folder-page {
    display: flex;
    flex-direction: column;
    gap: 62px;
    margin-top: 37px;
}

section.folder-page a.flex:not(.documents-list-name) {
    align-items: center;
    gap: 17px;
}

section.folder-page a.flex span {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 0.5px;
    color: #525454;
}

section.folder-page > .flex > h5 {
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0.15px;
    color: #252626;
}

/* Modal Content */
#createFolderModal .modal-content {
    background: #FFFFFF;
    border-radius: var(--border-radius, 15px);
    margin: auto;
    display: flex;
    flex-direction: column;
    padding: 50px 40px;
    gap: 34px;
    width: 621px;
    max-width: 100%;
}

#createFolderModal .modal-content > .flex.justify-between {
    align-items: center;
}

#createFolderModal .modal-content .title {
    font-family: var(--font-poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 0.5px;
    color: #252626;
}

/* The Close Button */
#createFolderModal .modal-content span.close {
    color: #525454;
}

#createFolderModal .modal-content span.close:hover,
#createFolderModal .modal-content span.close:focus {
    color: #000;
    cursor: pointer;
}

#createFolderModal .modal-content input {
    padding: 14px;
    font-family: var(--font-poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 0.5px;
    color: #252626;
    border: 1px solid var(--primary-color);
    outline: none;
    border-radius: var(--border-radius, 15px);
    display: block;
    width: 100%;
}

#createFolderModal .modal-content input::-moz-placeholder {
    color: #525454;
}

#createFolderModal .modal-content input::placeholder {
    color: #525454;
}

#createFolderModal .modal-content small#NewFolderNameError {
    color: red;
    font-size: 10px;
}

#createFolderModal .modal-content .btn-wrap {
    display: flex;
    justify-content: flex-end;
    gap: 21px;
}

#createFolderModal .modal-content button {
    border: none;
    font-family: var(--font-poppins);
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 1.25px;
    text-transform: uppercase;
    cursor: pointer;
}

#createFolderModal .modal-content button.close {
    color: #6E7070;
    padding: 16.3866px;
    width: 166px;
    height: 56.77px;
    background: #E3E7E8;
    border-radius: 39px;
}

#createFolderModal .modal-content button#CreateNewFolderBtn {
    color: #F8FAFC;
    padding: 16.3866px;
    width: 187px;
    height: 56.77px;
    background: var(--primary-color);
    border-radius: 39px;
}

/* /V2 Folder Styling*/

/* UsefulMedia Pagination*/
.um-pagination {
    padding-top: 20px;
    border-top: 1px solid #eee;
    margin-bottom: 50px;
}

.um-pagination nav,
.um-pagination {
    display: flex;
    width: 100%;
}

.um-pagination nav {
    justify-content: center;
}

.um-pagination nav ul {
    list-style-type: none;
}

.um-pagination nav ul li {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #215861;
    background-color: transparent;
    cursor: pointer;
}

.um-pagination nav ul li > a,
.um-pagination nav ul li > * {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
}

.um-pagination nav ul li,
.um-pagination nav ul li > * {
    color: #215861;
}

.um-pagination nav ul li.active,
.um-pagination nav ul li.active > * {
    background-color: #215861;
    color: #fff;
}

.um-pagination nav ul li.disabled,
.um-pagination nav ul li.disabled > * {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.um-pagination nav ul li:first-of-type {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.um-pagination nav ul li:last-of-type {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

/* /UsefulMedia Pagination*/

/* UsefulMedia Dropdown*/
.um-dropdown {
    position: relative;
}

.um-dropdown .dropdown-content {
    display: none;
    position: absolute;
    overflow: auto;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    min-width: 150px;
}

.um-dropdown .dropdown-content.show {
    display: block !important;
}

/* /UsefulMedia Dropdown*/
#FooterLinksWrap {
    display: flex;
    gap: 10px;
    padding: 20px 40px;
    margin-top: 50px;
    box-sizing: border-box;
    border-top: 1px solid var(--grey-100);
    flex-direction: column;
}

#FooterLinksWrap a {
    text-decoration: none;
    color: var(--grey-400);
    transition: color 0.7s;
    font-size: 10px;
    text-transform: capitalize;
}

@media screen and (min-width: 600px) {
    #FooterLinksWrap {
        flex-direction: row;
    }
}


/* Get Started Modal Content */
#getStartedModal .modal-content {
    background: #FFFFFF;
    border-radius: var(--border-radius, 15px);
    margin: auto;
    display: flex;
    flex-direction: column;
    padding: 70px 40px;
    gap: 34px;
    width: 751px;
    max-width: 100%;
    align-items: center;
    justify-content: center;
}

#getStartedModal.modal-content > .flex.justify-between {
    align-items: center;
}

#getStartedModal .modal-content .title {
    font-family: var(--font-poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 0.5px;
    color: #252626;
}

#getStartedModal .modal-content .getstartedinfo-wrap p {
    font-weight: 400;
    font-size: 14px;
    line-height: 28px;
    text-align: center;
    letter-spacing: 0.5px;
    color: #6E7070;
    max-width: 351px;
}

#getStartedModal .modal-content .getstartedlinks-wrap {
    display: flex;
    gap: 25px;
}

#getStartedModal .modal-content .getstartedlinks-wrap .getstartedlinks {
    display: flex;
    gap: 20px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    border: 1px solid #EBEDED;
    border-radius: var(--border-radius, 15px);
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0.15px;
    color: #252626;
}

/* Get Started Modal Styling*/

/* Create Workflow Modal */
.modal.cardlinks-action .modal-content {
    background: #FFFFFF;
    border-radius: var(--border-radius, 15px);
    margin: auto;
    display: flex;
    flex-direction: column;
    padding: 70px 40px;
    gap: 34px;
    width: 751px;
    max-width: 100%;
    align-items: center;
    justify-content: center;
    height: -moz-fit-content;
    height: fit-content;
}

.modal.cardlinks-action .modal-content > .flex.justify-between {
    align-items: center;
}

.modal.cardlinks-action .modal-content .cardlinks-action-wrap .title {
    font-family: var(--font-poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 0.5px;
    color: #252626;
}

.modal.cardlinks-action .modal-content .cardlinks-action-wrap p {
    font-weight: 400;
    font-size: 14px;
    line-height: 28px;
    text-align: center;
    letter-spacing: 0.5px;
    color: #6E7070;
    max-width: 351px;
}

.modal.cardlinks-action .modal-content .cardlinks-action-link-wrap {
    display: flex;
    gap: 25px;
}

.modal.cardlinks-action .modal-content .cardlinks-action-link-wrap > a {
    display: flex;
    gap: 20px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    border: 1px solid #EBEDED;
    border-radius: var(--border-radius, 15px);
    font-weight: 400;
    font-size: 14px;
    line-height: 26px;
    letter-spacing: 0.15px;
    color: #252626;
}


/* /Create Workflow Modal */

/* Inline Upgrade Toast */
#inlineUpgradeToast {
    display: none;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 500;
    background: #FFFFFF;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3), 0px 12px 24px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    width: 380px;
    animation-name: anim-slide-left;
    animation-fill-mode: forwards;
    /*animation-timing-function: cubic-bezier(0.17, 0.04, 0.03, 0.94);*/
    animation-duration: 500ms;
}

#inlineUpgradeToast .upgrade-toast-icon-wrap {
    width: 44px;
    min-width: 44px;
    background: #E0FBF9;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px 0 0 10px;
}

#inlineUpgradeToast .upgrade-toast-content-wrap {
    padding: 16px 10px;
}

#inlineUpgradeToast .upgrade-toast-content-wrap .close {
    cursor: pointer;
}

#inlineUpgradeToast .upgrade-toast-content-wrap h4 {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.15px;
    color: #252626;
}

#inlineUpgradeToast .upgrade-toast-content-wrap p {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.25px;
    color: #525454;
}

#inlineUpgradeToast .upgrade-toast-content-wrap p a {
    color: var(--primary-color);
}

/* /Inline Upgrade Toast */

/* Restricted Template Upgrade Modal */
#restrictedTemplateUpgradeModal .modal-content {
    background: #FFFFFF;
    border-radius: var(--border-radius, 15px);
    margin: auto;
    display: flex;
    flex-direction: column;
    padding: 15px 50px 40px;
    width: 550px;
    max-width: 100%;
    justify-content: center;
    align-items: center;
    animation-name: anim-slide-down;
    animation-fill-mode: forwards;
    /*animation-timing-function: cubic-bezier(0.17, 0.04, 0.03, 0.94);*/
    animation-duration: 500ms;
}

#restrictedTemplateUpgradeModal .modal-content .upgrade-notice-wrap {
    display: flex;
    flex-direction: column;
    width: 550px;
    max-width: 100%;
    text-align: center;
    align-items: center;
}

#restrictedTemplateUpgradeModal .modal-content .upgrade-notice-wrap img {
    max-width: 320px;
}

#restrictedTemplateUpgradeModal .modal-content h3 {
    font-family: var(--font-poppins);
    font-style: normal;
    font-weight: 700;
    font-size: 34px;
    line-height: 40px;
    text-align: center;
    letter-spacing: 0.25px;
    color: var(--primary-color-heading);
    margin-bottom: 20px;
}

#restrictedTemplateUpgradeModal .modal-content p {
    font-family: var(--font-poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    text-align: center;
    letter-spacing: 0.5px;
    color: #252626;
    margin-bottom: 28px;
}

#restrictedTemplateUpgradeModal .modal-content .btn.btn-primary {
    min-width: 200px;
    max-height: 50px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 16.3866px;
    gap: 8.19px;
    text-transform: uppercase;
    border-radius: 39px;
    cursor: pointer;
}

/* /Restricted Template Upgrade Modal */


/* Small Restriction Upgrade Modal */
.modal.small-restriction-upgrade-modal .modal-content {
    background: #FFFFFF;
    border-radius: var(--border-radius, 15px);
    margin: auto;
    display: flex;
    flex-direction: column;
    padding: 40px;
    width: 463px;
    max-width: 100%;
    justify-content: center;
    align-items: center;
    animation-name: anim-slide-down;
    animation-fill-mode: forwards;
    /*animation-timing-function: cubic-bezier(0.17, 0.04, 0.03, 0.94);*/
    animation-duration: 500ms;
    position: relative;
    height: -moz-fit-content;
    height: fit-content;
}

.modal.small-restriction-upgrade-modal.no-sign-trial .modal-content {
    width: 760px;
}

.modal.small-restriction-upgrade-modal .modal-content .upgrade-notice-wrap {
    display: flex;
    flex-direction: column;
    max-width: 100%;
    text-align: center;
    align-items: center;
}

.modal.small-restriction-upgrade-modal .modal-content .upgrade-notice-wrap .close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

.modal.small-restriction-upgrade-modal .modal-content h3 {
    font-family: var(--font-poppins);
    font-style: normal;
    font-weight: 500;
    font-size: 34px;
    line-height: 40px;
    text-align: center;
    letter-spacing: 0.25px;
    color: var(--primary-color-heading);
    margin-bottom: 20px;
}

.modal.small-restriction-upgrade-modal .modal-content p {
    font-family: var(--font-poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    text-align: center;
    letter-spacing: 0.5px;
    color: #252626;
    margin-bottom: 28px;
}

.modal.small-restriction-upgrade-modal .modal-content .btn.btn-primary {
    width: 100%;
    max-height: 50px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 16.3866px;
    gap: 8.19px;
    text-transform: uppercase;
    cursor: pointer;
}

/* /Small Restriction Upgrade Modal  */

/* Limits Reached Upgrade Modal */

.modal.small-restriction-upgrade-modal.limits-reached .modal-content {
    padding: 32px
}

.modal.small-restriction-upgrade-modal.limits-reached .modal-content h3 {
    font-family: var(--font-poppins);
    font-style: normal;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: 0.1px;
    color: #252626;
    margin-top: 8px;
    margin-bottom: 20px;
}

.modal.small-restriction-upgrade-modal.limits-reached .modal-content p {
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    display: flex;
    align-items: center;
    text-align: center;
    letter-spacing: 0.25px;
    color: #6E7070;
    margin-bottom: 20px;
}

.modal.small-restriction-upgrade-modal.limits-reached .modal-content .btn.btn-primary {
    max-width: 250px;
}

/* /Limits Reached Upgrade Modal */


.click-to-copy {
    cursor: copy !important;
}

.copied {
    cursor: pointer !important;
    background-color: #eee !important;
}



.videomodal-container {
    position: relative;
    display: flex;
}

.tooltip-trigger {
    cursor: pointer;
}

.videotooltip-text {
    visibility: hidden;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background-color: #F8FAFC;
    color: #252626;
    text-align: center;
    padding: 21px 16px;
    border-radius: 15px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    position: absolute;
    bottom: -35px;
    left: 50px;
    transform: translateX(0%);
    z-index: 1;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 400;
    opacity: 0;
    transition: opacity 0.2s;
}


.videomodal-container:hover .videotooltip-text {
    visibility: visible;
    opacity: 1;
}
@media screen and (max-width:768px) {
    .videotooltip-text {
        left: -100px;
        bottom: -60px;
    }
}

/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 9999; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0, 0, 0); /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}

/* Dropbox Uploading Modal */
#dropboxUploadingModal .modal-content{
    background: #FFFFFF;
    border-radius: var(--border-radius, 15px);
    margin: auto;
    display: flex;
    flex-direction: column;
    padding: 53px 32px;
    gap: 10px;
    width: 419px;
    max-width: 100%;
    justify-content: center;
    align-items: center;
    animation-name: anim-slide-down;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(0.17, 0.04, 0.03, 0.94);
    animation-duration: 500ms;
}
#dropboxUploadingModal .modal-content .uploading{
    display: flex;
    flex-direction: column;
    width: 550px;
    max-width: 100%;
    text-align: center;
    align-items: center;
    gap: 30px;
}
#dropboxUploadingModal .modal-content .uploading .logo-wrap{
    width: 51px;
    height: 51px;
}
#dropboxUploadingModal .modal-content .uploading .logo-wrap img{
    max-width: 100%;
}
#dropboxUploadingModal .modal-content h3{
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0.15px;
    color: #252626;
    overflow-wrap: anywhere;
}
/* /Dropbox Uploading Modal */


/* Add Document to folder Modal styling */
/* Modal Content */
#addToFolderModal .modal-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px 35px;
    gap: 28px;
    width: 425px;
    max-width: 100%;
    background: #FFFFFF;
    border-radius: var(--border-radius, 15px);
    margin: auto;
}

#addToFolderModal .modal-content button[data-for="createFolderModal"] {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 16.3866px;
    gap: 8.19px;
    width: 355px;
    height: 56.77px;
    background: var(--primary-color);
    border-radius: 39px;
    cursor: pointer;
    border: none!important;
    font-family: var(--font-poppins);
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 1.25px;
    text-transform: uppercase;
    color: #F8FAFC;
}

#addToFolderModal .modal-content .search-input-wrap {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 13px 10px;
    gap: 15px;
    width: 355px;
    background: #F8FAFC;
    border: 1px solid #E3E7E8;
    border-radius: var(--border-radius, 15px);
    align-items: center;
}

#addToFolderModal .modal-content .search-input-wrap > svg{
    width: 15px;
    height: 15px;
}

#addToFolderModal .modal-content .search-input-wrap > input{
    flex: 1;
    border: none!important;
    outline: none!important;
    background-color: transparent;
    font-family: var(--font-poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: 0.25px;
    color: #6E7070;
}

#addToFolderModal .modal-content button.close {
    color: #6E7070;
    background: #E3E7E8;
}

#addToFolderModal .modal-content button#DeleteSelectedDocumentBtn {
    color: #F8FAFC;
    background: #FA1E1E;
}

/* /Add Document to folder Confirmation  Styling*/

/* Add Selected Document to Folder*/
#AddToFolderListingFolder{
    width: 100%;
    gap: 25px;
    overflow-y: auto;
    max-height: 200px;
}

#AddToFolderListingFolder .folder-list-item-view{
    display: flex;
    flex: 1;
    cursor: pointer;
    gap: 25px;
}
#AddToFolderListingFolder .folder-list-item-view{
    display: flex;
    align-items: center;
}
#AddToFolderListingFolder .folder-list-item-view .dash-folder-name{
    flex: 1;
}
/* /Add Selected Document to Folder*/


/* Rename Document*/
#renameDocumentModal .modal-content,
#renameDocModal .modal-content {
    background: #FFFFFF;
    border-radius: var(--border-radius, 15px);
    margin: auto;
    display: flex;
    flex-direction: column;
    padding: 50px 40px;
    gap: 28px;
    width: 425px;
    max-width: 100%;
}

#renameDocumentModal .modal-content > .flex.justify-between,
#renameDocModal .modal-content > .flex.justify-between {
    align-items: center;
}
#renameDocumentModal .modal-content .title,
#renameDocModal .modal-content .title {
    font-family: var(--font-poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 0.5px;
    color: #252626;
}

/* The Close Button */
#renameDocumentModal .modal-content span.close,
#renameDocModal .modal-content span.close {
    color: #525454;
}

#renameDocumentModal .modal-content span.close:hover,
#renameDocumentModal .modal-content span.close:focus,
#renameDocModal .modal-content span.close:hover,
#renameDocModal .modal-content span.close:focus {
    color: #000;
    cursor: pointer;
}

#renameDocumentModal .modal-content input,
#renameDocModal .modal-content input {
    padding: 10px 15px;
    font-family: var(--font-poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 0.5px;
    color: #252626;
    border: 1px solid var(--primary-color);
    outline: none;
    border-radius: var(--border-radius, 15px);
    display: block;
    width: 100%;
}

#renameDocumentModal .modal-content input::-moz-placeholder, #renameDocModal .modal-content input::-moz-placeholder {
    color: #525454;
}

#renameDocumentModal .modal-content input::placeholder,
#renameDocModal .modal-content input::placeholder {
    color: #525454;
}

#renameDocumentModal .modal-content small#nameError,
#renameDocModal .modal-content small#nameError {
    color: red;
    font-size: 10px;
}

#renameDocumentModal .modal-content .btn-wrap,
#renameDocModal .modal-content .btn-wrap {
    display: flex;
    justify-content: flex-end;
    gap: 21px;
}
#renameDocumentModal .modal-content button,
#renameDocModal .modal-content button {
    border: none;
    font-family: var(--font-poppins);
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 1.25px;
    text-transform: uppercase;
    cursor: pointer;
}

#renameDocumentModal .modal-content button.close,
#renameDocModal .modal-content button.close {
    color: #6E7070;
    padding: 16.3866px;
    width: 166px;
    height: 56.77px;
    background: #E3E7E8;
    border-radius: 39px;
}

#renameDocumentModal .modal-content button#RenameDocBtn,
#renameDocModal .modal-content button#RenameDocBtn {
    color: #F8FAFC;
    padding: 16.3866px;
    width: 187px;
    height: 56.77px;
    background: var(--primary-color);
    border-radius: 39px;
}

/* /Rename Document*/

/* the file contains styles for document upload page and field mapping page */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-poppins);
}

body::-webkit-scrollbar,
.aside-left-field-wrapper::-webkit-scrollbar,
.doc-thumbnails-wrap::-webkit-scrollbar,
.aside-right::-webkit-scrollbar,
.aside-center::-webkit-scrollbar{
    width: 0.5rem;
}

body::-webkit-scrollbar-track,
.aside-left-field-wrapper::-webkit-scrollbar-track,
.doc-thumbnails-wrap::-webkit-scrollbar-track,
.aside-right::-webkit-scrollbar,
.aside-center::-webkit-scrollbar-track{
    background: whitesmoke;
}

body::-webkit-scrollbar-thumb,
.aside-left-field-wrapper::-webkit-scrollbar-thumb,
.doc-thumbnails-wrap::-webkit-scrollbar-thumb,
.aside-center::-webkit-scrollbar-thumb{
    border-radius: 10px;
    background: lightgray;
}

body::-webkit-scrollbar-thumb:hover,
.aside-left-field-wrapper::-webkit-scrollbar-thumb:hover,
.doc-thumbnails-wrap::-webkit-scrollbar-thumb:hover,
.aside-center::-webkit-scrollbar-thumb:hover{
    background: darkgray;
}

.section-wrapper{
    width: 80%;
    margin: 0 auto;
}

.dotted-box{
    border: 1px dotted var(--primary-color);
    padding: 30px 15px;
    margin: 50px auto 1rem auto;
}

.dotted-box.highlight{
    border: 1px dotted var(--light-blue-200);
}

.dotted-box-grid{
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    padding: 20px 0;
    gap: 15px;
}

.dotted-box-grid-item-fig,
.dotted-box-grid-item-button {
    height: 100%;
}
#UploadContinueBtnWrap{
    justify-content: flex-end;
    display: flex;
}
@media screen and (min-width: 600px) {
    .dotted-box{
        padding: 30px 0;
    }

    .dotted-box-grid{
        grid-template-columns: repeat(3, 1fr);
        padding-left: 20px;
        padding-right: 20px;
    }

    .dotted-box-grid-item:not(:last-child){
        border-right: 1px solid var(--light-blue-200);
    }
}

figure{
    display: block;
}

figure img{
    display: block;
    margin: 0 auto;
}

figure figcaption{
    display: block;
    margin: 10px;
}

figure figcaption::first-letter{
    text-transform: uppercase;
}

.dotted-box-grid-item-button button{
    color: var(--white);
    border: 0;
    background: var(--primary-color);
    cursor: pointer;
}

.text-container p{
    color: var(--grey-400);
}

.text-container a{
    color: var(--primary-color);
}

.bar-container{
    margin: 30px 0 10px 0;
}

.bar{
    background: var(--alabaster);
    border-radius: 10px;
    padding: 10px 20px;
}

.bar.bar-progress{
    background: unset;
}

.bar-item{
    position: relative;
}

.bar-text{
    position: absolute;
    display: block;
    left: 70px;
    top: 50%;
    transform: translateY(-50%);
}

.bar-text.untabbed-area-bar-text{
    left: 50px;
    width: 75%;
    overflow: hidden;
    white-space: no-wrap;
    text-overflow: ellipsis;
}

.bar-right-content{
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    cursor: pointer;
}

.bar .bar-item .bar-right-content.js-bar-cross{
    font-size: 26px;
    color: red;
}

.bar.bar-progress .bar-right-content{
    right: 0;
}

.bar-right-content-child-2{
    font-size: 14px;
    color: var(--grey-500);
    text-align: right;
}


.doc-thumbnails-wrap{
    width: 100%;
    /*height: 100vh;*/
    /*overflow-y: auto;*/
}

.progress{
    background: var(--alabaster);
    border-radius: 5px;
    height: 7px;
    margin-top: 10px;
    overflow: hidden;
}

.progress div{
    background: var(--primary-color);
    height: 100%;
    width: 50%;
    border-radius: 5px;
    transition: width 0.5s;
}

.btn-wrapper button{
    border: 0;
    background: var(--primary-color);
    cursor: pointer;
}

.dialog-btn{
    color: var(--primary-color);
    cursor: pointer;
    display: none;
}

/**** field mapping styles ****/
.section-map-fields{
    position: relative;
}

.map-fields-grid{
    display: grid;
    grid-template-columns: 2fr auto 2fr;
}

.map-fields-grid canvas{
    display: block;
    /* margin-bottom: 10px; */
}

.map-fields-grid-item:nth-child(2){
    background: var(--grey-250);
    border: 1px solid  var(--grey-250);
    border-top: 0;
}
.map-fields-grid-item.aside-right{
    overflow-y: auto;
}
.aside-left-field-wrapper{
    height: 52vh;
    overflow-y: auto;
    padding: 0 20px;
}

.aside-left-fonts-wrapper{
    padding: 0 20px;
}

.aside-left p{
    font-family: var(--font-poppins);
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.15px;
    color: var(--primary-color-heading);
    margin: 30px 0 15px 0;
}
.aside-left label.field-label{
    font-family: var(--font-poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0.25px;
    color: #252626;
    margin-top: 20px;
}
.aside-left label.field-label.section-spacing{
    margin-top: 40px ;
}

.aside-left-inputs-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 10px;
         column-gap: 10px;
}

.aside-left input,
.aside-left select{
    height: 40px;
    display: block;
    padding: 0 10px;
    margin-bottom: 10px;
    width: 100%;
    background: #F7F7F7;
    border: 1px solid #D4D8D9;
    border-radius: 10px;
    cursor: pointer;
}

.aside-left input:disabled,
.aside-left select:disabled{
    cursor: not-allowed;
}

.aside-left select:first-child{
    grid-column: span 2;
}

.aside-left-color-picker{
    background: #F7F7F7;
    border: 1px solid #D4D8D9;
    border-radius: 10px;
    height: 40px;
    position: relative;
}

.aside-left input[type=color]{
    border-radius: 50%;
    width: 40px;
    height: 20px;
    border: none;
    outline: none;
    display: inline-block;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.aside-left-color-picker span{
    color: var(--grey-800);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 40px;
    font-size: 12px;
    text-transform: uppercase;
}

.aside-left input[type=color]::-webkit-color-swatch-wrapper{
    padding: 0;
}

.aside-left input[type=color]::-webkit-color-swatch{
    border: none;
    border-radius: 50%;
}

.aside-left input:focus{
   outline: 0;
}

.aside-left ul{
   list-style-type: none;
}

.aside-left ul li{
    cursor: pointer;
}

.aside-left ul li:not(:last-child){
    margin-bottom: 15px;
}

.aside-left ul li span:first-child{
    margin-right: 10px;
}

.aside-left ul li span:last-child{
    color: var(--grey-800);
}

.aside-center{
    height: 100vh;
    overflow-y: auto;
    padding: 20px;
}

.aside-center-footer{
    padding: 10px;
    font-size: 12px;
    display: none;
}

.aside-center-footer button{
    background: var(--white);
    border: 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    padding: 0 10px;
}

.aside-center-footer span{
   color: var(--grey-800);
}

.aside-center-footer input{
   width: 40px;
   border: 0;
   padding: 0 5px;
   transition: width 0.5s;
}

.aside-center-footer input:focus{
    outline: 0;
    width: 80px;
 }

/**** field mapping tabbed area ****/
.tabbed-area{
    margin-left: auto;
    margin-right: auto;
    width: 80%;
}

.tab-links{
    display: flex;
    justify-content: left;
    margin: 30px 0;
}

.tab-links a,
.tab-links a:hover{
    color: var(--grey-350);
    text-decoration: none;
}

.tab-links a.active{
    color: var(--grey-900);
}

.box-wrapper > div{
    /* border: 1px solid black; */
    display: none;
}

.aside-content{
    display: none;
}

.tab-content-form-field{
    margin-bottom: 15px;
    border-bottom: 1px solid var(--grey-250);
}

.tab-content-form-field:first-child div{
    margin: 15px 0;
    color: var(--grey-800);
}

.tab-content-form-field:first-child div span:first-child{
    position: relative;
    bottom: -2px;
    margin-right: 5px;
}

.tab-content-form-field label{
    display: block;
    text-transform: capitalize;
    color: var(--grey-600);
}

.tab-content-form-field input{
    width: 100%;
    border-radius: 10px;
    margin: 20px 0 20px 0;
    border: 1px solid var(--grey-600);
    height: 40px;
    padding: 0 10px;
    box-sizing: border-box;
}

.tab-content-form-field input:focus{
    outline: 0;
}

.tab-content-form-footer{
    text-align: center;
    margin: 20px 0;
}

.tab-content-form-footer button{
    width: 100%;
    margin-bottom: 20px;
    background: var(--foam);
    color: var(--primary-light-color);
    outline: 0;
    border: 2px solid var(--primary-light-color);
}

.tab-content-form-footer a{
    color: var(--grey-800);
}

.tab-content4-list{
    margin-bottom: 40px;
}

.tab-content4-list-item{
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--grey-250);
    position: relative;
}

.tab-content4-list-item input{
    accent-color: var(--primary-color);
    margin-right: 5px;
}

.tab-content4-list-item span{
    color: var(--primary-color);
    text-transform: capitalize;
}

.tab-content4-dropdown-btn{
    position: absolute;
    right: 0;
    top: 8px;
    transform: translateY(-50%);
    cursor: pointer;
    color: var(--primary-color);
}

.tab-content4-dropdown a:hover{
    color: var(--grey-800);
    text-decoration: none;
}

.tab-content4-dropdown{
    position: absolute;
    right: 0;
    top: 100%;
    background: var(--white);
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    z-index: 2;
    display: none;
    font-size: 14px;
}

.tab-content4-dropdown a{
    display: block;
    font-size: 12px;
    color: var(--grey-800);
}

.toggle-switch-wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.toggle-switch-text{
    color: var(--grey-800);
    text-transform: capitalize;
}

.toggle-switch-text small{
    color: var(--grey-400);
}

.toggle-switch-bg{
    height: 20px;
    width: 40px;
    border-radius: 20px;
    background: var(--grey-800);
    cursor: pointer;
    position: relative;
    transition: background 0.2s;
}

.switch-slider{
    height: 20px;
    width: 20px;
    border-radius: 100%;
    background: var(--white);
    border: 1px solid var(--grey-800);
    position: absolute;
    left: 0;
    transition: left 0.2s linear;
    color: var(--grey-800);
    display: flex;
    justify-content: center;
    align-items: center;
}

.switch-slider span{
    font-size: 10px;
}

#required:checked + .switch-slider{
    left: 20px;
}

#reorder:checked + .switch-slider{
    left: 20px;
}

/* main pdf canvas area */
@media screen and (min-width: 600px){
    .canvas-wrapper.js-canvas-wrapper{
        min-width: 690px;
    }
}
.canvas-wrapper{
    position: relative;
    /* height: 100vh; */
}

.canvas-field-float {
    position: absolute;
    display: none;
}

#EditorFieldsContainer.canvas-wrapper .canvas-field-float {
    position: absolute !important;
}

.canvas-field{
    height: -moz-fit-content;
    height: fit-content;
    flex: 1;
}
.js-signature-field .canvas-field,
.js-canvas-field-img .canvas-field{
    height: 40px;
    flex: 1;
}

.canvas-field-float .canvas-field .js-hold-area {
    position: absolute;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    left: 0;
    top: 0;
    z-index: 1;
    cursor: grabbing;
    display: none;
}

.canvas-field-float:not(.focused-field) .canvas-field .js-hold-area {
    display: inline-block;
}

.canvas-input-field{
    resize: both;
    overflow: visible;
    position: relative;
}
.canvas-field-float .canvas-field .resizer-node{
    position: absolute;
    /*display: none;*/
    display: inline-block;
    width: 7px;
    height: 7px;
    background: #FFFFFF;
    border: 1.16667px solid var(--primary-color);
    left: -2px;
    top: -2px;
}
/*.canvas-field-float.focused-field .canvas-field .resizer-node{*/
/*    display: inline-block;*/
/*}*/
.canvas-field-float .canvas-field .resizer-node.top,
.canvas-field-float .canvas-field .resizer-node.bottom{
    left: calc(50% - 3.5px);
}
.canvas-field-float .canvas-field .resizer-node.top-right,
.canvas-field-float .canvas-field .resizer-node.right,
.canvas-field-float .canvas-field .resizer-node.bottom-right{
    left: unset;
    right: -2px
}
.canvas-field-float .canvas-field .resizer-node.left,
.canvas-field-float .canvas-field .resizer-node.right{
    top: calc(50% - 3.5px);
}
.canvas-field-float .canvas-field .resizer-node.bottom-left,
.canvas-field-float .canvas-field .resizer-node.bottom,
.canvas-field-float .canvas-field .resizer-node.bottom-right{
    top: unset;
    bottom: -2px
}

/* .canvas-input-field::-webkit-resizer{
    background: black;
} */


.canvas-field-float .js-canvas-field-img,
.canvas-field-float .canvas-field input,
.canvas-field-float .canvas-field textarea {
    height: 100%;
    width: 100%;
    background: none;
    border: 1px dotted var(--grey-800);
    border-radius: 5px;
    padding: 0 5px; /* this should be accounted for when saving coordinates */
    max-width: 100% !important;
    max-height: 100% !important;
}
.canvas-field-float.focused-field .js-canvas-field-img,
.canvas-field-float.focused-field .canvas-field input,
.canvas-field-float.focused-field .canvas-field textarea{
    background: #F7F7F7;
    border: 1.5px solid var(--primary-color);
}

.canvas-field-float .canvas-field-icons{
    display: none;
    padding: 5px 10px;
    background: var(--primary-color-heading);
    border: 1.5px solid #C8CBCC;
    border-radius: 5px 5px 0 0;
    margin-bottom: 8px;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 100%;
    animation-name: appear;
    animation-duration: 0.5s;
    animation-timing-function: linear;
    align-items:center;
    justify-content: space-between;
}
.canvas-field-float.focused-field .canvas-field-icons{
    display: flex!important;
}
.canvas-field-float .canvas-field-icons p{
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: 0.1px;
    color: #F8FAFC;
    max-width: calc(100% - 40px);
    white-space: nowrap;
    cursor: pointer;
    margin: 0!important;
}
.canvas-field-float .canvas-field-icons p > span:first-child{
    max-width: calc(100% - 20px);
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.canvas-field-icons span{
    cursor: pointer;
    position: relative;
    display: inline-block;
    top: 3px;
}

.canvas-field-icons span:not(:last-child){
    margin-right: 5px;
}

.canvas-field input[type=checkbox]{
    accent-color: var(--grey-800);
}

.canvas-field textarea.textarea-centralized{
    text-align: center;
}

.canvas-field input:focus,
.canvas-field textarea:focus{
    outline: 0;
}

/* .canvas-field canvas{
    border: 1px dotted var(--grey-800);
    cursor: pointer;
    margin-bottom: 10px;
} */
#embed .vue-pdf-embed > div:not(:last-child) {
    margin-bottom: 8px;
}

#thumbnailsView .vue-pdf-embed{
    list-style-type: none;
    counter-reset: css-counter 0;
}

#thumbnailsView .vue-pdf-embed > div{
    position: relative;
    border: 3px solid #919394;
    overflow: hidden;
    border-radius: var(--border-radius, 15px);
    counter-increment: css-counter 1;
    cursor: pointer;
}

#thumbnailsView .vue-pdf-embed > div:not(:last-child) {
    margin-bottom: 20px;
}

#thumbnailsView .vue-pdf-embed > div:after{
    position: absolute;
    top: 9px;
    right: 9px;
    letter-spacing: 0.15px;
    background: #919394;
    content: counter(css-counter);
    color: var(--white);
    text-align: center;
    vertical-align: center;
    width: 28px;
    height: 28px;
    border-radius: 5px;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
}

.canvas-field-img{ /* check later replace this with image with js*/
    height: 40px; /* check later */
    width: 150px; /* check later */
    /* position: relative; */
    color: var(--ruby-red);
    display: inline-flex;
    align-items: center;
    border: 1px dotted var(--ruby-red);
    border-radius: 5px;
    cursor: pointer;
    resize: both;
    overflow: hidden;
}

.canvas-field-img .canvas-field-img-text{
    position: relative;
    text-transform: capitalize;
    display: block;
    margin: auto;
}

.canvas-field-img img{
    /* width: 100%;
    height: 100%; */
    max-width: 100%;
    max-height: 100%;
    display: block;
    margin: 0 auto;
    /* object-fit: contain; */
}

.untabbed-area{
    padding: 20px 30px;
}

/* tool tip modal */
.modal-dark-bg{
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 99;
}

.modal-dark-bg.checkbox-list-modal{
    display: none;
    justify-content: center;
    align-items: center;
}

.checkbox-list-modal-content{
    min-width: 20%;
    position: absolute;
    border-radius: 10px;
    background: var(--white);
    animation-name: fadeIn;
    animation-duration: 0.2s;
    animation-timing-function: linear;
}

.checkbox-list-head{
    position: relative;
    border-bottom: 1px solid var(--grey-350);
    padding: 5px;
}

.checkbox-list-head p{
    text-transform: capitalize;
    font-weight: bold;
    padding: 10px 20px;
    margin-bottom: 0;
}

.checkbox-list-head div{
    text-transform: capitalize;
    font-weight: bold;
    padding: 10px;
}

.checkbox-list-head span{
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 20px;
}

.checkbox-list-modal-content ul{
    list-style-type: none;
    /* margin-top: 10px; */
    padding: 10px 10px 0 10px;
}

.checkbox-list-modal-content ul li{
    padding: 5px 10px;
}

.checkbox-list-modal-content ul li:not(:last-child){
    padding-bottom: 0;
}

.checkbox-list-modal-content input{
    margin-right: 10px;
    accent-color: var(--grey-800);
}

.checkbox-list-modal-content ul li span{
    text-transform: capitalize;
    position: relative;
    top: -2px;
}

.checkbox-list-modal-content-btn-wrapper{
    padding: 0 20px 20px 20px;
}

.checkbox-list-modal-content-btn-wrapper .btn{
    font-size: 12px;
    padding: 10px;
    width: 100%;
}

.tooltip1-modal,
.tooltip2-modal,
.tooltip3-modal{
    display: none;
}

.tooltip-modal-content{
    width: 25%;
    position: absolute;
    border-radius: 20px;
    background: var(--white);
    text-align: center;
    padding: 40px;
    top: 5%;
    animation-name: fadeIn;
    animation-duration: 0.2s;
    animation-timing-function: linear;
}

.tooltip1-modal-content{
    left: 10%;
}

.tooltip2-modal-content{
    right: 5%;
}

.tooltip3-modal-content{
    right: 5%;
}

.tooltip-modal-content p{
    color: var(--grey-800);
    line-height: 21px;
    font-size: 14px;
}

.tooltip-modal-content button{
    color: var(--white);
    border-radius: var(--border-radius, 15px);
    background: var(--primary-color);
    cursor: pointer;
    width: 100%;
}

/* signature list modal */
.modal-dark-bg--signature-modal{
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: fixed;
    z-index: 999;
    background: rgba(0, 0, 0, 0.2);
    display: none;
    /* overflow: auto; */
}

.modal-dark-bg--signature-modal.show{
    display: block;
}

.signature-modal-wrapper{
    background: var(--white);
    width: 90%;
    overflow: auto;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    position: relative;
    margin: 4% auto;
    padding: 50px;
    animation-name: fadeIn;
    animation-duration: 0.2s;
    animation-timing-function: linear;
}

.close-signature-list-btn{
    text-align: right;
    width: 40px;
    margin: auto 5% -50px auto;
    color: var(--white);
    cursor: pointer;
    font-size: 30px;
}

.close-signature-list-btn:hover{
    color: var(--red);
}

.sig-tool__sig-wrapper__item{
    cursor: pointer;
}

@media only screen and (max-width: 960px){
    .close-signature-list-btn{
        margin-bottom: 30px;
    }
}

/* end of signature list modal */

.aside-left-field-wrapper  .aside-draggable-field{
    z-index: 2;
}

/*loader*/
.loader-background{
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader-spinner{
    border: 8px solid #D4D8D9;
    border-top-color: #525454;
    width: 48px;
    height: 48px;
    border-radius: var(--border-radius, 15px);
    margin: 10px auto;
    animation-name: loader;
    animation-duration: 0.5s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.loader-text{
    font-family: var(--font-poppins);
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.15px;
    color: #525454;
}

@keyframes loader {
    from{transform: rotateZ(0deg);}
    to{transform: rotateZ(360deg);}
}

@keyframes fadeIn {
    from{
        opacity: 0;
        transform: translateY(50px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes appear {
    from{
        opacity: 0;
    }
    to{
        opacity: 1;
    }
}



/**
Custom Checkbox switch styling Start
======================================
@see https://blog.stackfindover.com/css-toggle-switch/
 */

.switch-toggle {
    display: flex;
    height: 100%;
    align-items: center;
}
.switch-toggle .switch-btn, .switch-toggle .layer {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.switch-toggle .switch-check {
    position: relative;
    width: 51px;
    height: 31px;
    overflow: hidden;
    border-radius: var(--border-radius, 15px);
    -webkit-border-radius: var(--border-radius, 15px);
    -moz-border-radius: var(--border-radius, 15px);
    -ms-border-radius: var(--border-radius, 15px);
    -o-border-radius: var(--border-radius, 15px);
}
.switch-toggle .checkbox {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 3;
}
.switch-toggle .switch-btn {
    z-index: 2;
}
.switch-toggle .layer {
    width: 100%;
    background-color: #6E7070;
    transition: 0.3s ease all;
    z-index: 1;
}
.switch-toggle .switch-check .switch-btn:before, .switch-toggle .switch-check .switch-btn:after {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 23px;
    height: 23px;
    font-size: 10px;
    font-weight: bold;
    text-align: center;
    line-height: 1;
    background-color: #FFFFFF;
    border-radius: 50%;
    transition: 0.3s cubic-bezier(0.18, 0.89, 0.35, 1.15) all;
    display: flex;
    align-items: center;
    justify-content: center;
}
.switch-toggle .switch-check .switch-btn:after {
    content: 'ON';
    color: var(--primary-color);
}
.switch-toggle .switch-check .switch-btn:before {
    content: 'OFF';
    color: #6E7070;
}
.switch-toggle .switch-check .switch-btn:after {
    right: -50px;
    left: auto;
}
.switch-toggle .switch-check .checkbox:checked + .switch-btn:before {
    left: -50px;
}
.switch-toggle .switch-check .checkbox:checked + .switch-btn:after {
    right: 4px;
}
.switch-toggle .switch-check .checkbox:checked ~ .layer {
    background-color: var(--primary-color);
}

/**
Custom Checkbox switch styling End
 */

.warning1-modal{
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.warning-modal-content{
    width: 80%;
    border-radius: 20px;
    background: #ffffff;
    text-align: center;
    padding: 40px;
}

.warning-modal-content p{
    color: #525454;
    line-height: 21px;
    font-size: 14px;
}

.warning-modal-content button{
    color: #ffffff;
    border-radius: var(--border-radius, 15px);
    background: var(--primary-color);
    cursor: pointer;
    width: 100%;
    font-family: var(--font-poppins);
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 1.25px;
    text-transform: uppercase;
    padding: 10px 20px;
    display: inline-block;
    width: -moz-fit-content;
    width: fit-content;
    border: none;
    outline: none;
    text-decoration: none;
}

.warning-modal-content button:hover{
    color: #ffffff;
}

/**
Custom Radio styling Start
======================================
 */
/* The custom-radio-input-wrap */
.custom-radio-input-wrap {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-family: var(--font-poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 30px;
    letter-spacing: 0.5px;
    color: #525454;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

/* Hide the browser's default radio button */
.custom-radio-input-wrap input[type="checkbox"],
.custom-radio-input-wrap input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom radio button */
.custom-radio-input-wrap .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #F8FAFC;
    border: 1px solid var(--primary-color);
    border-radius: 23px;
}

.custom-radio-input-wrap input[type="checkbox"] ~ .checkmark {
    border-radius: 4px;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.custom-radio-input-wrap .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the indicator (dot/circle) when checked */
.custom-radio-input-wrap input:checked ~ .checkmark:after {
    display: block;
}

/* Style the indicator (dot/circle) */
.custom-radio-input-wrap .checkmark:after {
    width: 16px;
    height: 16px;
    background: var(--primary-color);
    border-radius: 23px;
}
.custom-radio-input-wrap input[type="checkbox"]:checked ~ .checkmark {
    background: var(--primary-color);
}
.custom-radio-input-wrap input[type="checkbox"]:checked ~ .checkmark:after {
    content: "\2713";
    color: #fff;
    border-radius: 0;
    font-size: 2em;
    display: flex;
    justify-content: center;
    align-items: center;
}
/**
Custom Radio styling End
 */

/**
Custom Radio styling Start
======================================
 */
/* The custom-select-dropdown-wrap */
.custom-select-dropdown-wrap {
    position: relative;
    display: block;
    width: 100%;
    margin: 0 auto;
    font-family: var(--font-poppins);
    font-style: normal;
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 0.5px;
}
@media (min-width: 768px) {
    .custom-select-dropdown-wrap {
        width: 70%;
    }
}
@media (min-width: 992px) {
    .custom-select-dropdown-wrap {
        width: 50%;
    }
}
@media (min-width: 1200px) {
    .custom-select-dropdown-wrap {
        width: 30%;
    }
}
.custom-select-dropdown__current {
    position: relative;
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    outline: none;
}
.custom-select-dropdown__current:focus + .custom-select-dropdown__list {
    opacity: 1;
    animation-name: none;
}
.custom-select-dropdown__current:focus + .custom-select-dropdown__list .custom-select-dropdown__option {
    cursor: pointer;
}
.custom-select-dropdown__current:focus .custom-select-dropdown__icon {
    transform: translateY(-50%) rotate(180deg);
}
.custom-select-dropdown__icon {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    width: 20px;
    opacity: 0.3;
    transition: 0.2s ease;
}
.custom-select-dropdown__value {
    display: flex;
}
.custom-select-dropdown__input {
    display: none!important;
}
.custom-select-dropdown__input:checked + .custom-select-dropdown__input-text {
    display: block;
}
.custom-select-dropdown__input-text {
    display: none;
    width: 100%;
    margin: 0;
    padding: 15px;
    background-color: #fff;
}
.custom-select-dropdown__list {
    position: absolute;
    width: 100%;
    padding: 0;
    list-style: none;
    opacity: 0;
    animation-name: HideList;
    animation-duration: 0.5s;
    animation-delay: 0.5s;
    animation-fill-mode: forwards;
    animation-timing-function: step-start;
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.1);
}
.custom-select-dropdown__option {
    display: block;
    padding: 15px;
    background-color: #fff;
}
.custom-select-dropdown__option:hover, .custom-select-dropdown__option:focus {
    color: #fff;
    background-color: #546c84;
}
@keyframes HideList {
    from {
        transform: scaleY(1);
    }
    to {
        transform: scaleY(0);
    }
}
/**
Custom Radio styling End
 */

.doxflowy-info-hint{
    display: inline-block;
    margin-right: 10px;
    position: relative;
}

.doxflowy-info-hint > span.hint{
    display: none;
    position: absolute;
    bottom: 28px;
    left: 0;
    background: #FFFFFF;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.11);
    border-radius: 10px;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 15px;
    gap: 3px;
    font-style: normal;
    font-weight: 400;
    font-size: 11px;
    line-height: 16px;
    letter-spacing: 0.5px;
    color: #7B7C81;
    width: 250px;
    transition-property: display;
    transition-duration: 2s;
    transition-timing-function: cubic-bezier(0.18, 0.89, 0.35, 1.15);
}
.doxflowy-info-hint:hover > span.hint{
    display: flex;
}


/*loader*/
.new-loading.loader-background{
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.74);
    z-index: 4000;
    display: none;
    justify-content: center;
    align-items: center;
}

.loader-background .loader-container{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
}

.loader-background .loader-container img.loader-spinner{
    border: none!important;
    width: 80px;
    height: 80px;
    border-radius: 5px!important;
    margin: 10px auto;
    animation: none!important;
}




