* {
  padding: 0;
  margin: 0;
  font-family: "Roboto";
}

.container {
  max-width: 1440px;
  width: 100%;
}

.container-fluid {
  max-width: 100%;
}

body {
  background-color: #fdfbf8;
}
img {
  width: 100%;
}

#header {
  padding: 35px 35px 20px;
}

section {
  padding: 0px 35px;
}

::-webkit-scrollbar {
  width: 5px;
  background-color: #f8f6f4;
  border-radius: 6px;
}

::-webkit-scrollbar-thumb {
  background-color: #bfbfcf;
  border-radius: 6px;
}

.my-scrollContainer::-webkit-scrollbar {
  height: 5px;
  background-color: #f8f6f4;
  border-radius: 6px;
}

.my-scrollContainer::-webkit-scrollbar-thumb {
  background-color: #bfbfcf;
  border-radius: 6px;
}

@-moz-document url-prefix() {
  html {
    scrollbar-width: thin;
    scrollbar-color: #bfbfcf #f8f6f4;
  }

  .my-scrollContainer {
    scrollbar-width: thin;
    scrollbar-color: #bfbfcf #f8f6f4;
  }
}

.c-pointer {
  cursor: pointer;
}
.mw-fit-content {
  max-width: fit-content;
}
#toast-container > .toast-success,
#toast-container > .toast-error {
  opacity: 1 !important;
  box-shadow: none !important;
  background-image: none !important;
}
#toast-container > .toast-success {
  background-color: #28a745;
}
#toast-container > .toast-error {
  background-color: #dc3545;
}
#toast-container > .toast-success:before,
#toast-container > .toast-error:before {
  position: absolute;
  content: "";
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADsSURBVEhLY2AYBfQMgf///3P8+/evAIgvA/FsIF+BavYDDWMBGroaSMMBiE8VC7AZDrIFaMFnii3AZTjUgsUUWUDA8OdAH6iQbQEhw4HyGsPEcKBXBIC4ARhex4G4BsjmweU1soIFaGg/WtoFZRIZdEvIMhxkCCjXIVsATV6gFGACs4Rsw0EGgIIH3QJYJgHSARQZDrWAB+jawzgs+Q2UO49D7jnRSRGoEFRILcdmEMWGI0cm0JJ2QpYA1RDvcmzJEWhABhD/pqrL0S0CWuABKgnRki9lLseS7g2AlqwHWQSKH4oKLrILpRGhEQCw2LiRUIa4lwAAAABJRU5ErkJggg==") !important;
  width: 18px;
  height: 18px;
  top: 16px;
  left: 16px;
  background-size: contain;
}
#toast-container > .toast-error:before {
  position: absolute;
  content: "";
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAHOSURBVEhLrZa/SgNBEMZzh0WKCClSCKaIYOED+AAKeQQLG8HWztLCImBrYadgIdY+gIKNYkBFSwu7CAoqCgkkoGBI/E28PdbLZmeDLgzZzcx83/zZ2SSXC1j9fr+I1Hq93g2yxH4iwM1vkoBWAdxCmpzTxfkN2RcyZNaHFIkSo10+8kgxkXIURV5HGxTmFuc75B2RfQkpxHG8aAgaAFa0tAHqYFfQ7Iwe2yhODk8+J4C7yAoRTWI3w/4klGRgR4lO7Rpn9+gvMyWp+uxFh8+H+ARlgN1nJuJuQAYvNkEnwGFck18Er4q3egEc/oO+mhLdKgRyhdNFiacC0rlOCbhNVz4H9FnAYgDBvU3QIioZlJFLJtsoHYRDfiZoUyIxqCtRpVlANq0EU4dApjrtgezPFad5S19Wgjkc0hNVnuF4HjVA6C7QrSIbylB+oZe3aHgBsqlNqKYH48jXyJKMuAbiyVJ8KzaB3eRc0pg9VwQ4niFryI68qiOi3AbjwdsfnAtk0bCjTLJKr6mrD9g8iq/S/B81hguOMlQTnVyG40wAcjnmgsCNESDrjme7wfftP4P7SP4N3CJZdvzoNyGq2c/HWOXJGsvVg+RA/k2MC/wN6I2YA2Pt8GkAAAAASUVORK5CYII=") !important;
  width: 18px;
  height: 18px;
  top: 16px;
  left: 16px;
  background-size: contain;
}
#toast-container > .toast-success:hover {
  box-shadow: none !important;
}
.toast-close-button {
  font-weight: 500;
  font-size: 1.5rem;
  top: -3px;
  right: 3px;
}

/* Preloader */
.loader {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 5px solid #ededed;
  border-top: 5px solid #4200f9;
  animation: spin 2s linear infinite;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 46%;
  z-index: 99;
}

.loader-main:before {
  position: absolute;
  content: "";
  background-color: #0003;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 999;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* TOOLTIP START */
/* Tooltip container */
.tooltipp {
  position: relative;
  display: inline-block;
  user-select: none;
}

.tooltipp .tooltiptext {
  visibility: hidden;
  opacity: 0;
  width: 300px;
  background-color: black;
  box-shadow: 1px 1px 25px #a5a5a5;
  color: #f5f5f5;
  text-align: center;
  font-size: 15px;
  border-radius: 6px;
  padding: 5px 8px;
  position: absolute;
  z-index: 1;
  bottom: 150%;
  left: 20%;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

#google_element {
  max-width: fit-content;
}

.tooltipp .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: black transparent transparent transparent;
}

.tooltipp:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

/* TOOLTIP END */

/* TOPBAR NOTIFICATION */

.notification-box {
  display: none;
  position: absolute;
  top: 110px;
  right: 15%;
  background-color: inherit;
  border: 2px solid #591fff;
  border-radius: 5px;
  width: fit-content;
  z-index: 9 !important;
}

#notification-list {
  max-height: 400px;
  padding: 5px;
  overflow-y: auto;
}

.noMessage {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.noMessage span {
  color: #591fff;
  font-size: 20px;
  font-weight: 800;
}

.notification-box .closeNotiBtn {
  width: 100%;
  min-width: 467px;
  display: flex;
  align-items: center;
  justify-content: end;
  padding: 8px;
}

.closeNotiBtn i {
  color: #591fff;
  font-size: 20px;
  cursor: pointer;
}

.closeNotiBtn i:hover {
  text-shadow: 0 0 10px #a5a5a5;
}

.notiCard {
  display: flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
}

.notiCard:hover {
  background-color: #e6e4fb;
}

.notiCard i {
  color: #878698;
  font-size: 20px;
  text-shadow: 0px 0px 2px #606060;
}

.notiCard .chevRight {
  display: flex;
  justify-content: right;
  align-items: center;
}

.notiDetail {
  max-width: 400px;
  display: flex;
  flex-direction: column;
}

.notiDetail span:nth-child(1) {
  display: inline-block;
  font-weight: 800;
  font-size: 15px;
}
.notiDetail span:nth-child(2) {
  display: inline-block;
  font-size: 14px;
}

/* custom css */
.btn-primary {
  background-color: #591fff;
  background-image: unset;
}
.btn-primary:hover {
  background-color: #591fff !important;
  background-image: unset;
}
.btn-primary:focus {
  box-shadow: none !important;
}
.btn-secondary {
  background-color: #f3f3f3;
  background-image: unset;
  border-radius: 50px;
  color: #0f094a;
  font-weight: 700;
  padding: 12px 32px;
  border: none;
}
.btn-secondary b {
  color: #ff5b27;
}
.login-box {
  background-color: #fff;
  max-width: 520px;
  margin: auto;
  border-radius: 8px;
  padding: 50px 35px;
  box-shadow: 0 0 16px 2px #ededed;
}
.login-main {
  margin-top: 12vh;
}
.login-logo {
  max-width: 100px;
}
.login-main form {
  max-width: 400px;
  margin: auto;
}
.login-main form input {
  width: 100%;
}
.dashboard-logo {
  max-width: 270px;
}
div a.notification-btn {
  margin-right: 16px;
}
a.notification-btn b {
  margin-right: 5px;
}
.nav-link.active-user {
  color: #000 !important;
  text-decoration: underline;
}
.nav-link.active-title {
  color: #591fff !important;
}

.nav-item a {
  color: #c3aaff !important;
  font-weight: 700;
  font-size: x-large;
}
li.nav-item {
  padding: 0px 10px;
}
li.nav-item .active {
  color: #591fff !important;
}
.nav-item.dropdown ul li a {
  color: #cac9d4 !important;
}
.nav-item.dropdown ul li a.active {
  background: none !important;
  border-bottom: 2px solid #0f094a;
}

div#error img {
  height: 700px;
  width: 100%;
}
div.badge-tab .badge {
  border: 1px solid #ececec;
  background-color: #fdfbf8;
  color: #cac9d5;
  padding: 5px 12px;
}
div.badge-tab .badge.active {
  color: #0f094a;
}

