@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Roboto:ital,wght@0,100..900;1,100..900&family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap');

:root {
    /* Global Colors */
    --background-color: #1F1F30;
    --background-secondary-color: #F2F3F8;
    --background-tertiary-color: #E9EBF3;
    --primary-color: #000014;
    --secondary-color: #CA970B;
    --body-color: #515151;
    --body-light-accent: #A39F9F;
    --white-color: #FFFEFE;
    --border-color: #d9d9d9;
    --red-color: #F93030;
    --green-background-color: #F2FAF5;
    --green-text-color: #45C276;
    --red-background-color: #FFD7D7;
    --red-text-color: #EA4B4B;
    --yellow-background-color: #FFF2DE;
    --yellow-text-color: #A56502;
    --button-green-background-color: #92E3A9;
    --details-button-color: #B39CFF;
    --progress-button-color: #EA8557;
    --upload-border-color: #C8C7C7;
    --upload-background-color: #FBFBFB;
    --upload-text-color: #535151;
    --remove-button-color: #b8bbc2;
    --chatbot-background-color: #D1D4E2;
    --chatbot-timestamp-color: #494949;

    /* Font-Family */
    --heading-font: 'Roboto', sans-serif;
    --body-font: 'Roboto', sans-serif;
    --seondary-font: "DM Sans", sans-serif;
    --tertiary-font: "Source Sans 3", sans-serif;

    /* Font Weight */
    --font-weight-400: 400;
    --font-weight-500: 500;
    --font-weight-600: 600;
    --font-weight-700: 700;

    /* font-size */
    /* Heading1 Font Size */
    --h1-xl: 48px;
    --h1-lg: 36px;
    --h1-md: 28px;

    /* Heading2 font size */

    --h2-xl: 20px;
    --h2-lg: 18px;
    --h2-md: 16px;

    /* Heading3 font-size */
    --h3-xl: 16px;
    --h3-lg: 14px;
    --h3-md: 12px;

    /* Heading4 font-size */
    --h4-xl: 14px;
    --h4-lg: 12px;
    --h4-md: 10px;


    /* body font size */
    --text-xxxl: 30px;
    --text-xxl: 28px;
    --text-xl: 24px;
    --text-lg: 20px;
    --text-md: 18px;
    --text-base: 16px;
    --text-sm: 14px;
    --text-xs: 12px;
    --text-xxs: 10px;


    /* line-height */
    --h1-line-height: 54px;
    --h2-line-height: 24px;
    --body-line-height: 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    width: 100%;
    font-family: var(--body-font);
}

a {
    text-decoration: none;
}

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

li {
    list-style: none;
}

i{
    font-size: 18px;
}

h2 {
    font-size: var(--text-xxxl);
    font-weight: var(--font-weight-700);
}

h3 {
    font-size: var(--text-lg);
    font-weight: var(--font-weight-500);
    color: #000;
    margin-bottom: 0;
}

h4 {
    font-size: var(--text-base);
    font-weight: var(--font-weight-500);
    color: #000;
    margin-bottom: 0;

}

p {
    margin-bottom: 0;
    color: #5C5858;
    font-weight: var(--font-weight-400);
    font-size: var(--text-base);
}

small {
    font-size: 10px;
}

.process-color {
    color: #CA970B;
}


.success-color {
    color: #4CCA8B;
}


.white-icon img{
    filter:invert(1);
}



.heading-content {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    /* margin-bottom: 10px; */
}

.heading-content h1 {
    margin-bottom: 0px !important;
    font-weight: var(--font-weight-700);
    font-size: var(--text-lg);
}


.large-h1,
#large-h1 {
    font-size: var(--text-xxxl);
    font-weight: var(--font-weight-700);
    color: #000;
    margin-bottom: 0px;
}

.small-h1{
    font-size:20px;
    color:#000014;
}

/* button */
.manage-button {
    background-color: var(--primary-color);
    border: none;
    padding: 0.5rem 2rem;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
    max-width: 120px;
    margin-bottom: 0;
    color: var(--white-color);
    font-size: var(--text-base);
    font-weight: var(--font-weight-500);
    transition: all 0.3s ease;
    margin: auto;
}

.manage-button img {
    filter: invert(1)
}


.manage-button:hover,
.manage-button:active,
.manage-button:focus {
    background-color: transparent;
    border: 1px solid #000014;
}

.manage-button:hover p,
.manage-button:active p,
.manage-button:focus p {
    color: #000014;
}

.manage-button:hover img,
.manage-button:focus img,
.manage-button:active img {
    filter: none;
}

.pay-now-button {
    background-color: #04A30B;
    border: none;
    padding: 0.5rem 2rem;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    font-weight: 600;
    color: #ffffff;
}



.pay-now-button:hover,
.pay-now-button:active,
.pay-now-button:focus,
.pay-now-button:focus-within {
    background-color: #257128;
    color: #fff;
}



/* End of button */

/* Scrollbar */

::-webkit-scrollbar {
    width: 8px;
    height:8px;
}

::-webkit-scrollbar-track {
    background-color: #D2D2D2;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb {
    background-color: #999797;
    border-radius: 6px;
}


/* End of Scrollbar */
/* Status Color */
.bg-success-status p,
.bg-pending-status p,
.bg-progress-status p,
.bg-danger-status p {
    margin-bottom: 0;
}

.common-padd {
    padding: 25px 20px;
}

.bg-success-status {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #45C276;
    background-color: #D4FFE5;
    border-radius: 6px;
    padding: 5px 25px;
    font-weight:500;
    max-width: 80px;
    width: 100%;
    /* margin: 0px auto; */

}



.bg-pending-status {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--yellow-text-color);
    background-color: var(--yellow-background-color);
    border-radius: 6px;
    padding: 5px 4px;
    padding: 5px 25px;
    font-weight:500;
    max-width: 80px;
    width: 100%;
    /* margin: 0px auto; */
}

.bg-progress-status {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #3447E6;
    background-color: #D2E5FF;
    border-radius: 6px;
    padding: 5px 4px;
    padding: 5px 25px;
    font-weight:500;
    max-width: 80px;
    width: 100%;
    /* margin: 0px auto; */
}

.bg-danger-status {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--red-text-color);
    background-color: var(--red-background-color);
    border-radius: 6px;
    padding: 5px 4px;
    padding: 5px 25px;
    font-weight:500;
    max-width: 80px;
    width: 100%;
    /* margin: 0px auto; */
}


.bg-completed-status {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #016629;
    background-color: #57F394;
    border-radius: 6px;
    padding: 5px 4px;
    padding: 5px 25px;
    font-weight:500;
    max-width: 80px;
    width: 100%;
    /* margin: 0px auto; */
}

.bg-success-text{
    color: #45C276;
    font-weight:500;
}

.bg-pending-text{
    color: #A56502;
    font-weight:500;
    
}

.bg-danger-text{
    color:#EA4B4B;
    font-weight:500;
}

.bg-completed-text{
    
    color: #016629;
    font-weight:500;
} 


.view-permission {
    background-color: var(--primary-color);
    padding: 0.5rem 2rem;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
    max-width: 120px;
    margin-bottom: 0;
    color: var(--white-color) !important;
    font-size: var(--text-base);
    font-weight: var(--font-weight-500);
    transition: all 0.3s ease;
    margin: auto;
    border: 1px solid var(--primary-color);
}


.view-new-button{
    background-color: #53D769;
    padding: 0.5rem 2rem;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
    max-width: 120px;
    margin-bottom: 0;
    color: var(--white-color);
    font-size: var(--text-base);
    font-weight: var(--font-weight-500);
    transition: all 0.3s ease;
    margin: auto;
    border: 1px solid #53D769;
}
.view-new-button:hover,.view-new-button:active,.view-new-button:focus-within,.view-new-button:focus{
    background-color: #48C065;
    border: 1px solid #48C065;
}

.view-new-button >*{
    pointer-events: none;
}
.manage-new-button{
    background-color: #CE4F70;
    padding: 0.5rem 2rem;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
    max-width: 120px;
    margin-bottom: 0;
    color: var(--white-color);
    font-size: var(--text-base);
    font-weight: var(--font-weight-500);
    transition: all 0.3s ease;
    margin: auto;
    border: 1px solid #CE4F70;

}

.manage-new-button:hover,.manage-new-button:active,.manage-new-button:focus-within,.manage-new-button:focus{
    background-color: #D3295C;
    border: 1px solid #D3295C;
}


.manage-new-button >*{
    pointer-events: none;
}

.gold-text {
    color: #ca970b;
}

.required::after{
    content: " *";
  color: red;
  font-size: 13px;
  position:absolute;
  right:-10px;
  top: -5px;
}

/* Loader */

.loader {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    position: relative;
    animation: rotate 1s linear infinite;
    display: flex;
    }
    .loader::before {
      content: "";
      box-sizing: border-box;
      position: absolute;
      inset: 0px;
      border-radius: 50%;
      border: 5px solid #CA970B;
      animation: prixClipFix 2s linear infinite ;
    }

    @keyframes rotate {
      100%   {transform: rotate(360deg)}
    }

    @keyframes prixClipFix {
        0%   {clip-path:polygon(50% 50%,0 0,0 0,0 0,0 0,0 0)}
        25%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 0,100% 0,100% 0)}
        50%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,100% 100%,100% 100%)}
        75%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,0 100%,0 100%)}
        100% {clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,0 100%,0 0)}
    }




/* End of Loader */


/* Notification Panel */


.page-wrap {
    position: absolute;
    top: 5%;
    right: 5%;
    z-index: 100;
    width: 100%;
    max-width: 440px;
}

/* ── Panel ── */
.notif-panel {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
    width: 100%;
    padding: 0 0 8px;
    overflow: hidden;
    position: relative;
    margin-top: 30px; /* space for the floating bell */
}

/* ── Header ── */
.notif-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 20px 14px;
}
.notif-header h6 {
    font-size: clamp(15px, 4vw, 17px);
    font-weight: 700;
    color: #111827;
    margin: 0;
    letter-spacing: -0.3px;
}
.gear-btn {
    background: none;
    border: none;
    padding: 0;
    color: #9ca3af;
    cursor: pointer;
    transition: color 0.2s;
    display: flex;
    align-items: center;
}
.gear-btn:hover {
    color: #374151;
}
.gear-btn svg {
    width: 20px;
    height: 20px;
}

/* ── Items ── */
.notif-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.notif-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 13px 20px;
    border-top: 1px solid #f3f4f6;
    transition: background 0.15s;
    cursor: pointer;
}

.notif-item a {
    display: flex;
    gap: 7px;
}
.notif-item:hover {
    background: #fafafa;
}
.notif-item.unread {
    background: #f0f9ff;
}
.notif-item.unread:hover {
    background: #e0f2fe;
}

/* Avatar */
.avatar-wrap {
    position: relative;
    flex-shrink: 0;
}
.notification-avatar {
    width: 40px;
    height: 40px;
    border-radius: 20rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 13px;
    color: #6b7280;
    overflow: hidden;
    padding: 25px;
}
.chat-avatar {
    width: 40px;
    height: 40px;
    border-radius: 20rem;
    background: #000014;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 13px;
    color: #6b7280;
    overflow: hidden;
    padding: 25px;
}
.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.status-dot {
    position: absolute;
    bottom: 1px;
    right: 1px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid #fff;
}
.dot-green {
    background: #22c55e;
}
.dot-blue {
    background: #3b82f6;
}
.dot-orange {
    background: #f97316;
}
.dot-teal {
    background: #14b8a6;
}
.dot-purple {
    background: #a855f7;
}

/* Text */
.notif-body {
    flex: 1;
    min-width: 0;
}
.notif-text {
    font-size: clamp(12.5px, 3.5vw, 13.5px);
    color: #374151;
    line-height: 1.5;
    margin: 0 0 4px;
    word-break: break-word;
}
.notif-text strong {
    color: #111827;
    font-weight: 600;
}
.notif-meta {
    font-size: clamp(10.5px, 2.8vw, 11.5px);
    color: #9ca3af;
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
}
.meta-tag {
    display: inline-flex;
    align-items: center;
    background: #f3f4f6;
    border-radius: 4px;
    padding: 1px 6px;
    font-size: clamp(10px, 2.6vw, 11px);
    color: #6b7280;
    font-weight: 500;
}

/* Kebab */
.kebab-btn {
    background: none;
    border: none;
    padding: 4px 0 4px 6px;
    color: #d1d5db;
    cursor: pointer;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    align-self: center;
    flex-shrink: 0;
    /* larger tap area on mobile */
    min-width: 32px;
    min-height: 32px;
    justify-content: center;
}
.kebab-btn:hover {
    color: #6b7280;
}
.kebab-btn svg {
    width: 18px;
    height: 18px;
}

/* Scrollbar polish */
.notif-scroll {
    max-height: 500px;
    overflow-y: unset;
}
.notif-scroll::-webkit-scrollbar {
    width: 4px;
}
.notif-scroll::-webkit-scrollbar-thumb {
    background: #e5e7eb;
    border-radius: 99px;
}
.notify-footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 10px 15px;
}
#notifyfooter {
    font-size: 14px;
    font-weight: 400;
    color: #000014;
    cursor: pointer;
}
#notifyfooter:hover {
    font-size: 14px;
    font-weight: 400;
    color: #ca970b;
}



/* End of Notification Panel */

/* Edge default eye icon remove -start */
input[type="password"]::-ms-reveal,

input[type="password"]::-ms-clear {

    display: none;

}
 
/* Edge default eye icon remove -end */

/* 
.details-link{
    background-color: #8775FF;
    padding: 0.5rem 2rem;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
    max-width: 120px;
    margin-bottom: 0;
    color: var(--white-color) !important;
    font-size: var(--text-base);
    font-weight: var(--font-weight-500);
    transition: all 0.3s ease;
    margin: auto;
    border: 1px solid #8775FF;
    color:#fff !important;
} */



.details-link:hover,.details-link:focus-within,.details-link:focus{
    background-color: #D8D5FF;
    border:1px solid #C9C4F3;
    color:#706CAF !important ;
}


.details-link:hover svg path,.details-link:focus-within svg path,.details-link:focus svg path{
    stroke:#706CAF;
}

/* End of Status Color */
/* Start of register Page */
/* 
.register,
.login {
    background-color: var(--background-color);

}

.register .form-container {
    height: 100%;
    width: 100%;
    max-width: 450px;
    background-color: var(--white-color);
    border-radius: 42px;
    padding: 1.75rem 1.5rem;
    border: 1px solid var(--border-color);


}

.register .form-container h1 {
    font-family: var(--heading-font);
    font-size: var(--h1-xl);
    font-weight: var(--font-weight-700);
    line-height: var(--heading-one-line-height);
    color: var(--primary-color);
    margin-bottom: 20px;
}

.register .form-container .input-group {
    background-color: #F8F8F8;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.4rem 0.7rem;
    color: var(--body-color);

}

.register .form-container .input-group input,
.login .form-container .input-group input {
    border: none;
    background-color: transparent;
}
{
.register .form-container img {
    width: 30px;

}

.register .form-container .input-group input,
.login .form-container .input-group input {
    font-family: var(--body-font);
    font-size: var(--text-lg);
    font-weight: var(--font-weight-500);
    line-height: var(--body-line-height);
    color: var(--body-color);
}

.register .form-container .input-group input::placeholder,
.login .form-container .input-group input::placeholder {
    font-family: var(--body-font);
    font-size: var(--text-lg);
    font-weight: var(--font-weight-500);
    line-height: var(--body-line-height);
    color: var(--body-color);

}

.register .form-container .form-control:focus,
.login .form-container .form-control:focus {
    box-shadow: none;
}

#name-input-group:focus-within,
#email-input-group:focus-within,
#phone-input-group:focus-within,
#company-name-input-group:focus-within,
#password-input-group:focus-within,
#confirm-password-input-group:focus-within,
#login-email-input-group:focus-within,
#login-password-input-group:focus-within {
    border: 1px solid var(--primary-color);

}




.register .form-container .btn,
.login .form-container .btn {
    background-color: var(--primary-color);
    color: var(--white-color);
    width: 100%;
    margin-top: 20px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem 1rem;
    font-family: var(--body-font);
    font-size: var(--text-xl);
    font-weight: var(--font-weight-500);
    line-height: var(--body-line-height);
    cursor: pointer;
}

.register .form-container .btn:hover,
.login .form-container .btn:hover {
    background-color: var(--secondary-color);
}

.register .form-container p,
.login .form-container p {
    font-family: var(--body-font);
    font-size: var(--text-md);
    font-weight: var(--font-weight-500);
    line-height: var(--body-line-height);
    color: var(--body-color);
    margin-top: 10px;
}

.register .form-container p a,
.login .form-container p a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: var(--font-weight-600);
    line-height: 26px;

}

.register #password-input-group .toggle-password,
.register #confirm-password-input-group .toggle-password {

    width: 20px;
    position: absolute;
    top: 36%;
    right: 21px;
}

.register small {
    font-size: var(--text-xs);
    color: var(--body-color);
} */

/* End Of register Page */

/* Start Of Login Page */
/* .login .form-container {
    height: 100%;
    width: 100%;
    max-width: 635px;
    background-color: var(--white-color);
    border-radius: 64px;
    padding: 5rem 2.5rem;
    border: 1px solid var(--border-color);


}

.login .form-container h1 {
    font-family: var(--heading-font);
    font-size: var(--h1-xl);
    font-weight: var(--font-weight-700);
    line-height: var(--h1-line-height);
    color: var(--primary-color);
    margin-bottom: 50px;
}

.login .form-container .input-group {
    background-color: #F8F8F8;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.2rem 1rem;
    color: var(--body-color);

}

.login .form-container img {
    width: 38px;

}

.login .form-container .register-link {
    margin-top: 20px;
} */


/* Start Of Login Page */

.login .form-side ,.register .form-side{
    background-color: var(--white-color);
}

.login .form-side h1,.register .form-side h1{
    font-family: var(--heading-font);
    font-size: var(--h1-lg);
    font-weight: var(--font-weight-700);
    line-height: 30px;
    color: var(--primary-color);
}

.login .row>*,.register .row>*{
    padding-right: 0px;
    padding-left: 0px;
}

.login .form-side .logo-icon,.register .form-side .logo-icon{
    width: 100%;
    max-width: 200px;
}

.login .form-side .login-to-continue{
    font-size: var(--text-xl);
    font-weight: var(--font-weight-500);
    color: var(--primary-color);
}
.login .form-container{
    height: 100%;
    width: 100%;
    padding: 5rem 2.5rem 5rem 7rem;
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 0;
    
}

.login .form-side label,.register .form-side label{
     font-family: var(--body-font);
    font-size: var(--text-md);
    font-weight: var(--font-weight-500);
    line-height: var(--body-line-height);
    color: var(--body-color);
}

.login .form-container .input-group input,.register .form-container .input-group input,.register .form-container .input-group textarea,.register .form-container .input-group select{
    border: none;
    background-color: transparent;
}

.login .form-container img,.register .form-container img{
    width: 30px;
   
}

/* .login form,.register form{
    max-width: 650px;
} */

.login .form-container .input-group,.register .form-container .input-group {
    background-color: var(--border-color);
}


.login .form-container .input-group input,.register .form-container .input-group input,.register .form-container .input-group textarea,.register .form-container .input-group select{
    font-family: var(--body-font);
    font-size: var(--text-lg);
    font-weight: var(--font-weight-500);
    line-height: var(--body-line-height);
    color: var(--body-color);
    
}

.login .form-container p a,.register .form-container p a{
    color: #ca970b;
    text-decoration: none;
    font-weight: var(--font-weight-600);
    font-size: var(--text-base);
}

.login .form-container p a:hover,.register .form-container p a:hover{
    color: #000014;
    text-decoration: none;
    font-weight: var(--font-weight-600);
    font-size: var(--text-base);
}

.register .image-side{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    /* border-radius: 32px 0px 0px 32px; */
    background-color: #C2AD7E;
    /* padding: 0rem 2.5rem; */
    overflow:hidden;
    background : url('/images/register-image.png');
    background-size: cover;
    background-repeat:no-repeat;
}


.login .image-side{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    /* border-radius: 32px 0px 0px 32px; */
    background-color: #C2AD7E;
    /* padding: 0rem 2.5rem; */
    overflow:hidden;
    background : url('/images/login-new-image.png');
    background-size: cover;
    background-repeat:no-repeat;
}


.login .image-side img,.register .image-side img{height: 100%;width:100%}


.login .form-container .input-group input,.register .form-container .input-group input,.register .form-container .input-group textarea,.register .form-container .input-group select{
    font-family: var(--body-font);
    font-size: var(--text-lg);
    font-weight: var(--font-weight-500);
    line-height: var(--body-line-height);
    color: var(--body-color);
    
}

.login small,.register small{font-size:12px}

.login .form-container .input-group input::placeholder,.register .form-container .input-group input::placeholder,.register .form-container .input-group textarea::placeholder,.register .form-container .input-group select::placeholder{
    font-family: var(--body-font);
    font-size: var(--text-md);
    font-weight: var(--font-weight-400);
    line-height: var(--body-line-height);
    color: var(--border-color);
    
}

