:root {
  --primary-color: #020230;
  --primary1-color: #2d2d50;
  --primary2-color: #374151;
  --blue-primary-color: #25cad2;
  --blue-primary-dark: #48a0a5;
  --blue-light: #ebf4fa;
  --blue-primary1-color: #06a4d3;
  --blue-primary2-color: #14468a;
  --blue-primary3-color: #3a8ed0;
  --gray-primary-color: #6b7280;
  --gray-primary1-color: #a1a1aa;
  --gray-primary2-color: #9ca3af;
  --gray-primary3-color: #f9fafb;
  --gray-primary4-color: #84818a;

  --gray-dark-color: #6c757d;
  --border-color: #e5e7eb;
  --border1-color: #dee2e6;
  --white-color: #ffffff;
  --white1-color: #f1f2f7;
  --white2-color: #f8fafc;
  --white3-color: #eef3f8;
  --text: #020230;
  /* common on light and dark */
  --text2: #141619;
  --text3: #2e2c34;
  --black: #000000;
  --black1: #0f172a;
  --black2: #111827;
  --red: #e11d48;
  --red-light: #ffe4e6;
  --red-light2: #fda4af;
  --green: #2e8f3f;
  --green-light: #0d9488;
  --green-light1: #ccfbf1;
  --green-light2: #14b8a6;
  --green-light3: #5a7052;
  --green-light4: #def2d6;
  --orange: #d97706;
  --orange-light: #fef3c7;
}

[data-theme='dark'] {
  --primary-color: #020230;
}

.tooltip {
  /* position: relative; */
}

.tooltip .tooltiptext {
  visibility: hidden;
  /* width: 100%; */
  background-color: var(--primary2-color);
  color: #fff;
  text-align: center;
  border-radius: 6px;
  /* padding: 5px 0; */
  position: absolute;
  z-index: 10000;
  /* bottom: 125%; */
  font-size: 12px;
  /* left: 50%; */
  /* margin-left: -50%; */
  opacity: 0;
  transition: opacity 0.3s;
  line-height: 16px;
  /* display: flex; */
  padding: 5px;
  left: 80px;
}

body.arabic .tooltip .tooltiptext {
  left: unset;
  right: 80px;
}

.tooltip .tooltiptext::after {
  content: '';
  position: absolute;
  top: 50%;
  border-width: 5px;
  border-style: solid;
  border-color: var(--primary2-color) transparent transparent transparent;
  left: -10px;
  transform: rotate(90deg) translateX(-50%);
  /*   
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: var(--primary2-color) transparent transparent transparent; */
}

