:root {
    --c-primary-bg: #eff3ff;
    --c-border-color: #d1d5db;
    --border-radius-8: 8px;
    --gray-700: #374151;
    --Gray-G-600: #4b5563;
    --Primary-P-500: #3862f9;
    --Gray-G-900: #111827;
}

body {
    font-family: "Lato", sans-serif;
}

input {
    background: #ffff;
}

input:focus {
    box-shadow: none !important;
}

.c-header-wrapper {
    padding: 24px 0;
    background: #ffff;

    .logo-wrpaper {
        max-width: 270px;
        max-height: 40px;

        img {
            width: 100%;
        }
    }
}

.c-main-content-wrpper {
    background: var(--c-primary-bg);
    padding: 24px;
    margin-top: 82px;
    min-height: calc(100vh - 82px);
}

.c-form-wrapper {
    padding: 40px;
    border-radius: var(--border-radius-8);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    background: #ffff;

    label {
        font-size: 14px;
        font-weight: 500;
        color: var(--gray-700);
    }

    .header-text {
        color: var(--Gray-G-900);
        text-align: center;
        font-size: 30px;
        font-style: normal;
        font-weight: 700;
        line-height: 38px;
        margin-bottom: 12px;
    }

    .sub-header {
        color: #4b5563;
        text-align: center;
        font-size: 16px;
        font-weight: 400;
        line-height: 24px;
        margin-bottom: 15px;
    }

    input {
        border: none;
        padding-left: 0;
        font-size: 16px;
        border-radius: var(--border-radius-8);
    }

    .input-group {
        border: 1px solid var(--c-border-color);
        background: #ffff;
        border-radius: var(--border-radius-8);

        .input-icon {
            padding: 11px 16px;
        }
    }

    .forget-password-wrapper {
        margin-bottom: 32px;
    }

    input[type="checkbox"] {
        border: 1px solid var(--c-border-color);
    }

    a {
        font-size: 14px;
        font-weight: 700;
        text-decoration: none;
    }

    .submit-btn {
        padding: 11px 24px;
        border-radius: var(--border-radius-8);
    }

    .bottom-section {
        margin-top: 32px;
        text-align: center;

        a {
            font-size: 14px;
            font-weight: 700;
            text-decoration: none;
        }

        span {
            color: var(--Gray-G-600);
            font-family: Lato;
            font-size: 14px;
            font-weight: 400;
            line-height: 20px;
        }
    }
}

.c-otp-form-wrapper {
    input {
        border: 1px solid var(--c-border-color);
        padding: 0;
        height: 48px;
        width: 48px;
        text-align: center;
    }

    .otp-middle {
        margin-bottom: 32px;
        text-align: center;
    }
}

.confirm-password-bottom {
    margin-bottom: 32px;
}

.role-section-wrapper {
    select {
        border-radius: var(--border-radius-8);
        color: #212529;
        font-size: 16px;
        font-weight: 400;
        line-height: 24px;
        height: 48px;
        border: 1px solid var(--c-border-color) !important;

        &:focus {
            box-shadow: none !important;
        }
    }
}

