.hidden {
  display: none;
}
/* background img */
body {
  margin: 0;
  padding: 0;
  background: url("/images/loginpagebg.jpg") no-repeat center center fixed;
  background-size: cover;
  height: 100vh;
}

@media (max-width: 768px) {
  body {
    background-attachment: scroll;
    background-size: cover;
  }
}
/* background img */

.card-icon-primary {
  color: #4154f1;
  background: #f6f6fe;
}

.card-icon-success {
  color: #2eca6a;
  background: #e0f8e9;
}

.card-icon-warning {
  color: #ff771d;
  background: #ffecdf;
}

.info-top-card {
  background-color: #c5cbc8;
}

#main {
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  height: 100vh !important;
}

.passwordVisibility {
  cursor: pointer;
}

/*ScrollBar*/

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
}

::-webkit-scrollbar-thumb {
  background: #6c757d;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #0d6efd;
}

/*ScrollBar*/

.info-top-card .card-title {
  font-size: larger;
  font-weight: bold;
}

.card-title-form {
  font-size: 1.5rem;
  font-weight: bold;
  color: #0b0b0b;
  text-align: left;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.bs-sub-menu {
  font-size: medium;
}

.bs-sub-menu .list-group-item {
  align-items: baseline;
}

.bs-company-info .card-body {
  padding: 20px 20px 20px 20px;
}

.bs-company-info .card-body .col-title {
  font-weight: bold;
  color: #5c5c5c;
}

.bs-company-info .card-body .company-logo {
  max-width: 100px;
  max-height: 100px;
}

.form-group .form-label {
  color: #818181;
  font-size: 15px;
}

.company-info .company-logo {
  max-width: 150px;
  cursor: pointer;
}

#imgCompanyLogoUpload:hover {
  opacity: 0.5;
  -webkit-filter: blur(5px);
  transition: 1s ease;
}

/*Loader*/
#loader {
  position: fixed;
  top: 0;
  z-index: 10000;
  width: 100%;
  height: 100%;
  display: none;
  background: rgba(0, 0, 0, 0.6);
}

#loader .load-spinner {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#loader .spinner {
  width: 40px;
  height: 40px;
  border: 4px #ddd solid;
  border-top: 4px #2e93e6 solid;
  border-radius: 50%;
  animation: sp-anime 0.8s infinite linear;
}

@keyframes sp-anime {
  100% {
    transform: rotate(360deg);
  }
}
/*Loader*/

.user-info .user-picture {
  width: 150px;
  height: 150px;
  cursor: pointer;
}

.card-mini-menu-body .btn:hover {
  transform: scale(1.1);
}

.card-mini-menu-body {
  padding: 0 12 20px 12;
}

.card-mini-menu-body .btn {
  color: white;
  border-radius: 0rem;
}

.dataTable {
  width: 100%;
}
/* not working */

.dropdown-menu .dropdown-item {
  cursor: pointer;
}

.login-Logo {
  width: 100px;
  height: 100px;
  margin-left: auto;
  margin-right: auto;
}

/* Remove input number arrows for Chrome, Safari, and Edge */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Remove input number arrows for Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

.active {
  /* color: yellow; */
  background-color: transparent;
  /* text-decoration: underline; */
}

.card-header-theme {
  background-color:  #04A8A3;
  border-radius: 20px;
}

.schedule-accordion-header .accordion-button {
  background-color: #04A8A3;
  color: white;
  font-weight: bold;
}

.calander-table .today-date-selected {
  padding: 10px;
  color: white;
  background-color: #04A8A3;
  font-weight: 500;
}

.calander-table th,
td {
  text-align: center;
  vertical-align: middle;
}

.calander-table .calander-available-day {
  background-color: #7ec97e;
  color: #1d521d;
  cursor: pointer;
  font-size: 8px;
}

.calander-table .calander-unavailable-day {
  background-color: #fda2a2;
  color: #521d1d;
  font-size: 8px;
}

.calander-table .calander-holiday {
  background-color: #fda2a2;
  color: #521d1d;
  font-size: 8px;
}

.muted {
  font-size: small;
  color: #bbbbbb;
}

.strong {
  font-weight: 600;
}

/*Range Slider*/
.range-slider {
  margin: 10px 0 0 0;
  width: 100%;
}

.range-slider-range {
  -webkit-appearance: none;
  width: calc(100% - (73px));
  height: 10px;
  border-radius: 5px;
  background: #d7dcdf;
  outline: none;
  padding: 0;
  margin: 0;
}

.range-slider-range::-webkit-slider-thumb {
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #2c3e50;
  cursor: pointer;
  transition: background 0.15s ease-in-out;
}

.range-slider-range::-webkit-slider-thumb:hover {
  background: #04A8A3;
}

.range-slider-range:active::-webkit-slider-thumb {
  background: #04A8A3;
}

.range-slider-range::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border: 0;
  border-radius: 50%;
  background: #2c3e50;
  cursor: pointer;
  transition: background 0.15s ease-in-out;
}

