@import url("https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --primary-color: #ed2227;
  --white: #ffffff;
  --black: #000000;
  --primary-font: "Urbanist", sans-serif;
  --text-color: #1b2128;

  /* CALENDAR */

  --bg: #111111;
  --surface: #1a1a1a;
  --border: #2a2a2a;
  --header-bg: #0d0d0d;
  --text-primary: #f0f0f0;
  --text-muted: #888;
  --text-dim: #555;
  --today-accent: #e74c4c;
  --event-green-bg: #1e3a2f;
  --event-green-text: #5dba87;
  --event-green-border: #2d5a43;
  --event-orange-bg: #3a2a1a;
  --event-orange-text: #e8935a;
  --event-orange-border: #5a3e25;
  --event-red-bg: #3a1e1e;
  --event-red-text: #e85a5a;
  --event-red-border: #5a2d2d;
  --event-blue-bg: #1a2a3a;
  --event-blue-text: #5a9ee8;
  --event-blue-border: #2d4a6a;
  --event-yellow-bg: #2e2a10;
  --event-yellow-text: #d4b84a;
  --event-yellow-border: #4a3e18;
  /* CALENDAR */
}

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

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

  &::-webkit-scrollbar-track {
    background: #bbbbbb;
  }

  &::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 20px;
  }
}

/* Default scrollbar hidden */
.progress-wrapper.large {
  overflow: auto;
  scrollbar-width: none; /* Firefox */
}

/* Chrome, Edge, Safari */
.progress-wrapper.large::-webkit-scrollbar {
  width: 0;
  height: 0;
}

/* Show scrollbar on hover */
.progress-wrapper.large:hover {
  scrollbar-width: thin; /* Firefox */
  scrollbar-color: var(--primary-color) #bbbbbb;
}

.progress-wrapper.large:hover::-webkit-scrollbar {
  width: 10px;
  height: 8px;
}

.progress-wrapper.large:hover::-webkit-scrollbar-track {
  background: #bbbbbb;
}

.progress-wrapper.large:hover::-webkit-scrollbar-thumb {
  background-color: var(--primary-color);
  border-radius: 20px;
}

body {
  padding: 0px;
  margin: 0px;
  font-family: var(--primary-font);
  background: #f1f1f1;
}

a {
  text-decoration: none !important;
  outline: none !important;
}

img {
  border: none;
}

p:last-child {
  margin-bottom: 0;
}

/* TABLE-PAGES */

.influ-wrap {
  width: 100%;
  height: auto;
}

.influ-strip {
  background: linear-gradient(
    -90deg,
    rgba(172, 117, 47, 1) 0%,
    rgba(253, 210, 155, 1) 200%
  );
  display: flex;
  align-items: center;
}

.influ-logo {
  width: 229px;
  background: #000;
  padding: 10px 0px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.influ-logo img {
  width: 40px;
  margin-right: 8px;
}

.influ-logo a {
  font-size: 25px;
  color: #b07d3c;
  font-weight: 500;
  display: flex;
  align-items: center;
}

.influ-strip form {
  width: auto;
}

.menu-btn {
  background: none;
  border: none;
  color: var(--white);
  font-size: 26px;
  margin-left: 15px;
}

.menu-btn:hover {
  color: var() !important;
}

.influ-in {
  width: 100%;
  height: auto;
  background: var(--white);
}

.journal-ledger-wrap {
  padding: 15px;
  height: 100%;
  box-shadow: 0px 1px 3px 1px #00000029;
  background: var(--white);
  border-radius: 10px;
}

#content main.journal-ledger-page {
  height: calc(100vh - 60px);
}

#sidebar form .influ-search label {
  border-radius: 10px;
  background-color: #f9fafb;
  height: 45px;
}

#sidebar form .influ-search label input {
  border-radius: 10px;
  background-color: #f9fafb;
  color: #000;
  background-image: url(../images/search-icon.svg);
  background-size: 22px;
  background-repeat: no-repeat;
  background-position: center left 10px;
  padding-left: 40px;

  &::placeholder {
    color: #9ca3af;
  }
}

.influ-search label {
  width: 100%;
  height: 40px;
  margin-bottom: 0 !important;
  display: inline-flex;
  background: var(--white);
  align-items: stretch;
  border-radius: 20px;
  border: 1px solid #4a43ec;
}

.influ-search label input {
  width: 100%;
  height: auto;
  position: relative;
  background: var(--white);
  border: none;
  color: var(--black);
  padding: 0px 10px 0px 15px;
  font-size: 14px;
  font-weight: 500;
  outline: none;
  border-radius: 30px;
}

.admin-icon {
  height: 100%;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 16px;
  color: var(--black);
}

.admin-icon img {
  width: 40px;
  border-radius: 50%;
  margin-right: 10px;
}

.notification {
  margin-left: auto;
  border-right: 1px solid #e2e8f0;
  padding-right: 15px;
}

.notification-btn {
  background-color: #e4e4e4;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: none;
  position: relative;

  img {
    width: 25px;
  }

  &::after {
    display: none;
  }
}

.top-head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-head-in {
  width: auto;
  height: auto;
}

.top-head-in h1 {
  font-weight: 600;
  font-size: 22px;
  color: var(--text-color);
  margin-bottom: 0;
}

.top-head-in p {
  font-weight: 400;
  font-size: 16px;
  color: #959595;
  margin-bottom: 8px;

  a {
    font-weight: 600;
    color: #959595;
  }
}

.top-head-filter {
  width: auto;
  display: flex;
  gap: 15px;
  align-items: center;
}

.filter-select {
  height: 40px;
  padding: 0px 40px 0px 12px;
  box-shadow: 2px 2px 6px 0px #bfbfbf26;
  border: 1px solid #e4e4e4;
  border-radius: 8px;
  appearance: none;
  cursor: pointer;
  background: url(../images/dropdown-icon.svg) no-repeat right 15px center;
  background-color: var(--white);
  outline: none;
  font-weight: 500;
  font-size: 16px;
}
.filter-select.open {
  background-image: url("../images/Vector.svg");
  background-size: auto 7px;
}
.filter-btn,
.primary-btn {
  padding: 15px 20px;
  border: none;
  border-radius: 8px;
  background: var(--primary-color);
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  height: 40px;
  border: 1px solid #e4e4e4;
}
.filter-secondary-btn {
  height: 40px;
  padding: 15px 20px;
  box-shadow: 2px 2px 6px 0px #bfbfbf26;
  border: none;
  border-radius: 8px;
  appearance: none;
  cursor: pointer;
  background-color: var(--white);
  border: 1px solid #e4e4e4;
  outline: none;
  font-weight: 500;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dashboard-innr {
  margin-top: 20px;
  background-color: var(--white);
  border-radius: 10px;
  padding: 20px;
}

.dashboard-card-wrp {
  width: 100%;
}

.innr-heading {
  font-weight: 600;
  font-size: 18px;
  color: var(--text-color);
  margin-bottom: 12px;
  border-bottom: 1px solid #f3f3f3;
  padding-bottom: 10px;
}

.dashboard-card-wrap {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.dashboard-card-in {
  width: 100%;
  height: auto;
  background: var(--white);
  box-shadow: 0px 4px 8.6px 0px #20202029;
  padding: 15px;
  border-radius: 12px;
}

.dashboard-card-in-top {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
}

.dashboard-card-in-text {
  width: 100%;
}

.dashboard-card-in-text h4 {
  font-weight: 600;
  font-size: 32px;
  margin-bottom: 5px;
  color: var(--text-color);
}

.dashboard-card-in-text p {
  font-weight: 500;
  font-size: 16px;
  color: #7d7d7d;
}

.dashboard-card-in-top img {
  width: 35px;
  height: auto;
}

.dashboard-card-in-info {
  width: auto;
}

.dashboard-card-in-info p {
  color: #00000059;
  font-weight: 500;
  font-size: 14px;
}

.dashboard-card-in-info p span {
  color: #27ae60;
  margin-right: 2px;
}

.dashboard-card-in-info p span i {
  transform: rotate(45deg);
  margin-right: 2px;
}

.performance-grid-wrp {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.performance-in-card {
  width: 100%;
  background: #f3f3f3;
  box-shadow: 0px 4px 3px 0px #0000000d;
  padding: 15px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
}

.performance-in-card h4 {
  font-weight: 500;
  font-size: 16px;
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e4e4e4;
  margin-bottom: 12px;
  padding-bottom: 10px;
}

.performance-in-card h4 a {
  font-weight: 500;
  font-size: 14px;
  color: var(--primary-color);
}

.performance-in-card h4 a i {
  transform: rotate(45deg);
  margin-right: 2px;
  font-size: 12px;
}

.performance-in-card ul {
  padding: 0;
  margin: 0;
}

.performance-in-card ul li {
  list-style: none;
  font-weight: 500;
  font-size: 14px;
  color: #7d7d7d;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;

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

.performance-in-card ul li span {
  color: var(--black);
}

.notification .dropdown-menu {
  padding: 0;
  border: none;
}

.notification-btn span.dot {
  position: absolute;
  width: 8px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--primary-color);
  right: 15px;
  top: 10px;
}

.notification-dropdown {
  width: 600px;
}

.notification-dropdown-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
  background-color: var(--black);
}

.notification-dropdown-header h4 {
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  margin-bottom: 0;
  line-height: 22px;
}

.notification-dropdown-header h4 span {
  font-weight: 400;
}

.notification-dropdown-header button.btn-close {
  filter: invert(1);
  opacity: 1;
  background-size: 14px;
}

.notification-dropdown-body {
  height: auto;
  max-height: 400px;
  padding: 15px;
  padding-bottom: 0;
  overflow-y: auto;
}

.notification-dropdown-body-itm {
  background: #f1f1f1;
  margin-bottom: 12px;
  padding: 15px;
  border-radius: 12px;
  border-left: 2px solid var(--black);
  display: flex;
  gap: 15px;
  align-items: flex-start;
  justify-content: space-between;

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

  &.blue {
    border-left-color: #1a56db;
    background-color: #f0f9ff;

    & .notification-dropdown-body-btn {
      background-color: #1a56db;
    }
  }

  &.red {
    border-left-color: #e0060a;
    background-color: #e0060a0d;

    & .notification-dropdown-body-btn {
      background-color: #e0060a;
    }
  }

  &.yellow {
    border-left-color: #ff9300;
    background-color: #fff6e8;

    & .notification-dropdown-body-btn {
      background-color: #ff9300;
    }
  }

  &.gray {
    border-left-color: #686868;
    background-color: #f1f1f1;

    & .notification-dropdown-body-btn {
      background-color: #686868;
    }
  }

  &.green {
    border-left-color: #10b981;
    background-color: #d1fae580;

    & .notification-dropdown-body-btn {
      background-color: #10b981;
    }
  }
}

.notification-dropdown-body-txt h3 {
  font-weight: 600;
  font-size: 16px;
  color: var(--black);
}

.notification-dropdown-body-txt p {
  font-weight: 500;
  font-size: 14px;
  color: var(--black);
}

.notification-dropdown-body-txt span {
  font-weight: 400;
  font-size: 14px;
  color: var(--text-color);
}

.notification-dropdown-body-btn {
  background: var(--black);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 16px;
}

.notification-dropdown-footer {
  padding: 25px 15px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.notification-dropdown-footer .primary-btn {
  padding: 12px 20px;
}

.notification-dropdown-footer button {
  border: 1px solid #61616180;
  background-color: #fff;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  color: #61616180;
}

/* DASHBOARD-PAGE */

/* ALERTS-PAGE */

.alert-page {
  margin-top: 20px;
  background-color: var(--white);
  border-radius: 10px;
  padding: 20px;
}

.alert-page-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.alert-page-top .head-src i {
  color: #959595;
}

.alert-page-top .head-src input[type="text"] {
  border: 1.4px solid #e4e4e4;
  background-color: var(--white);
  font-weight: 500;

  &::placeholder {
    color: #959595;
  }
}

.alert-page-top select.filter-select {
  border: 1px solid #e2e8f0;
  color: #4d515a;
}

.alert-page-inner {
  margin-top: 20px;
}

.alert-page-inner .notification-dropdown-body {
  padding: 0;
  max-height: fit-content;
}

/* ALERTS-PAGE */

/* UPLOAD-DESIGN-POPUP */

.upload-design-wrp {
  padding: 16px;
}

.input-field {
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 100%;
}

.upload-design-wrp .input-field label {
  font-weight: 500;
  font-size: 16px;
  color: var(--black);
  margin-bottom: 10px;
}

.upload-design-wrp .input-field input.form-control {
  background-color: #a6a6a60d;
  border: 1px solid #a6a6a633;
  height: 40px;
  font-weight: 400;
  font-size: 14px;
  color: var(--black);
  box-shadow: none;
}

.input-field input[type="number"]::-webkit-inner-spin-button,
.input-field input[type="number"]::-webkit-outer-spin-button {
  opacity: 1;
  cursor: pointer;
}

.iteration-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e9e9e9;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.iteration-in h3 {
  margin-bottom: 0;
  font-weight: 500;
  font-size: 16px;
  color: var(--black);
}

.other-details {
  margin-top: 15px;
}

.upload-design-wrp .input-field .form-control-select {
  background-color: #a6a6a60d;
  border: 1px solid #a6a6a633;
  height: 40px;
  font-weight: 400;
  font-size: 14px;
  color: var(--black);
  box-shadow: none;
  padding-left: 10px;
  cursor: pointer;
  outline: none;
  box-shadow: none;
  appearance: none;
  background: url(../images/dropdown-icon.svg) no-repeat right 15px center;
}

.input-field-grp {
  display: flex;
  width: 100%;
  gap: 15px;
}

.form-btn-grp {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
}

.outline-btn {
  border: 1px solid #61616180;
  background-color: #fff;
  height: 40px;
  padding: 0px 20px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  color: #61616180;
}

.iteration-wrp .accordion .accordion-item {
  margin-bottom: 15px;
  border: 1px solid #a6a6a633;
}

.iteration-wrp .accordion .accordion-item button.accordion-button {
  padding: 0px 10px;
  height: 40px;
  background-color: #a6a6a60d;
  border: 0;
  box-shadow: none;
}

/* UPLOAD-DESIGN-POPUP */

/* Paras */

/* Team Management */
.team-page-inner {
  margin-top: 20px;
}
.user-table-wrapper-1 {
  background: #fff;
  border-radius: 14px;
  padding: 0;
  border: 1px solid #e4e4e4;
  overflow-x: auto;
}
.user-table {
  width: max-content;
  min-width: 100%;
  border-collapse: collapse;
}
.user-table thead {
  color: var(--white);
  font-size: 14px;
}
.user-table-wrapper-1 table tr th:first-child {
  border-top-left-radius: 15px;
}
.user-table th {
  padding: 16px 20px;
  font-size: 14px;
  text-align: start;
  font-weight: 600;
  color: #000;
  border-bottom: 1px solid #e4e4e4;
}
.user-table td {
  padding: 16px 20px;
  font-size: 14px;
  text-align: start;
  color: #1b2128;
  font-weight: 400;
  border-bottom: 1px solid #e4e4e4;
  border-right: 1px solid #e4e4e4;
}
.team-page-inner h3 {
  font-weight: 600;
  font-size: 24px;
  color: #1e293b;
  margin-bottom: 7px;
}
.text-progress-inner .progress-bar {
  background: #10b981;
  width: 100%;
}
.text-progress-inner .progress {
  height: 10px;
  margin-bottom: 5px;
}
.container-etd-wrp-full {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px;
  background: #fafafa;
  border: 1px solid #ededed;
  border-radius: 10px;
}
.user-table-wrapper-1 table tr th:last-child {
  border-top-right-radius: 15px;
}
.user-table th:not(:first-child),
.user-table td:not(:first-child) {
  text-align: center;
}
table.user-table h4.mail {
  font-size: 14px;
  font-weight: 600;
  color: #1b2128;
}
table.user-table p.number {
  font-size: 14px;
  font-weight: 400;
  color: #959595;
}
table.user-table .status {
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 500;
  border-radius: 20px;
}
table.user-table .status.active {
  background: #d1fae580;
  color: #059691;
}
table.user-table span.status.inactive {
  color: #ed2227;
  background-color: #e0060a1a;
}
.team-page-inner .user-table-bottom {
  margin-top: 15px;
  display: flex;
  justify-self: center;
}
.team-page-inner .pagination-user button {
  width: 32px;
  height: 32px;
  background: #fff;
  gap: 10px;
  padding: 10px;
  border-radius: 7px;
  font-weight: 500;
  font-size: 13px;
  color: #1b2128;
  border: 1px solid #fff;
  cursor: pointer;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
}
.team-page-inner .user-table-bottom .pagination-user {
  display: flex;
  gap: 5px;
}
.team-page-inner button.page-1 {
  border: 2.5px solid #e4e4e4;
  background-color: #f1f1f1;
}
.user-table-wrapper-1 tr.border-tbl {
  background-color: #f3f3f3;
}
#newMember .modal-dialog {
  max-width: 730px;
}
#editnewMember .modal-dialog {
  max-width: 730px;
}

.member-form-wrapper .form-container {
  /* width: 700px; */
  background: #fff;
  padding: 25px;
  border-radius: 6px;
}

.member-form-wrapper .form-row {
  display: flex;
  gap: 20px;
  /* margin-bottom: 15px; */
}

.member-form-wrapper .form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.member-form-wrapper label {
  font-size: 14px;
  margin-bottom: 5px;
  font-weight: 400;
  color: #000000;
}

.member-form-wrapper label span {
  color: #ed2227;
}

.member-form-wrapper input,
.member-form-wrapper select {
  padding: 10px;
  background-color: #a6a6a60d;
  border: 1px solid #a6a6a633;
  color: #000;
  font-weight: 500;
  border-radius: 4px;
  font-size: 14px;
  outline: none;
}
.form-container select {
  color: #999;
}
.member-form-wrapper input::placeholder {
  color: #999;
}
.new-member-form .actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}
.new-member-form .actions button.btn.btn-outline {
  border: 1px solid #61616180;
  color: #61616180;
  padding: 4px 10px;
}
/* Team Management */