.map-section {
  padding: 0;
  /* box-sizing: border-box; */
}
.map-section .badge-tab {
  padding: 15px 0 15px 15px;
}

.sideBar {
  padding: 0;
  border-right: 3px solid #591fff;
}

.countryMapParent {
  margin: 0 15px 10px 15px;
}

.countryMapParent .form-control-feedback {
  color: #591fff;
  width: fit-content;
  height: fit-content;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 8px;
}

#gig_radio {
  max-height: 150px;
  overflow-y: auto;
  padding: 3px 3px;
  border-radius: 5px;
  border: 2px solid #eee;
}

.tabs {
  display: inline-flexbox;
  justify-content: center;
  user-select: none;
}

.tabs > .tab {
  cursor: pointer;
  border: 2px solid;
  background-color: #f5f5f5;
  color: #591fff;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 600;
}

.tab > .tab-input {
  width: 0;
  height: 0;
  margin: 0;
  display: none;
}

.tab > .tab-box,
.tab > .tab-box-colors {
  text-align: center;
  transition: 0.3s;
  padding: 0 4px;
}

.tab > .tab-input:checked + .tab-box {
  background-color: #591fff;
  color: #f5f5f5;
  border-radius: 3px;
}
.tab-colors-all > .tab-input:checked + .tab-box-colors-all {
  background-color: #591fff;
  color: #f5f5f5;
  border-radius: 3px;
}

.gig-type {
  padding: 0 15px;
}
.gig-type .tabs .tab {
  margin: 3px 2px;
}
.gig-type .tab > .tab-box {
  padding: 1px 4px;
}
.ageInput {
  padding: 0 15px 0 15px;
}

.mapTags {
  padding: 5px 15px;
}

/* MAPS TAGS */
.mapTags .bootstrap-tagsinput {
  box-shadow: none;
  color: #000;
  margin: 0;
  width: 100%;
  height: fit-content;
  max-height: 110px;
  padding: 2px;
  font-size: 13px;
  line-height: 2.1;
  border: none;
  transition: border-color 0.15s ease-in-out;
  overflow-y: auto;
}

.mapTags .bootstrap-tagsinput .tag {
  border-radius: 4px;
  background-color: #f3f3f3;
  border: none;
  color: #878698;
}

.mapTags .bootstrap-tagsinput.has-focus {
  background-color: #fdfbf8;
}
.mapTags .bootstrap-tagsinput input:focus {
  background-color: #fdfbf8;
  box-shadow: none;
}
.mapTags .bootstrap-tagsinput.label-info {
  display: inline-block;
  background-color: #636c72;
  border-radius: 0.25rem;
}

.mapTags .bootstrap-tagsinput input {
  margin-bottom: 0;
  padding: 0;
  width: auto !important;
}

.mapTags .bootstrap-tagsinput input::placeholder {
  color: #878698;
}

.mapTags .bootstrap-tagsinput .tag [data-role="remove"]:after {
  content: "\00d7";
}

/* MAPS TAGS END */

.map-height {
  height: 100vh;
  /* opacity: 0.75; */
  padding: 0;
}

#map {
  height: 100%;
  letter-spacing: 1px;
  color: #591fff;
}

.map-section .service-list {
  padding: 0 13px;
  max-height: 300px;
  height: fit-content;
  width: 100%;
  overflow-y: auto;
  overflow-x: hidden;
}

.service-category .accordion {
  position: relative;
  padding-left: 30px;
}
.service-category .accordion::before {
  position: absolute;
  content: "";
  background-image: url("/assets/images/location-marker.svg");
  top: 0px;
  left: 8px;
  width: 16px;
  height: 16px;
  background-repeat: no-repeat;
  background-size: contain;
}
.service-category .accordion-button {
  font-size: 0.875rem;
  padding: 0;
  font-weight: 700;
  background-color: #fdfbf8;
  box-shadow: none;
  width: fit-content;
}
.service-category .accordion button:focus:not(:focus-visible) {
  outline: none;
}
.service-category .accordion-item {
  border: none;
  background-color: transparent;
}
.service-category .accordion-body {
  background-color: #fdfbf8;
  padding: 10px 0 0 0;
  border: none;
}

.accordion-body div:hover {
  color: #591fff;
}
/* .service-category::before {
    position: absolute;
    content: '';
    width: 23px;
    height: 23px;
    border: 1px solid #ECECEC;
    border-radius: 6px;
    right: 22px;
    top: 30%;
} */
.service-category .accordion-button::after {
  position: absolute;
  content: "";
  width: 14px;
  height: 10px;
  background-image: url("/assets/images/accordion_arrow.svg");
  background-size: cover;
  right: -30px;
  top: 30%;
}
.badge-tab {
  padding: 0px 0px;
}
.dashboard-cards {
  padding: 20px;
  background-color: #f8f6f4;
  border-radius: 4px;
  min-height: 215px;
}
.section-title-no-icon {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  margin-bottom: 10px;
  position: relative;
  color: #0f094a;
}
.section-title {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  margin-bottom: 10px;
  position: relative;
  color: #0f094a;
}
.section-title:before {
  position: absolute;
  content: "";
  background-image: url("../images/info_icon.svg");
  width: 22px;
  height: 22px;
  right: -30px;
  top: 4px;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
}

.section-number {
  background-color: #fff;
  padding: 5px 15px;
  border-radius: 4px;
  border: 1px solid #ececec;
  color: #591fff;
  font-weight: 600;
  display: inline-block;
  font-size: 1.4rem;
}
.section-sub-number {
  background-color: #fff;
  padding: 5px 15px;
  border-radius: 4px;
  border: 1px solid #ececec;
  color: #591fff;
  font-weight: 600;
  display: inline-block;
  font-size: 1rem;
}
.section-card-percentage {
  color: #ff5f5f;
}
.section-card-percentage-inactive {
  color: #bfbfcf;
}
.text-primary {
  color: #0f094a !important;
}
.text-gray {
  color: #878698 !important;
}
.text-light-gray {
  color: #cac9d4 !important;
}
.canvasjs-chart-credit {
  display: none;
}
canvas {
  background-color: #f3f3f3;
}
@keyframes chartjs-render-animation {
  from {
    opacity: 0.99;
  }
  to {
    opacity: 1;
  }
}
.chartjs-render-monitor {
  animation: chartjs-render-animation 1ms;
}
.chartjs-size-monitor,
.chartjs-size-monitor-expand,
.chartjs-size-monitor-shrink {
  position: absolute;
  direction: ltr;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  pointer-events: none;
  visibility: hidden;
  z-index: -1;
}
.chartjs-size-monitor-expand > div {
  position: absolute;
  width: 1000000px;
  height: 1000000px;
  left: 0;
  top: 0;
}
.chartjs-size-monitor-shrink > div {
  position: absolute;
  width: 200%;
  height: 200%;
  left: 0;
  top: 0;
}
.total-services .row {
  padding: 5px 0px;
}
#dashboard .second-card {
  min-height: 540px;
}
.dropdown .badge.dropdown-toggle {
  color: #878698;
  border: 2px solid #e7e7e7 !important;
}
.dropdown ul li a.dropdown-item {
  color: #878698;
}
.dropdown-menu option {
  background-color: #f8f9fa;
  font-size: 16px;
  font-family: Arial, sans-serif;
}
.search-form .has-search {
  position: relative;
}

.has-search .form-control {
  background-color: #f8f6f4;
}
.has-search span {
  position: absolute;
  bottom: 10px;
  right: 10px;
  color: #591fff;
}
.search-map .search-form {
  margin-left: 4px;
}
.service-count {
  padding: 10px 5px;
}
.search-form {
  max-width: 270px;
  margin-left: auto;
}

.scrollClass {
  overflow: hidden;
  overflow-y: scroll;
}

.applicants-cards-padding {
  padding-left: 30px;
}