/*sidebar*/
.c-sidebar-wrapper {
    padding: 24px;
    background: #ffff;
    border-radius: var(--border-radius-8);
    /* height: calc(100vh - 132px); */

    ul {
        list-style: none;
        padding: 0;

        li {
            margin-bottom: 8px;

            a {
                padding: 12px 16px !important;
                border-radius: var(--border-radius-8) !important;
                display: flex;
                align-items: center;
                gap: 8px;
                color: var(--gray-700);
                font-size: 14px;
                font-style: normal;
                font-weight: 700;
                line-height: 20px;
                text-decoration: none;

                &:hover {
                    background: var(--Primary-P-500, #3862f9);
                    color: #ffff;

                    svg path {
                        stroke: #fff;
                    }
                }

                &.active {
                    background: var(--Primary-P-500, #3862f9);
                    color: #ffff;

                    svg path {
                        stroke: #fff;
                    }
                }
            }
        }
    }
}

/*dashboard*/
.avatar-wrapper {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    padding: 1px;
    border: 1px solid var(--c-border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--Gray-G-600);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;

    img {
        width: 100%;
        height: 100%;
    }
}

.dropdown-content-wrapper {
    border-radius: 12px;
    padding: 16px;
    border: none !important;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.15);

    .inner-avatar {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        padding: 1px;
        border: 1px solid var(--c-border-color);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--Gray-G-600);

        img {
            width: 100%;
            height: 100%;
        }
    }

    .dropdown-item {
        padding: 12px 16px !important;
        border-radius: var(--border-radius-8) !important;
        min-width: 188px;
        display: flex;
        align-items: center;
        gap: 8px;
        color: var(--gray-700);
        font-size: 14px;
        font-style: normal;
        font-weight: 700;
        line-height: 20px;

        &:hover {
            background: var(--Primary-P-500, #3862f9);
            color: #ffff;

            svg path {
                stroke: #fff;
            }
        }
    }
}

/*profile*/
.c-profile-wrapper {
    h2 {
        color: var(--Gray-G-900);
        font-size: 30px;
        font-weight: 700;
        line-height: 38px;
        margin-bottom: 24px;
    }

    .profile-header {
        padding: 24px;
        border-radius: var(--border-radius-8);
        background: #ffff;

        img {
            height: 112px;
            width: 112px;
            background: gainsboro;
            border-radius: var(--border-radius-8);
        }

        h2 {
            color: var(--Gray-G-900);
            font-size: 20px;
            font-style: normal;
            font-weight: 600;
            line-height: 30px;
            margin-bottom: 0;
        }

        label {
            border-radius: var(--border-radius-8);
            background: #3862f9;
            color: #fff;
            padding: 7px 16px;
            font-size: 12px;
            font-style: normal;
            font-weight: 700;
            line-height: 18px;
            display: flex;
            align-items: center;
            gap: 8px;
            width: fit-content;
            cursor: pointer;
        }
    }

    .general-information {
        padding: 24px;
        border-radius: var(--border-radius-8);
        background: #ffff;

        h3 {
            color: var(--Gray-G-900);
            font-size: 20px;
            font-style: normal;
            font-weight: 600;
            line-height: 30px;
            margin-bottom: 0;
        }

        input {
            height: 48px;
            border-radius: var(--border-radius-8);
        }

        button {
            background: #3862f9;
            padding: 11px 24px;
            border-radius: var(--border-radius-8);
            color: #fff;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 16px;
            font-weight: 700;
        }
    }

    .change-password-section {
        padding: 24px;
        border-radius: var(--border-radius-8);
        background: #ffff;

        h3 {
            color: var(--Gray-G-900);
            font-size: 20px;
            font-style: normal;
            font-weight: 600;
            line-height: 30px;
            margin-bottom: 0;
        }

        .change-password-btn {
            height: 56px;
            border-radius: var(--border-radius-8);
            background: #dae4ff;
            border: none;
            color: var(--Gray-G-900);
            font-size: 16px;
            font-weight: 700;
            line-height: 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            cursor: pointer;
            padding: 0 24px;
        }
    }
}

/*password modal*/
#changePasswordModal,
#forgotPasswordModal,
#resetPasswordModal,
#verifyOtpModal {
    .c-form-wrapper {
        padding-top: 0;
        box-shadow: none;

        h3 {
            font-size: 30px;
            margin-bottom: 12px;
        }
    }
}