/* Ticket Management */
.issue-logged {
  display: flex;
  align-items: center;
  background: #f3f3f3;
  justify-content: space-between;
  padding: 10px;
  border-radius: 15px;
}

.issue-logged p {
  font-size: 12px;
  font-weight: 600;
  color: #3b424a;
  margin-bottom: 0;
  text-align: left;
}
.issue-logged p span {
  color: #7d7d7d;
  font-size: 10px;
  font-weight: 600;
}

.more-text {
  display: none;
}

.read-more-container {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.btn {
  border: none;
  background: none;
  color: #ed2227;
  cursor: pointer;
  padding: 0;
}
.icon {
  transition: transform 0.3s ease;
}

.icon.rotate {
  transform: rotate(180deg);
}
.read-more-container button.read-more.btn:hover {
  color: #ed2227;
}
.iye-edit-ticket {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
span.read-text-tbl {
  color: #000;
}
span.status.close {
  color: #ed2227;
  background: #e0060a1a;
}
.new-member-form .actions button.btn.btn-danger {
  padding: 4px 10px;
  background: var(--primary-color);
  color: var(--white);
}
.member-form-wrapper .form-group textarea {
  height: 85px;
  border: 1px solid #a6a6a633;
  border-radius: 15px;
  background: #a6a6a60d;
  outline: none;
  padding: 10px;
}
.member-form-wrapper .form-group input[type="file"]::file-selector-button {
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 6px 12px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 400;
}
.member-form-wrapper .form-group {
  margin-bottom: 15px;
}
/* Ticket Management */

/* Warehouse */
.warehouse-head .nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: var(--black);
  background-color: var(--white);
  border-bottom: 1px solid black;
  border-radius: 0;
  font-size: 16px;
  font-weight: 500;
}
.warehouse-head .nav-link {
  color: var(--black);
  font-size: 16px;
  font-weight: 500;
}
span.arri {
  display: flex;
  justify-content: center;
  gap: 10px;
  color: #1b212833;
}
span.arri.clr {
  color: #1b2128;
  font-size: 14px;
  font-weight: 500;
}
span.status.arrived {
  color: #059691;
  background: #d1fae5;
}
span.status.pending {
  color: #e08506;
  background: #e0850633;
}
span.status.transit {
  color: #052296;
  background: #d1dbfa;
}

.upload-box {
  border: 2px dashed #64748b;
  padding: 20px 30px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 12px;
  cursor: pointer;
  color: #64748b;
  font-size: 12px;
  width: 170px;
}

.upload-box:hover {
  background-color: #f3f3f3;
}

/* Hide actual file input */
.upload-box input {
  display: none;
}
.upload-sheet {
  background: #ffffff;
  padding: 10px;
  border-radius: 15px;
}
.upload-sheet {
  background: #ffffff;
  padding: 20px 30px;
  border-radius: 15px;
  display: flex;
  gap: 10px;
  justify-content: center;
  width: fit-content;
  align-items: center;
  width: 170px;
}
.upload-sheet p {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 0;
}
.upload-sheet p span {
  color: #7d7d7d;
  font-size: 12px;
  font-weight: 600;
  display: flex;
}
.upload-wrp {
  display: flex;
  justify-content: center;
}

th.check-box-tbl .form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}
th.check-box-tbl input#flexCheckDefault {
  box-shadow: none;
}
td.check-box-tbl .form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}
td.check-box-tbl input#flexCheckDefault {
  box-shadow: none;
}
span.status.risk {
  color: #5d5fef;
  background: #e0e7ff;
}
span.status.safe {
  color: #059691;
  background: #d1fae5;
}
span.status.high-risk {
  color: #e0060a;
  background: #e0060a1a;
}
span.status.budget {
  color: #e07706;
  background: #fef3c780;
}
span.status.lead {
  color: #000000;
  background: #e4e4e4;
}
span.status.attempted {
  color: #178dcc;
  background: #e0f2fe;
}
span.status.conversation {
  color: #059691;
  background: #d1fae580;
}
.user-table-wrapper-1 table.user-table button.dot-icon {
  border: none;
  background: none;
}
.dot-icon {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
}
button.dot-icon i.fa-solid.fa-ellipsis-vertical {
  color: #959595;
  font-size: 17px;
}
.custom-menu {
  border-radius: 15px;
  padding: 10px;
  min-width: 150px;
  max-width: 250px;
  border: none;
  border: 1.5px solid #e1e1e1;
  background-color: var(--white);
  box-shadow: 0px 4px 13px 0px #00000008;
}
.custom-menu .dropdown-item {
  border-radius: 10px;
  padding: 8px 12px;
}
.dropdown.dot a.dropdown-item.delete {
  color: #e11d48;
  font-size: 14px;
  font-weight: 500;
}
.custom-menu a.dropdown-item.leads {
  display: flex;
  gap: 10px;
}
.custom-menu a.dropdown-item.leads:active {
  background-color: var(--white);
}
.more-drop-inner {
  display: flex;
  gap: 10px;
  align-items: center;
}
.more-drop-down-list {
  position: absolute;
  left: 0;
  padding: 10px;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  margin-top: 5px;
  display: none;
  width: max-content;
}

.more-drop-down-list {
  display: none;
  position: absolute;
  background: #fff;
  border: 1px solid #ddd;
  padding: 10px;
}

.more-drop-down-list.active {
  display: block;
}

.more-drop-inner .filter-select {
  display: block;
  width: 200px;
  margin: 5px 0;
}
.filter-wrapper {
  position: relative;
  display: inline-block;
}
.more-drop-down-list {
  position: absolute;
  top: 100%; /* button ke neeche */
  left: 0;
  background: #fff;
  border: 1px solid #ddd;
  padding: 10px;
  display: none;
  z-index: 999;
}

.more-drop-inner select.filter-select {
  width: 133px;
}
.form-row-upr h4 {
  font-size: 12px;
  font-weight: 400;
  color: #1b2128;
}
.project.wrper h4 {
  font-size: 12px;
  font-weight: 400;
}
#createNewLead .modal-dialog {
  max-width: 730px;
}

.custom-multi-select .multi-select {
  border: 1px solid #ccc;
  padding: 5px;
  display: flex;
  flex-wrap: wrap;
  cursor: pointer;
  min-height: 40px;
}

.custom-multi-select .multi-select input {
  border: none;
  outline: none;
  flex: 1;
  background-color: transparent;
  padding: 5px 0;
}

.custom-multi-select .dropdown {
  border: 1px solid #ccc;
  display: none;
  width: 100%;
}

.custom-multi-select .dropdown div {
  padding: 8px;
  cursor: pointer;
}

.custom-multi-select .dropdown div:hover {
  background: #f0f0f0;
}

.custom-multi-select .chip {
  background: var(--black);
  color: var(--white);
  padding: 5px 10px;
  margin: 3px;
  border-radius: 15px;
  display: flex;
  align-items: center;
}

.custom-multi-select .chip span {
  margin-left: 8px;
  cursor: pointer;
}
.custom-multi-select .multi-select {
  border: 1px solid #ccc;
  padding: 5px 35px 5px 5px; /* right space for icon */
  display: flex;
  flex-wrap: wrap;
  cursor: pointer;
  min-height: 40px;
  position: relative;
}

/* Arrow icon */
.custom-multi-select .multi-select {
  border: 1px solid #a6a6a633;
  padding: 5px 35px 5px 5px;
  display: flex;
  flex-wrap: wrap;
  cursor: pointer;
  min-height: 40px;
  position: relative;

  /* SVG arrow */
  background-image: url("data:image/svg+xml;utf8,<svg fill='none' stroke='%23666' stroke-width='2' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 16px;
  background-color: #a6a6a60d;
}
.multi-select .chips {
  display: flex;
  gap: 5px;
}

/* Warehouse */

/* Modular Kitchen Setup */

.overview-header {
  display: flex;
  justify-content: space-between;
}
.overview-header h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0;
}
.client-overview-header {
  background: #7d7d7d;
  padding: 15px;
  border-radius: 15px;
}

.info-wrapper {
  display: flex;
  gap: 40px;
  padding: 20px;
  color: #fff;
  border-radius: 6px;
}

.info-wrapper ul {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}

.info-wrapper li {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--white);
}

.info-wrapper .label {
  font-weight: 600;
  margin-right: 6px;
  font-size: 15px;
  display: inline-block;
}
.right-dropdown select.form-select {
  box-shadow: none;
  border: 1px solid #e2e8f0;
}
.my-custom-client-tabs-wrapper {
  margin-top: 20px;
}