.applicants-cards {
  position: relative;
  padding: 20px 20px 80px 20px;
  background-color: #f8f6f4;
  border-radius: 4px;
  /* width: 1422px!important; */
  max-height: 600px;
  overflow: hidden;
  overflow-y: auto;
}
.business-profiles {
  /* background-color: #f8f6f4; */
  background-color: "transparent";
}
.business-profiles .slick-list {
  display: grid;
}
.business-profiles .slick-slide {
  height: 100%;
}
.card-view-title {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  margin-bottom: 10px;
  color: #0f094a;
}
.applicants-cards .service-lables {
  background-color: #fdfbf8;
  padding: 5px;
  border-radius: 5px;
  border: 1px solid #ececec;
}
.applicants-cards .workday-lables {
  background-color: #ececec;
  padding: 5px;
  border-radius: 4px;
}
.applicants-cards .business-name {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  margin-bottom: 10px;
  color: #0f094a;
}
.applicants{
  width: 1422px!important;
}
.service-number {
  color: #591fff;
}
.service-name {
  font-size: 14px;
  font-weight: 600;
}
.services {
  background-color: #fff;
  padding: 15px;
  border-radius: 5px;
  box-shadow: 0 5px 15px 0 #d5d5d566;
}
.slick-track {
  margin-left: unset;
  /* width: 21330000000000px!important; */
}
.view-switch {
  background: #f3f3f3;
  border: 1px solid #f8f6f4;
  box-sizing: border-box;
  border-radius: 20px;
}
.view-switch li.nav-item .active {
  /* color: #0f094a !important; */
  font-weight: 600;
  background-color: #fff;
}
.view-switch .nav-pills .nav-link {
  border-radius: 1rem;
  padding: 0px 15px;
}
.view-switch li.nav-item {
  padding: 0;
}
.all-services .slick-list {
  padding: 0 30px 0 0 !important;
  margin: 0 -10px;
}
.all-services .slick-slide {
  margin: 0 10px;
}
.all-services {
  max-height: 200px;
  overflow-y: auto;
}
.custom_paging {
  margin: 0;
  padding: 0 30px;
  color: #878698;
}
.slide-info .custom_paging {
  padding: 0px;
}
.applicants-cards .custom_paging li {
  display: none;
}
.applicants-cards .custom_paging .slick-active {
  display: block;
}
.action {
  padding: 4px 15px;
  background: #f3f3f3;
  border: 1px solid #ececec;
  box-sizing: border-box;
  border-radius: 4px;
  cursor: pointer;
}
.action img {
  width: 20px;
  height: 20px;
}
.applicants-cards .accordion-button:focus {
  box-shadow: none;
}
.applicants-cards .accordion-button {
  display: block;
  background-color: #fdfbf8;
}
.applicants-cards .accordion-body {
  background-color: #fdfbf8;
}
.applicants-cards .accordion-button::before {
  position: absolute;
  content: "";
  width: 23px;
  height: 23px;
  border: 1px solid #ececec;
  border-radius: 6px;
  right: 22px;
  top: 25%;
}
.applicants-cards .accordion-button::after {
  position: absolute;
  content: "";
  width: 12px;
  height: 8px;
  background-image: url("/assets/images/accordion_arrow.svg");
  background-size: cover;
  right: 28px;
  top: 34%;
}
/* .applicants-cards .accordion-button.collapsed::after {
    top: 37%;
} */
.working-days .accordion-button::before {
  top: 13px;
}
.working-days .accordion-button::after {
  top: 40%;
}
.working-days .accordion-button.collapsed::after {
  top: 40%;
}
.applicants-cards .col {
  padding: 0 20px;
  border-bottom: 1px solid #cac9d5;
}
.applicants-cards .accordion-item {
  border: none;
}
#service-list .accordion-item {
  background-color: #f8f6f4;
}
#service-list .accordion-item {
  margin-bottom: 20px;
}
.service-list-image {
  position: relative;
}
.service-list-image .cornerImageLength {
  border-radius: 4px 4px 0 4px;
}
.service-list-image img {
  width: 70px;
  height: 60px;
  border-radius: 4px;
}

.service-list-image div {
  position: absolute;
  content: "";
  background-color: #fdfbf8;
  right: 0;
  bottom: 0;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-list-image div span {
  font-size: 0.9rem;
}
.paging button {
  position: relative;
  font-size: 0;
  width: 38px;
  height: 34px;
  background-color: #f3f3f3;
  border: 1px solid #ececec;
  border-radius: 4px;
}
.paging .slick-prev::before {
  position: absolute;
  content: "";
  width: 18px;
  height: 22px;
  background-image: url("/assets/images/previous-arrow.svg");
  background-repeat: no-repeat;
  right: 0;
  top: 25%;
}
.paging .slick-next::before {
  position: absolute;
  content: "";
  width: 18px;
  height: 22px;
  background-image: url("/assets/images/next-arrow.svg");
  background-repeat: no-repeat;
  right: 0;
  top: 25%;
}
.business-images img {
  width: 200px;
  height: 145px;
  border-radius: 4px;
}
.business-profiles .business-images img {
  width: 140px;
  height: 105px;
  border-radius: 4px;
}
.business-images .slick-slide {
  width: fit-content !important;
}
.service-images .slick-slide {
  transition: all 500ms ease;
}
.service-images .slick-track {
  padding-left: 5px;
  display: inline-flex;
}
.service-images .slick-list {
  padding: 2px 0;
}
.service-images img {
  width: 180px;
  height: 120px;
  border-radius: 4px;
}

/*  */

.service-images-on-business .slick-slide {
  width: 200px;
  height: 150px;
  transition: all 500ms ease;
}
.service-images-on-business .slick-track {
  display: inline-flex;
}
.service-images-on-business .slick-list {
  padding: 5px 0;
}

.service-images-on-business img {
  width: 160px;
  height: 110px;
  border-radius: 4px;
  margin-right: 15px;
}

.sliderDiv {
  display: flex;
  width: 100%;
  border-radius: 4px;
  overflow-x: auto;
  gap: 15px;
  padding: 0 10px 8px 10px;
}

.sliderDiv img {
  border-radius: 4px;
  width: 150px;
  height: 100px;
}
.sliderDiv::-webkit-scrollbar {
  height: 5px;
}

.sliderDivForApplicants {
  display: flex;
  width: 100%;
  border-radius: 4px;
  overflow-x: auto;
  gap: 15px;
  padding: 0 10px 8px 10px;
}
.sliderDivForApplicants img {
  border-radius: 4px;
  width: 180px;
  height: 130px;
}
.sliderDivForApplicants::-webkit-scrollbar {
  height: 5px;
}
/*  */

.business-profiles .service-images img {
  width: 125px;
  height: 95px;
  border-radius: 4px;
}
.profile-image img {
  width: 35px;
  height: 35px;
  border-radius: 8px;
}
.verify-info {
  position: relative;
}
.verify-service {
  position: relative;
  z-index: 99;
  margin-left: 25px;
}
.verified .verify-info span.verify-border {
  border: 1px solid #591fff;
}
.verified .verify-service span.verify-border {
  border: 1px solid #591fff;
}
.verified .verify-info p span.verify-icon {
  background-image: url("/assets/images/verified.svg");
  background-repeat: no-repeat;
}
.verified .verify-service p span.verify-icon {
  background-image: url("/assets/images/verified.svg");
  background-repeat: no-repeat;
}
.verify-info span.verify-border {
  position: absolute;
  content: "";
  width: 18px;
  height: 18px;
  left: -24px;
  border-radius: 50%;
  border: 1px solid #bfbfcf;
  cursor: pointer;
}
.verify-service span.verify-border {
  position: absolute;
  content: "";
  width: 18px;
  height: 18px;
  left: -60px;
  border-radius: 50%;
  border: 1px solid #bfbfcf;
  cursor: pointer;
}
.verify-info p span.verify-icon {
  position: absolute;
  content: "";
  width: 17px;
  height: 17px;
  top: 6px;
  left: -20px;
  background-image: url("/assets/images/unverified.svg");
  background-repeat: no-repeat;
  cursor: pointer;
}
.verify-service p span.verify-icon {
  position: absolute;
  content: "";
  width: 17px;
  height: 17px;
  top: 6px;
  left: -56px;
  background-image: url("/assets/images/unverified.svg");
  background-repeat: no-repeat;
  cursor: pointer;
}
.decline-icon-service{
  width: 20px;
  height: 20px;
  }

.has-search input:focus {
  box-shadow: none;
  border-color: #ced4da;
}
#applicants .dropdown.badge-tab:focus-visible,
select#order:focus-visible {
  outline: none;
}
select#order {
  text-align: left;
  color: #878698;
}
select#status {
  text-align: left;
  color: #878698;
}
.decline-applicant {
  position: absolute;
  content: "";
  bottom: 70px;
  right: 20px;
  background: #fdfdfd;
  border-radius: 4px;
  /* z-index: 999; */
}
.action-btns {
  position: absolute;
  bottom: 16px;
  right: 36px;
  align-items: center;
}
.profile-card .fee-percentage {
  background-color: #f3f3f3;
  padding: 2px 5px;
  border: 1px solid #ececec;
  border-radius: 4px;
}
.profile-card .business-description {
  background-color: #fdfbf8;
  padding: 10px;
  border-radius: 4px;
}
.profile-card .business-address {
  background-color: #fdfbf8;
  border-radius: 4px;
  text-align: center;
  padding: 5px;
}
.profile-card{
  width: 458px!important;
}