/*subscription*/
.c-subscription-wrapper,
.c-main {
    .basic-plan-card {
        border: 1px solid #e5e7eb;
        background: #ffff;
        border-radius: 12px;

        .basic-plan-card-header {
            padding: 16px;
            border-bottom: 1px solid #e5e7eb;

            h3 {
                color: var(--Gray-G-900);
                font-size: 24px;
                font-weight: 700;
                line-height: 32px;
            }

            span {
                border-radius: 16px;
                border: 1px solid #dae4ff;
                background: #eff3ff;
                padding: 4px 12px;
                color: #3862f9;
                text-align: center;
                font-size: 14px;
                font-weight: 500;
                line-height: 20px;
            }

            .upgrade-plan-btn {
                border-radius: var(--border-radius-8);
                background: #3862f9;
                padding: 6px 16px;
                font-size: 12px;
                font-weight: 700;
                line-height: 18px;
                border: none;
                color: #ffff;
                display: flex;
                align-items: center;
                gap: 8px;
            }
        }

        .price {
            padding: 16px;

            h4 {
                span {
                    color: #1f2937;
                    font-size: 30px;
                    font-weight: 700;
                    line-height: 38px;
                }

                sub {
                    color: #4b5563;
                    font-size: 16px;
                    font-weight: 400 !important;
                    line-height: 24px;
                }
            }

            p {
                color: #4b5563;
                font-size: 16px;
                font-weight: 400;
                line-height: 24px;
                margin-bottom: 0;
            }
        }

        .show-pass-btn {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 6px 16px;
            border-radius: var(--border-radius-8);
            background: #eff3ff;
            gap: 8px;
            font-size: 12px;
            font-weight: 700;
            line-height: 18px;
        }

        .cancel-subscription {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 6px 16px;
            border-radius: var(--border-radius-8);
            background: #eff3ff;
            gap: 8px;
            border: 1px solid #ffc8c8;
            white-space: nowrap;
            color: #f93838;
            font-size: 12px;
            font-weight: 700;
            line-height: 18px;
        }

        .cancel_subscription_a {
            text-decoration: none !important;
        }
    }

    .subscription-table {
        width: 100%;
        border-collapse: separate;
        border-spacing: 0;
        background-color: #fff;
        border-radius: 8px;
        /* overflow: hidden; */
        /*box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);*/
        border: 1px solid #dae4ff;

        thead {
            background-color: #dae4ff;

            th {
                padding: 12px;
                text-align: left;
                font-size: 14px;
                font-weight: 600;
                line-height: 20px;

                &:first-child {
                    border-top-left-radius: 8px;
                }

                &:last-child {
                    border-top-right-radius: 8px;
                }
            }
        }

        tbody {
            tr {
                /*&:nth-child(even) {*/
                /*    background-color: #f2f2f2;*/
                /*}*/

                /*&:hover {*/
                /*    background-color: #e9ecef;*/
                /*}*/

                td {
                    padding: 12px;
                    text-align: left;
                    border-bottom: 1px solid #dae4ff;
                    color: #374151;
                    font-size: 14px;
                    font-weight: 400;
                    line-height: 20px;
                }
            }
        }

        .active-btn {
            padding: 2px 8px;
            border-radius: 16px;
            border: 1px solid #dae4ff;
            background: #eff3ff;
            color: #3862f9;
            text-align: center;
            font-size: 12px;
            font-weight: 500;
            line-height: 18px;
        }

        .cancel-btn {
            padding: 2px 8px;
            border-radius: 16px;
            border: 1px solid #fedf89;
            background: #fffaeb;
            text-align: center;
            font-size: 12px;
            font-weight: 500;
            line-height: 18px;
            color: #f79009;
        }

        .in-active-btn {
            padding: 2px 8px;
            border-radius: 16px;
            border: 1px solid #fecdca;
            background: #fef3f2;
            text-align: center;
            font-size: 12px;
            font-weight: 500;
            line-height: 18px;
            color: #b42318;
        }

        .dropdown-menu {
            border-radius: 12px;
            background: #fff;
            box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.15);
            padding: 12px;
            border: none;

            .dropdown-item {
                padding: 8px 16px;
                border-radius: var(--border-radius-8);
                color: #374151;
                font-size: 14px;
                font-weight: 700;
                line-height: 20px;
                /* margin-bottom: 10px; */

                &:hover {
                    background: #3862f9;
                    color: #fff;
                }
            }

            &:last-child {
                margin-bottom: 0 !important;
            }
        }
    }

    .list-header-text {
        color: #111827;
        font-size: 20px;
        font-weight: 600;
        line-height: 30px;
    }

    .add-api-btn {
        border-radius: var(--border-radius-8);
        background: #3862f9;
        border: none;
        color: #fff;
        font-size: 14px;
        font-weight: 700;
        line-height: 20px;
        padding: 10px 24px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .w-fitcontent {
        width: fit-content;
    }
}

#addApiKeyModal {
    .c-form-wrapper {
        padding-top: 0;
        box-shadow: none;

        input {
            height: 48px;
            padding: 0 16px;
        }
    }
}

.cancel-subscription {
    cursor: pointer;
}

.form_area {
    textarea:focus {
        outline: 0;
        box-shadow: none;
    }
}

.modal-header {
    .btn-close {
        padding: 16px;
    }
}

.modal-content {
    border-radius: 12px;

    .c-form-wrapper {
        padding-top: 0;

        .modal-body {
            padding: 0;
        }

        .modalBtn {
            margin-top: 28px;
        }
    }
}

