@import url(../../theme/global/_root.scss);
@import url(../../theme/global/font.scss);

:root {
  --nav-width: 87px;

  --first-color: #0c5df4;
  --bg-color: #12192c;
  --sub-color: #b6cefc;
  --white-color: #ffffff;

  --body-font: "Poppins", sans-serif;
  --logo-font: "Turret Road", sans-serif;
  --normal-font-size: 1rem;
  --small-font-size: 0.875rem;
}

*,
::before,
::after {
  box-sizing: border-box;
}

body {
  position: relative;
  margin: 0;
  /* padding: 28px 28px 0 115px; */
  /* padding-inline-start: 87px; */
  transition: 0.5s;
  background: var(--bg_clr_prime_light_01);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

h1 {
  margin: 0;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
a {
  text-decoration: none;
}

.l-navbar {
  position: fixed;
  top: 0;
  left: 0;
  /* width: var(--nav-width); */
  width: calc(var(--nav-width) + 9.25rem);
  height: 100vh;
  /* background-color: var(--clr_light_04); */
  background-color: var(--clr_light_01);
  color: var(--white-color);
  padding: 28px 0px 20px;
  transition: 0.5s;
  z-index: 101;
}
.nav-item {
  padding-inline: 18px;
}
.nav-list .nav-item {
  margin: 10px 0;
  padding-block: 0;
  padding: 0;
}
.l-navbar.expander .nav-link {
  width: 87px;
}
.l-navbar.expander .nav-link .main-nav-box {
  display: block;
  width: 55px;
  height: 55px;
  padding: 10px;
  display: flex;
  align-items: center;
  position: relative;
  margin: 0 auto;
  justify-content: center;
}
.nav {
  /* height: 100%; */
  min-height: calc(100vh - 30px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.nav-brand {
  display: grid;
  grid-template-columns: max-content max-content;
  justify-content: flex-start;
  gap: 28px;
  align-items: center;
  margin-bottom: 2rem;
}

.nav-toggle {
  cursor: pointer;
}
.nav-logo {
  color: var(--white-color);
  font-weight: 600;
  font-family: var(--logo-font);
}
.main-nav-box {
  position: relative;
  display: grid;
  grid-template-columns: max-content max-content;
  align-items: center;
  column-gap: 15px;
  padding: 18px 18px;
  color: var(--white-color);
  border-radius: 8px;
  margin-inline: 10px;
}
.nav-link {
  transition: 0.3s;
  cursor: pointer;
  position: relative;
}
.nav-link::after {
  content: "";
  position: absolute;
  display: block;
  height: 100%;
  width: 4px;
  background-color: var(--clr_frm_primary_04);
  right: 0;
  top: 0;
  opacity: 0;
}
.nav-link.active .main-nav-box {
  /* background: var(--clr_light_01); */
  /* background: var(--clr_light_04); */
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.nav-link.active::after {
  opacity: 1;
}

.nav-link:hover img,
.nav-link.active img,
.nav-link:hover i {
  filter: brightness(0) saturate(100%) invert(86%) sepia(86%) saturate(2303%)
    hue-rotate(338deg) brightness(103%) contrast(93%);
}
.nav-link:hover span,
.nav-link.active span {
  color: var(--clr_para_08);
}
.nav-icon {
  font-size: 1.25rem;
}
.nav-link img {
  filter: brightness(0) saturate(100%) invert(88%) sepia(7%) saturate(884%)
    hue-rotate(183deg) brightness(89%) contrast(90%);
}
.nav-name {
  font-size: var(--small-font-size);
  color: var(--clr_dark_08);
}

.body-pd {
  padding: 2rem 0 0 16rem;
}
.nav-link .main-nav-box span {
  display: block;
}
.l-navbar.expander .nav-link .main-nav-box span {
  display: none;
}
.l-navbar.expander .nav-link:hover .main-nav-box img {
  filter: brightness(0) saturate(100%) invert(86%) sepia(86%) saturate(2303%)
    hue-rotate(338deg) brightness(103%) contrast(93%);
}
.l-navbar.expander .nav-link.active .main-nav-box {
  /* background-color: var(--clr_light_01); */
  /* background-color: var(--clr_shade_grey_07); */
  /* box-shadow: 0px 5px 10px -3px #0000000d; */
  width: 55px;
  height: 55px;
  border-radius: 8px;
  padding: 10px;
  display: flex;
  align-items: center;
  position: relative;
  margin: 0 auto;
  justify-content: center;
}
.nav-link.active img {
  width: 22px;
  height: 22px;
}

.collapse {
  grid-template-columns: 20px max-content 1fr;
}
.collapse-link {
  justify-self: flex-end;
  transition: 0.5s;
}
.collapse-menu {
  display: none;
  padding: 0.75rem 2.25rem;
}
.collapse-sublink {
  color: var(--sub-color);
  font-size: var(--small-font-size);
}
.collapse-sublink:hover {
  color: var(--white-color);
}

.showCollapse {
  display: block;
}
.rotate {
  transform: rotate(180deg);
  transition: 0.5s;
}

/* collapse open sidebar */
.toggle-icon i {
  color: var(--clr_dark_01);
  width: 14px;
  height: 14px;
  font-size: 14px;
}
.toggle-icon {
  width: 48px;
  height: 47px;
  border: 1px solid var(--clr_primary_23);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.common-toggle {
  border: 1px solid var(--border_clr_grey_04);
}
.table-view{
  background: var(--clr_light_01);
}
.expander {
  width: 87px;
}
.main-panel-dashboard {
  width: calc(100% - 235px) !important;
  position: relative;
  left: 235px;
  /* height: 100vh; */
}
.main-panel-dashboard.expander {
  width: calc(100% - 87px) !important;
  left: 87px;
}

.day-tabs .day {
  width: 35px;
  padding: 5px 0;
  border-radius: 10px;
  cursor: pointer;
}
.day-tabs .day.active {
  background-color: #2563eb;
  color: white;
  border-radius: 5px;
}
.day .day-name {
  font-size: 10px;
}
.day .day-date {
  font-family: "Sharp Sans Semibold";
  font-size: 12px;
}
.day-date.text-muted {
  color: var(--clr_text_btn_02);
}
.todo-card .time-view {
  white-space: break-spaces;
}
#prev-week,
#next-week {
  width: 0px;
  padding: 0;
}
/* content */
.dashboard-content {
  padding-inline: 28px;
  padding-block-end: 28px;
}
.header-title {
  color: var(--clr_dark_01_3);
}
.label-title {
  color: var(--clr_shade_grey_01);
  font-weight: var(--fw_bold);
  text-transform: capitalize;
}
.dashboard-body {
  border-radius: 14px;
  border: 1px solid var(--clr_border_05);
  background: var(--clr_light_01);
  padding: clamp(20px, 4vw, 43px) clamp(20px, 4vw, 55px);
  margin-block-start: 28px;
}
.dashboard-header {
  gap: 15px;
}
.inner-title {
  color: var(--clr_shade_grey_02);
  font-weight: var(--fw_bold);
}
.inner-subheader {
  color: var(--clr_shade_grey_04);
  font-weight: var(--fw_semiBold);
}
.inner-subtitle {
  color: var(--clr_shade_grey_03);
  font-weight: var(--fw_bold);
  margin-block: 12px;
}
.inner-povtitle {
  color: var(--clr_primary_11);
  font-weight: var(--fw_bold);
}
.forms-field {
  margin-block-start: 26px;
}
.label_title {
  color: var(--clr_frm_primary_14) !important;
  font-weight: var(--fw_semiBold);
  margin-inline-end: 0 !important;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
}
.forms-field .input3,
.forms-field .custom-select3,
.forms-field .custom-select3 .select3 {
  min-height: 41px !important;
}
.forms-field .custom-select3 .select3 .custom-select-trigger {
  line-height: inherit;
  font-family: "Sharp Sans Medium";
}
.custom-select-v2 {
  width: 100% !important;
  padding: 8px 20px;
  border-radius: 10px;
  outline: none;
  box-shadow: none;
  font-size: 14px;
  background: var(--clr_light_01) !important;
  min-height: 41px;
  border: 1px solid var(--clr_primary_23) !important;
  color: var(--input_placeholder);
}
.custom-select-v2 option {
  /* color: var(--clr_frm_primary_01); */
  /* font-weight: var(--fw_medium); */
  /* font-family: "Sharp Sans Medium"; */
  margin-block: 12px;
}

.forms-field .row > * {
  padding-top: calc(var(--bs-gutter-x) * 0.5);
  padding-bottom: calc(var(--bs-gutter-x) * 0.5);
}
.dashboard-btn {
  margin-block-start: clamp(20px, 4vw, 60px);
}
.dashboard-btn .solid_btn_light_yellow {
  max-width: 220px;
  min-height: 42px;
  font-weight: var(--fw_bold);
  font-size: 16px;
}

/* progress bar */
.bar-main-container {
  margin: 0px auto;
  width: 100%;
  height: 50px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  font-family: sans-serif;
  font-weight: normal;
  font-size: 0.8em;
  font-family: "Gilroy", sans-serif;
  color: var(--clr_shade_grey_02);
  font-size: 14px;
  font-weight: var(--fw_bold);
  position: relative;
}

.bar-percentage {
  position: absolute;
  width: 30px;
  top: -30px;
  right: 10px;
}

.bar-container {
  float: right;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  height: 11px;
  background: var(--clr_frm_primary_09);
  width: 100%;
  margin: 12px 0px;
  overflow: hidden;
}

.bar {
  float: left;
  background: var(--clr_primary_04);
  height: 100%;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
}

/* tab */
.tab-label {
  font-weight: var(--fw_bold);
  color: var(--clr_shade_grey_01) !important;
}
#tsum-tabs input.tab-input:checked + label.tab-label {
  color: var(--clr_dark_01_1) !important;
}
.tabcontent .forms-field {
  margin-block-start: 20px;
}
#tsum-tabs .tab-main.dashboard-tab {
  margin-block-start: 0 !important;
}

/* reference */
.reference-item {
  padding-bottom: 24px;
}
/* check field */
.checkfield-inner-title {
  padding-block-start: 20px;
  color: var(--clr_frm_primary_14);
  letter-spacing: 0.5px;
}
.check-list ul li {
  padding-block: 5px;
}
.check-list ul li .check-field {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.check-field-label {
  color: var(--clr_dark_01_4) !important;
  position: relative;
  padding-inline-start: 15px !important;
  margin: 0 !important;
  padding-block: 0 !important;
}
.check-field-label::before {
  content: "";
  position: absolute;
  display: block;
  top: 7px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--clr_dark_01_4);
}
.form__group {
  display: flex;
  border: 2px solid var(--clr_primary_04);
}
.form__radio-input {
  display: none;
}

.form__radio-label {
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 0;
  font-size: 14px;
  padding: 2px 11px !important;
  cursor: pointer;
  min-width: 57px;
}

.form__radio-button {
  height: 0;
  width: 0;
  border: 1px solid var(--clr_primary_04);
  border-radius: 50%;
  display: inline-block;
  position: relative;
  transform: translateY(-2px);
}
.form__radio-button::after {
  content: "";
  display: block;
  height: 0;
  width: 0;
  position: absolute;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transition: opacity 0.1s;
  transform: translate(-50%, -50%);
  background-color: var(--clr_primary_04);
  opacity: 0;
}
.form__radio-input:checked + .form__radio-label .form__radio-button:after {
  opacity: 1;
}
.form__radio-input:checked + .form__radio-label {
  background-color: var(--clr_primary_04);
  border-bottom: none !important;
}
.check-input-field {
  width: 50% !important;
  margin-block-start: 20px;
}
/* divider */
.divider {
  margin-block: 40px;
  border-top: 1px solid var(--border_clr_grey_02);
  width: 100%;
  padding: 0 !important;
}
/* employeement & education */
.certificate-check label {
  width: max-content !important;
  flex: initial;
}
.plus-minus-icon {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 30px;
}

.plus-minus-icon .btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--clr_frm_primary_01);
  background: transparent;
}
.plus-minus-icon .btn i {
  color: var(--clr_frm_primary_01);
}
.plus-minus-icon .btn.active {
  background-color: var(--clr_frm_primary_08);
  border-color: var(--clr_frm_primary_08);
}
.row-checkbox {
  margin-block-start: 30px;
  justify-content: space-between;
}
.table-checkbox tr td:first-child {
  width: 100%;
}
.table-checkbox tr td label {
  padding: 4px 0 !important;
}
.table-checkbox th:last-child {
  text-align: center;
}
.table-checkbox {
  border-spacing: 0px 3px;
  border-collapse: separate;
}

/* height field */
.mid-symbol {
  display: flex;
  align-items: center;
  line-height: 0;
}
/* health-tab */
.Vital-check {
  flex: 0 0 45%;
  max-width: 45%;
}

/* upload */
.add-file {
  background: var(--clr_frm_primary_09);
  border-radius: 5px;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.add-file img {
  width: 100%;
  max-width: 12px;
  height: 100%;
  max-height: 14px;
  object-fit: contain;
}
.upload-box-label {
  color: var(--clr_shade_grey_02);
  font-weight: var(--fw_bold);
}
.upload-box {
  border: 1px dashed var(--clr_primary_12);
  background: var(--clr_frm_primary_13);
  border-radius: 10px;
  padding: 24px 28px;
}
.upload-label {
  color: var(--clr_frm_primary_14);
}
.upload-label a {
  color: var(--clr_primary_12);
}
.upload-label-2 {
  font-size: 10px;
  line-height: 1.4;
  color: var(--clr_frm_primary_14);
}
.main-upload-box input {
  display: inline-block !important;
  padding: 0;
  width: 100% !important;
  max-width: 500px;
  font-size: 0;
  box-shadow: none;
  border: none;
  margin: 0 !important;
  position: absolute;
  left: 0;
  top: -10px;
  height: 100%;
  overflow: hidden !important;
  background: transparent;
}
.main-upload-box {
  position: relative;
  z-index: 99;
  margin-block-start: 15px;
  overflow: hidden;
}
.upload-blk {
  max-width: 500px;
}
.custom-upload-btn {
  width: 200px !important;
  min-height: 50px !important;
  font-size: 16px !important;
}
.payroll-btn {
  min-height: 41px !important;
}
.download-btn {
  width: 50px;
  height: 50px;
  border: 2px solid var(--clr_primary_11);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.download-btn i {
  color: var(--clr_primary_11);
}
/* button */
.dashboard-btn .btn i {
  position: absolute;
  left: 20%;
  top: 50%;
  transform: translateY(-50%);
}
.dashboard-btn .btn {
  position: relative;
  font-weight: var(--fw_bold);
}

/* datepicker */
input[type="month" i]::-webkit-calendar-picker-indicator {
  filter: brightness(0) saturate(100%) invert(75%) sepia(87%) saturate(5864%)
    hue-rotate(23deg) brightness(82%) contrast(102%);
}

/* career jobs */
.career_search_job {
  gap: 24px;
}
.career_search_job input.custom-input {
  min-height: 60px;
  /* font-size: 14px; */
  padding-inline-start: 45px !important;
}
.career_search_job .pre-icon {
  top: 17px;
}
.career_search_job .pre-icon i {
  color: var(--clr_primary_12);
}
.career_search_job .search-btn .btn {
  /* background: var(--clr_frm_dark_02);
  border: 1px solid var(--clr_frm_dark_02); */
  min-height: 60px;
  min-width: 243px;
  width: 100%;
  border-radius: 10px;
}
.career_search_job .search-btn .btn:hover {
  background-color: transparent;
  /* color: var(--clr_frm_dark_02); */
}
.search-result {
  margin-block-start: 50px !important;
}
.results-list .box-1:hover {
  border: 1px solid var(--clr_primary_12);
}
.suggestion-list {
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  background: #fff;
  width: 100%;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 9999;
}
.suggestion-list li {
  padding: 10px;
  cursor: pointer;
  border-bottom: 1px solid #ddd;
}
.suggestion-list li:hover {
  background: #f0f0f0;
}
/* custom select */
.dropdown-grid {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-block: 30px;
  flex-wrap: wrap;
}
.dropdown-grid .item-select {
  background: transparent;
  padding: 0;
}
.item-select .wrapper-dropdown {
  position: relative;
  display: inline-block;
  min-width: 156px;
  width: 100% !important;
  max-width: 156px;
  padding: 0px 0px 0px 0px;
  min-height: 40px;
  line-height: 40px;
  border-radius: 77px;
  background: var(--clr_border_04);
  text-align: left;
  color: var(--clr_dark_07);
  cursor: pointer;
  font-size: 14px;
  font-family: "Sharp Sans Semibold";
}

.scrollable-menu {
  height: auto;
  max-height: 200px;
  overflow-x: hidden;
}

.arrow {
  margin-left: 0;
  margin-right: 0;
  float: right;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  rotate: var(--normal-font-size);
}

.item-select .selected-display {
  margin-left: 20px;
}

svg {
  transition: all 0.3s;
}

.item-select .wrapper-dropdown.active svg {
  transform: translateY(-50%) rotate(180deg);
}

.item-select .wrapper-dropdown .dropdown {
  transition: 0.3s;
  position: absolute;
  width: 100%;
  max-width: 300px;
  top: 120%;
  right: 0;
  left: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  z-index: 99;
  border-radius: 15px;
  box-shadow: inherit;
  background: var(--clr_light_01);
  box-shadow: 0px 4px 40px 0px #0000001a;
  -webkit-transform-origin: top;
  -moz-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
  user-select: none;
  opacity: 0;
  visibility: hidden;
  padding: 18px 21px !important;
  transform: none;
}
.item-select .wrapper-dropdown .dropdown .header-text {
  color: var(--clr_para_02);
}
.item-select .wrapper-dropdown .dropdown li .type-check label {
  color: var(--clr_para_02);
}
.item-select .wrapper-dropdown .dropdown li {
  padding: 6px 0px;
  line-height: 1.4;
  overflow: hidden;
  font-family: "Sharp Sans Semibold";
  font-size: 12px;
  color: var(--clr_primary_12);
}
.item-select .dropdown .form-check-input:checked[type="checkbox"] {
  background-image: none;
}
.item-select .dropdown .form_check:checked {
  background: var(--clr_primary_12);
  border-width: 0;
}
.item-select .dropdown .form_check {
  /* background: var(--clr_border_02); */
  border-width: 0;
}
.item-select .wrapper-dropdown .dropdown li:last-child {
  border-bottom: none;
}

.item-select .wrapper-dropdown .dropdown li:hover {
  color: var(--clr_primary_hover);
}

.item-select .wrapper-dropdown.active .dropdown {
  opacity: 1;
  visibility: visible;
}

/* distance range  */
input[type="range"] {
  margin: 8px auto;
  font-size: 18px;
  width: 100%;
  padding: 0;
  min-height: 100%;
}
input[type="range"]:after {
  content: value;
}
input[type="range" i]::-webkit-slider-runnable-track {
  background: linear-gradient(90deg, #edc988 0%, #87724d 100%);
  border-radius: 10px;
  height: 8px;
}
input[type="range" i]::-webkit-slider-thumb {
  position: relative;
  margin-block-start: -4px;
}

/* main dashboard */
.main-panel-dashboard {
  width: 100%;
  /* background: var(--clr_light_01); */
  background: var(--clr_shade_grey_07); 
}
.main-panel-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 28px;
  position: relative;
}
.header-left-blk {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 26px;
  flex: 1;
}
.prf-name {
  flex: 1;
}
.cmp-name {
  color: var(--clr_primary_13);
}
.cmp-title {
  color: var(--clr_dark_01_3);
  font-weight: var(--fw_semiBold);
}
.cmp-date {
  font-size: 9px;
  position: relative;
  color: var(--clr_shade_grey_01);
}
.cmp-time {
  padding-inline-start: 20px;
  position: relative;
}
.cmp-time::before {
  content: "";
  display: block;
  position: absolute;
  left: 8px;
  top: 0;
  width: 1px;
  height: 100%;
  background: var(--clr_shade_grey_01);
}
.add-search {
  width: 100%;
  max-width: 530px;
  box-shadow: 0px 1px 4px 0px #00000012;
  border: 1px solid var(--border_clr_grey_03);
  border-radius: 10px;
  overflow: hidden;
  flex: 1;
  background: var(--clr_light_01);
}
.add-search input {
  border: none;
  background: transparent;
  box-shadow: none;
  color: var(--clr_light_02);
}
.add-search input::placeholder {
  color: var(--clr_light_02);
}
.add-search .input-group-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-control:focus {
  box-shadow: none;
  background: transparent;
}
.add-search .input-group-btn .btn {
  border-left: 1px solid var(--border_clr_grey_01);
  border-radius: 0;
}
.add-search .input-group-btn i {
  color: var(--border_clr_grey_04);
}
.new-referral {
  border-radius: 23px;
  border: 1px solid var(--border_clr_grey_05);
  box-shadow: 0px 1px 4px 0px #00000012;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: var(--clr_light_01) !important;
}
.new-referral:hover{
  transform: scale(1.02);
}
.new-referral .plus-circle {
  background-color: var(--clr_primary_16);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.new-referral .plus-circle i {
  color: var(--clr_light_01);
  font-size: 20px;
}
.ref-title {
  color: var(--clr_dark_01_3);
  font-weight: var(--fw_semiBold);
  padding-inline: 20px;
}
.header-right-blk {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
}
.language-blk .language-circle {
  background-color: var(--clr_primary_04);
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 4.55px 2.27px -2.27px #00000008;
}
.language-blk .language-circle img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}
.prf-dp-img {
  border-radius: 50%;
  width: 42px;
  height: 42px;
  position: relative;
  background: #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.prf-dp-img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.prf-dp-img::before {
  content: "";
  display: block;
  position: absolute;
  right: 1px;
  top: 0px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--clr_primary_16);
  border: 2px solid #fff;
}
.notify-bell i {
  color: var(--clr_shade_grey_04);
  font-size: 22px;
}
/* dashboard main user */
.dashboard-body-panel {
  margin-block: 40px 30px;
  padding-inline: 28px;
}
.dash-name {
  color: var(--clr_dark_01_3);
}
.dashboard-inner-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}
.marketer-dashboard.dashboard-inner-grid .left-grid {
  width: 75%;
}
.marketer-dashboard.dashboard-inner-grid .right-grid {
  width: 25%;
}
.bisiness-dashboard.dashboard-inner-grid .left-grid {
  width: 75%;
}
.bisiness-dashboard.dashboard-inner-grid .right-grid {
  width: 25%;
}
.dashboard-inner-grid .left-grid {
  width: 70%;
}
.right-grid {
  width: 30%;
}
/* chat box */
.chat-contain {
  border: 1px solid var(--border_clr_grey_05) !important;
  box-shadow: 0px 1px 4px 0px #00000012 !important;
  padding: 16px 18px !important;
  margin-block-end: 16px;
}
.chat-contain p {
  border-bottom: 0.68px solid var(--clr_border_06);
  color: var(--clr_dark_01_5) !important;
  font-family: "Sharp Sans Bold";
  font-size: 15px;
  line-height: 19px;
  /* padding-block-end: 16px;
  margin-block-end: 15px; */
  position: relative;
}
/* .chat-contain p::after {
  content: "";
  position: absolute;
  bottom: 0;
  background: #080809;
  width: 100px;
  left: 0;
  height: 2px;
} */
.marketer-chatbox #chat-box {
  height: 300px !important;
  min-height: 300px !important;
  padding: 0px !important;
}
.marketer-chatbox .message-row .chat-message-bubble {
  border-radius: 12px !important;
  min-height: 29px !important;
  padding: 10px 15px !important;
  font-family: "Sharp Sans Semibold" !important;
  font-size: 10px !important;
  line-height: 16px !important;
}
.message-row.you .chat-message-bubble {
  background: #5c92ff !important;
}
.status-dot {
  right: 10px !important;
}
.message-row.other .chat-message-bubble {
  background: #f7f7f7 !important;
  color: #1e1b39 !important;
}
#chat-box {
  background-color: transparent !important;
  border-radius: 0 !important;
  border: none !important;
}
.chat-input-area {
  background: transparent !important;
  padding: 0 !important;
}
#chat-message {
  background: #f8f9fb !important;
  color: #929ca8;
  font-size: 9px !important;
  font-family: "Quicksand", sans-serif;
  font-weight: var(--fw_semiBold);
  min-height: 35px;
}
#chat-box::-webkit-scrollbar-track {
  background-color: #f5f5f5;
}
.chat-input-area button {
  padding: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 35px;
}

