@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");

/* Light Theme */
:root[data-theme="light"] {
    /* General color */
    --white: #ffffff;
    --black: #000000;
    --primary-accent: linear-gradient(152.8deg, #7EA3ED -5.87%, #195BE0 91.81%);
    --dark-accent: #080B10;
    --highlighted-accent: #4180FF;
    /* State color */
    --error-accent: #dc2626;
    --warning-accent: #eab308;
    --success-accent: #17a84d;
    --info-accent: #1a8bca;
    --orange-accent: #fd7900;
    --cancel-accent: #6b6d73;
    /* Approve color */
    --approve-default: ;
    --approve-hover: ;
    --approve-click: ;
    /* Error Color */
    --error-hover: #E55656;
    --error-click: #C00505;
    /* Background color */
    --background-white: #ffffff;
    --background-primary: #f9fafb;
    --background-secondary: #f1f4f9;
    --background-tertiary: #f0f2f7;
    --background-quaternary: #e2e7f0;
    --background-quinary: #cbd2e1;
    --background-disabled: #e2e6f0;
    /* Lines color */
    --line-primary: #e8e8e8;
    --line-secondary: #d5d5d5;
    --line-tertiary: #bfbfbf;
    --line-quaternary: #969696;
    --line-quinary: #595959;
    /* Text color */
    --text-primary: #0f182a;
    --text-secondary: #475269;
    --text-disabled: #a5acb9;
    --text-placeholder: #b9bdc4;
    /* Icon color */
    --icon-primary: #475269;
    /* Chip background color */
    --chip-bg-cancel: #F2F2F2;
    --chip-bg-orange: #FEF1E5;
    --chip-bg-info: #E5F6FF;
    --chip-bg-success: #E5FFEE;
    --chip-bg-warning: #FFF9E5;
    --chip-bg-error: #FFE5E5;
    /* Shadow color */
    --shadow-add-card: 0 2px 6px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.06);
}

/* Dark Theme */
:root[data-theme="dark"] {
    /* General color */
    --white: #000000;
    --black: #ffffff;
    --primary-accent: linear-gradient(152.8deg, #7EA3ED -5.87%, #195BE0 91.81%);
    --dark-accent: #080B10;
    --highlighted-accent: #4180FF;
    /* State color */
    --error-accent: #dc2626;
    --warning-accent: #eab308;
    --success-accent: #17a84d;
    --info-accent: #1a8bca;
    --orange-accent: #fd7900;
    --cancel-accent: #6b6d73;
    /* Approve color */
    --approve-default: ;
    --approve-hover: ;
    --approve-click: ;
    /* Error Color */
    --error-hover: #E55656;
    --error-click: #C00505;
    /* Background color */
    --background-white: #080B10;
    --background-primary: #080808;
    --background-secondary: #0A0A0A;
    --background-tertiary: #111212;
    --background-quaternary: #18191A;
    --background-quinary: #27292B;
    --background-disabled: #606061;
    /* Lines color */
    --line-primary: #242424;
    --line-secondary: #474747;
    --line-tertiary: #707070;
    --line-quaternary: #8A8A8A;
    --line-quinary: #BDBDBD;
    /* Text color */
    --text-primary: #F2F2F2;
    --text-secondary: #99A6BF;
    --text-disabled: #44474D;
    --text-placeholder: #7D8085;
    /* Icon color */
    --icon-primary: #475269;
    /* Chip background color */
    --chip-bg-cancel: #191919;
    --chip-bg-orange: #171412;
    --chip-bg-info: #121517;
    --chip-bg-success: #111613;
    --chip-bg-warning: #171612;
    --chip-bg-error: #171212;
    /* Shadow color */
    --shadow-add-card: 0 2px 8px rgba(0, 0, 0, 0.45), 0 4px 12px rgba(0, 0, 0, 0.35);
}



* {
    margin: 0px;
    padding: 0px;
    font-family: "Inter", sans-serif;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

html,
body {
    width: 100%;
    scroll-behavior: smooth;
    /* height: 100dvh; */
    /* overflow: hidden; */
    color: var(--text-primary) !important;
    background-color: var(--background-white);
    transition: background-color 0.4s ease,
        color 0.4s ease;

}

* {
    --sb-thumb-color: var(--line-primary);
    --sb-size: 6px;
    scrollbar-color: var(--background-tertiary);
}

*::-webkit-scrollbar {
    width: 6px;
}

*::-webkit-scrollbar-track {
    border-radius: 9px;
}

*::-webkit-scrollbar-thumb {
    background: var(--background-tertiary);
    border-radius: 9px;
}

.hide-scroll::-webkit-scrollbar {
    display: none;
}

/* ----------------------------- Scroll ------------------------------- */

/* ----------------------------- Fonts ------------------------------- */

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

.light-14 {
    font-size: 14px !important;
    font-weight: 300 !important;
}

.light-16 {
    font-size: 16px !important;
    font-weight: 300 !important;
}

.light-18 {
    font-size: 18px !important;
    font-weight: 300 !important;
}

.regular-10 {
    font-size: 10px !important;
    font-weight: 400 !important;
}

.regular-12 {
    font-size: 12px !important;
    font-weight: 400 !important;
}

.regular-14 {
    font-size: 14px !important;
    font-weight: 400 !important;
}

.regular-16 {
    font-size: 16px !important;
    font-weight: 400 !important;
}

.regular-18 {
    font-size: 18px !important;
    font-weight: 400 !important;
}

.regular-20 {
    font-size: 20px !important;
    font-weight: 400 !important;
}

.regular-22 {
    font-size: 22px !important;
    font-weight: 400 !important;
}

.regular-24 {
    font-size: 24px !important;
    font-weight: 400 !important;
}

.regular-26 {
    font-size: 26px !important;
    font-weight: 400 !important;
}

.regular-28 {
    font-size: 28px !important;
    font-weight: 400 !important;
}

.regular-30 {
    font-size: 30px !important;
    font-weight: 400 !important;
}

.regular-36 {
    font-size: 36px !important;
    font-weight: 400 !important;
}

.medium-12 {
    font-size: 12px !important;
    font-weight: 500 !important;
}

.medium-14 {
    font-size: 14px !important;
    font-weight: 500 !important;
}

.medium-16 {
    font-size: 16px !important;
    font-weight: 500 !important;
}

.medium-18 {
    font-size: 18px !important;
    font-weight: 500 !important;
}

.medium-20 {
    font-size: 20px !important;
    font-weight: 500 !important;
}

.medium-22 {
    font-size: 22px !important;
    font-weight: 500 !important;
}

.medium-24 {
    font-size: 24px !important;
    font-weight: 500 !important;
}

.medium-26 {
    font-size: 26px !important;
    font-weight: 500 !important;
}

.medium-28 {
    font-size: 28px !important;
    font-weight: 500 !important;
}

.medium-30 {
    font-size: 30px !important;
    font-weight: 500 !important;
}

.semibold-14 {
    font-size: 14px !important;
    font-weight: 600 !important;
}

.semibold-16 {
    font-size: 16px !important;
    font-weight: 600 !important;
}

.semibold-18 {
    font-size: 18px !important;
    font-weight: 600 !important;
}

.semibold-20 {
    font-size: 20px !important;
    font-weight: 600 !important;
}

.semibold-22 {
    font-size: 22px !important;
    font-weight: 600 !important;
}

.semibold-24 {
    font-size: 24px !important;
    font-weight: 600 !important;
}

.semibold-26 {
    font-size: 26px !important;
    font-weight: 600 !important;
}

.semibold-28 {
    font-size: 28px !important;
    font-weight: 600 !important;
}

.semibold-30 {
    font-size: 30px !important;
    font-weight: 600 !important;
}

.semibold-36 {
    font-size: 36px !important;
    font-weight: 600 !important;
}

.bold-18 {
    font-size: 18px !important;
    font-weight: 700 !important;
}

.bold-14 {
    font-size: 14px !important;
    font-weight: 700 !important;
}

.bold-28 {
    font-size: 28px !important;
    font-weight: 700 !important;
}

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

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

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

.text-light {
    color: var(--text-secondary) !important;
}

.text-green {
    color: var(--success-accent) !important;
}

.text-green-accent {
    color: var(--success-accent) !important;
}

.text-blue {
    color: var(--dark-accent);
}

.text-disabled {
    color: var(--text-disabled);
}

.text--light {
    color: var(--text-secondary);
}

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

.text-purple {
    color: #664D9F;
}

.text-tealish-blue {
    color: var(--line-primary);
}

.text-brownish-red {
    color: #713F12;
}

.text-none {
    color: var(--text-disabled);
}

.text-highlighted {
    color: var(--highlighted-accent) !important;
}

.border-primary {
    border: 1px solid var(--highlighted-accent);
}

.border-left-primary {
    border-left: 2px solid var(--highlighted-accent);
}

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

.border-light {
    border-color: var(--background-quinary) !important;
}

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

.border-right1 {
    border-right: 1px solid var(--line-primary) !important;
}

.border-bottom1,
.border-bottom {
    border-bottom: 1px solid var(--line-primary) !important;
}

.border-tree {
    border: 1px dashed var(--line-secondary);
}

.notification-card-bg {
    background-color: var(--background-primary);
}

.primary-light-bg {
    background-color: #e1ebff50;
}

.tealish-blue-bg {
    background-color: var(--background-tertiary);
}

.gray-tealish-bg {
    background-color: var(--text-secondary);
}

.bg-primary {
    background-color: var(--highlighted-accent) !important;
}

.width-fit {
    width: fit-content !important;
}

.dropdown-profile {
    width: 300px !important;
}

.full-form-w {
    max-width: 700px !important;
}

.full-form-w_ {
    width: 700px !important;
}

.h-20px {
    height: 20px;
}

.w-40px {
    width: 40px;
}

.w-50px {
    width: 50px;
}

.w-60px {
    width: 60px !important;
}

.w-200px {
    width: 200px !important;
}

.w-300px {
    width: 300px;
}

.warning-light-bg {
    background-color: var(--chip-bg-warning);
}

.manage-org-h {
    max-height: 400px;
}

.max-w-1200px {
    max-width: 1200px;
}

.w-120px {
    width: 120px;
}

.w-350px {
    width: 350px;
}

.w-500px {
    width: 500px;
}

.w-400px {
    width: 400px;
}

.gap-24 {
    gap: 24px;
}

.p-24-32 {
    padding: 24px 32px;
}

.p-22-18 {
    padding: 22px 18px;
}

.tag-color {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    color: var(--highlighted-accent);
}

.b-r-50 {
    border-radius: 50%;
}

.h-w-44px {
    height: 44px;
    width: 44px;
}

.min-w-200px {
    min-width: 200px;
}

/* ----------------------------- Light & Dark mode ------------------------------- */
.light-dark-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    color: var(--text-disabled);
    transition: none;
    cursor: pointer;
}

.light-dark-card:hover {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    background-color: var(--background-quaternary);
    border-radius: 4px;
    color: var(--text-secondary);
    transition: none;
}

.light-dark-card.active,
.light-dark-card:hover.active {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    background-color: #4180FF30;
    border-radius: 4px;
    color: var(--highlighted-accent);
}

.light-dark-card.active svg path,
.light-dark-card:hover.active svg path {
    stroke: var(--highlighted-accent)
}

.light-dark-card:hover svg path {
    stroke: var(--text-secondary)
}

/* ----------------------------- Import ------------------------------- */

.import-data-line {
    border: 1px solid var(--line-primary);
    width: 34px;
}

.import-step-section {
    background: var(--background-tertiary);
}

.import-step-one {
    bottom: -28px;
    left: 0px;
}

.import-step-two {
    bottom: -28px;
    left: -33px;
}

.import-step-three {
    bottom: -28px;
    right: 0px;
}

/* ----------------------------- Buttons ------------------------------- */

.btn {
    outline: none;
    width: fit-content;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 4px;
    box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.04),
        -1px -1px 2px 0px rgba(0, 0, 0, 0.04);
    transition: none;
    text-wrap: nowrap;
}