#menu-btn,
#toggle-btn {
    display: none;
}

.logo-wrapper img {
    height: 28px;
}

@media (max-width: 767px) {
    #menu-btn,
    #toggle-btn {
        display: block;
        border: none;
        outline: none;
        background: transparent;
        cursor: pointer;
    }

    #toggle-btn {
        transform: translate(50%, -50%);
    }

    .c-sidebar-wrapper {
        position: fixed;
        left: 0;
        top: 0;
        height: 100vh;
        border-radius: 0px;
        z-index: 99;
        border-right: 1px solid #dae4ff;
        min-width: 320px;

        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
    }

    .c-sidebar-wrapper.active {
        transform: translateX(0);
    }

    .logo-wrapper img {
        height: 20px;
    }
}

@media (max-width: 450px) {
    .c-main-content-wrpper {
        padding: 12px;
    }

    .c-sidebar-wrapper {
        min-width: auto;
    }
}

/* masud bhai css */

.header {
    position: sticky;
    top: 0;
    z-index: 99;
    background: white;
}

.logout-button {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    color: inherit;
    cursor: pointer;
}

.logout-button:hover {
    background-color: var(--Primary-P-500, #3862f9);
    color: #fff;
}

.logout-button svg path {
    transition: stroke 0.3s ease;
    /* Smooth transition for stroke change */
}

.logout-button:hover svg path {
    stroke: #fff;
    /* Change SVG path stroke color on hover */
}

@media (max-width: 450px) {
    .c-header-wrapper {
        flex-direction: column;
        gap: 4px;
    }

    .logo-wrapper > img {
        height: 28px;
    }
}

.authheaderwrapper {
    position: sticky;
    top: 0;
    z-index: 99;
    background: #fff;
}

.c-profile-wrapper {
    /* height: 80vh; */
    overflow-y: auto;
    padding-right: 10px;
}

.c-profile-wrapper::-webkit-scrollbar {
    width: 8px;
}

.c-profile-wrapper::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.c-profile-wrapper::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.c-profile-wrapper::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.c-profile-wrapper {
    /* height: 80vh; */
    overflow-y: auto;
    padding-right: 10px;
}

.c-profile-wrapper::-webkit-scrollbar {
    width: 8px;
}

.c-profile-wrapper::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.c-profile-wrapper::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.c-profile-wrapper::-webkit-scrollbar-thumb:hover {
    background: #555;
}

@media (max-width: 575px) {
    .change-account .change-password-btn {
        flex-direction: column;
        align-items: start !important;
        height: auto !important;
        padding: 10px !important;
    }

    .change-account .change-email {
        width: 100%;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        margin-left: 0px !important;
    }

    .card-body {
        overflow: scroll;
    }
}

.cards-container > div {
    min-width: 250px !important;
}

@media screen and (max-width: 1000px) {
    .cards-container > div {
        width: 100% !important;
    }
}

@media screen and (max-width: 450px) {
    .row {
        width: 100% !important;
        --bs-gutter-x: 0rem !important;
    }

    .container {
        padding: 0 !important;
    }
}

.main-container {
    /* height: calc(100vh - 230px); */
    overflow-y: auto;
}

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

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #aaa;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.modal-header-sub {
    background-color: #fff !important;
    padding: 40px;
}

.modal-title-sub {
    color: #111827;
    font-size: 30px;
    font-weight: 700;
    line-height: 38px;
}

.modal-body-sub {
    padding: 0 40px;
    padding-top: 0px !important;
    padding-bottom: 40px !important;

    max-height: calc(100vh - 320px);
    overflow-y: auto;
}

.card {
    border: 1px solid #e9ecef;
    border-radius: 0.5rem;
    transition: transform 0.2s;
    overflow: hidden;
}

.card-header {
    background-color: #fff !important;
    color: #101828 !important;
}

.card-header {
    padding: 24px !important;
}

.cards-container .card-body {
    padding: 24px !important;
}

.card-body {
    padding: 24px 0 !important;
}

.card-title-price {
    font-size: 48px;
    font-weight: 600;
    line-height: 60px;
    letter-spacing: -0.96px;
}

.card-title-label,
.card-header p {
    color: #475467;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
}

.card-header p {
    margin-bottom: 0px;
}