#reason {
  background: #f3f3f3;
  padding: 5px;
}

/* gift voucher modal start */
.giftVoucher {
  position: fixed;
  visibility: hidden;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 999;
}

.modal-title {
  font-weight: 800;
}

.modal-header {
  border-bottom: 0 !important;
}
.icon-img-white path {
  fill: white;
}
.icon-img-grey path {
  fill: grey;
}
.custom-form-refund {
  width: 100% !important;
  height: 45px !important;
  border: 2px solid #e7e7e7 !important;
  background-color: #f3f3f3 !important;
  border-radius: 0.24rem;
  outline: none !important;
  padding: 0 0 0 0.5rem;
  margin-top: 10px;
  margin-bottom: 10px;
}
.custom-form-refund:focus {
  box-shadow: none !important;
}
.custom-form-refund::placeholder {
  color: #d6d6d6 !important ;
}

.custom-form-refund::-webkit-inner-spin-button,
.custom-form-refund::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.custom-form-refund {
  -moz-appearance: textfield;
}

.modal-content {
  width: fit-content;
  height: fit-content;
  margin: 11% auto auto auto;
}
.transactiona-id {
  /* width: 50% !important;  */
  /* height: 45px !important; */
  border : 2px solid #e7e7e7 !important;
  background-color: #f3f3f3 !important;
  border-radius: 0.24rem;
  outline: none !important;
  /* padding: 0 0 0 0.5rem; */
  padding: 4px;
  /* margin-top: 10px; */
  margin-bottom: 10px;
  font-size: 16px;
}
/* gift voucher modal end */

/* CUSTOMER CHAT POPUP START */

.modal-header-chat {
  display: flex;
  justify-content: space-between;
  padding: 10px;
  align-items: center;
}
.modal-header-chat i {
  color: #591fff;
  font-size: 25px;
  cursor: pointer;
}

.mainChatPopup {
  max-width: 60%;
}

.mainChatPopup .chatBg {
  border-radius: 15px;
  background-color: #f8f6f4;
}

.userDtl img {
  max-height: 55px;
  max-width: 55px;
  height: 55px;
  width: 55px;
  border-radius: 10px;
}

.userDtl span {
  font-weight: 800;
}

.chatSection {
  display: flex;
  flex-direction: column;
  row-gap: 7px;
  width: 100%;
  max-height: 480px;
  border-radius: 7px;
  height: 480px;
  overflow-y: scroll !important;
  overflow: hidden;
}

.chatSection .chatParent {
  border-radius: 7px;
  width: fit-content;
  max-width: 65%;
  background-color: #ffffff;
  border: 2px solid #e2e2e2;
}

.chatContent {
  display: flex;
}

.chatContent .chatTxt {
  margin: 0;
  padding: 0 7px;
}

.chatContent .chatImg {
  height: 150px;
  width: 250px;
  border-radius: 10px;
}

.chatContent .chatImg img {
  height: 100%;
  width: 100%;
  border-radius: 5px;
}

.chatBottom {
  border: 2px solid #e2e2e2;
  background-color: #e2e2e2;
  border-radius: 7px;
  height: 45px;
  padding: 3px;
  display: flex;
}

.chatArea {
  border-radius: 5px;
  display: flex;
  gap: 5px;
  width: 100%;
}

.chatArea div {
  display: flex;
  align-items: center;
  border-radius: 5px;
  outline: none !important;
}

.imageFile {
  padding: 0 10px;
  background-color: #eee;
  font-size: 20px;
  cursor: pointer !important;
  transition: all 300ms ease;
}

.imageFile i {
  cursor: pointer !important;
}

.imageFile:hover {
  color: #591fff;
}

.textInpt input {
  width: 100%;
  border: 2px solid #f3f3f3;
  border-radius: 5px;
  outline: none;
  overflow-y: scroll;
  height: 100%;
  background-color: #f3f3f3;
  padding: 0 10px;
}

.textInpt input::placeholder {
  color: #c9c9c9;
}

.sendBtn {
  padding: 0 20px;

  background-color: #591fff;
  color: whitesmoke;
  cursor: pointer;
  user-select: none;
  transition: all 300ms ease;
}

.sendBtn i {
  margin-left: 8px;
}
.sendBtn i:hover {
  color: #f5f5f5;
  margin-left: 8px;
}

/* CUSTOMER CHAT POPUP END */

.modal-header-chat i:hover {
  text-shadow: 0 0 10px #a5a5a5;
}

.customer-profile-card {
  padding: 14px;
  background-color: #f8f6f4;
  border-radius: 4px;
  min-height: 198px;
}
.customer-profile-card .card-head img {
  width: 60px;
  height: 60px;
  border-radius: 8px;
}
.applicants-card-head img {
  width: 200px;
  height: 200px;
  border-radius: 8px;
}
.active-badge {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #7cc783;
}
.active-text {
  font-size: 0.75rem;
  line-height: 0.875rem;
  color: #0f094a;
}
.inactive-badge {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #cac9d5;
}
.customer-profile-card .sm-text {
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 0.875rem;
}
.customer-profile-card .index-text {
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1rem;
}
.customer-profile-card .card-content img {
  width: 16px;
  height: 16px;
}
.button-gray img {
  width: 16px;
  height: 16px;
}
.button-gray {
  display: flex;
  width: fit-content;
  flex-direction: row;
  align-items: center;
  padding: 4px 10px;
  gap: 6px;
  background: #f3f3f3;
  color: #0f094a;
  border: 1px solid #ececec;
  border-radius: 4px;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
}

.modal-bg-none {
  background-color: transparent;
}
.custom-dialog {
  width: 479px;
}
/* @-prefix-keyframes slide {
    from {height: 0;}
    to {height: 375px;}
  } */
.customer-profile-details {
  position: relative;
  height: 100%;
  max-height: 500px;
  background-color: white;
  border-radius: 4px;
  box-shadow: 0px 0px 30px rgba(116, 116, 116, 0.25);
  z-index: 99999;
}
.customer-profile-details .card-head img {
  width: 142px;
  height: 142px;
  border-radius: 8px;
}
.customer-profile-details .card-content img {
  width: 26px;
  height: 16px;
}
.text-24-700 {
  font-style: normal;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.75rem;
  color: #0f094a;
}
.text-24-600 {
  font-style: normal;
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.75rem;
  color: #0f094a;
}
.text-24-400 {
  font-style: normal;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.75rem;
  color: #0f094a;
}
.text-12-400 {
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 1.125rem;
}

.text-20-600 {
  font-style: normal;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.75rem;
  color: #0f094a;
}
.text-12-400 {
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 0.875rem;
  color: #0f094a;
}
.text-14-400 {
  font-weight: 400;
  font-size: 0.875rem;
  color: #0f094a;
}

/* .purchase-lists { */
/* box-shadow: 0px 0px 30px rgba(116, 116, 116, 0.25);
    border-radius: 4px; */