#chat-box::-webkit-scrollbar {
  width: 0px !important;
  background-color: #f5f5f5;
  height: 4px;
}

#chat-box::-webkit-scrollbar-thumb {
  background-color: #000000;
}

.chat-main .title-chat {
  font-family: "Quicksand", sans-serif !important;
  font-weight: var(--fw_semiBold) !important;
}
/*  */

.upper-grid {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  gap: 16px;
}
.grid-box {
  box-shadow: 0px 1px 4px 0px #00000012;
  border: 1px solid var(--border_clr_grey_05);
  border-radius: 14px;
  padding: 16px;
  position: relative;
  background: var(--clr_light_01) !important;
}
.grid-box.case-chart {
  width: 40%;
}
.case-chart {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
}
.grid-box.case-type-chart {
  width: 60%;
}

.grid-box.monthly-chart {
  width: 30%;
}
.monthly-chart {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
}
.count-percent {
  color: var(--clr_primary_14);
  position: absolute;
  top: 15px;
  right: 15px;
}
.monthly-chart .chart-circle {
  width: 90px;
  height: 90px;
}
.grid-box .title h4 {
  color: var(--clr_dark_01_3);
}
.grid-box.referral-chart {
  width: 50%;
}
/* .data-grid .pichart-circle {
  width: 66px;
  height: 66px;
} */
.count-referral b {
  color: var(--clr_dark_02);
}
.count-referral span {
  color: var(--clr_shade_grey_05);
}
.referral-list ul li {
  position: relative;
  /* padding-inline-start: 15px; */
  font-size: 12px;
}
.referral-list ul li::before {
  content: "";
  display: none;
  position: absolute;
  left: 0;
  top: 5px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--clr_frm_dark_02_02);
}
.soc-chart {
  width: 20%;
}
.table-block {
  box-shadow: 0px 1px 4px 0px #00000012;
  border: 1px solid var(--border_clr_grey_05);
  border-radius: 14px;
  padding: 16px;
  position: relative;
  background: var(--clr_light_01);
  margin-block: 16px;
}
.table-title {
  border-bottom: 1px solid var(--clr_border_06);
}
.table-title .dash-name {
  position: relative;
  margin: 0;
  padding-block: 8px 14px;
}
.table-title .dash-name::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  left: 0;
  bottom: 0;
  background-color: var(--clr_dark_01_5);
}
.side-link {
  font-family: "Inter", sans-serif;
  font-weight: var(--fw_medium);
  color: var(--clr_dark_01_5);
}