.btn-sm {
    padding: 10px 16px;
}

.btn-md {
    padding: 12px 18px;
}

.btn-lg {
    padding: 15px 18px;
}

.btn-xl {
    padding: 17px 24px;
}

.btn-primary {
    border: none;
    background: var(--primary-accent);
    color: #fff !important;
    box-shadow: none;
    outline: none;
}

.btn-primary:hover {
    box-shadow: 0px 2px 4px 0px #30303030, 0px 0px 1px 0px #12141930;
    outline: none;
    background: var(--highlighted-accent);
}

.btn-primary:focus,
.btn-primary:active,
.btn-primary:active:focus {
    box-shadow: 0px 2px 4px 0px #30303030, 0px 0px 1px 0px #12141930;
    outline: none;
    background: var(--highlighted-accent);
}

.btn-primary-none-fill {
    outline: none;
    padding: 6px 16px;
    outline: none;
    width: fit-content;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 4px;
    border: none;
    background: transparent;
    color: var(--text-secondary);
    text-wrap: nowrap;
}

.btn-primary-none-fill:hover {
    box-shadow: none;
    outline: none;
    border: none;
    background-color: var(--background-quaternary);
    color: var(--highlighted-accent);
}

.btn-primary-none-fill:focus,
.btn-primary-none-fill:active,
.btn-primary-none-fill:active:focus {
    box-shadow: none;
    outline: none;
    border: none;
    background-color: var(--background-primary);
    color: var(--highlighted-accent);
}

.btn-danger-none-fill {
    outline: none;
    padding: 6px 16px;
    outline: none;
    width: fit-content;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 4px;
    border: none;
    background: transparent;
    color: var(--error-accent);
    text-wrap: nowrap;
}

.btn-danger-none-fill:hover,
.btn-danger-none-fill:focus,
.btn-danger-none-fill:active,
.btn-danger-none-fill:active:focus {
    box-shadow: none;
    outline: none;
    border: none;
    background-color: #DC262620;
    color: var(--error-accent);
}


.btn-secondary {
    border: none;
    border: 1px solid var(--line-secondary);
    background: var(--background-primary);
    color: var(--highlighted-accent) !important;
}

.btn-secondary:hover {
    border: none;
    box-shadow: 0px 1px 1px 0px #30303030, 0px 0px 1px 0px #00000030;
    border: 1px solid var(--line-secondary);
    outline: none;
    background: var(--background-tertiary);
    color: var(--highlighted-accent) !important;
}

.btn-secondary:focus,
.btn-secondary:active,
.btn-secondary:active:focus {
    border: none;
    box-shadow: 0px 1px 1px 0px #30303030, 0px 0px 1px 0px #00000030;
    border: 1px solid var(--highlighted-accent);
    outline: none;
    background: var(--background-primary);
    color: var(--highlighted-accent) !important;
}

.btn-outline-primary {
    border: 1px solid var(--line-secondary);
    color: var(--highlighted-accent);
    background-color: transparent;
    user-select: none;

}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active,
.btn-outline-primary:active:focus {
    background-color: transparent;
    box-shadow: none;
    outline: none;
    border: 1px solid var(--line-secondary);
    color: var(--highlighted-accent);
}

.btn-link {
    box-shadow: none;
    outline: none;
    border: none;
    background-color: var(--white);
    color: var(--highlighted-accent);
    text-decoration: none;
}

.btn-link:hover {
    box-shadow: none;
    outline: none;
    border: none;
    color: var(--info-accent);
}

.btn-link:focus,
.btn-link:active,
.btn-link:active:focus {
    box-shadow: none;
    outline: none;
    border: none;
    color: var(--text-primary);
}

.btn-primary:disabled,
.btn-secondary:disabled,
.btn-outline-primary:disabled,
.btn-link:disabled {
    background-color: var(--background-disabled);
    background: var(--background-disabled);
    color: var(--text-disabled);
}

