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

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Montserrat", sans-serif !important;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  color: #1a1b28;
}
a {
  color: #2a67c4;
  font-weight:600;
}
p {
  font-size: 14px;
}
.btn.btn-primary {
  background: #5e36ef;
  border-color: #5e36ef;
}
.wrapper ::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

.wrapper ::-webkit-scrollbar-track {
  background-color: #f5f3ff;
  border-radius: 5px;
}
.wrapper ::-webkit-scrollbar-thumb {
  background-color: #5e36efbb;
  border-radius: 10px;
}

.wrapper {
  min-height: 100vh;
  position: relative;
  top: 0;
  height: 100vh;
}
ul,
li {
  list-style: none;
  margin: 0px;
  padding: 0px;
}
a {
  text-decoration: none;
}
.h-100 {
  height: 100% !important;
}
.text-green {
  color: #00bb67 !important;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.main-header .header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.main-header .navbar-rt ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 16px;
}
.main-header .admin-btn {
  display: flex;
  align-items: center;
  border: 0;
  background: unset;
}
.main-header .admin-wrapper {
  text-align: left;
  padding-inline: 7px 12px;
}
.main-header .admin-img img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 200px;
}
.main-header .notification a {
  border: 1px solid #e2e2e2;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 200px;
  position: relative;
}
.main-header .notification a::after {
  width: 8px;
  height: 8px;
  background: #ee3434;
  position: absolute;
  top: 2px;
  right: 2px;
  content: "";
  border-radius: 50px;
}
.main-header .navbar-rt {
  padding-left: 24px;
  position: relative;
}
.main-header .navbar-rt::before {
  content: "";
  width: 40px;
  height: 1px;
  background: #e2e2e2;
  position: absolute;
  top: 50%;
  left: -24px;
  transform: translateY(-50%) rotate(90deg);
}
.nav-menu {
  margin-left: 186px;
}

.logo img {
  max-width: 102px;
  display: block;
}
.main-header .container-fluid {
  padding: 0 !important;
}
.main-header .list-item a {
  padding: 12px 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  color: #1a1b28;
  transition: all 0.4s ease-in-out;
}
.main-header .list-item a svg path {
  stroke: #1a1b28;
}
.main-header .list-item.active a,
.main-header .list-item a:hover {
  color: #5e36ef;
  font-weight: 700;
  background: #f5f3ff;
  border-radius: 10px;
}
.main-header .list-item.active a svg path,
.main-header .list-item a:hover svg path {
  stroke: #5e36ef;
}
.nav-menu-wrapper {
  gap: 8px;
}

/* side bar */

.sidebar {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  width: 305px;
  display: block;
  z-index: 98;
  color: #fff;
  font-weight: 200;
  background: #fff;
  transition: all 0.3s;
}
.main-panel {
  position: relative;
  width: calc(100% - 305px);
  /* height: 100vh; */
  min-height: 100%;
  float: right;
  transition: all 0.3s;
  /* background: #f7f8fa; */
}

.main-header {
  padding: 16px 30px;
  border-bottom: 1px solid #e2e2e2;
  min-height: 104px;
  background: #fff;
  width: 100%;
  position: fixed;
  z-index: 99;
  left: 0;
  right: 0;
}

.sidebar .sidebar-wrapper,
.sidebar[data-background-color="white"] .sidebar-wrapper {
  position: relative;
  max-height: calc(100vh - 75px);
  min-height: 100%;
  overflow: auto;
  width: 100%;
  z-index: 4;
  transition: all 0.3s;
  /* width: 305px; */
  padding: 32px 30px;
  border-right: 1px solid #e2e2e2;
  justify-content: space-between;
  display: flex;
  flex-direction: column;
  padding-top: 136px;
}

.sidebar-content-bottom hr {
  border: 1px solid #e2e2e2;
  margin-bottom: 32px;
}

.main-panel > .container {
  height: 100%;
  min-height: initial;
  margin-top: 0;
  padding: 30px !important;
  overflow: hidden;
  width: 100%;
  max-width: unset;
  padding-top: 134px !important;
}

.front-desk-wrapper {
  width: 100% !important;
  overflow-x: auto;
  height: 100%;
}
*/ .sidebar .nav,
.sidebar[data-background-color="white"] .nav {
  display: block;
  float: none;
}

.sidebar-wrapper .nav-item a {
  padding: 13px 14px;
  border-radius: 10px;
  display: flex;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  gap: 16px;
  width: 100%;
  align-items: center;
  color: #1a1b28;
}
.sidebar-wrapper .nav-item.active a,
.sidebar-wrapper .nav-item a:hover {
  background: #f5f3ff;
  color: #5e36ef;
  font-weight: 700;
}
.sidebar-wrapper .nav-item a p {
  margin: 0px;
}

.sidebar-wrapper .nav-item a svg {
  width: 20px;
  height: 20px;
  object-fit: contain;
}
.sidebar-wrapper .nav-item a svg path {
  stroke: #1a1b28;
}
.sidebar-wrapper .nav-item.active a svg path,
.sidebar-wrapper .nav-item a:hover svg path {
  stroke: #5e36ef;
}
.sidebar-wrapper .nav-item {
  margin-bottom: 6px;
  width: 100%;
}

.main-wrapper {
  display: flex;
  width: 100%;
  height: inherit;
}

.main-content-wrapper {
  box-shadow: 0px 8px 24px 0px #00000014;
  border: 1px solid #e2e2e2;
  border-radius: 10px;
  background: #f7f8fa;
  position: relative;
  overflow: hidden;
  padding-inline: 24px;
}
.logout-btn {
  font-family: "Montserrat", sans-serif !important;
  display: flex;
  border: 0;
  background: unset;
  font-size: 14px;
  font-weight: 500;
  line-height: 19.6px;
  text-align: left;
  color: #494d60;
  margin-bottom: 12px;
}

.card-container.upcoming {
  border-left: 1px solid #e2e2e2;
  border-right: 1px solid #e2e2e2;
}
.front-desk-wrapper {
  height: 100%;
}

.front-desk .card-section {
  display: flex;
}
h3 {
  font-family: "Montserrat", sans-serif !important;
  font-size: 16px;
  font-weight: 700;
  line-height: 22.4px;
  text-align: center;
  color: #1a1b28;
  padding-block: 17px;
  width: 100%;
  border-bottom: 1px solid #e2e2e2;
  background: #fff;
  margin: 0px;
}
.card-section h3 {
  font-family: "Montserrat", sans-serif !important;
  font-size: 16px;
  font-weight: 700;
  line-height: 22.4px;
  text-align: center;
  color: #1a1b28;
  padding-block: 17px;
  width: 100%;
  border-bottom: 1px solid #e2e2e2;
  background: #fff;
  margin: 0px;
}
.card-section .card-item {
  margin: 5px auto;
  padding: 16px;
  border-radius: 10px;
  background: #fff;
  /* max-width: 329px;
  min-width: 329px; */
}
.card-container {
    width: calc(100% / 3);
}
.card-section .card-container.unconfirmed .card-item {
  border: 1.5px dashed #ee3434;
}
.card-section .card-container.upcoming .card-item {
  border: 1.5px solid #00bb67;
}
.card-section .card-container.completed .card-item {
  border: 1.5px solid #2a67c4;
}

.card-section .card-item .service-info {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 15px;
}
.card-section .card-item .service-info h4 {
  color: #1a1b28;
  font-family: "Montserrat", sans-serif !important;
  font-size: 12px;
  font-weight: 700;
  line-height: 22.4px;
  text-align: left;
  margin-bottom: 8px;
}

.card-section .card-item .service-info h4 span {
  font-weight: 400;
}
.card-section .card-item .service-info p {
  color: #1a1b28;
  font-family: "Montserrat", sans-serif !important;
  font-size: 12px;
  font-weight: 700;
  line-height: 18.2px;
  text-align: left;
  margin: 0px;
}
.card-section .card-item .service-info p span {
  font-weight: 400;
}
.card-section .card-item .appointment-details {
  background: #f7f8fa;
  border-radius: 12px;
  padding: 20px 16px;
}
.card-section .card-item .appointment-details p {
  font-family: "Montserrat", sans-serif !important;
  font-size: 12px;
  font-weight: 400;
  line-height: 14.63px;
  text-align: left;
  color: #494d60;
  display: flex;
  justify-content: space-between;
  margin: 0px;
  padding-block: 12px;
  border-bottom: 1px dashed #e2e2e2;
}