body.arabic .tooltip .tooltiptext::after {
  left: unset;
  right: -10px;
  top: unset;
  transform: rotate(275deg) translateX(-50%);
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

body.arabic .rtl-reverse {
  flex-direction: row-reverse;
}

body.arabic .breadcrumbs__item::after {
  transform: translateY(-50%) scale(-1) !important;
}

body.arabic .flip > * {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
  -ms-filter: 'FlipH';
  -webkit-filter: FlipH;
  filter: FlipH;
}

body.arabic th {
  text-align: right !important;
}

.rdrInputRanges {
  color: #020230;
}

.row {
  display: flex;
  align-items: center;
  flex-direction: row;
}

input[type='range'] {
  accent-color: var(--blue-primary-color);
}

.circular-progress {
  width: 45px;
  height: 45px;
  margin-inline-start: 20px;
}

.circular-progress.red {
}

.progressbar-container {
  height: 10px;
  display: flex;
  align-items: center;
}

.progressbar-container .progressbar-step:last-child {
  margin-inline-end: 0;
}

.progressbar-step .progressbar-step-title span {
  margin-inline-end: 5px;
  border: 1px solid var(--black2);
  padding: 3px;
  border-radius: 100px;
  width: 12px;
  height: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}

.progressbar-step .progressbar-step-title {
  display: flex;
  align-items: center;
  position: absolute;
  top: -35px;
  color: var(--black2);
  left: 2px;
  font-size: 13px;
  font-weight: 700;
}

.progressbar-container .progressbar-step {
  height: 100%;
  flex: 1;
  margin-inline-end: 5px;
  background-color: var(--gray-primary3-color);
  border-radius: 100px;
  transition: all 0.5s ease-in-out;
  position: relative;
}

.progressbar-container .progressbar-step.active {
  background-color: var(--blue-primary-color);
  transition: all 0.5s ease-in-out;
}

.loader-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.loader-spin {
  animation: animName 4s linear infinite;
}

@keyframes animName {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.init-loader-view .loader-container {
  height: 100%;
}

.init-loader-view {
  height: calc(100vh - 105px);
  /* padding-top: 93px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column; */
}

button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.button {
  /* min-width: 100px; */
  /* border-radius: 10px !important; */
  /* font-size: 16px;
  height: 40px;
  padding: 0 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: unset;
  box-sizing: border-box; */
}

.button .btn-title {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.button i {
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.button svg,
.button svg {
  /* margin-inline-end: 7px; */
  height: 15px;
  width: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.button.gradient {
  background: linear-gradient(
    265.18deg,
    var(--blue-primary-color) -0.01%,
    var(--blue-primary2-color) 99.01%
  );
  box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
}

.mainDash {
  margin: 70px 0 0px 96px;
  padding: 20px 24px 0 24px;
}

.opportOuter {
  margin-bottom: 100px;
}

.opportunity-content {
  display: flex;
  flex-direction: column;
  height: calc(100vh - 100px);
  /* background: red; */
  overflow: hidden;
}

.quick-add-form .opport__col {
  width: 100%;
  margin: 10px 0;
}

/* dev */
.advance-search-types-container {
  display: flex;
  align-items: center;
}

.advance-search-type-container {
  display: flex;
  margin-inline-end: 25px;
  align-items: center;
}

.advance-search-modal-content {
  /* height: 70vh;
    overflow: scroll; */
}

.advance-search-section-heading {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  display: flex;
  align-items: center;
  color: var(--primary2-color);
  margin-bottom: 10px;
}

.advance-search-section {
  padding-top: 15px;
  padding-bottom: 10px;
  border-top: 1px solid var(--border-color);
}

.advance-search-section:nth-child(2)
  .advance-search-section-fields
  .advance-search-section-field {
  width: 49%;
}

.advance-search-section-fields .css-12jo7m5 {
  color: var(--blue-primary-color);
  font-size: 11px;
  font-weight: 700;
  padding: 0px 3px;
}

.advance-search-section-fields {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.advance-search-section-field {
  width: 49%;
}

/* .advance-search-section-fields > div:last-child {
    flex-grow: .95;
  } */

.advance-search-type-container span span {
  margin: 0 5px;
  color: var(--border-color);
}

.advance-search-type-container span {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  display: flex;
  align-items: center;
  color: var(--primary2-color);
  margin-inline-start: 5px;
}

.advance-search-modal-layer {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 100;
}

.advance-search-modal-container {
  display: flex;
  flex-direction: column;
  /* align-items: flex-end; */
  /* padding: 24px; */
  gap: 14px;
  /* position: absolute; */
  /* width: 573px; */
  /* left: 30%; */
  /* left: 757px; */
  /* top: 70px; */
  /* z-index: 100; */

  /* background: var(--white-color); */
  /* box-shadow: 0px 7px 14px rgba(0, 0, 0, 0.35); */
  /* border-radius: 8px; */
}

.company-image-actions {
  opacity: 0;
  position: absolute;
  display: flex;
  align-items: center;
  transition: all 0.2s ease-in;
  background: rgba(3, 3, 3, 0.2);
  width: 100%;
  height: 100%;
  justify-content: center;
}

.company-image-actions span:hover {
  transform: scale(1.3);
  transition: all 0.2s ease-in;
}

.company-image-actions span {
  transition: all 0.2s ease-in;
  margin: 0 5px;
  cursor: pointer;
  position: relative;
}

.company-image-actions .edit-svg svg path {
  /* fill: var(--black1); */
}

.company-image-actions svg {
  height: 18px;
  width: 18px;
}

.company-image-actions .edit-svg {
  top: 4px;
}

.company__text p,
.userInfo__info-content-name,
th > div,
td > div {
  word-break: break-word !important;
  white-space: break-spaces !important;
}

.info-table table .opportRow select {
  min-width: 140px;
}

.button.transparent-btn {
  border: 1px solid var(--border-color);
  border-radius: 10px;
  color: var(--primary2-color);
  background: transparent;
}

.button.red {
  border: 1px solid var(--red) !important;
  background-color: var(--red) !important;
  color: white !important;
}

.button.success,
.button.green {
  border: 1px solid var(--green) !important;
  background-color: var(--green) !important;
  color: white !important;
}

.copyright__nav-link {
  margin-inline-start: 16px;
}

.nav__inner-link {
  margin-inline-end: 24px;
}

.nav__inner-lang-title span {
  margin-inline-start: 5px;
}

.nav__inner-lang-content-link {
  text-align: center;
}

.nav__inner .button {
  margin-inline-start: 24px;
}

.company__header-date img {
  margin-inline-end: 3px;
  margin-inline-start: 3px;
}

.company__header-title,
.company__header-title a {
  font-weight: 600;
  font-size: 18px;
  line-height: 110%;
  color: var(--primary1-color);
  margin-bottom: 5px;
}

.company__info-social {
  flex-wrap: wrap;
}

.table table tbody td span.locate svg {
  margin-inline-end: 6px;
}

.sidebar__inner-nav-link span {
  margin-inline-start: 15px;
}

.help__text {
  margin-inline-start: 15px;
}

.account {
  overflow: hidden;
}

.account__name {
  margin-inline-start: 15px;
}

.switch span svg {
  margin-inline-end: 6px;
}

.switchBtn {
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.dHeader__inner-search .search-dropdown {
  position: absolute;
  background: var(--dash-bg);
  width: 100%;
  max-height: 250px;
  overflow: auto;
  padding: 20px;
  box-sizing: border-box;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  font-family: 'Inter', sans-serif;
  top: 44px;
  left: 0;
}

.dHeader__inner-search .search-dropdown .dropdown-item-row {
  padding: 5px 0;
}

.dropdown-item-row:hover {
  opacity: 0.8;
}

.dHeader__inner-search .search-dropdown h3 {
  color: var(--para-color);
  font-size: 16px;
  text-transform: uppercase;
}

.dHeader__inner-search .search-dropdown p {
  font-size: 14px;
  cursor: pointer;
  color: var(--para-color);
}

.dHeader__inner-btn svg,
.dHeader__inner-btn i {
  margin-inline-end: 10px;
}

.dHeader .nav__inner-lang svg {
  margin-inline-end: 5px;
}

.dHeader .nav__inner-lang svg:last-child {
  margin-inline-start: 15px;
}

.dHeader .account__avatar {
  background: var(--white-color);
}

.intro__inner-social-link {
  margin-inline-start: 16px;
}

.form-error {
  color: var(--red);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
}

.gradient {
  background: var(--blue-primary-color);
  /* background: -webkit-linear-gradient(to right, var(--blue-primary1-color) 0%, var(--blue-primary2-color) 100%);
  background: -moz-linear-gradient(to right, var(--blue-primary1-color) 0%, var(--blue-primary2-color) 100%);
  background: linear-gradient(to right, var(--blue-primary1-color) 0%, var(--blue-primary2-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; */
}

.platform-section-card {
  /* Auto layout */

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 40px;
  height: 260px;
  background: var(--white-color);
  border: 1px solid rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
  box-shadow: 0px 4px 8px -2px rgba(17, 24, 39, 0.1),
    0px 2px 4px -2px rgba(17, 24, 39, 0.06);
  border-radius: 24px;
  flex: none;
  margin: 10px;
}

.platform-section-cards {
  display: grid;
  grid-template-columns: 50% 50%;
}

.platform-section-heading-container {
  text-align: center;
  max-width: 70%;
  margin: 0 auto;
  margin-bottom: 30px;
}

.platform-section-heading {
  font-weight: 700;
  font-size: 32px;
  line-height: 40px;
}

.platform-section-text {
  color: var(--black1);
  margin: 20px 0;
}

.feature,
.platform-section {
  padding: 65px 0;
  background: var(--white1-color);
}

.platform-icon-bg {
  height: 64px;
  width: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background-image: linear-gradient(
    to right,
    var(--blue-primary-color) 0%,
    var(--blue-primary2-color) 100%
  );
  margin-inline-end: 15px;
}

.feature,
.platform-section {
  padding: 65px 0;
  background: var(--white1-color);
}

.featureCard__body h5 span {
  margin-inline-end: 25px;
}

.favorite__inner-image {
  margin-inline-end: -200px;
}

.favorite__inner-apps-item {
  margin-inline-end: 24px;
}

.search__header-row .sort-section svg {
  width: 15px;
  height: 15px;
}

.search__header-row .sort-section {
  box-sizing: border-box;
  background: var(--white-color);
  border: 1px solid var(--border-color);
  box-shadow: 0px 1px 2px rgb(31 41 55 / 8%);
  border-radius: 4px;
  font-weight: 400;
  font-size: 14px;
  line-height: 14px;
  color: var(--primary2-color);
  padding: 5px;
  margin-inline-start: 10px;
}

.search__header-row {
  -ms-flex-align: center;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
}

.search select,
.search .select {
  box-sizing: border-box;
  margin-inline-start: 16px;
  width: unset;
}

.pro span {
  padding: 2px 6px;
  /* width: 37px; */
  height: 20px;
  font-size: 12px;
  line-height: 20px;
  background: var(--blue-primary-color);
  border-radius: 4px;
  color: var(--white-color);
}

.general-view-section {
  max-width: 900px;
}

.general ul li {
  margin-inline-end: 20px;
  word-break: break-word;
}

.generalTitle svg {
  margin-inline-end: 5px;
  /* margin-inline-start: 5px; */
}

.generalTitle i {
  /* margin-inline-start: 5px; */
  margin-inline-end: 5px;
  /* font-size: 100%; */
  width: 100%;
  min-width: 15px;
}

.location__inner {
  justify-content: space-between;
  align-items: center;
  border: 1px solid var(--border-color);
  border-radius: 9px;
  padding: 24px;
  margin-bottom: 14px;
}

.location-view-section {
  flex: 1;
}

.btn-gray {
  color: var(--primary2-color);
  background: var(--gray-primary3-color);
  border: 1px solid var(--border-color);
}

.disable-input {
  cursor: no-drop;
  opacity: 0.75;
}

.button.disable,
.btn-disable {
  color: var(--primary2-color);
  background: var(--gray-primary3-color);
  border: 1px solid var(--border-color);
  cursor: no-drop;
  opacity: 0.5;
  /* pointer-events: none; */
}

.clientBox__footer-row span {
  margin-inline-end: 10px;
}

.feedTwitter__content-footer-info svg {
  margin-inline-end: 3px;
  margin-inline-start: 3px;
}

.feedLinked {
  box-sizing: border-box;
  box-shadow: 0px 1px 2px rgba(31, 41, 55, 0.08);
}

.feedLinked__header-avatar {
  margin-inline-end: 8px;
}

.feedLinked__body-hash a {
  margin-inline-end: 5px;
}

.feedLinked__trans-emoji a {
  margin-inline-end: 8px;
}

.feedLinked__footer-info svg {
  margin-inline-end: 5px;
}

.feedFacebook__header-avatar {
  margin-inline-end: 6px;
}

.feedFacebook__trans span {
  margin-inline-start: 3px;
}

.feedFacebook__trans strong {
  margin-inline-start: 4px;
}

.feedFacebook__trans-emoji {
  margin-inline-start: -2px;
}

.feedFacebook__trans-emoji:nth-child(1) {
  margin-inline-start: 0;
}

.feedFacebook__footer-info svg {
  margin-inline-end: 4px;
  margin-inline-start: 4px;
}

.sign.wider .sign__inner {
  /* max-width: 530px; */
  width: 770px;
  min-height: 50vh;
}

.sign__inner .report-card:hover,
.sign__inner .report-card.active {
  border-color: var(--blue-primary3-color);
  box-shadow: 0px 0px 2px 0px var(--blue-primary3-color);
}

@-webkit-keyframes sign {
  0% {
    margin-top: 60px;
    opacity: 0;
  }

  100% {
    margin-top: 0;
    opacity: 1;
  }
}

@keyframes sign {
  0% {
    margin-top: 60px;
    opacity: 0;
  }

  100% {
    margin-top: 0;
    opacity: 1;
  }
}

.signSubtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 10px;
  line-height: 32px;
  color: var(--primary1-color);
}

.signTitle {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  color: var(--primary2-color);
  margin-bottom: 10px;
}

.signUniqTitle {
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 13px;
  margin-bottom: 4px;
  color: var(--blue-primary2-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.signUniqTitle span {
  font-size: 10px;
  line-height: 12px;
  font-weight: 500;
  color: var(--blue-primary2-color);
}

.signText {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--primary2-color);
  margin-bottom: 24px;
  display: block;
}

.sign .numberInput::-webkit-inner-spin-button {
  opacity: 1;
}

.signPlan {
  position: relative;
}

.signPlan .signUniqTitle {
  position: relative;
  z-index: 2;
}

.signPlan input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 3;
  cursor: pointer;
}

.signPlan input:checked ~ label::before {
  background: linear-gradient(
    265.18deg,
    var(--blue-primary-color) -0.01%,
    var(--blue-primary2-color) 99.01%
  );
}

.signPlan input:checked ~ label::after {
  opacity: 1;
}

.signPlan input:checked ~ label {
  -webkit-box-shadow: 0px 6px 14px rgba(16, 24, 40, 0.1);
  box-shadow: 0px 6px 14px rgba(16, 24, 40, 0.1);
}

.signPlan label {
  padding: 11px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
}

.signPlan label::after {
  position: absolute;
  top: 2px;
  left: 2px;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  background: var(--white-color);
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  border-radius: 5px;
  content: '';
}

.signPlan label::before {
  position: absolute;
  top: 0;
  border-radius: 6px;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  background: var(--white-color);
  border: 1px solid var(--border-color);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.signPlan .signPrice__number {
  margin-bottom: 10px;
  z-index: 2;
  position: relative;
}

.signPlan p {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 12px;
  position: relative;
  z-index: 2;
  line-height: 13px;
  color: var(--gray-primary-color);
}

.signPrice {
  margin-top: 16px;
  margin-inline-start: 8px;
}

.signPrice button {
  background: var(--text2);
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 10px;
  color: white;
  margin: 10px 0;
}

.signPrice__number {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 10px;
  line-height: 11px;
  color: var(--gray-primary2-color);
}

.signPrice__number strong {
  font-weight: 700;
  font-size: 20px;
  line-height: 25px;
  color: var(--black2);
}

.signInput .divider-arrow svg {
  position: relative;
  top: 2px;
}

.signInput .divider-arrow {
  padding: 0 5px;
  background: var(--gray-primary3-color);
  border: 1px solid var(--border-color);
}

.signInput .divider-arrow svg path {
  fill: var(--gray-primary-color);
}

.signInput .react-tel-input .form-control {
  width: 100%;
}

.signInput .country-name {
  color: var(--primary-color);
  font-family: 'Inter';
}

.remove-margin .signInput {
  margin-bottom: 0px;
}

.signInput {
  margin-bottom: 10px;
}

.signInput button {
  background: none;
}

.signInput .up {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 6.3px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
}

.signInput .up svg {
  width: 100%;
}

.signInput .down {
  position: absolute;
  bottom: 8px;
  right: 8px;
  width: 6.3px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.signInput .down svg {
  width: 100%;
}

.signInput__icon {
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 52px;
  height: 100%;
  background: var(--border-color);
  border-right: 1px solid var(--border-color);
  border-radius: 8px 0 0 8px;
}

.signInput__icon svg {
  width: 16px;
  color: var(--gray-primary2-color);
}

.signInput__name {
  position: absolute;
  top: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 95px;
  height: 100%;
  background: var(--border-color);
  border-left: 1px solid var(--border-color);
  border-radius: 0 8px 8px 0;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: var(--gray-primary2-color);
}

.signInput.signInput-domain .signInput__inner {
  padding: 0 95px 0 52px;
}

.signInput label,
.label {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  color: var(--gray-primary-color);
  margin-bottom: 8px;
}

.signInput__row {
  display: flex;
  justify-content: space-between;
}

.signInput__row.space24 {
  margin-bottom: 16px;
}

.signInput__row.space {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-color);
}

.signInput__col {
  width: calc(50% - 5px);
}

.signInput__col.big {
  width: calc(70% - 5px);
}

.signInput__col.sm {
  width: calc(30% - 5px);
}

.signInput__col.med {
  width: calc(33% - 5px);
}

.signSelect {
  margin-bottom: 16px;
}

.signSelect label {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: var(--gray-primary-color);
  margin-bottom: 8px;
}

.signSelect .signInput__inner {
  position: relative;
  padding-left: 0;
  display: flex;
}

.signSelect__select {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: unset;
  border-radius: 8px 0 0 8px;
  /* padding: 0px 8px; */
}

.signSelect__select select {
  background: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-right: 1px solid var(--border-color);
  border-radius: 4px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: var(--primary2-color);
  max-width: 85px;
}

.signBtn {
  background: var(--primary1-color);
  border-radius: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 18px;
  color: var(--white-color);
  padding: 11px;
  display: block;
  text-align: center;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  height: 45px;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  margin-top: 24px;
  margin-bottom: 0;
}

.signBtn:hover {
  opacity: 0.8;
}

.signBtn > div > svg {
  width: 100%;
  height: 100%;
}

.signOr {
  position: relative;
  text-align: center;
  margin-bottom: 24px;
}

.signOr::before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -moz-ransform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: var(--gray-primary2-color);
}

.signOr span {
  display: inline-block;
  padding: 0 16px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: var(--gray-primary2-color);
  background: var(--white-color);
  position: relative;
}

.signCheck {
  position: relative;
  margin-bottom: 24px;
}

.signCheck.secondary input:checked ~ label::before {
  background: var(--blue-primary-color);
}

.signCheck.secondary input:checked ~ label::after {
  opacity: 1;
}

.signCheck input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
  cursor: pointer;
}

.signCheck input:checked ~ label::before {
  background: var(--primary1-color);
}

.signCheck input:checked ~ label::after {
  opacity: 1;
}

.signCheck label {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: var(--primary2-color);
  padding-left: 24px;
  position: relative;
}

.checkboxContainer {
  position: relative;
  margin-bottom: 24px;
}

.label {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: var(--primary2-color);
  /* padding-left: 24px; */
  position: relative;
}

.signCheck label::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 16px;
  height: 16px;
  border: 1px solid var(--border-color);
  content: '';
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  border-radius: 4px;
}

.signCheck label:after {
  content: '';
  position: absolute;
  opacity: 0;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  left: 5.5px;
  top: 3px;
  width: 4px;
  height: 8px;
  border: 2px solid var(--white-color);
  border-radius: 2px;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.2s linear;
}

.signRadio {
  padding: 13px 0;
  position: relative;
  margin: 12px 0;
}

.signRadio input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
  cursor: pointer;
}

.signRadio input:checked ~ label::before {
  border: 1px solid var(--blue-primary-color);
}

.signRadio input:checked ~ label::after {
  opacity: 1;
}

.signRadio label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: var(--primary2-color);
  padding-left: 36px;
  position: relative;
}

.signRadio label img {
  width: 46px;
}

.signRadio label::before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -moz-ransform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  content: '';
}

.signRadio label::after {
  position: absolute;
  content: '';
  width: 12px;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  height: 12px;
  background: var(--blue-primary-color);
  border-radius: 50%;
  top: 50%;
  left: 5px;
  transform: translateY(-50%);
  -moz-ransform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  opacity: 0;
}

.signTab {
  display: none;
}

.signTab.active {
  display: block;
}

.sign .error {
  padding: 11px 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 16px;
  background: var(--red-light);
  border: 1px solid var(--red-light2);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 4px;
  display: none;
}

.sign .error.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.error__text {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: var(--red);
  /* display: block; */
}

.sign .error__icon {
  width: 20px;
  height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-inline-end: 16px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.sign .error svg {
  width: 100%;
  color: var(--red);
}

.sign .splitInput {
  max-width: 280px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 5px;
}

.sign .splitInput__input {
  position: relative;
  width: calc(16.6% - 4px);
  -webkit-box-shadow: 0px 1px 2px rgba(31, 41, 55, 0.08);
  box-shadow: 0px 1px 2px rgba(31, 41, 55, 0.08);
  border-radius: 4px;
  border: 1px solid var(--border-color);
}

.sign .splitInput input {
  background: var(--white-color);
  border-radius: 4px;
  position: relative;
  z-index: 1;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: var(--primary2-color);
  height: 36px;
  text-align: center;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  border: 3px solid transparent;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
}

.sign .splitInput input:focus {
  -webkit-box-shadow: 0px 1px 2px rgba(31, 41, 55, 0.1);
  box-shadow: 0px 1px 2px rgba(31, 41, 55, 0.1);
  /* border: 3px solid #c2dcf0; */
  border: 3px solid var(--blue-light);
}

.sign .cardInput {
  margin-bottom: 16px;
  position: relative;
}

.sign .cardInput__input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 36px;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: var(--white-color);
  border: 1px solid var(--border-color);
  -webkit-box-shadow: 0px 1px 2px rgba(31, 41, 55, 0.08);
  box-shadow: 0px 1px 2px rgba(31, 41, 55, 0.08);
  border-radius: 4px;
  padding: 5px 8px;
}

.sign .cardInput__input input {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: var(--primary2-color);
  line-height: 20px;
  margin-inline-end: 8px;
  width: 35px;
  text-align: center;
}

.sign .cardInput__card {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  -moz-ransform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  width: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.sign .cardInput__card img {
  width: 100%;
}

.sign .dateInput__input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 36px;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: var(--white-color);
  border: 1px solid var(--border-color);
  -webkit-box-shadow: 0px 1px 2px rgba(31, 41, 55, 0.08);
  box-shadow: 0px 1px 2px rgba(31, 41, 55, 0.08);
  border-radius: 4px;
  padding: 5px 8px;
}

.sign .dateInput__input span {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: var(--primary2-color);
  line-height: 20px;
  display: inline-block;
  margin: 0 4px;
}

.sign .dateInput__input input {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: var(--primary2-color);
  line-height: 20px;
  width: 20px;
}

.signLink {
  text-align: center;
  color: var(--green-light2);
  display: block;
  margin-bottom: 16px;
}

.single-link a {
  color: #9ca3af;
  /* color: var(--blue-primary-color); */
  font-weight: bold;
}

/* .single-link svg path {
  fill:  var(--blue-primary-color);
} */

/*
  * dev
  */

select.minimal {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  padding-inline-end: 25px;
  background-image: url('../images/icons/arrowDown.svg');
  background-position: calc(100% - 10px) center;
  background-size: 10px;
  background-repeat: no-repeat;
  cursor: pointer;
}

body.arabic select.minimal {
  background-position: 10px center !important;
}

.react-confirm-alert .react-confirm-alert-body > h1 {
  font-size: 25px;
  line-height: 30px;
}

.map-search-container {
  position: absolute;
  z-index: 10;
  width: 80%;
  margin: 15px;
}

table.info-table td {
  white-space: normal;
}

.info-table tbody tr .actions-td {
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-table tbody tr .actions-td span {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  /* margin: 0 2px */
}

.form-action-buttons {
  display: flex;
  justify-content: flex-end;
  margin-top: 15px;
}

.customize-fields-modal-container h3 {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 25px;
}

.customize-fields-modal-container p {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  display: flex;
  align-items: center;
  color: var(--gray-primary-color);
  margin-top: 5px;
}

.customize-fields-modal-container .userInfo__header-btn svg,
i {
  width: 14px;
  height: 14px;
  font-size: 100%;
}

/* .customize-modal-header-btn button{
    margin: 0 10px;
  }
  .customize-modal-header-btn{
    display: flex;
  } */
.customize-fields-modal-container .customize-modal-header {
  margin-bottom: 20px;
}

.customize-fields-modal-container .customize-modal-header > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.gutter {
  width: 24px;
  height: 24px;
}

.filter-modal-container {
  background: var(--gray-primary3-color);
  box-shadow: 0px 1px 2px rgba(31, 41, 55, 0.08);
  border-radius: 15px;
  padding: 20px;
  margin-top: 12px;
}

.filter-modal-header {
  display: flex;
  justify-content: space-between;
  padding: 7px 0;
  border: 0px solid rgba(31, 41, 55, 1);
  border-top-width: 1px;
  border-bottom-width: 1px;
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: var(--gray-primary-color);
  align-items: center;
}

.filter-modal-header > div span {
  margin-right: 24px;
}

.filter-modal-header button {
  background: var(--gray-primary3-color);
  border: 0.679012px solid var(--border-color);
  border-radius: 5.4321px;
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 500;
  font-size: 11.4925px;
  line-height: 15px;
  display: flex;
  align-items: center;
  color: var(--primary2-color);
  padding: 8px 14px;
}

.filter-modal-header > div {
  display: flex;
}

.customize-fields-modal-board-header,
.customize-fields-modal-board-header > div {
  display: flex;
  flex: 1;
  justify-content: space-between;
  margin-bottom: 2px;
}

.customize-fields-modal-board-header h3 {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: var(--primary2-color);
}

.customize-fields-modal-board-header span {
  /* text-xs/Regular */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  display: flex;
  align-items: flex-end;
  color: var(--gray-primary2-color);
}

.customize-fields-modal-board-container {
  display: flex;
}

.customize-fields-modal-board-container ul li label {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: var(--primary2-color);
  margin-inline-start: 8px;
}

.customize-fields-modal-board-container ul li {
  background: var(--white-color);
  box-shadow: 0px 1px 2px rgba(31, 41, 55, 0.08);
  border-radius: 4px;
  display: flex;
  align-items: center;
  padding: 8px;
  margin-bottom: 8px;
}

.customize-fields-modal-board-container ul li:last-child {
  margin-bottom: 0;
}

.customize-fields-modal-board-container ul {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: var(--gray-primary3-color);
  border: 1px solid var(--gray-primary3-color);
  border-radius: 4px;
  padding: 8px;
}

.map-search {
  transition: all 2s ease-in-out;
}

.map-search-calculation {
  font-size: 12px;
  line-height: 15px;
  color: var(--text2);
  font-weight: 700;
}

.map-search-actions {
  margin-bottom: 15px;
}

.add-business-container .signSelect__select {
  padding: 0;
}

.add-business-container .signSelect__select select {
  font-size: 12px;
  width: 85px;
}

.general-form-inner-container .signInput.radio {
  flex: unset;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.general-form-inner-container {
  display: flex;
  align-items: center;
}

.general-form-inner-container .signInput {
  flex: 1;
  margin-inline-end: 10px;
}

.general-form-inner-container .signInput:last-child {
  margin-inline-end: 0px;
}

.general .general-details {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-top: 0;
}

.general .general-details .signInput {
  flex: 1;
  margin-inline-end: 10px;
}

.general .general-details .signInput.textarea {
  flex-basis: 100%;
}

.general-form-section {
  margin: 20px 0;
  /* background: var(--white)eee; */
  padding: 20px;
  background: var(--gray-primary3-color);
  box-shadow: 0px 1px 2px rgb(31 41 55 / 8%);
  border-radius: 15px;
}

.info-table td > button {
  color: var(--white-color);
  display: block;
  box-sizing: border-box;
  cursor: pointer;
  transition: all 0.2s ease-in-out 0s;
  padding: 8px 12px;
  background: var(--white-color);
  border: 1px solid var(--border-color);
  box-shadow: 0px 1px 2px rgba(31, 41, 55, 0.08);
  border-radius: 4px;
}

.info-table td button svg path {
  fill: var(--blue-primary3-color);
}

.info-table td button:hover {
  transition: all 0.2s ease-in-out 0s;
  opacity: 0.8;
}

.company__header-title > div {
  display: flex;
  align-items: center;
}

.company__header-title input {
  font-weight: 600;
  font-size: 18px;
  line-height: 110%;
  color: var(--primary1-color);
}

.company-action-btn svg path:first-child {
  fill: var(--text3);
}

.company-action-btn svg {
  height: 15px;
  width: 15px;
}

.company-action-btn {
  padding: 0 10px;
}

.company-action-btn span {
  padding-right: 15px;
  cursor: pointer;
}

.company-action-btn span:hover {
  opacity: 0.8;
}

.business-dublicate-action-buttons {
  display: flex;
  align-items: center;
}

.clickable,
.clickable-td {
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.clickable:hover {
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 0px 2px 0px var(--gray-primary2-color) !important;
}

.clickable-td:hover {
  opacity: 0.8;
  transition: all 0.2s ease-in-out 0s;
}

.company__header-title a:hover {
  opacity: 0.8;
  transition: all 0.2s ease-in-out 0s;
}

.pagination-container .page-item .page-link {
  color: var(--text);
}

.userInfo__header-title span.span {
  display: inline-block;
}

/* table design from opp */

.info-table {
  margin: 0 -10px;
  overflow: auto;
}

.info-table::-webkit-scrollbar {
  /* display: none; */
}

.info-table {
  /* -ms-overflow-style: none; */
  /* IE and Edge */
  scrollbar-width: thin;
  /* width: 100px; */
  /* color: #020230; */
  /* Firefox */
}

.info-table table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 10px;
  /* table-layout: fixed; */
  table-layout: auto;
}

.info-table th {
  background: var(--blue-light);
  border-radius: 4px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  color: var(--blue-primary3-color);
  text-align: left;
  padding: 8px 10px;
  text-overflow: ellipsis;
  overflow: hidden;
}

.info-table td > button {
  width: 100%;
}

.info-table th,
.info-table td {
  white-space: nowrap;
  vertical-align: top;
}

.info-table th:last-child,
.info-table td:last-child {
  width: 100px;
  box-sizing: border-box;
}

.info-table th .info-table-row,
.info-table td .info-table-row {
  margin: 0;
  min-width: 185px;
}

.info-table th .info-table-row--select,
.info-table td .info-table-row--select {
  min-width: 385px;
}

.info-table th .checkbox,
.info-table td .checkbox {
  margin: 0 auto;
  width: 24px;
}

.info-table button {
  /* margin: 0 10px 0 auto; */
}

.action-td svg {
  width: 20px;
  height: 20px;
}

.action-td {
  background: var(--white-color);
  border: 1px solid var(--border-color);
  -webkit-box-shadow: 0px 1px 2px rgb(31 41 55 / 8%);
  box-shadow: 0px 1px 2px rgb(31 41 55 / 8%);
  border-radius: 4px;
  width: 100%;
  height: 36px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.action-td.delete svg path {
  stroke: var(--red);
}

/*
  * PAGINATION
  */
.pagination {
  display: flex;
  padding-left: 0;
  list-style: none;
  justify-content: center;
}

.page-item:first-child .page-link {
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.page-item.disabled .page-link {
  color: var(--gray-dark-color);
  pointer-events: none;
  background-color: var(--white-color);
  border-color: var(--border1-color);
}

.page-link {
  font-size: 14px;
  padding: 0.375rem 0.75rem;
  position: relative;
  display: block;
  color: var(--text);
  text-decoration: none;
  background-color: var(--white-color);
  border: 1px solid var(--border1-color);
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.page-item.active .page-link {
  z-index: 3;
  color: var(--white-color);
  background-color: var(--text);
  border-color: var(--text);
}

.page-item:not(:first-child) .page-link {
  margin-inline-start: -1px;
}

.location-form-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* margin-top: 40px; */
}

.person-location-tab {
  background: var(--white-color);
  box-shadow: 0px 1px 2px rgba(31, 41, 55, 0.08);
  border-radius: 4px;
  padding: 24px;
  border: 1px solid var(--border-color);
}

/* .person-location-tab .location-form-container {
    margin-top: 20px;  
  } */
.person-location-tab .location-form-container .location-form {
  margin-inline-end: 10px;
  flex: 1.8;
  width: unset;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.person-location-tab .location-form-container .location-form .signInput {
  /* flex: 1; */
  width: 32%;
}

.location-form-container .location-form {
  width: 38%;
}

.location-form {
  /* display: flex;
    flex-wrap: wrap; */
}

.location-form .signInput {
  /* width: 49%;
    margin: 20px .5%; */
}

.section-heading {
  display: flex;
  align-items: center;
}

.section-heading .edit-icon svg {
  width: 18px;
  height: 18px;
}

.section-heading .edit-icon {
  margin-inline-start: 10px;
  margin-inline-end: 10px;
  cursor: pointer;
  color: var(--black1);
  display: flex;
}

.section-heading .edit-icon:hover {
  opacity: 0.8;
}

.user-option-dropdown {
  position: absolute;
  z-index: 100;
  /* top: 55px; */
  top: 36px;
  /* background-color: #020230; */
  background: var(--dash-bg);
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  color: var(--white);
  border-radius: 10px;
  display: inline-block;
  transition: all 0.2s ease-in-out 0s;
  font-family: 'Inter', sans-serif;
  max-height: 0;
}

.account:hover {
  overflow: unset;
}

.account:hover .user-option-dropdown {
  max-height: 500px;
  transition: all 0.2s ease-in-out 0s;
}

.user-option-dropdown > span,
.user-option-dropdown a {
  font-size: 16px;
  margin-bottom: 10px;
  color: var(--para-color);
  display: flex;
}

.edit-details-form {
  position: relative;
}

.auto-complete-address-dropdown {
  position: absolute;
  width: 100%;
  max-height: 380px;
  overflow: scroll;
  background-color: var(--white-color);
  z-index: 100;
  top: 60px;
  box-sizing: border-box;
  padding: 20px;

  filter: drop-shadow(0px 2px 4px rgba(31, 41, 55, 0.06))
    drop-shadow(0px 4px 6px rgba(31, 41, 55, 0.1));
}

.auto-complete-address-dropdown li {
  font-size: 16px;
  margin-bottom: 10px;
  color: var(--text2);
  display: flex;
  cursor: pointer;
}

.user-option-dropdown span:hover,
.user-option-dropdown a:hover {
  opacity: 0.8;
}

.dublicate-section-container {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  flex-grow: 2;
  overflow-y: auto;
}

.dublicate-cards {
  color: var(--primary1-color);
  flex-grow: 2;
}

.dublicate-cards h5 {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
}

.dublicate-cards p {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
}

.dublicate-card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 16px;
  max-width: 295px;
  background: var(--white-color);
  border: 1px solid var(--border-color);
  filter: drop-shadow(0px 2px 4px rgba(31, 41, 55, 0.06))
    drop-shadow(0px 4px 6px rgba(31, 41, 55, 0.1));
  border-radius: 16px;
  align-items: center;
  margin-bottom: 10px;
  cursor: pointer;
}

.dublicate-card-icon {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 8px;
  width: 62px;
  height: 62px;
  background: var(--black2);
  border: 1px solid var(--border-color);
  border-radius: 1000px;
  margin-inline-end: 10px;
  color: var(--white-color);
}

body.arabic .add-business-container,
body.arabic .userInfo__inner {
  left: 0;
  right: unset;
}

.add-business-container {
  height: 100vh;
  overflow: auto;
  width: 333px;
  position: absolute;
  top: 0;
  right: 0;
  box-sizing: border-box;
  background: white;
  box-shadow: 0px 4px 12px rgb(0 0 0 / 10%);
  border-radius: 0 0 15px 15px;
  animation: 0.2s linear modalAnime;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  z-index: 100000;
  display: flex;
  flex-direction: column;
}

.add-business-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 15px;
  margin-bottom: 15px;
  /* border: 1px solid; */
  /* border-bottom-color: var(--border-color); */
}

.add-business-container .sign {
  min-height: unset;
  background: unset;
  justify-content: flex-start;
  margin: 20px 0;
}

.add-business-container .signInput {
  margin-bottom: 15px;
}

.add-business-header i,
.userInfo-header i {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 8px 16px;
  gap: 8px;
  width: 52px;
  height: 40px;
  background: var(--white-color);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  box-sizing: border-box;
  color: black;
  cursor: pointer;
}

.add-business-header h2 {
  font-size: 24px;
  line-height: 31px;
}

.map-pin {
  transform: scale(1);
  transition: 0.3s;
}

.map-pin-active {
  transform: scale(1.5);
  transition: 0.3s;
}

.plan-result {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}

.alert-notifi {
  padding: 5px 18px;
  display: flex;
  align-items: center;
  margin: 5px auto;
  background: var(--red-light);
  border: 1px solid var(--red-light2);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 4px;
  display: none;
}

.alert-notifi.active {
  display: flex;
}

.alert-notifi__text {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: var(--red);
  /* display: block; */
}

.alert-notifi__icon {
  width: 20px;
  height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-inline-end: 16px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.alert-notifi svg {
  width: 100%;
  color: var(--red);
}

.alert-notifi-success {
  background: var(--green-light4);
  border: 1px solid var(--green-light3);
}

.alert-notifi-success .alert-notifi__text {
  color: var(--green-light3);
}

.alert-notifi-success svg {
  color: var(--green-light3);
}

.alert-notifi-info {
  background: var(--blue-primary3-color);
  border: 1px solid var(--blue-primary3-color);
}

.alert-notifi-info .alert-notifi__text {
  color: white;
}

.alert-notifi-info svg {
  color: white;
}

/*
  * HEYPER PAY
  */

.wpwl-group.wpwl-group-brand {
  position: relative;
  display: flex;
}

.wpwl-wrapper {
  width: 100%;
}

.wpwl-form {
  /* font-family: 'Inter'; */
}

.wpwl-control {
  border-width: 1px;
  width: 100%;
  background: var(--white-color);
  border-radius: 4px;
  border: 1px solid var(--border-color);
  box-shadow: 0px 1px 2px rgba(31, 41, 55, 0.08);
  color: var(--primary2-color);
  font-weight: 300;
  line-height: 20px;
  font-size: 14px;
  font-family: 'Inter';
}

.wpwl-control-cvv,
.wpwl-control-cardNumber {
  font-family: inherit !important;
}

.wpwl-hint {
  font-size: 12px;
  margin-top: 0;
}

.wpwl-label {
  display: none !important;
}

.wpwl-label-billing {
  padding: 0;
  display: block !important;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  color: var(--text2);
  font-weight: 700;
  margin-top: 10px;
}

.wpwl-brand-card {
  width: 15%;
}

.wpwl-button-pay {
  background: var(--primary1-color);
  border-radius: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 18px;
  color: var(--white-color);
  padding: 11px;
  display: block;
  text-align: center;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  height: 45px;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  margin-bottom: 24px;
  border-color: transparent;
}

.user__actions-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.user__actions-btns button {
  margin-inline-start: 10px;
}

.user__actions-btns {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.userTable table {
  table-layout: fixed;
}

.userInfo.teamInfo .userInfo__inner {
  max-width: 550px;
}

.userInfo.add-opp-modal .userInfo__inner {
  max-width: 510px;
}

.userInfo .underHeader {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: var(--gray-primary4-color);
}

.userInfo-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 0;
}

.userInfo-header span svg {
  width: 15px;
  height: 15px;
}

@media (max-width: 1024px) {
  .nav__inner-link {
    margin-inline-end: 0;
  }

  .featureCard__body h5 span {
    margin-inline-end: 15px;
  }

  .infinite-scroll-component .table,
  .table {
    overflow-x: scroll !important;
  }

  th > div,
  td > div {
    word-break: normal !important;
    word-spacing: normal !important;
  }
}

@media (max-width: 600px) {
  .signText br {
    display: none;
  }

  .signHeader__step-number {
    width: 24px;
    height: 24px;
    margin-inline-end: 8px;
  }

  .sign__inner {
    padding: 20px;
  }

  .signInput .signInput-domain .signInput__inner {
    padding: 0 75px 0 52px;
  }

  .signInput__name {
    width: 75px;
  }

  .signInput__row {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .signInput__col {
    width: 100%;
    margin-bottom: 16px;
  }
}

/*
  * SPRINT 3
  */

.pagination ul li.active span {
  color: var(--white-color);
  background: var(--blue-primary-color);
}

.pagination ul li span {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: var(--primary2-color);
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
}

.pagination ul .arrow span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--white-color);
  border: 1px solid var(--border-color);
  -webkit-box-shadow: 0px 1px 2px rgba(31, 41, 55, 0.08);
  box-shadow: 0px 1px 2px rgba(31, 41, 55, 0.08);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.user-form h3 {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 23px;
  color: var(--text3);
}

.user-form-main-container {
  display: flex;
  margin-top: 15px;
}

.user-input-form-group .signInput {
  flex: 1;
}

.user-input-form-group.two-in-row {
  display: flex;
}

.user-input-form-group.two-in-row span.gap {
  width: 10px;
}

.user-form-fields-container {
  flex: 3;
  margin-inline-start: 4%;
}

.user-form-upload-img-container {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.app-radio-button {
  display: flex;
  align-items: center;
}

.app-radio-button-label {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: var(--primary2-color);
  margin-right: 10px;
}

.app-radio-button-container {
  display: flex;
  align-items: center;
}

/* .user-form-image-frame img{
    width: 100%;
    height: 100%;
    object-fit: contain;
  } */
.user-form-image-frame i {
  color: var(--text);
}

.user-form-image-frame:hover .edit-svg {
  display: block;
  transition: all 0.3s ease-in-out;
}

.user-form-image-frame .edit-svg {
  position: absolute;
  display: none;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.user-form-image-frame {
  border: 1px solid var(--text);
  width: 100%;
  min-width: 183px;
  max-width: 183px;
  height: 183px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}

.user-form-image-frame .user-form-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.user-remove-photo {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 18px;
  display: flex;
  align-items: center;
  color: var(--red);
  justify-content: center;
  margin: 16px 0;
  cursor: pointer;
}

.signInput .pass-icon {
  color: var(--gray-primary2-color);
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  cursor: pointer;
}

body.arabic .signInput .pass-icon {
  right: unset;
  left: 20px;
}

.user-img-controls {
  display: flex;
  margin-top: 10px;
}

.user-img-controls span {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 700;
  font-size: 10px;
  line-height: 18px;
  color: var(--text);
  cursor: pointer;
}

.user-img-controls input {
  margin-inline-end: 10px;
}

.settings-container {
  display: flex;
}

.left-side-settings {
  flex: 1;
  margin-inline-end: 30px;
}

.icon-bg-dark svg {
  width: 12px;
  height: 12px;
  color: var(--white-color);
}

.icon-bg-dark i {
  font-size: 12px;
  position: relative;
  left: 1px;
  color: var(--white-color);
}

.icon-bg-dark {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  height: 32px;
  width: 32px;
  /* padding: 8.57143px; */
  background: var(--primary1-color);
  border-radius: 6.42857px;
}

.setting-header p {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  color: var(--gray-primary4-color);
}

.left-side-settings .setting-header h3 {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  line-height: 48px;
  color: var(--text3);
  margin-bottom: 10px;
}

.right-side-settings {
  flex: 3;
  /* width: 100%; */
  max-width: 960px;
  background: var(--white-color);
  height: 100%;
  padding: 30px;
  box-shadow: 0px 2px 6px rgba(31, 41, 55, 0.08);
  border-radius: 12px;
}

.settings-container .user-form-fields-container {
  margin-inline-start: 0;
  margin-inline-end: 4%;
}

/* .setting-tab svg path{fill: var(--text3);} */
.setting-tab svg {
  width: 18px;
  height: 18px;
}

.setting-tab span,
.setting-tab i,
.setting-tab svg {
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  /* line-height: 20px; */
  color: var(--text3);
  transition: all 0.3s ease-in-out;
}

.setting-tab.active span,
.setting-tab.active i,
.setting-tab.active svg {
  transition: all 0.3s ease-in-out;
  color: var(--white-color);
}

.setting-tab span {
  margin-inline-start: 10px;
}

.setting-tab.active {
  background: var(--blue-primary-color);
  transition: all 0.3s ease-in-out;
}

.setting-tab {
  min-height: 48px;
  background: transparent;
  border-radius: 4px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  padding: 0 24px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.setting-tabs-container {
  margin-top: 30px;
}

.userTableCol label {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  display: flex;
  align-items: center;
  color: var(--primary2-color);
}

/* Colors Button */

span.blocked {
  background: var(--border-color);
  color: var(--primary2-color);
  padding: 2px 6px;
  font-weight: 500;
  font-size: 12px;
  border-radius: 4px;
  line-height: 16px;
  /* max-width: 80px; */
  text-align: center;
  /* display: table; */
  /* margin: auto; */
}

.gray {
  background-color: var(--border-color) !important;
  color: var(--primary2-color) !important;
}

.color-view {
  padding: 2px 6px;
  font-weight: 500;
  font-size: 12px;
  border-radius: 4px;
  line-height: 16px;
  text-align: center;
  display: inline-block;
}

.approval-rejected,
span.blocked {
  background-color: var(--red-light);
  color: var(--red);
  padding: 2px 6px;
  font-weight: 500;
  font-size: 12px;
  border-radius: 4px;
  line-height: 16px;
  /* max-width: 80px; */
  text-align: center;
  /* display: table; */
  /* margin: auto; */
}

.red {
  background-color: var(--red-light) !important;
  color: var(--red) !important;
}

.approval-approved {
  background-color: var(--green-light1);
  color: var(--green-light);
  padding: 2px 6px;
  font-weight: 500;
  font-size: 12px;
  border-radius: 4px;
  line-height: 16px;
  /* max-width: 80px; */
  text-align: center;
  /* display: table; */
  /* margin: auto; */
}

.green {
  background-color: var(--green-light1) !important;
  color: var(--green-light) !important;
}

/* Orange */
span.blocked {
  background-color: var(--orange-light);
  color: var(--orange);
  padding: 2px 6px;
  font-weight: 500;
  font-size: 12px;
  border-radius: 4px;
  line-height: 16px;
  /* max-width: 80px; */
  text-align: center;
  /* display: table; */
  /* margin: auto; */
}

.orange {
  background-color: var(--orange-light) !important;
  color: var(--orange) !important;
}

/* Blue */
.approval-waiting,
span.pending {
  background-color: var(--blue-light);
  color: var(--blue-primary-color);
  padding: 2px 6px;
  font-weight: 500;
  font-size: 12px;
  border-radius: 4px;
  line-height: 16px;
  /* max-width: 80px; */
  /* display: table; */
  /* margin: auto; */
  text-align: center;
}

.blue {
  background-color: var(--blue-light) !important;
  color: var(--blue-primary2-color) !important;
  /* color: #3a8ed0 !important; */
}

.darkblue {
  background-color: var(--text) !important;
  color: var(--white-color) !important;
}

/* Colors Button End */

.teamInfo-fields-container {
  margin-top: 30px;
}

.user-info-card-container svg {
  width: 16px;
  height: 16px;
}

.user-info-card-container {
  display: flex;
  align-items: center;
  padding: 8px;
}

.user-info-card-container img {
  margin-inline-end: 8px;
  height: 32px;
  width: 32px;
  border-radius: 100px;
  background-color: lightcyan;
}

.user-info-card-container .user-info-card-body {
  display: flex;
  flex-direction: column;
  word-break: break-word;
  flex: 1;
}

.user-info-card-container h3 {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  color: var(--primary2-color);
  position: relative;
  display: inline-block;
  line-height: 12px;
}

.user-info-card-container span {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 12px;
  color: var(--gray-primary-color);
  margin-top: 4px;
  display: block;
}

.selected-users-group-container {
  margin-top: 30px;
}

.selected-users-group-container h5 {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  display: flex;
  align-items: center;
  color: var(--gray-primary-color);
}

.userInfo-cards-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}

.userInfo-cards-container .user-info-card-container {
  width: calc(50% - 5px);
  margin: 5px 0;
}

.user-info-card-container.user-info-card-bg {
  padding: 10px;
  background-color: var(--gray-primary3-color);
  box-sizing: border-box;
}

.userInfo__header-under-title {
  margin-top: 15px;
  margin-bottom: 15px;
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: var(--text3);
}

.userInfo__header-under-title span {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: var(--gray-primary4-color);
  display: block;
  margin-top: 8px;
}

.userInfo__info-content {
  /* flex: 1; */
  width: 100%;
}

.invite-user-modal .invite-user-modal-header {
  color: var(--text);
  margin-bottom: 30px;
  margin-top: 30px;
}

.invite-user-modal-header p {
  font-size: 15px;
  color: var(--primary2-color);
}

.user__table-header-tabs .button {
  max-width: 220px;
}

.user__table-header-tabs .submenu-container .user__table-header-tab {
  margin-bottom: 10px;
  margin-inline-end: 0;
}

.user__table-header-tabs .submenu-container .button {
  width: 100%;
}

.user__table-header-tabs .submenu-container.active {
  width: 300px;
  max-height: 400px;
  padding: 22px;
  opacity: 1;
  transition: max-height 0.1s ease-out;
}

.user__table-header-tabs .submenu-container {
  transition: max-height 0.1s ease-out;
  position: absolute;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  padding: 0px;
  max-width: 220px;
  z-index: 20;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
}

.user__table-header-tabs {
  /* margin-bottom: 10px; */
  /* flex-wrap: wrap;
  flex-grow: 1; */
  display: flex;
  flex: 1;
  align-items: center;
}

.user__table-header-tabs .user__table-header-tab {
  position: relative;
  margin-inline-end: 5px;
  /* display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 8px 19px;
  background: var(--white-color);
  border: 1px solid #E5E5E5;
  border-radius: 6px;
  border-radius: 6px;
  color: var(--gray-primary-color);
  transition: all .5s ease-in-out;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  
  position: relative;
  margin-bottom: 5px; */
}

.user__table-header-tabs .user__table-header-tab.active {
  /* color: var(--white-color);
  background: var(--blue-primary-color);
  border: 1px solid var(--blue-primary-color);
  transition: all .5s ease-in-out; */
}

.user__table-header-tab .user__table-header-tab-edit {
  /* display: none; */
  opacity: 0;
  transition: all 0.2s ease-in;
  position: relative;
  width: 0;
  /* margin-inline-start: 5px; */
}

.user__table-header-tab .closeIcon {
  transition: all 0.2s ease-in;
  opacity: 0;
  display: inline-block;
  position: absolute;
  top: -7px;
  right: -2px;
  background: rgb(225, 29, 72);
  /* height: 18px;
  width: 18px; */
  border-radius: 100px;
  padding: 1px;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
  width: 0;
  height: 0;
  cursor: pointer;
}

.user__table-header-tab button.primary .btn-title {
  font-weight: 700;
}

.user__table-header-tab:hover .closeIcon,
.user__table-header-tab:hover .user__table-header-tab-edit {
  opacity: 1;
  transition: all 0.2s ease-out;
  display: flex;
  width: 15px;
  height: 15px;
}

.user__table-header-tab.active .user__table-header-tab-edit svg path,
.user__table-header-tab.active:hover .user__table-header-tab-edit svg path {
  fill: #fff;
}

.user__table-header-tab .actions {
  justify-content: space-between;
  border-radius: 4px !important;
}

.user__table-header-tab svg {
  height: 15px;
  width: 15px;
}

/* .user__table-header-row{
  font-family: unset;
} */

.user.opportunity .user__table-header {
  margin-bottom: 0px;
  /* padding: 15px 20px; */
  /* background: var(--white-color); */
  /* box-shadow: 0px 2px 6px rgba(31, 41, 55, 0.08); */
  /* border-radius: 15px; */
  margin-bottom: 10px;
  min-height: 40px;
}

.user__table-header-btn {
  cursor: pointer;
  margin-right: 0;
  margin-inline-start: 3px;
  margin-inline-end: 3px;
}

.user__table-header-btn i,
.user__table-header-btn svg,
.tablePrimary svg {
  margin: 0px 6px;
  width: 14px;
  height: 14px;
}

.opp-view {
  height: 100%;
  overflow-y: scroll;
}

.opp-view-product {
  margin-top: 20px;
}

.opp-view-product .user__inner {
  box-shadow: unset;
}

.opp-activity .userTableFooter {
  justify-content: center;
}

.userTableCol img {
  margin-inline-end: 16px;
}

.userInfo__check-icon img,
.userInfo__check-icon i {
  width: 13px;
  height: 13px;
  object-fit: contain;
}

.userInfo__check-icon {
  margin-inline-end: 5px;
}

/* .checkbox label {
  margin-inline-start: ;
} */

/* body.arabic .sidebar *{
  direction: ltr;
} */
body.arabic .translations-container * {
  direction: ltr;
}

body.arabic .app-phone-input * {
  direction: ltr;
}

body.arabic .react-full-calender * {
  direction: ltr;
}

.fc-daygrid-event {
  white-space: normal !important;
}

body.arabic .date-range-container * {
  direction: ltr;
}

body.arabic .chart-view-container,
body.arabic .chart-view-container * {
  direction: ltr;
}

body.arabic .chart-view-container #table-chart * {
  direction: rtl !important;
}

body.arabic .dHeader {
  padding: 15px 120px 15px 15px;
}

body.arabic .switchBtn svg {
  transform: rotate(180deg);
}

body.arabic .mainDash {
  margin: 70px 96px 0px 0;
}

body.arabic .accord__title::before {
  right: unset;
  left: 8px;
}

body.arabic .sidebar {
  right: 0;
  left: unset;
}

.infinite-scroll-component {
  overflow: unset !important;
}

.infinite-scroll-component .table {
  overflow: unset;
  margin-top: 15px;
}

.userInfo__info-content-row .userInfo__info-content-col {
  flex: 1;
}

.opp-dnd-sections {
  display: flex;
  justify-content: space-between;
  color: var(--black);
  flex-grow: 1;
  overflow: auto;
  margin-top: 15px;
}

.opp-dnd-section-header {
  filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.075));
  border-radius: 4px;
  background-color: white;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-top: 5px solid var(--blue-primary1-color);
  position: sticky;
  top: 0;
}

.opp-dnd-section-header label {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  color: var(--black);
  margin-right: 5px;
}

.opp-dnd-section-header span {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  color: var(--gray-primary1-color);
}

.opp-dnd-section-price {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 300;
  font-size: 30px;
  line-height: 120%;
  display: flex;
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.opp-dnd-section {
  border-left: 1px dashed var(--border1-color);
  padding: 0 10px;
  flex: 1;
  overflow: auto;
  min-width: 330px;
}

/* .opp-dnd-section::-webkit-scrollbar { */
/* display: none; */
/* width: 1px; */
/* for Chrome, Safari, and Opera */
/* } */

/* .opp-dnd-section::-webkit-scrollbar-thumb{

} */

/* width */
div.opp-dnd-section::-webkit-scrollbar {
  /* width: 7px; */
  display: none;
}

/* Track
div.opp-dnd-section::-webkit-scrollbar-track {
  background: var(--white-color);
} */

/* Handle
div.opp-dnd-section::-webkit-scrollbar-thumb {
  background: #020230;
  border-radius: 5px;
  border: 3px solid var(--white-color);
} */

/* Handle on hover
.opp-dnd-section::-webkit-scrollbar-thumb:hover {
  background: rgba(2, 2, 48, 0.3);
} */

.opp-dnd-section ul {
  height: 100%;
}

.opp-dnd-sections:last-child {
  border-right: 1px dashed var(--border1-color);
}

.opp-dnd-section-card-body-edit svg {
  height: 16px;
  width: 16px;
}

.opp-dnd-section-card-body-edit {
  display: none;
}

.opp-dnd-section-card:hover .opp-dnd-section-card-body-edit {
  display: block;
}

.opp-dnd-section-card {
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  padding: 10px;
  background: var(--white-color);
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.075);
  border-radius: 4px;
  margin-bottom: 10px;
}

.opp-dnd-section-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.opp-dnd-section-card-header label {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  color: var(--black);
}

.opp-dnd-section-card-header i {
  font-size: 12px;
  color: var(--gray-primary-color);
  margin-inline-start: 5px;
}

.opp-dnd-section-card-body {
  margin: 10px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.opp-dnd-section-card-body span {
  font-weight: 400;
  font-size: 20px;
  line-height: 26px;
}

.opp-dnd-section-card p {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  display: flex;
  align-items: center;
  color: var(--gray-primary1-color);
}

.activity-dnd-section-card .opp-dnd-section-card-footer {
  justify-content: flex-start;
}

.activity-dnd-section-card .opp-dnd-section-card-footer img {
  width: 24px;
  height: 24px;
  margin-right: 10px;
  border-radius: 100px;
}

.opp-dnd-section-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* .opp-dnd-section-card-footer p {
  
} */
.opp-dnd-section-card-footer p span {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-inline-start: 5px;
  width: 18px;
  height: 18px;
  background: var(--orange);
  border-radius: 100px;
  color: white;
}

.opport__col div.label {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: var(--gray-primary-color);
  display: block;
  margin-bottom: 8px;
}

.opportRow textarea {
  resize: vertical;
}

.opportRow .signInput,
.opportTable td .signInput {
  margin-bottom: 0 !important;
}

.opportTable table {
  table-layout: fixed;
}

.opportTable td.total {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: var(--primary2-color);
}

.is-service-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

.is-service-container .single-field {
  display: inline-block;
  margin-right: 10px;
}

.single-field.opportRadio__outer {
  width: 100%;
}

.is-service-container .single-field:not(:first-child) {
  flex: 1;
}

.is-service-container div:last-child {
  margin-right: 0;
}

.userInfo {
  z-index: 50;
}

.userInfo__info {
  padding: 20px;
  margin: 20px 0;
  background: var(--white2-color);
}

.opp-view-general {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  /* justify-content: space-between; */
}

.opp-view-contact {
  margin: 5px 0;
}

.opp-view-contact .user__inner {
  background: unset;
  box-shadow: unset;
  padding: 0;
}

.opp-view-general > div {
  /* width: 22%; */
  width: calc(25% - 10px);
  margin: 5px;
}

.opp-activity .opp-view-general > div {
  width: calc(33% - 10px);
}

.opp-view-label {
  /* font-style: normal;
  font-weight: 600;
  font-size: 10px;
  line-height: 16px; */

  color: var(--primary2-color);
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  /* line-height: 12px; */
  word-break: break-all;
}

.opp-view-value > span {
  display: inline-block;
}

.opp-view-value {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: var(--primary2-color);
  word-break: break-all;
}

.opp-notes-container {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: var(--border-color);
}

.emails-container {
  margin-bottom: 10px;
}

.email-container {
  border-bottom: 1px solid var(--border1-color);
  align-items: flex-start;
  padding: 10px 0;
  cursor: pointer;
}

.email-container .email-body {
  flex: 1;
  min-width: 0;
}

.opp-notes-container.emails-container .sender-img {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  margin-inline-end: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--blue-primary1-color);
  color: #fff;
}

.opp-notes-container.emails-container .sender-name {
  font-weight: 500;
  color: #020230;
}

.opp-notes-container.emails-container .content {
  font-size: 13px;
  color: var(--gray-dark-color);
  margin-top: 5px;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.opp-notes-container.emails-container .content-expand {
  margin-top: 5px;
  font-size: 15px;
  color: #020230;
}

.opp-notes-container.emails-container .recipent-email,
.opp-notes-container.emails-container .sender-email {
  font-size: 12px;
  color: var(--gray-primary-color);
}

.opp-notes-container.emails-container .recipent-email {
  display: block;
  line-height: 10px;
}

.opp-notes-container.emails-container .email-time {
  font-size: 10px;
  font-weight: 500;
  color: var(--gray-primary-color);
}

.opp-jodit-container {
  color: var(--black1);
}

.opp-jodit-content * {
  margin: 3px 0;
  word-break: break-all;
}

.opp-jodit-content img {
  display: block;
  height: 190px;
  width: 100%;
  object-fit: contain;
}

.opp-notes-section {
  height: calc(100vh - 150px);
  overflow: hidden;
}

.opp-notes-section header.userInfo__info {
  margin-top: 20px;
}

.opp-notes-section .userInfo__info {
  padding: 10px;
  margin: 0;
  /* margin-top: 20px; */
}

.opp-notes-section > .opp-notes-section-scroll {
  overflow: scroll;
  padding-bottom: 0;
  height: calc(100% - 260px);
  /* margin-top: 10px; */
}

.opp-notes-section .opp-note-container {
  background: var(--white-color);
  margin: 10px 0;
  max-width: 50%;
  box-shadow: 0px 0.298868px 1px var(--border1-color);
}

.opp-notes-section .opp-note-container > div {
  padding: 12px;
  display: flex;
}

.opp-notes-section .opp-note-container.own {
  justify-content: flex-end;
  margin-left: auto;
}

.opp-notes-section .opp-note-container .opp-note-user-img img {
  height: 45px;
  width: 45px;
  border-radius: 100%;
  overflow: hidden;
}

.opp-note-user-name span {
  font-size: 10px;
  color: var(--gray-primary2-color);
  margin-left: 10px;
}

.opp-note-user-name * {
  display: inline;
}

.opp-note-user-name {
  /* font-family: 'SF Pro Text'; */
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 17px;
  color: var(--text2);
  /* margin-bottom: 5px;
  margin-top: 5px; */
}

.opp-note-body {
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  letter-spacing: -0.271698px;
  color: var(--text2);
  margin-inline-end: 10px;
}

.jodit-status-bar {
  display: none !important;
}

.jodit-workplace {
  background-color: var(--white-color);
}

.jodit-container {
  min-height: 100%;
}

.opp-notes-section ul,
li,
ol {
  list-style: unset;
  list-style-position: inside;
}

.opp-notes-section .jodit-add-new-line {
  display: none !important;
}

body.has-popup {
  /* position: fixed; 
  overflow-y:scroll;
  width: 100%; */
  overflow: hidden;
}

.modal-data-container h3.label {
  font-weight: 500;
  font-size: 16px;
}

.activity-fields-container .opport__row .opport__col.textarea,
.activity-fields-container .opport__row .opport__col.richtext {
  width: 100%;
}

.activity-fields-container .opport__row .opport__col {
  width: calc(50% - 10px);
}

.opp-activity h4 {
  font-weight: 500;
  font-size: 24px;
  line-height: 32px;
  color: #000000;
}

.attachment-drop-section {
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dotted var(--gray-primary4-color);
  border-radius: 5px;
  max-width: 70%;
  margin: 25px auto;
  font-size: 14px;
  text-align: center;
  padding: 10px;
}

.opp-activity .attachment-drop-section {
  max-width: 100%;
}

.opp-attachment-container {
  color: var(--text);
}

.opp-attachment-images {
  display: flex;
  flex-wrap: wrap;
}

.opp-attachment-image-container {
  margin: 10px;
  width: calc(50% - 20px);
  background: lightcyan;
  border-radius: 4px;
  padding: 10px;
  box-sizing: border-box;
  box-shadow: 1px 1px 2px 1px rgb(31 41 55 / 8%);
  background-color: var(--white-color);
  display: flex;
  align-items: center;
}

.opp-activity .opp-attachment-image-container {
  width: calc(100% - 20px);
}

.opp-attachment-image-container img,
.opp-attachment-image-container .extension-folder {
  width: 50px;
  height: 50px;
  border-radius: 4px;
}

.opp-attachment-image-container i {
  font-size: 50px;
}

.extension-folder {
  position: relative;
}

.extension-folder > div {
  position: absolute;
  top: 50%;
  left: 35%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: bold;
  color: var(--white-color);
}

.opp-attachment-body {
  margin-inline-start: 10px;
  flex: 1;
}

.opp-attachment-action svg {
  height: 18px;
  width: 18px;
}

.opp-attachment-action {
  display: flex;
}

.opp-attachment-action span {
  margin: 0 5px;
}

.user__table-header-type {
  min-width: 150px;
}

.user__table-header-type span {
  left: 18px;
}

.new-tab-section {
  height: 100%;
  /* align-items: center;
  justify-content: center;
  display: flex */
}

.new-tab-section .heading {
  font-size: 20px;
  color: #000000;
  font-weight: 700;
}

/* .new-tab-section p{
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 300;
  font-size: 15px;
  line-height: 120%;
  color: var(--text);
} */
.new-tabs-container > .row {
  margin: 50px 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.new-tab-container .border {
  box-sizing: border-box;
  background: #ffffff;
  border: 1px solid #d8d8d8;
  box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  height: 240px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.new-tab-container-data {
  margin-top: 20px;
}

.new-tab-container {
  /* height: 240px; */
  width: 190px;
  margin: 0 20px;
  /* width: 174px; */
}

.new-tab-container .blue {
  padding: 15px 70px;
  font-size: 15px;
  margin: 15px 0;
}

.new-tab-container-icon {
  width: 110px;
  height: 90px;
  background: rgba(58, 142, 208, 0.3);
  border-radius: 22.875px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.report-cards-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.report-card.report-card-added {
  opacity: 0.8;
  position: relative;
  cursor: not-allowed;
}

.report-card.report-card-added .report-card-added-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--green-light2);
  border-top-left-radius: 5px;
}

.report-card-added-icon svg path {
  stroke: white;
}

.report-card-added-icon svg {
  height: 20px;
  width: 20px;
}

.report-card-added-icon {
  display: none;
  position: absolute;
  top: 0px;
  left: 0px;
}

.report-card {
  width: calc(50% - 20px);
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 15px;
  margin: 10px;
  /* overflow: scroll; */
  background: var(--white-color);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  box-sizing: border-box;
}

.report-card .report-card-image img {
  width: 100%;
  height: 100%;
  border-radius: 100px;
}

.report-card .report-card-image {
  width: 45px;
  height: 45px;
  border: 1px solid var(--border-color);
  border-radius: 100px;
  overflow: hidden;
  margin-inline-end: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white3-color);
}

.report-card-body {
  flex: 1;
  height: 80px;
  /* overflow-y: scroll; */
}

/* 
.report-card-body::-webkit-scrollbar {
  width: 1px;
}

.report-card-body::-webkit-scrollbar-thumb{
  border: unset;
} */

.report-card > div {
  font-family: 'Space Grotesk';
  color: var(--primary1-color);
}

.report-card h3 {
  font-size: 18px;
  justify-content: space-between;
  display: flex;
  align-items: center;
}

.report-card p {
  font-size: 12px;
  line-height: 15px;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  display: -webkit-box;
}

.chart-controler {
  justify-content: flex-end;
  margin-bottom: 10px;
}

.chart-controler .user__table-header-btn span svg path {
  fill: var(--gray-dark-color);
}

.chart-view-container .count-chart {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.chart-view-container .count-chart .side i {
  font-size: 15px;
  color: white;
  position: relative;
  left: 1px;
}

.chart-view-container .count-chart .side {
  background-color: var(--blue-primary1-color);
  border-radius: 100%;
  align-items: center;
  justify-content: center;
  display: flex;
  height: 40px;
  width: 40px;
}

.chart-view-container .count-chart .count-chart-data {
  flex: 2;
  margin-inline-start: 10px;
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
}

.chart-view-container {
  margin-bottom: 1px;
}

.table-section-heading {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  color: var(--black);
}

.table-section-footer {
  background: var(--gray-primary3-color);
}

table tbody .table-section-footer td {
  font-family: 'Space Grotesk', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  color: var(--primary2-color);
}

.react-grid-item.react-grid-placeholder {
  /* background-color: green !important; */

  background-color: var(--green-light) !important;
}

/* .react-grid-layout-container{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
} */

.react-grid-layout-container .react-grid-item {
  /* height: 300px; */
  /* width: calc(50% - 10px); */
  /* overflow: hidden; */
  padding: 10px;
  color: var(--black2);
  /* margin: 10px 0; */
  box-sizing: border-box;
  background-color: rgb(255, 255, 255);
  border-radius: 5px;
  overflow: hidden;
  /* position: relative; */
}

/* .react-grid-layout-container .react-grid-item:nth-child(3n + 3){
  width: 100%;
} */

.react-grid-layout-container canvas {
  /* width: 100% !important;
  height: 100% !important; */
  /* object-fit: contain; */
}

.react-grid-item.react-grid-item-custom-widget > div {
  /* height: unset !important; */
  /* padding-bottom: 30px; */
}

.react-grid-item .close-btn {
  display: none;
}

.react-grid-item:hover .close-btn {
  display: inline;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--red);
  height: 24px;
  width: 24px;
  transition: 0.2s all ease;
}

.table-heaer-sticky {
  position: sticky;
  top: 72px;
  z-index: 10;
  /* position: sticky; */
  /* top: 0; Don't forget this, required for the stickiness */
  /* position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999; */
}

.react-full-calender {
  background: var(--white-color);
  padding: 20px;
  border-radius: 10px;
}

.dashboard-heading {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 600;
  font-size: 36px;
  /* line-height: 48px; */
  color: var(--text3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}

.dashboard-heading .signInput {
  margin-bottom: 0;
}

.dashboard-heading .signInput input {
  padding: 12px 16px;
  color: var(--text3);
  font-weight: 600;
  padding: 12px 16px;
  color: var(--text3);
  font-weight: 600;
  padding-left: 40px;
}

.has-icon.signInput i {
  font-size: 14px;
  top: 50%;
  position: absolute;
  transform: translateY(-15%);
  left: 18px;
  color: var(--gray-primary4-color);
}

.pop-menu-charts {
  position: absolute;
  top: 10px;
  right: 15px;
  z-index: 20000;
  background: var(--white-color);
}

.pop-menu-charts-options svg {
  width: 14px;
  height: 14px;
}

.pop-menu-charts-options {
  background: var(--white-color);
  padding: 10px;
  box-shadow: 0px 7px 14px rgba(0, 0, 0, 0.35);
  border-radius: 10px;
  font-size: 14px;
  font-family: 'Inter';
  color: var(--text2);
  min-width: 120px;
  display: none;
}

.pop-menu-charts-options.pop-menu-opened {
  display: block;
}

.pop-menu-charts-options > div {
  padding: 1px;
  margin: 3px 0;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
  background: rgba(0, 0, 0, 0);
  align-items: center;
  display: flex;
}

.pop-menu-charts-options > div svg {
  margin-inline-start: 5px;
  min-width: 24px;
}

.pop-menu-charts-options > div:hover {
  background: rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease-in-out;
}

.menu-trigger-btn {
  text-align: end;
  cursor: pointer;
}

.chart-title {
  text-align: center;
  font-size: 12px;
  color: rgb(102, 102, 102);
  font-weight: 700;
  font-family: 'Helvetica Neue';
  margin-bottom: 15px;
}

.import-product-modal .import-product-content {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  display: flex;
  align-items: center;
  color: var(--gray-primary-color);
}

.import-product-header > .row > div {
  flex: 2;
}

.import-product-header > .row > label {
  flex: 1;
}

.add-product-step {
  background: var(--primary1-color);
  padding: 2px 6px;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
  display: inline;
}

.detail-accordion-container {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;

  align-items: center;
  color: var(--primary2-color);
}

.detail-accordion-container .row .accordion-hander {
  margin: 0 15px;
  flex: 0;
}

.detail-accordion-container .row {
  justify-content: space-between;
}

.detail-accordion-container .row > div {
  flex: 1;
}

.detail-accordion-container .detail-accordion-header {
  height: 44px;
}

.detail-accordion-container .detail-accordion-body {
  display: none;
  font-weight: 400;
}

.detail-accordion-container .detail-accordion-body .row.user-info {
  justify-content: flex-start;
}

.detail-accordion-container .detail-accordion-body .row.user-info img {
  height: 24px;
  width: 24px;
  border-radius: 100px;
  margin-right: 5px;
}

.detail-accordion-container .detail-accordion-body .row .signInput {
  margin-bottom: 0;
}

.detail-accordion-container .detail-accordion-body .row {
  margin: 15px;
}

.detail-accordion-container .detail-accordion-body.show-accordion {
  display: flex;
}

.permissions-container {
  margin: 15px 0;
  align-items: flex-start;
}

.permissions-container section .bg-icon {
  background: rgb(45, 45, 80);
  padding: 5px;
  width: 20px;
  display: flex;
  height: 20px;
  border-radius: 6.42857px;
  align-items: center;
  justify-content: center;
  margin-inline-end: 8px;
}

.permissions-container section {
  margin-bottom: 25px;
}

.permissions-container aside .aside-links > div {
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  margin-top: 8px;
  cursor: pointer;
}

.permissions-container aside .aside-links > div:hover {
  opacity: 0.85;
}

.permissions-container aside .aside-links > div.active {
  color: var(--blue-primary2-color);
  font-weight: 700;
}

.permissions-container aside {
  min-width: 241px;
  padding: 24px;
  background: var(--white2-color);
  border-radius: 12px;
  margin-inline-end: 15px;
}

.permissions-container h3 {
  font-weight: 700;
  font-size: 20px;
  line-height: 26px;
}

.permissions-container h4 {
  font-family: 'Inter';
  font-weight: 500;
  font-size: 16px;
  color: var(--primary2-color);
}

.no-data-container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.permissions-container p,
.no-data-container p {
  font-size: 12px;
  line-height: 20px;
  color: var(--gray-primary4-color);
}

.permission-section {
  color: var(--text3);
  font-family: 'Space Grotesk';
}

.slider-permission-card-container {
  background: var(--white-color);
  box-shadow: 0px 2px 6px rgba(31, 41, 55, 0.08);
  padding: 10px;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  margin-top: 15px;
}

.slider-permission-card-container .slider-range {
  cursor: pointer;
}

.slider-permission-card-container .slider-range,
.slider-permission-card-container .row {
  width: 100%;
}

.slider-permission-card-container .slider-lables img.active {
  filter: sepia(83%) hue-rotate(192deg) saturate(2906%);
}

.slider-permission-card-container .slider-lables img {
  margin-inline-end: 10px;
}

.slider-permission-card-container .slider-lables {
  color: var(--gray-primary-color);
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
}

.slider-permission-card-container .slider-lables div:last-child {
  justify-content: center;
}

.slider-permission-card-container .slider-lables div:last-child {
  justify-content: flex-end;
}

.slider-permission-card-container .slider-lables div:first-child {
  justify-content: flex-start;
}

/* My CRM*/

.crm-container {
  font-family: 'Space Grotesk';
  color: var(--text3);
}

/* .crm-container p{
  color: var(--gray-primary4-color);
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  margin-top: 5px;
}
.crm-container .crm-sidebar{
  max-width: 345px;
  padding: 24px;
}
.crm-container .crm-sidebar-nav{
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}
.crm-container .crm-sidebar-nav .crm-sidebar-nav-link svg{
  margin-inline-end: 16px;
  width: 18px;
  color: var(--gray-primary4-color);
}

.crm-container .crm-sidebar-nav .crm-sidebar-nav-link{
  width: 100%;
  padding: 9px 24px;
  display: flex;
  align-items: center;
  cursor: pointer;
  margin-top: 10px;
  font-weight: 700;
  font-size: 14px;
  box-sizing: border-box;
}

.crm-container .crm-sidebar-nav .crm-sidebar-nav-link.active{
  background-color: var(--blue-primary3-color);
  color: var(--white-color);
} */

.sidebar-content {
  background: var(--gray-primary3-color);
  box-shadow: 0px 2px 6px rgba(31, 41, 55, 0.08);
  border-radius: 12px;
  padding: 24px;
  flex: 3;
}

.sidebar-content section,
.inner-items-section {
  padding: 20px;
  background: var(--white-color);
  border: 1px solid var(--border-color);
  border-radius: 15px;
  box-sizing: border-box;
  margin: 18px 0;
}

.crm-section-inner-body {
  padding: 20px;
  background: var(--white2-color);
  border-radius: 9px;
}

.crm-section-data {
  background-color: var(--white-color);
  padding: 5px;
  margin: 10px 0;
}

.crm-section-data .inner-section {
  margin-top: 10px;
}

.crm-section-data .inner-section .divider {
  height: 45px;
  width: 100%;
  background-color: var(--gray-primary3-color);
  margin: 20px 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 10px;
  box-sizing: border-box;
}

.crm-section-data .inner-section .divider button {
  height: 100%;
  font-size: 14px;
  padding: 10px;
}

.crm-section-data .title {
  color: var(--primary2-color);
  font-weight: 600;
  font-size: 16px;
  line-height: 17px;
}

.crm-section-data .row {
  justify-content: space-between;
}

.crm-section-data .row .signInput {
  flex: 1;
  margin-bottom: 0;
}

.crm-section-data svg {
  height: 100%;
  width: 16px;
}

.crm-section-data .row > span {
  margin: 0 5px;
  display: flex;
}

.crm-section-data .crm-section-data-delete svg path {
  fill: var(--white-color);
}

.crm-section-data .crm-section-data-delete {
  background-color: var(--red);
  padding: 10px;
  border-radius: 5px;
}

.crm-section-data-row-system {
  opacity: 0.5;
  pointer-events: none;
}

.crm-section-data .crm-section-data-row {
  margin: 8px 0;
}

.crm-section-data .crm-section-data-row .approval-btn {
  margin-inline-start: 5px;
}

.field-item-container span {
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
  color: var(--gray-primary2-color);
}

.field-item-container.active span {
  color: var(--white-color);
}

.field-item-container {
  font-family: 'Inter';
  background: var(--white-color);
  box-shadow: 0px 2px 4px rgba(31, 41, 55, 0.06),
    0px 4px 6px rgba(31, 41, 55, 0.1);
  border-radius: 4px;
  height: 52px;
  margin: 10px 5px;
  width: calc(33.3% - 10px);
  box-sizing: border-box;
  display: flex;
  align-items: center;
}

.field-item-container.active {
  background: var(--blue-primary-color);
  padding: 2px;
}

.field-item-container .field-item-icon-container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 12px;
  width: 52px;
  height: 100%;
  background: var(--gray-primary3-color);
  box-sizing: border-box;
  margin-inline-end: 10px;
  border-radius: 4px;
}

.field-item-container .field-item-icon-container i,
.field-item-container .field-item-icon-container img {
  width: 100%;
  height: 100%;
  font-size: 100%;
  color: var(--primary1-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* EXPRESS EDITOR CSS */

.wrapper-expression-input {
  height: 130px;
  width: 90%;
  overflow: auto;
  border: 1px solid var(--gray-primary1-color);
  border-radius: 10px;
  transition: 0.1s all ease-in-out;
  padding: 10px;
  color: var(--text);
  font-family: 'Inter';
}

.wrapper-expression-input:focus-within {
  border: 1px solid var(--text);
  transition: 0.1s all ease-in-out;
}

.wrapper-expression-input textArea {
  min-height: 130px !important;
  width: 100%;
  border: none !important;
  outline: none !important;
  transition: 0.1s all ease-in-out;
  font-family: 'Inter' !important;
  box-shadow: none;
  border-radius: 0;
  padding: unset;
  font-size: 14px !important;
  font-weight: 500;
}

.wrapper-expression-input textArea:focus {
  border: none !important;
  transition: 0.1s all ease-in-out;
}

.wrapper-expression-input textArea .customMentionInput__highlighter__substring {
  visibility: visible !important;
}

.customMentionInput textArea:focus {
  outline-color: var(--text);
}

.customMentionInput__suggestions {
  background: var(--white1-color) !important;
  border-radius: 5px;
  /* margin-top: 0 !important; */
  margin-top: -7px !important;
  /* top: -10px !important; */
  /* min-width: 115px !important; */
  /* left: 25px !important; */
}

.customMentionInput__suggestions__item {
  font-size: 11px;
  padding: 0 5px;
  border-radius: 2px;
  color: var(--text);
  font-family: 'Inter';
}

.customMentionInput__suggestions__item.customMentionInput__suggestions__item--focused {
  cursor: pointer;
  /* padding: 5px; */
  background-color: var(--text);
  color: rgb(255, 255, 255);
}

.sales-stage-container::-webkit-scrollbar-thumb {
  border: 7px solid var(--white-color);
}

.sales-stage-container-label {
  color: #020230;
  font-size: 18px;
  margin-bottom: 10px;
}

.sales-stage-container {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: var(--primary1-color);
  /* flex-wrap: wrap; */
  /* display: flex; */
  padding: 15px 10px 10px 10px;
  overflow-x: scroll;
  background-color: #fff;
  border-radius: 6px;
}

.sales-stage {
  flex-grow: 1;
  margin-inline-start: 7px;
  margin-inline-end: 7px;
}

.sales-stage:last-child {
  margin-inline-end: 0;
}

.sales-stage:first-child {
  margin-inline-start: 0;
}

.sales-stage .sales-stage-label::before {
  content: '';
  position: absolute;
  width: 1px;
  height: 13px;
  background: var(--border-color);
  left: 0;
  bottom: -3px;
}

.sales-stage .sales-stage-label::after {
  content: '';
  position: absolute;
  width: 1px;
  height: 13px;
  background: var(--border-color);
  right: 0;
  bottom: -3px;
}

.sales-stage .sales-stage-label span {
  flex: 1;
  height: 1px;
  background: var(--border-color);
}

.sales-stage .sales-stage-label label {
  padding: 0 9px;
}

.sales-stage .sales-stage-label {
  /* background-color: var(--gray-primary3-color); */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  /* flex: 1; */
  /* padding: 8px 0; */
}

.opp-view .sales-stage-items {
  flex-wrap: nowrap;
}

.sales-stage-items {
  display: flex;
  flex-wrap: wrap;
}

.sales-stage-item.active:hover {
  opacity: 0.9;
  transition: 0.3s all ease-in-out;
}

.sales-stage-item:hover {
  filter: drop-shadow(0px 2px 3px rgb(0 0 0 / 0.3));
  transition: 0.3s all ease-in-out;
}

.sales-stage-item svg {
  height: 100%;
  width: 100%;
}

.sales-stage-item {
  position: relative;
  flex-grow: 1;
  /* max-width: 150px; */
  /* width: 100%; */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 15px;
  height: 33px;
  transition: 0.3s all ease-in-out;
  cursor: pointer;
}

/* .sales-stage-item:after {
  content: '';
  position: absolute;
  width: 100%; height: 100%;
  top: 0; left: 0;
} */

.sales-stage-item.active {
  filter: drop-shadow(0px 2px 3px rgb(0 0 0 / 0.3));
}

.sales-stage-item.active svg path {
  fill: var(--blue-primary-color);
}

.sales-stage-item.active label {
  color: white;
}

.sales-stage-item label {
  cursor: pointer;
  position: relative;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0 20px;
  /* padding-inline-end: 15px;
  padding-inline-start: 25px; */
}

.sales-stage-item-bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  height: 100%;
  width: 100%;
}

.btn {
  display: inline-block;
  margin-bottom: 0;
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  border-radius: 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.btn-arrow-right {
  position: relative;
  padding-left: 18px;
  padding-right: 18px;
  background: red;
}

.btn-arrow-right {
  padding-left: 36px;
}

.btn-arrow-right:before,
.btn-arrow-right:after {
  content: '';
  position: absolute;
  top: 4px;
  width: 22px;
  height: 22px;
  background: inherit;
  border: inherit;
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 0px 4px 0px 0px;
  -webkit-border-radius: 0px 4px 0px 0px;
  -moz-border-radius: 0px 4px 0px 0px;
}

.btn-arrow-right:before,
.btn-arrow-right:after {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
}

.btn-arrow-right:before {
  left: -11px;
}

.btn-arrow-right:after {
  right: -11px;
}

.btn-arrow-right:after {
  z-index: 1;
}

.btn-arrow-right:before {
  background-color: white;
}

.free-trial-message {
  flex: 1;
}

.free-trial-message .clickable {
  font-weight: 700;
  text-decoration: underline;
}

.plan_card__header .plan_card_title {
  background: linear-gradient(
    265.18deg,
    var(--blue-primary-color) -0.01%,
    var(--blue-primary2-color) 99.01%
  );
  -webkit-text-fill-color: transparent;
  background-clip: text;
  -webkit-background-clip: text !important;
  color: transparent;
  /* color: var(--blue-primary2-color); */
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
}

.plan_card__header:hover,
.plan_card__header.active {
  opacity: 0.75;
  border-color: var(--primary-color);
  transition: all 0.3s ease-in-out;
  box-shadow: 2px 3px 2px rgb(31 41 55 / 8%);
}

.plan_card__header {
  transition: all 0.3s ease-in-out;
  position: relative;
  color: var(--black1);
  position: relative;
  color: var(--black1);
  flex: 1;
  padding: 10px;
  margin-inline-end: 5px;
  cursor: pointer;
  border: 1px solid var(--border-color);
  border-radius: 4px;
}

.plan_card__header .plan_card_number strong {
  font-size: 12px;
  /* line-height: 25px; */
  color: var(--black2);
  font-weight: 700;
}

.plan_card__header .plan_card_number {
  font-weight: 500;
  font-size: 8px;
  line-height: 11px;
  color: var(--gray-primary-color);
}

.most-popular-plan-container {
  background-color: var(--white2-color);
  border-radius: 100px;
  padding: 6px;
  margin-top: 5px;
  /* position: absolute; */
  /* top: 55px; */
  font-size: 8px;
  font-weight: 700;
}

.most-popular-plan {
  /* background: linear-gradient(265.18deg, var(--blue-primary1-color) -0.01%, var(--blue-primary2-color) 99.01%);
  background-clip: text;
  -webkit-text-fill-color: transparent; */
  color: var(--blue-primary-color);
  line-height: 12px;
}

.active_subscription_plan .most-popular-plan-container {
  padding: 0 10px;
}

.active_subscription_plan {
  color: var(--primary-color);
}

.active_subscription_plan .active_subscription_plan_header h6 {
  margin-inline-end: 10px;
}

.active_subscription_plan .active_subscription_plan_header {
  padding: 5px 0;
  border-bottom: 1px solid var(--border1-color);
  flex-direction: row;
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.active_subscription_plan_body {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.active_subscription_plan_body .activ_plan_card_title {
  font-weight: 700;
}

.active_subscription_plan_body .active_plan_card_title {
  font-size: 14px;
  color: var(--gray-dark-color);
}

.active_subscription_plan_body .active_plan_card_trail {
  background-color: var(--white2-color);
  font-size: 11px;
  padding: 0px 10px;
  border-radius: 10px;
  margin-inline-start: 10px;
  font-weight: 700;
}

.map-tool-tip {
  max-width: 200px;
}

.map-tool-tip a {
  color: #333;
  font-size: 14;
  font-weight: 500;
}

.map-tool-tip p {
  color: #333;
  margin-top: 5px;
  font-size: 13px;
  line-height: 16px;
  font-weight: 400;
}

.pricing-section-cards {
  color: var(--black);
  /* text-align: center; */
  max-width: 850px;
  margin: auto;
  padding: 20px 0;
}

.pricing-section-cards h2 {
  margin-bottom: 10px;
  text-align: center;
}

.plan_card__inner:last-child {
  margin-inline-end: 0;
}

.plan_card__inner {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  box-sizing: border-box;
  max-width: 405px;
  margin: 0 auto;
  animation: 0.2s linear sign;
  width: 100%;
  font-family: 'Inter';
  margin-inline-end: 10px;
}

@-webkit-keyframes sign {
  0% {
    margin-top: 60px;
    opacity: 0;
  }

  100% {
    margin-top: 0;
    opacity: 1;
  }
}

@keyframes sign {
  0% {
    margin-top: 60px;
    opacity: 0;
  }

  100% {
    margin-top: 0;
    opacity: 1;
  }
}

.pricing-cards-full .plan_card_title {
  background: linear-gradient(
    265.18deg,
    var(--blue-primary-color) -0.01%,
    var(--blue-primary2-color) 99.01%
  );
  background-clip: text;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
  font-weight: 500;
  font-size: 24px;
}

.pricing-cards-full .plan_card-full__header {
  position: relative;
}

.pricing-cards-full .plan_card_number strong {
  font-size: 24px;
  line-height: 25px;
  color: var(--black2);
  font-weight: 700;
}

.pricing-cards-full .plan_card_number {
  font-weight: 500;
  font-size: 15px;
  line-height: 11px;
  color: var(--gray-primary-color);
}

.pricing-cards-full .most-popular-plan-container {
  background-color: var(--white2-color);
  border-radius: 100px;
  padding: 0px 6px;
  margin-top: 5px;
  position: absolute;
  top: 55px;
  font-size: 10px;
  font-weight: 700;
}

.pricing-cards-full .most-popular-plan {
  background: linear-gradient(
    265.18deg,
    var(--blue-primary-color) -0.01%,
    var(--blue-primary2-color) 99.01%
  );
  background-clip: text;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
  line-height: 20px;
}

.pricing-cards-full .plan_card_desc {
  color: var(--gray-primary-color);
  font-weight: 500;
  font-size: 12px;
  line-height: 13px;
  margin-top: 45px;
  margin-bottom: 17px;
}

.pricing-cards-full .plan_card_points-lable .plan_card_points-left,
.plan_card_points-lable .plan_card_points-right {
  flex: 1;
  height: 1px;
  background-color: var(--gray-primary2-color);
}

.pricing-cards-full .plan_card_points-lable label {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: var(--gray-primary2-color);
  margin: 17px;
}

.pricing-cards-full .plan_card_points li svg {
  margin-inline-end: 8px;
}

.pricing-cards-full .plan_card_points li {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: var(--primary2-color);
  margin-bottom: 16px;
}

.pricing-cards-full {
  margin-top: 40px;
  display: flex;
  align-items: center;
}

.circular-progress-content span {
  font-size: 10px;
  font-weight: 500;
  line-height: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0f172a;
}

/* .email-composer .signInput__inner input, select, textarea, .signInput__inner .inSelect
{
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border-radius: 0;
} */

.email-composer .rich-editor-container {
  margin-top: 30px;
}

.chatbot-container textarea {
  resize: vertical;
  min-height: 120px;
  max-height: 350px;
}

.chatbot-container {
  display: flex;
  height: calc(100vh - 93px);
  background-color: #f1f1f1;
  position: relative;
  color: #141619;
}

.chatbot-container .overlay-hide {
  display: none;
}

.chatbot-container .overlay {
  display: flex;
  position: absolute;
  z-index: 100;
  background: rgba(3, 3, 3, 0.5);
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}

/* Sidebar */
.chatbot-container .chat-sidebar {
  flex: 1;
  padding: 20px;
  background-color: #f7f7f7;
  overflow: scroll;
}

.chatbot-container .chat-sidebar h2 {
  margin-bottom: 10px;
}

/* Users List */
.chatbot-container .chat-sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 20px;
}

.chatbot-container .chat-grouped {
  border-bottom-width: 2px !important;
  border-bottom-color: #dee2e6;
  padding-bottom: 0px;
  border-bottom-style: solid;
}

.chatbot-container .chat-sidebar li {
  display: flex;
  align-items: center;
  padding: 12px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  border-radius: 7px;
  flex-direction: row;
  justify-content: space-between;
}

.chatbot-container .chat-sidebar li:hover {
  transition: background-color 0.2s ease;
  background-color: #e6e6e6;
}

/* Active User Item */
.chatbot-container .chat-sidebar li.active {
  background-color: #020230;
  color: #fff;
  border-radius: 7px;
}

/* User Avatar */
.user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 12px;
  background-color: #020230;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: bold;
}

/* ChatBot Name */
.chatbot-name {
  font-weight: bold;
}

/* ChatBot Status */
.chatbot-status {
  color: #555;
}

/* ChatBox */
.chatbox {
  flex: 3;
  display: flex;
  flex-direction: column;
  padding: 20px;
  position: relative;
}

/* ChatBox Messages */
.chatbox-messages {
  flex: 1;
  overflow-y: auto;
}

.room-item:hover > span {
  display: flex;
}

.room-item span svg {
  width: 15px;
  height: 15px;
}

.room-item span svg path {
  color: red;
}

.room-item span {
  display: none;
  padding: 3px;
  border-radius: 2px;
}

.single-message {
  margin: 10px 0;
  padding: 10px 12px;
  /* background-color: #cdf0b4; */
  border-radius: 8px;
  white-space: pre-line;
}

.user-message-time {
  font-size: 12px;
  text-align: left;
  color: #9ca3af;
  /* direction: ltr !important; */
}

.user-message-action {
  /* direction: rtl !important; */
  display: flex;
}

.user-message {
  background-color: #dcf8c6;
}

.bot-message {
  background-color: #dcdfec;
}

.client-message {
  background-color: #ece5dd;
  position: relative;
  overflow: hidden;
  direction: rtl;
}

.chat-box-actions {
  /* position: absolute; */
  /* background: #D662A4; */
  /* color: #fff; */
  display: flex;
  justify-content: flex-end;
  text-decoration: underline;
  cursor: pointer;
  /* width: calc(100% + 16px); */
}

.chatbox-messages span i {
  color: #374151;
  font-size: 16px;
}

/* ChatBox Input */
.chatbox-input {
  display: flex;
  align-items: center;
  margin-top: 10px;
  background-color: #fff;
  padding: 8px 15px;
  border-radius: 4px;
}

.chatbox-input input {
  flex: 1;
  /* background-color: #007bff; */
  /* color: #fff; */
  /* border: none; */
  /* cursor: pointer; */
}

/* .chatbox-input button:hover {
     background-color: #0056b3;
   } */

/* styles.css */
.file-upload-wrapper {
  display: flex;
  align-items: center;
  /* margin-top: 6px; */
  /* flex-direction: column; */
  gap: 10px;
}

.file-input {
  display: none;
  /* Hide the default file input */
}

.file-label {
  padding: 5px;
  background-color: var(--blue-primary-color);
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-align: center;
  font-size: 12px;
  width: 100%;
  font-weight: bold;
  font-family: 'Inter', sans-serif;
  height: 38px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}

.file-label:hover {
  background-color: #06a4d3;
}

.file-name {
  font-weight: 700;
  font-size: 12px;
  color: #555;
}

.tableFixHead {
  overflow: auto;
  height: 80vh;
  /* max-height: calc(100vh - 360px); */
  border: 1px solid #e5e7eb;
  border-radius: 10px;
}

.tableFixHead thead th {
  position: sticky;
  top: 0;
  z-index: 1;
  background-color: #f9fafb;
}

.tableFixHead th,
.tableFixHead td {
  min-width: 60px;
  border-inline-end: 1px solid #e5e7eb;
  padding: 10px 0 !important;
}

.tableFixHead thead th:first-child {
  width: 160px;
  min-width: 160px;
  z-index: 2;
  left: 0;
}

.tableFixHead tbody td:first-child {
  position: sticky;
  left: 0;
  z-index: 1;
  background-color: #f6f7f7;
  width: 160px;
  min-width: 160px;
}

.tableFixHead tbody tr:last-child td {
  /* background-color: var(--blue-primary3-color) !important; */
  background: rgba(63, 64, 65, 0.09);
}

.tableFixHead tbody tr:last-child {
  position: sticky !important;
  bottom: -1px;
  z-index: 10 !important;
  background-color: #e5e7eb !important;
}

.tableStrips tr:nth-child(even) {
  background: #f9f9f9;
}

.tableStrips tr:nth-child(odd) {
  background: #ffffff;
}

.menu-container {
  display: inline-block;
  position: relative;
}

.menu-options-container {
  position: absolute;
  top: 100%;
  left: -60px;
  color: var(--black1);
  z-index: 1;
  padding-top: 10px;
}

.menu-options {
  list-style-type: none;
  padding: 0;
  margin: 0;
  border: 1px solid #ddd;
  border-radius: 4px;
  width: 150px;
  background-color: white;
}

.menu-options li {
  padding: 10px;
  cursor: pointer;
  font-size: 16px;
  border-bottom: 1px solid var(--border1-color);
}

.menu-options li:hover {
  background-color: #f9fafb;
}

/* Breadcumbs */

.site-breadcrumbs {
  /* background-color: var(--white-color); */
  width: 100%;
  /* height: 60px; */
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* padding: 0 36px; */
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0em;
  color: var(--black1);
}

.site-breadcrumbs ul {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-breadcrumbs ul li a.active {
  color: var(--blue-primary-color);
}

/* Breadcumbs ends */

.text-container {
  position: relative;
  display: flex;
  align-items: center;
  /*   
  max-width: 100px; */
  /* Adjust based on the font size and desired max width */
}

.truncated-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  /* max-width: 10ch; */
  /* Limit to 10 characters */
  display: inline-block;
  vertical-align: middle;
  /* cursor: alias; */
}

.truncated-text .text-tooltip {
  position: absolute;
  opacity: 0;
  transition: all 0.3s ease-in;
}

.truncated-text:hover .text-tooltip {
  opacity: 1;
  transition: all 0.3s ease-out;
  top: -25px;
  left: 0;
  background-color: white;
  border: 1px solid var(--border1-color);
}

/* .text-container:hover .truncated-text {
  white-space: normal;
  max-width: none;
  overflow: visible;
  text-overflow: clip;
  position: absolute;
  background-color: #fff;
  border: 1px solid #ccc;
  z-index: 1;
  top: 0;

} */

.schedual-view-input-container input {
  padding: 0;
  /* padding-inline-start: 2px; */
  max-width: 20px;
  text-align: center;
}

.schedual-view-input-container {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.disable-cell {
  opacity: 0.5;
}

.disable-cell input {
  pointer-events: none;
  cursor: not-allowed;
}

.schedule-view-calender-buttons {
  flex: 1;
  justify-content: center;
  gap: 10px;
}

.schedule-view-calender-buttons button {
  text-shadow: none !important;
}

.schedule-view-calender-buttons button.blue {
  color: #515b6f !important;
}
