@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

body {
    padding: 0px;
    margin: 0px;
    font-family: "Inter", sans-serif;
    overflow-y: scroll;
}

* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

a {
    text-decoration: none !important;
    outline: none !important;
}

img {
    width: 100%;
    height: 100%;
    border: none;
}

p:last-of-type,
p:last-child {
    margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Inter", sans-serif;
}

::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

::-webkit-scrollbar-track {
    background: #eee;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border: none;
    border-radius: 20px;
}

:root {
    --primary-color: #355fab;
    --lbl-color: #3f69b1;
    --primary-light-color: #5882c147;
    --secondary-color: #ffffff1f;
    --text-light-color: #606060;
    --white: #fff;
    --black: #000;
    --orange-medium: #ee7725;
    --orange-light: #fef2ea;
    --border-clr: #5882c17d;
    --bg-color: #355fab0d;
    --bg-light-color: #ee77250d;
}

.primary-cta {
    color: var(--white);
    background-color: var(--orange-medium);
    padding: 0 2.4rem;
    height: 45px;
    font-weight: 500;
    font-size: 16px;
    border: none;
    border-radius: 10px;
    display: inline-flex;
    border: 1px solid var(--orange-medium);
    transition: 0.2s ease-in-out;
    align-items: center;
    justify-content: center;

    &:hover,
    &.active {
        background-color: var(--white);
        color: var(--primary-color);
        transition: 0.2s ease-in-out;
    }

    &.active:hover {
        background-color: var(--primary-color);
        color: var(--white);
        border-color: var(--white);
        transition: 0.2s ease-in-out;
    }
}

.non-active-cta {
    color: var(--black);
    background-color: var(--white);
    padding: 0 2.4rem;
    height: 45px;
    font-weight: 500;
    font-size: 16px;
    border: none;
    border-radius: 10px;
    display: inline-block;
    transition: 0.2s ease-in-out;

    &:hover {
        color: var(--primary-color);
        transition: 0.2s ease-in-out;
    }
}

/*LOGIN-FLOW-CSS*/
.log-in {
    background-color: var(--primary-color);
    min-height: 100vh;
}

.login-wrp {
    background-color: var(--primary-light-color) !important;
    width: 60%;
    margin: auto;
    border-radius: 20px;
    border: 1px solid var(--border-clr);
    padding: 0;
}