.card-section .card-item .appointment-details p span {
  font-weight: 600;
  text-align: right;
  color: #0b0b37;
}
.card-section .card-item .service-info-img img {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  object-fit: cover;
}
.card-section .card-item .actions {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.card-section .card-item .actions button {
  padding: 14px;
  max-width: 100%;
  height: 48px;
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: center;
  border-radius: 8px;
  font-family: "Montserrat", sans-serif !important;
  font-size: 16px;
  font-weight: 700;
  line-height: 19.5px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.card-section .card-item .actions button.decline {
  border: 1px solid #e2e2e2;
  background: #fff;
  color: #5e36ef;
}
.card-section .card-item .actions button.decline:hover {
  border: 1px solid #5e36ef;
  background: #5e36ef;
  color: #ffffff;
}
.wellzon-primary-btn{
  background: #5e36ef;
  color: #ffffff;
  border: 0;
  border-radius: 8px;
  font-family: "Montserrat", sans-serif !important;
  font-size: 16px;
  font-weight: 700;
  padding: 8px 10px;
}

.wellzon-secondary-btn {
  background: #ffffff;
  color: #5e36ef;
  border: 1px solid #5e36ef;
  border-radius: 8px;
  font-family: "Montserrat", sans-serif !important;
  font-size: 16px;
  font-weight: 700;
  padding: 8px 10px;
}

.wellzon-warning-btn {
  background: #ff0000;
  color: #ffffff;
  border: 1px solid #ff0000;
  border-radius: 8px;
  font-family: "Montserrat", sans-serif !important;
  font-size: 16px;
  font-weight: 700;
  padding: 8px 10px;
}

.wellzon-disabled {
  opacity: .5;
}

.card-section .card-item .actions button.accept {
  border: 1px solid #5e36ef;
  background: #5e36ef;
  color: #ffffff;
}
.card-section .card-item .actions button.accept:hover {
  border: 1px solid #e2e2e2;
  background: #fff;
  color: #5e36ef;
}
.card-section .unconfirmed h3 {
  border-radius: 10px 0px 0px 0px;
}
.card-section .completed h3 {
  border-radius: 0px 10px 0px 0px;
}
.main-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.main-title h2 {
  font-family: "Montserrat", sans-serif !important;
  font-size: 16px;
  font-weight: 700;
  line-height: 22.4px;
  text-align: left;
  color: #1a1b28;
  margin: 0px;
}
.main-title .edit-btn {
  font-family: "Montserrat", sans-serif !important;
  font-size: 14px;
  font-weight: 500;
  line-height: 23.8px;
  text-align: center;
  color: #5e36ef;
  border: 1px solid #5e36ef;
  width: 102px;
  height: 32px;
  border-radius: 58px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.reports {
  padding-block: 18px 24px;
  padding-inline: 24px;
  background: #fff;
  overflow: auto;
}
.reports.custom .table-responsive {
  height: calc(100vh - 200px) !important;
}
.main-content-wrapper .form-select {
  max-width: 246px;
  height: 56px;
  display: flex;
  font-family: "Montserrat", sans-serif !important;
  font-size: 16px;
  font-weight: 500;
  line-height: 22.4px;
  text-align: left;
  color: #1a1b28;
  border-radius: 10px;
  border: 1px solid #e2e2e2;
}

.main-content-wrapper .form-select:focus {
  box-shadow: unset;
}
.main-content-wrapper .search-btn-inner input {
  padding: 17px 17px 17px 46px;
  border: 1px solid #e2e2e2;
  border-radius: 10px;
  font-family: "Montserrat", sans-serif !important;
  font-size: 16px;
  font-weight: 400;
  line-height: 22.4px;
  text-align: left;
}
.main-content-wrapper .search-btn-inner input::placeholder {
  color: #9a9a9a;
}
.main-content-wrapper .search-btn-inner .search-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 16px;
  cursor: pointer;
}
.main-content-wrapper .search-btn-inner input:focus {
  box-shadow: unset;
  outline: 0;
}
.search-btn-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: end;
}
.search-btn-wrapper .Reset {
  font-family: "Montserrat", sans-serif !important;
  font-size: 16px;
  font-weight: 700;
  line-height: 19.5px;
  text-align: center;
  color: #5e36ef;
  border: 0px;
  background: unset;
  margin-right: 4px;
  cursor: pointer;
}
.search-btn-wrapper .setting-btn {
  padding: 16px;
  border-radius: 10px;
  border: 1px solid #e2e2e2;
  background: #fff;
}
.search-btn-wrapper .search-btn-wrapper.box-two {
  justify-content: flex-end !important;
}

.search-btn-wrapper .btn--download {
  margin-top: 16px;
  border-radius: 8px;
  background: #5e36ef;
  border: 0;
  font-family: "Montserrat", sans-serif !important;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  color: #fff;
  padding-block: 10px;
  padding-inline: 12px;
  width: fit-content;
}

.main-content-table .table thead th {
  min-width: 90px;
  font-family: "Montserrat", sans-serif !important;
  font-size: 14px;
  font-weight: 500;
  line-height: 19.6px;
  color: #494d60;
  background: #f7f8fa;
  padding: 10px 20px;
  text-transform: uppercase;
}
.main-content-table .table td,
.main-content-table .table thead th {
  white-space: nowrap;
}

.main-content-table {
  border: 1px solid #e2e2e2;
  border-radius: 10px;
  overflow: hidden;
}
.main-content-table .table td {
  font-family: "Montserrat", sans-serif !important;
  font-size: 14px;
  font-weight: 700;
  line-height: 19.6px;
  text-align: left;
  color: #1a1b28;
  vertical-align: middle;
  padding: 20px;
}
.main-content-table .table td p {
  margin: 0px;
}
.main-content-table .table td span {
  font-family: "Montserrat", sans-serif !important;
  font-size: 14px;
  font-weight: 400;
  line-height: 19.6px;
  text-align: left;
}

/* Billing Account */
.billing,
.business-details {
  padding-block: 18px 24px;
  padding-inline: 24px;
  background: #fff;
  overflow: auto;
}
.billing .form-group label {
  display: block;
  margin-bottom: 16px;
  font-family: "Montserrat", sans-serif !important;
  font-size: 16px;
  font-weight: 700;
  line-height: 22.4px;
  text-align: left;
  color: #1a1b28;
}

.billing .form-group input,
.billing .form-group select {
  padding: 17px 16px;
  border-radius: 10px;
  border: 1px solid #e2e2e2;
  box-sizing: border-box;
  max-width: 326px;
  height: 56px;
  min-width: 326px;
}
.billing .form-group input,
.billing .form-group select {
  box-shadow: unset;
  outline: none;
}

.billing .form-group select {
  font-family: "Montserrat", sans-serif !important;
  font-size: 16px;
  font-weight: 500;
  line-height: 22.4px;
  text-align: left;
  color: #1a1b28;
}
.billing .form-group input {
  font-family: "Montserrat", sans-serif !important;
  font-size: 16px;
  font-weight: 400;
  line-height: 22.4px;
  text-align: left;
  color: #1a1b28;
  flex: 1;
}
.billing .form-group input::placeholder {
  color: #b9b9b9;
}
.billing .form-group {
  margin-bottom: 24px;
}
.billing .form-group .bank-details {
  display: flex;
  align-items: center;
  gap: 24px;
}

.billing .save-btn {
  margin-top: 16px;
  max-width: 327px;
  height: 48px;
  width: 100%;
  border-radius: 8px;
  background: #5e36ef;
  border: 0;
  font-family: "Montserrat", sans-serif !important;
  font-size: 16px;
  font-weight: 700;
  line-height: 19.5px;
  text-align: center;
  color: #fff;
}

.msg-tab-content .msg-tab-pane {
  display: none;
}
.msg-tab-content .msg-tab-pane.active {
  display: block;
}

/* Business Details */
.business-details .business-logo-wrapper .business-logo img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 100px;
}
.business-details .business-logo-wrapper .business-logo {
  padding: 11px;
  background: #f5f3ff;
  border-radius: 100px;
}
.business-details .business-logo-wrapper {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 34px;
  margin-bottom: 24px;
}
.business-details .business-logo-wrapper .business-logo-btn {
  font-family: "Montserrat", sans-serif !important;
  font-size: 14px;
  font-weight: 700;
  line-height: 18.2px;
  text-align: left;
  color: #2a67c4;
  border: 0;
  background: #fff;
}

.business-details .form-group label {
  display: block;
  margin-bottom: 16px;
  font-family: "Montserrat", sans-serif !important;
  font-size: 16px;
  font-weight: 700;
  line-height: 22.4px;
  text-align: left;
  color: #1a1b28;
}