.login .form-container .form-control:focus,.register .form-container .form-control:focus,.register .form-container .form-select:focus{
    box-shadow: none;
}

.register .form-container textarea:focus-within{border:none}

#name-input-group:focus-within,#email-input-group:focus-within,#phone-input-group:focus-within,
#company-name-input-group:focus-within,#password-input-group:focus-within,#confirm-password-input-group:focus-within,#login-email-input-group:focus-within,#login-password-input-group:focus-within{
    border: 1px solid #ca970b;
    
}




.login .form-container .input-group{
    background-color: #F8F8F8;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.1rem 1rem;
    color: var(--body-color);
    
}

.login .form-container img,.register .form-container img{
    width: 24px;
   
}


.login .button-container{
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
    
}

.main-button{
    padding :20px 30px;
    background-color: var(--primary-color);
    color: var(--white-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    font-family: var(--body-font);
    font-size: var(--text-xl);
    font-weight: var(--font-weight-500);
    line-height: var(--body-line-height);
    cursor: pointer;
    text-align:center;
    width:40%;
}

.secondary-button{
    width: 100%;
    padding :20px 30px;
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 12px;
    font-family: var(--body-font);
    font-size: var(--text-xl);
    font-weight: var(--font-weight-500);
    line-height: var(--body-line-height);
    cursor: pointer;
    text-align:center;

}



.admin-button{
    width: 100%;
    padding :20px 30px;
    background-color: #CA970B;
    color: #fff;
    border: 1px solid #CA970B;
    border-radius: 12px;
    font-family: var(--body-font);
    font-size: var(--text-xl);
    font-weight: var(--font-weight-500);
    line-height: var(--body-line-height);
    cursor: pointer;
    text-align:center;

}


.main-button:hover,.secondary-button:hover{
    background-color: var(--secondary-color);
    color: var(--white-color);
    border: 1px solid var(--white-color);
}

.admin-button:hover,.admin-button:focus-within{
    background:transparent;
    border:1px solid #CA970B;
    color:#ca970b;
}

#loginBtn,#registerBtn{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

/* End of Login */
/* Start of Register */

.register .form-container .input-group {
    background-color: #F8F8F8;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 10px 10px;
    color: var(--body-color);

}


.register .form-container{
    height: 100%;
    width: 100%;
    padding: 1.5rem 2.5rem 1.5rem 7rem;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin:0;
}


.register .button-container {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
}


.register .form-side .login-to-continue{
    font-size: var(--text-xl);
    font-weight: var(--font-weight-500);
    color: var(--primary-color);
	margin-bottom:5px

}

.register .form-container .toggle-password{
    position:absolute;
    right:8px;
    top: 30%;
    width: 27px;
}

.register #type_of_company{color:var(--border-color)}

.register #type_of_company:valid{ font-size: var(--text-md);
    font-weight: var(--font-weight-400);color: #515151;}


.register #password, .register #confirm-password{max-width:300px; width:100%}

/* End of Register */


/* Sidebar  */


.wrapper {
    display: flex;
    min-height: 100vh;
    width: 100%;
    background-color: var(--background-secondary-color);
}

.sidebar {
    background-color: var(--primary-color);
    padding: 3rem 1.5rem;
    width: 100%;
    max-width: 310px;
    transition: all 0.3s ease;
    z-index: 2;
}



/* sidebar mobile */

.sidebar.mobile {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    z-index: 1000;
}



.sidebar .sidebar-header {
    margin-bottom: 30px;
}

.sidebar .sidebar-header .sidebar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.sidebar .sidebar-toggle {
    background-color: var(--white-color);
    padding: 5px;
    border-radius: 50%;
    border: none;
    margin-right: -45px;
    box-shadow: 0 2px 6px 2px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.sidebar .sidebar-toggle img {
    width: 35px;
    filter: invert(1);
    transition: all 0.3s ease;
}

.sidebar .sidebar-toggle.flipped img{
    rotate:180deg;
}



.sidebar .partition {
    width: auto;
    max-width: 350px;
    margin-left: -40px;
    margin-right: -27px;
    overflow: hidden;
}


.sidebar hr {
    width: 100vw;
    color: var(--white-color);
    margin-left: -50px;
    opacity: 1;

}

.sidebar .sidebar-tabs .sidebar-tab {
    margin-top: 15px;
    overflow: hidden;
}

.sidebar .sidebar-tabs .sidebar-tab .sidebar-item {
    border-radius: 6px;

}

.sidebar .sidebar-tabs .sidebar-tab .sidebar-link {
    padding: 1rem 0.5rem;
    margin-bottom: 10px;

}

.sidebar .sidebar-tabs .sidebar-tab .sidebar-item-active .sidebar-link {
    background-color: white ;
    border-radius: 6px !important;
}

.sidebar .sidebar-tabs .sidebar-tab .sidebar-item-active span {
    color: var(--primary-color) !important;
    font-size: var(--text-md);
    font-weight: var(--font-weight-500);
    line-height: var(--body-line-height);
    margin-bottom: 0;
}

.sidebar .sidebar-tabs .sidebar-tab .sidebar-item-active img {
    filter: invert(1);
}

.sidebar .sidebar-tabs .sidebar-tab .sidebar-link:hover,
.sidebar .sidebar-tabs .sidebar-tab .sidebar-link:active,
.sidebar .sidebar-tabs .sidebar-tab .sidebar-link:focus {
    background-color: white;
    border-radius: 6px;


}

.sidebar .sidebar-tabs .sidebar-tab .sidebar-link:hover span,
.sidebar .sidebar-tabs .sidebar-tab .sidebar-link:active span,
.sidebar .sidebar-tabs .sidebar-tab .sidebar-link:focus span {
    color: var(--primary-color) !important;
}

.sidebar .sidebar-tabs .sidebar-tab .sidebar-link:hover img,
.sidebar .sidebar-tabs .sidebar-tab .sidebar-link:active img,
.sidebar .sidebar-tabs .sidebar-tab .sidebar-link:focus img {
    filter: invert(1);
}

.sidebar .sidebar-tabs .sidebar-tab .sidebar-link {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

.sidebar .sidebar-tabs .sidebar-tab .sidebar-item span {
    font-size: var(--text-md);
    font-weight: var(--font-weight-500);
    line-height: var(--body-line-height);
    color: var(--white-color);
    margin-bottom: 0;
}


.expand {
    width: 100%;
    max-width: 90px;
}

/* End of Sidebar */


/* Main Content Layout */



.main-content {
    width: 100%;
    max-width: calc(100% - 310px);
    padding: 2rem 1.5rem;
    background-color: var(--background-secondary-color);
    transition: all 0.3s ease;
}

.main-content .topbar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 30px;
    background-color: var(--white-color);
    box-shadow: 0px 2px 6px 2px rgba(0, 0, 0, 0.06);
    border-radius: 6px;
    height: 100%;
    min-height: 85px;
    max-height: 90px;

}

.main-content .topbar .topbar-heading {
    padding: 0.7rem 1rem;
}

.main-content .topbar .topbar-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    max-width: 300px;
    background-color: var(--background-secondary-color);
    margin: .5rem 1rem;
    padding: 0.7rem 1rem;
    border-radius: 6px;


}

.main-content .topbar .topbar-content .profile-partition {
    max-height: 80%;
}

.main-content .topbar .topbar-content .profile-partition .vr {
    background-color: #878DAB;

}

.main-content .topbar .notification-button {
    cursor: pointer;
    position: relative;

}

.main-content .topbar .notification-button .notification-count {
    padding: 3px 7px;
    background-color: var(--red-color);
    color: var(--white-color);
    position: absolute;
    top: -6px;
    left: 13px;
    border-radius: 5rem;
    font-size: 10px;


}

.main-content .topbar .topbar-content .admin-profile {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.main-content .topbar .topbar-content .admin-profile .admin-name p {
    font-size: var(--text-base);
    font-weight: var(--font-weight-700);
    color: var(--body-color);
    margin-bottom: 0;

}

.main-content .topbar .topbar-content .admin-profile .admin-designation p {
    font-size: var(--text-xs);
    font-weight: var(--font-weight-400);
    color: var(--body-color);
    margin-bottom: 0;

}

.main-content .topbar .topbar-content .logout .logout-button {
    padding: 0.7rem;
    border-radius: 100%;
    background-color: var(--background-color);
    border:none;
}

.main-content .main {
    background-color: var(--white-color);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    box-shadow: 0px 2px 6px 2px rgba(0, 0, 0, 0.06);
    border-radius: 6px;
    height: 100%;
    /* padding: 2rem 1rem; */
}

/* End of Main Content Layout */

/* Dashboard */


.dashboard {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 15px;
    margin-top:15px;
}

.dashboard .banner-wrapper {
    background-color: var(--primary-color);
    border-radius: 6px;
    overflow: hidden;
    padding: 0px 0px 0px 0.7rem;
}

.dashboard .banner-wrapper .banner-right-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(#DEB850, #CA970B);
    border-top-left-radius: 120px;
    border-bottom-left-radius: 120px;
    min-height: 165px;
    padding: 1.5rem 1.5rem 0rem 4rem;
    color: var(--primary-color);


}

.dashboard .banner-wrapper .banner-right-content .cta-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
}

.dashboard .banner-wrapper .banner-right-content .cta-content .call-an-expert-content h3 {
    font-size: var(--h4-xl);
    font-weight: var(--font-weight-700);
    text-transform: capitalize;
}

.dashboard .banner-wrapper .banner-right-content .cta-content .call-an-expert-content h4 {
    color: #000014;
    font-weight: 700;
    font-size: 16px;
    text-transform: capitalize;
}

.dashboard .banner-wrapper .banner-right-content .cta-content .call-an-expert-content p {
    font-size: var(--text-xs);
    font-weight: var(--font-weight-400);
    color: #000014;
    margin-top: 5px;

}

.dashboard .banner-wrapper .banner-right-content .cta-content .call-an-expert-button a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.dashboard .banner-wrapper .banner-right-content .cta-content .call-an-expert-button a h2 {
    font-size: var(--h2-xl);
    font-weight: var(--font-weight-700);
    margin-bottom: 0;
}

.dashboard .banner-wrapper .banner-right-content .cta-content .call-an-expert-button a img {
    background-color: var(--primary-color);
    padding: 8px;
    border-radius: 100%;
}




.dashboard .banner-wrapper .banner-left-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    padding: 0px;
}

.dashboard .banner-wrapper .banner-left-content .legal-solutions-content p {
    font-size: var(--text-base);
    color: var(--white-color);
    line-height: var(--body-line-height);
    margin-bottom: 10px;
}

.dashboard .banner-wrapper .banner-left-content .legal-solutions-content h2 {
    color: var(--white-color);
    font-size: var(--h2-xl);
    line-height: var(--h2-line-height);
    text-transform: capitalize;

}

