/* ===============================
   Fonts  
=============================== */

/* open-sans Font Family */
@font-face {
    font-family: OpenSans_nd33;
    src: url(../fonts/open-sans/OpenSans-Regular.ttf) format("OpenType");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: OpenSans_nd33;
    src: url(../fonts/open-sans/OpenSans-Medium.ttf) format("OpenType");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: OpenSans_nd33;
    src: url(../fonts/open-sans/OpenSans-SemiBold.ttf) format("OpenType");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: OpenSans_nd33;
    src: url(../fonts/open-sans/OpenSans-Bold.ttf) format("OpenType");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Poppines Font Family */
@font-face {
    font-family: Poppines_nd33;
    src: url(../fonts/poppines/Poppins-Light.ttf) format("OpenType");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: Poppines_nd33;
    src: url(../fonts/poppines/Poppins-Regular.ttf) format("OpenType");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: Poppines_nd33;
    src: url(../fonts/poppines/Poppins-Medium.ttf) format("OpenType");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: Poppines_nd33;
    src: url(../fonts/poppines/Poppins-SemiBold.ttf) format("OpenType");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: Poppines_nd33;
    src: url(../fonts/poppines/Poppins-Bold.ttf) format("OpenType");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: __Fallback_wq0;
    src: url("Arial");
    line-gap-override: 0%;
    ascent-override: 110%;
    descent-override: 30%;
}

/* ===============================
   THeme Rules 
=============================== */

:root {
    --main-color: #4a8fc5;
    /* text color */
    --white-clr: white;
    --white-bg-clr: #f5f5f5;
    --black-clr: black;
    --primary-text-clr: #f6f6f6;
    --secondary-text-clr: #555555;
    --link-text-clr: #5899cc;
    --user-active-clr: #f3f3f3;
    /* button */
    --primary-color: #4c49ed;
    --danger-color: rgb(214, 23, 31);
    --main-btn: #4a8fc5;
    --step-primary: #cdd3d6;
    --step-color: #2b6491;
    --step-active-clr: #5dc665;

    /* table */
    --border-green: #00b087;
    --text-green: #008767;
    --bg-green: rgb(22, 192, 152);
    --border-light-gray: #eeeeee;
    --text-active-clr: #4b8b73;
    --btn-text-clr: #008654;
    --table-heading-bg: #e1f0fd;
    /* dashboard */
    --dash-active-clr: #2b6491;
    --dash-bg-clr: #fafbfc;
    --dash-list-clr: #737791;
    --dash-total-clr: #ffe2e5;
    --dash-subscrie-clr: #fff4de;
    --dash-commision-clr: #dcfce7;
    --dash-refferal-clr: #f3e8ff;
    --dash-card-clr: #425166;

    /* notification */
    --notification-clr: #fffaf1;
    --offline-clr: #eb5757;

    /* Dashboard Ticket colors */
    --total-ticket-text-clr: #ff5151;
    --total-ticket-bg-clr: #ffefe7;
    --pending-ticket-text-clr: #3786f1;
    --pending-ticket-bg-clr: #e8f0fb;
    --closed-ticket-text-clr: #ee61cf;
    --closed-ticket-bg-clr: #fdebf9;
    --open-ticket-bg-clr: #d7f3d1;
    --eye-color: #f07717;
    /* chat background color */
    --client-message-bg: #db9b0b;

    /* Product-color */
    --product-first-clr: #F44771;
    --product-second-clr: #FF9A3E;
    --product-third-clr: #332A7C;
    --product-four-clr: #52C05D;
    --social-icon-clr: #5C59F4;

    /* seller dashboard */
    --div-1-clr: #FF7193;
}

/* ===============================
   Basic Rules 
=============================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Poppines_nd33, __Fallback_wq0;
    line-height: 1.56;
    letter-spacing: 0.1px;
    word-spacing: 0.1px;
}

html {
    /* 10px = 1rem */
    font-size: 62.5%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    letter-spacing: 0.1px;
}

& h2 {
    font-size: 1.8rem;
}

h3 {
    font-size: 2rem;
}

p,
li,
a {
    /*color: var(--secondary-text-clr);*/
}

p {
    font-size: 1.4rem;
}

a {
    /*text-decoration: none;*/
    /*font-size: 1.6rem;*/
    /*display: block;*/
}

:is(button, input) {
    display: inline-block;
}

span {
    color: var(--main-color);
}

.form-control span:not(span[class="optional"])::after {
    content: "*";
    color: red;
}

table {
    width: 100%;
}

ul {
    list-style: none;
}

input,
select,
textarea {
    outline: none;
    width: 100%;
    padding: 1.4rem;
    border: 1px solid #e0e0e0;
    background: transparent;
    color: var(--secondary-text-clr);
    font-size: 1.4rem;
    border-radius: 4px;
    box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.05);
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}