/* table */
table::-webkit-scrollbar-track {
  background-color: #f5f5f5;
}

table::-webkit-scrollbar {
  width: 0px !important;
  background-color: #f5f5f5;
  height: 4px;
}

table::-webkit-scrollbar-thumb {
  background-color: #000000;
}
table.schedule-table {
  overflow-x: auto;
  display: block;
}
.table-view table {
  overflow-x: auto;
  display: block;
  border-collapse: separate;
  border-spacing: 3px 8px !important;
  font-family: "Quicksand", sans-serif;
  font-weight: var(--fw_bold);
}
.table-view table thead tr,
.table-view table thead tr th {
  background: var(--clr_primary_15) !important;
  color: var(--clr_light_01) !important;
}
.table-view table thead tr th {
  vertical-align: middle;
}
.table-view table tbody tr {
  background: var(--bg_clr_prime_light_01) !important;
}
.table-view .table > :not(caption) > * > * {
  border-bottom: 0;
  box-shadow: none;
}
.table-view .table tr th:first-child,
.table-view .table tr td:first-child {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
.table-view .table tr th:last-child,
.table-view .table tr td:last-child {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
.table-view .table tr th,
.table-view .table tr td {
  padding: 7px;
  padding-inline: 17px;
  font-size: 12px;
  border: none !important;
  vertical-align: middle;
}
table.dataTable.no-footer {
  border-bottom: none !important;
}
.dataTables_paginate .paginate_button {
  color: var(--clr_para_09) !important;
  font-family: "Sharp Sans Semibold";
}
.dataTables_info {
  color: var(--clr_primary_11) !important;
  font-family: "Sharp Sans Medium";
  font-size: 13px;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.current,
.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
  background: var(--clr_frm_primary_13) !important;
  border: 1px solid var(--clr_frm_primary_06) !important;
  color: var(--clr_primary_11) !important;
  font-size: 13px;
}
.dataTables_wrapper .dataTables_paginate .paginate_button a {
  font-size: 13px;
}
.dataTables_wrapper
  .dataTables_paginate
  .paginate_button.disabled
  > .page-link {
  background-color: var(--clr_light_04);
  color: var(--clr_para_04) !important;
}
.table-view .table tr td {
  color: var(--clr_shade_grey_02);
  background: var(--bg_clr_prime_light_01) !important;
  opacity: 1 !important;
}
.table-view .table tr th:first-child {
  min-width: 100%;
}
.table-view .table tr th:nth-child(2) {
  min-width: 100px;
  width: 100% !important;
}
.table-view .table tr th:nth-child(3) {
  min-width: 240px;
}
.table-view .table tr th:nth-child(4),
.table-view .table tr th:nth-child(5),
.table-view .table tr th:nth-child(6),
.table-view .table tr th:nth-child(7),
.table-view .table tr th:nth-child(8) {
  min-width: 160px;
}
.table-view .table tr th:last-child {
  min-width: 360px;
}

/* table btnset */
.sm-btn {
  border-radius: 14px;
  font-family: "Quicksand", sans-serif;
  font-weight: var(--fw_bold);
  padding: 4px 9px;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  width: 100%;
}
.sm-btn.btn-01 {
  background: var(--clr_light_bg_01);
  color: var(--clr_text_btn_01);
}
.sm-btn.btn-02 {
  background: var(--clr_light_bg_02);
  color: var(--clr_text_btn_02);
}
.sm-btn.btn-03 {
  background: var(--clr_light_bg_03);
  color: var(--clr_text_btn_03);
}
.sm-btn.btn-04 {
  background: var(--clr_light_bg_04);
  color: var(--clr_light_01);
}
.sm-btn.btn-05 {
  background: var(--clr_light_bg_05);
  color: var(--clr_text_btn_05);
}
.sm-btn.btn-06 {
  background: var(--clr_light_bg_06);
  color: var(--clr_light_01);
}

/* review quote box */
.quote-title {
  color: var(--clr_dark_01_5);
  margin: 0;
}
.quote-icon i {
  color: var(--clr_border_02);
  font-size: 22px;
}
.quote-details {
  color: var(--clr_dark_01_5);
}
.quote-span {
  color: var(--clr_light_01);
  font-size: 10px;
  line-height: 1.4;
}

/* reports */
.custom-grid-restore {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 22px;
}
.card-box {
  box-shadow: 0px 0.99px 3.96px 0px #00000012;
  border-radius: 13px;
  background: var(--clr_light_01);
}
.card-box:first-child {
  width: 30%;
}
.card-box:nth-child(2) {
  width: 20%;
}
.card-box:nth-child(3) {
  width: 25%;
}
.card-box:nth-child(4) {
  width: 25%;
}
.card-box:first-child .card-box-header {
  padding: 15px 23px;
}
.card-box-header {
  padding: 17px 23px;
  border-bottom: 1px solid var(--border_clr_grey_06);
}
.card-header-name {
  color: var(--clr_dark_01_5);
}
.item-select {
  background: var(--border_clr_grey_04);
  border-radius: 11px;
  padding: 4px 10px;
  font-family: "Quicksand", sans-serif;
  font-weight: var(--fw_bold);
  color: var(--clr_light_01);
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.card-body-details {
  padding: 17px 23px;
}
.card-detail-count .card-icon {
  background: #f6e02017;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-detail-count .card-icon img {
  width: 15px;
  height: 15px;
  object-fit: contain;
}
.card-detail-count .text-detail .card-name {
  color: var(--clr_shade_grey_01);
}
.card-body-details .text-detail .card-number {
  color: var(--clr_para_09);
}
.card-body-details .text-detail .card-percentage {
  color: var(--clr_dark_01_2);
}
.card-body-details .text-detail .card-percentage-title {
  color: var(--clr_primary_17);
}
.dashboard-inner-grid.custom-large-box {
  width: 100%;
  margin-block-start: 46px;
}
.dashboard-inner-grid.custom-large-box .card-box {
  width: 50%;
}
.table-block-user {
  box-shadow: 0px 0.99px 3.96px 0px #00000012;
  border-radius: 13px;
  background: var(--clr_light_01);
  padding: 20px 16px;
}
.table-block-user .table-title {
  border: none;
}
.table-block-user .table-title .dash-name::after {
  display: none;
}
.table-block-user .table-view table {
  margin-bottom: 0;
}
.table-block-user .table-title .dash-name {
  color: var(--clr_dark_01_5);
  padding: 0;
}
.table-block-user .table-view table thead tr {
  background: var(--clr_light_bg_07);
  color: var(--clr_dark_text_01);
}
.lower-table-grid {
  margin-block-start: 28px;
  display: flex;
  gap: 19px;
}
.lower-table-grid .table-block-user:first-child {
  width: 45%;
}
.lower-table-grid .table-block-user:nth-child(2) {
  width: 35%;
}
.lower-table-grid .table-block-user:nth-child(3) {
  width: 20%;
}
.lower-table-grid
  .table-block-user:first-child
  .table-view
  .table
  tr
  td:nth-child(2) {
  color: var(--clr_primary_17);
}
.lower-table-grid
  .table-block-user:first-child
  .table-view
  .table
  tr
  td:nth-child(1) {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.lower-table-grid
  .table-block-user:first-child
  .table-view
  .table
  tr
  td:nth-child(1)
  .prf-img {
  width: 25px;
  height: 25px;
  overflow: hidden;
  border-radius: 50%;
  margin: 0;
}
.lower-table-grid
  .table-block-user:first-child
  .table-view
  .table
  tr
  td:nth-child(3)
  .download-img {
  width: 15px;
  height: 15px;
}
/* user dashboard nav */
.dashboard-nav {
  background-color: #f8f8f9;
}
/* schedule-table */
.schedule-table {
  overflow: hidden;
  border-collapse: separate;
  border-spacing: 0;
}
.schedule-table tr {
  /* border: 1px solid var(--clr_frm_primary_06); */
  border: none;
}
.schedule-table th,
.schedule-table td {
  font-family: "Sharp Sans Semibold";
  color: var(--clr_para_02) !important;
  border: 1px solid var(--clr_frm_primary_06);
  /* border-style: none solid solid none; */
  padding: 10px;
  vertical-align: middle;
  position: relative;
}
.schedule-table.table tbody tr.table-detail td:last-child {
  border-top: none;
}
.schedule-table tr:first-child th:first-child {
  border-top-left-radius: 10px;
}
.schedule-table tr:first-child th:last-child {
  border-top-right-radius: 10px;
  border-left: none;
}
.schedule-table tr:last-child td:first-child {
  border-bottom-left-radius: 10px;
}
.schedule-table tr:last-child td:last-child {
  border-bottom-right-radius: 10px;
}
.schedule-table tr:first-child td {
  border-top-style: solid;
}
.schedule-table tr td:first-child {
  border-top: none;
  max-width: 200px;
  border-right: none;
}
.schedule-table.table tbody tr.table-detail td {
  box-shadow: none;
  background: var(--clr_light_01);
  color: var(--clr_frm_primary_14) !important;
  font-size: 12px;
  padding: 7px 24px;
  min-height: 45px;
}
.schedule-table.table tbody tr.table-detail td:first-child > * {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 45px;
}
.schedule-table .table-active th {
  background: var(--clr_table_th_bg);
  color: var(--clr_frm_primary_14);
  font-size: 15px;
  padding: 18px 24px;
  --bs-table-accent-bg: none;
}
.schedule-table .table-active th:last-child {
  width: 350px;
}
.schedule-table .table-active th:first-child {
  max-width: 200px;
  width: 200px;
}
.schedule-table td.text-warning {
  color: var(--clr_primary_11) !important;
}
.time-active {
  font-size: 12px;
}
.time-active td {
  text-align: center;
}
.custom-input-time {
  width: 140px;
  border: 1px solid var(--clr_frm_primary_06);
  background: var(--clr_light_01);
  color: var(--clr_primary_11);
  border-radius: 7px !important;
  min-height: 32px;
  padding-block: 2px;
  font-size: 13px;
}
.custom-input-time:first-child {
  position: relative;
  right: -4px;
}
.end-time-input {
  position: relative;
  left: -4px;
}
.input-group-addon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 55px;
  background: var(--clr_table_box_bg) !important;
  border: 1px solid var(--clr_light_01);
  color: var(--clr_light_01);
}
::-webkit-calendar-picker-indicator {
  filter: brightness(0) saturate(100%) invert(88%) sepia(14%) saturate(7485%)
    hue-rotate(340deg) brightness(86%) contrast(84%);
  margin: 0;
}

/* table time radio */
.custom-radio-table [type="radio"]:checked,
.custom-radio-table [type="radio"]:not(:checked) {
  position: absolute;
  left: -9999px;
}
.custom-radio-table [type="radio"]:checked + label,
.custom-radio-table [type="radio"]:not(:checked) + label {
  position: relative;
  padding-left: 20px;
  cursor: pointer;
  line-height: 20px;
  display: inline-block;
  color: var(--clr_frm_primary_14);
}
.custom-radio-table [type="radio"]:checked + label:before,
.custom-radio-table [type="radio"]:not(:checked) + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: -13px;
  width: 18px;
  height: 18px;
  border: 1px solid var(--clr_primary_11);
  border-radius: 100%;
  background: var(--clr_light_01);
}
.custom-radio-table [type="radio"]:checked + label:after,
.custom-radio-table [type="radio"]:not(:checked) + label:after {
  content: "";
  width: 8.5px;
  height: 8.5px;
  background: var(--clr_primary_11);
  position: absolute;
  top: -8px;
  left: 5px;
  border-radius: 50%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.custom-radio-table [type="radio"]:not(:checked) + label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}
.custom-radio-table [type="radio"]:checked + label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
.time-multiselect span.select2-container {
  min-width: 200px !important;
  max-width: 100% !important;
  width: 100% !important;
}

/* profile-preview */
.website_login .inner_form.profile-preview {
  display: block;
  height: 100% !important;
  min-height: 100% !important;
}

.preview-prf-img {
  width: 80px !important;
  height: 80px !important;
}
.preview-prf-img img.profile-img {
  width: 100%;
  max-width: 80px;
  height: 100%;
  max-height: 80px;
  object-fit: cover;
}
.image-profile {
  /* width: 100%;
  max-width: 100px;
  height: 100%;
  max-height: 100px; */
  /* border-radius: 50%; */
  overflow: hidden;
  margin: 0 auto;
}
.image-profile img {
  height: 100px;
  width: 100px;
  border-radius: 50%;
}
.preview-prf-img .edit-icon {
  bottom: 0px;
  right: -10px;
  width: 29px;
  height: 29px;
}
.edit-btn {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  color: var(--clr_primary_11);
  width: 50px;
  height: 50px;
  background: var(--clr_light_01);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.edit-btn i {
  font-size: 20px;
}
.prf-name-title p.subdetail {
  color: var(--clr_para_09);
  margin-block: 8px;
}
.prf-name-title p.subdetail i {
  margin-inline-end: 8px;
  color: var(--clr_frm_primary_04);
}
.label-title {
  margin: 0;
  color: var(--clr_para_09);
  text-transform: capitalize;
  width: 130px;
}
.detail-body {
  color: var(--clr_primary_11);
  flex: 1;
  white-space: nowrap;
}
.detail-body span {
  cursor: pointer;
}
.website_login .inner_form.profile-preview .row .col-md-6 {
  padding-top: calc(var(--bs-gutter-x) * 0.5);
}
.website_login .inner_form.profile-preview .row .col-md-6 > * {
  flex-wrap: wrap;
}
/* accordion */
#profileAccordion {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 15px;
}
.accordion-item.preview-accordion
  .accordion-header
  .accordion-button:not(.collapsed) {
  color: var(--clr_primary_01) !important;
  background-color: var(--clr_frm_primary_13) !important;
  box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0
    var(--clr_frm_primary_06) !important;
  font-family: "Sharp Sans Semibold";
}

/* Intake dashboard */
.chart-table table {
  border: 1px solid var(--clr_frm_primary_06);
  border-radius: 7px;
  border-collapse: separate;
  overflow: hidden;
  border-spacing: 0;
}
.chart-table table,
.chart-table th,
.chart-table td {
  border: 1px solid var(--clr_frm_primary_06);
  font-family: "Sharp Sans Semibold";
}
.chart-table table td .time-range input {
  background: var(--clr_light_01) !important;
  max-width: 100px;
  color: var(--clr_primary_11);
  font-family: "Sharp Sans Bold";
}
.chart-table table td .day-range label {
  color: var(--clr_frm_primary_14);
  padding-inline-start: 24px !important;
}
.chart-table table td .day-range label::before {
  top: 50% !important;
  transform: translatey(-50%);
}
.chart-table table td .day-range input {
  width: 12px;
  height: 12px;
  border: 1px solid var(--clr_frm_primary_02);
}
.chart-table table td .day-range {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
}
.chart-table table td .time-range {
  position: relative;
  z-index: 1;
  gap: 35px;
}
.chart-table table td .time-range .mid-text {
  height: 41px;
  width: 50px;
  position: absolute;
  left: 40%;
  z-index: -1;
  background: var(--clr_shade_grey_02);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr_light_01);
  border: 1px solid var(--clr_frm_primary_06);
}
.chart-table table thead tr {
  background: var(--clr_light_bg_01);
}
.chart-table table thead tr th {
  padding: 17px 34px;
}
.chart-table table tbody tr td {
  padding: 17px 34px;
}

/* dashboard-intake-tab */
#tsum-tabs .tab-main.dashboard-intake-tab {
  margin-block-start: 0 !important;
}
#tsum-tabs .dashboard-intake-tab section {
  border-top: 1px solid #45445912;
}
#tsum-tabs .tab-main.dashboard-intake-tab .tabitem-label {
  font-weight: var(--fw_bold);
  color: var(--clr_dark_01_3);
}