.dashboard .banner-wrapper .banner-left-content .legal-solutions-button .no-service-alert {
    background-color: transparent;
    padding: 0.5rem 1rem;
    border: 1px solid var(--secondary-color);
    font-weight: var(--font-weight-400);
    outline: none;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.dashboard .banner-wrapper .banner-left-content .legal-solutions-button .no-pending-alert {
    background-color: #FFF5DB;
    padding: 0.5rem 1rem;
    border: 1px solid #FFF5DB;
    font-weight: var(--font-weight-400);
    outline: none;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.dashboard .banner-wrapper .banner-left-content .legal-solutions-button .no-registration-alert {
    background-color: #FDE2E2;
    padding: 0.5rem 1rem;
    border: 1px solid #E8A0A0;
    font-weight: var(--font-weight-400);
    outline: none;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.dashboard .banner-wrapper .banner-left-content .legal-solutions-button .no-registration-alert span{
    color:#EC3333;
}


.dashboard .banner-wrapper .banner-left-content .legal-solutions-button span {
    color: var(--secondary-color);
    font-size: var(--text-sm);
}

.dashboard .banner-wrapper .banner-right-content .cta-image {
    align-self: flex-end;
}

.dashboard .popular-services {
    background-color: var(--background-secondary-color);
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 1.5rem 1rem 1.5rem 1rem;
    width: 100%;
    max-width: 100%;
}

.dashboard .popular-services .popular-services-content {
    width: 100%;
    max-width: 15%;
    margin-right: 5px;
}


.dashboard .popular-services .popular-services-content h2 {
    font-size: var(--h2-xl);
    font-weight: var(--font-weight-700);
    margin-bottom: 15px;
}

.dashboard .popular-services .popular-services-content p {
    font-size: var(--text-sm);
    font-weight: var(--font-weight-400);
    line-height: var(--body-line-height);
    color: var(--body-color);
}


/* Service Card */
.swiper {
    max-width: 100%;
    padding: 30px 0px 35px 0px;
}



.service-card {
    background-color: var(--white-color);
    border: 1px solid var(--white-color);
    border-radius: 20px;
    padding: .8rem 0.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    text-align: center;
    position: relative;
    height: auto;
}

.service-card .content-wraper {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.services-carousel {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    /* gap: 20px; */
    overflow-x: auto;
    position: relative;
    overflow: visible;
    margin-right: 10px;
}

.service-card .image-icon {
    background-color: var(--primary-color);
    border-radius: 100%;
    padding: 20px;
    position: absolute;
    top: -30px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-card-content h3 {
    margin-top: 35px;
    font-size: var(--h3-xl);
    font-weight: var(--font-weight-700);
    color: var(--primary-color);
    /*word-break: break-all;*/
    word-wrap: break-word;
}

.service-card-content p {
    color: var(--body-color);
    font-size: var(--text-sm);
    text-align: center;
    max-height: 80px;
    overflow-y: hidden;
    word-break: break-all;

}

.service-card-action {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

.service-card-action button {
    color: var(--secondary-color);
    font-size: var(--text-xs);
    font-weight: var(--font-weight-700);
    text-decoration: underline;
    border: none;
    background-color: transparent;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    row-gap: 5px;
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: 0px
}

/* Card Design End */

.dashboard .popular-services .all-services-button {
    width: 100%;
    max-width: 15%;
    padding: 1.5rem 3rem;
    background-color: var(--primary-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    margin-left: 10px !important;
    gap: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    height: calc(100% - 66px);
    min-height: 200px;
    margin-top: -5px;
}

.slider-box .swiper-backface-hidden {
    overflow: unset !important;
    padding-top: 30px;
    margin-left: 5px;
    padding-bottom: 30px;
}

.slider-box {
    max-width: 70%;
    width: 100%;
    overflow-x: hidden;
    overflow-y: unset !important;
}

.dashboard .popular-services .all-services-button:hover,
.dashboard .popular-services .all-services-button:active,
.dashboard .popular-services .all-services-button:focus {
    background-color: var(--secondary-color);
}

.dashboard .popular-services .all-services-button span {
    color: var(--white-color);
    font-size: var(--text-lg);
    font-weight: var(--font-weight-700);
    text-align: center;
}

.dashboard .popular-services .all-services-button img {
    padding: 10px 12px;
    background-color: var(--white-color);
    border-radius: 100%;
}


/* Dashboard Table Design */



.dashboard .purchased-services .services-listing .table-listing .table-responsive {
    border-radius: 6px;
    max-height: 500px;
}

.dashboard .purchased-services .services-listing h2 {

    font-size: var(--h2-xl);
    color: var(--primary-color);
    font-weight: var(--font-weight-700);

}

.dashboard .purchased-services .services-listing .table-listing .table {
    margin-bottom: 0px;
    background-color: #E2E4EE;
    --bs-table-bg: none;
    border: none;
    border-style: none;
    overflow-x: scroll;
}

.dashboard .purchased-services .services-listing .table-listing .table thead {
    position: sticky;
    top: 0;
}

.dashboard .purchased-services .services-listing .table-listing .table thead tr {
    background-color: var(--background-tertiary-color);
}


.dashboard .purchased-services .services-listing .table-listing .table tr th,
.dashboard .purchased-services .services-listing .table-listing .table tr td {
    padding: 5px 10px;
    border: none;
    border-style: none;
}

.dashboard .purchased-services .services-listing .table-listing .table-striped>tbody>tr:nth-of-type(odd)>* {
    --bs-table-bg-type: var(--background-secondary-color);
}

.dashboard .purchased-services .services-listing .table-listing .table-striped>tbody>tr:nth-of-type(even)>* {
    background: var(--background-tertiary-color);
}

.dashboard .purchased-services .services-listing .table-listing .table thead tr th {
    color: var(--primary-color);
    font-size: var(--text-base);
    font-weight: var(--font-weight-600);
}

.dashboard .purchased-services .services-listing .table-listing .table tbody tr td {
    color: var(--body-color);
    font-size: var(--text-sm);
    font-weight: var(--font-weight-400);

}

.dashboard .purchased-services .services-listing .table-listing .table tbody tr td:nth-last-child(3) div p,
.dashboard .purchased-services .services-listing .table-listing .table tbody tr td:nth-last-child(2) div p {
    margin-bottom: 0;
}

.dashboard .purchased-services .services-listing .table-listing .table tbody tr td .service-charge {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    color: var(--primary-color);
    background-color: #F5C754;
    padding: 5px 10px;
    border-radius: 6px;
    max-width: 100%;
    font-weight: var(--font-weight-600);
    color: #000;

}


.dashboard .purchased-services .services-listing .table-listing .table tbody tr .actions {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    /* width: 100%; */
    gap: 20px;
    flex-wrap: nowrap;

}


.dashboard .purchased-services .services-listing .table-listing .table tbody tr .actions .view-button {
    border: none;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    flex-wrap: nowrap;
}

.dashboard .purchased-services .services-listing .table-listing .table tbody tr .actions .view-button p {
    margin-bottom: 0;
    color: var(--primary-color);
    font-size: var(--text-base);
    font-weight: var(--font-weight-500);
}

/* popup backdrop change */
.modal-backdrop {
    background-color: var(--primary-color);
    ;
    opacity: .88 !important;
    transition: all 0.1s ease !important;
}

.modal .modal-header .btn-close {
    background-color: transparent !important;
    border: none !important;
    margin-right: 10px !important;
    margin: auto ;
}



/* End of popup backdrop change */
.dashboard .modal {
    border: none;
    background-color: transparent;
    padding: 0;
    --bs-modal-width: 800px;
    padding: 1.5rem 1rem;

}

.dashboard .modal .modal-content {
    border: none;
    background-color: var(--white-color);
    padding: 0;
    border-radius: 32px;
    overflow: hidden;
}

.dashboard .modal .modal-header {
    background-color: var(--background-secondary-color);
    padding: 1rem 1rem;

}


.dashboard .modal .modal-body {
    padding: 1.5rem 1rem;
    text-align: center;

}

.dashboard .modal .modal-body p {
    padding: 1rem;
    margin-bottom: 0px;
}



.dashboard .modal .modal-header .modal-header-content {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
}

.dashboard .modal .modal-header img {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    border-radius: 100%;
    background-color: var(--primary-color);
}

.dashboard .modal .modal-header h2 {
    font-size: var(--h2-xl);
    line-height: var(--h2-line-height);
    margin-bottom: 0;
    color: var(--primary-color);
}

.dashboard .modal .modal-body h4 {
    font-size: var(--h3-xl);
    margin-bottom: 0;
    color: var(--primary-color);
    text-transform: capitalize;
    font-weight: var(--font-weight-700);
    margin-bottom: 15px;
}

.service-summary .modal .modal-body .service-details .sub-service-title {
    padding: 1rem .5rem;
    font-weight: var(--font-weight-700);
}

.service-summary .modal .modal-body .service-details .sub-service {
    padding: 1rem .5rem;
    /* display: flex;
    justify-content: space-between; */
}

.dashboard .modal .modal-body .popup-content {
    max-height: 450px;
    overflow-y: auto;
}

.dashboard .modal .modal-body .popup-content {
    max-height: 450px;
    overflow-y: auto;
}

.dashboard .modal .modal-body p {
    font-size: var(--text-base);
    line-height: var(--body-line-height);
    color: var(--body-color);
    word-break: break-all;
}

.dashboard .modal .modal-footer {
    border: none;
    padding: 1rem;
}

.dashboard .modal .modal-footer .popup-action {
    width: 100%;
}

.dashboard .modal .modal-footer .popup-action .popup-action-content {
    display: flex;
    align-items: center;
}

.dashboard .modal .modal-footer .popup-action .popup-action-content span {
    font-size: var(--text-base);
    font-weight: var(--font-weight-700);
    color: var(--primary-color);

}

.dashboard .modal .modal-footer .popup-action .popup-action-content .price {
    font-size: var(--text-xl);
    border: 3px solid var(--primary-color);
    border-radius: 6px;
    padding: 0.2rem 0.5rem;
    margin: 0px 5px;
}

.dashboard .modal .modal-footer .popup-action .popup-button button {
    background-color: var(--primary-color);
    color: var(--white-color);
    border: 1px solid var(--primary-color);
    padding: 0.8rem 2rem;
    font-size: var(--text-lg);
    font-weight: var(--font-weight-500);
    outline: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: flex;
    gap: 10px;
}

.dashboard .modal .modal-body #subServiceContainer {
    /* border-top: 1px solid #00000020; */
    padding-top: 10px;
}

.dashboard .modal .modal-body #subServiceContainer .form-check {
    display: flex;
    justify-content: center;
}

.dashboard .modal .modal-body #subServiceContainer .form-check-input[type=checkbox] {
    border-radius: .25em;
    padding: 0.5rem;
    border: 1px solid black;
}

.dashboard .modal .modal-body #subServiceContainer .form-check-label {

    text-transform: uppercase;
    font-weight: 600;
}

/* Table inside Modal */
.dashboard .modal .table-responsive {
    border-radius: 6px;
    max-height: 500px;
}

.dashboard .purchased-services .services-listing h2 {

    font-size: var(--h2-xl);
    color: var(--primary-color);
    font-weight: var(--font-weight-700);

}

.dashboard .modal .table {
    margin-bottom: 0px;
    background-color: #E2E4EE;
    --bs-table-bg: none;
    border: none;
    border-style: none;
    overflow-x: scroll;
}

.dashboard .modal .table thead {
    position: sticky;
    top: 0;
}

.dashboard .modal .table thead tr {
    background-color: var(--background-tertiary-color);
}


.dashboard .modal .table tr th,
.dashboard .modal .table tr td {
    padding: 5px 10px;
    border: none;
    border-style: none;
}

.dashboard .modal .table-striped>tbody>tr:nth-of-type(odd)>* {
    --bs-table-bg-type: var(--background-secondary-color);
}

.dashboard .modal .table-striped>tbody>tr:nth-of-type(even)>* {
    background: var(--background-tertiary-color);
}

.dashboard .modal .table thead tr th {
    color: var(--primary-color);
    font-size: var(--text-base);
    font-weight: var(--font-weight-600);
}

.dashboard .modal .table tbody tr td {
    color: var(--body-color);
    font-size: var(--text-sm);
    font-weight: var(--font-weight-400);

}

.dashboard .modal .table tbody tr td:nth-last-child(3) div p,
.dashboard .modal .table tbody tr td:nth-last-child(2) div p {
    margin-bottom: 0;
}

/* End Dashboard Table Desgin */

/* Service Summary */

.service-summary .service-summary-listing .table-responsive {
    border-radius: 6px;
    max-height: 500px;

}

.service-summary .service-summary-listing .table {
    margin-bottom: 0px;
    background-color: #E2E4EE;
    --bs-table-bg: none;
    border: none;
    border-style: none;
    overflow-x: scroll;
}

.service-summary .service-summary-listing .table thead {
    position: sticky;
    top: 0;
}

.service-summary .service-summary-listing .table thead tr {
    background-color: var(--background-tertiary-color);
}


.service-summary .service-summary-listing .table tr th,
.service-summary .service-summary-listing .table tr td {
    padding: 15px;
    border: none;
    border-style: none;
}

.service-summary .service-summary-listing .table-striped>tbody>tr:nth-of-type(odd)>* {
    --bs-table-bg-type: var(--background-secondary-color);
}

.service-summary .service-summary-listing .table-striped>tbody>tr:nth-of-type(even)>* {
    background: var(--background-tertiary-color);
}

.service-summary .service-summary-listing .table thead tr th {
    color: var(--primary-color);
    font-size: var(--text-base);
    font-weight: var(--font-weight-600);
}

.service-summary .service-summary-listing .table tbody tr td {
    color: var(--body-color);
    font-size: var(--text-sm);
    font-weight: var(--font-weight-400);
}

.service-summary .service-summary-listing .table tbody tr td:nth-last-child(2) div p {
    margin-bottom: 0;
}

.service-summary .service-summary-listing .table tbody tr .actions {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    /* width: 100%; */
    gap: 20px;

}

.service-summary .service-summary-listing .table tbody tr .actions select {
    width: auto;
    background-color: var(--white-color);
    border: 1px solid var(--border-color);
    color: var(--body-color);
    font-size: var(--text-base);
    font-weight: var(--font-weight-500);
    padding: 0.5rem 2rem 0.5rem 1rem;
    border-radius: 6px;
}

.service-summary .service-summary-listing .table tbody tr .actions .view-button {
    background-color: var(--button-green-background-color);
    border: none;
    padding: 0.5rem 2rem;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.service-summary .service-summary-listing .table tbody tr .actions .continue-button {
    background-color: var(--primary-color);
    border: none;
    padding: 0.5rem 2rem;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.service-summary .service-summary-listing .table tbody tr .actions .view-button p {
    margin-bottom: 0;
    color: var(--primary-color);
    font-size: var(--text-base);
    font-weight: var(--font-weight-500);
}

.service-summary .service-summary-listing .table tbody tr .actions .continue-button p {
    margin-bottom: 0;
    color: var(--white-color);
    font-size: var(--text-base);
    font-weight: var(--font-weight-500);
}

.service-summary .modal {
    border: none;
    background-color: transparent;

    --bs-modal-width: 750px;
    padding: 0;
}

.service-summary .modal .modal-content {
    border: none;
    background-color: transparent;
    padding: 0;
    border-radius: 12px;
    overflow: hidden;
    margin: 1rem;
}

.service-summary .modal .modal-header {
    border-top-right-radius: 12px;
    border-top-left-radius: 12px;
    background-color: var(--primary-color);
}

.service-summary .modal .modal-header .btn-close {
    filter: invert(1);
}

.service-summary .modal .modal-body {
    background-color: var(--white-color);
    padding: 1rem 1.5rem;

}

.service-summary .modal .modal-body .service-details {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.service-summary .modal .modal-body .service-details p {
    color: var(--body-color);
    font-size: var(--text-sm);
}

/* .service-summary .modal .modal-body .service-details .service-content{
    display: flex;
    justify-content: space-between;
    text-align: left;
    align-items: flex-start;
    margin-bottom: 15px;
} */



.service-summary .modal .modal-body .service-details .service-content span {
    color: var(--body-color);
    font-size: var(--text-base);
}

.service-summary .modal .modal-body .service-details .service-content span:last-child {
    font-weight: var(--font-weight-600);
}

.service-summary .modal .modal-body img {
    max-width: 150px;
}

.service-summary .modal .modal-body .service-details .service-row .row>* {
    padding-right: 0px !important;
    padding-left: 0px !important;
}

.service-summary .modal .modal-body .service-details .sub-service {
    padding: 1rem 0.75rem;
    display: flex;
    justify-content: space-between;
}



.service-summary .modal .modal-body .service-details .service-row .row .col-12:nth-of-type(odd) {
    background-color: var(--background-secondary-color);
}

.service-summary .modal .modal-body .service-details .service-row .row .col-12::nth-of-type(even) {
    background-color: var(--background-tertiary-color);

}

.service-summary .modal .modal-body .service-details .total-price h3 {
    color: var(--green-text-color);
}

.service-summary .modal .modal-body .service-details .continue-button {
    background-color: var(--primary-color);
    border: none;
    padding: 0.5rem 2rem;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.service-summary .modal .modal-body .service-details .continue-button p {
    margin-bottom: 0;
    color: var(--white-color);
    font-size: var(--text-base);
    font-weight: var(--font-weight-500);

}

.service-summary .modal h2 {
    font-size: var(--h2-lg);
    line-height: var(--h2-line-height);
    margin-bottom: 0;
    color: var(--white-color);
}

.service-summary .modal p {
    font-size: var(--text-base);
    line-height: var(--body-line-height);
    color: var(--body-color);
}

/* End of Service Summary */


/* Service Apply Form */

.service-apply {
    height: 100%;
    max-height: 100%;
    display: flex;
    flex-direction: column;

}


.service-apply .service-apply-form {
    height: 100%
}

/* .service-apply button{
    background-color: var(--primary-color);
    color: var(--white-color);
    border: 1px solid var(--primary-color);
    padding: 0.8rem 2rem;
    font-size: var(--text-lg);
    font-weight: var(--font-weight-500);
    outline:none;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: flex;
    gap: 10px;

} */

.service-apply .service-apply-form .form-label {
    margin-bottom: 2px;
    font-weight: 500;

}



/* .service-apply .service-apply-form .form-actions{
  margin-top: 20px;
  display: flex;
  justify-content: flex-end;
  margin-top: auto;
  height: 100% !important;
  align-items: flex-end;
} */


.service-apply .service-apply-form form>.col-12:not(.form-actions),
.service-apply .service-apply-form form>.col-md-6 {
    flex-shrink: 0;
}


.service-apply .service-apply-form form {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

}



.service-apply .service-apply-form .form-label {
    color: var(--body-color);
    font-size: var(--text-sm);
    font-weight: var(--font-weight-600);
    margin-bottom: 10px;
}

.service-apply .service-apply-form input,
.service-apply .service-apply-form select,
.service-apply .service-apply-form textarea {
    background-color: var(--white-color);
    color: var(--body-color);
    font-size: var(--text-sm);
    font-weight: var(--font-weight-400);
    margin-bottom: 10px;
    padding: 15px 10px;
    border-radius: 6px;
    border: 1px solid var(--body-color);


}

.service-apply .service-apply-form input:hover,
.service-apply .service-apply-form select:hover,
.service-apply .service-apply-form textarea:hover {
    background-color: #FAF9F6;
}

.service-apply .service-apply-form input:active,
.service-apply .service-apply-form select:active,
.service-apply .service-apply-form textarea:active {
    background-color: #FAF9F6;
}

.service-apply .service-apply-form input:focus,
.service-apply .service-apply-form select:focus,
.service-apply .service-apply-form textarea:focus {
    background-color: #FAF9F6;
}

.service-apply .service-apply-form input:disabled,
.service-apply .service-apply-form select:disabled,
.service-apply .service-apply-form textarea:disabled {
    background-color: var(--background-secondary-color);
}

.service-apply .service-apply-form input:read-only,
.service-apply .service-apply-form select:read-only,
.service-apply .service-apply-form textarea:read-only {
    background-color: var(--background-secondary-color);
}

.service-apply .service-apply-form .form-control:focus {
    border: 1px solid var(--body-color);
    box-shadow: none;
}

.service-apply .service-apply-form input:placeholder {
    color: var(--body-color);
    font-size: var(--text-sm);
    font-weight: var(--font-weight-400);
}

.service-apply .service-apply-form .form-actions {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
    align-items: flex-end;
    /* height: 30vh; */
    margin-top: 10px;
}

.service-apply .service-apply-form .form-actions .action-button {
    background-color: var(--primary-color);
    padding: 0.8rem 5rem;
    color: var(--white-color);
    border: 1px solid var(--primary-color);
    font-size: var(--text-lg);
    font-weight: var(--font-weight-500);
    outline: none;
    border-radius: 6px;
    transition: all 0.3s ease;

}

.service-apply .service-apply-form .form-actions .action-button:hover {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);

}

.service-apply .service-apply-form .form-actions .action-button:active {
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color)
}

.service-apply .service-apply-form .form-actions .cancel-button {
    background-color: var(--background-secondary-color);
    padding: 0.8rem 5rem;
    color: var(--primary-color);
    border: 1px solid var(--background-secondary-color);
    font-weight: var(--font-weight-500);
    font-size: var(--text-lg);
    outline: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0px 4px 4px 0 rgba(0, 0, 0, 0.08);

}

.service-apply .service-apply-form .form-actions .cancel-button:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
    border: 1px solid var(--primary-color);

}

.service-apply .service-apply-form .form-actions .cancel-button:active {
    background-color: var(--primary-color);
    color: var(--white-color);
    border: 1px solid var(--primary-color);
}

.service-apply .service-apply-form .field-add-button {
    display: flex;
    align-items: center;
    border: none;
    background-color: transparent;

}


.service-apply .service-apply-form .field-add-button:hover,
.service-apply .service-apply-form .field-add-button:active,
.service-apply .service-apply-form .field-add-button:focus {
    background-color: var(--primary-color);
    border-radius: 100%;
}

.service-apply .service-apply-form .field-add-button:hover img,
.service-apply .service-apply-form .field-add-button:active img,
.service-apply .service-apply-form .field-add-button:focus img {
    filter: invert(1);
}

.service-apply .service-apply-form .upload-box {
    border: 2px dashed var(--upload-border-color);
    border-radius: 12px;

    padding: 30px 0px;

    text-align: center;

    background: var(--upload-background-color);

    transition: all .3s ease;
}

.service-apply .service-apply-form .upload-box:hover {
    background-color: var(--background-secondary-color);
}

.service-apply .service-apply-form .sub-service {
    max-height: 200px;
    overflow-y: auto;
    width: auto;
}

.service-apply .service-apply-form .sub-service .sub-service-ul {
    display: flex;
    flex-wrap: wrap;

    gap: 2rem;
}

.service-apply .service-apply-form .sub-service .sub-services-li {
    color: var(--body-color);
    font-size: var(--text-sm);
    font-weight: var(--font-weight-400);
    background-color: var(--background-tertiary-color);
    padding: 15px 10px;
    /* border: .px solid var(--primary-color); */
    border-radius: 6px;
    margin-bottom: 10px
}



.service-apply .service-apply-form .upload-icon {
    margin-bottom: 15px
}

.service-apply .service-apply-form .upload-text {
    font-size: var(--text-base);
    font-weight: var(--font-weight-700);
    color: var(--upload-text-color);
    line-height: 1;
}

.service-apply .service-apply-form .browse-link {
    font-family: var(--seondary-font);
    font-size: var(--text-sm);
    font-weight: var(--font-weight-700);
    color: var(--upload-text-color);
    text-decoration: underline;
    line-height: 10px;


}

.service-apply .service-apply-form .browse-link:hover {
    color: var(--primary-color)
}

.service-apply .service-apply-form .upload-button {
    background-color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    color: var(--white-color);
    border: 1px solid var(--primary-color);
    font-size: var(--text-lg);
    font-weight: var(--font-weight-500);
    outline: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    margin-top: 10px;
    margin-right: auto;
    margin-left: auto;

}

.service-apply .service-apply-form .file-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--background-secondary-color);
    border-radius: 6px;
    padding: 0.5rem 1.2rem;
    gap: 10px;

}

.service-apply .service-apply-form .file-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.service-apply .service-apply-form .file-center {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}


.service-apply .service-apply-form .file-center .file-status span {
    font-family: var(--seondary-font);
    font-size: var(--text-xxs);
}

.service-apply .service-apply-form .file-center .success-icon {
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    font-size: 16px;
    font-weight: bold;
}

.service-apply .service-apply-form .file-right .remove-icon {
    width: 25px;
    height: 25px;
    border: 2px solid var(--remove-button-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--remove-button-color);
    cursor: pointer;
}

.service-apply .service-apply-form .file-right .remove-icon:hover {
    background: #e9eaee;
}

.service-apply .service-apply-form .file-center .file-status span {
    font-family: var(--seondary-font);
    font-size: var(--text-sm);
    font-weight: var(--font-weight-400);
    color: var(--upload-text-color);
    margin-bottom: 2px;
}

.service-apply .service-apply-form .file-right a {
    background-color: var(--primary-color);
    border-radius: 6px;
    color: var(--white-color);
    padding: 10px 15px;

}

.service-apply .service-apply-form .file-right a:hover {
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}


/* End of Service Apply Form */

/* Task Lising - Tabular Desgin */

.tabulator-cell {
    white-space: nowrap;

}

.task-listing-wrapper .row .col-12 .card {
    --bs-card-border-width: none;

}


.task-listing-wrapper .row .card-header {
    background-color: transparent;
}

.task-listing-wrapper .row .col-12 .card .card-header h1 {
    font-size: var(--h2-xl);
    color: var(--primary-color);
}

.task-listing-wrapper .row .col-12 .card .card-header a {
    background-color: var(--primary-color);
    color: var(--white-color);
    border: 1px solid var(--primary-color);
    padding: 0.8rem 2rem;
    font-size: var(--text-lg);
    font-weight: var(--font-weight-500);
    outline: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: flex;
    gap: 10px;
}

.table-new .tabulator .tabulator-header .tabulator-header-contents {
    border-radius: 6px 6px 0px 0px;
}






.table-new .tabulator .tabulator-header .tabulator-header-contents .tabulator-headers .tabulator-col .tabulator-col-content {
    background-color: var(--background-tertiary-color);
    padding: 15px;

}

/* .table-new .tabulator .tabulator-header .tabulator-header-contents .tabulator-headers .tabulator-col{
    min-width: max-content !important;
} */
.table-new .tabulator .tabulator-header .tabulator-header-contents .tabulator-col-resize-handle {
    background-color: var(--background-tertiary-color)
}

.table-new .tabulator .tabulator-tableholder .tabulator-row-odd .tabulator-col-resize-handle {
    background-color: var(--background-secondary-color);
}

.table-new .tabulator .tabulator-tableholder .tabulator-row-even .tabulator-col-resize-handle {
    background-color: var(--background-tertiary-color);
}

.table-new .tabulator .tabulator-tableholder .tabulator-row {
    border: none;
    border-style: none;

}

.table-new .tabulator .tabulator-tableholder {
    border-radius: 0px 0px 6px 6px;
}



.table-new .tabulator .tabulator-tableholder .tabulator-row .tabulator-cell {
    color: var(--body-color);
    font-size: var(--text-sm);
    /* padding:20px; */
    place-content: center;


}

/* .table-new .tabulator .tabulator-tableholder .tabulator-row .tabulator-cell[tabulator-field="status"]{
    width: fit-content !important;
} */


.table-new .tabulator .tabulator-tableholder .tabulator-row .tabulator-cell select {
    margin: 0 auto !important;

}

.table-new .tabulator .tabulator-tableholder .tabulator-row .tabulator-cell a[data-action="delete"] {
    color: var(--red-text-color) !important;
}

.table-new .tabulator .tabulator-tableholder .tabulator-row .tabulator-cell a[data-action="edit"] {
    color: #3447E6 !important;
}

.table-new .tabulator .tabulator-tableholder .tabulator-row .tabulator-cell a[data-action="view"] {
    color: var(--green-text-color) !important;
}

.tab le-new .tabulator .tabulator-tableholder .tabulator-row-odd

/* span.tabulator-col-resize-handle{
    display: none !important;
} */
.table-new .tabulator .tabulator-tableholder .tabulator-row-odd .tabulator-cell {
    background-color: var(--background-secondary-color);

}

.tabulator-placeholder-contents {
    overflow: hidden
}


.table-new .tabulator .tabulator-footer {
    border: none;
}

.table-new .tabulator .tabulator-tableholder .tabulator-row-even .tabulator-cell {
    background-color: var(--background-tertiary-color);

}

.table-new .tabulator .tabulator-footer .tabulator-page:first-of-type {
    background-color: var(--background-secondary-color);
}

.table-new .tabulator .tabulator-footer .tabulator-page.active {
    color: var(--secondary-color);
    font-weight: var(--font-weight-600);
}

/* popup backdrop change */
.modal-backdrop {
    background-color: var(--primary-color);
    ;
    opacity: .88 !important;
    transition: all 0.1s ease !important;
}

.modal .modal-header .btn-close {
    background-color: transparent !important;
    border: none !important;
}



/* End of popup backdrop change */
.task-listing .modal {
    border: none;
    background-color: transparent;
    padding: 0;
}

.task-listing .modal .modal-content {
    border: none;
    background-color: transparent;
    padding: 0;
    border-radius: 12px;
    overflow: hidden;
}

.task-listing .modal .modal-header {
    border-top-right-radius: 12px;
    border-top-left-radius: 12px;
    background-color: var(--primary-color);
}

.task-listing .modal .modal-header .btn-close {
    filter: invert(1);
}

.task-listing .modal .modal-body {
    padding: 0rem;
}

.task-listing .modal .modal-body p {
    padding: 1rem;
    margin-bottom: 0px;
}

.task-listing .modal .modal-body p:first-child {
    padding-top: 1.5rem
}

.task-listing .modal .modal-body p:last-child {
    border-bottom-right-radius: 12px;
    border-bottom-left-radius: 12px;

}

.task-listing .modal .modal-body p:nth-of-type(odd) {
    background-color: var(--background-secondary-color);
}

.task-listing .modal .modal-body p:nth-of-type(even) {
    background-color: var(--background-tertiary-color);

}

.task-listing .modal h2 {
    font-size: var(--h2-lg);
    line-height: var(--h2-line-height);
    margin-bottom: 0;
    color: var(--white-color);
}

.task-listing .modal p {
    font-size: var(--text-base);
    line-height: var(--body-line-height);
    color: var(--body-color);
}



/* End of Task Lising - Tabular Desgin */

/* Messageing */

.chat-wrapper {
    background: #EDEDEE;
    border-radius: 10px;
    overflow: hidden;
    position: sticky;
    top: 0;
}

.chat-wrapper p {
    margin-bottom: 0px;
}

/* Header */

.chat-header {
    background: #4CCA8B;
    padding: 15px 20px;
    border-radius: 12px 12px 0 0;
}

/* Chat area */

.chat-body {
    overflow-y: auto;
    padding: 25px;
    transition: height 0.3s ease;
    min-height:670px
}

.day {
    font-family: var(--tertiary-font);
    color: var(--chatbot-timestamp-color);
    font-size: var(--text-sm);

}

/* Chat bubble */

.chat-bubble-left {
    max-width: 350px;
    border-radius: 6px;
    padding: 6px 50px 25px 15px;
    font-size: var(--text-sm);
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.08);
}

.chat-bubble-right {
    max-width: 350px;
    padding: 6px 50px 25px 15px;
    border-radius: 6px;
    font-size: var(--text-sm);
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.08);
    margin: 0 0 0 auto;
    position: relative;


}