.plan-name {
    color: #101828;
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    margin-top: 16px;
}

.label-features {
    color: #101828;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    margin-bottom: 24px;
}

/* .card-body ul {
    display: flex;
    flex-direction: column;
}

.card-body ul li {
    display: flex;
    align-items: center;
    gap: 12px;

    color: #1f2937 !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: 24px !important;
} */

.feature-value {
    font-weight: 700 !important;
    margin-left: 2px;
}

.btn {
    font-size: 16px;
    font-weight: 700 !important;
    line-height: 24px;
    padding: 12px 24px !important;
}

.dropdown .btn {
    padding: 6px !important;
    box-shadow: none !important;
    background: none;
}
.dropdown .btn:hover {
    background: #dae4ff;
    transition: 0.3s linear;
}
.dropdown .btn:focus {
    background: #dae4ff;

}

.btn-current-plan {
    background: #ffc130 !important;
    color: #1f2937 !important;
    cursor: not-allowed !important;
}

.btn-upgrade-to {
    background: #3862f9 !important;
}

.modal-header-sub .btn-close {
    margin: -3.5rem -1.5rem -0.5rem auto !important;
}

.card-footer-sub {
    padding: 24px !important;
    background-color: #fff !important;
}

@media (max-width: 600px) {
    .modal-header-sub {
        padding: 24px;
    }

    .modal-body-sub {
        padding: 0 24px !important;
        padding-bottom: 24px !important;
    }

    .modal-title-sub {
        font-size: 24px;
    }

    .modal-header-sub .btn-close {
        margin: -0.5rem -0.5rem -0.5rem auto !important;
    }
}

.dashboard-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    /*box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);*/
    border: 1px solid #dae4ff;

    thead {
        background-color: #dae4ff;

        th {
            padding: 12px;
            text-align: left;
            font-size: 14px;
            font-weight: 600;
            line-height: 20px;

            &:first-child {
                border-top-left-radius: 8px;
            }

            &:last-child {
                border-top-right-radius: 8px;
            }
        }
    }

    tbody {
        tr {
            /*&:nth-child(even) {*/
            /*    background-color: #f2f2f2;*/
            /*}*/

            /*&:hover {*/
            /*    background-color: #e9ecef;*/
            /*}*/

            td {
                padding: 12px;
                text-align: left;
                border-bottom: 1px solid #dae4ff;
                color: #374151;
                font-size: 14px;
                font-weight: 400;
                line-height: 20px;
            }
        }
    }

    .active-btn {
        padding: 2px 8px;
        border-radius: 16px;
        border: 1px solid #dae4ff;
        background: #eff3ff;
        color: #3862f9;
        text-align: center;
        font-size: 12px;
        font-weight: 500;
        line-height: 18px;
    }

    .cancel-btn {
        padding: 2px 8px;
        border-radius: 16px;
        border: 1px solid #fedf89;
        background: #fffaeb;
        text-align: center;
        font-size: 12px;
        font-weight: 500;
        line-height: 18px;
        color: #f79009;
    }

    .in-active-btn {
        padding: 2px 8px;
        border-radius: 16px;
        border: 1px solid #fecdca;
        background: #fef3f2;
        text-align: center;
        font-size: 12px;
        font-weight: 500;
        line-height: 18px;
        color: #b42318;
    }

    .dropdown-menu {
        border-radius: 12px;
        background: #fff;
        box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.15);
        padding: 12px;
        border: none;

        .dropdown-item {
            padding: 8px 16px;
            border-radius: var(--border-radius-8);
            color: #374151;
            font-size: 14px;
            font-weight: 700;
            line-height: 20px;
            margin-bottom: 10px;

            &:hover {
                background: #3862f9;
                color: #fff;
            }
        }

        &:last-child {
            margin-bottom: 0 !important;
        }
    }
}

a {
    text-decoration: none;
    color: inherit;
}

.icon {
    background-color: #eff3ff;
}

.modal-header-sub {
    background-color: #fff !important;
    padding: 40px;
}

.modal-title-sub {
    color: #111827;
    font-size: 30px;
    font-weight: 700;
    line-height: 38px;
}

.modal-body-sub {
    padding: 0 40px;
    padding-top: 0px !important;
    padding-bottom: 40px !important;

    max-height: calc(100vh - 320px);
    overflow-y: auto;
}