/* marketer dashboard */
.chart-circle {
  display: flex;
  justify-content: center;
  align-items: center;
}

.legend-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.legend-list li {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
}

.legend-list .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
}
.monthly-text {
  margin-bottom: 0px;
}
/* marketer dashboard */

/* custom-upload-box */
.custom-upload-box {
  margin-block-start: 0;
}
.custom-upload-box .upload-blk {
  max-width: 100%;
}
.custom-upload-box .upload-box {
  border: none;
  background: transparent;
  border-radius: 10px;
  padding: 0;
  min-height: 41px !important;
}
.custom-upload-box .upload-box input {
  /* color: var(--clr_primary_11); */
  color: var(--clr_primary_23);
  font-size: 14px;
  /* background: var(--clr_frm_primary_13) !important; */
  background: var(--clr_light_01) !important;
  height: 41px;
  padding: 11px 20px;
  /* border: 1px solid var(--clr_frm_primary_06); */
  border: 1px solid var(--clr_primary_23);
}
.custom-upload-box .upload-box .upload-label a {
  color: var(--clr_primary_11);
}
.download-btn {
  width: 14px;
  height: 14px;
  border: none;
}
.dwnload {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 2px solid var(--clr_primary_11);
}

.accordion-item.preview-accordion
  .accordion-header
  .accordion-button.collapsed {
  font-family: "Sharp Sans Semibold";
}
.accordion-item.preview-accordion {
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
}
.accordion-item.preview-accordion .accordion-body {
  font-family: "Gilroy";
}
.accordion-item.preview-accordion #headingResume .accordion-button::after {
  display: none;
}
.accordion-item.preview-accordion
  #headingResume
  .accordion-button
  .download-btn {
  width: 31px;
  height: 31px;
}
.accordion-item.preview-accordion
  #headingResume
  .accordion-button
  .download-btn
  i {
  font-size: 14px;
}
.accordion-item.preview-accordion
  .accordion-header
  .accordion-button:not(.collapsed)::after,