.chat-bubble-left p,
.chat-bubble-left strong {
    word-break: break-all;
}

.chat-bubble-right p {
    text-align: left;
    word-break: break-all;
}

.chat-right-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;

}

/* Left bubble */

.chat-left {
    background: var(--white-color);
}

/* Right bubble */

.chat-right {
    background: var(--primary-color);
    color: var(--white-color);
    background-color: #007AFF;
    min-width: 80px;

}

.chat-bubble-right.chat-right .icon-msg {
    position: absolute;
    right: -15px;
    top: 0;
}



.chat-bubble-right.chat-right {
    position: relative;
}

.chat-bubble-left.chat-left {
    position: relative;
}


.chat-left .icon-msg {
    position: absolute;
    top: -3px;
    left: -12px;
}

.chat-right p {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-align: left;
}

/* Timestamp */

.chat-right+.chat-time {
    color: #fff;
}

.chat-left+.chat-time {
    color: #515151;
}

.chat-time {
    position: absolute;
    right: 3%;
    bottom: 5%;
    font-size: 12px;
    margin-top: 4px;
}

/* Footer */

.chat-footer {
    background: #EDEDEE;
    padding: 12px;
}

.chat-input {
    border: none;
    border-radius: 6px;
    padding: 20px;
    width: 100%;
}

.chat-input:focus {
    outline: none;
    box-shadow: none;
}

.send-btn {
    background: var(--primary-color);
    color: var(--white-color);
    border: none;
    padding: 8px 18px;
    border-radius: 6px;
}

button#sendMessageBtn {
    position: absolute;
    top: 10%;
    right: 1%;
    padding: 14px;
    background: #007AFF;
}

.user-name {
    font-size: var(--text-lg);
    color: var(--white-color);
    font-weight: var(--font-weight-700);
    margin-right: 40px;
}

.user-status {
    font-size: var(--text-sm);
    color: var(--body-color);
    font-weight: var(--font-weight-400);
}


 .members-trigger {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.18);
    border: 1.5px solid rgba(255,255,255,0.35);
    border-radius: 40px;
    padding: 5px 12px 5px 8px;
    cursor: pointer;
    transition: background 0.15s;
    user-select: none;
  }
  .members-trigger:hover { background: rgba(255,255,255,0.28); }
 
  .avatar-stack {
    display: flex;
    align-items: center;
  }
  .av {
    width: 28px; height: 28px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 10px; font-weight: 600;
    margin-left: -7px;
    flex-shrink: 0;
  }
  .av:first-child { margin-left: 0; }
  .av-a { background: #fef3c7; color: #92400e; border: 1px solid #fef3c7; }
  .av-b { background: #ede9fe; color: #5b21b6;; border: 1px solid #ede9fe; }
  .av-c { background: #e0f2fe; color: #075985; border: 1px solid #e0f2fe; }
 
  .trigger-label {
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    white-space: nowrap;
  }
 
  .chevron {
    width: 14px; height: 14px;
    fill: none;
    stroke: #fff;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.2s ease;
    flex-shrink: 0;
  }
  .chevron.open { transform: rotate(180deg); }
  .members-popup {
    display: none;
    position: absolute;
    right: 20px;
    top: calc(100% + 10px);
    width: 260px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    box-shadow: 0 12px 36px rgba(0,0,0,0.14);
    z-index: 200;
    overflow: hidden;
    animation: popIn 0.18s ease;
  }
  .members-popup.visible { display: flex; flex-wrap:wrap; }
 
  @keyframes popIn {
    from { opacity: 0; transform: translateY(-6px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
  }
 
  .popup-head {
    padding: 12px 16px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #f3f4f6;
    width: 100%;
  }
  .popup-head-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #9ca3af;
  }
  .member-count-badge {
    background: #e8f9f0;
    color: #16a34a;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 20px;
  }
 
  .member-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    transition: background 0.1s;
    cursor: default;
    width: 100%;
  }
  .member-row:hover { background: #f9fafb; }
 
  .m-avatar {
    width: 36px; height: 36px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 12px; font-weight: 600;
    flex-shrink: 0;
    position: relative;
  }
  .m-info { flex: 1; min-width: 0; }
  .m-name {
    font-size: 13px;
    font-weight: 600;
    color: #111827;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
 
  .m-tag {
    font-size: 10px;
    font-weight: 600;
    padding: 2px 7px;
    border-radius: 20px;
    white-space: nowrap;
  }
  .tag-admin  { background: #fef3c7; color: #92400e; }
  .tag-client { background: #ede9fe; color: #5b21b6; }
  .tag-staff  { background: #e0f2fe; color: #075985; }


/* End of Chat */

.tabulator-cell a[data-action="message"] {
    background-color: var(--primary-color);
    padding: 0.2rem 2rem;
    color: var(--white-color);
    border: 1px solid var(--primary-color);
    font-size: var(--text-base);
    font-weight: var(--font-weight-500);
    outline: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    color: var(--white-color) !important;
}

.tabulator-cell a[data-action="message"]:hover {
    background-color: var(--primary-hover-color);

}

/* End of Message */

/* Tabular Design  My Subscription  */

.tabulator-cell {
    white-space: nowrap;
}

.my-subscription-wrapper .row .col-12 .card {
    --bs-card-border-width: none;

}

.my-subscription .subscrption-tabs {
    width: 100%;
}

.my-subscription .subscrption-tabs .nav .nav-item .nav-link {
    background-color: var(--background-secondary-color);
    color: var(--primary-color);
    font-size: var(--text-base);
    font-weight: var(--font-weight-700);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 1rem 2.5rem;
    border-radius: 6px;

}

.my-subscription .subscrption-tabs .nav .nav-item .nav-link:hover,
.my-subscription .subscrption-tabs .nav .nav-item .nav-link:active,
.my-subscription .subscrption-tabs .nav .nav-item .nav-link:focus {
    background-color: var(--primary-color);
    color: var(--white-color);
}



.my-subscription .subscrption-tabs .nav .nav-item #pills-completed-tab {
    margin-left: -12px;
}

.my-subscription .subscrption-tabs .nav .nav-item .nav-link div {
    background-color: var(--primary-color);
    padding: 0.125rem 1rem;
    color: var(--white-color);
    border-radius: 2rem;
}

.nav-tab-link-active {
    background-color: var(--primary-color) !important;
    color: var(--white-color) !important;
}

.nav-tab-link-active div {
    background-color: var(--white-color) !important;
    color: var(--primary-color) !important;
}

.my-subscription .subscrption-tabs .nav .nav-item .nav-link:hover div,
.my-subscription .subscrption-tabs .nav .nav-item .nav-link:active div,
.my-subscription .subscrption-tabs .nav .nav-item .nav-link:focus div {
    background-color: var(--white-color);
    color: var(--primary-color);
}


.my-subscription .subscrption-tabs .nav .nav-item .nav-link p {
    margin-bottom: 0;
}

.my-subscription-wrapper .row .card-header {
    background-color: transparent !important;
}

.my-subscription-wrapper .row .col-12 .card .card-header h1 {
    font-size: var(--h2-xl);
    color: var(--primary-color);
}

.my-subscription-wrapper .row .col-12 .card .card-header a {
    background-color: var(--primary-color);
    color: var(--white-color);
    border: 1px solid var(--primary-color);
    padding: 0.8rem 2rem;
    font-size: var(--text-lg);
    font-weight: var(--font-weight-500);
    outline: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: flex;
    gap: 10px;
}

.table-new .tabulator .tabulator-header .tabulator-header-contents {
    border-radius: 6px 6px 0px 0px;
}

.table-new .tabulator .tabulator-header .tabulator-header-contents .tabulator-headers .tabulator-col .tabulator-col-content {
    background-color: var(--background-tertiary-color);
    padding: 15px;

}

/* .table-new .tabulator .tabulator-header .tabulator-header-contents .tabulator-headers .tabulator-col{
    min-width: max-content !important;
} */

.table-new .tabulator .tabulator-tableholder .tabulator-row {
    border: none;
    border-style: none;

}

.table-new .tabulator .tabulator-tableholder {
    border-radius: 0px 0px 6px 6px;
}

.table-new .tabulator .tabulator-tableholder .tabulator-row .tabulator-cell {
    color: var(--body-color);
    font-size: var(--text-sm);
    /* padding:20px; */
    place-content: center;


}

/* .my-subscription-wrapper .card-body .table-main-wraper {
        overflow-x: auto;
        width: 100%;
    }

.my-subscription-wrapper .tabulator-header,
    .tabulator-tableholder {
        min-width: 1700px;
    }  */
/* .table-new .tabulator .tabulator-tableholder .tabulator-row .tabulator-cell[tabulator-field="status"]{
    width: fit-content !important;
} */


.table-new .tabulator .tabulator-tableholder .tabulator-row .tabulator-cell select {
    margin: 0 auto !important;

}

.table-new .tabulator .tabulator-tableholder .tabulator-row .tabulator-cell a[data-action="delete"] {
    color: var(--red-text-color) !important;
}

.table-new .tabulator .tabulator-tableholder .tabulator-row .tabulator-cell a[data-action="edit"] {
    color: #3447E6 !important;
}

.table-new .tabulator .tabulator-tableholder .tabulator-row .tabulator-cell a[data-action="view"] {
    color: var(--green-text-color) !important;
}


.table-new .tabulator .tabulator-tableholder .tabulator-row .tabulator-cell div a[data-action="details"] {
    background-color: #D8D5FF;
    padding: 0.5rem 2rem;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
    max-width: 120px;
    margin-bottom: 0;
    font-size: var(--text-base);
    font-weight: var(--font-weight-500);
    transition: all 0.3s ease;
    margin: auto;
    color:#000014;
}



.table-new .tabulator .tabulator-tableholder .tabulator-row .tabulator-cell div a[data-action="details"]::hover,.table-new .tabulator .tabulator-tableholder .tabulator-row .tabulator-cell div a[data-action="details"]:focus-within,.table-new .tabulator .tabulator-tableholder .tabulator-row .tabulator-cell div a[data-action="details"]:focus,.table-new .tabulator .tabulator-tableholder .tabulator-row .tabulator-cell div a[data-action="details"]:active{
    background-color: #8775FF;
    color:white !important ;
}


.table-new .tabulator .tabulator-tableholder .tabulator-row .tabulator-cell div a[data-action="details"]:focus-within {
    color:white;
}


.table-new .tabulator .tabulator-tableholder .tabulator-row .tabulator-cell div a[data-action="details"]:focus-within svg path {
    stroke: white;
    fill: none !important;
}


.table-new .tabulator .tabulator-tableholder .tabulator-row .tabulator-cell div a[data-action="details"]:hover svg path,.table-new .tabulator .tabulator-tableholder .tabulator-row .tabulator-cell div a[data-action="details"]:focus-within svg path,.table-new .tabulator .tabulator-tableholder .tabulator-row .tabulator-cell div a[data-action="details"]:focus svg path,.table-new .tabulator .tabulator-tableholder .tabulator-row .tabulator-cell div a[data-action="details"]:active svg path{
    stroke:#fff;
}




.table-new .tabulator .tabulator-tableholder .tabulator-row .tabulator-cell div a[data-action="history"] {
    background-color: #97DED8;
    color:#000014;
}


.table-new .tabulator .tabulator-tableholder .tabulator-row .tabulator-cell div a[data-action="history"]:hover,.table-new .tabulator .tabulator-tableholder .tabulator-row .tabulator-cell div a[data-action="history"]:focus-within,.table-new .tabulator .tabulator-tableholder .tabulator-row .tabulator-cell div a[data-action="history"]:focus{
    background-color: #41c1b6;
    border:1px solid #C9C4F3;
    color:#fff !important ;
}


.table-new .tabulator .tabulator-tableholder .tabulator-row .tabulator-cell div a[data-action="history"]:hover svg path,.table-new .tabulator .tabulator-tableholder .tabulator-row .tabulator-cell div a[data-action="details"]:focus-within svg path,.table-new .tabulator .tabulator-tableholder .tabulator-row .tabulator-cell div a[data-action="history"]:focus svg path{
    fill:#fff;
}




.table-new .tabulator .tabulator-tableholder .tabulator-row .tabulator-cell div .action-link {
    background-color: #4CCA8B;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
    min-width: 150px;
    margin-bottom: 0;
    color: #000014;
    font-size: var(--text-base);
    font-weight: var(--font-weight-500);
}

.table-new .tabulator .tabulator-tableholder .tabulator-row .tabulator-cell div .disabled-link {
    background-color: var(--border-color);
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
    min-width: 150px;
    margin-bottom: 0;
    color: var(--white-color) !important;
    font-size: var(--text-base);
    font-weight: var(--font-weight-500);
}

.table-new .tabulator .tabulator-tableholder .tabulator-row .tabulator-cell div .paid-link {
    background-color: #b4eb97;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
    min-width: 150px;
    margin-bottom: 0;
    color: #000014;
    font-size: var(--text-base);
    font-weight: var(--font-weight-500);
    cursor:none;
}

.table-new .tabulator .tabulator-tableholder .tabulator-row .tabulator-cell div a[data-action="pay"],.table-new .tabulator .tabulator-tableholder .tabulator-row .tabulator-cell div button[data-action="pay"]{
    background-color: #04A30B;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
    min-width: 150px;
    margin-bottom: 0;
    color: var(--white-color) !important;
    font-size: var(--text-base);
    font-weight: var(--font-weight-500);
}


.table-new .tabulator .tabulator-tableholder .tabulator-row .tabulator-cell div a[data-action="pay"].disabled-link:hover,
.table-new .tabulator .tabulator-tableholder .tabulator-row .tabulator-cell div a[data-action="pay"].disabled-link:active {
    background-color: var(--border-color);

}

.table-new .tabulator .tabulator-tableholder .tabulator-row .tabulator-cell div a[data-action="pay"]:hover,
.table-new .tabulator .tabulator-tableholder .tabulator-row .tabulator-cell div button[data-action="pay"]:hover,
.table-new .tabulator .tabulator-tableholder .tabulator-row .tabulator-cell div a[data-action="pay"]:active,
.table-new .tabulator .tabulator-tableholder .tabulator-row .tabulator-cell div button[data-action="pay"]:active {
    background-color: #2bd532;
}

.table-new .tabulator .tabulator-tableholder .tabulator-row .tabulator-cell div a[data-action="details"]:hover,
.table-new .tabulator .tabulator-tableholder .tabulator-row .tabulator-cell div a[data-action="details"]:active {
    background-color: #b39cffab;
    color: #fff !important;
}

/* span.tabulator-col-resize-handle{
    display: none !important;
} */
.table-new .tabulator .tabulator-tableholder .tabulator-row-odd .tabulator-cell {
    background-color: var(--background-secondary-color);

}

.table-new .tabulator .tabulator-footer {
    border: none;
}

.table-new .tabulator .tabulator-tableholder .tabulator-row-even .tabulator-cell {
    background-color: var(--background-tertiary-color);

}

.table-new .tabulator .tabulator-footer .tabulator-page:first-of-type {
    background-color: var(--background-secondary-color);
}

.table-new .tabulator .tabulator-footer .tabulator-page.active {
    color: var(--secondary-color);
    font-weight: var(--font-weight-600);
}

#paynowModal {
    border: none;
    background-color: transparent;

    --bs-modal-width: 750px;
    padding: 0;
}

#paynowModal .modal-content {
    border: none;
    background-color: transparent;
    padding: 0;
    border-radius: 12px;
    overflow: hidden;
    margin: 1rem;
}

#paynowModal .modal-header {
    border-top-right-radius: 12px;
    border-top-left-radius: 12px;
    background-color: var(--primary-color);
}

#paynowModal .modal-header .btn-close {
    filter: invert(1);
}

#paynowModal .modal-body {
    background-color: var(--white-color);
    padding: 1rem 1.5rem;

}

#paynowModal .modal-body .service-details {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

#paynowModal .modal-body .service-details p {
    color: var(--body-color);
    font-size: var(--text-sm);
}

#paynowModal .modal-body .service-details .service-content {
    display: flex;
    justify-content: space-between;
    text-align: left;
    align-items: flex-start;
    margin-bottom: 15px;
}



#paynowModal .modal-body .service-details .service-content span {
    color: var(--body-color);
    font-size: var(--text-base);
}

#paynowModal .modal-body .service-details .service-content span:last-child {
    font-weight: var(--font-weight-600);
}

#paynowModal .modal-body img {
    max-width: 150px;
}

#paynowModal .modal-body .service-details .service-row .row>* {
    padding-right: 0px !important;
    padding-left: 0px !important;
}

#paynowModal .modal-body .service-details .sub-service {
    padding: 1rem 0.75rem;
    display: flex;
    justify-content: space-between;
}



#paynowModal .modal-body .service-details .service-row .row .col-12:nth-of-type(odd) {
    background-color: var(--background-secondary-color);
}

#paynowModal .modal-body .service-details .service-row .row .col-12::nth-of-type(even) {
    background-color: var(--background-tertiary-color);

}

#paynowModal .modal-body .service-details .total-price h3 {
    color: var(--green-text-color);
}

#paynowModal .modal-body .service-details .continue-button {
    background-color: var(--primary-color);
    border: none;
    padding: 0.5rem 2rem;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

#paynowModal .modal-body .service-details .continue-button p {
    margin-bottom: 0;
    color: var(--white-color);
    font-size: var(--text-base);
    font-weight: var(--font-weight-500);

}

#paynowModal h2 {
    font-size: var(--h2-lg);
    line-height: var(--h2-line-height);
    margin-bottom: 0;
    color: var(--white-color);
}

#paynowModal p {
    font-size: var(--text-base);
    line-height: var(--body-line-height);
    color: var(--body-color);
}

#paynowModal .thank-you-alert {
    padding: 1rem 1.5rem;
    background-color: var(--green-background-color);
    border: 1px solid var(--green-text-color);
    border-radius: 10px;
    margin-top: 10px;
}

#paynowModal .thank-you-alert p {
    margin-bottom: 0px;
    font-size: var(--text-base);
    font-weight: var(--font-weight-600);
}

.service-charge {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    color: var(--primary-color);
    background-color: #F5C754;
    padding: 5px 10px;
    border-radius: 6px;
    max-width: 100%;
    font-weight: var(--font-weight-600);
    color: #000;
}

/* End of Tabular Design My Subscription  */

/* Details Table */

.sub-service .sub-service-listing .table-responsive {
    border-radius: 6px;
    max-height: 500px;

}

.sub-service .sub-service-listing .table {
    margin-bottom: 0px;
    background-color: #E2E4EE;
    --bs-table-bg: none;
    border: none;
    border-style: none;
    overflow-x: scroll;
}

.sub-service .sub-service-listing .table thead {
    position: sticky;
    top: 0;
}

.sub-service .sub-service-listing .table thead tr {
    background-color: var(--background-tertiary-color);
}


.sub-service .sub-service-listing .table tr th,
.sub-service .sub-service-listing .table tr td {
    padding: 15px;
    border: none;
    border-style: none;
}

.sub-service .sub-service-listing .table-striped>tbody>tr:nth-of-type(odd)>* {
    --bs-table-bg-type: var(--background-secondary-color);
}

.sub-service .sub-service-listing .table-striped>tbody>tr:nth-of-type(even)>* {
    background: var(--background-tertiary-color);
}

.sub-service .sub-service-listing .table thead tr th {
    color: var(--primary-color);
    font-size: var(--text-base);
    font-weight: var(--font-weight-600);
}

.sub-service .sub-service-listing .table tbody tr td {
    color: var(--body-color);
    font-size: var(--text-sm);
    font-weight: var(--font-weight-400);
}

/* End of Details table */

/* All Service */

#all-service-table .tabulator-tableholder .tabulator-row .tabulator-cell .action-link img {
    filter: invert(1);
}

/* End of All service */

/* Staff Creation */
.select2 {
    width: 100% !important;
}

.select2-results__options--nested li:first-child .sub-check-box input {
    margin-left: 0px;
}

.select2-results__options--nested li .sub-check-box input {
    margin-left: 8px;
    margin-right: 0px !important;

}