/* } */
.purchase-lists .purchase-item {
  background: #f8f6f4;
  border-radius: 4px;
}
.purchase-lists .purchase-item .card-head img {
  width: 60px;
  height: 60px;
}
.purchase-lists .purchase-item .card-bottom .left-content img {
  width: 10px;
  height: 10px;
}
.purchase-lists {
  max-height: 350px;
  overflow-y: auto;
}
.profile-animate {
  position: fixed;
  max-width: 1440px;
  width: 100%;
  bottom: 30px;
  z-index: 99;
}
.close-btn img {
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.delivery-charge {
  margin-left: 3px;
}
.modal-content {
  background: #fdfbf8;
  box-shadow: 0px 0px 30px rgb(116 116 116 / 25%);
  border-radius: 4px;
}

/* Table CSS */
thead {
  height: 56px;
  background: #ececec;
  border: none;
}
thead tr {
  border: none;
}
thead tr th {
  border: none;
}
.table td,
.table th {
  vertical-align: middle;
}
tbody {
  border-top: none;
}
.table > :not(:first-child) {
  border-top: none;
}
tbody tr {
  background: #f8f6f4;
}
.table .profile-image {
  width: 40px;
  height: 40px;
}
td .active-text {
  color: #7cc783;
}
td .inactive-text {
  color: #878698;
}
.list-view {
  padding: 0;
  background-color: #f8f6f4;
}
.table tr th:first-child,
.table tr td:first-child {
  padding-left: 30px;
}
.table tr th:nth-child(02),
.table tr td:nth-child(02) {
  padding-left: 50px;
}

/* Flat Pages */
.flat-page-switch li.nav-item {
  padding: 0px 5px;
}
.flat-page-switch .nav-item button {
  font-size: 14px;
  padding: 2px 4px;
  border: 1px solid #ececec;
  border-radius: 4px;
  color: #878698;
}
.flat-page-switch .nav-item button.active {
  background-color: #591fff;
  color: #fdfbf8 !important;
}
.flat-page {
  background-color: #f8f6f4;
  padding: 15px;
}
.flat-page .terms-form {
  padding: 5px 0px;
}
#terms-form input,
#terms-form textarea,
#policy-form input,
#policy-form textarea {
  background: #ececec;
  border: 1px solid #ececec;
  border-radius: 4px;
  color: #cac9d5;
}
#terms-form textarea,
#policy-form textarea {
  padding: 6px 12px;
}
.flat-page .terms-form-height {
  min-height: 500px;
}
button.save-terms.btn-primary:disabled,
button.save-policy.btn-primary:disabled,
button.publish-voucher.btn-primary:disabled {
  background-color: #e6e4fb;
  border-color: #e6e4fb;
  border-radius: 4px;
  cursor: pointer;
  color: #c3aaff;
  padding: 5px 50px;
}
button.save-terms.btn-primary,
button.save-policy.btn-primary,
button.publish-voucher.btn-primary {
  border-radius: 4px;
  padding: 5px 50px;
}
#terms-form input,
#terms-form textarea,
#policy-form input,
#policy-form textarea {
  color: #000;
}
.preview h5,
.preview p {
  text-align: justify;
  margin-bottom: 20px;
}

/* ---------------------- Voucher ------------------------- */
.create-div {
  background-color: #f8f6f4;
  margin-bottom: 50px;
}
.voucher-page {
  padding: 0;
}

.voucher-page .voucher-form {
  padding: 5px 0px;
}

.custom-form {
  border: 2px solid #e7e7e7 !important;
  background-color: #f3f3f3 !important;
}
.custom-form:focus {
  box-shadow: none !important;
  border-color: #e7e7e7 !important;
}

#voucher-form input,
#voucher-update input {
  color: #000;
}
#voucher-form input::placeholder,
#voucher-update input::placeholder {
  color: #cac9d4;
}
#voucher-form input:focus,
#voucher-update input:focus {
  background-color: #f3f3f3;
}

#voucher-form textarea,
#voucher-update textarea {
  resize: none;
  border: 2px solid #e7e7e7;
  background-color: #f3f3f3;
  padding: 0.375rem 0.75rem;
  width: 100%;
  border-radius: 0.25rem;
}
#voucher-form textarea:focus,
#voucher-update textarea:focus {
  box-shadow: none;
  border-color: #e7e7e7;
  outline: none;
}
#voucher-form textarea::placeholder,
#voucher-update textarea::placeholder {
  color: #cac9d4;
}

.text-label {
  margin: 0;
  padding: 0;
  color: #8b8c9b !important;
}

.input-group-text {
  background-color: #f3f3f3;
  border: 2px solid #e7e7e7;
  border-right: none;
}

.input-group-text {
  color: #cac9d4 !important;
}

.forAmount {
  border-left: none;
  color: #878698 !important;
  text-align: right;
  font-family: Helvetica, sans-serif;
  font-weight: 600;
  font-size: 20px;
}
.forAmount::placeholder {
  color: #878698 !important;
}
.forAmount::-webkit-inner-spin-button,
.forAmount::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.radioGroup label {
  cursor: pointer;
}

.chbx {
  position: relative;
  cursor: pointer;
  margin-right: 3px;
}
.chbx:before {
  content: "";
  display: flex;
  width: 25px;
  height: 25px;
  background-color: #f3f3f3;
  border-radius: 4px;
  border: 2px solid #e7e7e7;
}
.chbx:checked:before {
  content: "";
  display: block;
  width: 25px;
  height: 25px;
  background-color: #e6e4fb;
  border: 2px solid #cac9d4;
}
.chbx:checked:after {
  content: "";
  width: 8px;
  height: 11px;
  border: solid #591fff;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 5px;
  left: 8px;
}

.dateDiv {
  cursor: pointer;
  display: flex;
  align-items: center;
  border: 2px solid #e7e7e7;
  background-color: #f3f3f3;
  border-radius: 0.25rem;
  position: relative;
}

.dateDiv i {
  position: absolute;
  left: 33%;
  pointer-events: none;
}

.custom-form-date {
  border: none;
  background-color: inherit;
  padding-left: 38%;
}

.custom-form-date:focus {
  box-shadow: none;
  border-color: #e7e7e7;
}

.custom-form-date::-webkit-calendar-picker-indicator {
  background: transparent;
  bottom: 0;
  color: transparent;
  cursor: pointer;
  height: auto;
  left: 0;
  position: absolute;
  user-select: none !important;
  right: 0;
  top: 0;
  width: auto;
}

.custom-form-date::-webkit-datetime-edit,
.custom-form-date::-webkit-inner-spin-button,
.custom-form-date::-webkit-clear-button {
  display: none;
}

.custom-form-date:before {
  content: attr(data-date);
  color: #000;
}

.custom-form-date.red:before {
  color: #a5a5a5;
}

/* SELECT 2 dropdown css */
/* Target the Select2 dropdown */
.forAllVoucherUsers i {
  display: flex;
  justify-content: center;
  align-items: center;
}

.forCountrySelect .plusIco {
  pointer-events: none;
  position: absolute;
  top: 22%;
  right: 22%;
}
.select2-container--default .select2-selection--single {
  text-align: center;
  /* font-weight: 900 !important; */
  padding-left: 40px;
  padding-right: 80px;
  height: 40px;
  cursor: pointer;
  border: 2px solid #e7e7e7;
  background-color: #f3f3f3;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Style the arrow icon */
.select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  display: none;
}

/* Style the options list */
.select2-container--default .select2-results__option--highlighted {
  background-color: #d5d5fc !important;
  color: #000 !important;
}

/* Style the dropdown search box */
.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 2px solid #6c54ff;
  border-radius: 4px;
  outline: none;
}
.select2-search--inline {
  padding-left: 5px;
}
.multSelect:focus {
  box-shadow: none;
  border-color: #e7e7e7;
  background-color: #f3f3f3;
}

.downIco {
  position: absolute;
  right: 10px;
  bottom: 9px;
  color: #878698;
  font-size: 20px;
  pointer-events: none;
}

.searchIco {
  position: absolute;
  left: 10px;
  bottom: 10px;
  color: #878698;
  font-size: 18px;
  pointer-events: none;
}

.search_select-box button {
  background-color: red !important;
  color: #fff !important;
}