.accordion-item.preview-accordion
  .accordion-header
  .accordion-button.collapsed::after {
  filter: brightness(0) saturate(100%) invert(40%) sepia(59%) saturate(2826%)
    hue-rotate(35deg) brightness(90%) contrast(101%);
}
.accordion-item.preview-accordion {
  border: var(--bs-accordion-border-width) solid var(--clr_frm_primary_06);
}
.no-resume {
  color: var(--clr_primary_12);
}
/* referral dashboard */
.selectcheck_title {
  color: var(--clr_frm_primary_14) !important;
}
.new-circle-item {
  background-color: var(--clr_frm_primary_02);
  border-radius: 50%;
  width: 36px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.check-bundle .form_check_bx {
  align-items: flex-start;
}
.check-bundle .form_check_bx .form-check-label span {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
}

/* toaster */
.toaster-customize {
  border-radius: 14px;
  padding: 20px 30px;
  box-shadow: 0px 1px 4px 0px #00000012;
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  max-width: 311px;
}
.toaster-customize .emoji-icon {
  width: 56px;
  height: 56px;
}
.toaster-customize .emoji-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.toaster-customize .toast_title {
  color: var(--clr_light_01);
  margin-bottom: 0;
  flex: 1;
}
.toaster-customize.toast-one {
  background: radial-gradient(
    80.52% 100% at 47.91% 100%,
    #cc9b0a 0%,
    #ffe733 100%
  );
  border: 1px solid #edf0f5;
}
.toaster-customize.toast-two {
  background: var(--clr_primary_17);
  border: 1px solid #29ea53;
}
.toaster-customize.toast-three {
  background: linear-gradient(182.24deg, #dbad6c 2.49%, #755c3a 169.49%);
  border: 1px solid #dbad6c;
}
.toaster-customize.toast-four {
  background: linear-gradient(182.24deg, #ff90a4 2.49%, #ec137b 169.49%);
  border: 1px solid #ff90a4;
}
/* workflow */
.input-btn {
  border-radius: 7px;
  background: var(--clr_primary_04);
  width: 152px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--clr_dark_01);
  font-family: "Gilroy";
  font-weight: var(--fw_bold);
  font-size: 12px;
  line-height: 29px;
  height: 29px;
  border: none;
  position: absolute;
  right: 6px;
  top: 6px;
}
.pending-btn {
  border-radius: 25px;
  background: var(--clr_frm_primary_13);
  width: 85px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--clr_primary_18);
  font-family: "Sharp Sans Semibold";
  font-size: 9px;
  line-height: 19px;
  height: 19px;
  border: 1px solid var(--border_clr_pink_01);
}
.btn-set-workflow {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 15px;
  height: 100%;
}
.edit-view {
  color: var(--clr_text_btn_05) !important;
  border-radius: 10px !important;
  width: 154px !important;
  min-height: 41px !important;
  font-size: 16px !important;
}
/* header */
.header.fixed {
  width: 100%;
  position: sticky;
  top: 0;
  height: 100px;
  z-index: 999;
  background: white;
  box-shadow: 12px 2px 12px 5px #b0b0b01f;
}
/* footer */
.copyright-text {
  color: var(--clr_frm_dark_02_02);
}

/* POC table design */
.chart-table-j table,
.chart-table-j th,
.chart-table-j td {
  border: 1px solid var(--clr_frm_primary_06);
  font-family: "Sharp Sans Semibold";
}
.chart-table-j table thead tr {
  background: var(--clr_light_bg_01);
}
.chart-table-j table thead tr th {
  padding: 17px 34px;
}
.chart-table-j table tbody tr td {
  padding: 9px 56px;
}
#pocTable input {
  width: auto !important;
  padding: 2px 20px !important;
  min-height: 35px !important;
}
#pocTable table {
  width: 50%;
  border-collapse: collapse;
  /* border: 1px solid #e0a853; */
  font-family: Arial, sans-serif;
}
#pocTable th,
#pocTable td {
  /* border: 1px solid #e0a853; */
  padding: 10px;
  text-align: left;
}
#pocTable th {
  background-color: #f5f5f5;
}
.time-input {
  padding: 5px;
  border: 1px solid #e0a853;
  text-align: center;
}
.error {
  color: red;
  font-size: 14px;
}