.range-slider-range::-moz-range-thumb:hover {
  background: #04A8A3;
}

.range-slider-range:active::-moz-range-thumb {
  background: #04A8A3;
}

.range-slider-range:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 3px #fff, 0 0 0 6px #04A8A3;
}

.range-slider-value {
  display: inline-block;
  position: relative;
  width: 60px;
  color: #fff;
  line-height: 20px;
  text-align: center;
  border-radius: 3px;
  background: #2c3e50;
  padding: 5px 10px;
  margin-left: 8px;
}

.range-slider-value:after {
  position: absolute;
  top: 8px;
  left: -7px;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-right: 7px solid #2c3e50;
  border-bottom: 7px solid transparent;
  content: "";
}

.card-body {
  overflow: hidden;
}

.card-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.required-label::after {
  content: " *";
  color: #dc3545;
}

/*Dashboard*/
.dashboard-card {
  border-left: 5px solid #04A8A3;
  font-size: x-large;
  vertical-align: baseline;
  color: #04A8A3;
  transition: transform 0.3s ease-in-out;
}

.dashboard-card .card-body {
  padding: 20px;
}

.no-decoration {
  text-decoration: none;
}

.dashboard-card:hover {
  transform: scale(1.1);
}

.artical-card {
  transition: transform 0.3s ease-in-out;
}

.artical-card:hover {
  transform: scale(1.05);
}

#layoutAuthentication {
  background-image: url("/images/loginpagebg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}

.login-forgot {
  color: #04A8A3;
}

.login-forgot:hover {
  color: red;
}

.register-salon {
  color: #04A8A3;
}

.register-salon:hover {
  color: #13e9e2;
}


.btn-theme {
  background-color: #04A8A3;
}

.btn-saloon {
  --bs-btn-color: white !important;
  --bs-btn-bg: #04A8A3 !important; /* Background color */
  --bs-btn-border-color: #04A8A3 !important;
  --bs-btn-hover-color: white !important;
  --bs-btn-hover-bg: #114a49 !important;
  --bs-btn-hover-border-color: #114a49 !important;
  --bs-btn-focus-shadow-rgb: 11, 172, 204 !important;
  --bs-btn-active-color: white !important;
  --bs-btn-active-bg: #09c2bb !important;
  --bs-btn-active-border-color: #04A8A3 !important;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125) !important;
  --bs-btn-disabled-color: white !important;
  --bs-btn-disabled-bg: #04A8A3 !important;
  --bs-btn-disabled-border-color: #04A8A3 !important;
}

.card .serviceCard {
  border-left: 4px solid #04A8A3;
}



/* .btn-saloon{
  background-color: #04A8A3;
} */

.custom-modal-header {
  background-color: #04A8A3;
}

.label-success {
  color: rgb(6, 190, 6);
}

.label-danger {
  color: #e80e1f;
}

.slide-visibility-checkbox:checked[type="checkbox"] {
  background-color: #04A8A3;
  border: #04A8A3;
}

.slide-visibility-checkbox {
  height: 30px !important;
  width: 50px !important;
}

.btn-slide-delete {
  color: #f76c6c;
  cursor: pointer;
}

.btn-slide-delete:hover {
  color: #e24949;
}

.card-description {
  max-height: 18px;
  overflow: hidden;
}

body {
  background: #f4f7fd;
  margin-top: 20px;
}

.appoinment-card-margin {
  margin-bottom: 1.875rem;
}

.appoinment-card {
  border: 0;
  box-shadow: 0px 0px 10px 0px rgba(82, 63, 105, 0.1);
  -webkit-box-shadow: 0px 0px 10px 0px rgba(82, 63, 105, 0.1);
  -moz-box-shadow: 0px 0px 10px 0px rgba(82, 63, 105, 0.1);
  -ms-box-shadow: 0px 0px 10px 0px rgba(82, 63, 105, 0.1);
}

.appoinment-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #ffffff;
  background-clip: border-box;
  border: 1px solid #e6e4e9;
  border-radius: 8px;
}

.appoinment-card .appoinment-card-header .no-border {
  border: 0;
}

.appoinment-card .appoinment-card-header {
  background: none;
  padding: 0 0.9375rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  min-height: 50px;
}

.appoinment-card-header:first-child {
  border-radius: calc(8px - 1px) calc(8px - 1px) 0 0;
}

.widget-49 .widget-49-title-wrapper {
  display: flex;
  align-items: center;
}

.widget-49 .widget-49-title-wrapper .widget-49-date-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #edf1fc;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
}

.widget-49
  .widget-49-title-wrapper
  .widget-49-date-primary
  .widget-49-date-day {
  color: #4e73e5;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1;
}

.widget-49
  .widget-49-title-wrapper
  .widget-49-date-primary
  .widget-49-date-month {
  color: #4e73e5;
  line-height: 1;
  font-size: 1rem;
  text-transform: uppercase;
}

.widget-49 .widget-49-title-wrapper .widget-49-date-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #fcfcfd;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
}