input:valid~span,
input:focus~span,
select:valid~span,
select:focus~span,
textarea:valid~span,
textarea:focus~span {
    color: var(--secondary-text-clr);
    padding: 0 1rem;
    background-color: var(--white-clr);
    transform: translateX(5px) translateY(-20px);
    -webkit-transform: translateX(5px) translateY(-20px);
    -moz-transform: translateX(5px) translateY(-20px);
    -ms-transform: translateX(5px) translateY(-20px);
    -o-transform: translateX(5px) translateY(-20px);
}

button {
    border: none;
    outline: none;
    cursor: pointer;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

@media (width<=600px) {
    html {
        font-size: 56.25%;
    }
}

/* ===============================
   Layout Rules  
=============================== */

.container {
    max-width: 100%;
    margin: 0 auto;
    height: 100%;
    padding: 0;
}

.grid {
    display: grid;
}

.grid-col--two {
    grid-template-columns: repeat(2, 1fr);
}

.grid-col--four {
    grid-template-columns: repeat(4, 1fr);
}

.grid-col--five {
    grid-template-columns: repeat(5, 1fr);
}

/* ===============================
   Modules Rules
=============================== */

.main-heading {
    font-size: 3rem;
    font-weight: 400;
}

.title {
    font-size: 2rem;
}

.subtitle {
    font-size: 1.6rem;
    font-weight: 600;
}

.para {
    font-size: 1.6rem;
    font-family: OpenSans_nd33;
    font-weight: 600;
}

.para-white {
    color: var(--primary-text-clr);
}

.para-black {
    color: var(--black-clr);
}

.primary-btn {
    background-color: var(--main-btn);
    color: var(--white-clr);
}

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

.danger {
    background-color: var(--danger-color);
}

.form-control {
    position: relative;
    width: 100%;
}

.input-control {
    display: flex;
    gap: 1rem;

    & .adhar-details {
        width: 100%;
        display: flex;
        flex-direction: column;
        margin-top: 1rem;

        & span {
            color: var(--secondary-text-clr);
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

        & .upload-image-detail {
            display: flex;
            justify-content: space-between;
            gap: 2rem;
            border-radius: 4px;
            border: 1px dashed var(--secondary-text-clr);
            box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.05);
            align-items: center;
            -webkit-border-radius: 4px;
            -moz-border-radius: 4px;
            -ms-border-radius: 4px;
            -o-border-radius: 4px;

            & .adhar-info {
                display: flex;
                padding: 1rem;
                gap: 1rem;
                border-radius: 4px;
                -webkit-border-radius: 4px;
                -moz-border-radius: 4px;
                -ms-border-radius: 4px;
                -o-border-radius: 4px;

                & p {
                    font-size: 1.2rem;
                    white-space: nowrap;
                    overflow: hidden;
                    text-overflow: ellipsis;
                    width: 150px;
                }

                & img {
                    width: 30px;
                    height: 30px;
                }
            }

            & button {
                border: 1px solid var(--main-btn);
                color: var(--main-color);
                background-color: transparent;
                height: 45px;
                width: 100px;
                margin-right: 1rem;

                & label {
                    cursor: pointer;
                }
            }
        }
    }
}

.reffer-btn {
    padding: 1rem 3rem;
    font-size: 1.5rem;
    margin-top: 2rem;
}

& .faq-btn {
    padding: 1rem 3rem;
    font-size: 1.5rem;
}

& .image-detail {
    width: 100%;
    display: flex;
    gap: 2rem;
    padding: 0.4rem;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;

    & img {
        height: 35px;
        width: 35px;
        border-radius: 50%;
        border: 2px solid var(--main-color);
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -ms-border-radius: 50%;
        -o-border-radius: 50%;
    }

    & .button-group {
        & .button-up-re {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1rem;

            & button,
            & .btn-upload {
                padding: 0.6rem 3rem;
            }

            & .btn-upload {
                display: inline-block;
                width: 120px;
                font-size: 1.3rem;
                text-align: center;
                vertical-align: middle;
                border: 1px solid var(--main-btn);
                border-radius: 4px;
                cursor: pointer;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
            }
        }

        & .image-type {
            margin-top: 1rem;
        }
    }
}

& .search-options {
    display: flex;
    justify-content: space-between;
    margin-top: 1.5rem;
    padding: 0 1rem;

    & .search {
        position: relative;
        width: 100%;

        & input {
            padding: 1rem;
            width: 40%;
            text-indent: 3rem;
            border-radius: 10px;
            -webkit-border-radius: 10px;
            -moz-border-radius: 10px;
            -ms-border-radius: 10px;
            -o-border-radius: 10px;
        }

        & i {
            font-size: 1.5rem;
            position: absolute;
            top: 1.5rem;
            left: 2rem;
        }
    }

    & .search-category {
        position: relative;

        & button {
            height: 40px;
            width: 120px;
            border-radius: 10px;
            -webkit-border-radius: 10px;
            -moz-border-radius: 10px;
            -ms-border-radius: 10px;
            -o-border-radius: 10px;
        }

        & .search-dropdown {
            position: relative;
            display: inline-block;

            & .search-dropdown-content {
                display: none;
                position: absolute;
                background-color: var(--border-light-gray);
                color: var(--black-clr);
                border-radius: 5px;
                min-width: 115px;
                overflow: auto;
                right: 0;
                top: 4.5rem;
                box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
                z-index: 1;
                -webkit-border-radius: 5px;
                -moz-border-radius: 5px;
                -ms-border-radius: 5px;
                -o-border-radius: 5px;

                & a {
                    padding: 1rem;
                    text-align: center;
                }
            }

            .show {
                display: block;
            }
        }

        & .search-dropdown a:hover {
            background-color: var(--dash-active-clr);
            color: var(--white-clr);
        }

        & i {
            position: absolute;
            top: 1.3rem;
            right: 1.5rem;
        }
    }
}

/* ======================================== */
/* Partner-Login Section */
/* ======================================== */

/* ======================================== */
/*Partner-Register Section start */
/* ======================================== */


/* ===============================
Partner-dashboard start
=============================== */

.partner-dashboard-section {
    height: 100%;
    background-color: var(--dash-bg-clr);

    & .container {
        display: flex;
    }

    & .partner-dashboard-sidebar {
        background-color: var(--white-clr);
        position: sticky;
        top: 0;
        left: 0;
        height: 100vh;
        width: 250px;

        & .logo {
            margin: 1.5rem 2.2rem 0 2.2rem;
            position: relative;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-right: 1rem;

            & img,
            source {
                width: 150px;
                height: auto;
                object-fit: contain;
            }

            & i {
                font-size: 2.4rem;
                display: none;
            }

            & h2 {
                display: block;
                font-size: 2.8rem;
                color: var(--main-color);
            }
        }

        & .partner-list {
            padding: 2.4rem 2rem;
            list-style-type: none;
            display: flex;
            flex-direction: column;
            gap: 1rem;

            & li {
                position: relative;
                padding: 1rem;
                cursor: pointer;

                &:hover {
                    background-color: var(--dash-active-clr);
                    color: var(--white-clr);
                    border-radius: 1.6rem;
                    -webkit-border-radius: 1.6rem;
                    -moz-border-radius: 1.6rem;
                    -ms-border-radius: 1.6rem;
                    -o-border-radius: 1.6rem;

                    & a {
                        color: var(--white-clr);
                    }

                    & i {
                        color: var(--white-clr);
                    }
                }

                & i {
                    font-size: 2.4rem;
                    width: 2.5rem;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                }

                & .dropdown {
                    & .sidebar-content {
                        background-color: transparent;
                        display: flex;
                        gap: 1.6rem;
                        font-size: 1.6rem;
                        align-items: center;
                    }

                    & .fa-caret-down {
                        position: absolute;
                        top: 1.6rem;
                        right: 0;
                        font-size: 1.6rem;
                    }


                    & .dropdown-content {
                        text-align: center;
                        margin-left: 1.3rem;
                        padding: 1rem;
                        display: none;

                        & a {
                            display: flex;
                            justify-content: center;
                            align-items: center;
                        }

                        & .raise {
                            font-size: 1.6rem;
                        }
                    }

                    & .dropdown-content.active {
                        display: block;
                    }
                }
            }

            & li.active {
                background-color: var(--dash-active-clr);
                box-shadow: 0 2px 2px 0 #374557;
                border-radius: 1.6rem;
                -webkit-border-radius: 1.6rem;
                -moz-border-radius: 1.6rem;
                -ms-border-radius: 1.6rem;
                -o-border-radius: 1.6rem;

                & a, i {
                    color: var(--white-clr);
                }
            }

            & .fa-headset, .fa-gear, .fa-caret-down {
                color: var(--dash-list-clr);
            }

            & .link-list {
                display: flex;
                color: var(--dash-list-clr);
                gap: 1.7rem;
                align-items: center;
            }
        }
    }

    & .partnet-dashboard-content {
        padding: 1rem 2rem;
        width: calc(100% - 250px);

        & .content {
            display: block;
        }

        & .product-right-top {
            background-color: var(--white-clr);
            display: flex;
            justify-content: space-between;
            border-radius: 10px;
            padding: 0.4rem 2rem;
            margin-top: 1rem;
            -webkit-border-radius: 10px;
            -moz-border-radius: 10px;
            -ms-border-radius: 10px;
            -o-border-radius: 10px;

            & i {
                cursor: pointer;
            }

            & .test-store {
                display: flex;
                justify-content: space-between;
                align-items: center;
                gap: 2rem;
            }

            & .right-profile {
                display: flex;
                align-items: center;
                gap: 2rem;

                & .notification {
                    position: relative;

                    .notification-img {
                        padding: 1rem;
                        background-color: var(--notification-clr);
                        border-radius: 8px;
                        -webkit-border-radius: 8px;
                        -moz-border-radius: 8px;
                        -ms-border-radius: 8px;
                        -o-border-radius: 8px;
                    }

                    span {
                        position: absolute;
                        display: block;
                        top: 0.8rem;
                        right: 0.8rem;
                        height: 5px;
                        width: 5px;
                        border-radius: 50%;
                        background-color: var(--offline-clr);
                        -webkit-border-radius: 50%;
                        -moz-border-radius: 50%;
                        -ms-border-radius: 50%;
                        -o-border-radius: 50%;
                    }
                }

                & .profile-info {
                    display: flex;
                    align-items: center;
                    gap: 2rem;

                    & p {
                        font-weight: 500;
                    }
                }

                .dropbtn {
                    padding: 16px;
                    border: none;
                    cursor: pointer;
                }

                .dropbtn:hover,
                .dropbtn:focus {
                    background-color: var(--main-color);
                }

                .dropdown {
                    position: relative;
                    display: inline-block;
                }

                .dropdown-content {
                    display: none;
                    position: absolute;
                    background-color: var(--white-clr);
                    border-radius: 5px;
                    min-width: 140px;
                    overflow: auto;
                    right: -2.3rem;
                    top: 4.5rem;
                    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
                    z-index: 1;
                    -webkit-border-radius: 5px;
                    -moz-border-radius: 5px;
                    -ms-border-radius: 5px;
                    -o-border-radius: 5px;
                }

                .dropdown-content a {
                    color: var(--black-clr);
                    padding: 12px 16px;
                    text-decoration: none;
                    display: block;
                }

                .dropdown a:hover {
                    background-color: var(--dash-active-clr);
                    color: var(--white-clr);
                }

                .show {
                    display: block;
                }
            }
        }

        & .product-right-center {
            margin-top: 1.2rem;
            background-color: var(--white-clr);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            -webkit-border-radius: 10px;
            padding: 1rem 2rem;
            -moz-border-radius: 10px;
            -ms-border-radius: 10px;
            -o-border-radius: 10px;

            & p {
                font-weight: 500;
            }

            & .partner-buttons {
                position: relative;
                display: flex;
                justify-content: end;

                & button {
                    padding: 1rem 3rem;
                    color: var(--white-clr);
                    font-size: 1.5rem;
                }

                & i {
                    position: absolute;
                    width: 20px;
                    height: 20px;
                    top: 1.3rem;
                    right: 13.4rem;
                    border-radius: 50%;
                    background-color: var(--white-clr);
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    font-size: 1.4rem;
                    color: var(--primary-color);
                    -webkit-border-radius: 50%;
                    -moz-border-radius: 50%;
                    -ms-border-radius: 50%;
                    -o-border-radius: 50%;
                }
            }
        }

        & .ticket-section {
            margin: 2rem 0;

            & .grid {
                gap: 1rem;
            }

            & .grid-col--five {
                grid-template-rows: minmax(120px, 1fr);
            }

            & .ticket-heading {
                font-size: 2.5rem;
                font-weight: 600;
            }

            & .ticket-subheading {
                font-weight: 400;
            }

            & .ticket-total-heading {
                color: var(--total-ticket-text-clr);
            }

            & .pending-heading {
                color: var(--pending-ticket-text-clr);
            }

            & .ticket-mini-heading {
                color: var(--closed-ticket-text-clr);
            }

            & .ticket-box {
                padding: 2rem;
                border-radius: 10px;
                -webkit-border-radius: 10px;
                -moz-border-radius: 10px;
                -ms-border-radius: 10px;
                -o-border-radius: 10px;
            }

            & .ticket-1 {
                background-color: var(--total-ticket-bg-clr);
            }

            & .ticket-2 {
                background-color: var(--pending-ticket-bg-clr);
            }

            & .ticket-3 {
                background-color: var(--closed-ticket-bg-clr);
            }

            & .ticket-four {
                background-color: var(--open-ticket-bg-clr);
            }

            & .ticket-five {
                display: grid;
                justify-content: center;
                align-content: center;

                & button {
                    padding: 1rem 3rem;
                    color: var(--white-clr);
                }
            }
        }

        & .main-title {
            display: flex;
            justify-content: space-between;
            padding: 2rem;
            align-items: center;
            background-color: var(--white-clr);
            margin-top: 2rem;
            border-radius: 10px;
            -webkit-border-radius: 10px;
            -moz-border-radius: 10px;
            -ms-border-radius: 10px;
            -o-border-radius: 10px;

            & .box-para {
                font-size: 1.5rem;
            }

            & .box-heading {
                font-size: 2.5rem;
            }

            & .box-btn {
                height: 45px;
                width: 170px;
            }
        }

        & .product-right-bottom {
            background-color: var(--white-clr);
            margin-top: 2rem;
            padding: 1rem 1rem;
            border-radius: 12px;
            -webkit-border-radius: 12px;
            -moz-border-radius: 12px;
            -ms-border-radius: 12px;
            -o-border-radius: 12px;

            & .accordian {
                display: flex;
                margin-top: 2rem;

                & .contentBox {
                    position: relative;
                    margin: 10px 20px;

                    & .label {
                        position: relative;
                        padding: 10px;
                        cursor: pointer;

                        &::before {
                            font-family: "Font Awesome 5 Free";
                            font-weight: 400;
                            content: "\2b";
                            position: absolute;
                            top: 50%;
                            right: 20px;
                            transform: translateY(-50%);
                            font-size: 1.8rem;
                            font-weight: 600;
                            -webkit-transform: translateY(-50%);
                            -moz-transform: translateY(-50%);
                            -ms-transform: translateY(-50%);
                            -o-transform: translateY(-50%);
                        }
                    }

                    & .content {
                        position: relative;
                        height: 0;
                        overflow: hidden;
                        transition: 0.5s;
                        overflow-y: auto;
                        -webkit-transition: 0.5s;
                        -moz-transition: 0.5s;
                        -ms-transition: 0.5s;
                        -o-transition: 0.5s;
                    }
                }
            }

            & .accordian .contentBox.active .content {
                height: auto;
                padding: 1rem;
            }

            & .accordian .contentBox.active .label::before {
                content: "\f068";
            }

            & .grid {
                gap: 1rem;
            }

            & .product-right-bottom-top {
                margin-top: .5rem;

                & .card-item {
                    height: 130px;
                    border-radius: 10px;
                    flex-direction: column;
                    align-items: start;
                    justify-content: center;
                    padding: 1rem 2rem;
                    display: flex;
                    gap: 0.6rem;

                    & h2,
                    p {
                        margin-left: 1rem;
                    }

                    & p {
                        color: var(--dash-card-clr);
                    }
                }

                & .first {
                    background-color: var(--dash-total-clr);
                }

                & .second {
                    background-color: var(--dash-subscrie-clr);
                }

                & .third {
                    background-color: var(--dash-commision-clr);
                }

                & .fourth {
                    background-color: var(--dash-refferal-clr);
                }
            }

            & .product-right-bottom-center {
                & .charts {
                    & .charts-card {
                        padding: 1rem 0rem;
                    }

                    & .chart-main {
                        display: flex;
                        justify-content: space-between;
                    }

                    & .chart-title {
                        font-weight: 700;
                    }

                    & .apexcharts-menu-icon {
                        color: var(--eye-color);
                    }

                    /* & .apexcharts-toolbar {
                        display: none; 
                    } */

                    & .apexcharts-legend {
                        display: none;
                    }

                    & line {
                        display: none;
                    }
                }
            }

            & .product-right-bottom-end {
                border: 1px solid var(--border-light-gray);
                border-radius: 12px;
                box-shadow: 0 4px 20px 0 var(-- border-light-gray);
                -webkit-border-radius: 12px;
                -moz-border-radius: 12px;
                -ms-border-radius: 12px;
                -o-border-radius: 12px;
                width: 400px;
                padding: 2rem 3rem;

                & .product-title {
                    font-size: 1.8rem;
                }

                & .bar-lines {
                    border-bottom: 0.5px solid var(--border-light-gray);
                    margin-top: 2rem;

                    & img {
                        margin-right: 3rem;
                    }
                }

                & .status {
                    display: flex;
                    justify-content: space-evenly;
                    margin-top: 1rem;
                    padding: 1rem;

                    & .status-heading {
                        font-size: 1.6rem;
                        opacity: 0.6;
                    }

                    & .volume {
                        border-right: 0.5px solid var(--border-light-gray);
                    }

                    & .service,
                    .volume {
                        padding: 0 4rem;
                        display: flex;
                        gap: 1rem;
                        justify-content: center;
                    }

                    & span {
                        display: block;
                        width: 12px;
                        height: 12px;
                        margin-top: 0.4rem;
                        border-radius: 50%;
                        -webkit-border-radius: 50%;
                        -moz-border-radius: 50%;
                        -ms-border-radius: 50%;
                        -o-border-radius: 50%;
                    }

                    & .active {
                        background-color: var(--border-green);
                    }

                    & .seen {
                        background-color: var(--main-color);
                    }

                    & .status-title {
                        font-weight: 600;
                    }
                }
            }

            & .steps {
                width: 100%;
                align-items: center;
                position: relative;
                display: flex;
                gap: 2rem;
                padding: 0 2rem;
                white-space: nowrap;
                overflow-x: auto;

                &::-webkit-scrollbar {
                    display: none;
                }

                & .circle {
                    position: relative;
                    font-size: 1.5rem;
                    color: var(--black-clr);
                    cursor: pointer;
                    align-items: center;
                    justify-content: center;
                    border: 3px solid transparent;
                    transition-delay: 0s;
                    transition: all 0.2s ease;
                    -webkit-transition: all 0.2s ease;
                    -moz-transition: all 0.2s ease;
                    -ms-transition: all 0.2s ease;
                    -o-transition: all 0.2s ease;
                }

                & .circle.active {
                    color: var(--main-color);
                }

                & .line {
                    position: absolute;
                    top: 23px;
                    left: 14px;
                    width: 90px;
                    height: 5px;
                    background-color: var(--step-active-clr);
                    border-radius: 10px;
                    transition: all .3s;
                    -webkit-border-radius: 10px;
                    -moz-border-radius: 10px;
                    -ms-border-radius: 10px;
                    -o-border-radius: 10px;
                    -webkit-border-radius: 10px;
                    -webkit-transition: all .3s;
                    -moz-transition: all .3s;
                    -ms-transition: all .3s;
                    -o-transition: all .3s;
                }
            }

            & .content-box {
                & .lead-content {
                    display: none;

                    & .all-product-table {
                        padding: 0rem;
                        border-radius: 10px;
                        -webkit-border-radius: 10px;
                        -moz-border-radius: 10px;
                        -ms-border-radius: 10px;
                        -o-border-radius: 10px;
                    }
                }

                & .lead-content.active {
                    display: block;
                }
            }

            & table {
                & tr {
                    text-align: start;
                    vertical-align: baseline;
                }

                & th {
                    font-size: 1.4rem;
                    font-weight: 400;
                    text-align: left;
                }

                & td {
                    font-size: 1.3rem;
                    padding: 1rem 0rem;
                }
            }

            & .personal-details {
                display: flex;
                align-items: center;
                gap: 2rem;

                & img {
                    width: 100px;
                    height: 100px;
                    border-radius: 50%;
                    -webkit-border-radius: 50%;
                    -moz-border-radius: 50%;
                    -ms-border-radius: 50%;
                    -o-border-radius: 50%;
                }

                & .info {
                    & h2 {
                        font-size: 1.8rem;
                    }

                    & p {
                        display: flex;
                        gap: 1rem;

                        & span {
                            color: var(--danger-color);
                        }

                        & a {
                            font-size: 1.4rem;
                            color: var(--text-green);
                            text-decoration: underline;
                        }
                    }
                }
            }

            /* ======================================== */
            /*  dashboard profile */
            /* ======================================== */
            & .profile-section {
                & .profileBox {
                    position: relative;
                    margin: 10px 20px;

                    & .label {
                        position: relative;
                        padding: 10px;
                        cursor: pointer;
                        font-size: 1.6rem;

                        &::before {
                            font-family: "Font Awesome 5 Free";
                            font-weight: 400;
                            content: "\f062";
                            position: absolute;
                            top: 50%;
                            right: 20px;
                            transform: translateY(-50%);
                            font-size: 1.8rem;
                            font-weight: 600;
                            -webkit-transform: translateY(-50%);
                            -moz-transform: translateY(-50%);
                            -ms-transform: translateY(-50%);
                            -o-transform: translateY(-50%);
                        }
                    }

                    & .profile-content {
                        position: relative;
                        background-color: var(--white-clr);
                        height: auto;
                        overflow: hidden;
                        transition: 0.5s;
                        overflow-y: auto;
                        -webkit-transition: 0.5s;
                        -moz-transition: 0.5s;
                        -ms-transition: 0.5s;
                        -o-transition: 0.5s;

                        & form {
                            & input {
                                padding: 1rem;
                                margin-top: 1rem;
                            }

                            & .form-control span {
                                position: absolute;
                                left: 1.5rem;
                                top: 60%;
                                translate: 0 -50%;
                                padding: 0.2rem;
                                pointer-events: none;
                                font-size: 1.5rem;
                                color: var(--secondary-text-clr);
                                transition: 0.3s;
                                -webkit-transition: 0.3s;
                                -moz-transition: 0.3s;
                                -ms-transition: 0.3s;
                                -o-transition: 0.3s;
                            }

                            & .form-control input:valid~span,
                            & .form-control input:focus~span {
                                font-size: 1rem;
                            }

                            & .image-detail {
                                border: 1px solid var(--border-light-gray);
                                width: fit-content;
                                padding: 2rem;
                                margin-top: 2rem;
                                display: flex;
                                justify-content: center;
                                align-items: center;

                                & img {
                                    width: 110px;
                                    height: 110px;
                                }

                                & .button-group {
                                    & p {
                                        margin-top: 1rem;
                                    }
                                }
                            }
                        }
                    }
                }

                & .profileBox.active .profile-content {
                    height: 0;
                }

                & .profileBox.active .label::before {
                    content: "\f063";
                }
            }

            /* ======================================== */
            /*  Support Chat Start */
            /* ======================================== */
            .chat-box {
                & .chat-header {
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    border-bottom: 1px solid var(--border-light-gray);
                    padding: 1rem 0;

                    & .chat-header-left {
                        display: flex;
                        gap: 2rem;
                        justify-content: center;

                        & img {
                            width: 60px;
                            height: 60px;
                            border-radius: 50%;
                            -webkit-border-radius: 50%;
                            -moz-border-radius: 50%;
                            -ms-border-radius: 50%;
                            -o-border-radius: 50%;
                        }

                        & .chat-header-right-content {
                            & h2 {
                                font-size: 1.8rem;
                            }

                            & .status {
                                display: flex;
                                gap: 1rem;
                                align-items: center;

                                & span {
                                    width: 10px;
                                    height: 10px;
                                    background-color: var(--btn-text-clr);
                                    border-radius: 50%;
                                    -webkit-border-radius: 50%;
                                    -moz-border-radius: 50%;
                                    -ms-border-radius: 50%;
                                    -o-border-radius: 50%;
                                }
                            }
                        }
                    }

                    & .chat-header-right {
                        display: flex;

                        & ul {
                            display: flex;
                            margin-right: 4rem;
                        }

                        & i {
                            cursor: pointer;
                        }

                        & li:hover {
                            color: var(--eye-color);

                            & li a {
                                display: block;
                            }
                        }

                        & li {
                            cursor: pointer;
                            display: flex;
                            flex-direction: column;
                            align-items: center;
                        }
                    }
                }

                & .chat-footer {
                    display: block;
                    overflow: auto;
                    max-height: 400px;
                    margin-top: 2rem;
                    padding: 0 3rem;

                    & img {
                        width: 40px;
                        height: 40px;
                        border-radius: 50%;
                        -webkit-border-radius: 50%;
                        -moz-border-radius: 50%;
                        -ms-border-radius: 50%;
                        -o-border-radius: 50%;
                    }

                    & .chat-incoming-message {
                        padding: 0.5rem 1rem;
                        background-color: var(--border-light-gray);
                        border-top-right-radius: 10px;
                        border-bottom-left-radius: 10px;
                        max-width: 360px;

                        & .chat-time {
                            float: right;
                        }

                        & h2 {
                            font-size: 1.4rem;
                            font-weight: 500;
                        }
                    }

                    & .chat-footer-left {
                        & .chat-footer-left-content {
                            display: flex;
                            align-items: center;
                            gap: 2rem;
                        }
                    }

                    & .chat-footer-right-content {
                        flex-wrap: nowrap;
                        display: flex;
                        align-items: center;
                        justify-content: end;
                        gap: 2rem;
                        padding: 1rem 0 1rem 0;
                    }
                }

                & .send-text-message {
                    background-color: var(--pending-ticket-bg-clr);
                    padding: 2rem 4rem;
                    border-radius: 10px;
                    -webkit-border-radius: 10px;
                    -moz-border-radius: 10px;
                    -ms-border-radius: 10px;
                    -o-border-radius: 10px;

                    & .send-msg {
                        display: flex;
                        align-items: center;
                        gap: 2rem;

                        & input {
                            width: 80%;
                            background-color: var(--white-clr);
                        }

                        & .message-icons {
                            display: flex;
                            gap: 3rem;
                            align-items: center;

                            & i {
                                cursor: pointer;
                            }

                            & .fa-paper-plane {
                                background-color: var(--border-green);
                                color: var(--white-clr);
                                padding: 1rem;
                                border-radius: 10px;
                                -webkit-border-radius: 10px;
                                -moz-border-radius: 10px;
                                -ms-border-radius: 10px;
                                -o-border-radius: 10px;
                            }
                        }
                    }
                }
            }
        }
    }

    & .refferal-table {
        background-color: var(--white-clr);
        padding: 1rem;
        margin-top: 2rem;
        border-radius: 10px;
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        -ms-border-radius: 10px;
        -o-border-radius: 10px;
        overflow: auto;

        & table {
            & tr {
                text-align: center;
            }

            & tr:first-child {
                border-bottom: 1px solid var(--border-light-gray);
            }

            & .time {
                display: flex;
            }

            & th {
                font-size: 1.4rem;
                font-weight: 500;
                white-space: nowrap;
            }

            & td {
                font-size: 1.2rem;
                padding: 1rem 0;
                white-space: nowrap;
            }

            & select {
                width: 130px;
                height: 40px;
                padding: 1rem;
                white-space: nowrap;
            }

            & i {
                color: var(--eye-color);
            }

            & td button {
                padding: 0.8rem 3rem;
                background-color: rgba(214, 23, 31, 0.3);
                color: var(--danger-color);
                border: 1px solid var(--danger-color);
            }
        }
    }
}

@media (width<=992px) {
    .partner-dashboard-section {
        & .partner-dashboard-sidebar {
            visibility: hidden;
            opacity: 0;
            height: 100%;
            width: 0px;
            transition: transform 0.4s linear;
            transform: translateX(-200px);
            -webkit-transform: translateX(-200px);
            -moz-transform: translateX(-200px);
            -ms-transform: translateX(-200px);
            -o-transform: translateX(-200px);
            -webkit-transition: transform 0.4s linear;
            -moz-transition: transform 0.4s linear;
            -ms-transition: transform 0.4s linear;
            -o-transition: transform 0.4s linear;

            & .logo {
                margin: 1rem 1rem;

                & img {
                    width: 120px;
                }

                & h2 {
                    display: none;
                }
            }

            & .partner-list {
                padding: 1rem 1rem;
            }
        }

        & .active-sidebar {
            position: fixed;
            top: 0;
            left: 0;
            visibility: visible;
            opacity: 1;
            z-index: 100;
            width: 220px;
            transform: translateX(0px);
            -webkit-transform: translateX(0px);
            -moz-transform: translateX(0px);
            -ms-transform: translateX(0px);
            -o-transform: translateX(0px);

            & .logo {
                & i {
                    display: block;
                }
            }
        }

        & .partnet-dashboard-content {
            width: 100%;

            & .content {
                & .ticket-section {
                    & .grid-col--five {
                        grid-template-columns: repeat(3, 1fr);
                    }
                }
            }

            & .store-title {
                display: none;
            }

            & .product-right-bottom {
                & .grid-col--four {
                    grid-template-columns: repeat(2, 1fr);
                }

                & .card-item {
                    width: 100%;
                }

                & table {
                    & td {
                        padding: 1rem 2rem;
                    }
                }

                & .search-options {
                    padding: 0;

                    & input {
                        width: 90%;
                    }
                }

                & .all-product-table {
                    overflow-x: auto;
                }

                & .profile-section {
                    & .profileBox {
                        width: 100%;
                        margin: 1rem 0rem;

                        & .profile-content {
                            & form {
                                & .input-control {
                                    flex-direction: column;
                                }

                                & .image-detail {
                                    padding: 2rem 0.4rem;

                                    & img {
                                        height: 80px;
                                        width: 80px;
                                    }

                                    & .button-group {
                                        margin-left: -1rem;
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}

@media (width<=768px) {
    .partner-dashboard-section {
        & .partner-dashboard-sidebar {
            & .logo {
                & img {
                    width: 70px;
                    margin-left: 4.2rem;
                }
            }
        }

        & .partnet-dashboard-content {
            & .product-right-center {
                & p {
                    display: none;
                }
            }

            & .product-right-bottom {
                & .accordian {
                    flex-direction: column;

                    & .contentBox {
                        width: 100%;
                        margin: 1rem 0rem;
                    }
                }

                & .product-right-bottom-end {
                    width: 90%;
                }

                & .all-product-table {
                    & .dataTables_filter {
                        & input {
                            width: auto;
                            text-indent: 1rem;
                            border-radius: 10px;
                            -webkit-border-radius: 10px;
                            -moz-border-radius: 10px;
                            -ms-border-radius: 10px;
                            -o-border-radius: 10px;
                        }
                    }
                }
            }
        }
    }
}

@media (width<=600px) {
    .partner-dashboard-section {
        & .partner-dashboard-sidebar {
            & .logo {
                margin: 1rem 0.5rem;
            }

            & h2 {
                display: none;
            }

            & .partner-list {
                padding: 1rem 0.5rem;

                & li {
                    padding: 1rem 0.5rem;
                }
            }
        }

        & .partnet-dashboard-content {
            padding: 1rem 1rem;

            & .content {
                & .ticket-section {
                    & .grid-col--five {
                        grid-template-columns: repeat(2, 1fr);
                    }

                    & .ticket-five {
                        margin-top: 2rem;
                        grid-area: 3 / 1 / 4 / -1;
                    }
                }
            }

            & .product-right-bottom {
                padding: 0rem 0rem;

                & .chat-box {
                    & .chat-footer {
                        padding: 0rem;

                        & .chat-footer-right {
                            & .chat-footer-right-content {
                                & .chat-incoming-message {
                                    margin-left: 8rem;
                                }
                            }
                        }
                    }

                    & .send-text-message {
                        padding: 2rem 1rem;

                        & .send-msg {
                            & .message-icons {
                                gap: 1.5rem;
                            }
                        }
                    }
                }

                & .product-right-bottom-end {
                    width: 100%;
                }

                & .all-product-table {
                    & .product-right-bottom-end {
                        width: 100%;
                    }
                }
            }
        }

        & .refferal-table {
            & table {
                & .time {
                    flex-direction: column;
                    margin-left: -1rem;
                }

                & th {
                    padding: 0 1rem 0 1rem;
                }
            }
        }
    }
}