.btn-round {
    outline: none;
    border: 1px solid var(--line-primary);
    background-color: var(--white);
    box-shadow: 1px 1px 2px 0px #0000000a, -1px -1px 2px 0px #0000000a;
    width: 36px;
    height: 36px;
    border-radius: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-round:hover,
.btn-round:focus,
.btn-round:active,
.btn-round:active:focus {
    background-color: var(--background-quaternary);
}

.btn-round:hover svg path {
    stroke: var(--icon-primary);
}

.btn-round:hover svg circle {
    fill: var(--icon-primary);
}

.header-round-btn {
    border: 0px;
    outline: none;
    background-color: transparent;
    width: 36px;
    height: 36px;
    border-radius: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-round-btn:hover {
    background-color: var(--background-quaternary);
    box-shadow: 1px 1px 2px 0px #0000000a, -1px -1px 2px 0px #0000000a;
}

.header-round-btn:focus,
.header-round-btn:active,
.header-round-btn:active:focus {
    background-color: var(--background-primary);
    border: 1px solid var(--highlighted-accent);
}


.btn-group button,
.btn-group button:focus,
.btn-group button:hover {
    border: 1px solid var(--line-primary);
}

.cursor-pointer {
    cursor: pointer;
}

/* ----------------------------- Checkbox ------------------------------- */

.form-check-input {
    height: 18px;
    width: 18px;
    border: 1px solid var(--line-quaternary);
    margin: 4px;
    background-color: transparent;
}

.form-check-input[type="checkbox"] {
    border-radius: 2px;
}

.form-check-input:focus {
    box-shadow: none;
    border-color: var(--line-quaternary);
}

.form-check-input:checked {
    background-color: var(--highlighted-accent);
    border-color: var(--line-quaternary);
}

.form-check-input[type="checkbox"]:indeterminate {
    background-color: var(--highlighted-accent);
    border-color: var(--line-quaternary);
}

.form-check-input:checked {
    background-color: var(--highlighted-accent);
    border-color: var(--highlighted-accent);
}

.form-check-input:active {
    filter: none;
}

.form-check-input:focus {
    border-color: var(--line-quaternary);
    box-shadow: none;
}

.form-check-input:checked[type=checkbox] {
    --bs-form-check-bg-image: url("../images/right_Ic.svg");
}

/* --------------------------------- Input ------------------------------- */

.input-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.input-container label {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-primary);
}

.input-container .form-control {
    display: block;
    width: 100%;
    padding: 0.45rem 0.75rem;
    font-size: 18px;
    font-weight: 400;
    background-color: transparent;
    color: var(--text-primary);
    border: 1px solid var(--line-primary);
    background-clip: padding-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 4px;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.input-container .form-control:hover {
    color: var(--text-primary);
    background-color: var(--white);
    border: 1px solid var(--icon-primary);
    outline: 0;
    box-shadow: none;
}

.input-container .form-control:focus {
    color: var(--text-primary);
    background-color: var(--white);
    border: 1px solid var(--highlighted-accent);
    outline: 0;
    box-shadow: none;
}

.input-container .form-control::placeholder {
    font-size: 18px;
    font-weight: 400;
    color: var(--text-placeholder);
}

.input-container .form-control.disabled {
    font-size: 18px;
    font-weight: 400;
    color: var(--text-primary);
    background: var(--background-primary);
    pointer-events: none;
}

.input-container .input_icon {
    position: absolute;
    top: calc(50% - 13px);
    right: 13px;
    z-index: 2;
}

.input-icons {
    width: 100%;
    position: relative;
}

.input-container .input-icons .form-control {
    padding: 0.48rem 2.3rem 0.48rem 0.75rem;
}

.input-container .input_icon_r {
    position: absolute;
    top: calc(50% - 12px);
    left: 13px;
    z-index: 2;
}

.input-icons_r {
    width: 100%;
    position: relative;
}

.input-container .input-icons_r .form-control {
    padding: 0.48rem 2.3rem 0.48rem 0.75rem;
}

.input-container .ph-color::placeholder {
    color: var(--text-secondary) !important;
}

html[data-theme="dark"] input[type="date"],
html[data-theme="dark"] input[type="time"] {
    color-scheme: dark;
}

html[data-theme="dark"] input[type="datetime-local"] {
    color-scheme: dark;
}

/* Firefox, Chrome, Safari, Edge, Opera  */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
}

.form-select {
    display: block;
    width: 100%;
    padding: 0.45rem 0.75rem;
    font-size: 18px;
    font-weight: 400;
    color: var(--text-primary);
    background-color: transparent;
    background-clip: padding-box;
    border: 1px solid var(--line-primary);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 4px;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-select:hover {
    color: var(--text-primary);
    background-color: var(--white);
    border: 1px solid var(--icon-primary);
    outline: 0;
    box-shadow: none;
}

.form-select:focus {
    color: var(--text-primary);
    background-color: var(--white);
    border: 1px solid var(--highlighted-accent);
    outline: 0;
    box-shadow: none;
}

.form-select:disabled {
    display: block;
    width: 100%;
    padding: 0.45rem 0.75rem;
    font-size: 18px;
    font-weight: 400;
    color: var(--text-disabled);
    background-color: var(--background-disabled);
    background-clip: padding-box;
    border: 1px solid transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 4px;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

/* --------------------------------- login ------------------------------- */

.main-logo {
    width: 200px;
    height: 31px;
    object-fit: contain;
}

.main-logo-traders-chip {
    padding: 6px 8px;
    background-color: var(--chip-bg-cancel);
    color: var(--text-secondary);
    font-size: 12px;
    font-weight: 500;
    line-height: 16.39px;
    letter-spacing: 0.23em;
    text-transform: uppercase;
}

.login-container {
    height: calc(100dvh - 164px);
    overflow-y: auto;
    padding-top: 70px;
    padding-bottom: 20px;
    width: 100%;
}

.width-40p {
    width: 40%;
}

.width-60p {
    width: 60%;
}

.auth-body {
    height: 100dvh;


    /* background: url('../images/backgroundlogin.png');
  background-position: top;
  background-size: 130%;
  background-repeat: no-repeat;
  background-color: var(--background-white); */
}

.auth-info-card {
    background-color: var(--chip-bg-info);
    padding: 12px;
    border-radius: 4px;
}


.gap-12 {
    gap: 12px !important;
}

.gap-40 {
    gap: 40px !important;
}

.gap-6 {
    gap: 6px !important;
}

.width-400px {
    width: 400px !important;
}

.auth-header {
    padding: 42px 58px;
}

.auth-main-bg {
    height: 100%;
    background-image: url(../images/loginMainIMG.png);
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: 100% 400px;
}

.gradient-text {
    background: linear-gradient(90deg, #0066FF 0%, #7C2BFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.auth-main {
    padding-top: 84px;
    padding-bottom: 0px;
    padding-left: 58px;
    height: 100%;
    height: calc(100dvh - 122px);
    overflow-y: auto;
}

.login-container .login-body {
    max-width: 500px;
    width: 100%;
}

.login-container_ {
    height: calc(100dvh - 64px);
    overflow-y: auto;
    padding-top: 70px;
    padding-bottom: 20px;
    width: 100%;
}

.login-container_ .login-body {
    max-width: 500px;
    width: 100%;
}

.login-footer {
    position: absolute;
    bottom: 0px;
    width: 100%;
    background-color: var(--chip-bg-warning);
    padding: 8px;
    color: var(--line-primary);
}

.login-separator {
    display: flex;
    align-items: center;
    text-align: center;
}

.login-separator::before,
.login-separator::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid var(--background-quinary);
    padding-top: 4px;
}

.login-separator:not(:empty)::before {
    margin-right: 12px;
    margin-left: 55px;
}

.login-separator:not(:empty)::after {
    margin-left: 12px;
    margin-right: 55px;
}

.login-social-button {
    padding: 10px 0px;
    border-radius: 4px;
    background-color: var(--white);
    border: 1px solid var(--background-quinary);
    color: var(--text-primary);
}

.otp-field {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
}

.otp-field input {
    width: 50px;
    height: 50px;
    text-align: center;
    display: block;
    font-size: 20px;
    font-weight: 500;
    color: var(--text-primary);
    background-color: var(--white);
    background-clip: padding-box;
    border: 1px solid var(--line-primary);
    background-clip: padding-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 4px;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.otp-field input:focus,
.otp-field input:active {
    color: var(--text-primary);
    background-color: var(--white);
    border: 1px solid var(--line-primary);
    outline: 0;
    box-shadow: none;
}

.otp-field input:hover {
    color: var(--text-primary);
    background-color: var(--white);
    border: 1px solid var(--icon-primary);
    outline: 0;
    box-shadow: none;
}

.otp-field input.active {
    color: var(--text-primary);
    background-color: var(--white);
    border: 1px solid var(--highlighted-accent);
    outline: 0;
    box-shadow: none;
}

.signup-step-round {
    height: 8px;
    width: 8px;
    border-radius: 16px;
    background-color: var(--line-primary);
}

.signup-step-round.active {
    background-color: var(--highlighted-accent);
}

/* --------------------------------- Header Sidebar layout ------------------------------- */

.wrapper {
    width: auto;
    position: relative;
    background-color: var(--background-white);
}

.top-header .navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--background-white);
    background-clip: padding-box;
    height: 60px;
    z-index: 10;
    padding: 0px 24px;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--line-primary);
    margin-left: 89px;
}

.top-header .navbar.active {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--background-white);
    background-clip: padding-box;
    height: 60px;
    z-index: 10;
    padding: 0px 24px;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--line-primary);
    margin-left: 227px;
    /* margin-left: 273px; */
}

.header-plus-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--primary-accent);
    background-color: var(--black);
    width: 28px;
    height: 28px;
    border-radius: 51px;
}