.widget-49
  .widget-49-title-wrapper
  .widget-49-date-secondary
  .widget-49-date-day {
  color: #dde1e9;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1;
}

.widget-49
  .widget-49-title-wrapper
  .widget-49-date-secondary
  .widget-49-date-month {
  color: #dde1e9;
  line-height: 1;
  font-size: 1rem;
  text-transform: uppercase;
}

.widget-49 .widget-49-title-wrapper .widget-49-date-success {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #e8faf8;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
}

.widget-49
  .widget-49-title-wrapper
  .widget-49-date-success
  .widget-49-date-day {
  color: #17d1bd;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1;
}

.widget-49
  .widget-49-title-wrapper
  .widget-49-date-success
  .widget-49-date-month {
  color: #17d1bd;
  line-height: 1;
  font-size: 1rem;
  text-transform: uppercase;
}

.widget-49 .widget-49-title-wrapper .widget-49-date-info {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #ebf7ff;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
}

.widget-49 .widget-49-title-wrapper .widget-49-date-info .widget-49-date-day {
  color: #36afff;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1;
}

.widget-49 .widget-49-title-wrapper .widget-49-date-info .widget-49-date-month {
  color: #36afff;
  line-height: 1;
  font-size: 1rem;
  text-transform: uppercase;
}

.widget-49 .widget-49-title-wrapper .widget-49-date-warning {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: floralwhite;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
}

.widget-49
  .widget-49-title-wrapper
  .widget-49-date-warning
  .widget-49-date-day {
  color: #ffc868;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1;
}

.widget-49
  .widget-49-title-wrapper
  .widget-49-date-warning
  .widget-49-date-month {
  color: #ffc868;
  line-height: 1;
  font-size: 1rem;
  text-transform: uppercase;
}

.widget-49 .widget-49-title-wrapper .widget-49-date-danger {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #feeeef;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
}

.widget-49 .widget-49-title-wrapper .widget-49-date-danger .widget-49-date-day {
  color: #f95062;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1;
}

.widget-49
  .widget-49-title-wrapper
  .widget-49-date-danger
  .widget-49-date-month {
  color: #f95062;
  line-height: 1;
  font-size: 1rem;
  text-transform: uppercase;
}

.widget-49 .widget-49-title-wrapper .widget-49-date-light {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #fefeff;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
}

.widget-49 .widget-49-title-wrapper .widget-49-date-light .widget-49-date-day {
  color: #f7f9fa;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1;
}

.widget-49
  .widget-49-title-wrapper
  .widget-49-date-light
  .widget-49-date-month {
  color: #f7f9fa;
  line-height: 1;
  font-size: 1rem;
  text-transform: uppercase;
}

.widget-49 .widget-49-title-wrapper .widget-49-date-dark {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #ebedee;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
}

.widget-49 .widget-49-title-wrapper .widget-49-date-dark .widget-49-date-day {
  color: #394856;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1;
}

.widget-49 .widget-49-title-wrapper .widget-49-date-dark .widget-49-date-month {
  color: #394856;
  line-height: 1;
  font-size: 1rem;
  text-transform: uppercase;
}

.widget-49 .widget-49-title-wrapper .widget-49-date-base {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #f0fafb;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
}

.widget-49 .widget-49-title-wrapper .widget-49-date-base .widget-49-date-day {
  color: #68cbd7;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1;
}

.widget-49 .widget-49-title-wrapper .widget-49-date-base .widget-49-date-month {
  color: #68cbd7;
  line-height: 1;
  font-size: 1rem;
  text-transform: uppercase;
}

.widget-49 .widget-49-title-wrapper .widget-49-meeting-info {
  display: flex;
  flex-direction: column;
  margin-left: 1rem;
}

.widget-49
  .widget-49-title-wrapper
  .widget-49-meeting-info
  .widget-49-pro-title {
  color: #3c4142;
  font-size: 14px;
}

.widget-49
  .widget-49-title-wrapper
  .widget-49-meeting-info
  .widget-49-meeting-time {
  color: #b1bac5;
  font-size: 13px;
}

.widget-49 .widget-49-meeting-points {
  font-weight: 400;
  font-size: 13px;
  margin-top: 0.5rem;
}

.widget-49 .widget-49-meeting-points .widget-49-meeting-item {
  display: list-item;
  color: #727686;
}

.widget-49 .widget-49-meeting-points .widget-49-meeting-item span {
  margin-left: 0.5rem;
}

.widget-49 .widget-49-meeting-action {
  text-align: right;
}

.widget-49 .widget-49-meeting-action a {
  text-transform: uppercase;
}

/* Admin Dashboard */
.slide-indicator {
  display: flex;
  justify-content: center;
}

.indicator-line {
  display: flex;
}

.indicator-dot {
  width: 25px;
  height: 20px;
  margin: 0 5px;
  background-color: #ffc107;
  border-radius: 3px;
}

.indicator-dot.active {
  background-color: #198754;
}
/* Admin Dashboard */