/* business card */
.business-card {
  /* border-color: var(--clr_frm_primary_08); */
}
.business-card-header {
  background: var(--clr_light_01);
}
.business-card-header .header-title {
  /* color: var(--clr_primary_11); */
}
.business-card hr {
  border: 0;
  border-top: 2px solid var(--clr_frm_primary_08);
  height: 1px;
  margin: 20px 0;
}
.dataTables_length select,
.dataTables_filter input {
  background: var(--clr_frm_primary_13) !important;
  border: 1px solid var(--clr_frm_primary_06) !important;
  color: var(--clr_primary_11) !important;
  min-height: 38px !important;
  font-family: "Sharp Sans Semibold";
  padding: 10px 15px !important;
}
.dataTables_length select::placeholder,
.dataTables_filter input::placeholder {
  color: var(--clr_primary_11) !important;
}
#pendingTable_length.dataTables_length select {
  text-align: center;
}
table.dataTable thead > tr > th.sorting:after,
table.dataTable thead > tr > th.sorting_asc:after,
table.dataTable thead > tr > th.sorting_desc:after,
table.dataTable thead > tr > th.sorting_asc_disabled:after,
table.dataTable thead > tr > th.sorting_desc_disabled:after,
table.dataTable thead > tr > td.sorting:after,
table.dataTable thead > tr > td.sorting_asc:after,
table.dataTable thead > tr > td.sorting_desc:after,
table.dataTable thead > tr > td.sorting_asc_disabled:after,
table.dataTable thead > tr > td.sorting_desc_disabled:after {
  opacity: 0.8 !important;
}
.business-table tbody tr td:last-child {
  /* display: flex; */
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.data-table-button-collection {
  display: none;
}
.dataTables_wrapper .row {
  justify-content: space-between;
}
.business-table tbody tr td a.btn {
  font-size: 12px !important;
  padding: 4px 10px !important;
  border-radius: 4px !important;
}

/* pendingTable */
.table-view .table#pendingTable thead tr th:nth-child(2) {
  width: 50% !important;
}
.table-view .table#pendingTable thead tr th:nth-child(3) {
  min-width: 150px;
  width: 50% !important;
}
.table-view .table#pendingTable thead tr th:last-child {
  min-width: 150px;
}
.table-view .table#pendingTable tbody tr td .btn {
  line-height: 23px;
  font-size: 12px;
}
/* #pendingTable_wrapper .row {
  gap: 15px;
} */