.log-in {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-wrp h2,
h4,
p {
    text-align: center;
    color: var(--white);
}

.login-wrp h2,
h4 {
    font-weight: 600;
}

.login-wrp h2 {
    font-size: 34px;
    text-transform: uppercase;
}

.login-wrp h4 {
    font-size: 30px;
}

.login-wrp p {
    font-weight: 400;
    font-size: 14px;
}

.input-grp input[type="text"] {
    width: 100%;
    height: 50px;
    border-radius: 20px;
    outline: none;
}

.input-grp input[type="text"] {
    width: 100%;
    height: 50px;
    border-radius: 15px;
    outline: none;
    background-color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    padding: 15px;
    padding-left: 24px;
    font-weight: 400;
}

.input-grp input::placeholder {
    color: var(--white);
    font-size: 16px;
}

.input-grp input.password {
    width: 100%;
    height: 50px;
    border-radius: 15px;
    outline: none;
    background-color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    padding: 15px;
    padding-left: 24px;
    font-weight: 400;
}

.login-wrp input.primary-cta {
    width: 100%;
    margin-top: 30px;
}

.login-wlc img {
    width: 25px;
    height: 25px;
    margin-right: 15px;
}

.login-wlc {
    padding: 10px;
    background-color: var(--white);
    border-radius: 10px;
    margin-top: 30px;
}

.login-wlc span {
    color: var(--orange-medium);
    font-size: 16px;
    font-weight: 400;
}

.login-wlc p {
    color: var(--black);
    text-align: left;
    font-size: 16px;
}

.login-pst {
    position: relative;
    margin-top: 30px;
}

.login-pst label {
    position: absolute;
    top: -15px;
    left: 25px;
    background: var(--lbl-color);
    padding: 4px;
    border-radius: 5px;
    color: var(--white);
    font-size: 12px;
}

/*LOGIN-FLOW-CSS*/

/*SIDEBAR-CSS*/
ul.sidebar-menu li {
    list-style: none;
    margin-bottom: 15px;
}

ul.sidebar-menu li.active a {
    background: var(--orange-light);
    color: var(--orange-medium);
}

img.white-menu-icon {
    width: 21px;
    height: 21px;
    margin-right: 10px;
}

img.clr-menu-icon {
    width: 21px;
    height: 21px;
    margin-right: 10px;
}

.sidebar-menu {
    margin-top: 30px;
    padding: 0 10px;
    padding-left: 0;
}

.sidebar-body ul.sidebar-menu a {
    padding: 7px 15px;
    border-radius: 10px;
    text-decoration: none;
    width: 100%;
    display: block;
    transition: 0.3s;
    color: var(--white);
}

ul.sidebar-menu span {
    font-size: 15px;
}

.sidebar-body ul.sidebar-menu li.active img.white-menu-icon {
    display: none;
}

.sidebar-body ul.sidebar-menu li.active img.clr-menu-icon {
    display: inline-block;
}

aside.sidebar {
    background: var(--primary-color);
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    height: 100%;
    z-index: 999;
    -webkit-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
    overflow-x: hidden;
    background-color: var(--primary-color);
    scrollbar-width: none;
    padding: 0;
    padding-top: 1.5rem;
}

img.clr-menu-icon {
    display: none;
}

.sidebar-header p.logo-text {
    font-size: 16px;
    margin-top: 25px;
    margin-bottom: 59px;
    font-weight: 500;
    margin-top: 0;
    text-transform: uppercase;
}

/*SIEBAR-CSS*/

/*HEADER-CSS*/
.left-header {
    display: flex;
    gap: 20px;
    padding-top: 20px;
    align-items: center;
}

.user-text-head {
    align-items: center;
    display: flex;
}

.user-text-head img {
    width: 25px;
    height: 25px;
}

button.menu-toggle {
    border: none;
    background: var(--white);
}

.btn-header-drop {
    border: 1px solid var(--primary-color);
    background-color: var(--white);
    border-radius: 15px;
    height: 40px;
    padding: 10px;
    height: 47px;
    color: var(--primary-color);
}

.btn-header-drop {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-header-drop span {
    white-space: nowrap;
    color: var(--primary-color);
}

.left-header .head {
    color: var(--primary-color);
    font-size: 22px;
    font-weight: 600;
    text-align: left;
    display: flex;
    align-items: center;
}

form.search-input a {
    position: absolute;
    top: 6px;
}

form.search-input {
    width: 60%;
    position: relative;
}

form.search-input input.form-control {
    padding-left: 45px;
    background: var(--bg-color);
    border: 1px solid var(--bg-color);
    border-radius: 15px;
}

form.search-input a {
    position: absolute;
    top: 7px;
    left: 17px;
}

form.search-input input::placeholder {
    color: var(--primary-color);
}

.notification-bell img {
    width: 24px;
    height: 24px;
}

span.notification-bell {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    background: var(--bg-light-color);
    border-radius: 50%;
}

.header-right span.user-profile-icon img {
    width: 24px;
    height: 24px;
}

.header-right span.user-profile-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    background: var(--bg-light-color);
    border-radius: 50%;
}

.header-right {
    display: flex;
    gap: 25px;
    padding-top: 30px;
    justify-content: flex-end;
}

.topbar {
    height: 90px;
    padding: 0 24px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    grid-gap: 24px;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 999;
    border-bottom: 1px solid #b1b1b1;
    background-color: var(--white);
}

/*HEADER-CSS*/

/*sidebar collapse css*/
.main-content {
    position: relative;
    width: calc(100% - 300px);
    left: 280px;
    -webkit-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
}

.sidebar {
    width: 230px;
    transition: width 0.3s ease;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    z-index: 1000;
}

.main-content {
    width: calc(100% - 280px);
    transition: all 0.3s ease;
}

.sidebar.collapsed {
    width: 60px;
}

.main-content.expanded {
    width: calc(100% - 60px);
    left: 60px;
}

.sidebar.collapsed .logo-text,
.sidebar.collapsed .sidebar-menu span {
    display: none;
}

.sidebar-menu li a {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sidebar.collapsed .sidebar-menu li a {
    justify-content: center;
}

/*sidebar collapse css*/

/*Dashboard css*/

.page-content {
    width: 100%;
    height: 100%;
    padding: 25px 15px;
    background: var(--white);
    max-height: 100%;
}

.card-pro-icon img {
    width: 24px;
    height: 24px;
}

.project-dash {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pro-cout span {
    color: var(--primary-color);
    font-size: 15px;
    font-weight: 500;
}

.pro-cout p {
    font-size: 26px;
    text-align: left;
    font-weight: 600;
    color: var(--black);
}

p.pro-text {
    color: var(--text-light-color);
    font-size: 15px;
    font-weight: 400;
    text-align: left;
    margin-top: 15px;
}

.card-pro-icon {
    width: 60px;
    height: 55px;
    background-color: var(--bg-color);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dash-cards {
    background-color: var(--white);
    box-shadow: 6px 6px 54px 0px var(--bg-color);
    border-radius: 15px;
    padding: 15px;
}

.dash-score-board {
    background-color: var(--bg-light-color);
    border-radius: 15px;
    padding: 20px 25px;
    margin-top: 25px;
    width: 100%;
}

.dash-score-board h2 {
    color: var(--orange-medium);
    font-size: 22px;
    font-weight: 600;
}

.dash-score-data p.scor-user {
    color: var(--black);
    font-size: 15px;
    font-weight: 500;
}

p.scor-num {
    font-size: 28px;
    color: var(--primary-color);
    font-weight: 600;
}

p.scor-erd {
    color: var(--text-light-color);
    font-size: 14px;
    font-weight: 400;
}

.dash-score-wrp {
    display: flex;
    gap: 24px;
}

.credit-text {
    color: var(--orange-medium);
    font-size: 14px;
    margin-top: 15px;
}

p.credit-text img {
    width: 16px;
    height: 15px;
    margin-right: 10px;
}

/* .dash-score-wrp .dash-score-data:nth-child(1), .dash-score-wrp .dash-score-data:nth-child(2) {
    border-right: 1px solid #b1b1b1;
    padding-right: 40px;
} */
.dash-score-wrp .dash-score-data:not(:last-child) {
    border-right: 1px solid #b1b1b1;
    padding-right: 45px;
}

.dash-score-wrp .dash-score-data:last-child {
    border-right: none;
}

.dash-project-section {
    background-color: var(--bg-light-color);
    border-radius: 15px;
    padding: 20px 25px;
    margin-top: 25px;
}

.dash-project-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    align-items: center;
}

button.pro-btn {
    background: var(--primary-color);
    border-radius: 10px;
    border: 1px solid var(--primary-color);
    padding: 10px;
    color: var(--white);
}

button.pro-btn img {
    width: 16px;
    height: 16px;
    margin-left: 8px;
}

.dash-project-top h3 {
    color: var(--orange-medium);
    font-size: 22px;
    font-weight: 600;
}

p.dash-entity-text img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

p.dash-entity-text {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 500;
}

p.refinery-text {
    color: var(--primary-color);
    font-size: 22px;
    font-weight: 500;
    text-align: left;
}

span.due-date img {
    width: 18px;
    height: 18px;
    margin-right: 8px;
}

.entity-due {
    display: flex;
    gap: 20px;
}

.expansion-text {
    display: flex;
    gap: 16px;
}

span.due-date {
    color: var(--orange-medium);
}

.expansion-phase {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 25px;
    background: #fff;
    border-radius: 15px;
    margin-top: 15px;
}

.right-progress-text {
    display: flex;
    gap: 10px;
}

.dash-overall-text p {
    color: var(--black);
    gap: 25px;
}

/*table*/
.attention-table table tr th {
    font-size: 14px;
    font-weight: 500;
    padding: 10px 20px;
    color: #fff;
    background-color: var(--primary-color);
    /*border: 1px solid #000;*/
}

.attention-table {
    width: 100%;
    height: auto;
}

.table-responsive {
    overflow-x: auto;
    padding-bottom: 0px;
}

.attention-table table {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    min-width: 100%;
    height: auto;
    text-align: center;
    background-color: var(--white);
}

.attention-table table {
    border-collapse: separate;
    border-spacing: 0;
}

.attention-table table tr th:first-child {
    border-top-left-radius: 15px;
}

.attention-table table tr th:last-child {
    border-top-right-radius: 15px;
}

/*table*/

/*body*/

.coment-desp p.text {
    font-weight: 400;
    font-size: 15px;
    color: var(--black);
}

.coment-desp .text {
    max-height: 64px;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: var(--black);
}

.coment-desp.expanded .text {
    max-height: 500px;
}

.read-more-less {
    background: none;
    border: none;
    color: #616161;
    cursor: pointer;
    padding: 5px 0;
    font-size: 14px;
}

button.read-more-less img {
    width: 16px;
    height: 16px;
    margin-left: 5px;
}

.coment-desp .text {
    font-size: 15px;
    color: #000;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.coment-desp.expanded .text {
    -webkit-line-clamp: unset;
}

p.spool-number {
    font-size: 14px;
    font-weight: 400;
    color: var(--orange-medium);
    background-color: var(--bg-light-color);
    padding: 10px;
    border-radius: 15px;
}

a.spool-page {
    color: var(--primary-color);
}

a.spool-page img {
    width: 16px;
    height: 16px;
}

.attention-table td {
    padding: 16px 20px;
    font-size: 14px;
    text-align: center;
    color: var(--black);
    /*position: relative;*/
}

.table-pro-btn {
    background: var(--primary-color);
    border-radius: 10px;
    border: 1px solid var(--primary-color);
    padding: 10px 25px;
    color: var(--white);
}

span.tbl-more-text {
    font-size: 12px;
    background: var(--bg-light-color);
    padding: 5px;
    border-radius: 8px;
    font-weight: 400;
    margin-left: 10px;
}

p.spool-number.text {
    margin-bottom: 10px;
}

a.spool-page.view {
    padding: 10px;
    border-radius: 15px;
    background: var(--bg-color);
}

.projects-grid-head-pro .progress.acc {
    width: 106px;
}

/*Dashboard css*/

/*User Management*/

td.password-open img {
    width: 16px;
    height: auto;
    margin-left: 5px;
}

p.active-user {
    color: var(--primary-color);
    padding: 10px;
    background: var(--bg-color);
    border-radius: 15px;
}

td.dot-icon-eye img.eye-btn {
    width: 25px;
}

img.drop-down-user-icon {
    width: 25px;
}

p.inactive-user {
    color: var(--orange-medium);
    padding: 10px;
    background: var(--bg-light-color);
    border-radius: 15px;
}

.user-table-bottom {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}

.pagination-user {
    display: flex;
    gap: 5px;
}

.pagination-user button {
    width: 44px;
    height: 42px;
    angle: 0 deg;
    opacity: 1;
    background: var(--white);
    gap: 10px;
    padding: 10px;
    border-radius: 38px;
    font-weight: 500;
    font-size: 13px;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    cursor: pointer;
}

button.page-1 {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pegination-text {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 500;
}

.prevnext {
    width: 60px !important;
}

.page-1 {
    background: var(--orange-medium) !important;
    color: var(--white) !important;
    border: 1px solid var(--orange-medium) !important;
}

button.pro-btn img.add-user-icon {
    text-align: center;
    margin-left: 0;
    margin-right: 6px;
}

.user-rght-btn {
    display: flex;
    gap: 10px;
}

button.date-btn img.add-user-icon {
    width: 22px;
    margin-right: 5px;
}

button.date-btn {
    border: 1px solid var(--primary-color);
    border-radius: 15px;
    padding: 10px;
    color: var(--primary-color);
    background: var(--white);
}

.user-text-head p {
    text-align: left;
    color: #616161;
    font-size: 14px;
}

.user-text-head span {
    color: var(--primary-color);
}

/*User Management*/

/*Entity Management*/
img.primary-icon.me-2 {
    width: 24px;
}

img.entity-icon {
    width: 18px;
}

button.view-btn {
    border: 1px solid var(--primary-color);
    border-radius: 15px;
    padding: 10px;
    color: var(--primary-color);
    background: var(--white);
}

/*Entity Management*/

/*Project Management*/
button.view-btn img.add-user-icon {
    width: 22px;
    margin-right: 5px;
}

td.project-entity-down button {
    border: none;
    background: var(--white);
}

td .project-cmt img {
    width: 16px;
    margin-right: 5px;
}

.project-cmt {
    padding: 10px;
    background: #bae8cb80;
    border-radius: 15px;
    color: #16a34a;
}

.progress-cmt {
    padding: 10px;
    background: #355fab0d;
    border-radius: 15px;
    color: var(--primary-color);
}

.progress-cmt img {
    width: 16px;
    margin-right: 5px;
}

.paused-cmt {
    padding: 10px;
    background: #ee77250d;
    border-radius: 15px;
    color: var(--orange-medium);
}

.paused-cmt img {
    width: 16px;
    margin-right: 5px;
}

.ready-cmt {
    padding: 10px;
    background: #355fab0d;
    border-radius: 15px;
    color: var(--primary-color);
}

.ready-cmt img {
    width: 16px;
    margin-right: 5px;
}

button.mark-btn {
    padding: 10px 20px;
    background: #355fab;
    border: 1px solid #355fab;
    border-radius: 10px;
    color: #fff;
}

.project-inner h3 {
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-color);
    text-align: left;
    margin-bottom: 15px;
}

.pused-right p {
    color: var(--black);
}

.paused-wrp {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    padding: 16px;
    background: #ee77250d;
    border-radius: 15px;
    margin-bottom: 15px;
}

.paused-wrp.resumed-wrp h1 {
    color: var(--primary-color);
}

.resumed-wrp {
    background: #355fab0d;
}

.paused-grid-head-img {
    width: 60px;
    height: 60px;
    background-color: var(--white);
    border-radius: 12px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.paused-grid-head-data {
    margin-left: 20px;
}

.paused-grid-head-data h1 {
    font-weight: 500;
    font-size: 22px;
    color: var(--orange-medium);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.paused-grid-head-data ul {
    padding: 0;
    margin: 0;
    display: flex;
    gap: 15px;
}

.paused-grid-head-data ul li img {
    width: 16px;
    height: auto;
}

.paused-grid-head-data ul li span {
    font-weight: 500;
    font-size: 14px;
    color: var(--black);
}

.paused-grid-head-data ul li {
    list-style: none;
}

.paused--body {
    display: flex;
    text-align: left;
}

img.flag-img {
    width: 14px;
    margin-right: 8px;
}

.paused-grid-head-data h1 span {
    font-size: 14px;
    color: #f31d1d;
    background: #ffdddd;
    padding: 8px 18px;
    border-radius: 15px;
    margin-left: 17px;
}

.projects-grid-head.sp-uper {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    border-radius: 24px;
    border: none;
    background-color: #fff;
    margin-bottom: 10px;
}

.projects-grid-head.sp-uper .projects-grid-head-img {
    width: 60px;
    height: 60px;
    background-color: #355fab0d;
    border-radius: 12px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.projects-grid-head.sp-uper .projects-grid-head-data {
    margin-left: 20px;
}

.dot-icon-sp {
    width: 35px;
    height: 35px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
    border: none;
    box-shadow: none;
    margin-left: 15px;
}

p.sp-overall {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 600;
}

p.sp-overall {
    font-size: 20px;
    color: var(--primary-color);
}

.projects-sp-right {
    display: flex;
    align-items: center;
    justify-content: right;
}

.sp-project-rgt {
    margin-left: auto;
    text-align: end;
}

.sp-project-rgt p.all-pro {
    color: #000;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

ul.sp-project-list {
    margin-top: 10px !important;
}

.projects-grid-head.sp-uper .projects-grid-head-data.sp h1 {
    color: var(--black);
}

.user-table-bottom.sp-bottom {
    margin-bottom: 15px;
}

.right-sp-dot-icon {
    width: 34px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* padding: 24px; */
    margin-left: 10px;
}

/*Project Management*/
.dropdown.costom-drop-down ul.dropdown-menu.show {
    border-radius: 15px;
}

/*-----------------------------------------Daman Sir Dashboard css----------------------*/
.notification-wrp {
    padding: 25px;
    border-radius: 15px;
    background: #ee77250d;
}

/* PROJECT-LIST-SECTION */

.project-list-wrp {
    width: 100%;
    height: auto;
}

.project-list-wrp .accordion-item {
    border-radius: 24px;
    border: none;
    background-color: #fff;
    margin-bottom: 10px;
}

.project-list-wrp .projects-grid-head {
    display: flex;
    align-items: center;
    padding: 10px 20px;
}

.project-list-wrp .projects-grid-head button.accordion-button {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #355fab0d;
    outline: none;
    border: none;
    box-shadow: none;
    margin-left: 15px;

    &::after {
        background-image: url(../images/project-list/arrow-down.svg);
    }
}

.projects-grid-head-img {
    width: 60px;
    height: 60px;
    background-color: #355fab0d;
    border-radius: 12px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.projects-grid-head-data {
    margin-left: 20px;
}

.projects-grid-head-data h1 {
    font-weight: 500;
    font-size: 22px;
    color: #355fab;
    margin-bottom: 10px;
}

.projects-grid-head-data ul {
    padding: 0;
    margin: 0;
    display: flex;
    gap: 15px;
}

.projects-grid-head-data ul li {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;

    &:first-child {
        border-right: 1px solid #355fab;
        padding-right: 10px;
    }
}

.projects-grid-head-data ul li img {
    width: 20px;
    height: auto;
}

.projects-grid-head-data ul li span {
    font-weight: 500;
    font-size: 14px;
    color: #355fab;
}

.projects-grid-head-data ul li span.date {
    color: #f3a066;
}

.projects-grid-head-pro {
    margin-left: auto;
    text-align: end;
}

.projects-grid-head-pro p {
    font-weight: 500;
    font-size: 14px;
    color: #000;
    margin-bottom: 8px;
}

.projects-grid-head-pro .progress {
    background: #bae8cb;
    border-radius: 20px;
    height: 12px;
    width: 180px;
    position: relative;

    &::after {
        position: absolute;
        content: "";
        background-color: #fff;
        width: 10px;
        height: 10px;
        left: 1px;
        border-radius: 50%;
        top: 1px;
        border: 2px solid #16a34a;
        z-index: 0;
    }
}

.projects-grid-head-pro .progress .progress-bar {
    background: #16a34a;
    border-radius: 20px;
    position: relative;
    z-index: 1;
    transition: none !important;

    &::before {
        position: absolute;
        content: "";
        background-color: #fff;
        width: 8px;
        height: 8px;
        right: 2px;
        border-radius: 50%;
    }
}

.projects-grid-head-pro-in {
    display: flex;
    align-items: center;
}

.projects-grid-head-pro-in span {
    font-weight: 500;
    font-size: 14px;
    margin-right: 5px;
    letter-spacing: -1px;
}

/* PROJECT-LIST-SECTION */

/* CREATE-&-EDIT-SPOOL-POPUP */

.btn-close {
    background-image: url(../images/spool-popup/close-icon.svg);
    background-size: auto;
    position: absolute;
    right: 0;
    top: -3rem;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    opacity: 1;
    border-radius: 50%;
    outline: none;
    box-shadow: none;
}

.modal-dialog {
    max-width: 830px;
    padding-top: 3rem;
}

.create-edit-spool-pop .modal-dialog {
    max-width: 830px;
    padding-top: 3rem;
}

#create-project-popup .modal-dialog {
    max-width: 665px;
    padding-top: 3rem;
}

.create-edit-spool-in {
    width: 100%;
    height: auto;
}

.create-edit-spool-in .modal-header {
    border: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
}

.create-edit-spool-in .modal-header h1 {
    font-weight: 500;
    font-size: 16px;
    color: #355fab;
    margin-bottom: 0;
}

.create-edit-spool-in .modal-header .modal-header-icon {
    width: 45px;
    height: 45px;
    background-color: #355fab0d;
    border-radius: 12px;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.create-edit-spool-in .field-grp {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.create-edit-spool-in .field-grp label.text {
    color: #355fab;
    font-weight: 400;
    font-size: 14px;
}

.create-edit-spool-in .field-grp input[type="text"] {
    height: 45px;
    background: #355fab0d;
    border: 1px solid #355fab0d;
    border-radius: 10px;
    padding: 12px;
    font-weight: 400;
    font-size: 14px;
    outline: none;
}

.create-edit-spool-in .modal-body form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.field-grp-wrp {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.create-edit-spool-in .field-grp input[type="file"] {
    width: 100%;
    height: auto;
    display: flex;
    background: #355fab0d;
    border: 1px solid #355fab0d;
    border-radius: 10px;
    padding: 6px;
    color: #616161;
    font-weight: 400;
    font-size: 14px;

    &::file-selector-button {
        background-color: #355fab0d;
        padding: 8px 15px;
        margin-right: 10px;
        color: #000;
        border: none;
        border-radius: 5px;
    }
}

.create-edit-spool-in .field-grp .tag-wrp {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.create-edit-spool-in .field-grp .tag-wrp p {
    margin: 0;
    border: 1px solid #355fab0d;
    border-radius: 10px;
    padding: 10px 12px;
    font-weight: 400;
    font-size: 14px;
    color: #000;
}

.create-edit-spool-in .field-grp select {
    height: 45px;
    appearance: none;
    background-image: url(../images/project-list/arrow-down.svg);
    background-size: 22px;
    background-position: center right 10px;
    background-repeat: no-repeat;
    background-color: #355fab0d;
    border: 1px solid #355fab0d;
    border-radius: 10px;
    padding: 12px;
    font-weight: 400;
    font-size: 14px;
    outline: none;
    color: #616161;
}

.create-edit-spool-in .field-grp .tag-wrp label.check-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #355fab0d;
    border-radius: 10px;
    padding: 10px 12px;
    font-weight: 400;
    font-size: 14px;
    color: #000;
    cursor: pointer;
}

.create-edit-spool-in .field-grp .tag-wrp label.check-tag input[type="checkbox"] {
    width: 15px;
    height: 15px;
    border: 1px solid #355fab;
    appearance: none;
    border-radius: 4px;
}

.create-edit-spool-in .field-grp .tag-wrp label.check-tag input[type="checkbox"]:checked {
    background-image: url(../images/check-mark.svg);
    background-size: 9px;
    background-repeat: no-repeat;
    background-position: center;
}

.create-edit-spool-in .field-grp .tag-wrp label.check-tag:has(input[type="checkbox"]:checked) {
    background-color: #355fab0d;
}

.stage-list {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.stage-list .stage-list-item {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
}

.stage-list .stage-list-item input[type="text"]:read-only {
    color: #355fab;
    outline: none !important;
}

.stage-list .stage-list-item input[type="text"]:focus {
    outline: auto;
    outline-color: #355fab;
}

.stage-list .stage-list-item input[type="text"] {
    width: 45px;
    text-align: center;
    background-color: #fff;
    caret-color: #ee7725;
}

.stage-list .stage-list-item .inner {
    width: 100%;
    height: 45px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #355fab0d;
    border-radius: 12px;
    padding: 0px 12px;
}

.stage-list .stage-list-item .inner p {
    margin-right: auto;
    font-weight: 400;
    font-size: 14px;
    color: #000;
}

.stage-list .stage-list-item .inner button {
    border: none;
    background: none;
}

input.pop-btn {
    width: 100%;
    height: 45px;
    background: #355fab;
    border: none;
    border-radius: 12px;
    font-weight: 400;
    font-size: 16px;
    color: #fff;
}

/* CREATE-&-EDIT-SPOOL-POPUP */

/* CREATE-&-EDIT-ENTITY-POPUP */

.create-edit-entity-pop .modal-dialog {
    max-width: 630px;
    padding-top: 3rem;
}

.col-pick {
    width: 100%;
    height: 45px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.col-pick input[type="color"] {
    width: 90px;
    height: 100%;
    padding: 10px;
    background: #355fab0d;
    border: 1px solid #355fab0d;
    border-radius: 10px;
}

.col-pick label.c-tag {
    width: 100%;
    height: 100%;
    background: #355fab0d;
    border: 1px solid #355fab0d;
    display: flex;
    align-items: center;
    padding: 15px;
    border-radius: 10px;
    font-weight: 400;
    font-size: 14px;
    color: #616161;
}

.create-edit-entity-pop .create-edit-spool-in .field-grp input[type="file"]::file-selector-button {
    background-color: #355fab;
    color: #fff;
}

/* CREATE-&-EDIT-ENTITY-POPUP */

/* PROGRESS-LIST-SECTION */

.progress-list-wrp .table-responsive {
    padding-bottom: 20px;
    padding-top: 20px;

    &::-webkit-scrollbar {
        width: 8px;
        height: 8px;
    }

    &::-webkit-scrollbar-track {
        background: #355fab0d;
    }

    &::-webkit-scrollbar-thumb {
        background-color: #355fab;
        border: none;
        border-radius: 20px;
    }
}

.progress-list-inner {
    width: max-content;
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.progress-list-stage {
    width: 300px;
    height: auto;
}

.progress-list-stage-in {
    background: #355fab0d;
    border-radius: 20px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    height: 500px;
    overflow-x: auto;

    &::-webkit-scrollbar {
        display: none;
    }
}

.progress-list-stage h2 {
    font-weight: 600;
    font-size: 18px;
    color: #355fab;
    margin-bottom: 20px;
}

.progress-list-item {
    width: 100%;
    height: auto;
    background: #ffffff;
    box-shadow: 0px 4px 30px 0px #355fab40;
    padding: 20px;
    border-radius: 12px;
}

.progress-list-item-head {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.progress-list-item-head a {
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 16px;
    color: #000;
    gap: 5px;
}

.progress-list-item-head a img {
    width: 20px;
    height: auto;
}

.progress-list-item-head span {
    padding: 5px 10px;
    border-radius: 10px;
    font-weight: 500;
    font-size: 13px;
}

span.inprogess {
    background: #ee77250d;
    color: #ee7725;
}

span.flagged {
    background: #f31d1d1a;
    color: #f31d1d;
}

span.completed {
    background: #355fab0d;
    color: #355fab;
}

.progress-list-item p {
    font-weight: 400;
    font-size: 14px;
    color: #616161;
    margin-bottom: 8px;
    text-align: left;
}

.progress-list-item p.pro-name {
    color: #355fab;
}

.progress-list-item .projects-grid-head-pro {
    margin-top: 15px;
}

.progress-list-item .projects-grid-head-pro .projects-grid-head-pro-in {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.progress-list-item .projects-grid-head-pro .progress {
    width: 100%;
}

.progress-list-item .projects-grid-head-pro .projects-grid-head-pro-in .bottom-pro-data {
    width: 100%;
    display: flex;
    justify-content: space-between;

    & span {
        letter-spacing: normal;
        font-weight: 500;
        font-size: 13px;
        color: #355fab;
    }
}

/* PROGRESS-LIST-SECTION */

/* ARCHIVE-POPUP */

.modal-content {
    border-radius: 30px;
}

.archive-project-pop .modal-dialog {
    max-width: 500px;
}

.archive-project-in {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
}

.archive-project-in .icon {
    width: 100px;
    height: 100px;
    background-color: #355fab0d;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px;
}

.archive-project-in h2 {
    font-weight: 500;
    font-size: 30px;
    color: #355fab;
}

.archive-project-in p {
    font-weight: 500;
    font-size: 16px;
    color: #616161;
    margin-bottom: 15px;
}

.archive-project-in .cta-grp {
    display: flex;
    align-items: center;
    gap: 15px;
}

.archive-project-in .cta-grp button {
    font-weight: 400;
    font-size: 14px;
    padding: 10px;
    border-radius: 10px;
    border: none;
    color: #616161;
    background-color: transparent;
}

.archive-project-in .cta-grp button.active {
    padding: 10px 40px;
    background-color: #355fab;
    color: #fff;
}

/* ARCHIVE-POPUP */

/* RESOLVE-FLAGGED-ISSUE-POPUP */

#resolve-flagged-popup .modal-dialog {
    max-width: 580px;
}

#resolve-flagged-popup .modal-body {
    padding: 1rem 3rem;
    text-align: center;
}

#resolve-flagged-popup .archive-project-in .icon {
    background-color: #ee77250d;
}

#resolve-flagged-popup .archive-project-in textarea {
    width: 100%;
    height: 150px;
    border-radius: 15px;
    padding: 12px;
    font-weight: 400;
    font-size: 14px;
    color: #355fab;
    background-color: #355fab0d;
    border: 1px solid #355fab;
    outline: none;
}

/* RESOLVE-FLAGGED-ISSUE-POPUP */

.noti-stage-item {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 20px 20px;
    background-color: #fff;
    border-radius: 10px;
    border-left: 3px solid #355fab;
    margin-bottom: 25px;

    &.flagged {
        border-left: 3px solid #ee7725;
    }

    &.flagged .stage-name-time h2 {
        color: #ee7725;
    }
}

.stage-name-time {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.stage-name-time h2 {
    font-weight: 500;
    font-size: 18px;
    color: #355fab;
    margin: 0;
}

.stage-name-time p {
    font-weight: 400;
    font-size: 13px;
    color: #ee7725;
}

.stage-details {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.stage-details ul {
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
}

.stage-details ul li {
    display: flex;
    align-items: center;
    gap: 6px;

    &:nth-child(1) {
        border-right: 1px solid #355fab;
        padding-right: 10px;
    }

    &:nth-child(3) {
        border-right: 1px solid #355fab;
        padding-right: 10px;
    }
}

.stage-details ul li img {
    width: 20px;
}

.stage-details ul li span {
    font-weight: 500;
    font-size: 14px;
    color: #355fab;
}

a.detail-cta {
    display: flex;
    align-items: center;
    background-color: #355fab;
    color: #fff;
    font-weight: 400;
    font-size: 14px;
    padding: 12px 15px;
    border-radius: 10px;
    gap: 10px;
}

a.detail-cta img {
    width: 20px;
    filter: brightness(0) invert(1);
}

/*Daman Sir Dashboard css*/

/* paras */
td.dot-icon-eye .dropdown a.dropdown-item {
    background: #fff;
    color: var(--primary-color);
}

.create-edit-spool-in .field-grp input[type="password"] {
    height: 45px;
    width: 100%;
    background: #355fab0d;
    border: 1px solid #355fab0d;
    border-radius: 10px;
    padding: 12px;
    font-weight: 400;
    font-size: 14px;
    outline: none;
}

.generate-btn {
    display: flex;
    gap: 10px;
}

button.user-generate {
    background: var(--primary-color);
    padding: 10px 60px;
    border-radius: 15px;
    border: 1px solid var(--primary-color);
    color: var(--white);
}

.select-entity-text span img {
    width: 22px;
}

.select-entity-text span {
    padding: 10px;
    background: #1065ff0d;
    border-radius: 10px;
    color: var(--primary-color);
}

.select-entity-text {
    display: flex;
    gap: 10px;
}

.report-inner {
    display: flex;
    gap: 15px;
}

.report-manage-card .dropdown.costom-drop-down.report {
    margin-top: 15px;
}

.report-manage-card {
    padding: 20px;
    background: #1065ff0d;
    border-radius: 15px;
}

.dropdown.costom-drop-down.report .btn-header-drop {
    background-color: var(--primary-color);
}

.dropdown.costom-drop-down.report .btn-header-drop span {
    color: var(--white);
}

.dropdown.costom-drop-down.report .btn-header-drop img {
    width: 16px;
}

.tbl-more-text.dropdown-toggle::after {
    display: none !important;
}

/* dropdown card */
.stages-dropdown {
    width: 260px;
    border-radius: 14px;
    border: 1px solid #b6c6ff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    z-index: 1;
}

/* title */
.stages-title {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* list */
.stages-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.stages-list li {
    background: #1065ff0d;
    padding: 8px 10px;
    border-radius: 8px;
    font-size: 13px;
    color: var(--primary-color);
    margin-bottom: 6px;
}

.calender-date-input {
    width: 100%;
    padding: 10px 40px 10px 12px;
    background-image: url("../images/caender-icon.svg");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 18px;
}

.field-grp-date input.calender-date-input {
    height: 45px;
    background-color: #1065ff0d;
    border: 1px solid #355fab0d;
    border-radius: 10px;
    padding: 12px;
    font-weight: 400;
    font-size: 14px;
    outline: none;
}

/* paras */

.date-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border: 1px solid var(--primary-color);
    border-radius: 15px;
    cursor: pointer;
}

.date-btn input {
    border: none;
    outline: none;
    background: transparent;
    width: 100px;
}

.date-btn input::placeholder {
    color: var(--primary-color);
}

button.cancelBtn.btn.btn-sm.btn-default {
    color: #616161;
}

button.applyBtn.btn.btn-sm.btn-primary {
    background-color: var(--primary-color);
}

td.today.active.start-date.active.end-date.available {
    background-color: var(--primary-color);
}

.drp-buttons {
    border-top: none !important;
}

.daterangepicker .calendar-table th {
    color: var(--primary-color);
}

td.available {
    color: var(--primary-color);
}

.log-in-logo {
    display: flex;
    background-color: var(--white);
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    padding: 20px;
}

.log-in-logo img {
    width: 100px;
    margin: auto;
}

.log-in-inner-wrp {
    padding: 0px 80px 40px 80px;
}

.credit-wrp {
    display: flex;
    gap: 15px;
}

.dash-score-board.avg {
    background: #1065FF0D;
}

.dash-score-board.avg h2 {
    color: #355FAB;
}

img.search-img {
    width: 16px;
}

.field-grp.search a.search {
    position: absolute;
    top: 10px;
    left: 15px;
}

.field-grp.search {
    position: relative;
}

.field-grp.search input[type="text"] {
    padding-left: 45px;
}

.text-search p.frist-para {
    color: var(--primary-color);
}

.text-search p {
    font-size: 14px;
    font-weight: 500;
    text-align: left;
    color: #374151;
    padding-left: 10px;
}

.text-search {
    padding: 10px 10px 10px 20px;
}

.text-search p.frist-para {
    color: var(--primary-color);
    background: #1065FF0D;
    padding: 10px;
    border-radius: 15px;
}

.progress-custom .progress {
    background: #bae8cb;
    border-radius: 20px;
    height: 12px;
    width: 100%;
    position: relative;
}

.progress-custom .progress .progress-bar {
    background: #16a34a;
    border-radius: 20px;
    position: relative;
    z-index: 1;
    transition: none !important;
}

.progress-custom .progress {
    &::after {
        position: absolute;
        content: "";
        background-color: #fff;
        width: 10px;
        height: 10px;
        left: 1px;
        border-radius: 50%;
        top: 1px;
        border: 2px solid #16a34a;
        z-index: 0;
    }
}

.progress-custom .progress .progress-bar {
    &::before {
        position: absolute;
        content: "";
        background-color: #fff;
        width: 8px;
        height: 8px;
        right: 2px;
        border-radius: 50%;
    }
}

.progress-custom p img {
    width: 22px;
    margin-right: 10px;
}

.progress-custom p span {
    color: var(--primary-color);
}

.progress-custom p {
    display: flex;
    padding: 10px;
}

/* .modal-backdrop {
    z-index: 9910;
}
 .modal {
    z-index: 9999;
} */
.daterangepicker {
    z-index: 99 !important;
}

.new-field-grp {
    display: flex;
    gap: 10px;
}

.stage-inner {
    display: flex;
    flex-direction: column;
    width: auto;
    gap: 10px;
}

.coment-desp p.text {
    font-weight: 400;
    font-size: 15px;
    color: var(--black);
}



.coment-desp {
    font-size: 15px;
    color: #000;
}

.coment-desp .text {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* expanded */
.coment-desp.expanded .text {
    display: block;
}

.read-more-less {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
}

.read-more-less img {
    width: 14px;
}

p.text-logo {
    display: none;
}

.sidebar.collapsed .text-logo {
    display: block;
}

.sidebar.collapsed .text-logo {
    display: block;
    margin-left: 9px;
    width: 40px;
}

.coment-desp {
    max-width: 600px;
    position: relative;
    font-size: 14px;
    line-height: 1.6;
}

.comment-text {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.coment-desp.expanded .comment-text {
    -webkit-line-clamp: unset;
}

.read-more {
    position: absolute;
    right: 0;
    bottom: 0;
    background: #fff;
    padding-left: 1px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 400;
    color: #616161;
    cursor: pointer;
    white-space: nowrap;
}

.read-more img {
    width: 14px;
}

.coment-desp.expanded .read-more {
    position: static;
    margin-top: 6px;
}

.coment-desp.expanded .read-more img {
    display: none;
}

p.comment-text {
    color: #000;
}

.comment-text {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.icon.logout {
    background: #EE772533;
    width: 80px;
    height: 80px;
}

.icon.logout img {
    width: 37px;
}

#logout-popup .modal-dialog {
    max-width: 400px;
}

.dropdown-item.active,
.dropdown-item:active {
    color: #355FAB;
    text-decoration: none;
    background-color: #1065FF0D;
}

.pagination-user button {
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-close:hover {
    color: #000;
    text-decoration: none;
    opacity: 1;
}

a.detail-pg {
    color: var(--primary-color);
}

.field-grp-date label.text {
    color: #355fab;
    font-weight: 400;
    font-size: 14px;
}

.report-manage-card h3 {
    font-size: 24px;
    font-weight: 600;
}

.report-inner span#selectedEntityText {
    padding-right: 50px;
}

.report-inner .dropdown.costom-drop-down button#dropdownMenuButton1 {
    background: #1065FF0D;
}

#resolve-flagged-popup .archive-project-in h2 {
    font-weight: 500;
    font-size: 30px;
    color: var(--black);
}

.user-table-bottom div {
    display: flex;
    justify-content: center;
    align-items: center;
}

p.logo-text img {
    width: 219px;
}

.pass-box {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.pass-box img {
    width: 20px;
    cursor: pointer;
}

.pass-box input {
    border: none;
    outline: none;
    background: transparent;
    width: 70px;
}

.password-eye {
    position: absolute;
    width: 20px;
    height: 20px;
    display: flex;
    top: auto;
    right: 15px;
    border: none;
    align-items: center;
    background: none;
    justify-content: center;
    cursor: pointer;
    transition: 0.5s;
}

.password-eye .eye-close {
    background-image: url(../images/eye-open.svg);
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px;
}

.password-eye .eye-open {
    background-image: url(../images/eye-close.svg);
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px;
}

.input-grp.pass {
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
}

.edit-color {
    color: #355fab;
}

.archive-color {
    color: #EE7725 !important;
}

.dropdown-menu {
    z-index: 99;
}

.log-in-logo {
    background-color: var(--primary-light-color) !important;
}

.log-in-logo img {
    width: 216px;
    margin: auto;
}




/* shubham */
/* drag and drop css  */
.dragging {
    opacity: 0.6;
    background-color: #f0f0f0;
}

.stage-list-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
}

.stage-list-item .inner {
    flex-grow: 1;
}

.stage-list-item button {
    cursor: grab;
    border: none;
    background: transparent;
}



/* TUSHAR CODE  */
/* ✅ Selected Entities Box (clean + wrap) */
#selectedEntitiesBox {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    /* max-width: 100%; */
    /* padding-top: 6px; */
}

/* ✅ Selected Chip */
#selectedEntitiesBox span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px;
    border-radius: 10px;
    background: #eef4ff;
    border: 1px solid #d7e6ff;
    /* font-size: 13px; */
    line-height: 1;
    color: #2b4c7e;
}

/* ✅ Selected Entities Box (clean + wrap) */
#editSelectedEntitiesBox {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    /* max-width: 100%; */
    /* padding-top: 6px; */
}

/* ✅ Selected Chip */
#editSelectedEntitiesBox span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px;
    border-radius: 10px;
    background: #eef4ff;
    border: 1px solid #d7e6ff;
    /* font-size: 13px; */
    line-height: 1;
    color: #2b4c7e;
}

tr.p-r-history-dropdown {
    display: none;
}

.log-in-inner-wrp {
    background-color: var(--primary-light-color) !important;
}

.input-grp input,
input:hover,
input:focus,
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
    background-color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    transition: background-color 5000s ease-in-out 0s;
}

input#userDateFilter {
    color: var(--primary-color);
}


.weight-input .input-wrapper {
    position: relative;
}

.weight-input input {
    width: 100%;
    padding-right: 120px;
    /* toggle ke liye space */
    height: 45px;
}

.unit-toggle {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
}

/* switch */
.switch {
    position: relative;
    width: 36px;
    height: 18px;
}

.switch input {
    display: none;
}

.slider {
    position: absolute;
    inset: 0;
    background: #ccc;
    border-radius: 20px;
    cursor: pointer;
}

.slider::before {
    content: "";
    position: absolute;
    height: 14px;
    width: 14px;
    left: 2px;
    top: 2px;
    background: #fff;
    border-radius: 50%;
    transition: 0.3s;
}

.switch input:checked+.slider {
    background: #0d6efd;
}

.switch input:checked+.slider::before {
    transform: translateX(18px);
}

.unit {
    opacity: 0.5;
}

.unit.active {
    opacity: 1;
    font-weight: 600;
}

.user-text-head img {
    width: 25px;
    height: 25px;
}

.switch input:checked+.slider {
    background: #cccccc !important;
}

.notification-bell {
    display: inline-block;
}

.notification-count {
    position: absolute;
    top: -6px;
    right: -8px;
    background: #EE7725;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    padding: 3px 6px;
    border-radius: 50px;
    line-height: 1;
    min-width: 18px;
    text-align: center;
}