.top-header-second .navbar {
    /* position: fixed;
  top: 0;
  left: 0;
  right: 0; */
    width: 100%;
    background-color: var(--background-white);
    background-clip: padding-box;
    height: 60px;
    z-index: 10;
    padding: 0px 24px;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sidebar-toggle-btn {
    width: fit-content;
    border: 0px;
    outline: none;
    background: transparent;
    transform: rotate(0deg);
    /* transition: all 0.4s ease-in-out; */
}

.sidebar-wrapper {
    position: fixed;
    top: 0px;
    left: 0;
    width: 90px;
    height: 100%;
    background-color: var(--background-white);
    background-clip: padding-box;
    transition: all 0.2s;
    z-index: 16;
    padding: 24px 10px 24px 18px;
    border-right: 1px solid var(--line-primary);
}

.sidebar-wrapper .sidebar-header {
    display: flex;
    justify-content: center;
    align-items: center;
}

.open-sidebar-logo {
    display: none;
}

.sidebar-wrapper.active .open-sidebar-logo {
    display: block;
}

.sidebar-wrapper.active .close-sidebar-logo {
    display: none;
}

.sidebar-wrapper .sidebar-header {
    margin-bottom: 20px;
}

.sidebar-wrapper.active .sidebar-header {
    margin-bottom: 16px;
    margin-right: 10px;
}

.navbar.active .sidebar-toggle-btn {
    transform: rotate(-180deg);
    /* transition: all 0.4s ease-in-out; */
}

.no-transition {
    transition: none !important;
}

.sidebar-wrapper.active {
    width: 227px;
    /* width: 273px; */
}

.page-content.active {
    margin-left: 227px;
    /* margin-left: 273px; */
}

.sidebar-scroll {
    padding-right: 8px;
    width: 100%;
    height: calc(100% - 100px);
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
}

.sidebar-scroll {
    --sb-thumb-color: var(--background-disabled);
    --sb-size: 5px;
    scrollbar-color: var(--background-disabled);
}

.sidebar-scroll::-webkit-scrollbar {
    width: 6px;
}

.sidebar-scroll::-webkit-scrollbar-track {
    border-radius: 9px;
}

.sidebar-scroll::-webkit-scrollbar-thumb {
    border: 1px solid var(--background-disabled);
    background: var(--white);
    border-radius: 9px;
}

/* .sidebar-wrapper .sidebar-menu:nth-child(3) {
    height: 100%;
    align-items: flex-start;
}

.sidebar-wrapper .sidebar-menu:nth-child(4) {
    border: 0;
    padding-bottom: 0;
    margin-bottom: 0;
} */

.sidebar-wrapper .sidebar-menu>ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.sidebar-wrapper .sidebar-menu>ul>li {
    margin: 8px auto;
    width: 50px;
    height: 36px;
    display: grid;
}

.sidebar-wrapper.active .sidebar-menu>ul>li {
    padding: 6px 8px;
    /* margin: 16px auto; */
    width: 100%;
    place-items: start;
}

.sidebar-wrapper .sidebar-menu {
    width: 100%;
    border-bottom: 1px solid var(--line-primary);
    display: flex;
    justify-content: center;
    align-items: center;
}

.sidebar-wrapper.active .sidebar-menu {
    border-bottom: none;
    padding-bottom: 8px;
    /* margin-bottom: 8px; */
    /* margin: 8px auto; */
    /* padding-bottom: 16px; */
    /* margin-bottom: 16px; */
}

.sidebar-wrapper .sidebar-menu .menu-item {
    display: flex;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    align-items: center;
    width: 100%;
}

.sidebar-wrapper.active .sidebar-menu .menu-item {
    display: flex;
    justify-content: start;
    gap: 8px;
    text-decoration: none;
    align-items: center;
    width: 100%;
}

.sidebar-wrapper .sidebar-menu .menu-item svg {
    width: 20px;
    height: 20px;
}

.sidebar-wrapper.active .sidebar-menu {
    justify-content: flex-start;
}

.sidebar-section-title {
    display: none;
}

.sidebar-wrapper.active .sidebar-section-title {
    display: block;
    color: var(--text-disabled);
    font-size: 14px;
    font-weight: 500;
    padding: 0px;
    margin: 6px 0px 6px 8px;
}

.sidebar-wrapper .sidebar-menu .menu-item span {
    display: none;
    color: var(--text-secondary);
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    text-wrap: nowrap;
}

.sidebar-wrapper.active .sidebar-menu .menu-item span {
    display: block;
    color: var(--text-primary);
}

/* Setting Sidebar */
.sidebar-section-title-setting {
    display: block;
    color: var(--text-disabled);
    font-size: 14px;
    font-weight: 500;
    margin: 12px 0px;
}

.sidebar-wrapper .sidebar-menu-setting>ul {
    list-style: none;
    padding: 0;
    margin: 0px 10px;
    width: 100%;
    border-left: 2px solid var(--background-disabled);
}

.sidebar-wrapper .sidebar-menu-setting>ul>li {
    padding: 6px 0px;
}

.sidebar-wrapper .sidebar-menu-setting>ul>li:hover {
    background: var(--background-quaternary);
    border-radius: 0px 8px 8px 0px;
}

.sidebar-wrapper .sidebar-menu-setting>ul>li>a {
    padding: 0px 8px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    color: var(--text-primary);
    border-left: 2px solid transparent;
    display: block;
}

.sidebar-wrapper .sidebar-menu-setting>ul>li.active_>a {
    border-left: 2px solid var(--highlighted-accent);
    display: block;
}

.setting-page-content {
    margin-top: 60px;
    margin-left: 226px;
    overflow-y: auto;
    height: calc(100dvh - 60px);
    background-color: var(--white);
    transition: all 0.2s;
    padding: 24px 32px;
}

/* organization manage */

.org-manage-card {
    width: fit-content;
    height: fit-content;
    border: 1px solid var(--line-secondary);
    padding: 16px 12px;
}

.org-manage-card.active {
    border: 2px solid var(--highlighted-accent);
    background: #2160E115;
}

.sidebar-org-profile {
    border-top: 1px solid var(--line-primary);
    height: 100px;
    width: 100%;
    padding-right: 8px;
    padding-top: 8px;
}

.sidebar-org-profile .sidebar-org-profile-align {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.sidebar-wrapper.active .sidebar-org-profile .sidebar-org-profile-align {
    justify-content: space-between;
}

.sidebar-org-profile-img {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 4px;
    border: 1px solid var(--line-primary);
    box-shadow: 1px 1px 2px 0px #0000000a, -1px -1px 2px 0px #0000000a;
}

.sidebar-org-profile-img>img {
    min-width: 34px;
    max-width: 34px;
    min-height: 34px;
    max-height: 34px;
    object-fit: contain;
}

.sidebar-wrapper .sidebar-org-title {
    display: none;
}

.sidebar-wrapper.active .sidebar-org-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* hover */

.sidebar-wrapper .sidebar-menu>ul>li:hover {
    background-color: var(--background-quaternary);
    border-radius: 4px;
}

.sidebar-wrapper .sidebar-menu>ul>li:hover .menu-item svg path {
    fill: var(--icon-primary);
}

.sidebar-wrapper .sidebar-menu>ul>li:hover .menu-item span {
    color: var(--text-primary);
}

/* active */

.sidebar-wrapper .sidebar-menu>ul>li.active_ {
    background: var(--background-quaternary);
    border-radius: 4px;
}

.sidebar-wrapper .sidebar-menu>ul>li .menu-item .unactive-icon {
    display: block;
}

.sidebar-wrapper .sidebar-menu>ul>li .menu-item .active-icon {
    display: none;
}

.sidebar-wrapper .sidebar-menu>ul>li.active_ .menu-item .active-icon {
    display: block;
}

.sidebar-wrapper .sidebar-menu>ul>li.active_ .menu-item .unactive-icon {
    display: none;
}


.sidebar-wrapper .sidebar-menu>ul>li.active_ .menu-item span {
    color: var(--text-primary);
}

/* organization manage Setting */

.sidebar-org-profile-setting {
    height: 70px;
    box-shadow: 1px 1px 2px 0px #0000000a, -1px -1px 2px 0px #0000000a;
    border: 1px solid var(--line-secondary);
}

/* Page Content */

.page-content {
    margin-top: 60px;
    margin-left: 90px;
    overflow-y: auto;
    height: calc(100dvh - 60px);
    background-color: var(--white);
    transition: all 0.2s;
}

.page-content.page-cpadding {
    padding: 18px 32px 24px 32px;
}

.page-content-header {
    padding: 18px 24px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.page-content-second {
    margin-top: 60px;
    overflow-y: auto;
    height: calc(100dvh - 60px);
    background-color: var(--white);
    border-top: 1px solid var(--line-primary);
    transition: all 0.2s;
}

.page-content-second .page-content-header {
    padding: 10px 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* .content-body-second {
    padding: 32px 40px;
    background-color: var(--background-white);
    height: calc(100dvh - 120px);
    overflow-y: auto;
    overflow-x: hidden;
} */

.content-body {
    /* padding: 32px 40px; */
    background-color: var(--background-primary);
    height: calc(100dvh - 122px);
}

.manage-content-body {
    padding: 44px 0px 29px 0px;
    background-color: var(--white);
    height: calc(100dvh - 120px);
    overflow-y: auto;
    overflow-x: hidden;
}

.add-card {
    overflow-y: auto;
    height: calc(100dvh - 170px);
    border-radius: 0px;
    padding: 0px 36px;
    margin: 24px 0px;
    width: 100%;
}

.add-card-details {
    padding-right: 15px;
    overflow-x: hidden;
}

.add-card-sidebar {
    width: 250px;
    padding: 24px;
}

.nav-pills .nav-link {
    padding: 0px;
}

.nav-pills .nav-link.active {
    color: var(--highlighted-accent) !important;
    background: transparent;
}

.add-card-sidebar {
    list-style-type: none;
}

.add-card-white {
    background: var(--white);
    box-shadow: var(--shadow-add-card) !important;
    padding: 32px 44px;
    border-radius: 8px;
    width: 100%;
}

.add-card-sidebar li a:hover {
    color: var(--highlighted-accent) !important;
}

.sticky-section {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10;
}

.sticky-section+.content-body {
    padding-top: 102px;
}

/* --------------------------------- breadcrumb custom ------------------------------- */

.breadcrumb {
    margin: 0px;
}

.breadcrumb-item {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary) !important;
    text-decoration: none;
}

.breadcrumb-item>a {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary) !important;
    text-decoration: none;
}

.breadcrumb-item.active {
    font-size: 12px;
    font-weight: 500;
    color: var(--highlighted-accent) !important;
    text-decoration: none;
}

.breadcrumb-item+.breadcrumb-item::before {
    padding-right: 5px;
    color: var(--text-secondary);
    content: ">";
}

.breadcrumb-item+.breadcrumb-item {
    padding-left: 5px;
}

/* --------------------------------- Dropdown custom ------------------------------- */

.dropdown .dropdown-manage {
    background-color: var(--background-primary);
    border: 0px;
    width: 263px;
    padding: 8px 0px 0px 0px;
    border-radius: 4px;
    box-shadow: 0px 8px 16px 0px #12141930, 0px 0px 1px 0px #00000030;
    color: var(--text-primary);
}

.dropdown .dropdown-menu-custom {
    min-width: 200px;
    width: fit-content;
    border: 0px;
    box-shadow: 0px 4px 4px 0px #0000001F;
    padding: 0px;
    margin: 0px;
    background-color: var(--white);
}

.dropdown .dropdown-menu-custom .dropdown-item {
    color: var(--text-primary);
    padding: 8px 16px;
}

.dropdown .dropdown-menu-custom .dropdown-item:focus,
.dropdown .dropdown-menu-custom .dropdown-item:hover,
.dropdown .dropdown-menu-custom .dropdown-item:active {
    text-decoration: none;
    background-color: var(--background-tertiary);
}

.dropdown-outline-primary-toggle {
    padding: 6px 16px 6px 0px;
    outline: none;
    width: fit-content;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 4px;
    border: none;
    background: transparent;
    color: var(--text-secondary);
}

.dropdown-outline-primary-toggle:hover {
    color: var(--highlighted-accent);
}

.dropdown-outline-primary-toggle::after {
    content: url("../images/downprimary.svg");
    margin-left: 5px;
    margin-top: -4px;
    position: relative;
    top: 7px;
    border-top: none;
    border-left: none;
}

.dropdown-icon-remove-toggle::after {
    content: none;
}

.dropdown-secondary-toggle::after {
    content: url("../images/downsecondary.svg");
    margin-left: 5px;
    margin-top: -4px;
    position: relative;
    top: 7px;
    border-top: none;
    border-left: none;
}

.btn-primary-view {
    padding: 6px 16px 6px 16px;
    outline: none;
    width: fit-content;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 4px;
    border: none;
    background: transparent;
    color: var(--text-secondary);
}

.btn-primary-view:hover {
    color: var(--highlighted-accent);
    background-color: var(--background-quaternary);
}

.btn-primary-view:focus,
.btn-primary-view:active,
.btn-primary-view:focus-visible {
    color: var(--highlighted-accent);
    background-color: var(--background-primary);
}

.btn-primary-outline-text {
    color: var(--highlighted-accent);
}

.btn-primary-outline-text:hover {
    color: var(--highlighted-accent);
}

/* Search input */

.search-input::placeholder {
    font-size: 14px !important;
    font-weight: 400 !important;
    color: var(--text-placeholder) !important;
}

.search-input {
    font-size: 14px !important;
    font-weight: 400 !important;
    color: var(--text-primary) !important;
}

/* Tabs custom */

.outline-round-tabs .nav-item .nav-link {
    margin-right: 12px;
    border-radius: 22px;
    border: 1px solid var(--line-secondary);
    background-color: transparent;
    color: var(--text-secondary);
    font-size: 16px;
    font-weight: 500;
    padding: 4px 11px;
}

.outline-round-tabs .nav-item .nav-link.active {
    border: 1px solid var(--highlighted-accent);
    color: var(--highlighted-accent);
}

.tabs-line-custom {
    padding: 8px 0px 0px 32px;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    flex-wrap: nowrap;
    margin: 0px;
    border-bottom: 1px solid var(--line-primary);
}

.tabs-line-custom::-webkit-scrollbar {
    display: none;
}

.tabs-line-custom .nav-link {
    outline: none;
    border-top: none;
    border-right: none;
    border-left: none;
    background-color: transparent;
    color: var(--text-secondary);
    font-size: 16px;
    font-weight: 400;
    padding: 10px 20px 10px 20px;
    border-bottom: 3px solid transparent;
    text-wrap: nowrap;
    margin: 0px;
}

.tabs-line-custom .nav-link.active {
    color: var(--text-primary);
    border-bottom: 3px solid var(--highlighted-accent);
    padding: 11px 20px 9px 20px;
    background-color: transparent;
}

.tabs-body-content {
    padding: 32px;
    height: calc(100dvh - 300px);
    overflow-y: auto;
    overflow-x: hidden;
}

.details-card-view {
    padding: 32px;
    background-color: var(--white);
}

.upcoming-card-view {
    padding: 32px;
    background-color: var(--chip-bg-warning);
}

/* Tabs with title */

.tabs-title-custom .nav-link.active {
    font-weight: 400;
    font-size: 24px !important;
    color: var(--text-primary);
    border-bottom: 3px solid var(--highlighted-accent);
    padding: 8px 20px 0px 20px;
}

/* TABLE */

.table-container {
    margin-top: 20px;
    padding: 4px 0px 0px 0px;
    background-color: var(--white) !important;
}

.table-responsive.sticky-scroll {
    height: calc(100dvh - 195px);
    overflow-y: auto;
    position: relative;
    display: flex;
    flex-direction: column;
}

.table-responsive.sticky-scroll {
    max-height: calc(100dvh - 195px);
    overflow-y: auto;
    position: relative;
}

.table thead th {
    position: sticky;
    top: 0;
    z-index: 2;

    background-color: var(--white) !important;
    box-shadow:
        inset 0 1px 0 var(--line-primary),
        inset 0 -1px 0 var(--line-primary);
}

th {
    text-wrap: nowrap;
    height: 52px;
    font-size: 16px;
    font-weight: 400;
    line-height: 24.32px;
    letter-spacing: 1%;
    color: var(--text-primary) !important;
    background-color: var(--white) !important;

}

td {
    height: 52px;
    font-size: 16px;
    font-weight: 400;
    line-height: 24.32px;
    letter-spacing: 1%;
    color: var(--text-primary) !important;
    background-color: var(--white) !important;
}

.sortable-th-hover {
    position: relative;
    padding-right: 20px;
    /* space for icon */
    cursor: pointer;
}

.sortable-icon {
    position: absolute;
    right: 0px;
    top: calc(50% - 7px);
    transform: translateY(-50%);
    display: none;
    width: 14px;
    height: 14px;
}

.sortable-th-hover:hover .sortable-icon {
    display: inline-block;
}

.sortable-th-hover .dropdown-menu-custom.dropdown-profile {
    left: auto !important;
    right: 0 !important;
    width: fit-content !important;
    box-shadow: 0px 4px 4px 0px #0000001F !important;
}

.sortable-th-none-hover {
    position: relative;
    padding-right: 20px;
    /* space for icon */
    cursor: pointer;
}

.sortable-th-none-hover .sortable-icon {
    position: absolute;
    right: 0px;
    top: calc(50% - 7px);
    transform: translateY(-50%);
    display: block;
    width: 14px;
    height: 14px;
}

.sortable-th-none-hover .dropdown-menu-custom.dropdown-profile {
    left: auto !important;
    right: 0 !important;
    width: fit-content !important;
    box-shadow: 0px 4px 4px 0px #0000001F !important;
}

.table {
    border-bottom: 1px solid var(--line-primary);
    border-left: 1px solid var(--line-primary);
    border-right: 1px solid var(--line-primary);
}

.table> :not(caption)>*>* {
    padding: 10px 18px 10px 18px;
}

.table>thead>tr>* {
    border-bottom-width: 0px;
}

.table>thead,
.table>tbody {
    vertical-align: middle;
}

.table tbody tr:hover {
    /* cursor: pointer; */
    --bs-table-bg-state: var(--background-primary);
}

.table tbody tr td.details-ar {
    cursor: pointer;
}

/* .table tbody tr:hover td span {
  border-left: 1px solid var(--line-primary);
}

.table tbody tr td span {
  border-left: 1px solid transparent;
  padding: 0px 0px 0px 12px;
} */


.table-hover-border {
    display: flex;
    align-items: center;
}

.table tbody tr td .table-hover-border span {
    border-left: 1px solid transparent;
    padding-left: 12px;
    display: inline-block;
    height: 100%;
    min-height: 24px;
    /* ensures it shows at least */
}

.table tbody tr:hover td .table-hover-border span {
    border-left: 1px solid var(--line-primary) !important;
}

.table.table.all-Checked thead tr,
.table.all-Checked tbody tr,
.table .checked-row {
    --bs-table-bg-state: var(--background-primary);
}

.table-footer span {
    font-size: 14px;
    font-weight: 300;
    line-height: 16.94px;
    color: var(--text-primary);
}

.table-footer svg {
    cursor: pointer;
}

.read-more-show,
.read-more-hide {
    color: var(--highlighted-accent);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}

.table-desc-hide {
    display: none;
}

.read-more-btn {
    color: var(--highlighted-accent);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}

/* Popups Modal */
.modal-content {
    background-color: var(--background-white);
}

.modal-header {
    border-bottom: 1px solid var(--background-quinary);
}

.modal-body h5 {
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    line-height: 21.78px;
    color: var(--text-primary);
}

.modal-footer {
    border-top: none;
    box-shadow: 0px 4px 8px 0px #12141930, 0px 0px 1px 0px #00000030;
}

/* Timeline */

.timeline-border {
    width: 1px;
    height: 75px;
    background: var(--background-quinary);
}

/* Custom switch  */

.switch-container {
    display: flex;
    align-items: center;
}

.switch-container .toggle-switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 20px;
}

.switch-container .toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.switch-container .toggle-switch .toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: transparent;
    border-radius: 38px;
    transition: 0.4s;
    border: 1px solid var(--line-quaternary);
}