.select2-selection {
    background-color: var(--white-color) !important;
    color: var(--body-color) !important;
    font-size: var(--text-sm) !important;
    font-weight: var(--font-weight-400) !important;
    margin-bottom: 10px !important;
    padding: 10px 10px !important;
    border-radius: 6px !important;
    border: 1px solid var(--body-color) !important;

}

.select2-selection::before {
    content: '';
    background-image: url('/images/dropdown-icon.svg');
    width: 12px;
    height: 24px;
    position: absolute;
    right: 10px;
    top: 14px;
    width: 20px;
    cursor: pointer;
    background-repeat: no-repeat;
    background-position: center;
    padding: 10px;


}

.select2-selection__rendered .select2-selection__choice[title="Full Permission"]{
    display:none !important;
}

.select2-container .select2-selection--single {
    height: auto !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    padding: 5px 20px;
    margin: 4px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    padding: 6px;
}

.select2-selection__choice__display .sub-check-box input {
    margin-bottom: 0px;
}

.select2-selection__choice__display .sub-check-box {
    margin-left: 5px;
}

.select2-selection:hover,
.select2-selection:active,
.select2-selection:focus,
.select2-selection.selected {
    background-color: #FAF9F6 !important;
}

.task-creation-form small {
    font-size: 12px;
    margin: 3px 0px;
}


/* Staff Listing Modal  */

.staff-list-modal .modal-dialog{
    max-width: 527px !important;
}


.staff-list-modal .modal-body{
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    justify-content: start;
    gap: 5px;
}

.staff-list-modal .modal-item{
     padding: 5px 7px;
    background: #FFFBEB;
    color: #fff;
    border-radius: 6px;
    color: #000014;
    font-weight: 500;
    border: 1px solid #F5C754;
}

/* Service Listing Modal */
.service-tasks-modal{
    border: none;
    background-color: transparent;
    padding: 0;
    --bs-modal-width:800px ;
    padding: 1.5rem 1rem;
  
   
}

.service-tasks-modal #document-wrapper{
    max-height: 500px;
    overflow-y: auto;
    overflow-x: hidden;
}

.service-tasks-modal .modal-header .modal-header-content{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
    width: 100%;
}

.service-tasks-modal .modal-header img{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px;
    border-radius: 100%;
    background-color: var(--primary-color);
}



.service-tasks-modal .modal-header{
    background-color: var(--background-secondary-color);
    padding: 1rem 1rem;

}

.service-tasks-modal .modal-header h2{
    font-size: var(--h2-xl);
    line-height: var(--h2-line-height);
    margin-bottom: 0;
    color: var(--primary-color);
}


.service-tasks-modal .modal-body{
    padding: 1.5rem 1rem;
    text-align: center;
    
}


.service-tasks-modal label{
    color: var(--body-color);
    font-size: var(--text-sm);
}


.service-tasks-modal input{

    width: 100%;
    background: #fff;
    border: 1px solid #d9d9d9;
    border-radius: 6px;
    padding: 15px;
    font-size: 14px;
    color: #000;
    outline: none;
   /* background-color: var(--white-color);
    color: #000;
    font-size: var(--text-sm);
    font-weight: var(--font-weight-400);
    margin-bottom: 10px;
    padding: 15px 10px;
    border-radius: 6px;
    border: 1px solid var(--body-color);  */
}

.service-tasks-modal input::placeholder{
    font-size: 14px;
    color: #878dab;
}
.service-tasks-modal input:hover,.service-tasks-modal input:focus,.service-tasks-modal input:focus-within,.service-tasks-modal input:active{
    border: 1px solid #CA970B;
    box-shadow: none;
}

.document-row .add-document{
  display:none !important;
}


.document-row:last-child .add-document{
  display:block !important;
}

.service-tasks-modal .field-add-button{
      display: flex;
    align-items: center;
    border: none;
    background-color: transparent;
}
.service-tasks-modal .field-add-button{border-radius: 100%;padding: 2px;}
.service-tasks-modal .field-add-button:hover{
    background-color: var(--primary-color);
}




.service-tasks-modal .field-add-button:hover img{
    filter: invert(1);
}

.service-tasks-modal .form-actions{
    display: flex;
    justify-content: end;
}
.service-tasks-modal .action-button{
     background-color: var(--primary-color);
    border: none;
    padding: 0.5rem 2rem;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
    max-width: 220px;
    margin-bottom: 0;
    color: var(--white-color) !important;
    font-size: var(--text-base);
    font-weight: var(--font-weight-500);
    transition: all 0.3s ease;
}


.service-tasks-modal .action-button:hover,.service-tasks-modal .action-button:focus,.service-tasks-modal .action-button:active{
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color) !important;
}

.service-tasks-modal .action-button:hover img,.service-tasks-modal .action-button:focus img,.service-tasks-modal .action-button:active img{
    filter: none;}

/* End of Staff Creation */

/* Tooltip text */
.tooltip-wrapper::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: -10px;
    /* above the element */
    left: 150%;
    transform: translateX(-40%);

    background: #000014;
    color: #fff;
    font-size: 12px;
    padding: 2px 5px;
    border-radius: 6px;
    white-space: nowrap;

    opacity: 0;
    pointer-events: none;
    transition: all 0.2s ease;

    z-index: 1000;
}

/* Arrow */
.tooltip-wrapper::before {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 150%;
    transform: translateX(-50%);

    border-width: 5px;
    border-style: solid;
    border-color: #000014 transparent transparent transparent;

    opacity: 0;
    transition: all 0.2s ease;
}

/* Show on hover */
.tooltip-wrapper:hover::after,
.tooltip-wrapper:hover::before {
    opacity: 1;
}

/* End of Tooltip */

/* Error Icon Removal */
.form-select.is-invalid:not([multiple]):not([size]) {
    --bs-form-select-bg-icon: none !important;
}


/* End of Error Icon Removal*/


/* Message Listing */

.intial-icon {
    border: 1px solid var(--primary-color);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    background-color: var(--primary-color);
    padding: 10px 12px;
    border-radius: 50px;
    color: var(--white-color);
}

.staff-name {
    color: var(--primary-color);
    font-size: var(--text-md);
    font-weight: var(--font-weight-500)
}

.message-button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;

}

.message-button .message-link span img {
    width: 100%;
    height: auto;
}

.message-button .message-link span {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000000;
    border-radius: 40px;
    margin-right: 5px;
    padding: 4px;
}

.message-button .message-link {
    background-color: transparent;
    border: none;
    display: flex;
    border-radius: 6px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
    min-width: 150px;
    margin-bottom: 0;
    color: var(--primary-color);
    font-size: var(--text-base);
    font-weight: var(--font-weight-500);
}

.message-button .message-link:hover,
.message-button .message-link:focus,
.message-button .message-link:active {
    text-decoration: underline;
}



/* End of Message Listing */

/* Service Details - (Token Money) */



.service-details-token-section {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;

}

.common-box{
    padding:25px 30px;
    background:#F8FAFC;
    border:1px solid #d9d9d9;
    border-radius: 12px;
    margin-top: 15px;
}

.common-box h2{
    font-size:30px;
    font-weight:700;

}

.common-icon-section{
    display:flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
}

.about-icon {
    background-color: #283041;
    border-radius: 8px;
    padding: 12px;
    display: flex;
    justify-content: center;
    align-items: center;

}

.view-btn{
    color:#ca970b;
    font-weight:500
}

.tasks-list-box-section{
    display:flex;
    flex-wrap:wrap;
    justify-content: flex-start;
    margin-top: 20px;
    gap: 10px;
}

.tasks-list-box-items{
    flex: 0 0 28.33%;
    margin-bottom: 10px;
    position:relative;
    margin-left:25px;
}

.tasks-list-box-items.completed svg path{
    fill:#43A047;
}
.tasks-list-box-items.completed span{
    color:#43A047;
}


.tasks-list-box-items.process svg path{
    fill:#ca970b;
}

.tasks-list-box-items.process span{
    color:#ca970b;
}


.task-list-box-icon{
    position:absolute;
    top:5px;
    left:-25px;
}



.small-info-box{
    padding: 15px 25px;
    background-color: #F8FAFC;
    border: 1px solid #D9D9D9;
    border-radius: 6px;
    flex: 0 0 33.33%;
    display: flex;
    justify-content: center;
    height: 100%;
}

.small-info-box.white-background{
    background-color: #fff;
}

.small-info-box.border-none{
    border:none;
}

.small-info-box .small-info-content{
    display: flex;
    gap: 10px;
    align-items: center;
    border-right: 1px solid rgba(92, 88, 88, .4);
    padding-right: 20px;
}

.small-info-box .small-info-content h5{
    margin: 0;
}

.small-info-box .small-info-result {
    padding-left: 20px;
    margin: auto 0;
}

.small-info-box .small-info-result h3{
    font-size: 24px;
    font-weight: 700;
    color: #CA970B;
}

.milestone-container .small-info-box {
    margin-top: 15px;
}

.payment-name{
    display:flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    border-right: .5px solid rgba(92, 88, 88, .4);
    height: 100%;
    position: relative;
}


.tab-number{
    height:36px;
    width:36px;
    color:#fff;
    font-weight:600;
    font-size: 24px;
    background-color:#10192C;
    display:flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    position:absolute;
    left:0;
}

.payement-structure-tab{
    width:100%;
}

.tab-number +  h5{
    margin: 0;
    padding-left:45px;
}

.payment-content{
    height: 100%;
    border-right: 1px solid rgba(92, 88, 88, .4);
    padding-right: 10px;
    display: flex;
    align-items: center;

}
.payment-price{
    display: flex;
    align-items: center;
    height: 100%;
}
.payment-price h4{
    font-size:24px;
    font-weight: 700;
    color:#000;
}

.total-payement-structure-tab{
    margin-top:20px;
    width:100%
}

.total-payment-content{
    text-align: end;
    padding-right: 10px;
    border-right: 1px solid rgba(92, 88, 88, .4);
}

.total-payement-structure-tab .row>*{
    margin-top:0;
}

.total-payment-content p{
    color:#5C5858;
    font-weight:500;
}


.total-payement-structure-tab .payment-price{
    display: flex;
}



.task-list-box-icon{
    position:absolute;
    top:5px;
    left:-23px;
}


/* Table desibn */


.table thead tr th:first-child {
    border-radius: 6px 0 0 0;
}
 
.table thead tr th:last-child {
    border-radius: 0 6px 0 0;
}
 
.table thead tr th {
    padding: 12px 10px;
    font-size: 16px;
    font-weight: 600;
    color: #000014;
}
.table tbody td {
    padding: 12px 10px;
    vertical-align: middle;
    color: #2c2c2c;
    white-space: nowrap;
}
 
.table thead tr th {
    border-bottom: none;
    background-color: #f2f3f8;
}
tbody tr:nth-child(odd) td {
    background-color: #e9ebf3;
}
tbody tr:nth-child(even) td {
    background-color: #f2f3f8;
}
.table tbody tr:last-child td:first-child {
    border-bottom: none;
    border-radius: 0 0 0 6px;
}
.table tbody tr:last-child td:last-child {
    border-bottom: none;
    border-radius: 0 0 6px 0;
}
.badge-status {
    display: inline-block;
    padding: 3px 12px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 400;
    min-width: 68px;
    text-align: center;
}
.badge-accepted {
    background: #f2faf5;
    color: #45c276;
}
.badge-pending {
    background: #fff2de;
    color: #a56502;
}
.badge-reject {
    background: #ffd7d7;
    color: #ea4b4b;
}



/* End of Table Design */

/* sticky button */


    /* Sticky bottom bar */
    .sticky-bar {
      position: fixed;
      bottom: 0;
      right: 0;
      background-color: #2a2a2a;
      padding: 16px;
      display: flex;
      justify-content: center;
      /* z-index: 1000; */
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.4);
      width: calc(100% - 310px);
    }

    /* The green button */
    .request-btn {
      background-color: #28a745;
      color: #fff;
      border: none;
      padding: 10px 24px;
      font-size: 18px;
      font-weight: 600;
      border-radius: 4px;
      cursor: pointer;
      transition: background-color 0.2s ease;
    }

    .request-btn:hover {
      background-color: #218838;
    }

.service-details-token-section .service-details-content .service-info-card {
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 8px;
    background-color: #f8fafc;
    border: 1px solid #dadada;
    border-radius: 12px;
    height: 100%;
}

.service-details-token-section .service-details-content .service-info-card h4 {
    font-size: var(--text-lg);
    color: #000;
}

.service-details-token-section .service-details-content .service-info-card h3 {
    font-size: var(--text-xxxl);
    color: var(--secondary-color);
    font-weight: var(--font-weight-700);
}

.service-details-token-section .payment-structure {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    margin-top: 20px;


}


.service-details-token-section .payment-structure h3 {
    color: #000;
    font-weight: var(--font-weight-700);
    font-size: var(--text-xxxl);
}

.service-details-token-section .payment-structure-content {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;

}


.service-details-token-section .payment-structure .payement-structure-tab {
    display: flex;
    justify-content: space-between;
    width: 100%;
    background-color: #F8FAFC;
    padding: 15px 10px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    gap: 10px;

}

.service-details-token-section .payment-structure .payement-structure-tab.completed {
    background-color: #F5FFF9;
    border: 1px solid #60D669;
}

.service-details-token-section .payment-structure .payement-structure-tab.completed .tab-number {
    background-color: #60D669;
}

.service-details-token-section .payment-structure .payement-structure-tab.completed .tab-number img {
    display: block;
}

.service-details-token-section .payment-structure .payement-structure-tab.completed .tab-number span {
    display: none;
}

.service-details-token-section .payment-structure .payement-structure-tab.process {
    background-color: #FFFBEB;
    border: 1px solid #F5C754;
}

.service-details-token-section .payment-structure .payement-structure-tab.process .tab-number {
    background-color: #CA970B;
}

.service-details-token-section .payment-structure .payment-tab-content {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    flex: 1;

}

.service-details-token-section .payment-structure .payment-tab-content .tab-number {

    padding: 10px 20px;
    font-size: var(--text-xl);
    color: var(--white-color);
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #10192C;
    border-radius: 100%;
    font-weight: var(--font-weight-600);
}

.service-details-token-section .payment-structure .payment-tab-content .tab-number img {
    display: none;
}



.service-details-token-section .payment-structure .payment-tab-content .payment-content {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.service-details-token-section .payment-structure .payment-tab-content .payment-content h5 {
    font-size: var(--text-lg);
    margin-bottom: 0;
    color: #000;
    font-weight: var(--font-weight-500);
}


.service-details-token-section .payment-structure .payment-price {
    display: flex;
    align-items: center;
    gap: 10px;
}




.service-details-token-section .payment-structure .payement-structure-tab .payment-price h4 {
    font-size: var(--text-xl);
    font-weight: var(--font-weight-700);
    color: #000;
    margin-bottom: 0;
}


.action-button {
    background-color: var(--primary-color);
    padding: 10px 18px;
    color: var(--white-color);
    display: flex;
    gap: 3px;
    justify-content: space-between;
    align-items: center;
    outline: none;
    border: 1px solid var(--primary-color);
    border-radius: 5px;
    font-weight: var(--font-weight-700);
    font-size: var(--text-sm);
    transition: all 0.5 ease;


}

.action-button:hover,
.action-button:focus,
.action-button:active {
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}


.action-button:hover img,
.action-button:focus img,
.action-button:active img {
    filter: invert(1);
}

.service-details-token-section .task-list-container {
    background-color: #EDEDEE;
    border: 1px solid #F5C754;
    padding: 30px 20px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 20px;

}


.service-details-token-section .task-list-container {
    overflow-y: auto;
    background-color: #EDEDEE;
    border: 1px solid #F5C754;
    padding: 30px 10px 30px 20px;
    /* ✅ reduce right padding */
    border-radius: 12px;
}

.service-details-token-section .task-list-inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-right: 10px;
    /* ✅ this creates space between content and scrollbar */
}



/* container — just styling, no scroll */
.service-details-token-section .task-list-container {
    background-color: #EDEDEE;
    border: 1px solid #F5C754;
    border-radius: 12px;
    padding: 20px;
    /* this becomes the space around the scrollbar */
}

/* inner — this scrolls */
.service-details-token-section .task-list-inner {
    height: 100%;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}


.service-details-token-section .task-list-container .milestone-heading {
    display: flex;
    gap: 10px;
    justify-content: flex-start;
    align-items: center;
    font-weight: var(--font-weight-500);
    color: #000;
    font-size: var(--text-lg);

}

.service-details-token-section .task-list-container .milestone-heading.sub-icon-heading {
    margin-bottom: 0px !important;
}




.service-details-token-section .task-list-container .milestone-heading .milestone-icon {
    background-color: #FFFBEB;
    border: 1px solid #F5C754;
    width: 45px;
    height: 45px;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;

}

.service-details-token-section .task-list-container .task-list-content {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-details-token-section .task-list-container .task-list-content .task-list-item {
    display: flex;
    gap: 10px;
    color: #5C5858;
}


.service-details-content .service-request {
    display: flex;
    justify-content: center;
    margin: 10px 0;
}


/* End of Service Details (Token Money) */

/* Track Your Progress */
.track-prgress-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;

}

.track-prgress-content .track-progress-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.track-prgress-content .track-progress-section .overall-progress-bar-section {
    display: flex;
    flex-direction: column;
}


.track-prgress-content .main-progress {
    background-color: #E2E3E5;
    height: 8px;
    border-radius: 6px;
    margin-top: 10px;
}

.track-prgress-content .main-progress .progress-bar {
    background-color: #5990F2;
    height: 8px;
    border-radius: 6px;
    width: 25%;
}

.track-prgress-content .track-progress-section .overall-progress {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.track-prgress-content .overall-progress-heading {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
}

.track-prgress-content .track-progress-section .overall-progress .progress-percent {
    font-size: var(--text-lg);
    font-weight: var(--font-weight-500);
    color: #000;
}

.milestone-step-section {
    display: flex;
    flex-direction: column;
    margin-top: 20px;


}

.milestone-step-section .milestone-cotainer {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
    width: 100%;
    overflow-x: auto;
    position: relative;

}


.milestone-step-section .step {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
}

.milestone-step-section .progress-line {
    position: absolute;
    top: 35%;
    left: 5%;
    right: 5%;
    border-top: 3px dashed #000;
    z-index: 0;

}


.milestone-step-section .step .milestone {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 5px;
}

.milestone-step-section .step .milestone .check {
    padding: 18px;
    background-color: #F2F3F8;
    border-radius: 50%;
}

.milestone-step-section .step .milestone .check.completed {
    background-color: #60D669;
}

.milestone-step-section .step .milestone .check.process {
    background-color: #F5C754;
}

.milestone-step-section .step .milestone .check .check-comp {
    display: none;
}

.milestone-step-section .step .milestone .check.completed .check-comp {
    display: block;
}

.milestone-step-section .step .milestone .check.completed .pen-comp {
    display: none;
}

.milestone-step-section .step .milestone .step-name p {
    font-size: var(--text-sm);
    font-weight: var(--font-weight-500);
    color: #000;
}

.track-prgress-content .formation-task-list-section {
    display: flex;
    flex-direction: column;
}

.track-prgress-content .formation-task-list-section .task-list-heading {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: flex-start;
    background-color: #172133;
    border-radius: 12px 12px 0 0;
    padding: 20px 25px;
    border: 1px solid #172133;
}

.track-prgress-content .formation-task-list-section .task-list-heading .task-list-icon {
    padding: 7px;
    background-color: #FFFBEB;
    border: 1px solid #F5C754;
    border-radius: 6px;
}

.track-prgress-content .formation-task-list-section .task-list-heading .task-heading-content {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

.track-prgress-content .formation-task-list-section .task-list-heading .task-heading-content .task-heading {
    color: #FFF;
}

.track-prgress-content .formation-task-list-section .task-list-heading .task-heading-content p {
    color: #D9D9D9;
}


.track-prgress-content .formation-task-list-section .task-list-content-section {
    background-color: #F8FAFC;
    border: 1px solid #D9D9D9;
    padding: 20px 10px;
    width: 100%;
    border-radius: 0 0 12px 12px;
}



.track-prgress-content .formation-task-list-section .task-list-container {
    background-color: #F1F5F9;
    border: 1px solid #a3a3a3;
    padding: 15px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 20px;


}

.track-prgress-content .formation-task-list-section .task-list-inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-right: 10px;
    /* ✅ this creates space between content and scrollbar */
}





/* inner — this scrolls */
.track-prgress-content .formation-task-list-section .task-list-inner {
    height: 100%;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.track-prgress-content .formation-task-list-section .task-list-container .milestone-heading {
    display: flex;
    gap: 10px;
    justify-content: flex-start;
    align-items: center;
    font-weight: var(--font-weight-500);
    color: #000;
    font-size: var(--text-lg);

}




.track-prgress-content .formation-task-list-section .task-list-container .milestone-heading .milestone-icon {
    background-color: #FFFBEB;
    border: 1px solid #F5C754;
    width: 45px;
    height: 45px;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;

}

.track-prgress-content .formation-task-list-section .task-list-container .task-list-content {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 85px;
}

.track-prgress-content .formation-task-list-section .task-list-container .task-list-content .task-list-item {
    display: flex;
    gap: 10px;
    color: #5C5858;
}

.track-prgress-content .formation-task-list-section .task-list-container .task-list-content .task-list-item.completed {
    color: #4CCA8B;
}

.track-prgress-content .formation-task-list-section .task-list-container .task-list-content .task-list-item .comp-tick {
    display: none;
    width: 20px;
    height: 20px;
}

.track-prgress-content .formation-task-list-section .task-list-container .task-list-content .task-list-item.completed .comp-tick {
    display: block;
    width: 20px;
    height: 20px;
}

.track-prgress-content .formation-task-list-section .task-list-container .task-list-content .task-list-item.completed .pen-tick {
    display: none;
    width: 20px;
    height: 20px;
}

.track-prgress-content .formation-task-list-section .download-documents-section {
    background-color: #F1F5F9;
    border: 1px solid #a3a3a3;
    /* padding: 15px 0; */
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    /* height: 100%; */
    padding-bottom: 0;
}

.track-prgress-content .formation-task-list-section .download-documents-section .download-heading-section {
    display: flex;
    gap: 5px;
    align-items: center;
    margin-bottom: 5px !important;
}



.track-prgress-content .formation-task-list-section .download-innner {
    overflow-y: auto;
}

.track-prgress-content .formation-task-list-section .download-innner .download-content {
    /* max-height: 100px; */
    display: flex;
    flex-direction: column;
    gap: 8px;
}


.track-prgress-content .formation-task-list-section .download-documents-section .download-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 5px;
    padding-bottom: 10px;
    border-bottom: 1px solid #d9d9d9;
    padding: 0 8px;
    padding: 10px;
}

.track-prgress-content .formation-task-list-section .download-documents-section .download-item:first-child {
    border: none;
}

.track-prgress-content .formation-task-list-section .download-documents-section .download-item:nth-child(2) {
    border-top: 1px solid #d9d9d9;

}

.track-prgress-content .formation-task-list-section .download-documents-section .download-item:last-child {
    border-bottom: none;

}

.track-prgress-content .formation-task-list-section .download-documents-section .download-item .download-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 5px;
}