.business-details .form-group input, .business-details .form-group select {
  font-family: "Montserrat", sans-serif !important;
  font-size: 16px;
  font-weight: 500;
  line-height: 22.4px;
  text-align: left;
  color: #1a1b28;
  padding: 17px 16px;
  border-radius: 10px;
  border: 1px solid #e2e2e2;
  flex: 1;
}
.business-details .form-group-inline {
  display: flex;
  align-items: end;
  width: 100%;
  gap: 59px;
}
.business-details .form-group {
  width: 100%;
  display: inline-flex;
  flex-direction: column;
  margin-bottom: 0;
}
.btn-toggle {
  display: flex;
  border: 0;
  padding: 8px;
  display: none;
  align-items: center;
}
.btn-toggle svg {
  width: 20px;
  height: 20px;
}
.admin-pop-wrapper .admin-popup {
  display: flex;
  flex-direction: column;
  max-width: 160px;
  border-radius: 8px;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 5px 5px -3px,
    rgba(0, 0, 0, 0.14) 0px 8px 10px 1px, rgba(0, 0, 0, 0.12) 0px 3px 14px 2px;
  position: absolute;
  background: #fff;
  top: 50px;
  right: 0px;
  display: none;
  transition: 0.5s ease-in-out;
  min-width: 160px;
  padding-block: 10px;
}
.admin-pop-wrapper .admin-popup a {
  padding: 6px 16px;
  display: flex;
  text-decoration: none;
  font-size: 14px;
  color: #757575;
  gap: 8px;
  font-weight: 400;
  line-height: 1.5;
  max-width: 100%;
  background: rgba(0, 0, 0, 0);
}
.admin-pop-wrapper .admin-popup a:hover {
  background: rgba(0, 0, 0, 0.0392156863);
}
.admin-pop-wrapper .admin-popup svg {
  width: 20px;
  height: 20px;
  fill: #1a1b28;
}
.admin-pop-wrapper .admin-popup .signout {
  font-weight: 400;
  line-height: 1.5;
  font-size: 14px;
  color: #757575;
  gap: 8px;
  width: 100%;
  border-radius: 0px;
}
.admin-pop-wrapper .admin-popup.active {
  display: block;
}

.nav.nav-primary {
  display: none;
}

/* business-details */

.business-details .save-btn {
  margin-top: 40px;
  max-width: 327px;
  height: 48px;
  width: 100%;
  border-radius: 8px;
  background: #5e36ef;
  border: 0;
  font-family: "Montserrat", sans-serif !important;
  font-size: 16px;
  font-weight: 700;
  line-height: 19.5px;
  text-align: center;
  color: #fff;
}

.business-details .form-group-inline-in {
  display: flex;
  gap: 24px;
}
.business-details .form-group-inline-in label {
  display: none;
}

/* Employees */

.custom-popin .dropdown-toggle::after {
  display: none;
}
.custom-popin svg {
  width: 24px;
  height: 24px;
  fill: #1a1b28;
}
.custom-popin .dropdown-item {
  font-family: "Montserrat", sans-serif !important;
  font-size: 14px;
  font-weight: 500;
}

.custom-popin .dropdown-item.active,
.custom-popin .dropdown-item:active {
  background-color: #5e36ef;
}

.employees .pop-up-btn {
  width: 203px;
  height: 48px;
  background: #5e36ef;
  border: 0;
  border-radius: 8px;
  color: #fff;
  font-family: "Montserrat", sans-serif !important;
  font-size: 16px;
  font-weight: 700;
  line-height: 19.5px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.employees .author {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 160px;
}

.employees .table td,
.employees .table thead th {
  text-align: center !important;
}

.employees .Pending-box {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}
.employees .Pending-box p {
  color: #fabb1a;
}

/* pop-up */
.popup {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  bottom: 0;
  right: 0;
}
.popup .popup-content {
  width: 100%;
  position: relative;
  border: 0;
  max-width: 570px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 24px 40px 40px 40px;
  background: #fff;
  border-radius: 15px;
}
.popup .close {
  position: absolute;
  top: 24px;
  right: 20px;
  cursor: pointer;
  z-index: 9;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup .close svg {
  width: 12px;
  height: 12px;
}

.popup .popup-header h2 {
  font-size: 16px;
  font-weight: 700;
  line-height: 22.4px;
  text-align: center;
  color: #1a1b28;
  margin-bottom: 32px;
}
.popup .popup-content input,
.popup .popup-content select {
  padding: 17px 16px;
  border-radius: 8px;
  border: 1px solid #e2e2e2;
  color: #1a1b28;
  font-family: "Montserrat", sans-serif !important;
  height: 56px;
  margin-bottom: 16px;
  width: 100%;
}
.popup .popup-content input:focus,
.popup .popup-content select:focus {
  outline: none;
  box-shadow: none;
}
.popup .popup-content select {
  font-size: 16px;
  font-weight: 500;
  line-height: 22.4px;
  text-align: left;
  color: #1a1b28;
}
.popup .popup-content input {
  font-size: 16px;
  font-weight: 400;
  line-height: 22.4px;
  text-align: left;
}
.popup .popup-content input::placeholder {
  color: #b9b9b9;
}
.popup .popup-content .form-group {
  display: flex;
  gap: 20px;
}

.popup .popup-content .form-select {
  background-position: right 0.95rem center !important;
}
.popup .popup-content .form-group.checkbox-group {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
}
.popup .popup-content .form-group.checkbox-group input {
  margin: 0px;
  width: 24px !important;
  height: 24px !important;
  color: #1a1b28;
  background: #1a1b28;
  accent-color: #1a1b28;
  border-radius: 5px;
}
.popup .popup-content .form-group.checkbox-group label {
  font-size: 16px;
  font-weight: 500;
  line-height: 22.4px;
  text-align: left;
  color: #1a1b28;
}
.popup .popup-content .form-group .btn-create {
  font-family: "Montserrat", sans-serif !important;
  font-size: 18px;
  font-weight: 700;
  line-height: 21.94px;
  text-align: center;
  height: 56px;
  width: 100%;
  background: #5e36ef;
  border-radius: 8px;
  border: 0px;
  color: #fff;
}

/* employee-details */

.employee-details {
  padding-block: 18px 24px;
  padding-inline: 24px;
  background: #fff;
  overflow: auto;
}
.employee-details .employee-header img {
  max-width: 40px;
}
.employee-details .employee-header p {
  font-size: 16px;
  font-weight: 700;
  line-height: 22.4px;
  text-align: left;
  color: #1a1b28;
}

.employee-details .employee-header {
  display: flex;
  gap: 16px;
  align-items: center;
  border-bottom: 1px solid #e2e2e2;
  padding-bottom: 16px;
  margin-inline: -24px;
}
.employee-details .employee-img {
  padding-left: 24px;
}

.employee-details .tab-links {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-block: 16px 24px;
}
.employee-details .tab-links .list-item a {
  font-family: "Montserrat", sans-serif !important;
  font-size: 14px;
  font-weight: 500;
  line-height: 23.8px;
  text-align: center;
  color: #1a1b28;
  padding: 4px 20px;
  border-radius: 58px;
  border: 1px solid #e2e2e2;
  width: 154px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  background: #f7f8fa;
}
.employee-details .tab-links .list-item.active a {
  background: #1a1b28;
  color: #fff;
  border: 1px solid #1a1b28;
}

.check-box-wrapper .switch {
  display: inline-block;
  position: relative;
  width: 50px;
  height: 25px;
  border-radius: 20px;
  background: #dfd9ea;
  transition: background 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  vertical-align: middle;
  cursor: pointer;
}

.check-box-wrapper .switch::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 2px;
  width: 22px;
  height: 22px;
  background: #fafafa;
  border-radius: 50%;
  transition: left 0.28s cubic-bezier(0.4, 0, 0.2, 1),
    background 0.28s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.check-box-wrapper .switch:active::before {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28), 0 0 0 20px rgba(128, 128, 128, 0.1);
}

.check-box-wrapper input:checked + .switch {
  background: #72da67;
}

.check-box-wrapper input:checked + .switch::before {
  left: 27px;
  background: #fff;
}

.check-box-wrapper input:checked + .switch:active::before {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28), 0 0 0 20px rgba(0, 150, 136, 0.2);
}
.check-box-wrapper {
  display: inline-block;
  vertical-align: middle;
}
.reports .icon-cos {
  font-size: 20px;
  margin-left: 6px;
}

#sales-by-staff-table .table td:not(:first-child),
#daily-summary-table .table td:not(:first-child),
#appointment-metrics-table .table td:not(:first-child) {
  text-align: center;
}
.employee-details .table-responsive {
  max-height: 400px;
  overflow-y: auto;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  height: calc(100vh - 380px);
}
.employee-details .table thead th:first-child {
  min-width: 100px;
}
.employee-details .table thead th:nth-child(2) {
  min-width: 280px;
}

/* jhl */

.option-box-wrapper .toggle-switch {
  position: relative;
  width: 40px;
  height: 20px;
  -webkit-appearance: none;
  appearance: none;
  background-color: #ccc;
  outline: none;
  border-radius: 20px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.option-box-wrapper .toggle-switch:checked {
  background-color: #4caf50;
}

.option-box-wrapper .toggle-switch::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: white;
  top: 1px;
  left: 1px;
  transition: transform 0.3s;
}