.switch-container .toggle-switch .toggle-slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 2px;
    bottom: 1px;
    background-color: var(--text-primary);
    border-radius: 50%;
    transition: 0.4s;
    border: 1px solid transparent;
}

.switch-container .toggle-switch input:checked+.toggle-slider {
    background-color: var(--highlighted-accent);
}

.switch-container .toggle-switch input:checked+.toggle-slider:before {
    transform: translateX(22px);
    background-color: var(--white);
}

.switch-container .toggle-switch input:disabled+.toggle-slider {
    background-color: var(--background-disabled);
    cursor: not-allowed;
}

.switch-container .toggle-switch input:disabled+.toggle-slider:before {
    background-color: var(--background-disabled);
}

.switch-container .toggle-switch input:disabled:checked+.toggle-slider {
    background-color: var(--background-disabled);
}

.switch-container .toggle-switch input:disabled:checked+.toggle-slider:before {
    transform: translateX(22px);
}

/* Offcanvas custome */

.offcanvas-custome {
    width: 550px !important;
    background-color: var(--background-white);
}

.offcanvas-custome .offcanvas-header {
    padding: 12px 18px 12px 18px;
    border-bottom: 1px solid var(--background-quinary) !important;
}

.offcanvas-custome .offcanvas-body .p32 {
    padding: 32px;
}

.offcanvas-custome .offcanvas-footer {
    box-shadow: 0px -4px 8px 0px #0000000a;
    padding: 18px 32px;
}

/* Filter bar section */

.filterbar-contents {
    padding: 18px 32px;
    height: calc(100dvh - 518px) !important;
    min-height: 200px;
    overflow-y: auto;
    overflow-x: hidden;
    background-color: var(--background-tertiary);
}

.filterbar-contents-chip {
    width: fit-content;
    border-radius: 50px;
    background: transparent;
    border: 1px solid var(--line-secondary);
    padding: 8px 11px;
    gap: 4px;
}

/* Images Upload with preview */

.file-upload .image-box {
    height: 100px;
    background: transparent;
    border: 1px dashed var(--highlighted-accent);
    border-radius: 4px;
    cursor: pointer;
    overflow: hidden;
    background: var(--background-quaternary);
}

.file-upload .image-box img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    display: none;
}

.file-upload .file-upload-text {
    position: relative;
    top: 0;
    color: var(--white);
}

/* Radio Button custom */

.form-check.radio-custom {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-left: 0;
}

.form-check.radio-custom label {
    color: var(--text-primary);
}

input[type="radio"] {
    -webkit-appearance: none;
    appearance: none;
    background-color: var(--background-primary);
    margin: 0;
    width: 18px;
    height: 18px;
    border: 1px solid var(--icon-primary);
    border-radius: 22px;
    transform: translateY(-0.075em);
    display: grid;
    place-content: center;
    cursor: pointer;
}

input[type="radio"]::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 22px;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    background-color: var(--highlighted-accent);
}

input[type="radio"]:checked {
    border: 3px solid var(--highlighted-accent);
}

input[type="radio"]:checked::before {
    transform: scale(1);
}

/* Input Date icon changes */

input[type="date"],
input[type="datetime-local"] {
    position: relative;
    padding: 10px;
}

input[type="date"]::-webkit-calendar-picker-indicator,
input[type="datetime-local"]::-webkit-calendar-picker-indicator {
    color: transparent;
    background: none;
    z-index: 1;
}

input[type="date"]:before,
input[type="datetime-local"]:before {
    background: none;
    display: block;
    content: url("../images/dateIcon.svg");
    width: 15px;
    height: 20px;
    position: absolute;
    top: 10px;
    right: 14px;
}

input[type="date"].is-invalid,
.was-validated .form-control:invalid,
input[type="datetime-local"].is-invalid,
.was-validated .form-control:invalid,
input[type="time"].is-invalid,
.was-validated .form-control:invalid {
    background-position: right calc(.375em + 1.7rem) center;
}

/* Input Time icon changes */

input[type="time"] {
    position: relative;
    padding: 10px;
}

input[type="time"]::-webkit-calendar-picker-indicator {
    color: transparent;
    background: none;
    z-index: 1;
}

input[type="time"]:before {
    background: none;
    display: block;
    content: url("../images/timeicon.svg");
    /* This is the calendar icon in FontAwesome */
    width: 15px;
    height: 20px;
    position: absolute;
    top: 10px;
    right: 14px;
}

/* Attachment drag & drop */

#drop-area__ {
    border: 2px dashed var(--line-tertiary);
    border-radius: 4px;
    padding: 18px;
    cursor: pointer;
    background-color: var(--background-quaternary);
}

#drop-area__ .drop-area__box {
    border-radius: 4px;
    cursor: pointer;
    background-color: var(--white);
    padding: 8px;
}

#drop-area__ .drop-area__box label {
    border-radius: 4px;
    cursor: pointer;
    background-color: transparent;
    padding: 6px 12px;
    border: none;
    outline: none;
    color: var(--highlighted-accent);
    font-size: 14px;
    font-weight: 600;
}

#drop-area__ .drop-area__box label:hover {
    color: var(--highlighted-accent);
}

#drop-area__ .drop-area__box ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#drop-area__ .drop-area__box ul li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
}