.track-prgress-content .formation-task-list-section .upload-documents-section {
    padding: 20px;
    background-color: #F1F5F9;
    border: 1px solid #a3a3a3;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.track-prgress-content .formation-task-list-section .upload-documents-section .upload-heading-section {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
}

.track-prgress-content .formation-task-list-section .upload-documents-section .main-upload {
    width: 100%;
}




.track-prgress-content .formation-task-list-section .upload-documents-section .main-upload form {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;

}

.track-prgress-content .formation-task-list-section .upload-documents-section .main-upload form .upload-fields {
    display: flex;
    gap: 10px;
    width: 100%;
    align-items: start;
    position: relative;
    padding-right: 20px;


}

.track-prgress-content .formation-task-list-section .upload-documents-section .main-upload form .upload-fields .upload-file-name {
    display: flex;
    flex-direction: column;
    width: 60%;


}

.track-prgress-content .formation-task-list-section .upload-documents-section .main-upload form .upload-fields .upload-file-name input {
    border-radius: 6px;
    padding: 8px;
    border: 1px solid #F5C754;
}





.track-prgress-content .formation-task-list-section .upload-documents-section .main-upload form .upload-fields .upload-file-name input::placeholder {
    font-size: 15px;
    text-align: start;
}

.track-prgress-content .formation-task-list-section .upload-documents-section .main-upload form .upload-fields .upload-file-section {
    width: 40%;
    text-align: center;
}

.track-prgress-content .formation-task-list-section .upload-documents-section .main-upload form .upload-fields .upload-file {
    padding: 8px;
    border: 1px dashed #A3A3A3;
    background-color: #fff;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
}



.track-prgress-content .formation-task-list-section .upload-documents-section .main-upload form .upload-fields .upload-file-name small {
    align-self: flex-end;
}

.track-prgress-content .formation-task-list-section .upload-documents-section .main-upload form .upload-fields small {
    font-size: 12px;
    color: #515151;
}



.track-prgress-content .formation-task-list-section .upload-documents-section .main-upload .add-field {
    padding: 0 10px;
    position: absolute;
    right: -15px;
    padding: 0;
    border: 0;
    background-color: transparent;
}

.track-prgress-content .formation-task-list-section .upload-documents-section .uploaded-items-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.track-prgress-content .formation-task-list-section .upload-documents-section .uploaded-items {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    position: relative;
    padding-left: 30px;
}

.track-prgress-content .formation-task-list-section .upload-documents-section .uploaded-items .upload-content {
    display: flex;
    align-items: center;
    gap: 8px;
}

.track-prgress-content .formation-task-list-section .upload-documents-section .uploaded-items .pdf-icon {
    position: absolute;
    left: 2px;
}

.track-prgress-content .formation-task-list-section .upload-documents-section .uploaded-items .upload-content p {
    font-family: var(--seondary-font);
    font-size: var(--text-sm);
    color: #535151;
}

.track-prgress-content .formation-task-list-section .upload-documents-section .uploaded-items .upload-details p {
    font-family: var(--seondary-font);
    font-size: var(--text-xs);
    color: #8E8A8A;
}



.track-prgress-content .formation-task-list-section .upload-documents-section .uploaded-items.processsing .upload-content .upload-name {
    display: flex;
    gap: 8px;
    align-items: center;
}

.track-prgress-content .formation-task-list-section .upload-documents-section .uploaded-items.processing {
    display: flex;
    flex-direction: column;
    gap: 5px;
    position: relative;
    padding-left: 30px;
}

.track-prgress-content .formation-task-list-section .upload-documents-section .uploaded-items.processing .upload-content {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.track-prgress-content .formation-task-list-section .upload-documents-section .uploaded-items.processing .upload-name {
    display: flex;
    align-items: center;
    gap: 8px;
}

.track-prgress-content .formation-task-list-section .upload-documents-section .uploaded-items.processing .upload-name .pdf-icon {
    position: absolute;
    left: 0;
}

.track-prgress-content .formation-task-list-section .upload-documents-section .uploaded-items.processing .processing-percent {
    font-family: var(--seondary-font);
    font-size: var(--text-sm);
    color: #535151;
}

.track-prgress-content .formation-task-list-section .upload-documents-section .uploaded-items.processing .processing-details {
    border: 2px solid #D0CBCB;
    width: 100%;
}


.track-prgress-content .formation-task-list-section .upload-documents-section .uploaded-items.processing .processing-details {
    background-color: #D0CBCB;
    height: 2px;
    border: none;
}

.track-prgress-content .formation-task-list-section .upload-documents-section .uploaded-items.processing .processing-details .processing-line {
    width: 50%;
    background-color: #F5C754;
    height: 2px;
}

.track-prgress-content .milestone-section .payment-structure-content {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;

}

.track-prgress-content .milestone-section .payment-structure .payement-structure-tab {
    display: flex;
    justify-content: space-between;
    width: 100%;
    background-color: #F8FAFC;
    padding: 15px 10px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    gap: 10px;

}

.track-prgress-content .milestone-section .payment-structure .payement-structure-tab.completed {
    background-color: #F5FFF9;
    border: 1px solid #60D669;
}

.track-prgress-content .milestone-section .payment-structure .payement-structure-tab.completed .tab-number {
    background-color: #60D669;
    padding: 18px;
}

.track-prgress-content .milestone-section .payment-structure .payement-structure-tab.completed .tab-number img {
    display: block;
}

.track-prgress-content .milestone-section .payment-structure .payement-structure-tab.completed .tab-number span {
    display: none;
}

.track-prgress-content .milestone-section .payment-structure .payement-structure-tab.process {
    background-color: #FFFBEB;
    border: 1px solid #F5C754;
}

.track-prgress-content .milestone-section .payment-structure .payement-structure-tab.process .tab-number {
    background-color: #CA970B;
}

.track-prgress-content .milestone-section .payment-structure .payment-tab-content {
    display: flex;
    align-items: flex-start;
    gap: 15px;

}

.track-prgress-content .milestone-section .payment-structure .payment-tab-content .tab-number {
    padding: 10px 20px;
    font-size: var(--text-xl);
    color: var(--white-color);
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #10192C;
    border-radius: 100%;
    font-weight: var(--font-weight-600);
}

.track-prgress-content .milestone-section .payment-structure .payment-tab-content .tab-number img {
    display: none;
}



.track-prgress-content .milestone-section .payment-structure .payment-tab-content .payment-content {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.track-prgress-content .milestone-section .payment-structure .payment-tab-content .payment-content h5 {
    font-size: var(--text-lg);
    margin-bottom: 0;
    color: #000;
    font-weight: var(--font-weight-500);
}

.track-prgress-content .milestone-section .payment-structure .payment-price {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 10px;
    flex: 0 0 auto;
}




.track-prgress-content .milestone-section .payment-structure .payement-structure-tab .payment-price h4 {
    font-size: var(--text-xl);
    font-weight: var(--font-weight-700);
    color: #000;
    margin-bottom: 0;
    flex: 0 0 auto;
}


.total-payement-structure-tab .payment-price h4{
    display:flex;
    flex: 0 0 auto;
}


/* topbar - Service Details */
.serivce-details-topbar {
    margin-top: 20px;
    padding: 25px;
    background-color: #F8FAFC;
    border: 1px solid #D9D9D9;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border-radius: 12px;
    gap:15px;
    flex-wrap: wrap;
}
 
 
.service-side{
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border-right: 1px solid #d9d9d9;
    padding-right: 15px;
    max-width: 40%;

}
 
 
.service-icon{
    padding: 15px;
    background-color: #10192C;
    border-radius: 100px;
}
 

.info-header{
    display:flex;
    align-items: center;
    gap: 20px;
}


.status-large{
    padding: 7px 40px;
}

.status-small{
    padding: 5px 20px;
    border-radius: 6px;
}


.client-details-top-info{
    display:flex;
    justify-content:space-between;
    align-items: center;
}

.new-service-side{
    display: flex;
    align-items: center;
    gap: 10px;

}

.new-service-heading{
    display: flex;
    flex-direction: column;
}


.details-header{
    border-bottom:1px solid #D9D9D9;
}
.details-body{
    margin-top:20px
}
.details-items{
    display: flex;
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px 0;
    margin-bottom: 15px;
}
 
.service-heading{
    display: flex;
    flex-direction: column;
    /* text-align: center; */
}
 
.service-heading div{
    margin-top: 15px;
    margin-right: auto;
    margin-left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    padding: .5px;
    width: 80px;
    font-weight: 600;
  
}
 .success-stick{
    background-color: #E0F6E8;
    color: #45C276;
 }
 
.service-details-side{
    padding-left: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap:80px;
    margin: 0 0 0 0;
    

}
 
.service-details-item{
    display: flex;
    flex-direction: column;
    padding-left: 20px;
    position: relative;
    gap: 5px;
    /* flex: 0 0 auto; */
    margin: 0 0 auto 0;
    

}


.service-details-item:last-child{
    position:relative;
}

.service-details-item .edit-icon{
    position:absolute;
    right: 100px;
    top:-5px;
    
}
 
.service-details-item img{
    position: absolute;
    top: 4px;
    left: -3px;
}
 
.service-details-item p{
    font-size: var(--text-sm);
}
 
.service-details-item p:last-child{
    font-size: var(--text-md);
    font-weight: var(--font-weight-600);
    color: var(--primary-color);
}




.task-new-section{
    display: flex;
    flex-direction: column;
    gap:20px;
}
.tasks-list-box-section{
    display:flex;
    flex-wrap:wrap;
    justify-content: flex-start;
    /* margin-top: 20px; */
    gap: 10px;
    margin-bottom:20px;
}

.tasks-list-box-items{
    flex: 0 0 28.33%;
    margin-bottom: 10px;
    position:relative;
    margin-left:20px;

}

.tasks-list-box-items.completed svg path{
    fill:#43A047;
}
.tasks-list-box-items.completed span{
    color:#43A047;
}


.tasks-list-box-items.process svg path{
    fill:#ca970b;
}

.tasks-list-box-items.process span{
    color:#ca970b;
}


.form-box-container{
    padding:25px 20px;
    border: 1px solid #A3A3A3;
    border-radius: 6px;
    background-color: #fff;
}

.form-box-container.no-top-padding{
    padding:0 20px;
}

.form-list-showcase{
    margin-top: 15px;
}

.form-list-header{
    display: flex;
    gap:8px;
    align-items:center;
}

.form-list-header h5{
    font-size:16px;
    color:#000000;
    font-weight:600;
    margin:0;
}

.form-list-body{
    margin-top:15px
}

.new-list-table-wrapper thead tr th{
    font-size:15px !important;
    font-weight: 700 !important;
    color:#515151 !important;
}



.task-list-box-icon{
    position:absolute;
    top:5px;
    left:-23px;
}


.task-new-container .sub-icon-heading h4{
    font-size: 20px;
    font-weight: 500;
}

.pdf-icon{
    display:flex;
    gap:5px;
    position: relative;
}
 /* .new-list-table-wrapper tbody tr td{
        white-space: pre-wrap;
} */

.pdf-icon svg,.pdf-icon img{
    position: absolute;
}

.pdf-icon p{
    margin-left: 25px;
}

.new-list-table-wrapper thead tr th:first-child,.new-list-table-wrapper thead tr th:last-child,.new-list-table-wrapper tbody tr td:first-child,.new-list-table-wrapper tbody tr td:last-child{
    border-radius: 0;
}

.new-list-table-wrapper thead tr th:first-child,.new-list-table-wrapper tbody tr td:first-child{
    width:60%;
     white-space: normal;
    word-break: break-all;

 }


 .new-list-table-wrapper thead tr th:nth-child(2),.new-list-table-wrapper thead tr th:last-child,.new-list-table-wrapper tbody tr td:nth-child(2),.new-list-table-wrapper thead tr th:last-child{
    width:20%;
     white-space: normal;
    word-break: break-all;
 }


 .form-list-body .table-responsive{
    border: 1px solid #a3a3a3;
    border-radius: 6px;
 }

  .form-list-body .table-responsive .table{
    margin-bottom:0;
  }

  .new-list-table-wrapper tbody tr td,.new-list-table-wrapper tbody tr td p{
    font-size: 14px;
    color: #515151;
  }


.new-list-table-wrapper.added-new-task-list thead tr th:first-child,.new-list-table-wrapper.added-new-task-list tbody tr td:first-child{
    width:30%;
     white-space: normal;
    word-break: break-all;

 }


.new-list-table-wrapper.added-new-task-list thead tr th:nth-child(2),.new-list-table-wrapper.added-new-task-list thead tr th:last-child,.new-list-table-wrapper.added-new-task-list tbody tr td:nth-child(2),.new-list-table-wrapper.added-new-task-list thead tr th:last-child{
    width:15%;
     white-space: normal;
    word-break: break-all;
 }


 .new-list-table-wrapper.added-new-task-list thead tr th:nth-child(3),.new-list-table-wrapper.added-new-task-list tbody tr td:nth-child(3){
    width:40%;
     white-space: normal;
    word-break: break-all;
 }


 .form-box-container.transparent-bg {
    background-color: transparent;
    border: none;
    padding: 0;
}

.phase-container > p{
    color:#000014;
    font-weight: var(--font-weight-500);
}

.phase-container p span{
    font-weight: 700;
}

.phase-container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
    flex-wrap: wrap;
    gap: 10px;
}

.track-prgress-content .formation-task-list-section .task-list-container.task-list-new-container{
    background-color: transparent !important;
    border:0 !important;
    padding: 15px 0 30px 0 !important;
}


.custom-select {
    width: 100%;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid #A3A3A3;
    background: #fff;
    font-size: 15px;
    color: #4b5563;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='27' height='14' viewBox='0 0 27 14' fill='none'%3E%3Cpath d='M19.2808 2.73586L20.4572 3.90591L14.0865 10.3196C13.9844 10.423 13.8629 10.5052 13.7289 10.5614C13.595 10.6177 13.4512 10.6469 13.3059 10.6473C13.1606 10.6478 13.0167 10.6195 12.8824 10.5641C12.7481 10.5087 12.626 10.4273 12.5233 10.3246L6.10847 3.95165L7.27741 2.77523L13.2982 8.7567L19.2808 2.73586Z' fill='%23515151'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
}

.custom-select:focus {
    outline: none;
    border-color: #ca970b;
    box-shadow: 0 0 0 2px rgba(43, 125, 233, 0.15);
}

.custom-input{
    width:100%;
    border-radius: 6px;
    padding: 12px 14px;
    color: #000;
    border: 1px solid #A3A3A3;
}

.custom-input::placeholder{
    font-size:14px
}

.custom-input:focus,.custom-input:hover,.custom-input:active{
    border:1px solid #ca970b;
    box-shadow: none;
}


.label-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #515151;
    margin-bottom: 8px;
    font-size:  15px;
}

.label-row svg {
    width: 18px;
    height: 18px;
    color: #7c8aa5;
}


.service-request-milestone .payment-name{
        border:none;
}

.service-request-milestone .payment-content{
        border:none;
}

.service-request-milestone .payment-price{
    justify-content: end;
    gap:15px;
    flex-wrap:wrap;
}

.milestone-container .small-info-box.process{
    background-color: #FFFBEB;
    border:1px solid #F5C754;
}

.milestone-container .small-info-box.process .tab-number{
    background-color:#CA970B;
}

.milestone-container .small-info-box.completed{
    background-color: #F5FFF9;
    border:1px solid #60D669;
}

.milestone-container .small-info-box.completed .tab-number{
    background-color:#60D669;
}


.additional-new-task-list-table-wrapper tr th:first-child,.additional-new-task-list-table-wrapper tr td:first-child{
    width:30%;
    white-space: normal;
    word-break: break-all;
}


.additional-new-task-list-table-wrapper tr th:nth-child(2),.additional-new-task-list-table-wrapper tr td:nth-child(2){
    width:10%;
    white-space: normal;
    word-break: break-all;
}

.additional-new-task-list-table-wrapper tr th:last-child,.additional-new-task-list-table-wrapper tr td:last-child{
    width:60%;
    white-space: normal;
    word-break: break-all;
}

tr.process td {
    background-color: #FFFBEB !important;
}


tr.completed td {
    background-color: #F5FFF9 !important;
}


/* End of Track of Progress */

/* Service List */

.service-list-section {
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
}


.service-list-section .large-h1 {
    font-size: var(--text-xxxl);
    font-weight: var(--font-weight-700);
    color: #000;
    margin-bottom: 10px;
}

.service-list-section form .input-group {
    background-color: #F2F3F8;
    border: 1px solid #D9D9D9;
    border-radius: 6px;
    padding: 10px;
    color: #000;
    display: flex;
    align-items: center;
    margin-top: 15px;

}

.service-list-section form .input-group input {
    background-color: #F2F3F8;
    border: none;
    font-weight: var(--font-weight-500);
    font-size: var(--text-md);
    color: #515151;

}

.service-list-section form .input-group input:hover,
.service-list-section form .input-group input:focus,
.service-list-section form .input-group input:active {
    box-shadow: none;
    border: none;
}


.service-list-section form .input-group:has(input:hover),
.service-list-section form .input-group:has(input:focus),
.service-list-section form .input-group:has(input:active) {
    border: 1px solid #000014;
}

.service-list-section form .input-group input::placeholder {
    font-weight: var(--font-weight-500);
    font-size: var(--text-md);
    color: #515151;
}

.service-list-section .service-listing {
    margin-top: 25px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 10px;

}



.service-list-section .main-service-container {
    max-height: calc(100vh - 400px);
}

.service-list-section .service-listing .service-item {
    border: 1px solid #D9D9D9;
    border-radius: 12px;
    background-color: #F8FAFC;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


.service-list-section .service-listing .service-item .service-task {
    list-style: none;
    padding-left: 0;
    margin-top: 10px;
}

.service-list-section .service-listing .service-item .service-task li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: var(--text-base);
    color: #5C5858;
}

.service-list-section .service-listing .service-item .service-task li.more-tasks::before{
    content:none;
}

.service-list-section .service-listing .service-item .service-task li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 16px;
    height: 16px;
    background-image: url('/images/brown-tick-icon.svg');
    background-size: contain;
    background-repeat: no-repeat;
}

.service-list-section .service-listing .service-item .service-header {
    border-bottom: 1px solid #d9d9d9;
    background-color: #FFFBEB;
    padding: 18px 18px;
    border-radius: 12px 12px 0 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    
}

.service-list-section .service-listing .service-item .service-header .service-icon {
    padding: 8px;
    background-color: #fff;
    border: 1px solid #F5C754;
    border-radius: 6px;

}

.service-list-section .service-listing .service-item .service-body {
    padding: 15px 20px;
    overflow-y: auto;
    margin-bottom: auto;
}