.my-custom-client-tabs-wrapper .nav-pills .nav-link.client.active,
.nav-pills .show > .nav-link {
  color: var(--black);
  background-color: var(--white);
  border-bottom: 2px solid #000000;
  border-radius: 0px;
}
.my-custom-client-tabs-wrapper ul#custom-tab {
  border-bottom: 2px solid #f5f5f5;
}
.my-custom-client-tabs-wrapper .nav-link {
  color: #000;
  font-size: 14px;
  font-weight: 500;
}
.communication-head span {
  display: inline-flex;
  justify-content: center;
  height: 36px;
  width: 36px;
  background-color: var(--primary-color);
  border-radius: 50%;
  align-items: center;
}
.communication-head {
  display: flex;
  gap: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f5f5f5;
}
.communication-head span i {
  color: #fff;
}

/* left nav tab */
.custom-mail-tabs ul {
  display: flex;
  flex-direction: column;
}
.communication-body .custom-mail-tabs ul#mail-tab {
  margin-top: 20px;
}
.nav-link.mail.active {
  color: var(--black);
  background-color: var(--white);
  border-left: 2px solid #000000;
  border-radius: 0px;
}
.communication-body .custom-mail-tabs {
  display: flex;
  gap: 20px;
}
.communication-body .custom-mail-tabs .nav-link.mail {
  color: #7d7d7d;
}
.communication-body .custom-mail-tabs .nav-link.mail.active {
  color: #000;
}
.inbox-tab-content-wrp {
  margin-top: 5px;
  /* padding-left: 15px; */
}
.inbox-tab-content-left .form-check.select-all .form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}
.inbox-tab-content-left .form-check.select-all label.form-check-label {
  font-size: 14px;
  font-weight: 400;
}
.inbox-tab-content-left button.referesh-icon {
  border: none;
  background: transparent;
}
.inbox-tab-content-left .left-head {
  display: flex;
  gap: 15px;
}
.form-check.select-all input {
  box-shadow: none;
}
.left-right-head {
  display: flex;
  justify-content: space-between;
}
.custom-mail-tabs .tab-content {
  width: 100%;
  border-left: 2px solid #f5f5f5;
}
.inbox-tab-content-communication-wrp .communication-body {
  margin-top: 30px;
  padding: 20px;
}
.inbox-tab-content-communication-wrp .communication-body h3 {
  font-size: 24px;
  font-weight: 600;
}
.inbox-tab-content-communication-wrp .communication-body p {
  font-size: 14px;
  font-weight: 400;
  color: #000;
}
span.status.shipping {
  color: #178dcc;
  background-color: #e0f2fe;
}
/* left nav tab */
.right-head p {
  font-size: 10px;
  font-weight: 400;
  color: #3b424a;
  margin-bottom: 0;
}
.left-right-head .right-head {
  display: flex;
  align-items: center;
  gap: 10px;
}
.left-right-head .right-head button.left {
  border: none;
  background: transparent;
}
.left-right-head .right-head button.right {
  border: none;
  background: transparent;
}
.inbox-tab-content-wrp .inbox-tab-content-left {
  width: 35%;
  border-right: 1px solid #f5f5f5;
}
.inbox-tab-content-left .left-right-head {
  padding: 10px;
  border-bottom: 1px solid #f5f5f5;
}

/* left-inner-body */
.lft-msg-jared .time-date-jard .time-date {
  font-size: 14px;
  font-weight: 400;
  color: #3b424a;
}
.lft-msg-jared .time-date-jard {
  display: flex;
  gap: 90px;
  padding-left: 30px;
}
.left-msg-data-wrp .lft-msg-jared .form-check-label {
  font-size: 14px;
  font-weight: 700 !important;
  color: #000;
}
.list-para-data li {
  font-size: 14px;
  font-weight: 500;
  color: #000;
  margin-bottom: 10px;
}
.list-para-data p {
  font-size: 14px;
  font-weight: 400;
  color: #000;
}
.lft-msg-jared.bg-add {
  background: #f3f3f3;
  padding: 10px;
  border-left: 1px solid #000;
  border-left: 2px solid;

  border-image-source:
    linear-gradient(0deg, #e1e3ea, #e1e3ea),
    linear-gradient(0deg, #3b424a, #3b424a);
}
.left-msg-data-wrp .lft-msg-jared {
  padding: 10px;
  transition:
    background-color 0.2s ease,
    border-left-color 0.2s ease;
}
.left-msg-data-wrp .lft-msg-jared.active {
  background: #eef4ff;
  border-left: 3px solid #2d6cdf;
}
.left-msg-data-wrp .lft-msg-jared.active .form-check-label,
.left-msg-data-wrp .lft-msg-jared.active .list-para-data li {
  color: #123568;
}
.lft-msg-jared.bg-add .time-date-jard {
  justify-content: space-between;
  padding-left: 33px;
}
.lft-msg-jared.bg-add .list-para-data li {
  list-style: none;
}
.lft-msg-jared.borders .list-para-data li {
  list-style: none;
}
.lft-msg-jared.borders {
  border-bottom: 1px solid #f5f5f5;
}
.lft-msg-jared.borders ul {
  margin-bottom: 0;
}
.lft-msg-jared.borders.pdr {
  padding-left: 40px;
}
/* left-inner-body */

/* right-inner-body */

.inbox-tab-content-right {
  width: 62%;
}
.inbox-tab-content-wrp {
  display: flex;
  gap: 20px;
}
.inbox-right-body p.time-hrs {
  font-size: 13px;
  font-weight: 400;
  color: #000;
}
.inbox-tab-content-right {
  margin-top: 20px;
}
.inbox-tab-content-right h3.user-heading {
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  margin-top: 20px;
}
.mail-user-right h4 {
  font-size: 12px;
  font-weight: 700;
  color: var(--black);
  margin: 0;
}
.mail-user-right p.me {
  font-size: 12px;
  font-weight: 400;
}
.mail-user-right p.me button {
  background: transparent;
  border: none;
}
.mail-user-prfile-data {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}
.mail-body-wrp p.main-data {
  font-size: 14px;
  font-weight: 400;
  margin-top: 30px;
  color: var(--black);
}
.mail-sending-icons button {
  border: none;
  background: transparent;
}
.mail-sending-icons {
  display: flex;
  gap: 15px;
}
.mail-sening-icon-times {
  display: flex;
  gap: 50px;
}
.mail-sending-buttons button {
  border: 1px solid #7d7d7d;
  padding: 10px 15px;
  border-radius: 30px;
  background: transparent;
  color: var(--black);
  font-size: 14px;
  font-weight: 600;
}
.mail-sending-buttons {
  display: flex;
  gap: 15px;
}
.mail-sending-buttons button img {
  margin-right: 7px;
}
.upper-forword-left {
  display: flex;
  gap: 10px;
}
.forword-message-body {
  margin-top: 40px;
}
.upper-forword-left p.send-msg {
  font-size: 14px;
  font-weight: 400;
  color: #3b424a;
}
.upper-forword-left p.send-msg span {
  font-size: 12px;
  font-weight: 600;
  color: var(--black);
  background-color: #f6f6f6;
  border-radius: 15px;
  padding: 6px 10px;
}
.upper-forword-left button {
  background: transparent;
  border: none;
}
.upper-forword-right button {
  background: transparent;
  border: none;
}
.upper-forword-right p.cc {
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  margin: 0;
}
.upper-forword-right p.bcc {
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  margin: 0;
}
.upper-forword-right {
  display: flex;
  gap: 20px;
}
.upper-forword-wrp {
  display: flex;
  justify-content: space-between;
}
.forword-message-body .forword-msg {
  margin-top: 20px;
}
.forword-message-body .forword-msg p {
  font-size: 14px;
  font-weight: 400;
  color: #121c2d;
}
.forword-message-body {
  border: 1px solid #cacdd8;
  padding: 10px;
  border-radius: 5px;
  position: relative;
}
.forword-bottom-btn-left button.muti-btn {
  background: #7d7d7d;
  border-radius: 5px;
  padding: 7px 10px;
  border: none;
}
.forword-bottom-btn-left button.mail-align {
  background: transparent;
  border: none;
}
.forword-bottom-btn-left .mail-file-up input[type="file"] {
  display: none;
}

.upload-label {
  cursor: pointer;
  display: inline-block;
}
.forword-bottom-btn-left button.mail-chain {
  background: transparent;
  border: none;
}
.forword-bottom-btn-left button.mail-document {
  background: transparent;
  border: none;
}
.forword-bottom-btn-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.forword-bottom-btn-right button {
  background: transparent;
  border: none;
}
.forword-bottom-btn-wrp {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
}

/* Communication layout polish */
#communication .custom-mail-tabs .tab-content {
  border-left: none;
  padding-left: 8px;
}
#communication .inbox-tab-content-wrp {
  display: grid;
  grid-template-columns: minmax(320px, 36%) 1fr;
  gap: 16px;
  align-items: start;
}
#communication .inbox-tab-content-wrp .inbox-tab-content-left,
#communication .inbox-tab-content-wrp .inbox-tab-content-right {
  width: 100%;
  margin-top: 0;
  border: 1px solid #e8ecf3;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.04);
}
#communication .inbox-tab-content-left .left-right-head {
  padding: 12px 14px;
  border-bottom: 1px solid #edf1f7;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 2;
}
#communication .left-msg-data-wrp {
  max-height: 620px;
  overflow-y: auto;
  padding: 6px 0;
}
#communication .left-msg-data-wrp .lft-msg-jared {
  margin: 0 8px;
  border-radius: 12px;
  border-bottom: 1px solid transparent;
  margin-bottom: 5px;
}
#communication .left-msg-data-wrp .lft-msg-jared:hover {
  background: #f7faff;
}
#communication .lft-msg-jared .time-date-jard {
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-left: 8px;
}
#communication .list-para-data ul {
  margin-bottom: 0;
}
#communication .list-para-data li {
  margin-bottom: 4px;
}
#communication .list-para-data p {
  margin-bottom: 0;
  color: #5c6679;
}
#communication .inbox-right-body {
  padding: 16px 18px 18px;
}
#communication .mail-sening-icon-times {
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid #edf1f7;
}
#communication .mail-sending-icons button {
  height: 34px;
  width: 34px;
  border-radius: 10px;
  background: #f5f8fd;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
#communication .mail-user-prfile-data {
  gap: 14px;
  margin-top: 16px;
  padding: 12px;
  border: 1px solid #edf1f7;
  border-radius: 12px;
  background: #fbfcff;
}
#communication #mail-body.main-data {
  margin-top: 16px;
  padding: 14px;
  border-radius: 12px;
  background: #f8faff;
  border: 1px solid #edf1f7;
  line-height: 1.6;
}
#communication #mail-thread {
  margin-top: 14px;
}
#communication #mail-thread .border.rounded.p-2 {
  border-color: #e7ebf3 !important;
  border-radius: 10px !important;
  background: #fff;
}
#communication .mail-sending-buttons {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid #edf1f7;
  flex-wrap: wrap;
}
#communication .mail-sending-buttons button {
  border-color: #d4dceb;
  background: #fff;
}
#communication .mail-sending-buttons button:hover {
  background: #f5f9ff;
  border-color: #91addb;
}
#communication .forword-message-body {
  margin-top: 20px;
  border-radius: 12px;
  border-color: #dce3f2;
  background: #fff;
}

@media (max-width: 991px) {
  #communication .communication-body .custom-mail-tabs {
    flex-direction: column;
    gap: 12px;
  }
  #communication .communication-body .custom-mail-tabs ul#mail-tab {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 0 !important;
  }
  #communication .communication-body .custom-mail-tabs .nav-link.mail {
    border: 1px solid #e5e7eb;
    border-radius: 30px;
    padding: 6px 14px;
  }
  #communication .communication-body .custom-mail-tabs .nav-link.mail.active {
    border-left: 1px solid #000;
    background: #f5f8fd;
  }
  #communication .custom-mail-tabs .tab-content {
    padding-left: 0;
  }
  #communication .inbox-tab-content-wrp {
    grid-template-columns: 1fr;
  }
  #communication .left-msg-data-wrp {
    max-height: 360px;
  }
}
.multiple-btn-section button.professional-btn {
  background: transparent;
  border: 1px solid #7d7d7d;
  padding: 7px 15px;
  border-radius: 30px;
  color: #7d7d7d;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 7px;
}
button.professional-btn.active {
  background: #7d7d7d;
  color: #fff;
}
.multiple-btn-section {
  border: 1px solid #cacdd8;
  padding: 15px;
  border-radius: 10px;
  display: flex;
  gap: 15px;
  width: 406px;
  flex-wrap: wrap;
  position: absolute;
  top: 25%;
  left: 25px;
  background-color: var(--white);
}
.multiple-btn-section {
  display: none;
}
/* right-inner-body */

/* Mail Popup */
#newMessage .modal-dialog {
  max-width: 900px;
}
.new-msg-data {
  font-size: 14px;
  font-weight: 400;
  color: var(--black);
}
.member-form-wrapper.mail input[type="text"] {
  border: 1px solid #e1e1e1;
  background-color: var(--white);
}
.member-form-wrapper.mail::placeholder {
  color: var(--black);
}
.member-form-wrapper.mail .form-group.bcc input {
  width: 92%;
}
.form-group.bcc span.cc-bcc {
  font-size: 14px;
  font-weight: 600;
  color: #000;
}
.form-group.mail-textarea textarea.new-msg-data {
  height: 500px;
}
.form-group.bcc label {
  font-size: 14px;
  font-weight: 600;
}