.card {
    border: 1px solid #e9ecef;
    border-radius: 0.5rem;
    transition: transform 0.2s;
    overflow: hidden;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}

.card-header {
    background-color: #fff !important;
    color: #101828 !important;
    border-bottom: none !important;
}

.card-header {
    padding: 24px !important;
}

.card-body {
    padding: 0 24px !important;
}

.card-title-price {
    font-size: 48px;
    font-weight: 600;
    line-height: 60px;
    letter-spacing: -0.96px;
}

.card-title-label,
.card-header p {
    color: #475467;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
}

.card-header p,
.card-title {
    margin-bottom: 0px;
}

.plan-name {
    color: #101828;
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    text-transform: capitalize;
}

.label-features {
    color: #101828;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    margin-bottom: 12px;
}

.list-unstyled {
    margin-bottom: 24px;
}

/* .card-body ul {
    display: flex;
    flex-direction: column;
} */

.dashboard-card-body {
    padding: 12px !important;
}

/* .card-body ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #e5e7eb;

    padding: 12px 0;
    color: #1f2937 !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: 24px !important;
} */

.feature-value {
    font-weight: 700 !important;
    margin-left: 2px;
}

.btn {
    font-size: 16px;
    font-weight: 700 !important;
    line-height: 24px;
    padding: 7px 20px !important;
}

.btn-current-plan {
    background: #ffc130 !important;
    color: #1f2937 !important;
    cursor: not-allowed !important;
}

.btn-upgrade-to {
    background: #3862f9 !important;
}

.modal-header-sub .btn-close {
    margin: -3.5rem -1.5rem -0.5rem auto !important;
}

.card-footer {
    padding: 24px !important;
    background-color: #fff !important;
    border-top: none !important;
}

.container .dashboard-card-body {
    padding: 12px 12px !important;
}

@media (max-width: 600px) {
    .modal-header-sub {
        padding: 24px;
    }

    .modal-body-sub {
        padding: 0 24px !important;
        padding-bottom: 24px !important;
    }

    .modal-title-sub {
        font-size: 24px;
    }

    .modal-header-sub .btn-close {
        margin: -0.5rem -0.5rem -0.5rem auto !important;
    }
}

/*
.main-container {
    height: calc(100vh - 230px);
    overflow-y: auto;
} */

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

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #aaa;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

@media (max-width: 767px) {
    body.sidebar-active .main-container,
    body.sidebar-active .alert-msg {
        opacity: 0.5;
        transition: opacity 0.3s;
        pointer-events: none;
    }
}

@media (max-width: 450px) {
    /* .main-container {
        height: calc(100vh - 108px);
    } */
}

.upgrade-plan-modal .modal-header {
    background-color: #fff !important;
    padding: 40px;
}

.upgrade-plan-modal .modal-title {
    color: #111827;
    font-size: 30px;
    font-weight: 700;
    line-height: 38px;
}

.upgrade-plan-modal .modal-body {
    padding: 0 40px;
    padding-top: 0px !important;
    padding-bottom: 40px !important;

    /* max-height: calc(100vh - 285px); */
    max-height: calc(100vh - 150px);
    overflow-y: auto;
}

.upgrade-plan-modal .card {
    border: 1px solid #e9ecef;
    border-radius: 0.5rem;
    transition: transform 0.2s;
    overflow: hidden;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}

.upgrade-plan-modal .card-header {
    background-color: #fff !important;
    color: #101828 !important;
    border-bottom: none !important;
}

.upgrade-plan-modal .card-header {
    padding: 24px !important;
}

.upgrade-plan-modal .card-body {
    padding: 0 24px !important;
}

.upgrade-plan-modal .card-title-price {
    font-size: 48px;
    font-weight: 600;
    line-height: 60px;
    letter-spacing: -0.96px;
}

.upgrade-plan-modal .card-title-label,
.card-header p {
    color: #475467;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
}

.upgrade-plan-modal .card-header p,
.card-title {
    margin-bottom: 0px;
}

.upgrade-plan-modal .plan-name {
    color: #101828;
    font-size: 32px;
    font-weight: 600;
    line-height: 30px;
    text-transform: capitalize;
}

.upgrade-plan-modal .label-features {
    color: #101828;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    margin-bottom: 12px;
}

.upgrade-plan-modal .list-unstyled {
    margin-bottom: 24px;
}