.service-list-section .service-listing .service-item .service-body .service-content {
    max-height: 400px;
}



.service-list-section .service-listing .service-item .service-footer {
    padding: 20px;
    border-top: 1px solid #d9d9d9;
}

.service-list-section .service-listing .service-item .service-footer .price,
.service-list-section .service-listing .service-item .service-footer .duration {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-list-section .service-listing .service-item .service-footer .price p,
.service-list-section .service-listing .service-item .service-footer .duration p {
    color: #000014;
}

.service-list-section .service-listing .service-item .service-footer .price p:last-child {
    color: #000014;
    font-weight: var(--font-weight-700);
    font-size: var(--text-xxl);
    margin-bottom: 0;
}

.service-list-section .service-listing .service-item .service-footer .duration p:last-child {
    color: #000014;
    font-weight: var(--font-weight-700);
}

.service-list-section .service-listing .service-item .service-footer .action-button {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.service-list-section .service-listing .service-item .service-footer .action-button p {
    font-weight: var(--font-weight-500);
    color: #fff;
}

.service-list-section .service-listing .service-item .service-footer .action-button:hover p,
.service-list-section .service-listing .service-item .service-footer .action-button:focus-within p,
.service-list-section .service-listing .service-item .service-footer .action-button:active p {
    color: #000014;
}



/* End of Service List */

/* form css */

/* Task Creation */

.task-creation {
    height: 100%;
    max-height: 100%;
    display: flex;
    flex-direction: column;

}

.task-creation h1 {
    font-size: var(--h2-xl);
    color: var(--primary-color);
}


.task-creation .task-creation-form {
    height: 100%
}

.main-content .main .task-listing a {
    background-color: var(--primary-color);
    color: var(--white-color);
    border: 1px solid var(--primary-color);
    padding: 0.8rem 2rem;
    font-size: var(--text-lg);
    font-weight: var(--font-weight-500);
    outline: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: flex;
    gap: 10px;

}

.task-creation .task-creation-form .form-label {
    margin-bottom: 2px;
    font-weight: 500;

}



.task-creation .task-creation-form .form-actions {
    margin-top: 20px;
    display: flex;
    justify-content: flex-end;
    margin-top: auto;
}


.task-creation .task-creation-form form>.col-12:not(.form-actions),
.task-creation .task-creation-form form>.col-md-6 {
    flex-shrink: 0;
}


.task-creation .task-creation-form form {
    height: 100%;
    display: flex;
    flex-direction: column;
}


.task-creation .task-creation-form .form-label {
    color: var(--body-color);
    font-size: var(--text-sm);
    font-weight: var(--font-weight-600);
    margin-bottom: 10px;
}

.task-creation .task-creation-form input,
.task-creation .task-creation-form select,
.task-creation .task-creation-form textarea {
    background-color: var(--white-color);
    color: var(--body-color);
    font-size: var(--text-sm);
    font-weight: var(--font-weight-400);
    margin-bottom: 10px;
    padding: 15px 10px;
    border-radius: 6px;
    border: 1px solid var(--body-color);


}

.task-creation .task-creation-form input:hover,
.task-creation .task-creation-form select:hover,
.task-creation .task-creation-form textarea:hover {
    background-color: #FAF9F6;
}

.task-creation .task-creation-form input:active,
.task-creation .task-creation-form select:active,
.task-creation .task-creation-form textarea:active {
    background-color: #FAF9F6;
}

.task-creation .task-creation-form input:focus,
.task-creation .task-creation-form select:focus,
.task-creation .task-creation-form textarea:focus {
    background-color: #FAF9F6;
}

.task-creation .task-creation-form input:disabled,
.task-creation .task-creation-form select:disabled,
.task-creation .task-creation-form textarea:disabled {
    background-color: var(--background-secondary-color);
}



.task-creation .task-creation-form .form-control:focus {
    border: 1px solid var(--body-color);
    box-shadow: none;
}

.task-creation .task-creation-form input:placeholder {
    color: var(--body-color);
    font-size: var(--text-sm);
    font-weight: var(--font-weight-400);
}

.task-creation .task-creation-form .form-actions {
    display: flex;
    gap: 20px;
}

.task-creation .task-creation-form .form-actions .action-button {
    background-color: var(--primary-color);
    padding: 0.8rem 5rem;
    color: var(--white-color);
    border: 1px solid var(--primary-color);
    font-size: var(--text-lg);
    font-weight: var(--font-weight-500);
    outline: none;
    border-radius: 6px;
    transition: all 0.3s ease;

}

.task-creation .task-creation-form .form-actions .action-button:hover {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);

}

.task-creation .task-creation-form .form-actions .action-button:active {
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color)
}



.task-creation .task-creation-form .form-actions .cancel-button {
    background-color: var(--background-secondary-color);
    padding: 0.8rem 5rem;
    color: var(--primary-color);
    border: 1px solid var(--background-secondary-color);
    font-weight: var(--font-weight-500);
    font-size: var(--text-lg);
    outline: none;
    text-align: center;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0px 4px 4px 0 rgba(0, 0, 0, 0.08);

}

.task-creation .task-creation-form .form-actions .cancel-button:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
    border: 1px solid var(--primary-color);

}

.task-creation .task-creation-form .form-actions .cancel-button:active {
    background-color: var(--primary-color);
    color: var(--white-color);
    border: 1px solid var(--primary-color);
}

/* End of Task Creation */

/* Task Listing */

.task-listing .table-listing .table-responsive {
    border-radius: 6px;
    max-height: 500px;

}

.task-listing .table-listing .table {
    margin-bottom: 0px;
    background-color: #E2E4EE;
    --bs-table-bg: none;
    border: none;
    border-style: none;
    overflow-x: scroll;
}

.task-listing .table-listing .table thead {
    position: sticky;
    top: 0;
}

.task-listing .table-listing .table thead tr {
    background-color: var(--background-tertiary-color);
}


.task-listing .table-listing .table tr th,
.task-listing .table-listing .table tr td {
    padding: 15px;
    border: none;
    border-style: none;
}

.task-listing .table-listing .table-striped>tbody>tr:nth-of-type(odd)>* {
    --bs-table-bg-type: var(--background-secondary-color);
}

.task-listing .table-listing .table-striped>tbody>tr:nth-of-type(even)>* {
    background: var(--background-tertiary-color);
}

.task-listing .table-listing .table thead tr th {
    color: var(--primary-color);
    font-size: var(--text-base);
    font-weight: var(--font-weight-600);
}

.task-listing .table-listing .table tbody tr td {
    color: var(--body-color);
    font-size: var(--text-sm);
    font-weight: var(--font-weight-400);
}

.task-listing .table-listing .table tbody tr td:nth-last-child(2) div p {
    margin-bottom: 0;
}

.task-listing .table-listing .table tbody tr .actions {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    /* width: 100%; */
    gap: 20px;

}

.task-listing .table-listing .table tbody tr .actions select {
    width: auto;
    background-color: var(--white-color);
    border: 1px solid var(--border-color);
    color: var(--body-color);
    font-size: var(--text-base);
    font-weight: var(--font-weight-500);
    padding: 0.5rem 2rem 0.5rem 1rem;
    border-radius: 6px;
}

.task-listing .table-listing .table tbody tr .actions .view-button {
    background-color: var(--button-green-background-color);
    border: none;
    padding: 0.5rem 2rem;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.task-listing .table-listing .table tbody tr .actions .view-button p {
    margin-bottom: 0;
    color: var(--primary-color);
    font-size: var(--text-base);
    font-weight: var(--font-weight-500);
}

select#service_id {
    min-height: 50px !important;
    overflow-y: hidden;
}

select#service_id.form-select {
    height: 27px;
}

.select2-container--focus .select2-selection {
    background-color: #FAF9F6 !important;
}

.select2-results__options--nested li:first-child .sub-check-box input {
    margin-left: 0px;
}

.select2-results__options--nested li .sub-check-box input {
    margin-left: 8px;
    margin-right: 0px !important;

}

.select2-selection {
    background-color: var(--white-color) !important;
    color: var(--body-color) !important;
    font-size: var(--text-sm) !important;
    font-weight: var(--font-weight-400) !important;
    margin-bottom: 10px !important;
    padding: 10px 10px !important;
    border-radius: 6px !important;
    border: 1px solid var(--body-color) !important;

}

.select2-selection::before {
    content: '';
    background-image: url('/images/dropdown-icon.svg');
    width: 12px;
    height: 24px;
    position: absolute;
    right: 10px;
    top: 14px;
    width: 20px;
    cursor: pointer;
    background-repeat: no-repeat;
    background-position: center;
    padding: 10px;


}



.select2-container .select2-selection--single {
    height: auto !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    padding: 5px 20px;
    margin: 4px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    padding: 6px;
}

.select2-selection__choice__display .sub-check-box input {
    margin-bottom: 0px;
}

.select2-selection__choice__display .sub-check-box {
    margin-left: 5px;
}

.select2-selection:hover,
.select2-selection:active,
.select2-selection:focus,
.select2-selection.selected {
    background-color: #FAF9F6 !important;
}

.task-creation-form small {
    font-size: 12px;
    margin: 3px 0px;
}

/* End of Task Listing */

/* After Purchace Dashboard */

/* ── STAT CARDS SECTION ── */
.stat-card {
    border-radius: 12px;
    padding: 22px 20px;
    position: relative;
    overflow: hidden;
    border: none;
}