#file-list__ {
    list-style: none;
    padding: 0;
}

/* Horizontal Tabs Custom */

.horizontal-custom-tab .nav-link {
    outline: none;
    border: none;
    background: transparent;
    padding: 16px 20px 16px 20px !important;
    color: var(--text-primary);
    border-bottom: 1px solid var(--line-primary);
}

.horizontal-custom-tab .nav-link.active {
    border-left: 4px solid var(--highlighted-accent);
    padding: 16px 20px 16px 16px !important;
    background: var(--white);
}

.horizontal-custom-tab .nav-link:hover {
    border-left: 4px solid var(--highlighted-accent);
    padding: 16px 20px 16px 16px !important;
    background: #EDEEF3;
}

.horizontal-custom-tab .nav-link.active .avatar-border {
    /* border: 2px solid var(--highlighted-accent); */
    border-radius: 50%;
}

.horizontal-custom-tab .nav-link .avatar-border {
    border: 2px solid transparent;
    border-radius: 50%;
}

/* Tooltips Custom */

[data-tooltip] {
    position: relative;
    z-index: 1;
}

[data-tooltip]::before,
[data-tooltip]::after {
    position: absolute;
    display: none;
    opacity: 0.95;
}

[data-tooltip]::before {
    content: attr(data-tooltip);
    background: var(--icon-primary);
    color: var(--white);
    font-size: 13px;
    padding: 5px;
    border-radius: 5px;
    /* we don't want the text to wrap */
    white-space: nowrap;
    text-decoration: none;
    line-height: normal;
}

[data-tooltip]::after {
    width: 0;
    height: 0;
    border: 6px solid transparent;
    content: "";
}

[data-tooltip]:hover::before,
[data-tooltip]:hover::after {
    display: block;
}

/** positioning **/

/* left tooltip */
[data-tooltip][data-placement="left"]::before {
    top: -25%;
    right: 100%;
    margin-right: 10px;
}

[data-tooltip][data-placement="left"]::after {
    border-left-color: var(--icon-primary);
    border-right: none;
    top: 50%;
    right: 100%;
    margin-top: -6px;
    margin-right: 4px;
}

/* right tooltip */
[data-tooltip][data-placement="right"]::before {
    top: -25%;
    left: 100%;
    margin-left: 10px;
    width: 200px;
    text-wrap: wrap;
}

[data-tooltip][data-placement="right"]::after {
    border-right-color: var(--icon-primary);
    border-left: none;
    top: 50%;
    left: 100%;
    margin-top: -6px;
    margin-left: 4px;
}

/* top tooltip */
[data-tooltip][data-placement="top"]::before {
    bottom: 100%;
    left: 0;
    margin-bottom: 10px;
}

[data-tooltip][data-placement="top"]::after {
    border-top-color: var(--icon-primary);
    border-bottom: none;
    bottom: 100%;
    left: 10px;
    margin-bottom: 4px;
}

/* bottom tooltip */
[data-tooltip][data-placement="bottom"]::before {
    top: 100%;
    left: 0;
    margin-top: 10px;
}

[data-tooltip][data-placement="bottom"]::after {
    border-bottom-color: var(--icon-primary);
    border-top: none;
    top: 100%;
    left: 10px;
    margin-top: 4px;
}

/* ------ Charts of Account---------- */

.coa-tree {
    padding: 0px;
    margin: 0px;
}

ul {
    list-style-type: none;
}

.coa-tree input:not(.tree-row-checkbox) {
    position: absolute;
    clip: rect(0, 0, 0, 0);
}

.coa-tree .tree-row-checkbox:checked {
    border: transparent;
}

.coa-tree .tree-row-checkbox {
    margin: 0;
}

.coa-tree input~ul {
    display: none;
}

.coa-tree input:checked~ul {
    display: block;
}

/* ————————————————————–
    Tree rows
  */

.coa-tree li {
    line-height: 1.2;
    position: relative;
    padding: 0 0 1em 1.5em;
}

.coa-tree ul li {
    padding: 1em 0 0 2.3em;
}

.coa-tree>li:last-child {
    padding-bottom: 0;
}

.coa-tree li {
    list-style-image: url("../images/.svg");
    /* list-style-image: none; */
}

/* ————————————————————–
    Tree labels
  */

.tree_label {
    position: relative;
    display: inline-block;
    width: 100%;
    /* border-bottom: 1px solid var(--line-primary); */
}

label.tree_label {
    cursor: pointer;
}

label.tree_label:hover {
    color: #666;
}

label.tree_label .row>.col,
label.tree_label~ul>li>span.tree_label .row>.col {
    padding: 10px 12px;
}

/* ————————————————————–
    Tree expanded icon
  */

label.tree_label:before {
    background: url("../images/rolesOpen.svg");
    color: var(--white);
    position: relative;
    z-index: 1;
    float: left;
    margin: 0 1em 0 -1.3em;
    width: 20px;
    height: 20px;
    /* border-radius: 1em; */
    content: "";
    text-align: center;
    line-height: 0.9em;
    left: 1.4rem;
    top: 1.3rem;
}

:checked~label.tree_label:before {
    background: url("../images/rolesClose.svg");
}

/* ————————————————————–
    Tree branches
  */

.coa-tree .parentNode:before {
    content: initial;
}

.coa-tree li:before {
    position: absolute;
    top: -2rem;
    bottom: 0;
    left: 3em;
    display: block;
    width: 0;
    border-left: 1px dashed var(--line-secondary);
    height: 100%;
    content: "";
}

:checked~ul>li>.tree_label:after {
    position: absolute;
    top: 1rem;
    left: -6em;
    display: block;
    height: 0.5em;
    width: 1.5em;
    content: "";
    /* background: url("../images/tree_arrow.svg") center center no-repeat; */
}

.coa-tree li:last-child:before {
    /* height: 1em; */
    bottom: auto;
}

.coa-tree>li:last-child:before {
    display: none;
}

/* Seting style */

.setting-selection-layout {
    padding: 32px 72px;
    border-top: 1px solid var(--line-primary);
    background: var(--white);
}

.setting-selection-layout-card {
    padding: 20px 16px;
    border: 1px solid var(--line-primary);
    background: var(--white);
    border-radius: 4px;
    min-height: 180px;
    height: 100%;
}

.setting-selection-layout-card:hover {
    background: var(--background-primary);
    border: 1px solid var(--line-secondary);
    box-shadow: 0px 2px 8px 0px #0000000F;
}


.twitter-typeahead {
    width: 100%;
}

/* Email screen */

.email-input {
    background: transparent;
    font-weight: 400;
    font-size: 16px;
    border: 0px;
    outline: none;
}

.email-input-chip {
    background: var(--chip-bg-cancel);
    padding: 4px 6px;
    font-weight: 400;
    font-size: 16px;
    border-radius: 4px;
}

/* General Style */

.manage-hover-bg:hover {
    background-color: var(--background-tertiary);
}

.org-manage-hover-bg {
    border-left: 3px solid transparent;
}

.org-manage-hover-bg.active {
    border-left: 3px solid var(--highlighted-accent);
}

.org-manage-hover-bg:hover {
    background-color: var(--background-tertiary);
}

input[type="color"] {
    border: none;
    background-color: transparent;
    width: 50px;
    height: 44px;
    outline: none;
}

.error {
    color: red;
}

.error_label {
    color: red;
}

.pointer_none {
    pointer-events: none;
}

/* ============= Broker =================== */

.onboarding-stepchip {
    padding: 4px 8px;
    font-size: 14px;
    font-weight: 400;
    color: var(--highlighted-accent);
    background-color: #F1F3F9;
    border-radius: 22px;
}

.onboarding-animation {
    height: 400px;
    overflow-y: auto;
}

.onboarding-animation::-webkit-scrollbar {
    display: none;
}

.write-title-input {
    padding: 6px 8px;
    outline: none;
    border: none;
    border-bottom: 1px solid var(--line-primary);
    font-size: 22px;
    font-weight: 400;
    color: var(--text-primary);
    background-color: transparent;
}

.write-title-input::placeholder {
    font-size: 22px;
    font-weight: 400;
    color: var(--text-placeholder);
}

#hidden-set-reminder {
    display: none;
}

.nextfollowup-icon {
    width: 20px;
    height: 20px;
    border-radius: 40px;
    background: var(--chip-bg-success);
    display: flex;
    justify-content: center;
    align-items: center;
}

.allfollowup-icon {
    width: 20px;
    height: 20px;
    border-radius: 40px;
    background: var(--chip-bg-warning);
    display: flex;
    justify-content: center;
    align-items: center;
}

.status-icon {
    width: 20px;
    height: 20px;
    border-radius: 40px;
    background: var(--chip-bg-info);
    display: flex;
    justify-content: center;
    align-items: center;
}

.p32 {
    padding: 0px 32px;
}

.tags-chip-view {
    padding: 8px 12px;
    background-color: var(--background-tertiary);
    border-radius: 4px;
}

.upcoming-time-chip-view {
    width: fit-content;
    padding: 4px 8px;
    background-color: var(--chip-bg-error);
    border-radius: 50px;
}

.upcoming-activities-icon {
    min-height: 32px;
    min-width: 32px;
    border-radius: 40px;
    background-color: #EAB30820;
    display: flex;
    justify-content: center;
    align-items: center;
}

.upcoming-follow-textbox {
    padding: 8px 16px;
    border-left: 3px solid var(--highlighted-accent);
    background: var(--background-primary);
}

.previou-follow-textbox {
    padding: 8px 16px;
    border-left: 3px solid var(--success-accent);
    background: var(--chip-bg-success);
}

.on-hold-chip {
    padding: 4px 16px 4px 16px;
    gap: 6px;
    border-radius: 22px;
    background: var(--chip-bg-warning);
    color: #713F12;
    font-size: 14px;
    font-weight: 500;
}

.profile-chip-gray {
    width: fit-content;
    padding: 4px 8px;
    background: var(--chip-bg-cancel);
    border-radius: 22px;
}

.profile-chip-gray img {
    max-width: 16px;
    min-width: 16px;
    max-height: 16px;
    min-height: 16px;
    border-radius: 50%;
    object-fit: contain;
}