/* Mail Popup */

/* Estimates content... */
.estimates-content-head button.template-icon {
  border: 1px solid #000000;
  color: #000;
  background: transparent;
  padding: 4px 10px;
  border-radius: 5px;
}
.estimates-content-head {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
}
.estimates-left-heading h3 {
  font-size: 24px;
  font-weight: 600;
}
.estimates-heading-tab {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  align-items: center;
}
.estimates-right-tab ul {
  background: #7d7d7d;
  padding: 10px 15px;
  border-radius: 10px;
}
.estimates-right-tab li.nav-item button.nav-link.active {
  background: #fff;
  color: #000;
  font-size: 16px;
  font-weight: 500;
}
.estimates-right-tab li.nav-item button {
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
}
h3 {
  font-size: 20px;
  font-weight: 600;
  color: #1e293b;
}
td.check-box-tbl input {
  border: 2px solid var(--border, #e4e4e4);
}
.user-table-wrapper-1 td span.green {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #10b981;
  display: inline-flex;
  top: 5px;
  right: -2px;
}
.user-table-wrapper-1 td span.red {
  position: absolute;
  width: 5px;
  top: 5px;
  right: -2px;
  height: 5px;
  border-radius: 50%;
  background: #e0060a;
  display: inline-flex;
}
.user-table-wrapper-1 .badge {
  position: relative;
  color: #000;
  font-size: 14px;
  font-weight: 500;
}
.user-table-wrapper-1.estimates-tbl td {
  color: #000;
  font-size: 14px;
  font-weight: 500;
}
.financial-summary-card .material-left p {
  margin-bottom: 4px;
}
.financial-summary-card .material-left p.subtotal {
  color: #14171d;
  font-size: 16px;
  font-weight: 600;
}
.financial-summary-card .material-left p.sum {
  color: #7d7d7d;
  font-size: 14px;
  font-weight: 500;
}
.material-right span {
  font-size: 20px;
  font-weight: 600;
  color: #14171d;
}
.financial-summary-card {
  display: flex;
  justify-content: space-between;
}
.financial-summary-card {
  display: flex;
  justify-content: space-between;
  background: #ffffff;
  border: 1px solid #d9d9d9;
  padding: 15px;
  border-radius: 20px;
  align-items: center;
}
.financial-summary-wrp {
  background: #d1fae580;
  border: 1px solid #f5f5f5;
  border-radius: 20px;
  padding: 15px;
}
.financial-summary-wrp h3 {
  margin-bottom: 20px;
}
.financial-summary-card-wrp {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.material-left .material-check {
  display: flex;
  gap: 5px;
}
.financial-summary-card input.sales-tax {
  width: 25%;
  border: 1px solid #a6a6a633;
  background: #a6a6a60d;
  outline: none;
  padding: 0px 10px;
}
.material-check .form-check-input:checked {
  background-color: #ed2227;
  border-color: #ed2227;
}
.material-right input.sales-tax {
  width: 45%;
}
.material-right {
  text-align: end;
}
.material-right span {
  font-size: 16px;
  font-weight: 600;
  color: #14171d;
  margin-left: 10px;
}
.financial-summary-card.total-estimate {
  background: #10b981;
  color: #fff;
  padding: 10px;
  border: 1px solid #d9d9d9;
}
.financial-summary-card.total-estimate p.subtotal {
  color: #fff;
}
.financial-summary-card.total-estimate p.sum {
  color: #fff;
}
.financial-summary-card.total-estimate span {
  color: #fff;
}
.save-estimate-btn {
  display: flex;
  margin-top: 20px;
}
.save-estimate-btn button.filter-btn {
  margin-left: auto;
}
.team-page-inner.estimates-tbl-wrp {
  padding: 10px;
  background: #f3f3f3;
  border-radius: 20px;
}
#uploadSite .modal-dialog {
  max-width: 730px;
}
.chosse-file-inner span {
  background: #f6f6f6;
  color: #3b424a;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}
.chosse-file-inner span button.cross-btn {
  background: transparent;
  border: none;
}
table.user-table span.level {
  color: #10b981;
  font-size: 14px;
  font-weight: 500;
}
.lnear-ft-btn button.filter-btn {
  margin-left: auto;
}
#addRemark .modal-dialog {
  max-width: fit-content;
}
#viewRemark .modal-dialog {
  max-width: fit-content;
}
#editRemark .modal-dialog {
  max-width: fit-content;
}
/* .alert-page-top.design-tabs {
    margin-top: 20px;
} */
div#pills-design .alert-page-top.design-tabs {
  margin-top: 20px;
}
.form-group.design-tab label {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: var(--black);
}
.scope-service-design-tab .text-area-wrp label {
  display: block;
  font-size: 16px;
  font-weight: 400;
  color: var(--black);
}
.scope-service-design-tab .text-area-wrp textarea {
  width: 100%;
  height: 230px;
  border: 1px solid #a6a6a633;
  padding: 15px;
  outline: none;
  color: #1b21284d;
  border-radius: 10px;
}
.scope-service-design-tab .text-area-wrp {
  display: flex;
  gap: 10px;
}
.text-area-wrp .text-area-left {
  width: 100%;
}
.text-area-wrp .text-area-right {
  width: 100%;
}
.alert-page-top.design-tabs input[type="date"] {
  border: 1px solid #a6a6a633;
  background: #a6a6a60d;
  color: #616161;
  padding: 10px;
  border-radius: 6px;
  outline: none;
}
.scope-service-design-tab {
  margin-top: 20px;
  padding: 20px;
  background: #f3f3f3;
  border-radius: 15px;
}
.scope-service-design-tab .scope-service-inner {
  margin-top: 15px;
}
.scope-service-inner .scope-body h3 {
  font-size: 20px;
  font-weight: 600;
  color: #1e293b;
}
.scope-service-inner p.agreement {
  font-size: 16px;
  font-weight: 400;
  color: var(--black);
}
.scope-service-inner p.agreement span {
  color: #ed2227;
}
.scope-service-inner ul li {
  font-size: 16px;
  font-weight: 400;
}
.scope-service-inner ol li {
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
}
.scope-service-inner ol li p {
  font-size: 16px;
  font-weight: 400;
}
.scope-service-inner ol li p span {
  color: #e0060a;
}
.scope-service-inner .by-signing p {
  color: #e0060a;
  font-size: 16px;
  font-weight: 400;
}
.scope-service-inner .by-signing {
  padding: 20px 10px;
  background: #e0060a1a;
  border-radius: 8px;
  border-left: 2px solid #e0060a;
}
.client-sign-wrp .input-grp label {
  display: block;
  font-size: 16px;
  font-weight: 400;
  color: var(--black);
}
.client-sign-wrp .input-grp input {
  border: 1px solid #a6a6a633;
  height: 35px;
  padding: 15px;
  width: 100%;
  outline: none;
}
.scope-service-inner .client-sign-wrp {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}
.service-design-tab-btn button.filter-btn {
  margin-left: auto;
}
.service-design-tab-btn {
  margin-top: 20px;
}
.alert-page-top-logo-wrp {
  padding: 20px;
  border: 1px solid #f5f5f5;
  border-radius: 20px;
  margin-top: 20px;
}
.scope-service-inner .by-signing.choosing-box {
  border-left: 2px solid #10b981;
  background: #10b9811a;
}
.by-signing.choosing-box p {
  color: #10b981;
}
.client-sign-wrp .input-grp {
  width: 100%;
}
.team-page-inner.estimates-tbl-wrp.meet-template {
  padding: 0;
}
.team-page-inner.estimates-tbl-wrp.meet-template td {
  padding: 29px 20px;
}
.team-page-inner.estimates-tbl-wrp.meet-template th {
  padding: 22px 20px;
}
.scope-service-inner .sales-template {
  margin-top: 20px;
}
.scope-service-inner .sales-template label {
  display: block;
  color: #1e293b;
  font-size: 20px;
  font-weight: 600;
}
.scope-service-inner .sales-template textarea {
  border: 1px solid #a6a6a633;
  width: 100%;
  height: 145px;
  border-radius: 8px;
  outline: none;
  padding: 15px;
}
.scope-service-inner .example-added {
  margin-top: 20px;
}
.example-added p {
  font-size: 16px;
  font-weight: 400;
  color: var(--black);
}
.example-added ul li {
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
}
td.bg-due-date {
  background: #f3f3f3;
}
.linear-feet-head h4 {
  font-size: 18px;
  font-weight: 600;
}
.linear-feet-head span {
  font-size: 12px;
  font-weight: 400;
  background: #7d7d7d;
  padding: 6px 10px;
  border-radius: 15px;
  color: #fff;
}
.uploaded-documents-cards .linear-feet-head {
  display: flex;
  justify-content: space-between;
}
.uploaded-documents-cards {
  width: 30%;
  background: #f3f3f3;
  padding: 15px;
  border-radius: 15px;
}
.uploaded-documents-cards p.pro {
  font-size: 16px;
  font-weight: 500;
  color: #686868;
}
.uploaded-documents-cards button.document-btn {
  background: #fff;
  padding: 10px;
  border: 1px solid #fff;
  border-radius: 15px;
  font-size: 16px;
  font-weight: 400;
}
#uploadConsultion .modal-dialog {
  max-width: 730px;
}
#uploadDocument .modal-dialog {
  max-width: 730px;
}
.uploaded-documents-cards p.attach {
  margin-bottom: 2px;
  margin-top: 30px;
  font-size: 16px;
  font-weight: 500;
  color: #686868;
}
.initial-head h3 {
  font-size: 18px;
  font-weight: 600;
  color: #14171d;
}
.initial-text span {
  font-size: 12px;
  font-weight: 400;
  background: #7d7d7d;
  padding: 6px 10px;
  border-radius: 15px;
  color: #fff;
}
.consultation-history-wrp .initial-text {
  display: flex;
  gap: 10px;
  align-items: center;
}
.consultation-history-wrp p.create {
  font-size: 16px;
  font-weight: 500;
  color: #686868;
}
.consultation-history-wrp p.summary {
  margin-bottom: 2px;
  margin-top: 30px;
  font-size: 16px;
  font-weight: 500;
  color: #686868;
}
.consultation-history-wrp p.visit {
  color: #14171d;
  font-size: 16px;
  font-weight: 400;
}
.consultation-history-wrp p.visit {
  color: #14171d;
  font-size: 16px;
  font-weight: 400;
}
.consultation-history-wrp p.outcome {
  font-size: 16px;
  font-weight: 500;
  color: #7d7d7d;
}
.consultation-history-wrp p.attachments {
  margin-bottom: 2px;
  margin-top: 30px;
  font-size: 16px;
  font-weight: 500;
  color: #686868;
}
.consultation-history-wrp button.document-btn {
  background: #fff;
  padding: 10px;
  border: 1px solid #fff;
  border-radius: 15px;
  font-size: 16px;
  font-weight: 400;
}
.consultation-history-wrp {
  background: #f3f3f3;
  padding: 15px;
  border-radius: 15px;
  margin-top: 20px;
}

/* task */
.to-do-task .clock-icon {
  width: 45px;
  height: 45px;
  border-radius: 9px;
  background: #fff;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.to-do-task .clock-icon img {
  width: 20px;
  height: 20px;
}
.task-list-tab-wrp .to-do-task .number h4 {
  font-size: 28px;
  font-weight: 600;
  color: #14171d;
}
.task-list-tab-wrp .to-do-task p {
  font-size: 16px;
  font-weight: 500;
  color: #7d7d7d;
  margin-bottom: 0;
}
.task-list-tab-wrp .to-do-task {
  display: flex;
  gap: 30px;
  background: #f3f3f3;
  padding: 15px;
  border-radius: 5px;
  align-items: center;
  width: 100%;
  box-shadow: -3px 0px 13.5px 0px #00000014;
}
.task-list-tab-wrp .to-do-task-wrp {
  display: flex;
  margin-top: 20px;
}
.task-list-tab-wrp .schedule-visit-wrp .follow-heading h4 {
  font-size: 16px;
  font-weight: 600;
}
.schedule-visit-cards p.client-appro {
  font-size: 16px;
  font-weight: 500;
  color: #7d7d7d;
}
.task-list-tab-wrp .schedule-visit-cards {
  display: flex;
}
.schedule-visit-cards .follow-heading-text {
  width: 100%;
}
.schedule-visit-cards .due-assign p {
  font-size: 16px;
  font-weight: 500;
  color: #7d7d7d;
}
.schedule-visit-cards .due-assign p span {
  font-size: 16px;
  font-weight: 400;
  color: #14171d;
}
.schedule-visit-cards .due-assign p span {
  font-size: 16px;
  font-weight: 400;
  color: #14171d;
}
.task-list-tab-wrp .schedule-visit-cards {
  border: 1px solid #f5f5f5;
  padding: 15px;
  border-radius: 15px;
  width: 49%;
}
.task-list-tab-wrp .schedule-visit-wrp {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.follow-heading-text .follow-heading {
  display: flex;
  justify-content: space-between;
}
.schedule-visit-cards .follow-heading p.status {
  font-size: 12px;
  font-weight: 400;
  padding: 5px 10px;
  border-radius: 15px;
  margin-bottom: 0;
}
.schedule-visit-cards .follow-heading p.status.high span {
  background: #d98634;
  display: inline-flex;
  height: 7px;
  width: 7px;
  border-radius: 50%;
}
.schedule-visit-cards .follow-heading p.status.medium span {
  background: #726bea;
  display: inline-flex;
  height: 7px;
  width: 7px;
  border-radius: 50%;
}
.schedule-visit-cards .follow-heading p.status.medium {
  color: #726bea;
  background: #d4d5ff99;
}
.schedule-visit-cards .follow-heading p.status.high {
  color: #d98634;
  background: #fff2dd;
  margin-bottom: 0;
}
.schedule-visit-cards .due-assign {
  display: flex;
  gap: 20px;
}
.schedule-visit-wrp .schedule-visit-cards .form-check-input:checked {
  background-color: #ed2227;
  border-color: #ed2227;
}
.schedule-visit-wrp .schedule-visit-cards .form-check-input:focus {
  box-shadow: none;
}
#createNewTask .modal-dialog {
  max-width: 730px;
}
.activity-timeline-cards .left-icon {
  background: #fef9e3;
  width: 55px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
}
.activity-timeline-cards .left-icon.stage {
  background-color: #e8fcf2;
}
.activity-timeline-cards .left-icon.mail {
  background: #e5e6ff;
}
/* task */