.stat-card .stat-icon {
    position: absolute;
    top: 18px;
    right: 18px;
    padding: 10px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-card .stat-icon svg {
    width: 18px;
    height: 18px;
}

.stat-label {
    font-size: 20px;
    font-weight: 500;
    color: #000;
    margin-bottom: 6px;
}

.stat-value {
    font-size: 34px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-sub {
    font-size: 16px;
    color: #5c5858;
}

.stat-green {
    background: #d1e4e2;
}

.stat-value {
    color: #ca970b;
}

.stat-pink {
    background: #ffd6ea;
}

.stat-amber {
    background: #ffe6a6;
}

.stat-purple {
    background: #e9ddf9;
}

/* ── SERVICE CARDS SECTION ── */
.view-details-service .service-card {
    background: #F8FAFC;
    border-radius: 14px;
    border: 1px solid #e9ecef;
    padding: 22px 24px;
    height: 100%;
}

.service-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    /* flex-wrap: wrap; */
}

.service-ico {
    padding: 10px;
    border-radius: 50%;
    background: #10192C;
    display: flex;
    align-items: center;
    justify-content: center;
}


.service-name {
    font-weight: 700;
    text-align:left;
}

.service-meta {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    text-align: left;
}

.meta-item label {
    display: block;
    font-size: 14px;
    color: #515151;
    margin-bottom: 4px;
}

.meta-item .meta-val {
    font-size: 16px;
    font-weight: 600;
    color: #000014;
}

/* .meta-item .milestone {
    color: #45C276;
} */

.meta-item .milestone-1 {
    color: #3447E6;
}

.btn-view {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 16px;
    font-weight: 600;
    color: #1a1d23;
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: color 0.15s;
    white-space: nowrap;
}

.btn-view:hover {
    color: #c9922a;
}

/* ── BOTTOM CTA BANNER SECTION ── */
.cta-banner {
    background: #FFFBEB;
    /* Gold Pale */
    border: 1px solid #F5C754;
    border-radius: 14px;
    padding: 24px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-title {
    font-size: 15px;
    font-weight: 700;
    color: #1a1d23;
    margin-bottom: 4px;
}

.cta-sub {
    font-size: 12.5px;
    color: #7a6a3a;
}

.btn-apply {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    background: #0d1117;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
    transition: opacity 0.15s;
}

.btn-apply:hover {
    opacity: 0.85;
    color: #fff;
}

/* ── FLOATING HELP BUTTON ── */
.need-help-btn {
    position: fixed;
    bottom: 32px;
    right: 28px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 11px 18px;
    background: #0d1117;
    color: #fff;
    border: 2px solid #c9922a;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
    transition: background 0.18s;
    z-index: 200;
}

.need-help-btn:hover {
    background: #c9922a;
    color: #1a1100;
}

.need-help-btn .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #c9922a;
}

.need-help-btn:hover .dot {
    background: #1a1100;
}


/* After Purchase Dashboard */

/* My Account */

.field-label {
    font-size: 14px;
    color: #515151;
    font-weight: 600;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.field-input-disabled {
    width: 100%;
    background: #F2F3F8;
    border: 1px solid #D9D9D9;
    border-radius: 6px;
    padding: 15px;
    font-size: 14px;
    color: #000;
    outline: none;
}

.edit-profile {
    cursor: pointer;
}


.edit-profile:hover h3 {
    color: var(--primary-color);
}

.edit-profile:hover path {
    fill: var(--primary-color);
}

.edit-profile-container .form-container {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    width: 100%;
}

.sub-icon-heading {
    display: flex;
    gap: 8px;
    justify-content: flex-start;
    align-items: center;
    font-weight: var(--font-weight-500);
    color: #000;
    font-size: var(--text-lg);
    margin-bottom: 10px;

}

.sub-icon-heading h5{
    margin:0;
    font-size: 20px;
    font-weight: 500;
    color: #000014;
}

.sub-icon {
    padding: 5px 7px;
    background-color: #FFFBEB;
    border: 1px solid #F5C754;
    border-radius: 6px;
}




.sub-icon-heading .milestone-icon {
    background-color: #FFFBEB;
    border: 1px solid #F5C754;
    width: 45px;
    height: 45px;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.doc-list {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
    width: 100%;
}

.doc-list li {
    background: #f2f3f8;
    border: 1px solid #d9d9d9;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: border-color 0.15s;
}

.doc-list li:first-child {
    border-radius: 12px !important;
}

.doc-list li:last-child {
    margin-bottom: 0;
    border-radius: 0 0 12px 12px;
}

.doc-list li:hover {
    border-color: #c8c8c8;
}

.doc-icon-wrap {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.doc-icon-wrap.pdf {
    background: #fdecea;
}

.doc-icon-wrap.img {
    background: #e3effe;
}

.doc-name {
    flex: 1;
    font-size: 14px;
    color: #535151;
    margin: 0;
    font-weight: 500;
}

.title-container{
    display: flex;
    justify-content: center;
    align-items:center;
    gap:10px;
}

/* End of My Account */

/* Edit Profile */


.field-input {
    width: 100%;
    background: #fff;
    border: 1px solid #d9d9d9;
    border-radius: 6px;
    padding: 15px;
    font-size: 14px;
    color: #000;
    outline: none;
}

.field-input::placeholder {
    font-size: 14px;
    color: #878dab;
}

.field-input:hover,
.field-input:active,
.field-input:focus,
.field-input:focus-within {
    border: 1px solid #CA970B;
}

.edit-profile-section {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.upload-area {
    padding-right: 25px;
    position: relative;
}

.select-doc {
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid #ddd;
    border-radius: 7px;
    padding: 15px;
    font-size: 15px;
    color: #515151;
    cursor: pointer;
    outline: none;
    width: 100%;
}

.select-wrapper {
    position: relative;
    display: flex;
    width: 100%;
}

.select-wrapper select {
    padding-right: 32px;
    position: relative;
}

.select-wrapper select img {
    display: absolute;
    top: 25%;
    right: 15%;
}

.upload-area .row>* {
    padding: 5px;
}

.upload-area .row {
    padding-right: 0;
    margin-right: 0;
}

.upload-btn {
    display: flex;
    align-items: center;
    gap: 7px;
    background: #fff;
    border: 1.5px dashed #bbb;
    border-radius: 7px;
    padding: 15px;
    font-size: 15px;
    color: #515151;
    cursor: pointer;
    transition: border-color 0.15s;
    justify-content: center;
}

.upload-btn:hover {
    border-color: #888;
}

.upload-btn i {
    font-size: 16px;
    color: #555;
}

.upload-add-btn {
    background-color: transparent;
    border: none;
    position: absolute;
    top: 25%;
    right: 0;
}

.footer-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    padding: 16px 24px;
    background: #fff;
    z-index: 100;
}

.btn-cancel {
    background: #fff;
    border: 1.5px solid #ccc;
    border-radius: 6px;
    padding: 15px 70px;
    font-size: 16px;
    font-weight: 500;
    color: #555;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background 0.15s;
    text-align: center;
}

.btn-cancel:hover {
    background: #f5f5f5;
}

.btn-save {
    background: #1a1a2e;
    border: none;
    border-radius: 6px;
    padding: 15px 70px;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background 0.15s;
}

.btn-save:hover {
    background: transparent;
    border: 1px solid #ca970b;
    color: #ca970b;
}

/*********** bappa add for testing *************/
.upload-documents-section .uploaded-items-container {
    display: flex;
    flex-direction: column;
    /* width: 60%; */
    border-radius: 6px;
}

.upload-documents-section .uploaded-items {
    background: #f2f3f8;
    border: 1px solid #d9d9d9;
    padding: 12px 18px;
    padding-left: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    transition: border-color 0.15s;
    position: relative;
}

.upload-documents-section .uploaded-items:first-child {
    border-radius: 6px 6px 0 0 !important;
}

.upload-documents-section .uploaded-items:last-child {
    border-radius: 0 0 6px 6px;
}


.upload-documents-section .uploaded-items .upload-content {
    display: flex;
    align-items: center;
    gap: 8px;
}
.upload-documents-section .uploaded-items .upload-details{
    display:flex;
    justify-content: space-between;
    gap:5px;
}

.upload-documents-section .uploaded-items .pdf-icon {
    position: absolute;
    left: 5px;
}

.upload-documents-section .uploaded-items .upload-content p {
    font-family: var(--seondary-font);
    font-size: var(--text-sm);
    color: #535151;
    font-weight: 500;
    margin-left: 12px;
}

.upload-documents-section .uploaded-items .upload-details p {
    font-family: var(--seondary-font);
    font-size: var(--text-xs);
    color: #8E8A8A;
}



.upload-documents-section .uploaded-items.processsing .upload-content .upload-name {
    display: flex;
    gap: 8px;
    align-items: center;
}

.upload-documents-section .uploaded-items.processing {
    display: flex;
    flex-direction: column;
    gap: 5px;
    position: relative;
    padding-left: 30px;
}

.upload-documents-section .uploaded-items.processing .upload-content {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.upload-documents-section .uploaded-items.processing .upload-name {
    display: flex;
    align-items: center;
    gap: 8px;
}

.upload-documents-section .uploaded-items.processing .upload-name .pdf-icon {
    position: absolute;
    left: 0;
}

.upload-documents-section .uploaded-items.processing .processing-percent {
    font-family: var(--seondary-font);
    font-size: var(--text-sm);
    color: #535151;
}

.upload-documents-section .uploaded-items.processing .processing-details {
    border: 2px solid #D0CBCB;
    width: 100%;
}


.upload-documents-section .uploaded-items.processing .processing-details {
    background-color: #D0CBCB;
    height: 2px;
    border: none;
}

.upload-documents-section .uploaded-items.processing .processing-details .processing-line {
    width: 50%;
    background-color: #F5C754;
    height: 2px;
}

/*********** bappa end add for testing *************/


/* End of Edit Profile */

/* end of form css  */

.milestone_payment_button {
    background-color: #4CCA8B;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
    min-width: 150px;
    margin-bottom: 0;
    color: #000014 !important;
    font-size: var(--text-base);
    font-weight: var(--font-weight-500);
}




/* Notification Page Start */
.clients-tabs .nav .nav-item .nav-link:hover div,
.clients-tabs .nav .nav-item .nav-link:active div,
.clients-tabs .nav .nav-item .nav-link:focus div {
    background-color: var(--white-color);
    color: var(--primary-color);
}

.clients-tabs .nav .nav-item .nav-link {
    background-color: var(--background-secondary-color);
    color: var(--primary-color);
    font-size: var(--text-base);
    font-weight: var(--font-weight-700);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 1rem 2.5rem;
    border-radius: 6px;
}

.clients-tabs .nav .nav-item .nav-link:hover {
    background-color: #000;
    color: #fff;
}

.nav-pills > .nav-item:first-child {
    z-index: 2;
}

.nav-pills > .nav-item:nth-child(2) {
    z-index: 1;
}

.nav-pills > *:not(:first-child) {
    margin: 0 -11px;
}

.clients-tabs .nav .nav-item .nav-link p {
    margin-bottom: 0;
}

.clients-tabs .nav .nav-item #pills-pending-tab {
    position: relative;
    z-index: 2;
}

.clients-tabs .nav .nav-item p {
    font-size: 18px;
    font-weight: 600;
    color: #515151;
}

.clients-tabs .nav .nav-item #pills-completed-tab {
    position: relative;
    z-index: 1;
    margin: 0 -11px;
}

.clients-tabs .nav .nav-item .nav-tab-link-active p {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

.clients-tabs .nav .nav-item:hover p {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

.mark-read-button {
    background-color: #c8f3ee;
    padding: 10px 15px;
    color: #198754;
    font-weight: 600;
    font-size: 14px;
    border-radius: 3px;
    margin: 5px 0;
}

.mark-read-button:hover,
.mark-read-button:focus,
.mark-read-button:focus-within,
.mark-read-button:active {
    background-color: #198754;
    color: #fff;
}

/* Notification Page - Start */
.notification-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
    width: 100%;
    flex-direction: column;
}

.notification-item {
    background-color: #f2f3f8;
    display: flex;
    justify-content: space-between;
    padding: 15px 15px;
    width: 100vw;
    margin-left: 15px;
    align-items: center;
    border: 1px solid #efefef;
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.notification-item.unread {
    background-color: #dbd8d8;
    border-left: 4px solid #bcb8b8;
}

.notification-item:hover {
    transform: translateX(5px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.notification-content {
    position: relative;
    padding-left: 70px;
}

.notification-icon {
    position: absolute;
    top: -4px;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    background-color: #d3f3dc;
    border-radius: 10px;
}

.notification-icon.service-request {
    background-color: #ffeec2;
}

.notification-icon.error {
    background-color: #ffe6e9;
}

.notification-icon.chat {
    background-color: #d3ecf3;
}

.notification-icon.account {
    background-color: #cdefc9;
}

.notification-details {
    display: flex;
    gap: 3px;
    flex-direction: column;
}

.notification-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.notification-item p {
    color: #5c5858;
    margin-bottom: 0;
}

.notification-time {
    min-width: 100px;
    text-align: right;
}

.notification-time p {
    font-size: 12px;
    color: #999;
}

.badge-count-page {
    /* display: inline-block; */
    background-color: #dc3545;
    color: white;
    border-radius: 50%;
    /* padding: 3px 6px; */
    font-size: 11px;
    margin: 0;
    line-height: 1;

    height: 25px;
    width: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 11px;
    margin-left: 8px;
    line-height: 1;
}

.pagination {
    justify-content: center;
    margin-top: 30px;
}

.dropdown-menu {
    min-width: 120px;
    z-index: 2;
}


/* Notification Page End */




/* Start of register Page - Media Queries */

/* @media (min-width:1361px) and (max-width: 1441px) {
    .register .form-container {
        padding: .8rem 0.8rem;
    }
}

@media (min-width:576px) and (max-width: 1360px) {
    .register .form-container {
        max-width: 450px;
    }

    .register .form-container {
        padding: .8rem 0.8rem;
    }

    .register .form-container h1 {
        font-size: var(--h1-md);
        line-height: var(--heading-one-line-height);
        margin-bottom: 10px;
    }

    .register .form-container .input-group input {
        font-size: var(--text-md);
    }

    .register .form-container .input-group input::placeholder {
        font-size: var(--text-md);
    }

    .register .form-container .input-group {
        padding: 0.3rem 0.5rem;
    }

    .register .form-container .btn {
        margin-top: 0;
    }


}

@media screen and (max-width: 575px) {
    .register .form-container {
        max-width: 100%;
        padding: 1rem 0.8rem;
    }

    .register .form-container .input-group input,
    .register .form-container .input-group input::placeholder {
        font-size: var(--text-md);
    }

    .register .form-container h1 {
        font-size: var(--h1-md);
        line-height: var(--heading-one-line-height);
        border-radius: 12px;
    }

} */

/* End of register Page  - Media Queries*/

/* Start of login Page - Media Queries */

/* @media (min-width:576px) and (max-width: 1360px) {
    .login .form-container {
        max-width: 635px;
    }

    .login .form-container {
        padding: 3rem 1.5rem;
    }

    .login .form-container h1 {
        font-size: var(--h1-md);
        line-height: var(--h1-line-height);
        margin-bottom: 25px;
    }

    .login .form-container .input-group input {
        font-size: var(--text-md);
    }

    .login .form-container .input-group input::placeholder {
        font-size: var(--text-md);
    }

    .login .form-container .input-group {
        padding: 1rem 0.8rem;
    }


}

@media screen and (max-width: 575px) {
    .login .form-container {
        max-width: 100%;
        padding: 1.2rem 0.8rem;
    }

    .login .form-container .input-group input,
    .login .form-container .input-group input::placeholder {
        font-size: var(--text-md);
    }

    .login .form-container h1 {
        font-size: var(--h1-md);
        line-height: var(--h1-line-height);
        margin-bottom: 20px;
        border-radius: 20px;
    }

} */

/* End of login Page  - Media Queries*/


/* Start of login Page - Media Queries */
@media (min-width : 1361px) and (max-width:1440px){
    .login .form-container{
        padding:3rem 2.5rem 3rem 7rem
    }
    .login .form-container .button-container{
        margin-top: 15px;
       
    }
}

@media (min-width:992px) and (max-width: 1360px) {  

    
    .login .form-container{
        padding: 2rem 1.5rem;
        gap: 10px;
    }
    .login .form-container h1{
        font-size: var(--h1-md);
        line-height: 30px;
    
    }
    .login .form-container .input-group input{
        font-size: var(--text-md);
    }
    .login .form-container .input-group input::placeholder{
        font-size: var(--text-md);
    }
    .login .form-container .input-group{
        padding: .7rem 0.8rem;
    }

    .login .form-container .button-container{
        margin-top: 15px;
    }
    
    
}


 @media screen and (max-width :1200px){
    .login .container-fluid .row .col-lg-6:last-child,.register .container-fluid .row .col-lg-6:last-child{
        display: none !important;
    }
    .login,.register{

        background-color: #C2AD7E;
    }

    .login .form,.register .form{
        max-width: none;
    }
    .login .form-side,.register .form-side{
        display: flex;
        justify-content: center;
        align-items: center;
        margin:10px 25px;
        background-color: transparent;

    }


    .login .form-container,.register .form-container{
        background-color: var(--white-color);
        border-radius: 12px;
        padding:2rem 1.5rem;
    }
    .login .login-content,.register .login-content{
        text-align: center;
    }

    .register .image-side,.login .image-side{display:none}

    .login .form-side .logo-icon,.register .logo-icon{margin:0 auto;}
 }

@media  (max-width: 575px) { 

  .login .container-fluid .row .col-lg-6:last-child,.register .container-fluid .row .col-lg-6:last-child{
        display: none !important;
    }
    .login,.register{

        background-color: #C2AD7E;
    }

    .login .form,.register .form{
        max-width: none;
    }
    .login .form-side,.register .form-side{
        display: flex;
        justify-content: center;
        align-items: center;
        margin:10px 25px;
        background-color: transparent;

    }


    .login .form-container,.register .form-container{
        background-color: var(--white-color);
        border-radius: 12px;
        padding:2rem 1.5rem;
    }
    .login .login-content,.register .login-content{
        text-align: center;
    }


    .login .form-container .input-group,.register .form-container .input-group{
        padding: 0.5rem .8rem;
    }

    .login .form-side,.register .form-side{
        background-color: transparent;
        margin: 10px 15px;
    }

   
    .login .form-side >div,.register .form-side >div{
        width: 100%;
    }

    .login .form-side .form-container .logo-icon,.register .form-side .form-container .logo-icon{
        max-width: 200px;
    }

    .login .button-container,.register .button-container{
        flex-direction: column;
        gap: 10px;
    }
    .login .form-container,.register .form-container{
        max-width: 100%;
        padding: 1.8rem 1rem;
        gap: 20px;
        background-color: var(--white-color);
    }
    .login .form-container .input-group input,.login .form-container .input-group input::placeholder,.register .form-container .input-group input,.register .form-container .input-group input::placeholder{
        font-size: var(--text-md);
    }
    .login .form-container h1,.register .form-container h1{
        font-size: var(--h1-md);
        line-height: 30px;
        margin-bottom: 20px;
        border-radius: 20px;
    }

 }

 /* End of login Page  - Media Queries*/

 /* Register Page - Media Queries */

 @media (min-width: 1360px) and (max-width: 1440px){
    .register .form-side .logo-icon {
        width: 100%;
        max-width: 180px;
    }

    .register .form-side input{
        padding: .5rem;
    }

    .register .form-side h1 {
        font-family: var(--heading-font);
        font-size: var(--h1-md);
        font-weight: var(--font-weight-700);
        line-height: 30px;
        color: var(--primary-color);
    }

    .form-side .login-to-continue {
        font-size: var(--text-md);
        font-weight: var(--font-weight-500);
        color: var(--primary-color);
        margin-bottom: 5px;

    }

    .register .form-container{
        padding: .5rem 2.5rem .5rem 7rem;
        gap: 5px;
    }

    .register .button-container{
        margin-top:10px;
    }


    .register .form-container img{
        width: 25px;
    }

    .register .form-container .input-group{
        padding: 0.3rem 0.5rem;	
    }
 }

 @media (min-width:1200px) and (max-width:1360px){
    .register .form-side .logo-icon {
        width: 100%;
        max-width: 180px;
    }
    .register .form-container{
        padding: .5rem 2.5rem;
        gap: 5px;
    }

    .register .form-side h1 {
        font-family: var(--heading-font);
        font-size: var(--h1-md);
        font-weight: var(--font-weight-700);
        line-height: 30px;
        color: var(--primary-color);
    }

    .register .form-container img{
    width: 20px;
    }
    .register .form-side .login-to-continue{
        font-size: var(--text-md);
    }
    .register .form-container .input-group{
    padding: 0.2rem 0.5rem;	
    }
    .register .form-container .input-group input::placeholder{
        font-size: var(--text-md);
    }
    .register .form-side label{
        font-size: var(--text-base);
    }

    .main-button,.secondary-button {
        padding: 15px 25px;
         font-size: var(--text-md);
         width: 100%;
    }

    .register label{
        margin-bottom:2px;
    }
    

 }


 @media screen and (max-width:767px){
    .main-button{
        width:100%
    }
 }

 /* End of Register Page - Media Queries  */

/* Side and Main Content - Media Queries */




@media (max-width: 992px) {
    .wrapper {
        display: flex;
        justify-content: flex-end;
    }

    .main-content {
        display: flex;
        justify-content: end;
        margin-left: 0;
        padding-left: 0;
        width: 100%;
        max-width: calc(100% - 110px) !important;
    }
}

@media screen and (max-width:768px) {

    .main-content .topbar .topbar-heading {
        width: 100%;
    }

    .main-content .topbar {
        min-height: 170px;
    }

    .main-content .topbar .topbar-content {
        max-width: none;
        justify-content: space-around;
    }
}

@media screen and (max-width:480px) {
    .main-content .topbar {
        min-height: 190px;
    }

    .main-content .topbar .topbar-content .admin-profile {
        display: none;
    }

    .main-content .topbar .topbar-content .first-vr {
        display: none;
    }


}

/* End of Sidebar and Main-Content - Media Queries */


/* Dashboard - Media Queries */
@media (min-width:1400px) and (max-width: 1600px) {
    .dashboard .banner-wrapper .banner-right-content {
        padding: 1.5rem 1.5rem 0rem 5rem;

    }
}


@media (min-width:1200px) and (max-width: 1400px) {
    .dashboard .banner-wrapper .banner-right-content {
        padding: 1rem 1rem 0rem 1.5rem;
        border-top-left-radius: 50px;
        border-bottom-left-radius: 50px;
    }
}

@media screen and (max-width: 1199px) {
    .dashboard .banner-wrapper .row>* {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }
    .view-details-service .service-header{
        flex-wrap:wrap;
    }

    .dashboard .banner-wrapper .banner-left-content {
        padding: 1rem 1.5rem 1rem 1rem !important;
    }

    .slider-box {
        max-width: 100%;
    }

    .dashboard .banner-wrapper .banner-right-content {
        padding: 1rem 1rem 0rem 1.5rem;
        border-top-left-radius: 0px;
        border-bottom-left-radius: 0px;
    }

    .dashboard .banner-wrapper .banner-right-content .cta-image {
        margin-bottom: -20px;
    }

    .dashboard .popular-services {
        padding: 1.5rem 1rem 1.5rem 1rem;
    }

    .dashboard .popular-services .popular-services-content {
        width: 100%;
        max-width: 100%;

    }


    .dashboard .popular-services .all-services-button {
        margin-top: 20px;
        width: 100%;
        max-width: 100%;
        height: auto;
        flex-direction: row;
        gap: 10px;
        padding: 1rem 1.5rem;
    }
}

@media screen and (max-width:500px) {
    .dashboard .banner-wrapper .banner-right-content {
        padding: 1rem 1rem 1rem 1.5rem;
    }

    .dashboard .banner-wrapper .banner-right-content .cta-image {
        display: none;
    }
}

/* End of Dashboard - Media Queries */

/* Service Summary - Media Queries */


@media screen and (max-width: 1299px) {
    .service-summary .service-summary-listing .table-responsive {
        overflow-x: scroll;
    }
}


@media screen and (max-width: 500px) {
    .service-summary .service-summary-listing .table-responsive {
        overflow-x: scroll;
    }
}

/* End of Service Summary  - Media Queries */


/* My Subscription - Media Queries */
@media screen and (max-width: 1540px) {
    .my-subscription .subscrption-tabs .tab-content .my-subscription-listing .table-responsive {
        overflow-x: scroll !important;
    }

    .my-subscription-wrapper .card-body .table-main-wraper {
        overflow-x: auto;
        width: 100%;
    }

    .my-subscription-wrapper .tabulator-header,
    .tabulator-tableholder {
        min-width: 1650px !important;
    }
}

@media (max-width:566px) {
    .my-subscription .subscrption-tabs .nav .nav-item #pills-completed-tab {
        margin-left: 0px;
    }

    .my-subscription .subscrption-tabs .nav .nav-item .nav-link {
        padding: 0.5rem 3.5rem;
    }
}

/* End of My Subscription - Media Queries */

/* Service Apply Forms - Media Queries */

@media (min-width:576px) and (max-width: 768px) {
    .service-apply .service-apply-form .form-actions {
        margin-top: 15px;
        align-items: center;
        height: auto;
    }
}


@media screen and (max-width:600px) {

    .service-apply .service-apply-form .form-actions {
        flex-direction: column-reverse;
        margin-top: 10px;
        width: 100%;
        align-items: center;
        height: auto;
    }

    .service-apply .service-apply-form .form-actions .action-button {
        width: 100%;
    }

    .service-apply .service-apply-form .form-actions .cancel-button {
        width: 100%;
        text-align: center;
    }

}

/* End of Service Apply Forms - Media Queries */

/* Task Listing - Tabular Design : Media Quries */


@media screen and (max-width: 1540px) {

    /* .table-new .tabulator-paginator{
        text-align: start !important;
    } */
    .card-body .table-main-wraper {
        overflow-x: auto;
        width: 100%;
    }

    .tabulator-header,
    .tabulator-tableholder {
        min-width: 1600px;
    }

    .tabulator .tabulator-tableholder {
        overflow: hidden !important;
    }
}

/* end - Tabular Design : Media Quries */

/* Details Page - Media Query */

@media screen and (max-width:670px) {
    .service-apply .service-apply-form .file-card {
        flex-direction: column;
    }
}

/* End of Details Page - media Query */

/* Details Table - Media Queries */

@media screen and (max-width:1360px){
    .tasks-list-box-items {
       flex: 0 0 40%
    }
}


@media screen and (max-width: 1299px) {
    .sub-service .sub-service-listing .table-responsive {
        overflow: scroll;
    }
}

@media screen and (max-width:1200px){
    .payment-name{
        border:none
    }
    .total-payment-content{
        text-align: start;
        border:none
    }

    .payment-content{
        border:none;
    }
}

@media screen and (max-width:991px){
    .sticky-bar{
        width:calc(100% - 90px)
    }


}

@media screen and (max-width:767px){
    

    .total-payement-structure-tab{
        gap:10px
    }

    .tasks-list-box-items {
        flex : 0 0 100%;
    }
}

@media screen and (max-width:676px){
    .common-box h2{
        font-size:24px;
    }
    .common-icon-section{
        flex-direction:column
    }
    .small-info-box{
        flex-direction: column;
        gap:10px
    }

    .small-info-box .small-info-content{
        border:none;
    }
}

/* End Details Table - Media Queries */


@media screen and (max-width: 500px) {
    .sub-service .sub-service-listing .table-responsive {
        overflow: scroll;
    }
}


/* Service Details (Token Money) - Media Queries */

@media screen and (max-width:1440px) {
    .w-full {
        width: 100% !important;
    }

}


@media screen and (max-width:767px) {
    .service-details-token-section .about-company-formation {
        flex-direction: column;
    }
}

@media screen and (max-width:676px) {
    .service-details-token-section .payment-structure .payement-structure-tab {
        flex-direction: column;
    }


    .service-details-token-section .payment-structure .payement-structure-tab .payment-price {
        width: 100%;
        justify-content: space-between;
        flex-wrap: wrap;
    }
}

@media screen and (max-width:576px) {
    .service-details-token-section .about-company-formation-content h3 {
        font-size: var(--text-lg);
    }
}

@media screen and (max-width:450px) {
    .service-details-token-section .payment-structure .payement-structure-tab .tab-number {
        width: 30px;
        height: 30px;
        font-size: var(--text-sm)
    }
}



/* End of Service Details (Token Money) - Media Queries */


/* Service Request Details - Media Queries */

@media screen and (max-width:1200px){
    .track-progress-section-wrapper .service-side{
        max-width:none;
        border:none;
        margin-bottom: 15px;
        padding:0;
    }
}

@media screen and (max-width:991px){
    .service-request-milestone .payment-price{
        justify-content:space-between;
    }
}


/* End of Service Request Details - Media Queries */

/* Service List  - Media Query */
@media screen and (max-width:500px) {

    .service-list-section .service-listing .service-item .service-footer .price,
    .service-list-section .service-listing .service-item .service-footer .duration {
        flex-direction: column;
    }

    .service-list-section .service-listing .service-item h3 {
        font-size: var(--text-md);
    }
}

/* End of Service List - Media Query */

/* After Purchase Dashboard - Media Query */

@media screen and (max-width:576px) {
    .stat-label {
        font-size: 16px;
    }
}

/* End of After Purchase Dashboard */

/* Edit Profile - Media Queries */

@media screen and (max-width: 1199px) {
    .upload-add-btn {
        top: 65%;
    }

    .uploaded-items-container {
        margin: 0 auto;
    }
}

@media screen and (max-width: 678px) {
    .footer-actions {
        flex-direction: column-reverse;
        padding: 16px 0;
    }

    .btn-save {
        padding: 15px 58px;
    }

    
}

@media screen and (max-width:500px){
    .upload-documents-section .uploaded-items{
        flex-direction: column;
    }
    .upload-documents-section .uploaded-items .pdf-icon{
        top:25%;
    }
}



/* End of Edit Profile - Media Queries */


/* Track Progress - media Query */

@media screen and (max-width: 1199px){
        .service-details-side {
        flex-direction: column;
        padding: 0;
        width: 100%;
        gap: 30px;
    }

    .serivce-details-topbar {
        flex-direction: column;
    }

    .service-details-item {
        justify-content: center;
        align-items: center;
    }

    .service-side {
        flex-direction: column;
        align-items: center;
    }

    .service-heading div {
        margin: 0 auto;
        margin-top: 10px;
    }


    .service-heading {
        justify-content: center;
        align-items: center;
    }

}

@media screen and (max-width :991px) {
    .track-prgress-content .milestone-section .payment-structure .payement-structure-tab {
        flex-wrap: wrap;
    }


}

@media screen and (max-width: 676px){
    .track-prgress-content .formation-task-list-section .task-list-heading{
        flex-direction:column;
    }
    .track-prgress-content .formation-task-list-section .task-list-heading .task-heading-content{
        text-align:center;
    }

    .form-list-body .table-responsive .table{
        min-width:450px;
    }
}

/* End of Track Progress */


/* Chat - media Query */

  @media screen and (max-width:567px) {
    .members-popup {width:150px;right:-15px}
    .member-row{flex-direction:column;}
    .members-trigger{flex-wrap:wrap;justify-content:center;}
  }

/* End of Chat - Media Query */


 /* Mobile: full-screen feel, no rounded bottom */

@media screen and (max-width: 600px) {
    .page-wrap {
        max-width: 325px;
    }
}
@media (max-width: 480px) {
    .page-wrap {
        max-width: 230px;
    }
    .bell-wrap {
        top: 12px;
        right: 12px;
        margin-top: 0;
    }
    .notif-panel {
        box-shadow: none;
        margin-top: 0;
    }
    .notif-scroll {
        max-height: 500px;
        overflow-y: unset;
    }
    .page-wrap {
        right: 0%;
    }
    .notif-item {
        padding: 15px 16px;
        gap: 12px;
    }
}

 /* End of Notification - Media Query */


 /* Notification Page - Media Query */

 @media screen and (max-width: 991px) {
    .notification-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .notification-time {
        padding-left: 70px;
        max-width: none;
        text-align: left;
        margin-top: 10px;
    }
}

@media screen and (max-width: 567px) {
    .notification-icon {
        position: relative;
        width: fit-content;
        margin-bottom: 5px;
    }

    .notification-content,
    .notification-time {
        padding-left: 0;
    }
}



 /* Notification Page - Media Query End */