.high-chip {
    width: fit-content;
    padding: 4px 8px;
    gap: 6px;
    border-radius: 22px;
    background: var(--chip-bg-error);
    color: var(--error-accent);
    font-size: 16px;
    font-weight: 500;
}

.paid-chip {
    width: fit-content;
    padding: 4px 8px;
    gap: 6px;
    border-radius: 22px;
    background: var(--chip-bg-success);
    color: var(--success-accent);
    font-size: 14px;
    font-weight: 800;
}

.profile-option:hover {
    background: var(--background-tertiary);
    border-radius: 8px;
}

.profile-option:hover .profile-option-icon {
    display: block;
}

.profile-option-icon {
    display: none;
}

/* -------------- Dropdown custom ------------- */

.broker-create-view {
    padding: 34px 44px;
    display: flex;
    flex-direction: column;
    gap: 34px;
}

.broker-create-view-footer {
    padding: 21px 32px;
    background: var(--white);
    box-shadow: 0px -4px 8px 0px #0000000A;
}

/* -------------- Dropdown custom ------------- */

.convert-accordion {
    --bs-accordion-border-color: none;
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 700px;
}

.convert-accordion .accordion-item {
    border-bottom: 1px solid var(--line-primary);
    padding-bottom: 32px;
}

.convert-accordion .accordion-button {
    border: none !important;
    outline: none !important;
    margin-top: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
}

.convert-accordion .accordion-button>span {
    margin-left: 8px;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
}

.convert-accordion .accordion-button:focus {
    z-index: 0 !important;
    border-color: none !important;
    outline: 0 !important;
    box-shadow: none !important;
}

.convert-accordion .accordion-button:not(.collapsed) {
    margin-top: 0px;
    padding-top: 0px;
    border: none !important;
    outline: none !important;
    background-color: transparent !important;
}

.convert-accordion .accordion-header .accordion-button::after {
    background-image: url("/images/downprimary.svg");
    width: 18px;
    height: 18px;
    background-repeat: no-repeat;
    background-size: 18px;
    position: absolute;
    top: 2px;
    left: 0px;
}

.accordion-item:last-of-type {
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
}

.convert-accordion .accordion-body {
    margin: 0px;
    padding: 0px;
    padding-top: 24px;
    margin-left: 28px;
}

/* = */

.upload-container {
    width: 100%;
    height: 400px;
}

#drop-area {
    height: 100%;
    border: 2px dashed var(--highlighted-accent);
    padding: 30px;
    background-color: var(--background-secondary);
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s;

}


/* Unique class for the table */
.import-excel-table {
    width: 100%;
    margin: 20px auto;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
}

/* Unique class for header cells */
.import-excel-header {
    background-color: var(--highlighted-accent) !important;
    color: var(--white) !important;
    font-weight: 500;
    font-size: 16px;
    text-align: center;
    padding: 10px;
    border: 1px solid var(--line-primary);
}

/* Unique class for body cells */
.import-excel-body {
    text-align: center;
    padding: 12px 32px;
    font-weight: 500;
    font-size: 16px;
    color: var(--text-primary);
    border: 1px solid var(--line-primary);
}

.import-excel tr:nth-child(even) .import-excel-body {
    border: 1px solid var(--line-primary);
}

.import-mapped-field-card {
    min-width: 225px;
    padding: 18px 20px 18px 20px;
    gap: 20px;
    border-radius: 4px;
    background: var(--chip-bg-success);
    border-left: 6px solid var(--success-accent);
}

.import-unmapped-field-card {
    min-width: 225px;
    padding: 18px 20px 18px 20px;
    gap: 20px;
    border-radius: 4px;
    background: var(--chip-bg-warning);
    border-left: 6px solid var(--warning-accent);
}

.task-dropdown-border {
    border: 1px dashed var(--line-primary) !important;
    padding: 4px 12px !important;
    color: var(--text-placeholder) !important;
}


#list.active,
#kanban.active {
    display: block;
}


/* ========================= Loading ========================= */
/* Full-screen overlay */
#loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    /* or rgba(0,0,0,0.5) for dark overlay */
    display: none;
    /* Hidden by default */
    justify-content: center;
    align-items: center;
    z-index: 9999;
    /* On top of everything */
    pointer-events: all;
    /* Blocks interactions */
}

/* Spinner style */
.spinner {
    width: 60px;
    height: 60px;
    border: 6px solid var(--line-primary);
    border-top: 6px solid var(--highlighted-accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Animation */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


/* ========================= Kanban view ========================= */

.Kanban-layout {
    min-width: 328px;
    max-width: 328px;
    background-color: #F3F6FB;
    border-radius: 4px;
    padding: 8px;
}

.Kanban-layout-card {
    width: 100%;
    background-color: var(--white);
    padding: 16px 8px;
    border: 1px solid var(--line-primary);
    border-radius: 4px;
}

.Kanban-layout-card:hover {
    box-shadow: 0px 2px 4px 0px #30303030, 0px 0px 1px 0px #12141930;
}

/* ========================= Digital Card view ========================= */

.digital-card-view {
    box-shadow: 3px 3px 6px 0px #00000005, -3px -3px 4px 0px #00000005;
    border: 1px solid var(--line-primary);
    background: var(--white);
    border-radius: 4px;
    padding: 24px 18px;
    height: 100%;
    width: 100%;
}

.digital-inner-card-view {
    background: var(--background-secondary);
    padding: 14px 16px;
    border-radius: 4px;
}

/* ========================= snackbar / Toster ========================= */
#snackbar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    visibility: hidden;
    min-width: 520px;
    margin-left: -260px;
    background-color: var(--success-accent);
    color: var(--white);
    text-align: center;
    border-radius: 2px;
    padding: 8px 14px;
    border-radius: 4px;
    position: fixed;
    z-index: 1;
    left: 50%;
    top: 20px;
}


#snackbar.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@-webkit-keyframes fadein {
    from {
        top: 0;
        opacity: 0;
    }

    to {
        top: 20px;
        opacity: 1;
    }
}

@keyframes fadein {
    from {
        top: 0;
        opacity: 0;
    }

    to {
        top: 20px;
        opacity: 1;
    }
}

@-webkit-keyframes fadeout {
    from {
        top: 20px;
        opacity: 1;
    }

    to {
        top: 0;
        opacity: 0;
    }
}

@keyframes fadeout {
    from {
        top: 20px;
        opacity: 1;
    }

    to {
        top: 0;
        opacity: 0;
    }
}

/* ========================= Dashboard ========================= */

.dashboard-card-view {
    box-shadow: 3px 3px 6px 0px #00000005, -3px -3px 4px 0px #00000005;
    border: 1px solid var(--line-primary);
    background: var(--white);
    border-radius: 4px;
    padding: 14px 24px;
    width: 100%;
}

/* Tabs custom */

.dashboard-outline-round-tabs .nav-item .nav-link {
    margin-right: 12px;
    border-radius: 22px;
    border: 1px solid var(--line-primary);
    background-color: transparent;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 400;
    padding: 4px 16px;
}

.dashboard-outline-round-tabs .nav-item .nav-link.active {
    font-size: 14px;
    font-weight: 400;
    border: 1px solid var(--highlighted-accent);
    background: var(--highlighted-accent);
    color: var(--white);
}

.tags-input {
    border: 0px;
    outline: none;
}

.btn-danger-hover:hover {
    border-color: var(--highlighted-accent);
    background: var(--highlighted-accent);
}

#profile-manage-content {
    display: none;
}

/* Notification card */

.notification-card {
    padding: 16px 24px;
}

.avatars {
    display: flex;
    margin-left: 10px;
    width: fit-content;
}

.avatars__item {
    border: 2px solid var(--white);
    border-radius: 100%;
    color: var(--white);
    display: block;
    height: 30px;
    width: 30px;
    text-align: center;
    transition: margin 0.1s ease-in-out;
    overflow: hidden;
    margin-left: -12px;
}

.avatars__item:first-child {
    z-index: 5;
}

.avatars__item:nth-child(2) {
    z-index: 4;
}

.avatars__item:nth-child(3) {
    z-index: 3;
}

.avatars__item:nth-child(4) {
    z-index: 2;
}

.avatars__item:nth-child(5) {
    z-index: 1;
}

.avatars__item:last-child {
    z-index: 0;
}

.avatars__item img {
    width: 100%;
}

.avatars:hover .avatars__item {
    margin-right: 12px;
}

.setting-roles-card {
    background: var(--white);
    border: 1px solid var(--line-primary);
    box-shadow: 0px 2px 4px 0px #30303030, 0px 0px 1px 0px #12141930;
    padding: 10px 18px;
    border-radius: 8px;
    width: fit-content;
    z-index: 1;
    /* display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 8px; */
}

.setting-roles-card-btn-h {
    display: none;
}

.setting-roles-card:hover+.setting-roles-card-btn-h {
    display: flex;
    align-items: center;
    gap: 12px;
}

.setting-roles-card-btn-h:hover {
    display: flex;
    align-items: center;
    gap: 12px;
}

.setting-roles-card-btn {
    height: 24px;
    width: 24px;
    border-radius: 50%;
    border: 1px solid var(--line-secondary);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    color: #87ceeb;
}

.setting-user-active {
    padding: 4px 16px 4px 16px;
    gap: 6px;
    border-radius: 22px;
    background: var(--chip-bg-success);
    color: var(--success-accent);
    font-size: 14px;
    font-weight: 500;
}

.setting-user-inactive {
    padding: 4px 16px 4px 16px;
    gap: 6px;
    border-radius: 22px;
    background: var(--background-disabled);
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 500;
}

.modules-numbering-card {
    border: 1px solid var(--line-primary);
    background: var(--background-primary);
    border-radius: 6px;
    padding: 14px 24px;
}

.modules-numbering-card>.modules-numbering-card-list {
    border: 1px solid var(--line-primary);
    background: var(--white);
    border-radius: 4px;
}

.required {
    color: var(--error-accent);
}

/* Subscription Plan */

.subscription-plan-card {
    border: 1px solid var(--line-primary);
    width: 100%;
    height: 100%;
    box-shadow: 0px 1px 1px 0px #30303030, 0px 0px 1px 0px #00000030;
    border-radius: 6px;
    overflow: hidden;
}

.subscription-plan-card .subscription-plan-card-title {
    padding: 4px 16px;
    background-color: var(--icon-primary);
    border-bottom: 1px solid var(--line-primary);
}