/* timeline */

.activity-timeline-wrp .activity-timeline-cards {
  display: flex;
  gap: 15px;
}
.activity-timeline-cards .right-data h4.linear {
  font-size: 16px;
  font-weight: 600;
  color: #14171d;
}
.activity-timeline-cards .right-data p.date-time {
  font-size: 14px;
  font-weight: 500;
  color: #7d7d7d;
}
.activity-timeline-cards .right-data p.estimate {
  font-size: 16px;
  font-weight: 500;
  color: #7d7d7d;
}
.activity-timeline-cards .right-data span.amount {
  font-size: 14px;
  font-weight: 500;
  color: #7d7d7d;
}
.activity-timeline-cards .amout-estimate {
  display: flex;
}
.activity-timeline-cards .right-data p.bottom {
  font-size: 14px;
  font-weight: 500;
  color: #7d7d7d;
}
.activity-timeline-cards .right-data {
  padding: 15px 30px;
  border: 1px solid #d9d9d9;
  border-radius: 15px;
  width: 100%;
}
.activity-timeline-wrp {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.left-side::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  background: #e1e1e1;
  z-index: -1;
}

.left-side {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  isolation: isolate;
}

.right-side {
  width: 100%;
  padding-bottom: 20px;
}

.activity-timeline-wrp .activity-timeline-cards {
  display: flex;
  gap: 15px;
  width: 100%;
}
.activity-timeline-cards:last-child .left-side::before {
  display: none;
}
/* timeline */

/* Estimates content... */

/* Ongoing Projects */
.info-wrapper ul.info-col-one span.label.initial {
  margin-top: 20px;
}
.info-wrapper ul.info-col-one li.dolor {
  font-size: 28px;
  font-weight: 500;
}
ul.info-col-two span.label.initial {
  margin-top: 80px;
}
ul.info-col-two li.dolor {
  font-size: 28px;
  font-weight: 500;
}
.schedule-visit-cards .high-progress {
  display: flex;
  gap: 10px;
}
.schedule-visit-cards .follow-heading p.status.completed {
  color: #10b981;
  background: #10b9811a;
}
/* Ongoing Projects */

/* Installation Model Selection */
.select-installation h4 {
  font-size: 16px;
  font-weight: 400;
}
.installation h3 {
  font-size: 24px;
  font-weight: 600;
}
.installation h3.inner {
  margin-top: 20px;
}
.select-installation-wrp h4 {
  font-size: 16px;
  font-weight: 400;
  color: #000;
}