.option-box-wrapper .toggle-switch:checked::before {
  transform: translateX(20px);
}

.employee-details .notification-wrapper-box {
  display: grid;
  grid-template-columns: 1fr 2fr;
  padding-bottom: 24px;
  border-bottom: 1px solid #e2e2e2;
  min-width: 800px;
}
.employee-details .notification-wrapper-box .notification-wrapper-lt {
  min-width: 360px;
}
.employee-details .notification-wrapper {
  overflow: auto;
  max-height: calc(100vh - 380px);
}
.employee-details .notification-wrapper-box:not(:first-child) {
  padding-top: 24px;
}
.employee-details .notification-wrapper-box:last-child {
  border: 0px;
}
.employee-details .notification-wrapper-box .notification-title {
  color: #1a1b28;
  font-size: 16px;
  font-weight: 700;
  line-height: 22.4px;
  text-align: left;
  margin-bottom: 0px;
}

.employee-details .notification-wrapper-box .notification-subtitle {
  font-size: 12px;
  font-weight: 400;
  line-height: 16.8px;
  text-align: left;
  color: #1a1b28;
}
.employee-details .notification-wrapper-box .option-box-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: row-reverse;
  gap: 20px;
}

.employee-details .notification-wrapper-box .option-box-wrapper label {
  font-size: 14px;
  font-weight: 500;
  line-height: 19.6px;
  text-align: left;
  color: #1a1b28;
}
.employee-details .notification-wrapper-box .options-box {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.employee-details .overview-box-img img {
  max-width: 300px;
  object-fit: cover;
  display: block;
}
.employee-details .overview-box-img {
  display: contents;
}
.employee-details .overview-user-title {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
  color: #1a1b28;
}
.employee-details .overview-user-subtitle.mb-0 {
  font-size: 24px;
  line-height: 1.2;
  color: #1a1b28;
}

.employee-details .overview-box {
  padding-top: 50px;
  padding-left: 30px;
  padding-bottom: 40px;
  overflow: auto;
}
/* massages */

.massages-wrapp .contact-info-btn-cos {
  padding: 0px;
  border: 0px;
  background: transparent;
}

.massages-wrapp .contact-info-btn .dropdown-toggle::after {
  display: none;
}
.massages-wrapp .contact-info-btn .dropdown-item {
  font-size: 15px;
  font-weight: 500;
}

.delete-chat-modal .modal-header {
  border-bottom: 0px;
  padding-bottom: 0px;
}
.delete-chat-modal .modal-content {
  border: 0px;
}
.delete-chat-modal .modal-title {
  text-align: center;
  width: 100%;
}
.delete-chat-modal .modal-footer {
  justify-content: center;
  border: 0px;
  gap: 20px;
  padding-bottom: 20px;
}

.delete-chat-modal .btn_custom.btn-no {
  background: #1a1b28;
  color: #fff;
}
.delete-chat-modal .btn-close:focus {
  box-shadow: unset;
}

.delete-chat-modal .btn_custom.btn-yes {
  background: #5e36ef;
  color: #fff;
}
.delete-chat-modal .modal-dialog {
  max-width: 350px;
}
.massages-wrapp .chat-container {
  position: relative;
  width: 100%;
  background-color: #fff;
  /* border-radius: 0.3rem; */
  height: 90vh;
  overflow: hidden;
  display: flex;
}
.massages-wrapp .chat-container .contacts-list {
  border-right: 1px solid #e6e6e6;
  display: flex;
  flex-direction: column;
  padding: 18px 24px 24px 24px;
  width: 100%;
  max-width: 370px;
  max-height: calc(100vh - 170px);
}

.massages-wrapp .chat-container .chat-area {
  width: 100%;
  background: #fff;
}
.massages-wrapp .chat-container .contacts-header {
  display: flex;
  padding-block: 16px;
  gap: 8px;
}
.massages-wrapp .chat-container .tab-button, .tab-button {
height: 40px;
    border: 1px solid #e2e2e2;
    background: #e2e2e2;
    color: #1a1b28;
    border-radius: 58px;
    font-family: "Montserrat", sans-serif !important;
    font-size: 12px;
    font-weight: 500;
    line-height: 15.8px;
    text-align: center;
    width: fit-content;
    padding: 4px 16px;
}
.massages-wrapp .chat-container .tab-button.active, .tab-button.active {
  border: 1px solid #1a1b28;
  background: #1a1b28;
  color: #fff;
}

.massages-wrapp .chat-container .tab-button.btn-td {
  max-width: 74px;
}
.massages-wrapp .chat-container .tab-button.btn-ps {
  max-width: 134px;
}

.massages-wrapp .chat-container .chat-title h2 {
  color: #1a1b28;
  font-family: "Montserrat", sans-serif !important;
  font-size: 16px;
  font-weight: 700;
  line-height: 22.4px;
  text-align: left;
  margin: 0px;
}

.massages-wrapp .chat-container .contact {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-block: 16px;
  border-bottom: 1px solid #e2e2e2;
  border-top: 1px solid #e2e2e2;
  cursor: pointer;
}
.massages-wrapp .chat-container .contact:first-child {
  border-top: unset;
}
.massages-wrapp .chat-container .contact:last-child {
  border-bottom: unset;
}
.massages-wrapp .chat-container .contact h4 {
  color: #1a1b28;
  font-family: "Montserrat", sans-serif !important;
  font-size: 16px;
  font-weight: 700;
  line-height: 22.4px;
  text-align: left;
  margin-bottom: 4px;
}
.massages-wrapp .chat-container .contact p {
  color: #1a1b28;
  font-family: "Montserrat", sans-serif !important;
  font-size: 12px;
  font-weight: 400;
  line-height: 16.8px;
  text-align: left;
  margin: 0px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}
.massages-wrapp .chat-container .contact .contact-info {
  max-width: 250px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.massages-wrapp .chat-container .chat-header {
  padding: 12px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e2e2e2;
}

.massages-wrapp .chat-container .chat-header h4 {
  color: #1a1b28;
  font-family: "Montserrat", sans-serif !important;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  text-align: left;
  margin: 0px;
}

.massages-wrapp .chat-container .chat-header span {
  color: #1a1b28;
  font-family: "Montserrat", sans-serif !important;
  font-size: 10px;
  font-weight: 400;
  line-height: 1;
  text-align: left;
}
.massages-wrapp .chat-container .chat-header img {
  width: 40px;
  height: 40px;
  display: block;
  object-fit: cover;
}
.massages-wrapp .chat-container .chat-header-inner {
  display: flex;
  align-items: center;
  gap: 16px;
}
.massages-wrapp .chat-container .chat-content {
  flex-grow: 1;
  padding: 20px 30px 30px 30px;
  /* max-height: 300px; */
  overflow-y: auto;
}
.massages-wrapp .chat-container .chat-content .week-info {
  width: 74px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 28px;
  background: #f7f8fa;
  color: #494d60;
  font-family: "Montserrat", sans-serif !important;
  font-size: 10px;
  font-weight: 500;
  line-height: 24px;
  text-align: left;
}
.massages-wrapp .chat-container .chat-content .chat-content-time-tm {
  padding-inline: 28px;
  background: #fff;
  text-align: center;
  width: fit-content;
  margin-inline: auto;
  position: relative;
  z-index: 2;
}
.massages-wrapp .chat-container .chat-content .chat-content-time {
  position: relative;
  margin-bottom: 38px;
}
.massages-wrapp .chat-container .chat-content .chat-content-time::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0px;
  right: 0px;
  transform: translateY(-50%);
  width: 100%;
  background: #e2e2e2;
  z-index: 0;
  height: 1px;
}

.massages-wrapp .chat-container .chat-area-container {
  height: 100%;
  display: flex;
  flex-direction: column;
  max-height: calc(100vh - 165px);
}
.massages-wrapp .chat-container .chat-input-container {
  background: #f7f8fa;
  padding: 30px;
}
.massages-wrapp .chat-container .chat-input-container-inner input {
  padding: 17px 16px;
  width: 100%;
  border-radius: 10px;
  border: 1px solid #e2e2e2;
  font-family: "Montserrat", sans-serif !important;
  font-size: 16px;
  font-weight: 400;
  line-height: 22.4px;
  text-align: left;
  color: #1a1b28;
  padding-right: 42px;
}
.massages-wrapp .chat-container .chat-input-container-inner input::placeholder {
  color: #b9b9b9;
}
.massages-wrapp .chat-container .chat-input-container-inner input:focus {
  outline: none;
  box-shadow: none;
}
.massages-wrapp .chat-container .chat-input-container-inner {
  display: flex;
  gap: 16px;
  align-items: center;
  width: 100%;
}
.massages-wrapp .chat-container .chat-input-container-inner .input-text-msg {
  width: 100%;
}
.massages-wrapp .chat-container .chat-input-container-inner .image-upload-btn {
  padding: 0px;
  border: 0px;
  width: 24px;
  height: 24px;
  background: transparent;
}
.massages-wrapp .chat-container .chat-input-container-inner .send-button {
  width: 56px;
  height: 56px;
  border-radius: 50px;
  background: #5e36ef;
  border: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.massages-wrapp .chat-container .chat-input-container-inner .mood-upload-btn {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  border: 0px;
  background: transparent;
}

.massages-wrapp .chat-container .message-wrap {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.massages-wrapp .chat-container .message-wrap .chat-pofile {
  min-width: 32px;
  max-width: 32px;
  margin-top: 10px;
}
.massages-wrapp .chat-container .message-wrap .chat-pofile img {
  width: 32px;
  height: 32px;
  object-fit: cover;
}

.massages-wrapp .chat-container .message-wrap p {
  color: #1a1b28;
  font-family: "Montserrat", sans-serif !important;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  text-align: left;
  margin: 0px;
  padding: 16px;
  border-radius: 8px;
  background: #f5f3ff;
  position: relative;
  width: fit-content;
}
.massages-wrapp .chat-container .message-wrap .msg-inner-text {
  margin-top: 10px;
  display: block;
}
.massages-wrapp .chat-container .message-wrap .message-text-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.massages-wrapp .chat-container .message-wrap .time {
  color: #1a1b28;
  font-family: "Montserrat", sans-serif !important;
  font-size: 12px;
  font-weight: 400;
  line-height: 15.6px;
  text-align: left;
  position: absolute;
  top: -20px;
  white-space: nowrap;
}
.massages-wrapp .chat-container .message.received .time {
  left: 0px;
}
.massages-wrapp .chat-container .message {
  margin-bottom: 40px;
}
.massages-wrapp .chat-container .message.sent {
  display: flex;
  justify-content: end;
  align-items: end;
  text-align: end;
}
.massages-wrapp .chat-container .message.sent .message-wrap {
  flex-direction: row-reverse;
}
.massages-wrapp .chat-container .message.sent .message-wrap .message-text-wrap {
  align-items: end;
}

.massages-wrapp .chat-container .chat-icon-back {
  display: none;
  cursor: pointer;
}

.massages-wrapp .chat-container .contact-info-btn {
  cursor: pointer;
}
.massages-wrapp .chat-container .chat-icon-back svg {
  width: 18px;
  height: 18px;
  fill: #000;
}

.massages-wrapp .chat-container .contacts-list .contacts-content {
  overflow-y: auto;
  flex-grow: 1;
}

.massages-wrapp .chat-container .contacts-list .contacts-content img {
  width: 60px;
  height: 60px;
}

/* schedule */
.schedule .schedule-wrapper {
  position: relative;
  width: 100%;
  background-color: #f7f8fa;
  height: 100%;
  overflow: hidden;
  display: flex;
}
.schedule .schedule-wrapper .schedule-left-panel {
  /* border-right: 1px solid #e6e6e6; */
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 219px;
  max-height: calc(100vh - 170px);
  height: 100%;
}
.schedule .schedule-wrapper .calendar-box {
  padding-block: 18px 20px;
  padding-inline: 20px;
  background: #fff;
  border-bottom: 1px solid #e2e2e2;
}
.schedule .schedule-wrapper .calendar-box .calendar-box-title {
  color: #1a1b28;
  font-family: "Montserrat", sans-serif !important;
  font-size: 16px;
  font-weight: 700;
  line-height: 22.4px;
  margin-bottom: 16px;
}
.schedule .schedule-wrapper .calendar-box .calendar-date {
  font-family: "Montserrat", sans-serif !important;
  font-size: 14px;
  font-weight: 700;
  line-height: 19.6px;
  text-align: left;
  color: #1a1b28;
  margin: 0px;
}
.schedule .schedule-wrapper .calendar-box .calendar-box-inner-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.schedule .schedule-wrapper .calendar-box .calendar-box-btn {
  display: flex;
  gap: 22px;
}

.calendar-box .calendar .today {
  background: #1a1b28;
  border-radius: 50px !important;
  color: #fff !important;
}

.calendar-box .calendar-next-btn,
.calendar-box .calendar-prev-btn {
  cursor: pointer;
}
.schedule .schedule-wrapper .calendar thead td {
  font-family: "Montserrat", sans-serif !important;
  font-size: 10px;
  font-weight: 500;
  line-height: 14px;
  text-align: center;
  color: #494d60;
}
.schedule .schedule-wrapper .calendar thead tr,
.schedule .schedule-wrapper .calendar tbody tr {
  display: inline-flex;
  gap: 4px;
}
.schedule .schedule-wrapper .calendar tbody td {
  color: #b9b9b9;
  font-family: "Montserrat", sans-serif !important;
  font-size: 10px;
  font-weight: 500;
  line-height: 14px;
  text-align: center;
  cursor:pointer;
}
.schedule .schedule-wrapper .calendar table {
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.schedule .schedule-wrapper .calendar td {
  text-align: center;
  padding: 5px;
  border-radius: 5px;
  height: 24px !important;
  width: 100%;
  min-width: 24px !important;
  max-width: 24px !important;
}
.schedule .schedule-wrapper .calendar .active {
  color: #fff !important;
  background: #1a1b28 !important;
  border-radius: 50px !important;
}
.schedule .schedule-wrapper .calendar .active-next {
  color: #1a1b28 !important;
}
.schedule .schedule-wrapper .author-container {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.schedule .schedule-wrapper .author-container .author-title {
  font-family: "Montserrat", sans-serif !important;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  color: #1a1b28;
  margin: 0px;
}
.schedule .schedule-wrapper .author-container .author-subtitle {
  color: #1a1b28;
  font-family: "Montserrat", sans-serif !important;
  font-size: 10px;
  font-weight: 400;
  line-height: 1;
  text-align: center;
}
.schedule .schedule-right-panel table,
.schedule .schedule-right-panel th,
.schedule .schedule-right-panel td {
  border: 1px solid #e2e2e2 !important;
  border-collapse: collapse !important;
}
.schedule .schedule-right-panel thead tr th {
  min-width: 240px;
  padding: 10px !important;
}
.schedule .schedule-right-panel tbody tr td {
  padding: 4px !important;
  height: 48px;
  vertical-align: middle;
  text-align: center;
}
.schedule .schedule-right-panel tbody tr:first-child {
  height: 99px !important;
}
.schedule .schedule-right-panel tbody tr:last-child {
  height: 99px !important;
}
.schedule .schedule-right-panel thead tr {
  height: 56px !important;
}

.schedule .schedule-right-panel .time-slot {
  padding: 4px 16px;
  background: #fbf5e8;
  border-radius: 6px;
  width: 216px;
  height: 40px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 0px;
  overflow: hidden;
  margin-inline: auto;
}
.schedule .schedule-right-panel .time-slot p {
  font-family: "Montserrat", sans-serif !important;
  font-size: 12px;
  font-weight: 500;
  line-height: 20.4px;
  text-align: left;
  color: #1a1b28;
  margin: 0px;
}
.schedule .schedule-right-panel .time-slot span {
  font-family: "Montserrat", sans-serif !important;
  font-size: 10px;
  font-weight: 700;
  line-height: 12.19px;
  text-align: left;
}

.schedule .schedule-right-panel .time-slot.pending {
  border-left: 4px solid #fabb1a;
}
.schedule .schedule-right-panel .time-slot.pending span {
  color: #fabb1a;
}
.schedule .schedule-right-panel .time-slot.upcoming {
  border-left: 4px solid #00bb67;
}
.schedule .schedule-right-panel .time-slot.upcoming span {
  color: #00bb67;
}
.schedule .schedule-right-panel .time-slot.completed {
  border-left: 4px solid #2a67c4;
}
.schedule .schedule-right-panel .time-slot.completed span {
  color: #2a67c4;
}
.schedule-right-panel {
  width: 100%;
  overflow: auto;
}

.schedule .time-table-box {
  width: 100%;
  overflow-y: auto;
}
.schedule .time-table-box .schedule-time-table {
  text-align: end;
  margin-left: auto;
  margin-block: 22px;
  margin-right: 22px;
}
.schedule .time-table-box .schedule-time-table tbody {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: end;
}
.schedule .time-table-box .schedule-time-table tbody tr {
  font-family: "Montserrat", sans-serif !important;
  font-size: 12px;
  font-weight: 400;
  line-height: 15.6px;
  text-align: right;
  color: #1a1b28;
}

/* sign-in page */
.login-bg-box {
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: #f7f8fa;
}
.login-bg-box .login-container {
  padding: 48px 30px;
  box-shadow: 0px 8px 24px 0px #00000014;
  border: 1px solid #e2e2e2;
  background: #fff;
  border-radius: 10px;
  max-width: 430px;
  display: flex;
  flex-direction: column;
  width: 100%;
  position: relative;
}
.full-width {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.login-bg-box .sign-in-bg {
  position: absolute;
  bottom: 0px;
  opacity: 0.2;
  z-index: 1;
  left: 0;
  right: 0;
}
.login-bg-box .login-box-inner {
  text-align: center;
}
.login-bg-box .top-logo {
  margin-bottom: 40px;
}
.login-bg-box .login-box-inner {
  text-align: center;
  /* height: calc(100vh - 140px); */
  position: relative;
  z-index: 9999;
}

.login-bg-box .login-container h2 {
  color: #1a1b28;
  font-family: "Montserrat", sans-serif !important;
  font-size: 32px;
  font-weight: 700;
  line-height: 35.2px;
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 24px;
}

.login-bg-box .login-container .form-group input {
  padding: 17px 16px;
  border: 1px solid #e2e2e2;
  background: #fff;
  border-radius: 8px;
  font-family: "Montserrat", sans-serif !important;
  font-size: 16px;
  font-weight: 400;
  line-height: 22.4px;
  text-align: left;
}
.login-bg-box .login-container .form-group input:focus {
  outline: unset;
  box-shadow: unset;
}
.login-bg-box .login-container .form-group input::placeholder {
  color: #b9b9b9;
}
.login-bg-box .login-container .form-group label {
  display: none;
}
.login-bg-box .login-container .form-group {
  margin-bottom: 16px;
}
.login-bg-box .option-box-wrapper .toggle-switch:checked {
  background: #1a1b28;
}
.login-bg-box .option-box-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-direction: row-reverse;
}
.login-bg-box .form-group-inline {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.login-bg-box .forgot-password,
#sign-in-link {
  font-family: "Montserrat", sans-serif !important;
  font-size: 12px;
  font-weight: 700;
  line-height: 15.6px;
  text-align: right;
  color: #2a67c4;
}
.login-bg-box .login-container button.btn {
  width: 100%;
  height: 56px;
  background: #5e36ef;
  border: 0px;
  font-family: "Montserrat", sans-serif !important;
  font-size: 18px;
  font-weight: 700;
  line-height: 21.94px;
  text-align: center;
  color: #fff;
  margin-top: 40px;
  border-radius: 8px;
}
.login-bg-box .login-container button.btn:hover {
  background: #1a1b28;
  color: #fff;
}
#reset-password-form button.btn {
  margin-top: 0px;
}
#reset-password-form .message {
  margin-top: 15px;
  margin-bottom: 0px;
  gap: 10px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  text-align: center;
  justify-content: center;
}
/* pofile */

.user-profile-box-inner {
  box-shadow: 0px 8px 24px 0px #00000014;
  background: #fff;
  overflow: auto;
  height: 100%;
  padding-block: 50px 20px;
  padding-inline: 40px 20px;
}
.user-profile-box-inner .form-group {
  display: flex;
  align-items: center;
  width: 100%;
}
.user-profile-box-inner .form-label {
  width: 30%;
  margin-bottom: 0px;
  color: #1a1b28;
  font-family: "Montserrat", sans-serif !important;
  font-size: 16px;
  font-weight: 700;
  line-height: 22.4px;
  text-align: left;
}
.user-profile-box-inner .form-group input {
  padding: 10px;
  border: 1px solid #e2e2e2;
  background: #fff;
  border-radius: 8px;
  font-family: "Montserrat", sans-serif !important;
  font-size: 16px;
  font-weight: 400;
  line-height: 22.4px;
  text-align: left;
}
.user-profile-box-inner .form-group input:focus {
  box-shadow: unset;
  outline: unset;
}
.user-profile-box-inner .user-profile-card {
  padding-left: 24px;
  max-width: 500px;
  width: 100%;
}
.user-profile-box-inner .btn.btn-success {
  height: 40px;
  background: #5e36ef;
  border: 0px;
  font-family: "Montserrat", sans-serif !important;
  font-size: 16px;
  font-weight: 700;
  line-height: 21.94px;
  text-align: center;
  color: #fff;
  margin-top: 10px;
  border-radius: 8px;
  width: 100%;
  max-width: 170px;
}
.user-profile-box-inner .btn.btn-success:hover {
  background: #1a1b28;
  color: #fff;
}
.massages-wrapp .chat-container .contacts-list .contacts-content {
  overflow-y: auto;
  flex-grow: 1;
  height: calc(100vh - 240px);
}

.custom-popin.custom-box a.nav-link.dropdown-toggle {
  width: 100%;
  height: 100%;
}
.custom-popin.custom-box {
  width: 100%;
  height: 100%;
}
.custom-box .dropdown-menu {
  padding: 10px;
  text-align: center;
  left: 25px !important;
  margin-top: -48px !important;
}
.custom-box .dropdown-menu p {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 5px;
}

/* modal */

.pop-slot-btn {
  border: 0px;
  width: auto;
  height: 100%;
  background: transparent;
  padding: 0px;
}
.field-slot .modal-content {
  background: #fff;
  border-radius: 15px;
  border: 0px;
  padding-block: 24px 40px;
}

.field-slot .modal-body {
  padding-inline: 40px;
  padding-block: 30px 0px;
}
.field-slot .group-inline input,
.field-slot .group-inline select {
  padding: 17px 16px;
  border-radius: 8px;
  border: 1px solid #e2e2e2;
  color: #1a1b28;
  font-family: "Montserrat", sans-serif !important;
  height: 56px;
  width: 66%;
  max-width: 100%;
  cursor: pointer;
}
.form-check-inline input,
.form-check-inline label {
  cursor: pointer;
}
.field-slot .group-inline input:focus,
.field-slot .group-inline select:focus {
  box-shadow: unset;
  outline: 0;
}
.field-slot .field-slot-content label {
  display: block;
  margin-bottom: 16px;
  font-family: "Montserrat", sans-serif !important;
  font-size: 16px;
  font-weight: 700;
  line-height: 22.4px;
  text-align: left;
  color: #1a1b28;
  width: 33%;
  margin-bottom: 0px;
}

.field-slot .field-slot-content .group-inline {
  display: flex;
  align-items: center;
}
.field-slot .modal-dialog {
  max-width: 570px !important;
}
.field-slot .group-inline-in {
  display: flex;
}
.field-slot .modal-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 22.4px;
  text-align: center;
  color: #1a1b28;
  width: 100%;
}

.field-slot .modal-header {
  padding-block: 0px;
  border-bottom: 0px;
}
.field-slot .field-slot-btn {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 30px;
}
.field-slot .field-slot-content .field-slot {
  font-family: "Montserrat", sans-serif !important;
  font-size: 17px;
  font-weight: 700;
  line-height: 21.94px;
  text-align: center;
  height: 48px;
  width: 100%;
  background: #5e36ef;
  border-radius: 8px;
  border: 0px;
  color: #fff;
  transition: all 0.3s ease-in-out;
}

.field-slot .field-slot-content .field-slot:hover {
  background: #1a1b28;
}

.field-slot .btn-close:focus {
  outline: 0;
  box-shadow: unset;
}
.field-slot .form-check-inline input,
.field-slot .form-check-inline label {
  font-size: 16px;
  font-weight: 600;
}

/* appointment-card */
.text-grrey {
  color: #505050;
}
.appointment-card .appointment-card-content {
  padding-block: 24px 40px;
  padding-inline: 40px;
  background: #f7f8fa;
  border-radius: 20px;
}
.appointment-card .modal-header {
  padding: 0px;
  padding-bottom: 10px;
  border-bottom: 0px;
}
.appointment-card .modal-title {
  font-family: "Montserrat", sans-serif !important;
  font-size: 16px;
  font-weight: 700;
  line-height: 22.4px;
  text-align: center;
  color: #1a1b28;
  width: 1000%;
}
.appointment-card .modal-title span {
  font-size: 14px;
  font-weight: 500;
  line-height: 18.2px;
  text-align: center;
}
.appointment-card h4 {
  font-family: "Montserrat", sans-serif !important;
  font-size: 16px;
  font-weight: 700;
  line-height: 22.4px;
  text-align: left;
  color: #1a1b28;
  margin-bottom: 16px;
}
.appointment-card .appointment-card-service-box {
  padding: 16px;
  box-shadow: 0px 10px 36px 0px #00000014;
  border: 1px solid #e2e2e2;
  border-radius: 10px;
  background: #fff;
}
.appointment-card p {
  font-family: "Montserrat", sans-serif !important;
  font-size: 14px;
  font-weight: 500;
  line-height: 19.6px;
  text-align: left;
  color: #1a1b28;
  margin-bottom: 0px;
}

.appointment-card span {
  font-size: 12px;
  font-weight: 400;
  line-height: 15.6px;
  margin-top: 6px;
}
.appointment-card .appointment-card-time-top {
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.appointment-card .modal-body {
  padding: 0px;
}
.appointment-card .appointment-card-time {
  border-radius: 10px;
  border: 1px solid #e2e2e2;
  box-shadow: 0px 10px 36px 0px #00000014;
  background: #ffffff;
  overflow: hidden;
}
.appointment-card .appointment-card-time-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px;
  background: #f5f3ff;
}
.appointment-card .appointment-map-btn {
  padding: 14px 22px;
  font-family: "Montserrat", sans-serif !important;
  font-size: 16px;
  font-weight: 700;
  line-height: 19.5px;
  text-align: center;
  border-radius: 8px;
  background: #2a67c4;
  color: #fff;
  border: 0px;
  border: 1px solid transparent;
  transition: all 0.3s ease-in-out;
}
.appointment-card .appointment-map-btn:hover {
  background: #1a1b28;
  border: 1px solid #1a1b28;
}
.appointment-card-time span {
  color: #505050 !important;
}
.appointment-card .modal-dialog {
  max-width: 570px !important;
}
.appointment-card-time-bottom-in span {
  margin: 0px !important;
}
.appointment-card-time-content span {
  margin-top: 12px;
}
.appointment-card-time-content .pl-10 {
  display: flex !important;
  gap: 10px;
}
.appointment-card .appointment-card-client-inner {
  padding: 16px;
  background: #ffffff;
  border: 1px solid #e2e2e2;
  border-radius: 10px;
}
.appointment-card-client-inner .gp-12 {
  gap: 12px;
}
.appointment-card-client-inner p {
  font-size: 12px;
  font-weight: 400;
  line-height: 14.63px;
  text-align: left;
  color: #1a1b28;
}
.btn-inline-cos {
  display: flex;
  align-items: center;
  gap: 10px;
}
.btn-inline-cos .appointment-link {
  border: 0px;
  background: #fff;
  padding: 0px;
}
.appointment-Payment-Summary {
  padding: 20px 16px;
  border: 1px solid #e2e2e2;
  background: #fff;
  border-radius: 10px;
}
.appointment-Payment-Summary li {
  padding-bottom: 12px;
  border-bottom: 1px dashed #e2e2e2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.appointment-Payment-Summary li:last-child {
  border: 0px;
  margin-top: 12px;
}
.text--green {
  color: #00bb67 !important;
}
.fw-600 {
  font-weight: 600 !important;
}
.text-blue {
  color: #5e36ef;
}
.mb-28 {
  margin-bottom: 28px;
}
.appointment-card .appointment-btn {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  gap: 5px;
  padding: 0px;
  border: 0px;
}

.appointment-card .appointment-btn button {
  font-size: 18px;
  font-weight: 700;
  line-height: 21.94px;
  text-align: center;
  width: 230px;
  height: 56px;
  border-radius: 10px;
  border: 1px solid transparent;
  transition: all 0.3s ease-in-out;
}
.appointment-card .appointment-btn button.decline {
  border: 1px solid #e2e2e2;
  background: #fff;
  color: #5e36ef;
}

.appointment-card .appointment-btn button.accept {
  border: 1px solid #5e36ef;
  background: #5e36ef;
  color: #ffffff;
}
.appointment-card .appointment-btn button.decline:hover {
  border: 1px solid #5e36ef;
  background: #5e36ef;
  color: #ffffff;
}
.appointment-card .appointment-btn button.accept:hover {
  border: 1px solid #e2e2e2;
  background: #fff;
  color: #5e36ef;
}
.appointment-card .btn-close {
  position: absolute;
  top: 24px;
  right: 24px;
}
.appointment-card .btn-close:focus {
 box-shadow: unset;
 outline: 0;
}
.pointer-show{
  cursor: pointer;
}
@media only screen and (max-width: 1200px) {
  .main-header .list-item a {
    padding: 8px 10px;
    gap: 6px;
    font-size: 14px;
  }

  .nav-menu {
    margin-left: 150px;
  }
  .main-header .admin-wrapper {
    font-size: 14px;
  }
  .main-header .navbar-rt {
    padding-left: 16px;
  }
  .main-header .navbar-rt::before {
    left: -20px;
  }
  .sidebar-wrapper .nav-item a {
    font-size: 14px;
  }
  .sidebar {
    width: 280px;
  }
  .main-panel {
    position: relative;
    width: calc(100% - 280px);
  }
  .main-panel > .container {
    padding: 14px !important;
    padding-top: 104px !important;
  }
}

@media only screen and (max-width: 1024px) {
  .nav-menu-wrapper {
    display: none !important;
  }
  .main-header {
    padding: 10px 30px;
    min-height: 80px;
  }
  .nav.nav-primary {
    display: block;
  }
  .billing .form-group .bank-details {
    align-items: flex-start;
    flex-direction: column;
  }
  .billing .form-group input,
  .billing .form-group select {
    width: 100%;
    max-width: 100%;
    min-width: unset;
  }
  .business-details .form-group-inline {
    gap: 40px;
  }
  .billing .form-group select {
    padding-right: 35px;
  }
}

@media only screen and (max-width: 991px) {
  .user-profile-box-inner .form-group {
    flex-wrap: wrap;
    gap: 6px;
  }
  .user-profile-box-inner .form-label {
    width: 100%;
  }
  .card-section {
    flex-direction: column;
  }
  .card-container.upcoming {
    border: 0px;
  }
  .card-section .card-item {
    max-width: initial;
    min-width: unset;
  }
  .main-content-wrapper .form-select {
    height: 44px;
    font-size: 14px;
  }
  .main-content-wrapper .search-btn-inner input {
    padding: 10px 12px 10px 46px;
    font-size: 14px;
  }
  .search-btn-wrapper .setting-btn {
    padding: 9px;
  }
  .search-icon svg {
    width: 18px;
    height: 18px;
  }
  .search-btn-wrapper {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}

@media only screen and (max-width: 769px) {
  .profile_box .profile-img {
    height: 180px;
    width: 180px;
    margin-inline: auto;
  }
  .user-profile-box-inner .user-profile-card {
    padding-left: 0px;
  }
  .user-profile-box-inner {
    margin-inline: 0px;
    padding: 20px;
  }
  .card-section .completed h3 {
    border-radius: 0px;
  }
  .btn-toggle {
    display: flex;
  }

  .admin-btn .admin-wrapper span {
    display: none !important;
  }
  .admin-btn .admin-icon {
    display: none !important;
  }
  .main-header .admin-wrapper {
    padding-right: 0px;
    font-size: 10px !important;
  }
  .main-header .navbar-rt::before {
    display: none !important;
  }
  .logo img {
    max-width: 70px;
  }
  .main-header .admin-img img {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }
  .main-header .navbar-rt ul {
    gap: 12px;
  }
  .main-header .notification a {
    width: 40px;
    height: 40px;
  }
  .main-header {
    padding: 10px 20px;
    min-height: 60px;
  }
  .nav-menu {
    margin-left: 50px;
  }

  .sidebar .sidebar-wrapper,
  .sidebar[data-background-color="white"] .sidebar-wrapper {
    width: 0px;
    padding: 0px;
  }
  .sidebar {
    width: 0;
  }
  .sidebar.active_in .sidebar-wrapper {
    width: 280px;
    padding: 32px 30px;
    padding-top: 90px !important;
  }
  .sidebar.active_in {
    width: 280px;
  }
  .main-panel {
    width: 100%;
  }

  .sidebar-active .main-panel {
    width: calc(100% - 280px);
  }
  .front-desk-wrapper {
    height: 100%;
    width: 100%;
    max-width: 500px;
    min-width: 320px;
  }
  .billing,
  .business-details {
    min-width: 300px;
  }

  .business-details .form-group-inline {
    flex-wrap: wrap;
    gap: 0px;
  }
  .business-details .form-group-inline-in {
    flex-wrap: wrap;
    gap: 0px;
  }
  .employees .main-content-table {
    min-width: 500px;
  }
  .popup .popup-content {
    max-width: 90%;
    padding: 20px;
  }
  .popup .popup-header h2 {
    margin-bottom: 24px;
  }
  .popup .popup-content input,
  .popup .popup-content select {
    padding: 8px;
    font-size: 14px;
    border-radius: 8px;
    height: unset;
  }
  .popup .popup-content .form-group {
    flex-direction: column;
    gap: 0px;
  }
  .popup .popup-content .form-group.checkbox-group {
    gap: 8px;
    margin-bottom: 24px;
    display: grid;
    grid-template-columns: 0.2fr auto;
  }
  .popup .popup-content .form-group.checkbox-group label {
    font-size: 14px;
    line-height: 1.2;
  }
  .popup .popup-content .form-group .btn-create {
    font-size: 14px;
    line-height: 1.2;
    height: 40px;
  }
  .popup .popup-content .form-group.checkbox-group input {
    width: 16px !important;
    height: 16px !important;
  }

  .massages-wrapp .chat-container .chat-icon-back {
    display: block;
  }
  .massages-wrapp .chat-container .chat-area {
    position: absolute;
    left: 1000px;
    right: 0;
    transition: all 0.5s ease;
    border-left: none;
    height: 100%;
  }
  .massages-wrapp .chat-container .chat-area.showbox {
    left: 0 !important;
    transition: all 0.5s ease;
  }
  .massages-wrapp .chat-container .contacts-list {
    max-width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    max-height: calc(100vh - 120px);
  }
  .massages-wrapp .chat-container .contacts-list .contacts-content {
    overflow-y: auto;
    flex-grow: 1;
    height: calc(100vh - 240px);
  }
  .massages-wrapp .chat-container .chat-area-container {
    max-height: calc(100vh - 120px);
  }
  .massages-wrapp .chat-container .chat-input-container {
    padding: 20px;
  }
  .massages-wrapp .chat-container .chat-input-container-inner .send-button {
    width: 40px;
    height: 40px;
  }
  .massages-wrapp .chat-container .chat-input-container-inner .send-button svg {
    width: 18px;
    height: 18px;
  }
  .massages-wrapp .chat-container .chat-input-container-inner input {
    padding: 12px;
    padding-right: 30px;
  }
  .massages-wrapp .chat-container .chat-input-container-inner .mood-upload-btn {
    right: 7px;
  }
  .massages-wrapp .chat-container .chat-content {
    padding-inline: 15px;
  }
  .business-details .business-logo-wrapper .business-logo img {
    width: 70px;
    height: 70px;
    min-width: 70px;
  }
  .business-details .business-logo-wrapper {
    gap: 16px;
  }
  .employee-details .tab-links {
    flex-wrap: wrap;
  }
  .login-bg-box .login-container {
    width: 90%;
    margin-inline: auto;
  }
  .login-bg-box .login-container {
    padding: 40px 20px;
  }
  .login-bg-box .login-container .form-group input {
    padding: 12px;
  }
  .login-bg-box .form-group-inline {
    flex-direction: column;
    gap: 10px;
  }
  .login-bg-box .login-container button.btn {
    height: 48px;
    margin-top: 28px;
  }
  .login-bg-box .top-logo {
    margin-bottom: 30px;
  }
  .employee-details .overview-box-img img {
    max-width: 250px;
  }
  .employee-details .overview-user-title {
    font-size: 24px;
  }
  .employee-details .overview-user-subtitle.mb-0 {
    font-size: 18px;
  }

  .employee-details .overview-box {
    padding-block: 20px 50px;
    max-height: calc(100vh - 350px);
    overflow-y: auto;
    overflow-x: clip;
    padding-left: 0px;
  }
  .field-slot .field-slot-content .group-inline {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .field-slot .field-slot-content label {
    font-size: 14px;
    width: 100%;
  }
  .field-slot .group-inline input,
  .field-slot .group-inline select {
    width: 100%;
    font-size: 14px;
    padding: 10px;
    height: unset;
  }
  .field-slot .modal-body {
    padding-block: 20px 0px;
    padding-inline: 20px;
  }
  .field-slot .modal-content {
    padding-block: 24px 24px;
  }
  .field-slot .modal-title {
    font-size: 18px;
  }
  .field-slot .field-slot-content .field-slot {
    height: 44px;
    font-size: 16px;
  }
  .field-slot .form-check-inline input,
  .field-slot .form-check-inline label {
    font-size: 12px;
  }
  .login-bg-box .login-container h2 {
    font-size: 24px;
  }
  .search-btn-wrapper.box-two {
    gap: 10px;
    width: 100%;
  }
  .search-btn-wrapper .btn--download:not(:first-child) {
    margin-top: 10px;
  }
  .appointment-card .appointment-card-content {
    padding: 15px 10px;
}
}

@media only screen and (max-width: 576px) {
  .search-btn-wrapper .btn--download {
    width: 100%;
  }
  .search-btn-wrapper.box-two {
    gap: 0px;
  }
  .appointment-card p {
    font-size: 12px;
}
.appointment-card span {
  font-size: 10px;
}
.appointment-card .appointment-card-time-bottom {

  padding: 8px;
  flex-direction: column;
  gap: 10px;
}
.appointment-card .appointment-map-btn {
  padding: 9px 15px;
  font-size: 14px;
}
.appointment-card .appointment-card-client-inner {
  padding: 8px;
  padding: 8px;
  padding: 8px;
}
.btn-inline-cos {
  gap: 5px;
}
li.total-payment.pb-0 {
  font-size: 14px;
}
.appointment-card .appointment-btn button {
  font-size: 16px;
  width: fit-content;
  height: unset;
  padding: 15px 30px;
}
.appointment-card .appointment-btn {
  justify-content: center;
  gap: 20px;
}
.mb-28 {
  margin-bottom: 20px;
}
}
.daterangepicker td.active,
.daterangepicker td.active:hover {
  background-color: #5e36ef;
  color:white;
}
.massages-wrapp .chat-container .contact.active {
  background-color: #f5f3ff;
}

/* Services Page CSS */
.service-header-btn {
  line-height: 25px;
  font-size: 13px;
  margin: 5px;
  /* box-shadow: rgb(94 54 239) 6px 6px 13px, rgba(0, 0, 0, 0.22) 0px 10px 10px; */
}
.services .card-section {
  background: #fff;
  border-bottom: 1px solid #e2e2e2;
}
.services .card-section h3{
  border-bottom: none;
  text-align: left;
}
.services .categories-container label{
  color:#494D60;
}
.services .card-section{
  padding: 15px;
}
.main-content-wrapper.services{
  overflow:auto;
}
.categories-container .contacts-header {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}
.category-group{
  display: flex;
  flex-direction: column;
}
.cateogry-delete-icon {
  /* cursor: pointer;
  color: red;
  margin-top: 0px;
  transform: translateY(-50%);
  font-size: x-large; */
  cursor: pointer;
  /* color: red; */
  margin-top: 18px;
  transform: translateY(-50%);
  font-size: small;
  text-align: center;
  text-decoration: underline;
}

.services .categories-container .service-tab {
  border: 1px solid #E2E2E2;
  border-radius:10px;
  margin: 10px 0;
  padding: 10px;
  width:48%;
  height: auto;
  cursor: pointer;
}
.services .service-tab .service-name, .services .service-tab .service-price {
  font-size: 14px;
  font-weight: 800;
}
.service-tab.active{
  background: #f5f3ff;
}
.categories_services_container {
  display: none;
  /* Hidden by default */
}

.categories_services_container.active {
  display: block;
  /* Show when active */
}
.chat_tag_text{
  margin: 0;
  font-size: 13px;
  font-weight: 700;
}

.main-content-table .dataTables_length,.main-content-table .dataTables_filter,.main-content-table .dataTables_info,.main-content-table .dataTables_paginate {
  margin: 10px;
}

tbody, td, tfoot, th, thead, tr {
  border-color: #f7f8fa;
  border-style: solid;
  border-width: 0;
}
.main-content-table .dataTables_paginate .paginate_button:hover {
  color: white !important;
  border: 1px solid #8669f3 !important;
  background-color: #8669f3 !important;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #8669f3), color-stop(100%, #111)) !important;
  background: -webkit-linear-gradient(top, #8669f3 0%, #111 100%) !important;
  background: -moz-linear-gradient(top, #8669f3 0%, #111 100%) !important;
  background: -ms-linear-gradient(top, #8669f3 0%, #111 100%) !important;
  background: -o-linear-gradient(top, #8669f3 0%, #111 100%) !important;
  background: linear-gradient(to bottom, #8669f3 0%, #fff 100%) !important;
}
#loader {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999; /* Make sure it is above other elements */
}
.popup_inputs {
  height: auto !important;
}

.form-group {
    margin: 20px 10px;
}
form.form-control label {
    font-weight: 500;
}

.spinner {
  width: 20px;
  height: 20px;
  border: 3px solid rgba(0, 0, 0, 0.2); /* Light border */
  border-top: 3px solid #3498db; /* Blue top */
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.suggestion-list {
  width: 100%;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  max-height: 250px;
  overflow-y: auto;
  z-index: 999;
  margin: 0 10px 0 10px;

}

.suggestion-list div {
  padding: 10px;
  border-bottom: 1px solid #eee;
  cursor: pointer;
  transition: background 0.3s;
}

.suggestion-list div:hover {
  background: #f5f5f5;
}

.location-icon {
  width: 16px;  /* Set icon width */
  height: 16px; /* Set icon height */
  fill: #007bff; /* Blue color similar to Google Maps */
  margin-right: 10px; /* Add space between icon and text */
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