.subscription-plan-card.active {
    border: 1px solid var(--highlighted-accent);
    width: 100%;
    box-shadow: 0px 1px 1px 0px #30303030, 0px 0px 1px 0px #00000030;
    border-radius: 6px;
    overflow: hidden;
    background-color: transparent;
}

.subscription-plan-card.active .subscription-plan-card-title {
    padding: 4px 16px;
    background-color: var(--highlighted-accent);
    border-bottom: 1px solid var(--line-primary);
}

.subscription-selecte-plan {
    border: 1px solid var(--background-disabled);
    width: 100%;
    background-color: var(--highlighted-accent);
    padding: 0px 4px;
}

.resources-card {
    border: 1px solid var(--background-disabled);
    padding: 16px 20px;

}

.product-selection-card {
    border: 1px solid var(--line-primary);
    background: var(--background-primary);
    backdrop-filter: blur(50px);
    padding: 14px 22px;
}

.product-selection-card:hover {
    background: var(--background-tertiary);
    border: 1px solid var(--line-primary);
}

/* media query  */

@media (max-width: 1550px) {
    .login-container {
        padding-top: 30px;
    }
}

.word-break {
    word-break: break-all;
    /* word-break: keep-all */
}

.setting-user-secondary {
    padding: 4px 16px;
    gap: 6px;
    border-radius: 22px;
    background: var(--background-disabled);
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 500;
}

/* Chip */

.chip-cancel {
    color: var(--cancel-accent);
    background-color: var(--chip-bg-cancel);
    width: fit-content;
    padding: 0px 8px;
    gap: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 32px;
    border-radius: 22px;
    font-size: 12px;
    font-weight: 500;

}

.chip-orange {
    color: var(--orange-accent);
    background-color: var(--chip-bg-orange);
    width: fit-content;
    padding: 0px 8px;
    gap: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 32px;
    border-radius: 22px;
    font-size: 12px;
    font-weight: 500;
}

.chip-info {
    color: var(--info-accent);
    background-color: var(--chip-bg-info);
    width: fit-content;
    padding: 0px 8px;
    gap: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 32px;
    border-radius: 22px;
    font-size: 12px;
    font-weight: 500;
}

.chip-warning {
    color: var(--warning-accent);
    background-color: var(--chip-bg-warning);
    width: fit-content;
    padding: 0px 8px;
    gap: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 32px;
    border-radius: 22px;
    font-size: 12px;
    font-weight: 500;
}

.chip-success {
    color: var(--success-accent);
    background-color: var(--chip-bg-success);
    width: fit-content;
    padding: 0px 8px;
    gap: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 32px;
    border-radius: 22px;
    font-size: 12px;
    font-weight: 500;
}

.chip-error {
    color: var(--error-accent);
    background-color: var(--chip-bg-error);
    width: fit-content;
    padding: 0px 8px;
    gap: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 32px;
    border-radius: 22px;
    font-size: 12px;
    font-weight: 500;
}

/* Firefox, Chrome, Safari, Edge, Opera  */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
}

.mentation-screen-bg {
    background: url(../images/mentationBG_light.svg) no-repeat center center;
    background-size: cover;
    /* image proportion ke sath poore screen cover karega */
    height: 100dvh;
    /* viewport ki full height */
    width: 100%;
    /* viewport ki full width */
}

.property-create-selection {
    height: 100px;
    width: 100px;
    background-color: var(--background-secondary);
    border: 1px solid var(--highlighted-accent);
    border-radius: 4px;
}

.add-follow-up-hidden {
    display: none;
}

.property-dashboard-dots {
    height: 10px;
    width: 10px;
    border-radius: 100%;
    background-color: var(--black);
}

.property-search-bg-img {
    position: absolute;
    bottom: 0px;
    right: 0px;
}

.property-search-section {
    padding-top: 93px;
    max-width: 70%;
    margin: 0px auto;
}

.property-search-section-box {
    padding: 14px 16px;
    background-color: var(--white);
    border: 1px solid var(--line-primary);
    box-shadow: 0px 4px 8px 0px #00000014;
    border-radius: 4px;

}

.property-search-section-box-input {
    outline: none;
    border: none;
    background-color: transparent;
    color: var(--text-primary);
}

.property-search-section-box-input::placeholder {
    color: var(--text-placeholder);
    font-size: 14px;
    font-weight: 400;
}

.property-previous-search-section {
    border: 1px solid var(--line-primary);
    padding: 9px 11px;
    border-radius: 22px;
    color: var(--text-secondary);
}

.property-previous-search-section.active {
    border: 1px solid var(--highlighted-accent);
    color: var(--highlighted-accent);
}

.property-listing-section-box {
    padding: 8px 24px;
    border: 1px solid var(--line-primary);
    box-shadow: none;
    border-radius: 4px;
}

.property-listing-card-section {
    border-radius: 4px;
    position: relative;
}

.property-listing-card-section-hover {
    display: none;
    position: absolute;
    z-index: 1;
    top: 0px;
    left: 0px;
    border-radius: 4px !important;
    overflow: hidden;
}

.property-listing-card-section:hover .property-listing-card-section-hover {
    display: block;
    position: absolute;
    z-index: 1;
    top: 0px;
    left: 0px;
}

.property-listing-card-section.active .property-listing-card-section-hover {
    display: block;
    position: absolute;
    z-index: 1;
    top: 0px;
    left: 0px;
}

.property-listing-card-section-hover-checkbox {
    position: absolute;
    top: 24px;
    left: 31px;
}

.property-listing-card-img-chip-sale {
    background-color: var(--chip-bg-success);
    padding: 4px 16px;
    border-radius: 22px;
    width: fit-content;
    color: var(--success-accent);
    font-weight: 500;
    font-size: 12px;
    position: absolute;
    bottom: 9px;
    left: 5px;
}

.property-listing-card-img-chip-rent {
    background-color: var(--chip-bg-orange);
    padding: 4px 16px;
    border-radius: 22px;
    width: fit-content;
    color: var(--orange-accent);
    font-weight: 500;
    font-size: 12px;
    position: absolute;
    bottom: 9px;
    left: 5px;
}

.property-details-chip-success {
    border: 1px solid var(--success-accent);
    padding: 4px 16px;
    border-radius: 22px;
    width: fit-content;
    color: var(--success-accent);
    font-weight: 500;
    font-size: 12px;
}

.property-details-chip-warning {
    border: 1px solid var(--warning-accent);
    padding: 4px 16px;
    border-radius: 22px;
    width: fit-content;
    color: var(--warning-accent);
    font-weight: 500;
    font-size: 12px;
}

.property-details-sticky {
    border-top: 1px solid var(--line-primary);
    position: sticky;
    top: 0;
    height: calc(100dvh - 200px);
    overflow-y: auto;
    z-index: 10;
}

.property-details-tab-list {
    padding: 6px 24px;
    width: 250px;
    border-right: 1px solid var(--line-primary);
    height: 100%;
}

.custom-pills .nav-link {
    text-align: start;
    padding: 10px 0px;
    font-weight: 500;
    font-size: 16px;
    color: var(--text-secondary);
}

.custom-pills .nav-link.active {
    color: var(--highlighted-accent);
}

.custom-pills-content {
    padding: 35px 70px;
}

.property-details-project-image {
    border: 2px solid var(--line-primary);
    border-radius: 4px;
    padding: 8px;
}

.property-details-project-image .position-relative {
    position: relative;
}

.property-details-project-image .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    /* darken image */
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
}

.property-details-project-image .more-count {
    color: var(--white);
    font-size: 20px;
    font-weight: 600;
    backdrop-filter: blur(1px);
}

.property-details-project-image .last-image {
    filter: brightness(70%);
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.property-details-project-image .position-relative:hover .last-image {
    transform: scale(1.02);
}

.property-details-chip-amenities {
    background-color: var(--chip-bg-cancel);
    padding: 4px 12px;
    border-radius: 22px;
    width: fit-content;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 12px;
}

.no-data-found-empty {
    outline: none;
    width: fit-content;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 8px;
    box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.04),
        -1px -1px 2px 0px rgba(0, 0, 0, 0.04);
    transition: none;
    text-wrap: nowrap;
    padding: 8px 14px;
    background: #cccccc30;
}


.timeline-btn {
    margin-right: 12px;
    border-radius: 22px;
    border: 1px solid var(--line-primary);
    background-color: transparent;
    color: var(--text-secondary);
    font-size: 16px;
    font-weight: 500;
    padding: 4px 11px;
}

.timeline-btn.active {
    border: 1px solid var(--highlighted-accent);
    color: var(--highlighted-accent);
}

.ql-toolbar.ql-snow,
.ql-container.ql-snow {
    border: 1px solid var(--line-primary);
}

.progress-line {

    width: 80%;

    max-width: 500px;

    height: 4px;

    background: #dbe4ff;

    border-radius: 5px;

    overflow: hidden;

}



.progress-inner {

    width: 100%;

    height: 100%;

    background: linear-gradient(90deg, #2160E1 0%, #ffffff50 50%, #367fbb 100%);

    background-size: 200% 100%;

    animation: slide 1.5s linear infinite;

}



@keyframes slide {

    0% {

        background-position: 200% 0;

    }



    100% {

        background-position: -200% 0;

    }

}



.readonly-select .selectize-input.full {

    pointer-events: none;

    background-color: #e9ecef !important;

    cursor: not-allowed;

    opacity: 1;

}



.readonly-input {

    pointer-events: none;

    background-color: #e9ecef !important;

    cursor: not-allowed;

    opacity: 1;

}

#no-internet-or-wifi-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
}

#no-internet-or-wifi-popup .popup-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

#no-internet-or-wifi-popup .popup-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--background-white);
  border-radius: 16px;
  padding: 40px 50px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  min-width: 350px;
  max-width: 90%;
  z-index: 10000;
}

#no-internet-or-wifi-popup .popup-content img {
  width: 120px;
  height: auto;
  margin-bottom: 20px;
}

#no-internet-or-wifi-popup .popup-content h2 {
  color: var(--text-primary);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
}

#no-internet-or-wifi-popup .popup-content p {
  color: var(--text-secondary);
  font-size: 16px;
  margin: 0;
}