.select-installation-accordian button.accordion-button {
  background-color: #a6a6a60d;
  box-shadow: none;
  border-radius: 15px;
}
.select-installation-accordian .accordion-item {
  border: 1px solid #a6a6a633;
  border-radius: 15px;
}
.select-installation-accordian .accordion-header button.accordion-button {
  color: #7d7d7d;
  font-size: 16px;
  font-weight: 400;
}
.accordion-body-install .accordion-body {
  border: 1px solid #e9e9e9;
  border-radius: 15px;
}
.accordion-body-install .accordion-body {
  border: 1px solid #e9e9e9;
  border-radius: 15px;
  margin-top: 8px;
}
.select-installation-accordian .accordion-item ::after {
  color: #616161;
}
.accordion-body-install p {
  font-size: 14px;
  font-weight: 400;
  color: #000;
}
.select-installation-wrp {
  padding: 20px;
  border: 1px solid #e1e1e1;
  border-radius: 15px;
}
.input-label-bdr {
  padding: 20px;
  border: 1px solid #e1e1e1;
  border-radius: 20px;
}
.form-container.tab-page {
  padding: 0;
}
.installation.left-right {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
}
.installation.left-right h3.inner {
  margin: 0;
}
.form-group.check-box-innst .form-check {
  display: flex;
  gap: 30px;
}
.form-group.check-box-innst input#flexCheckChecked-1 {
  padding: 6px;
}
.form-group.check-box-innst input#flexCheckChecked-2 {
  padding: 6px;
}
.extra-support-wrp {
  padding: 15px;
  background: #e0060a1a;
  border: 1px solid #e0060a1a;
  border-radius: 15px;
  margin-bottom: 15px;
}
.extra-support-wrp .frist {
  display: flex;
  gap: 10px;
}
.extra-support-wrp .frist h5 {
  font-size: 14px;
  font-weight: 500;
  color: #e0060a;
  margin: 0;
}
.extra-support-wrp p {
  font-size: 14px;
  font-weight: 500;
  color: #686868;
}
.final-layout-wrp {
  padding: 20px;
  background: #f3f3f3;
  border-radius: 15px;
}
.final-layout-wrp p.design {
  font-size: 16px;
  font-weight: 600;
  color: #1e293b;
}
.final-layout-wrp .inner-wrp-data {
  display: flex;
  justify-content: space-between;
}
.final-layout-wrp .inner-wrp-data .left-section {
  display: flex;
  align-items: center;
  gap: 15px;
}
.inner-wrp-data .list-mb {
  display: flex;
  gap: 20px;
}
.final-layout-wrp .list-item ul {
  display: flex;
  gap: 45px;
  margin: 0;
}
.final-layout-wrp .right-section {
  display: flex;
  gap: 30px;
  align-items: center;
}
.final-layout-wrp .inner-wrp-data {
  padding: 20px;
  background: #ffffff;
  border-radius: 15px;
}
.final-layout-wrp .inner-wrp-data {
  padding: 20px;
  background: #fff;
  border-radius: 15px;
}
.final-layout-wrp .inner-wrp-data .left-section h6 {
  font-size: 16px;
  font-weight: 600;
  color: #14171d;
}
.final-layout-wrp .inner-wrp-data .left-section .list-mb {
  font-size: 16px;
  font-weight: 500;
  color: #686868;
}
.final-layout-wrp .right-section a {
  font-size: 16px;
  font-weight: 600;
  color: #14171d;
  text-decoration: underline !important;
}
.final-layout-wrp .design-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.final-parent-wrp {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}
#uploadDocument-tab .modal-dialog {
  max-width: 730px;
}
#uploadDocumentHistory .modal-dialog {
  max-width: 730px;
}
.project-closure-heading h3 {
  font-size: 24px;
  font-weight: 600;
  color: #14171d;
  margin-bottom: 0;
}
.project-closure-heading span.status {
  padding: 3px 13px;
  border-radius: 20px;
}
.project-closure-heading span.status.completed {
  background: #10b981;
  color: #fff;
}
.project-closure-tab .project-closure-heading {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}
.project-closure-hed-wrp p {
  font-size: 16px;
  font-weight: 500;
  color: #686868;
}
.closure-inner-nav-tab li.nav-item .nav-link.active {
  background: #fff;
  color: #000;
  font-size: 16px;
  font-weight: 500;
}
.closure-inner-nav-tab ul {
  background: #7d7d7d;
  padding: 10px 15px;
  border-radius: 10px;
}
.closure-inner-nav-tab li.nav-item button {
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
}
.closure-inner-nav-tab {
  margin-top: 20px;
}
.final-handover-head h5 {
  font-size: 20px;
  font-weight: 500;
  color: #14171d;
}
.final-handover-wrp .final-handover-body .left-right-wrp p {
  font-size: 16px;
  font-weight: 500;
  color: #686868;
  margin-bottom: 6px;
  margin-top: 20px;
}
.final-handover-body .left-right-wrp {
  display: flex;
  gap: 200px;
}
.final-handover-wrp .final-handover-frist {
  border: 1px solid #e1e1e1;
  padding: 15px;
  border-radius: 15px;
}
.completion-photos-cards .completion-photos-card {
  width: 470px;
  height: 280px;
  background: #f3f3f3;
  border-radius: 15px;
}
.completion-photos-wrp .completion-photos-cards {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}
.completion-photos-card .completion-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.final-handover-wrp .completion-photos-wrp {
  border: 1px solid #e1e1e1;
  padding: 15px;
  border-radius: 15px;
}
.handover-notes-wrp .note-inner-body p {
  font-size: 16px;
  font-weight: 500;
  color: #686868;
}
.final-handover-wrp .handover-notes-wrp {
  border: 1px solid #e1e1e1;
  padding: 15px;
  border-radius: 15px;
}
.handover-notes-wrp .note-inner-body label {
  display: block;
  font-size: 20px;
  font-weight: 500;
  color: #14171d;
  margin-bottom: 10px;
}
.note-inner-body textarea {
  border: 1px solid #a6a6a633;
  background: #a6a6a60d;
  width: 100%;
  height: 100px;
  padding: 15px;
  border-radius: 15px;
  outline: none;
}
.final-handover-wrp {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#uploadAdditionalPhotos .modal-dialog {
  max-width: 730px;
}
.project-closure-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.project-closure-btn .right-btn-closure {
  display: flex;
  gap: 10px;
}
.template-btn {
  border: 1px solid #000000;
  color: #000;
  background: transparent;
  padding: 4px 10px;
  border-radius: 5px;
  height: 40px;
}
.initial-estimate-cards {
  background: #f3f3f3;
  padding: 20px;
  border-radius: 15px;
  width: 100%;
}
.initial-estimate-cards h5 {
  font-size: 28px;
  font-weight: 600;
  color: #14171d;
}
.initial-estimate-cards p {
  font-size: 16px;
  font-weight: 500;
  color: #686868;
}
.initial-estimate-cost {
  display: flex;
  gap: 15px;
}
.charges-breakdown-card {
  display: flex;
  justify-content: space-between;
  background: #f3f3f3;
  align-items: center;
  padding: 15px;
  border-radius: 15px;
}
.charges-breakdown-card p {
  margin-bottom: 0;
  color: #14171d;
  font-size: 18px;
  font-weight: 600;
}
.charges-breakdown-card span {
  color: #14171d;
  font-size: 24px;
  font-weight: 500;
}
.charges-breakdown-card-wrp {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.total-charges p {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 0;
}
.total-charges span {
  font-size: 24px;
  font-weight: 600;
}
.total-charges {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.charges-breakdown {
  padding: 20px;
  border: 1px solid #e1e1e1;
  border-radius: 15px;
}
span.status.paid {
  background: #10b981;
  color: #fff;
}
span.status.pending-py {
  background: #e0902d;
  color: #fff;
}
.payment-adjustment {
  padding: 20px;
  border: 1px solid #e1e1e1;
  border-radius: 15px;
}
.handover-notes-wrp {
  border: 1px solid #e1e1e1;
  padding: 15px;
  border-radius: 15px;
}
.finanacial-wrp {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.archive-system h4 {
  font-size: 24px;
  font-weight: 500;
  color: #14171d;
}
.project-closure-heading.archive h3 {
  font-size: 20px;
}
.project-closure-heading.archive {
  padding: 20px;
  background: #f3f3f3;
  border-radius: 15px;
}
.locked-date {
  padding: 20px;
  background: #fff;
  border-radius: 15px;
}
.lock-information {
  padding: 20px;
  border-radius: 15px;
  background: #f3f3f3;
}
.locked-date p {
  font-size: 16px;
  font-weight: 500;
  color: #686868;
  margin-bottom: 5px;
}
.locked-date span {
  font-size: 28px;
  font-weight: 600;
  color: #14171d;
}
.once-archived p {
  font-size: 14px;
  font-weight: 500;
  color: #14171d;
  display: flex;
  gap: 20px;
}
.once-archived {
  background: #f3f3f3;
  padding: 10px 15px;
  border-radius: 15px;
  margin-bottom: 0;
  width: fit-content;
}
.archive-system {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  border-radius: 15px;
  border: 1px solid #e1e1e1;
}
.closure-inner-nav-tab ul.list-item {
  background-color: #fff;
  text-align: center;
}
.closure-inner-nav-tab ul.list-item li {
  list-style: none;
  list-style: none;
  font-size: 18px;
  font-weight: 500;
  color: #000000;
}
.feedback-header {
  display: flex;
  gap: 30px;
  align-items: center;
}
p.headr-text {
  font-size: 18px;
  font-weight: 400;
  width: 85%;
}
.feedback-header-wrp {
  padding: 30px 0px 30px 60px;
}

.input-textfeild input {
  display: block;
  width: 100%;
  margin-bottom: 4px;
  outline: none;
  padding: 0 5px;
}
.both-radi-text {
  display: flex;
  gap: 20px;
  align-items: center;
}
.both-radi-text .left-text-field {
  width: 78%;
}
.right-radio-btn .form-check-input:checked {
  background-color: #ed2227;
  border-color: #ed2227;
}
.left-text-field p {
  font-size: 18px;
  font-weight: 400;
  color: #000000;
}
.right-radio-btn label.form-check-label {
  font-size: 18px;
  font-weight: 400;
  color: #000;
}
.both-radi-text-wrp {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.both-radi-text .right-radio-btn {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bottom-label-textfield .bottom-inner input[type="text"] {
  width: 100%;
  outline: none;
  padding: 0 5px;
}
.bottom-label-textfield .bottom-inner {
  display: flex;
}
.bottom-label-textfield label {
  width: 45%;
}
.bottom-label-textfield {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.feedback-wraper {
  padding: 20px;
  border: 1px solid #e1e1e1;
  border-radius: 15px;
}
.service-design-tab-btn.feedback {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
.service-design-tab-btn.feedback button.filter-btn {
  margin: 0;
}
/* Installation Model Selection */
/* Modular Kitchen Setup */

/* popup Daman sir */

.accordion-body-frist .accordion-collapse.collapse.show {
  border: 1px solid #e9e9e9;
  border-radius: 15px;
}
.iteration-inner .form-control {
  padding: 4px;
  height: 42px;
  line-height: 32px;
}

.iteration-inner .form-control::-webkit-file-upload-button {
  background: #7d7d7d !important;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  height: 32px;
  padding: 0 15px;
  margin-right: 10px;
  margin-left: 5px;
}

.iteration-inner .form-control::-webkit-file-upload-button:hover {
  background: #7d7d7d !important;
}
.accordion-body-frist .file-icon img {
  width: 25px;
  height: auto;
}
.technical_drawing p {
  font-size: 14px;
  font-weight: 600;
  color: #3b424a;
  margin-bottom: 2px;
}
.technical_drawing {
  background: #f6f6f6;
  width: fit-content;
  padding: 10px 15px;
  border-radius: 15px;
}
.technical_drawing span {
  font-size: 12px;
  font-weight: 600;
  color: #7d7d7d;
}
.accordion-body-frist .file-left-right {
  display: flex;
  gap: 10px;
  align-items: center;
}
.feedback-notes label {
  font-size: 14px;
  font-weight: 400;
  color: #000;
  display: block;
}
.feedback-notes .text-area {
  width: 100%;
  border: 1px solid #e9e9e9;

  padding: 15px;
  border-radius: 15px;
  background: #f3f3f3;
}
.feedback-notes textarea {
  width: 100%;
  height: 175px;
  background: #f3f3f3;
  border: none;
  outline: none;
}
.text-area img {
  width: 100%;
  margin-bottom: 10px;
}
.upload-design-wrp .iteration-wrp .accordion-item {
  border: none;
}
.upload-design-wrp .iteration-wrp .accordion-item .accordion-header {
  border: 1px solid #a6a6a633;
  border-radius: 15px;
  margin-bottom: 20px;
  color: #616161;
}
.before-upload p {
  color: #178dcc;
  background: #e0f2fe;
  display: flex;
  gap: 10px;
  padding: 10px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
}
.accordion-body-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
/* popup Daman sir */

/* Containers List */
a.views-tbl {
  color: #1b2128;
}
.progress-containers .progress {
  background: #ed2227;
  width: 215px;
  height: 12px;
  border-radius: 30px;
}
.progress-containers .progress-bar {
  background: #10b981;
  border-radius: 30px;
}
.progress-text-left span.empaty-denver {
  width: 7px;
  height: 7px;
  display: inline-block;
  background: #10b981;
  border-radius: 50%;
}
.progress-text-left span.denver {
  color: #10b981;
  font-size: 12px;
  font-weight: 400;
}
.progress-text-left {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 5px;
}

.progress-text-right span.empaty-vail {
  width: 7px;
  height: 7px;
  display: inline-block;
  background: #ed2227;
  border-radius: 50%;
}
.progress-text-right span.vail {
  color: #ed2227;
  font-size: 12px;
  font-weight: 400;
}
.progress-text-right {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 5px;
}
.progress-text-both {
  display: flex;
  gap: 30px;
}
/* popup */
#newContainer .modal-dialog {
  max-width: 730px;
}
.popuop-progress .progress-containers .progress {
  width: 100%;
}
.popuop-progress {
  border: 1px solid #a6a6a633;
  padding: 29px;
  border-radius: 10px;
}
.dropdown.delect-popup button.btn.btn-outline-secondary.dropdown-toggle {
  padding: 10px;
  background-color: #a6a6a60d;
  border: 1px solid #a6a6a633;
  color: #000;
  font-weight: 500;
  border-radius: 4px;
  font-size: 14px;
  display: flex;
  align-items: center;
}
.dropdown.delect-popup button.btn.btn-outline-secondary::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-left: auto;

  background-image: url("../images/arrow-down.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;

  border: none;
}
.dropdown.delect-popup li a.dropdown-item:active {
  background-color: #fff;
  color: #000;
}
.dropdown.delect-popup li a.dropdown-item:hover {
  background-color: #ed2227;
  color: #fff;
  border-radius: 10px;
}
.dropdown.delect-popup li {
  padding: 0 10px;
}
table.user-table td.rgt-bdr {
  border-right: 1px solid #e1e1e1;
}
.user-table th:not(:first-child),
.user-table.row-span-bdr td:not(:first-child) {
  text-align: left;
}

/* popup */

/* Containers List */
table.user-table.row-span-bdr td.bdr-icon {
  background: #f3f3f3;
}
table.user-table.row-span-bdr td.bdr-icon a.inner-text-table {
  color: #1b2128;
}
.tbl-inner-dropdown .btn.btn-secondary.dropdown-toggle {
  color: #000000;
  background-color: #fff;
}
.tbl-inner-dropdown .btn.btn-secondary.dropdown-toggle:hover {
  color: #000000;
  background-color: #fff;
}

.tbl-inner-dropdown .btn.btn-secondary.dropdown-toggle::after {
  display: none;
}

/* Custom arrow image */
.tbl-inner-dropdown .dropdown-toggle {
  position: relative;
  padding-right: 40px;
}

.tbl-inner-dropdown .dropdown-toggle::before {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);

  width: 26px;
  height: 26px;

  background-image: url("../images/down-arrow-dropdown.svg");
  background-size: contain;
  background-repeat: no-repeat;

  pointer-events: none;
}

td.check-box-tbl .form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}
.img-text-color {
  color: #000;
  display: flex;
  gap: 5px;
  justify-content: center;
}
.team-page-inner.design-tab {
  padding: 20px;
  background: #f3f3f3;
  border-radius: 15px;
}
.additional-details label {
  display: block;
}
.additional-details textarea.additional-textarea {
  height: 128px;
  width: 100%;
  background: #a6a6a60d;
  border: 1px solid #a6a6a633;
  border-radius: 15px;
  outline: none;
  padding: 15px;
}
.second-wht-btn {
  border: 1px solid #61616180;
  color: #61616180;
  padding: 4px 10px;
  border-radius: 10px;
}
.additional-details .bottom-textarea-btn {
  display: flex;
  gap: 10px;
  justify-content: right;
  margin-top: 20px;
}
.design-flow-wrp .design-flow-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* design-wrp */
.designer-assigned .left .img-check {
  background: #d1fae580;
  display: inline-block;
  width: 32px;
  height: 32px;
  border-radius: 13px;
}
.designer-assigned .left .img-check {
  display: flex;
  justify-content: center;
  align-items: center;
}
.design-flow-body p.upper {
  color: #686868;
  font-size: 16px;
  font-weight: 500;
}
.designer-assigned .left p {
  font-size: 16px;
  font-weight: 500;
  color: #686868;
}
.designer-assigned .left {
  display: flex;
  gap: 10px;
  align-items: center;
}
.designer-assigned .right p {
  font-size: 16px;
  font-weight: 600;
  color: #686868;
}
.designer-assigned {
  display: flex;
  justify-content: space-between;
}
.designer-assigned .left p span {
  color: #10b981;
}
.pdf-icon-text .text-msg-wrp {
  width: fit-content;
  padding: 10px 15px;
  background: #f6f6f6;
  border-radius: 15px;
}
.pdf-icon-text {
  display: flex;
  gap: 15px;
}
.pdf-icon-text .text-msg-wrp p {
  margin-bottom: 2px;
}
.pdf-icon-text .text-msg-wrp p {
  font-size: 14px;
  font-weight: 600;
}
.pdf-icon-text .text-msg-wrp span {
  color: #7d7d7d;
  font-size: 12px;
}
.designer-assigned-wrp .pdf-icon-text {
  margin-left: 40px;
}
.designer-assigned .img-check.feedback {
  background: #e0060a33;
}
.designer-assigned-wrp {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.feedback-text {
  background: #e0060a1a;
  padding: 15px;
  border-radius: 15px;
  margin-left: 40px;
}
.feedback-text p {
  font-size: 14px;
  font-weight: 500;
  color: #e0060a;
}
.designer-assigned .left .img-check.wht {
  background: #e1e1e1;
}
.designer-assigned .right p.status {
  padding: 4px 10px;
  background: #d1fae580;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 400;
  color: #10b981;
  display: flex;
  gap: 10px;
  align-items: center;
}
.designer-assigned .right p.status span {
  height: 7px;
  width: 7px;
  display: inline-block;
  background: #10b981;
  border-radius: 15px;
}
.sourece-design-wrp .design-flow-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.source-card .source-head {
  display: flex;
  justify-content: space-between;
}
.source-card .source-head .left {
  display: flex;
  gap: 15px;
}
.source-card .source-head .left p {
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 600;
}
.source-card .source-head .left span {
  background: #686868;
  padding: 2px 8px;
  border-radius: 15px;
  font-size: 13px;
  color: #fff;
}
.source-card .source-head .right a {
  color: #14171d;
  text-decoration: underline !important;
  font-size: 16px;
  font-weight: 600;
}
.source-cars-wrp .created-text {
  display: flex;
  gap: 15px;
}
.source-cars-wrp .created-text {
  font-size: 16px;
  font-weight: 500;
  color: #686868;
}
.source-cars-wrp .source-card {
  width: 470px;
  border-radius: 15px;
}
.attachment-pdf-wrp {
  background: #f3f3f3;
  border-radius: 15px;
  display: flex;
  justify-content: space-between;
  padding: 6px 15px;
  align-items: center;
}
.attachment-pdf-wrp .right button {
  border: none;
}
.source-cars-wrp {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}
.sourece-design-wrp {
  background: #f3f3f3;
  padding: 20px;
  border-radius: 20px;
}
.sourece-design-wrp .source-cars-wrp .source-card {
  background: #fff;
  padding: 15px;
}
.design-flow-wrp {
  background: #f3f3f3;
  padding: 20px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.design-flow-wrp .design-flow-body {
  background: #fff;
  padding: 20px;
  border-radius: 20px;
}
.design-tab-wrraper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.assign-select-both {
  display: flex;
  gap: 15px;
}
.assign-select-both .left {
  width: 25%;
}
.assign-select-both .right {
  width: 35%;
}

.assign-select-both .right .form-group {
  width: 350px;
}

.assign-select-both label {
  font-size: 18px;
  font-weight: 600;
  color: #686868;
}

.assign-select-both .right .custom-multi-select {
  position: relative;
}

.assign-select-both .right .selected-chips {
  min-height: 40px;
  border: 1px solid #fff;
  border-radius: 10px;
  background: #fff;
  padding: 0px 8px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.assign-select-both .left select.form-select {
  height: 40px;
  border: none;
}
.assign-vendors {
  padding: 20px;
  border-radius: 20px;
  background: #f3f3f3;
}

.assign-select-both .right .placeholder {
  color: #000;
  cursor: pointer;
  font-size: 14px;
  background-color: #fff;
}

.assign-select-both .right .chip {
  background: #f6f6f6;
  border-radius: 20px;
  padding: 3px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: #000000;
}
.steve-smith-chips {
  padding: 25px;
  border-radius: 20px;
  background: #fff;
  margin-top: 20px;
  display: flex;
  gap: 10px;
}
a.view-color {
  color: #000;
}
p.mail-phone {
  font-size: 14px;
  font-weight: 600;
  color: #1b2128;
}
p.mail-phone span {
  font-size: 14px;
  font-weight: 400;
  color: #959595;
}
.steve-smith-chips .chips-wrp button {
  border: none;
  border-radius: 50%;
  margin-left: 8px;
}
.steve-smith-chips .chips-wrp {
  padding: 6px 12px;
  width: fit-content;
  background: #7d7d7d;
  border-radius: 30px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
}
.assign-select-both .right .chip button {
  border: none;
  background: none;
  cursor: pointer;
  font-size: 14px;
}

.assign-select-both .right .arrow {
  margin-left: auto;
  font-size: 18px;
}

.assign-select-both .right .dropdown {
  position: absolute;
  top: 105%;
  left: 0;
  width: 100%;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: none;
  overflow: hidden;
  z-index: 100;
}

.assign-select-both .right .dropdown.show {
  display: block;
}

.assign-select-both .right .option {
  padding: 12px;
  cursor: pointer;
  transition: 0.2s;
}

.assign-select-both .right .option:hover {
  background: #f5f5f5;
}

.technical-design-wrp .progress-wrapper {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  /* width: 100%; */
  gap: 20px;
  padding-top: 10px;
  overflow-x: auto;
}

/* MAIN HORIZONTAL LINE */
.technical-design-wrp .progress-wrapper::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 50px;
  right: 50px;
  height: 2px;
  background: #e1e1e1;
  z-index: 0;
  /* width: 100%; */
}

/* STEP */
.technical-design-wrp .progress-wrapper .step {
  position: relative;
  min-width: 140px;
  text-align: center;
  display: flex;
  z-index: 1;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

/* CIRCLE */
.technical-design-wrp .progress-wrapper .circle {
  width: 38px;
  height: 38px;
  border-radius: 30%;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 14px;
  font-weight: 600;

  background: #f3f3f3;
  border: 2px solid #dcdcdc;
  color: #fff;
}
.technical-design-wrp h3 {
  margin-bottom: 20px;
  font-size: 24px;
}

/* COMPLETED */
.technical-design-wrp .progress-wrapper .step.completed .circle {
  background: #e8fcf2;
  border-color: #e8fcf2;
}

/* ACTIVE */
.technical-design-wrp .progress-wrapper .step.active .circle {
  background: #fff;
  border: 3px solid #18c29c;
  color: #18c29c;
}

/* PENDING */
.technical-design-wrp .progress-wrapper .step.pending .circle {
  background: #e1e1e1;
  border-color: #e1e1e1;
}

/* CONTENT */
.technical-design-wrp .progress-wrapper .content {
  margin-top: 12px;
}
.allowance-tracker-wrp h3 {
  color: #14171d;
  margin-bottom: 20px;
}
.technical-design-wrp .progress-wrapper .content h4 {
  font-size: 16px;
  font-weight: 500;
  color: #14171d;
  margin-bottom: 4px;
  white-space: nowrap;
}
.minor-changes h4 {
  font-size: 18px;
  font-weight: 600;
}
.minor-changes p {
  font-size: 16px;
  font-weight: 500;
  color: #686868;
}
.technical-design-wrp .progress-wrapper .content p {
  font-size: 12px;
  color: #686868;
  font-weight: 500;
}
.minor-changes .head {
  display: flex;
  justify-content: space-between;
}
.minor-changes-both .minor-changes .msg-text {
  display: flex;
  justify-content: space-between;
}
.minor-changes-both .minor-changes {
  width: 100%;
}
.minor-changes-both {
  background: #f3f3f3;
  padding: 20px;
  border-radius: 20px;
  display: flex;
  gap: 20px;
}
.minor-changes-both .minor-changes .head span {
  color: #14171d;
  font-size: 18px;
  font-weight: 600;
}
.technical-design-wrp .progress-wrapper .cricle-wrp {
  background: #fff;
  width: 100px;
}

.custom-progress-design .progress {
  background: #fff;
}
.custom-progress-design .progress {
  background: #fff;
  border-radius: 30px;
  height: 8px;
}
.custom-progress-design .progress-bar {
  background: #10b981;
}
.design-tab-estimates {
  padding: 20px;
  border: 1px solid #f5f5f5;
  border-radius: 20px;
}
.design-tab-wrraper h2 {
  font-size: 24px;
  color: #1e293b;
  font-weight: 600;
  margin-bottom: 0;
}
.allowance-tracker-wrp {
  padding: 20px;
  border-radius: 20px;
  border: 1px solid #f5f5f5;
  margin-top: 30px;
}

#vendorDetails .modal-dialog {
  max-width: 730px;
}
.popup-filename {
  display: flex;
  gap: 25px;
  width: fit-content;
  background: #f6f6f6;
  padding: 10px;
  border-radius: 15px;
}
.popup-filename button.cross-btn {
  border: none;
}

.chosse-file-inner.popup {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.popup-filename p {
  margin-bottom: 0;
  font-size: 12px;
  font-weight: 600;
  color: #3b424a;
}
.popup-filename p span {
  font-size: 10px;
  font-weight: 600;
  color: #7d7d7d;
  padding-left: 0;
}

.project-table-wrapper {
  border: 1px solid #e4e4e4;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
}

/* =========================
   Top Info
========================= */

.project-table-wrapper .table-top-info {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 18px 20px;
  border-bottom: 1px solid #e4e4e4;
  flex-wrap: wrap;
}

.project-table-wrapper .info-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.project-table-wrapper .info-item img {
  width: 18px;
  height: 18px;
}

/* Vendor Name */
/* .project-table-wrapper .vendor-name-label,
.project-table-wrapper .project-type-label {
  font-size: 16px;
  font-weight: 600;
  color: #222;
} */

.project-table-wrapper .vendor-name-value,
.project-table-wrapper .project-type-value {
  font-size: 16px;
  font-weight: 600;
  color: #14171d;
}
#orderDetails .modal-dialog {
  max-width: 560px;
}
/* =========================
   Table
========================= */

.project-table-wrapper .project-table {
  width: 100%;
  border-collapse: collapse;
}

/* Table Headings */
.project-table-wrapper .project-table thead th {
  text-align: left;
  padding: 18px 20px;
  border-bottom: 1px solid #e5e5e5;
  background: #fff;
}

/* Order ID Heading */
.project-table-wrapper .project-table thead .order-id-details {
  font-size: 14px;
  font-weight: 600;
  color: #000;
}

/* Reference Name Heading */
.project-table-wrapper .project-table thead .reference-name-details {
  font-size: 14px;
  font-weight: 600;
  color: #000;
}

/* Table Body */
.project-table-wrapper .project-table tbody td {
  padding: 24px 20px;
  border-bottom: 1px solid #ededed;
}

/* Order ID Data */
.project-table-wrapper .project-table tbody .order-id-details {
  font-size: 14px;
  font-weight: 400;
  color: #000;
  width: 140px;
}

/* Reference Name Data */
.project-table-wrapper .project-table tbody .reference-name-details {
  font-size: 14px;
  font-weight: 400;
  color: #000;
}

.project-table-wrapper .project-table tbody tr:last-child td {
  border-bottom: none;
}

/* =========================
   Responsive
========================= */

@media (max-width: 768px) {
  .project-table-wrapper .table-top-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .project-table-wrapper .vendor-name-label,
  .project-table-wrapper .project-type-label,
  .project-table-wrapper .vendor-name-value,
  .project-table-wrapper .project-type-value {
    font-size: 14px;
  }

  .project-table-wrapper .project-table thead th,
  .project-table-wrapper .project-table tbody td {
    padding: 16px;
  }

  .project-table-wrapper .project-table thead .order-id-details,
  .project-table-wrapper .project-table thead .reference-name-details,
  .project-table-wrapper .project-table tbody .order-id-details,
  .project-table-wrapper .project-table tbody .reference-name-details {
    font-size: 14px;
  }
}

.technical-design-wrp .progress-wrapper.large::before {
  width: 100%;
}
span.status.overflow-status {
  background: #fef3c780;
  color: #e07706;
}
.shipment-date p {
  font-size: 14px;
  font-weight: 500;
  color: #178dcc;
}
.shipment-date {
  display: flex;
  gap: 10px;
  background: #e0f2fe;
  padding: 10px 20px;
  border-radius: 20px;
  width: fit-content;
}
.days-stored-wrp .fee-days p {
  font-size: 16px;
  font-weight: 500;
  color: #686868;
  margin-bottom: 0px;
}
.days-stored-wrp .fee-days span {
  color: #14171d;
  font-size: 28px;
  font-weight: 500;
}
.days-stored-wrp {
  display: flex;
  justify-content: space-around;
  background: #f3f3f3;
  padding: 20px;
  border-radius: 20px;
}

.penalty-sec p {
  font-size: 16px;
  font-weight: 500;
  color: #000;
}
.penalty-sec span {
  font-size: 16px;
  font-weight: 500;
  color: #e0060a;
}
.penalty-sec {
  display: flex;
  justify-content: space-between;
}
.client-profile-wrp h4 {
  font-size: 20px;
  color: #e0060a;
  font-weight: 500;
}
.client-profile-wrp {
  padding: 20px;
  border: 1px solid #e11d48;
  background: #e0060a1a;
  border-radius: 20px;
}
.penalty-sec span.final-total {
  font-size: 24px;
  font-weight: 500;
}

.client-profile-wrp button.primary-btn {
  width: 100%;
  justify-content: center;
}
button.filter-secondary-btn.client-readiness .form-check-input:checked {
  background-color: #10b981;
  border-color: #10b981;
}
.shipment-tab-wrp {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
a.view-btn-table {
  display: flex;
  gap: 8px;
  color: #000;
  font-size: 14px;
  font-weight: 500;
}
a.auto-assing {
  color: #ed2227;
  text-decoration: underline !important;
}
#assignContainer .modal-dialog {
  max-width: 840px;
}
.order-id-popup p {
  font-size: 14px;
  font-weight: 400;
  color: #000;
  margin-bottom: 0;
}
.order-id-popup span {
  font-size: 14px;
  font-weight: 400;
  color: #000;
}
.order-id-popup {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

/* Inner dropdown Popup */
.custom-select-order {
  width: 100%;
  margin-bottom: 12px;
}

.custom-select-btn {
  width: 100%;
  height: 45px;
  border: 1px solid #a6a6a633;
  color: #616161;
  border-radius: 7px;
  background: #a6a6a60d;
  text-align: left;
  padding: 0 18px;
  position: relative;
  font-weight: 500;
  outline: none;
}
.custom-select-btn:hover {
  width: 100%;
  height: 40px;
  border: 1px solid #a6a6a633;
  color: #616161;
  border-radius: 7px;
  background: #a6a6a60d;
  text-align: left;
  padding: 0 18px;
  position: relative;
  font-weight: 500;
  outline: none;
}
.custom-select-inner .search-box .head-src {
  width: 100%;
}
.custom-select-inner .options .option-item label {
  font-size: 16px;
  font-weight: 500;
  color: #000;
}
.custom-select-btn::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 12px;
  height: 12px;
  border-right: 2px solid #555;
  border-bottom: 2px solid #555;
  transform: translateY(-70%) rotate(45deg);
  transition: 0.3s;
}

.custom-select-btn:not(.collapsed)::after {
  transform: translateY(-30%) rotate(-135deg);
}

.custom-select-body {
  margin-top: 10px;
}

.custom-select-inner {
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 16px;
  background: #fafafa;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.search-box input {
  border-radius: 8px;
  background: #f5f5f5;
  border: none;
  height: 42px;
}

.custom-select-inner .options {
  max-height: 180px;
  overflow-y: auto;
  margin-top: 18px;
  padding-right: 15px;
}

.option-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  font-size: 15px;
}

.form-check-input:checked {
  background-color: #ff2d2d;
  border-color: #ff2d2d;
}

.footer-btns {
  display: flex;
  justify-content: end;
  gap: 10px;
  margin-top: 20px;
}
.accordian-popup-wrp button.accordion-button {
  font-size: 14px;
  background: #000000;
  color: #fff;
  font-weight: 600;
  box-shadow: none;
}
.accordian-popup-wrp .accordion-button::after {
  filter: brightness(0) invert(1);
}
.accordian-popup-wrp .accordion-collapse {
  margin: 10px 0;
  /* border: 1px solid var(--border, #E4E4E4); */
  border-radius: 10px;
}
.accordian-popup-wrp .accordion-item {
  border: none;
  margin-bottom: 7px;
}
.accordian-popup-wrp .accordion-body {
  padding: 0;
}
.accordian-popup-wrp .accordion-body .team-page-inner {
  margin: 0;
}
.remove-tbl-data {
  font-size: 14px;
  font-weight: 400;
  display: flex;
  gap: 10px;
  color: #ed2227;
}
.remove-tbl-data button.remove-btn {
  border: none;
  background: transparent;
}

.storage-wrapper {
  width: 260px;
}

.storage-wrapper .storage-text {
  font-size: 18px;
  margin-bottom: 0;
  color: #333;
}

.storage-wrapper .progress {
  height: 12px;
  border-radius: 20px;
  background: #d9d9d9;
  overflow: hidden;
  width: 50%;
}

.storage-wrapper .progress-bar {
  width: 25%;
  background: #4caf50;
  border-radius: 20px;
}
/* Inner Dropdown Popup */

.avilable-container {
  display: flex;
  justify-content: space-between;
}
.avilable-container .storage-wrapper {
  display: flex;
  width: 60%;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}
.avilable-container .left p {
  font-size: 14px;
  font-weight: 400;
  color: #000;
}
.storage-wrapper .storage-text {
  font-size: 14px;
  font-weight: 400;
  color: #000;
}
button.plus-icon {
  border: none;
  background: transparent;
}
.container-etd-wrp .header-part {
  justify-content: space-between;
  display: flex;
}
.container-etd-wrp .header-part p {
  font-size: 14px;
  font-weight: 400;
  color: #000000;
  margin-bottom: 0;
}
.container-etd-wrp .text-list ul {
  display: flex;
  gap: 40px;
  padding-left: 0;
  margin: 0;
}
.container-etd-wrp .avilability-text {
  display: flex;
  justify-content: space-between;
}
.container-etd-wrp .avilability-text p {
  font-size: 14px;
  margin-bottom: 0;
  font-weight: 400;
  color: #000;
}
.container-etd-wrp .avilability-text span {
  font-size: 14px;
  margin-bottom: 0;
  font-weight: 400;
  color: #000;
}
.container-etd-wrp {
  padding: 20px;
  border: 1px solid #e9e9e9;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.container-etd-wrp hr {
  margin: 0;
}

/* MOBILE */
@media (max-width: 768px) {
  .technical-design-wrp .progress-wrapper .progress-wrapper {
    gap: 24px;
    padding-bottom: 10px;
  }

  .technical-design-wrp .progress-wrapper .step {
    min-width: 120px;
  }

  .technical-design-wrp .progress-wrapper .content h4 {
    font-size: 12px;
  }
}
.footer-popup-btn {
  display: flex;
  gap: 10px;
  justify-content: right;
  padding-top: 10px;
  border-top: 1px solid #a6a6a633;
}
#overFlowWarning .modal-dialog {
  max-width: 840px;
}

#overFlowWarning .user-table td {
  border-right: none;
}
.table-assign-id {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
}
#overFlowWarning .team-page-inner {
  margin: 0;
}
.table-assign-id p {
  font-size: 14px;
  font-weight: 400;
  color: #000000;
  margin: 0;
}
.table-assign-id span {
  font-size: 14px;
  font-weight: 400;
  color: #000000;
}
.over-flow-headear-popup p {
  font-size: 14px;
  font-weight: 400;
  color: #000000;
}
.over-flow-headear-popup ul li {
  font-size: 14px;
  font-weight: 400;
  color: #000000;
}
.over-flow-headear-popup ul {
  display: flex;
  gap: 50px;
  padding-bottom: 5px;
  border-bottom: 1px solid #e1e1e1;
}
.warning-table-wrp {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.auto-assign-tbl-data {
  font-size: 14px;
  font-weight: 400;
  color: #10b981;
}
.modal.fade.show .user-table th {
  background-color: #f3f3f3;
}
.max-limit-popup {
  font-size: 14px;
  font-weight: 500;
  color: #e0060a;
  background: #e0060a0d;
  padding: 10px;
  width: fit-content;
  border-radius: 15px;
}
p.still-assign-text {
  font-size: 14px;
  font-weight: 400;
  color: #000;
  margin-bottom: 0;
}
.form-check.form-switch.green .form-check-input:checked {
  background-color: #10b981;
  border-color: #10b981;
}

.shipment-tracking-body {
  padding: 20px;
}

.tracking-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 28px;
}

.tracking-left {
  display: flex;
  gap: 14px;
  align-items: center;
}

.tracking-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
}

.completed .tracking-icon {
  background-color: #d1fae580;
  border-radius: 30%;
  padding: 18px;
}

.active .tracking-icon {
  background-color: #fef3c780;
  border-radius: 30%;
  padding: 18px;
}

.pending .tracking-icon {
  background-color: #e1e1e1;
  border-radius: 30%;
  padding: 18px;
}

.tracking-content h5 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #686868;
}