/* co-ordinator */
.upper-grid .grid-box.grid-box-coordinate {
  width: 40%;
}
.upper-grid .data-grid .pichart-circle {
  width: 88px;
  height: 88px;
}
.upper-grid-coordinate .referral-list ul li::before {
  display: none;
}
.upper-grid-coordinate .grid-box {
  padding: 19px 28px;
}
.upper-grid-coordinate .grid-box:first-child {
  padding: 0;
}
.grid-box-header {
  border-bottom: 1px solid var(--border_clr_grey_06);
  padding: 19px 28px 10px;
}
.upper-grid-coordinate .case-chart {
  padding: 19px 28px;
}
.upper-grid-coordinate .case-chart .chart-circle {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background: var(--clr_primary_18);
  display: flex;
  align-items: center;
  justify-content: center;
}
.upper-grid-coordinate .case-chart .chart-circle img {
  width: 36px;
  height: 36px;
}
.chart-coordinate-title .count-percent {
  right: 0;
}
.chart-coordinate-title h4.monthly-text {
  color: var(--clr_para_06);
}
.chart-coordinate-title .monthly-number {
  color: var(--clr_para_09);
}
.duration-date {
  position: relative;
}
.duration-date-list {
  position: absolute;
  top: 20px;
  left: 0;
  background-color: var(--clr_light_01);
  z-index: 1;
  border-radius: 10px;
  transition: opacity 0.3s ease, transform 0.3s ease;
  border: 1px solid var(--clr_border_02);
  padding: 10px;
}
.duration-date-list li {
  color: var(--clr_shade_grey_05);
}
.duration-date-list li:hover {
  color: var(--clr_light_bg_04);
}
.duration-date .label-title i {
  font-size: 12px;
}
.label-title-dashboard i {
  font-size: 12px;
}
.patient-number label {
  color: var(--clr_shade_grey_01);
}
.caret-green {
  color: var(--clr_primary_10);
}
.caret-yellow {
  color: var(--clr_primary_17);
}
.caret-red {
  color: var(--clr_primary_13);
}
.total-num span {
  color: var(--clr_dark_01_5);
  font-family: "Inter", sans-serif;
  font-weight: var(--fw_medium);
}
.ellipse-menu i {
  color: var(--clr_border_02);
  font-size: 14px;
}
.day .day-name {
  font-family: "Sharp Sans Semibold";
  font-size: 10px;
  color: var(--clr_para_04);
}
.todo-list .todo-card {
  box-shadow: 0px 1.48px 6.33px 0px #0000000f;
}
.time-view .time {
  margin-inline-start: 8px;
}
.time-view {
  margin-block-end: 6px;
}
.time-view .time,
.time-ago {
  font-family: "Sharp Sans Semibold";
  font-size: 10px;
  color: var(--clr_shade_grey_06);
  line-height: 11px;
}
.todo-card .time-ago {
  margin-block-start: 6px;
}