/* page-preview */
.voucher-page-preview {
  border: 2px solid #e7e7e7;
  background-color: #f3f3f3;
  border-radius: 0.25rem;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* VOUCHER CARD CSS START */

.mainCard {
  width: 350px;
  height: 170px;
  border-radius: 8px;
  display: flex;
  position: relative;
  background: #6c54ff;
  overflow: hidden;
  z-index: 1;
}

.card-left {
  width: 30%;
  border: 2px solid #591fff;
  border-right: none;
  border-radius: 8px 0 0 8px;
}
.card-right {
  width: 70%;
  border: 2px solid #591fff;
  border-left: none;
  border-radius: 0 8px 8px 0;
}

.card-right:before,
.card-right:after {
  content: "";
  position: absolute;
  width: 32px;
  height: 29px;
  background: #f3f3f3;
  border-radius: 100%;
  border: 2px solid #591fff;
  box-sizing: border-box;
}

.card-right:before {
  top: -17px;
  left: 14%;
}
.card-right:after {
  bottom: -17px;
  left: 14%;
  background-color: #fdfbf8;
}

.cardContent {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  padding: 22px 20px;
}

.cardContent .voucher-title {
  color: #f5f5f5;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin: 0;
}
.cardContent .voucher-details {
  height: 40px;
  width: 100%;
  overflow-y: auto;
  /* line-height: 1.4; */
  margin: 3px 0 6px 0;
  resize: none;
  outline: none;
  background: transparent;
  color: #b7a7ff;
  font-size: 14px;
  border: none;
}

.voucher-details p {
  margin: 0;
  padding: 0;
}

.voucher-number {
  background-color: #f8f6f4;
  border-radius: 3px;
  text-align: center;
  color: #591fff;
  font-weight: 700;
  letter-spacing: 1px;
  margin: 8px 0 0 0;
  padding: 3px 0;
}

.discount-amount {
  margin: 5px 0 0 0;
  text-align: right;
}

.discount-amount span:nth-child(1) {
  color: #fff !important;
  margin-right: 4px;
}
.discount-amount span:nth-child(2) {
  color: #fff !important;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.voucher-user {
  width: 350px;
  background-color: #fdfbf8;
  border-radius: 0 0 5px 5px;
  padding: 15px 20px;
  display: flex;
  margin-top: -5px;
  position: relative;
  justify-content: space-between;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.part1 {
  display: flex;
  align-items: center;
  color: #878698;
  font-size: 14px;
}

.partition {
  margin: 2px 8px;
  border: 1px solid #bfbfcf;
}
.part2 {
  width: 100%;
  display: flex;
  flex-direction: column;
  font-weight: 900;
  font-size: 13px;
  color: #878698;
  letter-spacing: 0.5px;
  margin-right: 45px;

  white-space: nowrap;
  overflow: hidden;
}

.part3-forpreview {
  height: fit-content;
  display: flex;
  align-items: center;
  border: 2px solid #ececec;
  border-radius: 4px;
  color: #878698;
  gap: 3px;
  padding: 2px 5px;
  position: absolute;
  cursor: pointer;
  bottom: 8px;
  right: 8px;
  cursor: not-allowed;
}

.part3-forpreview:hover {
  color: #6c54ff;
  background-color: #e6e4fb;
}
.part3 {
  height: fit-content;
  display: flex;
  align-items: center;
  border: 2px solid #ececec;
  border-radius: 4px;
  color: #878698;
  gap: 3px;
  padding: 2px 5px;
  position: absolute;
  cursor: pointer;
  bottom: 8px;
  right: 8px;
}

.part3:hover {
  color: #6c54ff;
  background-color: #e6e4fb;
}

/* VOUCHER CARD CSS END */

/* VOUCHER PUBLISH SIDE START */
.pub-v-top b {
  color: #878698 !important;
}

.horizontal-div {
  overflow-x: scroll;
  flex-wrap: wrap;
  border-radius: 5px;
  /* position: relative; */
}

.vertical-content {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  flex-wrap: wrap;
  height: 540px;
}

.itm {
  width: 350px;
  height: 239px;
  margin-left: 13px;
  margin-right: 13px;
}

.dummyEle {
  width: 10px;
  flex-shrink: 0;
  margin: 100px;
}

/* VOUCHER PUBLISH SIDE END */

/* ---------------------- Support center ------------------- */
/* .support-main{
    column-gap: 2px;
} */
.support-left {
  height: 60vh;
}
.select2-selection__rendered{
  /* width: 116px!important; */
  padding: 0px!important;
}
.text-violate{
  color: rgba(89, 31, 255, 1);
}
.bg-violate{
  background-color: rgba(89, 31, 255, 1);
}
.bg-custom-white{
  background-color: rgba(248, 246, 244, 1);
}
.support-right {
  background-color: #f8f6f4;
  height: 60vh;
  margin: 0 10px;
  width: calc(66.66666667% - 20px);
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 0.25rem;
}

.support-right .noChatOpened {
  color: #591fff;
  font-family: sans-serif;
  font-weight: 800;
  font-size: 20px;
  user-select: none;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.case-btn {
  background-color: #f8f6f4;
  color: black;
  width: calc(50% - 5px);
  font-size: 17px;
  font-weight: 700;
}
.case-btn b {
  color: #878698;
}
.case-btn:focus {
  box-shadow: none;
}

.case-btn.defaultBtn b {
  color: #f8f6f4 !important;
}

.defaultBtn {
  background-color: #591fff;
  color: white;
}

/* DHARMIK */
/* .close-case-count,
.closeCaseFilter,
.closeCs {
  display: none !important;
}  */

.close-case-count {
  width: fit-content;
  color: #878698;
}
.close-case-count b {
  color: #000 !important;
  font-weight: 700;
}
.open-case-count {
  width: fit-content;
  color: #878698;
}
.open-case-count b {
  color: #000 !important;
  font-weight: 700;
}

.custom-dropdown {
  width: fit-content;
  border: 2px solid #e7e7e7 !important;
  background-color: #f3f3f3 !important;
  border-radius: 5px;
  padding: 2px 4px !important;
  color: #878698;
  outline: none;
}

.cases-button {
  justify-content: space-between;
}
.chat-list {
  overflow-y: scroll;
  max-height: 50vh;
}
.chat-card {
  background-color: #e6e4fb;
}
.card-img {
  max-height: 60px;
  max-width: 60px;
}
.card {
  background-color: #f3f3f3;
  border: 2px solid #f3f3f3;
  cursor: pointer;
  height: 120px;
  max-height: 120px;
  overflow: hidden;
  position: relative;
}

.chatListActive {
  border: 2px solid #591fff;
}

.card-title {
  font-weight: 700;
}
.card-text {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 15px;
  line-height: 1.3;
}
.card-bottom-btn {
  float: right;
  background-color: #ececec;
  position: absolute;
  bottom: 10px;
  right: 10px;
  border-radius: 4px;
}
/* .accordion-button:not(.collapsed) {
    color: #0c63e4;
    background-color: #FEB7EE;
} */
.trancsetion {
  background-color: #ffffff;
  text-decoration: none;
  text-align: center;
}
.trancsetion-favicon {
  margin-left: 10px !important;
}
.transactions-list {
  background-color: #f8f6f4;
  border-radius: 10px;
  height: 114px;
  max-height: 120px;
}
.transactions-profile {
  object-fit: cover;
  max-width: 50px;
  max-height: 50px;
  border-radius: 15px;
  width: 100%;
}
.transactions-location {
  text-align: center;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.tansactions-main {
  overflow-x: hidden;
  overflow-y: scroll;
  height: 70vh !important;
}
/* .tansactions-model{
    z-index: 999;
    display: none;
    right: 960px !important;
} */
.not-allowed {
  cursor: not-allowed;
}

.not-allow {
  cursor: not-allowed !important;
}

.pointer-event-none {
  pointer-events: none;
}

.profile-img {
  max-height: 60px;
  height: 60px;
  object-fit: cover;
  max-width: 60px;
  border-radius: 8px;
}

.chat-content {
  background-color: white;
  border-radius: 5px;
  max-width: 60%;
  width: fit-content;
  display: flex;
  align-items: center;
  overflow-x: hidden;
  padding: 10px;
}

.chat-session {
  overflow-y: scroll;
  height: 420px;
  display: flex;
  background-color: #f8f6f4;
  align-content: flex-start;
  scroll-behavior: smooth;
}

.chat-typing {
  background-color: #f3f3f3;
  max-height: 6vh;
  height: 6vh;
}
.close-case-btn {
  background-color: #591fff;
  color: white;
  /* font-size: 20px; */
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.open-case-btn {
  background-color: #591fff;
  color: white;
  /* font-size: 20px; */
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.typing-area {
  width: 100%;
  border: 0px;
  outline: oldlace;
  overflow-y: scroll;
  height: auto;
  background-color: #f3f3f3;
}
.inpIcons .fa-microphone,
.inpIcons .fa-picture-o {
  border-radius: 50%;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 300ms ease;
  cursor: pointer !important;
}
.inpIcons .fa-microphone:hover,
.inpIcons .fa-picture-o:hover,
.fa-paper-plane:hover {
  color: #591fff;
  cursor: pointer !important;
}
.image-preview {
  max-width: 250px;
  width: fit-content;
  background-color: #ebe5e5;
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 10px;
  display: flex;
}
.img-typing-area {
  max-width: 100%;
  /* width: ; */
  border: 1px solid gray;
  border-radius: 5px;
  outline: oldlace;
  overflow-y: scroll;
  height: auto;
  background-color: #ebe5e5;
}
#img-message-area {
  margin-top: 20px;
}
.chat-image {
  position: absolute;
  left: 0;
  bottom: 50px;
  max-width: 100%;
  flex-wrap: wrap-reverse;
}
.preview-image {
  width: 70px;
  height: 70px;
  object-fit: cover;
  margin: 0 12px 12px 0;
}
/* Image delete button */
.image-area {
  position: relative;
}

.remove-image {
  display: none;
  position: absolute;
  top: -10px;
  right: 0px;
  border-radius: 10em;
  padding: 0px 4px 0px;
  text-decoration: none;
  font: 400 21px/20px sans-serif;
  background: #555;
  border: 3px solid #fff;
  color: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5), inset 0 2px 4px rgba(0, 0, 0, 0.3);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  -webkit-transition: background 0.5s;
  transition: background 0.5s;
}
.business-icon {
  font-size: 18px;
}
.button-div {
  background-color: #f3f3f3;
  border: 2px solid #ececec;
  cursor: pointer;
  border-radius: 4px;
  width: calc(25% - 10px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
}
.button-div span {
  font-size: 15px;
}

.bottomActions {
  background-color: #f8f6f4;
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  z-index: 8;
}
.bottomActionsAll {
  position: absolute;
  bottom: 20px;
  left: 25%;
  right: 0px;
  z-index: 8;
  width: 50%!important; 
}

.bottomActions hr {
  margin: 10px 0 0 0;
}
.modal-dialog {
  max-width: 1000px;
  margin: 1.75rem auto;
}
 .w-50{
  width:50vw!important;
 }
 .bootstrap-tagsinput {
  box-shadow: none;
  color: #000;
  margin: 0;
  width: 100%;
  height: 200px!important;
  padding: 0.5rem 0.75rem 0;
  font-size: 1rem;
  line-height: 2.2;
  transition: border-color 0.15s ease-in-out;
  overflow-y: auto;
  overflow-x: hidden!important;
}

.tansactions-model {
  top: 0px;
  left: 0px;
  width: 100%;
}
.user-navbar a {
  color: #cac9d5 !important;
}
#preloader {
  z-index: 99999 !important;
}
.card-hide {
  display: none !important;
}

/* Header hover */
.user-option {
  width: 0px;
  position: relative;
  transition-property: width, opacity;
  transition-duration: 0.7s;
  opacity: 0;
  visibility: hidden;
  transition-timing-function: linear;
}
.user-for-hover {
  opacity: 1;
  width: 450px;
  visibility: visible;
}
.push-ads-option {
  width: 0px;
  position: relative;
  transition-property: width, opacity;
  transition-duration: 0.7s;
  opacity: 0;
  visibility: hidden;
  transition-timing-function: linear;
}
.push-ads-hover {
  opacity: 1;
  width: 220px;
  visibility: visible;
}

/* ----- */

.user-main {
  display: flex;
  padding-left: 0;
}
.user-main li {
  list-style: none;
}
.contact-show {
  width: auto;
  height: inherit;
  background-color: whitesmoke;
  box-shadow: 0 0 15px #a1a1a1;
  font-weight: 500;
  padding: 10px;
  margin: -70px 0 0 0;
  border-radius: 5px;
}
.approve-btn {
  z-index: -1;
}

.accordion-button:not(.collapsed) {
  color: #000 !important;
}
.transaction-accodion {
  position: absolute;
  z-index: 999;
  width: 100%;
}

.updateTxt {
  font-size: 15px;
}

.accordion-main {
  position: absolute;
  top: 0;
  right: 0;
  width: 32%;
  background-color: #fff;
}
.accordion-main.colaps {
  width: 100%;
  /* text-align: left; */
}

.transaction-accordion {
  position: absolute;
  width: 38%;
  right: 0%;
  top: 0%;
  box-shadow: 0;
  border-radius: 5px;
  border: 2px #eee solid;
  background-color: #fdfbf8;
}

button.accordion-button.trans-button.collapsed {
  padding: 7px;
}

button.accordion-button.trans-button.collapsed::after {
  margin-top: 8px;
  margin-right: 5px;
}

button.accordion-button.trans-button.collapsed::after {
  top: 17% !important;
  right: 5% !important;
}
button.accordion-button.trans-button.collapsed::before {
  top: 17% !important;
  right: 5% !important;
}
.accordion-overflow {
  height: max-content;
  max-height: 900px;
  overflow-y: auto;
}
div#service-list {
  /* height: 560px; */
  overflow-y: auto;
}

/* the slides */
.business-images {
  display: flex;
  align-items: center;
  height: 145px !important;
}

.business-images .slick-slide {
  margin: 0 17px;
}

/* the parent */
.business-images .slick-list {
  margin: 0 -17px;
}
.carousel-control-next-icon{
  background-color: #000!important;
}
.carousel-control-prev-icon{
  background-color: #000!important;
}
.slick-btn {
  background-color: #fff;
  color: #b4b3bd;
  border-radius: 5px;
  padding: 2px 7px;
  height: fit-content;
  width: fit-content;
  z-index: 9;
  align-items: center;
  display: flex;
  box-shadow: 0px 0px 5px #dfdfdf;
  cursor: pointer;
}

.slick-btn i {
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

/* PushAds */
.create-section-bg {
  padding: 10px;
  background-color: #f8f6f4;
  border-radius: 4px;
  /* width: calc(66.66% - 0.3%); */
}
.preview-ad {
  padding: 10px;
  background-color: #f8f6f4;
  border-radius: 4px;
  width: calc(33.33% - 0.6%);
}
section.create-ads .add-ad-photo label {
  border: 2px solid #e7e7e7;
  background-color: #f3f3f3;
  padding: 40px 167px;
  color: #cac9d4;
}
/* section.create-ads .add-ad-photo label:focus-visible {
  border: 1px solid #f3f3f3;
}
section.create-ads .add-ad-photo {
  position: relative;
}

.add-ad-photo i {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #878698;
  position: absolute;
  top: 40%;
  right: 35%;
  font-size: 23px;
  background-color: #e7e7e7;
  pointer-events: none;
  border-radius: 50%;
  padding: 0;
  margin: 0;
  width: 23px;
  height: 23px;
} */

.addPhoto {
  position: relative;
  height: 110px;
  border: 2px solid #e7e7e7;
  background-color: #f3f3f3;
  border-radius: 0.25rem;
  color: #878698;
}

.addPhoto label {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}

.addPhoto label i {
  color: #878698;
  width: fit-content;
  height: fit-content;
  background-color: #ececec;
  font-size: 22px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 8px;
}

.forDays::placeholder {
  color: #cac9d4;
}
.forDays::-webkit-inner-spin-button,
.forDays::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.forPlaceHolder::placeholder {
  color: #cac9d4;
}

.adsDescription {
  resize: none;
  border: 2px solid #e7e7e7;
  background-color: #f3f3f3;
  padding: 0.375rem 0.75rem;
  width: 100%;
  border-radius: 0.25rem;
  outline: none;
}

input.create-period {
  width: 100%;
  padding: 4px 8px;
  border: 2px solid #e7e7e7;
  background-color: #f3f3f3;
  border-radius: 0.25rem;
}
input.create-period::placeholder {
  color: #cac9d4;
}
input.create-period:focus-visible {
  box-shadow: none;
  border-color: #e7e7e7;
  outline: none;
}
textarea.create-period {
  background-color: #f3f3f3;
  color: #757575;
  padding: 4px 6px;
  border: 1px solid #ececec;
}

/* Tags Input */

.bootstrap-tagsinput {
  border: 2px solid #e7e7e7;
  background-color: #fdfbf8;
  box-shadow: none;
  color: #000;
  margin: 0;
  width: 100%;
  height: 110px;
  padding: 0.5rem 0.75rem 0;
  font-size: 1rem;
  line-height: 2.2;
  transition: border-color 0.15s ease-in-out;
  overflow-y: auto;
}
.bootstrap-tagsinput .tag {
  border-radius: 4px;
  background-color: #f3f3f3;
  color: #878698;
  border: 2px solid #ececec;
  padding: 4px;
}
.bootstrap-tagsinput.has-focus {
  background-color: #fdfbf8;
  border-color: #ececec;
}
.bootstrap-tagsinput input:focus {
  background-color: #fdfbf8;
  box-shadow: none;
}
.bootstrap-tagsinput.label-info {
  display: inline-block;
  background-color: #636c72;
  padding: 0 0.4em 0.15em;
  border-radius: 0.25rem;
  margin-bottom: 0.4em;
}

.bootstrap-tagsinput input {
  margin-bottom: 0.5em;
  padding: 5px 15px;
  height: 32px;
  width: auto !important;
}

.bootstrap-tagsinput input::placeholder {
  color: #cac9d4;
}

.bootstrap-tagsinput .tag [data-role="remove"]:after {
  content: "\00d7";
}
.select-location select {
  padding: 4px 10px;
  background-color: #f3f3f3;
  border: 2px solid #ececec;
  border-radius: 0.25rem;
  color: #0f094a;
}
.select-location select:focus-visible {
  border: 2px solid #ececec;
  outline: none;
}

.addNewPhoto {
  width: fit-content;
  cursor: pointer;
  display: flex;
}

.addNewPhoto1 {
  position: relative;
  height: 110px;
  border: 2px solid #e7e7e7;
  background-color: #f3f3f3;
  border-radius: 0.25rem;
  color: #878698;
}

.addNewPhoto i {
  color: #878698;
  width: fit-content;
  height: fit-content;
  background-color: #ececec;
  font-size: 22px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 8px;
}

.twoWaySlider .twoWayUp {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.rangeValues {
  background-color: #ececec;
  padding: 1px 8px;
  border-radius: 0.25rem;
  font-size: 12px;
  font-weight: 600;
}

.ranges {
  margin-bottom: 60px;
}

.rangeText {
  color: #bfbfcf;
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
  margin-bottom: 2px;
  font-size: 13px;
}

/* NEW RANGE SLIDER START */

.tag-inp {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ui-widget-content {
  background-color: #bfbfcf !important;
  border: none !important;
  height: 3px !important;
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
  border: none !important;
  background: #591fff !important;
  font-weight: normal;
  outline: none !important;
  width: 13px !important;
  height: 13px !important;
  border-radius: 50% !important;
  cursor: pointer !important;
}

.ui-slider .ui-slider-range {
  background-color: #591fff !important;
}
/* NEW RANGE SLIDER END */

/* Ads listing */
.ads {
  background-color: #f8f6f4;
  height: 600px;
  max-width: 400px;
  border-radius: 4px;
  padding: 10px 20px;
  overflow: auto;
}
.ads-info {
  padding: 10px;
  background-color: #f3f3f3;
  border-radius: 4px;
}
.labels {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.labels .single-label {
  padding: 2px 4px;
  background: #ececec;
  margin: 0 8px 8px 0;
  border-radius: 4px;
  font-size: 15px;
}

.adPreview {
  display: flex;
  flex-direction: column;
  padding: 20px 40px 0 40px;
}

.previewImage {
  height: 200px;
  width: 100%;
  border-radius: 10px;
}

.previewTitle {
  margin-top: 10px;
  font-weight: 700;
}
.previewSubTitle {
  margin-top: 3px;
}
.previewDesc {
  margin-top: 15px;
  overflow-y: auto;
  max-height: 100px;
  font-size: 15px;
}

.pushAdsSubmit {
  position: absolute;
  bottom: 15px;
  right: 15px;
}

.adsDesc {
  overflow-y: auto;
  height: 100px !important;
  font-size: 15px;
}
.btn-close{
  opacity: 1 !important;
}
.decline-applicant {
  position: absolute;
  content: "";
  bottom: 70px;
  right: 20px;
  background: #FDFDFD;
  border-radius: 4px;
  z-index: 999;
}
.top-25{
  position: fixed;
  top:30%
}
.decline-applicant1 {
   background: #FDFDFD;
  border-radius: 4px;
  z-index: 999;
}

.applicants-cards-list{
  position: relative;
  padding: 20px 20px 20px 20px;
  background-color: #F8F6F4;
  border-radius: 4px;
  height: 200px;
  max-height: 200px;
  overflow: hidden;
  overflow-y: hidden;
}
.description{
  height: 70px!important;
  overflow: hidden;
  overflow-y: auto;
}
.list-business-img{
 overflow-y: hidden;
 height: 200px;
 width:510px
}
.business-img{
  height: 150px;
}
.delivery_charge{
  width:10% !important;
}
.accept1 {
  z-index: 9999 !important;
}
.business-cards-list{
  position: relative;
  background-color: #F8F6F4;
  border-radius: 4px;
  height: 200px;
  max-height: 200px;
  overflow: hidden;
  overflow-y: hidden;
}
.w{
  width: 113px !important;
}
.w-20{
  width: 150px!important;
}
.activeSelectBtn{
  border: 2px solid #591fff !important;
  color:#591fff;
  font-size: small;
}
.InactiveSelectBtn{
  color: white !important;
  background: #591fff!important;
  border: none!important;
  font-size: small;
}
.border-purple{
  border: 2px solid #591fff !important;
}

.carousel {
  display: block;
  text-align: left;
  position: relative;
  margin-bottom: 22px;
}
.carousel > input {
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  width: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
}
.carousel > input:nth-of-type(6):checked ~ .carousel__slides .carousel__slide:first-of-type {
  margin-left: -500%;
}
.carousel > input:nth-of-type(5):checked ~ .carousel__slides .carousel__slide:first-of-type {
  margin-left: -400%;
}
.carousel > input:nth-of-type(4):checked ~ .carousel__slides .carousel__slide:first-of-type {
  margin-left: -300%;
}
.carousel > input:nth-of-type(3):checked ~ .carousel__slides .carousel__slide:first-of-type {
  margin-left: -200%;
}
.carousel > input:nth-of-type(2):checked ~ .carousel__slides .carousel__slide:first-of-type {
  margin-left: -100%;
}
.carousel > input:nth-of-type(1):checked ~ .carousel__slides .carousel__slide:first-of-type {
  margin-left: 0%;
}
.carousel > input:nth-of-type(1):checked ~ .carousel__thumbnails li:nth-of-type(1) {
  box-shadow: 0px 0px 0px 5px rgba(0, 0, 255, 0.5);
}
.carousel > input:nth-of-type(2):checked ~ .carousel__thumbnails li:nth-of-type(2) {
  box-shadow: 0px 0px 0px 5px rgba(0, 0, 255, 0.5);
}
.carousel > input:nth-of-type(3):checked ~ .carousel__thumbnails li:nth-of-type(3) {
  box-shadow: 0px 0px 0px 5px rgba(0, 0, 255, 0.5);
}
.carousel > input:nth-of-type(4):checked ~ .carousel__thumbnails li:nth-of-type(4) {
  box-shadow: 0px 0px 0px 5px rgba(0, 0, 255, 0.5);
}
.carousel > input:nth-of-type(5):checked ~ .carousel__thumbnails li:nth-of-type(5) {
  box-shadow: 0px 0px 0px 5px rgba(0, 0, 255, 0.5);
}
.carousel > input:nth-of-type(6):checked ~ .carousel__thumbnails li:nth-of-type(6) {
  box-shadow: 0px 0px 0px 5px rgba(0, 0, 255, 0.5);
}

.carousel__slides {
  position: relative;
  z-index: 1;
  padding: 0;
  margin: 0;
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
  display: flex;
}

.carousel__slide {
  position: relative;
  display: block;
  flex: 1 0 100%;
  width: 100%;
  height: 250px;
  overflow: hidden;
  transition: all 300ms ease-out;
  vertical-align: top;
  box-sizing: border-box;
  white-space: normal;
}
.carousel__slide figure {
  display: flex;
  margin: 0;
}
.carousel__slide div {
  position: relative;
  width: 100%;
  height: 250px;
}
.carousel__slide div:before {
  display: block;
  content: "";
  width: 100%;
  padding-top: 66.6666666667%;
  height: 250px;
}
.carousel__slide div > img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 250px;
}
.carousel__slide img {
  display: block;
  flex: 1 1 auto;
  object-fit: cover;
}
.carousel__slide figcaption {
  align-self: flex-end;
  padding: 20px 20px 0 20px;
  flex: 0 0 auto;
  width: 25%;
  min-width: 150px;
}
.carousel__slide .credit {
  margin-top: 1rem;
  color: rgba(0, 0, 0, 0.5);
  display: block;
}
.carousel__slide.scrollable {
  overflow-y: scroll;
}

.carousel__thumbnails {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  margin: 0 -10px;
}
.carousel__slides + .carousel__thumbnails {
  margin-top: 20px;
}
.carousel__thumbnails li {
  flex: 1 1 auto;
  max-width: calc((100% / 6) - 20px);
  margin: 0 10px;
  transition: all 300ms ease-in-out;
}
.carousel__thumbnails label {
  display: block;
  position: relative;
}
.carousel__thumbnails label:before {
  display: block;
  content: "";
  width: 100%;
  padding-top: 100%;
}
.carousel__thumbnails label > img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.carousel__thumbnails label:hover, .carousel__thumbnails label:focus {
  cursor: pointer;
}
.carousel__thumbnails label:hover img, .carousel__thumbnails label:focus img {
  box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.25);
  transition: all 300ms ease-in-out;
}
.carousel__thumbnails img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.deviceinfo{
  width: 500px!important;
}


.input-with-symbol {
  position: relative;
}

#amount {
  padding-right: 20px; /* Adjust this value according to the width of your currency symbol */
}

#currency-symbol {
  position: absolute;
  top: 50%;
  right: 10px; /* Adjust this value according to your design */
  transform: translateY(-50%);
}