.tracking-content p {
  margin: 10px 0 0 0;
  font-size: 16px;
  font-weight: 600;
  color: #a0a0a0;
}

.tracking-file {
  margin-top: 10px;
  font-size: 12px;
  font-weight: 600;
  color: #3b424a;
}
.tracking-file span {
  padding: 6px 10px;
  background: #f3f3f3;
  border-radius: 15px;
}
.tracking-date {
  font-size: 16px;
  white-space: nowrap;
  color: #686868;
}
.tracking-file .file-btn {
  background: transparent;
  border: none;
}
.tracking-status.active-status {
  background: #d1fae580;
  color: #10b981;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 400;
  display: flex;
  gap: 5px;
  align-items: center;
}
.tracking-status.active-status span {
  height: 5px;
  width: 5px;
  border-radius: 50%;
  display: inline-flex;
  background: #10b981;
  gap: 7px;
}
#shipmentTracking .modal-dialog {
  max-width: 840px;
}

.table-responsive {
  overflow-x: auto;
}

/* ---------- BOM TABLE ---------- */

.bom-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.bom-top-header {
  padding: 18px 20px;
  box-shadow: 0px -1px 0px 0px #e1e1e1 inset;
  border: 1px solid #e1e1e1;
}

.bom-top-header h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.bom-info-row {
  display: flex;
  gap: 40px;
  padding: 15px 20px;
  background: #fafafa;
  border-left: 1px solid #e4e4e4;
  border-right: 1px solid #e4e4e4;
  box-shadow: 0px -1px 0px 0px #e1e1e1 inset;
}