.time-view span.dot {
  height: 8px !important;
  width: 8px !important;
}
.day-tabs .day.active {
  width: 43px;
  padding: 7px;
}
.day .day-date {
  margin-block-start: 4px;
}

/* marketer */
.marketer-total-eferrals .card-detail-img {
  width: 150px;
  height: 60px;
}
.caregiver-application-chart .card-detail-img {
  width: 200px;
  height: 100px;
}
.average-onboarding-chart .card-detail-img {
  width: 160px;
  height: 100px;
}
/* .onb-com-chart .card-detail-img {
  width: 150px;
  height: 100px;
} */
.onb-complt-label {
  position: absolute;
  top: 75%;
  left: 50%;
  transform: translate(-50%, -40%);
  text-align: center;
}
.onb-complt-percentage {
  font-size: 24px;
  font-weight: 700;
  color: #2d2d2d;
}
.onb-complt-text {
  font-size: 12px;
  color: #888;
}
.chart-container {
  padding: 0;
  margin: 0;
  height: 100px; /* adjust height as needed */
  display: flex;
  justify-content: center;
  align-items: center;
}

#onb_complt_chart {
  display: block;
  margin: 0;
  padding: 0;
}
.card-body-details,
.card-detail-img {
  padding: 0;
  margin: 0;
}

.market-cancellation-chart .card-detail-img {
  width: 150px;
  height: 60px;
}
.market-soc-chart .card-detail-img {
  width: 150px;
  height: 60px;
}
.market-business-chart {
  width: 100%;
}
.marketer-total-eferrals .growth-indicator {
  font-size: 12px;
  color: var(--clr_primary_17);
  background: #29ea5340;
  padding: 2px 8px;
  border-radius: 12px;
  margin-right: 50px;
}
#cancellationChart,
#socChart {
  height: 100px;
  width: 150px;
}
#businessChart {
  width: 570px;
  height: 220px;
}
.increase-text {
  font-size: 13px;
}
.conversion-icon {
  display: flex;
  gap: 10px;
  align-items: center;
}
.conversion-icon .person-icon {
  width: 31px;
  height: 31px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffecdbc9;
}
.conversion-icon .person-icon i {
  font-size: 14px;
  color: var(--clr_primary_19);
}
.right-arrow-icon i {
  color: var(--dif_icon_clr);
}
.conversion-icon .heart-icon {
  width: 31px;
  height: 31px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f6e02021;
}
.conversion-icon .heart-icon i {
  font-size: 16px;
  color: var(--clr_primary_10);
}
.leads-label {
  color: var(--dif_icon_clr);
}
.increase-text {
  color: var(--clr_para_04);
}
.increase-text span {
  color: var(--clr_primary_17);
}
.badge-details {
  position: absolute;
  top: 0;
  margin-top: 0;
  background: var(--clr_primary_20);
  color: var(--clr_light_01);
  width: 69px;
  height: 34px;
  border-radius: 10px;
}
.badge-details span {
  line-height: 1.2;
  font-size: 10px;
  padding: 4px;
}
.card-detail-img canvas {
  width: 100% !important;
}
.dashboard-inner-grid.custom-large-box .card-box .card-box-header .item-select {
  background: var(--clr_text_btn_05);
}
.chart-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.chart-label p {
  color: var(--clr_shade_grey_02);
}
.chart-label.left-details {
  position: relative;
}
.chart-label.left-details p {
  color: var(--dif_icon_clr);
}
.chart-arrow {
  position: absolute;
  transform: rotate(-90deg);
  left: -100px;
  width: 225px;
  top: 43%;
}
/* caregiver-grid-dashboard */
.caregiver-grid-dashboard .card-box {
  width: 25%;
}
.caregiver-grid-dashboard .card-box.table-card {
  width: 75%;
}
.caregiver-grid-dashboard .card-box.table-card .table-block {
  margin: 0;
  border: 0;
  box-shadow: none;
}
.caregiver-grid-dashboard
  .card-box.table-card
  .table-block
  .table-title
  .dash-name::after {
  display: none;
}
.caregiver-grid-dashboard
  .card-box.table-card
  .table-block
  .table-view
  table
  thead
  tr,
.caregiver-grid-dashboard
  .card-box.table-card
  .table-block
  .table-view
  table
  thead
  tr
  th {
  background: var(--clr_light_bg_07) !important;
  color: var(--clr_dark_text_01) !important;
}
.caregiver-grid-dashboard .card-box .card-box-header {
  padding: 15px;
}
.caregiver-grid-dashboard .card-box .item-select {
  color: var(--clr_para_04);
  background: transparent;
  padding: 0;
}
.text-green {
  color: var(--clr_primary_17);
}
.caregiver-grid-dashboard .card-box .card-name {
  color: var(--clr_primary_21);
}
.caregiver-grid-dashboard .card-box .growth-indicator {
  background: #00ae590f;
  margin-right: 10px;
  font-size: 9px;
  padding: 4px 8px;
  color: var(--clr_primary_17);
  border-radius: 10px;
}
/* .onboarded-text{
  font-size: 10px !important;
} */
.caregiver-grid-dashboard .card-box .marketer-total-eferrals .card-detail-img {
  /* width: 100%;
  height: 100%; */
}
.caregiver-grid-dashboard .card-box .card-body-details {
  padding: 15px;
}
.caregiver-grid-dashboard .old-img-1 {
  width: 100%;
  height: 100%;
  max-width: 88px;
  max-height: 83px;
  margin-top: 15px;
}
.application-status ul li {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: flex-start;
}
.application-status ul li .mark-arrow {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--clr_primary_17);
}
.application-status ul li .mark-arrow.clock-icon {
  background-color: var(--clr_frm_primary_05_01);
}
.application-status ul li .mark-arrow i {
  color: var(--clr_light_01);
}
.application-status ul li .mark-arrow svg {
  fill: var(--clr_light_01);
}
.application-status ul li .list-label {
  width: 100px;
  color: var(--clr_shade_grey_02);
}
.application-status ul li {
  border-bottom: 1px solid var(--border_clr_grey_08);
  padding-block: 15px;
}
.application-status ul li:last-child {
  border: none;
}
.application-status ul li .onboarded {
  background: var(--clr_primary_22);
}
.text-yellow {
  color: var(--clr_frm_primary_05_01);
}
.text-orange {
  color: var(--clr_primary_22);
}

/* toggle button */
.input-switch {
  display: none;
}

.label-switch {
  display: inline-block;
  position: relative;
}

.label-switch::before,
.label-switch::after {
  content: "";
  display: inline-block;
  cursor: pointer;
  transition: all 0.5s;
}

.label-switch::before {
  width: 60px;
  height: 25px;
  border: 1px solid #757575;
  border-radius: 4em;
  background: #888888;
}

.label-switch::after {
  position: absolute;
  left: 0;
  width: 25px;
  height: 25px;
  border: 1px solid #757575;
  border-radius: 4em;
  background: #ffffff;
}

.input-switch:checked ~ .label-switch::before {
  background: #feed5a;
  border-color: #feed5a;
}

.input-switch:checked ~ .label-switch::after {
  left: unset;
  right: 0;
  border-color: #757575;
}

.info-text {
  display: inline-block;
}

.info-text::before {
  content: "Not active";
}

.input-switch:checked ~ .info-text::before {
  content: "Active";
}