.upgrade-plan-modal .card-body ul {
    display: flex;
    flex-direction: column;
}

.upgrade-plan-modal .card-body ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #e5e7eb;

    padding: 12px 0;
    color: #1f2937 !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: 24px !important;
}

.feature-value {
    font-weight: 700 !important;
    margin-left: 2px;
}

.upgrade-plan-modal .btn {
    font-size: 16px;
    font-weight: 700 !important;
    line-height: 24px;
    padding: 12px 24px !important;
}

.upgrade-plan-modal .btn-current-plan {
    background: #ffc130 !important;
    color: #1f2937 !important;
    cursor: not-allowed !important;
}

.upgrade-plan-modal .btn-upgrade-to {
    background: #3862f9 !important;
}

.upgrade-plan-modal .modal-header .btn-close {
    margin: -3.5rem -1.5rem -0.5rem auto !important;
}

.upgrade-plan-modal .card-footer {
    padding: 24px !important;
    background-color: #fff !important;
    border-top: none !important;
}

table .dropdown-toggle::after {
    display: none !important;
}

table .dropdown button {
    background: transparent;
    border: none;
}

@media (max-width: 600px) {
    .upgrade-plan-modal .modal-header {
        padding: 24px;
    }

    .upgrade-plan-modal .modal-body {
        padding: 0 24px !important;
        padding-bottom: 24px !important;
    }

    .upgrade-plan-modal .modal-title {
        font-size: 24px;
    }

    .upgrade-plan-modal .modal-header .btn-close {
        margin: -0.5rem -0.5rem -0.5rem auto !important;
    }
}



.c-profile-wrapper {
    overflow-y: auto;
    padding-right: 10px;
}

.c-profile-wrapper::-webkit-scrollbar {
    width: 8px;
}

.c-profile-wrapper::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.c-profile-wrapper::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.c-profile-wrapper::-webkit-scrollbar-thumb:hover {
    background: #555;
}

@media (max-width: 575px) {
    .change-account .change-password-btn {
        flex-direction: column;
        align-items: start !important;
        height: auto !important;
        padding: 10px !important;
    }

    .change-account .change-email {
        width: 100%;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        margin-left: 0px !important;
    }
}
.list-group-flush li{
    padding-left: 0;
}

.btn-progress {
    position: relative;
    background-image: url("../../backend/img/spinner-white.svg") !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: 25px !important;
    color: transparent !important;
    pointer-events: none;
}

.main-container {

    overflow-y: auto;
}


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

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #aaa;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

@media (max-width: 767px) {

    body.sidebar-active .main-container,
    body.sidebar-active .alert-msg {
        opacity: 0.5;
        transition: opacity 0.3s;
        pointer-events: none;
    }
}

@media (max-width: 450px) {
    .main-container {
        /* height: calc(100vh - 108px); */
    }
}
.form-wrapper {
    min-width: 400px !important;
    overflow-y: auto;

}

/*
.c-main-content-wrpper {
    margin-top: 0 !important;
    padding-top: 60px;
    height: auto;

}
*/


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

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #aaa;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

@media (max-width: 450px) {
    .form-wrapper {
        min-width: 100% !important;
    }

    .c-form-wrapper {
        padding: 24px !important;
    }

    .name-container {
        flex-direction: column !important;
    }
}
.list-header-text a {
    color: #2267D4;
}
.header {
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 99;
    background: white;
}

.logout-button {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    color: inherit;
    cursor: pointer;
}

.logout-button:hover {
    background-color: var(--Primary-P-500, #3862F9);
    color: #fff;
}

.logout-button svg path {
    transition: stroke 0.3s ease;
}

.logout-button:hover svg path {
    stroke: #fff;
}

@media (max-width: 767px) {
    body.sidebar-active .header {
        opacity: 0.5;
        transition: opacity 0.3s;
        pointer-events: none;
    }
}

@media (max-width: 450px) {
    .logo-wrapper>img {
        height: 20px;
    }

    .name-wrapper {
        display: none;
    }

    .header {
        padding: 0 12px;
    }
}
.plan_card {
    border: 1px solid #e9ecef;
    border-radius: 0.5rem;
    transition: transform 0.2s;
}
.p_0px{
    padding : 0 !important;
}
.c-main-content-wrpper.auth {
    margin-top: 6px !important;
}