.bom-info {
  font-size: 18px;
  font-weight: 600;
  color: #14171d;
}
.bom-info img {
  margin-right: 5px;
}
.bom-info span {
  font-weight: 600;
}

.bom-info i {
  margin-right: 6px;
}

.bom-table tfoot tr {
  background: #ef1f2f;
  color: #fff;
  font-weight: 600;
}

.bom-table tfoot td {
  border: none;
}

/* ---------- USER TABLE ---------- */

.user-table-wrapper-1 {
  background: #fff;
  border-radius: 10px;
  overflow: auto;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.user-table {
  min-width: 2400px;
}

.mail-phone {
  margin: 0;
  line-height: 1.7;
}

.mail-phone span {
  color: #777;
}

.issue-logged {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.issue-logged p {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
}

.issue-logged span {
  color: #777;
}

.download-icon-ticket i,
.edit-icon-ticket i {
  color: #000;
  font-size: 18px;
}

.view-color {
  color: #ef1f2f;
  text-decoration: none;
  font-weight: 500;
}

.iye-edit-ticket {
  text-align: center;
}
.team-page-two .user-table-wrapper-1 table tr th:first-child {
  border-top-left-radius: 0;
}
.team-page-two .user-table td {
  border-right: none;
}
.team-page-two .user-table th:not(:first-child),
.user-table td:not(:first-child) {
  text-align: center;
}
.bom-top-header h4 {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  color: #1e293b;
}
.team-page-two .user-table-wrapper-1 tfoot {
  background: #ed2227;
}
.team-page-two .user-table-wrapper-1 tfoot td {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}
.team-page-two .user-table td {
  color: #000;
}
.bom-info-row.second {
  border-top: 1px solid #e4e4e4;
  box-shadow: 0px -1px 0px 0px #e1e1e1 inset;
}
.ready-week img {
  height: 16px;
  width: 16px;
  margin-left: 5px;
}
.consolidated-bom-wrapper-both {
  width: 70%;
}

/* =========================
   COMMON CARD
========================= */

.bom-card,
.summary-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 14px;
}

/* =========================
   HEADER
========================= */

.card-header {
  background: #f3f3f3;
  padding: 16px;
  border-bottom: 1px solid #e5e5e5;
}

.card-header h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  color: #1e293b;
}

.summary-header {
  background: #000;
  padding: 16px;
}

.summary-header h3 {
  margin: 0;
  color: #fff;
  font-size: 22px;
  font-weight: 500;
}

/* =========================
   BODY
========================= */

.card-body {
  padding: 18px 16px;
}

.info-block {
  margin-bottom: 18px;
}

.label-title {
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 600;
  color: #14171d;
}

.vendor-list {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.vendor-list span {
  font-size: 18px;
  font-weight: 600;
  color: #14171d;
  display: flex;
  align-items: center;
  gap: 7px;
}

.vendor-list i {
  font-size: 14px;
}

/* =========================
   COST FOOTER
========================= */

.cost-footer {
  padding: 16px;
  border-top: 1px solid #e1e1e1;
}

.cost-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.cost-row p {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #524d59;
}

.cost-row h2 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  color: #000000;
}

.profit-box {
  background: #d1fae580;
  color: #10b981;
  font-size: 20px;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 8px;
}

/* =========================
   SUMMARY BODY
========================= */

.summary-body {
  padding: 0 16px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid #ececec;
}

.vendor-name {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 600;
  color: #14171d;
}

.subtotal {
  display: flex;
  align-items: center;
  gap: 8px;
}

.subtotal span {
  color: #524d59;
  font-size: 16px;
  font-weight: 600;
}

.subtotal strong {
  font-size: 20px;
  font-weight: 600;
  color: #000;
}

/* =========================
   FINAL TOTAL
========================= */

.final-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 16px;
}

.final-total span {
  font-size: 20px;
  color: #524d59;
  font-weight: 600;
}

.final-total h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  color: #000;
}

/* =========================
   DOWNLOAD BUTTON
========================= */

.download-btn-wrap {
  padding: 0 10px 14px;
}

.download-btn {
  width: 100%;
  height: 44px;
  border: 1px solid #686868;
  background: #fff;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: 0.3s;
  font-weight: 500;
  color: #000;
}

.bom-wrapper {
  width: 30%;
}
.both-left-right-bom {
  display: flex;
  gap: 15px;
}
/* Dev css */
.ts-wrapper {
  position: relative;
}

/* Add dropdown arrow */
.ts-wrapper .ts-control {
  position: relative;
  padding-right: 35px;
  /* Space for arrow */
}

/* Arrow */
.ts-wrapper .ts-control::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 12px;
  width: 10px;
  height: 6px;
  transform: translateY(-50%);
  pointer-events: none;

  /* SVG down arrow */
  background: url("../images/Vector.svg") no-repeat center;
  background-size: 10px 6px;
}

/* Rotate arrow when dropdown is open */
.ts-wrapper.dropdown-active .ts-control::after {
  transform: translateY(-50%) rotate(180deg);
}

.ts-wrapper .ts-control::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 12px;
  width: 7px;
  height: 7px;
  border-right: 2px solid #666;
  border-bottom: 2px solid #666;
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}

.ts-wrapper.dropdown-active .ts-control::after {
  transform: translateY(-30%) rotate(-135deg);
}
.ai-inline-panel {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 10px;
  background: #fafafa;
}

.ai-tone-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.ai-tone-pill {
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid #d0d0d0;
  background: #fff;
  color: #444;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.15s ease;
}

.ai-tone-pill:hover {
  border-color: #999;
}

.ai-tone-pill.active {
  background: #6b6b6b;
  border-color: #6b6b6b;
  color: #fff;
}

.ai-regenerate-btn {
  background: #e8483a;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.ai-regenerate-btn:hover {
  background: #d63c2f;
}
.ai-regenerate-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
/* Dev css */
.mail-thread-wrp {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.thread-item {
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 10px 14px;
}

.thread-item.outgoing {
  background: #f5f8ff;
  border-color: #dbe4ff;
  margin-left: 24px;
}

.thread-item.incoming {
  background: #fafafa;
  margin-right: 24px;
}

.thread-item-head {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  margin-bottom: 6px;
  color: #555;
}

.notification-dropdown-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 16px 20px;
}

.btn-cancel {
  background: #fff;
  border: 1px solid #d0d0d0;
  border-radius: 999px;
  padding: 8px 22px;
  margin-right: 10px;
  color: #444;
}

.btn-cancel:hover {
  border-color: #999;
}
.mail-user-left {
  margin-left: auto;
}
.format-toolbar {
  display: flex;
  gap: 6px;
  padding: 8px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 8px;
  background: #fafafa;
  width: fit-content;
}

.format-toolbar button {
  width: 32px;
  height: 32px;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
  color: #444;
}

.format-toolbar button:hover {
  background: #f0f0f0;
}

.attachment-preview {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  margin: 8px 0;
  font-size: 13px;
  width: fit-content;
}

.attachment-preview .remove-attachment {
  color: #e8483a;
  cursor: pointer;
  font-weight: bold;
}
.mail-attachments-wrp {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.attachment-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  font-size: 13px;
  color: #333;
  text-decoration: none;
}

.attachment-chip:hover {
  background: #f5f5f5;
}
.mail-thread-wrp {
  margin-top: 12px;
}
.thread-item {
  border-left: 3px solid #e0e0e0;
  padding: 10px 14px;
  margin-bottom: 10px;
  border-radius: 4px;
  background: #fafafa;
}
.thread-item.outgoing {
  border-left-color: #4c6ef5;
  background: #f2f4ff;
}
.thread-item.incoming {
  border-left-color: #adb5bd;
}
.thread-item-head {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #555;
  margin-bottom: 6px;
}
.thread-count-badge {
  display: inline-block;
  min-width: 18px;
  text-align: center;
  background: #4c6ef5;
  color: #fff;
  border-radius: 10px;
  font-size: 11px;
  padding: 1px 6px;
  margin-left: 6px;
}
tr.row-selected {
  background-color: #d1d1d1 !important;
}
tr.row-selected td {
  background-color: #d1d1d1 !important;
}
.status {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}

/* Design */
.phase-design {
  background: #e8e9ff;
  color: #5c6cff;
}

/* Installation */
.phase-installation {
  background: #ddf6ef;
  color: #18b893;
}

/* Production */
.phase-production {
  background: #fff4dd;
  color: #f59e0b;
}

/* Shipping */
.phase-shipping {
  background: #e3f2ff;
  color: #3b82f6;
}

/* Default */
.phase-default {
  background: #f3f4f6;
  color: #6b7280;
}
table.dataTable th, table.dataTable td {
    text-align: left !important;
}
#editProject .modal-dialog {
    max-width: 750px !important;
}