:root {
  --bs-primary: #655af3;
  --bs-secondary: #0873cf;
  --bs-success: #51bb25;
  --bs-info: #7a15f7;
  --bs-warning: #ff5f24;
  --bs-danger: #fd2e64;
  --bs-light: #f8f9fa;
  --bs-dark: #212529;
  --not-interested: #ff5f24;
  --booking-deposit-received: #51bb25;
  --not-booked: #fd2e64;
  --pending: #ff5f24;
  --booked: #51bb25;
  --active: #51bb25;
  --inactive: #f3f3f3;
  --outstanding: #7a15f7;
  --paid: #51bb25;
  --not-yet-uploaded: #7a15f7;
  --accepted: #51bb25;
  --declined: #fd2e64;
  --bs-primary-rgb: 101, 90, 243;
  --bs-secondary-rgb: 8, 115, 207;
  --bs-success-rgb: 81, 187, 37;
  --bs-info-rgb: 122, 21, 247;
  --bs-warning-rgb: 255, 95, 36;
  --bs-danger-rgb: 253, 46, 100;
}

.dashboard-sidebar {
  position: fixed;
  top: 73px;
  height: 100vh;
  bottom: 0;
  background: #ffffff;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
@media (max-width: 575px) {
  .dashboard-sidebar {
    width: 75%;
    z-index: 10;
    right: -100%;
  }
  .dashboard-sidebar.active {
    right: 0;
  }
}
.dashboard-sidebar__panel {
  background-color: #ffffff;
  color: #ffffff;
  overflow-y: auto;
  width: 180px;
  z-index: 10;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
@media (max-width: 575px) {
  .dashboard-sidebar__panel {
    width: 100%;
  }
  .dashboard-sidebar__panel.menu-open {
    width: 180px;
  }
  .dashboard-sidebar__panel.menu-open li .sidebar-link span {
    text-indent: 0;
  }
}
.dashboard-sidebar__panel.menu-close {
  width: 45px;
}
.dashboard-sidebar__panel.menu-close li .sidebar-link span {
  text-indent: -99999px;
}
.dashboard-sidebar__header {
  padding: 1rem 0;
}
.dashboard-sidebar__logo {
  text-align: center;
  font-size: 18px;
}
.dashboard-sidebar__logo a {
  color: #ffffff;
}
.dashboard-sidebar__menu ul {
  margin: 0;
  padding: 0;
}
.dashboard-sidebar__menu ul li {
  list-style: none;
  position: relative;
  opacity: 1;
  border-bottom: 1px solid #dfe5f5;
}
.dashboard-sidebar__menu ul li .sidebar-link {
  color: #222222;
  background-color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 12px;
  position: relative;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  overflow: hidden;
}
.dashboard-sidebar__menu ul li .sidebar-link:hover {
  background-color: #f7f7fe;
  color: #655af3;
}
.dashboard-sidebar__menu ul li .sidebar-link i {
  font-size: 16px;
  margin-right: 10px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.dashboard-sidebar__menu ul li .sidebar-link span {
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}
.dashboard-sidebar__menu ul li.active .sidebar-link {
  color: #655af3;
  background-color: #f7f7fe;
}
.dashboard-sidebar__menu ul li.has-sub .sidebar-link:after {
  content: "\f107";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 0.625rem;
}
.dashboard-sidebar__menu ul.submenu {
  background-color: #fff;
  display: none;
  overflow: hidden;
  padding-left: 15px;
  -webkit-transition: max-height 2s cubic-bezier(0, 0.55, 0.45, 1);
  transition: max-height 2s cubic-bezier(0, 0.55, 0.45, 1);
}
.dashboard-sidebar__menu ul.submenu.active {
  visibility: visible;
  max-height: 999px;
}
.dashboard-sidebar__menu ul.submenu .submenu-item {
  padding: 0.3rem 0;
}
.dashboard-sidebar__menu ul.submenu .submenu-item a {
  display: block;
  color: #222222;
  font-size: 0.9rem;
  line-height: 2;
}

@media (max-width: 575px) {
  .form-switch {
    display: none;
  }
}

.btn-avatar {
  border: 0;
  background: transparent;
  -moz-text-align-last: left;
       text-align-last: left;
}
.btn-avatar img {
  max-width: 30px;
  border-radius: 50%;
  margin-right: 10px;
}
.btn-avatar .name {
  font-weight: 500;
  font-size: 14px;
  text-transform: capitalize;
  margin-bottom: 0;
  line-height: 1.5;
}
.btn-avatar .role {
  font-size: 12px;
  font-weight: 500;
  text-transform: capitalize;
  color: #8392a5;
  line-height: 1;
}
.btn-avatar.dropdown-toggle:after {
  display: none;
}

.btn-primary {
  --bs-btn-bg: #655af3;
  --bs-btn-border-color: #655af3;
}

.btn-secondary {
  --bs-btn-bg: #148df6;
  --bs-btn-border-color: #148df6;
}

.btn-success {
  --bs-btn-bg: #51bb25;
  --bs-btn-border-color: #51bb25;
}

.btn-info {
  --bs-btn-bg: #7a15f7;
  --bs-btn-border-color: #7a15f7;
}

.btn-warning {
  --bs-btn-bg: #ff5f24;
  --bs-btn-border-color: #ff5f24;
}

.btn-danger {
  --bs-btn-bg: #fd2e64;
  --bs-btn-border-color: #fd2e64;
}

.header {
  background-color: #f3f3f3;
}

.box-shadow {
  -webkit-box-shadow: 1px 1px 6px #dedede;
          box-shadow: 1px 1px 6px #dedede;
}

.page-header {
  background-color: #fff;
}
.page-header .page-title h2 {
  font-size: 1.5rem;
  margin-bottom: 0;
}

.top-panel-card__icon {
  width: 5rem;
  height: 5rem;
  background-color: #f3f3f3;
  border: 1px dashed #98a6ad;
  border-radius: 50%;
  padding: 1rem;
  text-align: center;
}
.top-panel-card__icon i {
  font-size: 3rem;
  color: #98a6ad;
  line-height: 1;
}
.top-panel-card__content {
  text-align: right;
}
.top-panel-card__content h5 {
  font-size: 2rem;
}
.top-panel-card__content span {
  color: #188ae2;
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 600;
}

.table.custom-table > :not(caption) > * > * {
  padding: 1rem 2rem;
}

.list-group-item {
  color: #6c757d;
}

.portal-login-panel {
  padding: 80px;
  border-radius: 20px;
  background: #fff;
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
}
@media (max-width: 430px) {
  .portal-login-panel {
    padding: 20px;
  }
}
.portal-login-panel h1 {
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
}
.portal-login-panel label {
  display: block;
  margin-bottom: 10px;
  color: #000000;
  font-weight: 500;
}
.portal-login-panel input[type=text],
.portal-login-panel input[type=password] {
  width: 100%;
  padding: 0.7rem;
  border: 3px solid #f4f4f4;
  border-radius: 10px;
}
.portal-login-panel input[type=text]:focus,
.portal-login-panel input[type=password]:focus {
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.portal-login-panel input[type=submit] {
  background-color: #fdc886;
  font-weight: 500;
  border: 0;
  padding: 0.8rem;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  width: 100%;
  border-radius: 10px;
}
.portal-login-panel input[type=submit]:hover {
  background-color: #87d10e;
}

.bg-orange {
  background: #ff7400;
}

.invoice-header table th, .invoice-header table td {
  color: #fff;
}

.bill h3 {
  color: #6c757d;
  font-size: 18px;
}
.bill p {
  margin-bottom: 0;
}

.page-template .navbar {
  min-height: 73px;
}

.navbar-padding {
  padding-left: 40px;
  padding-right: 40px;
}

.navbar .navbar-nav .nav-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
}
.navbar .navbar-nav .nav-link i {
  font-size: 20px;
}

@media (min-width: 992px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 20px;
    padding-left: 20px;
  }
}
.ydg-avatar img {
  border-radius: 50%;
  max-width: 50px;
}

.badge-not-interested {
  background-color: var(--not-interested);
}

.badge-booking-deposit-received {
  background-color: var(--booking-deposit-received);
}

.badge-not-booked {
  background-color: var(--not-booked);
}

.badge-pending {
  background-color: var(--pending);
}

.badge-booked {
  background-color: var(--booked);
}

.badge-active {
  background-color: var(--active);
}

.badge-inactive {
  background-color: var(--inactive);
}

.badge-outstanding {
  background-color: var(--outstanding);
}

.badge-paid {
  background-color: var(--paid);
}

.badge-not-yet-uploaded {
  background-color: var(--not-yet-uploaded);
}

.badge-accepted {
  background-color: var(--accepted);
}

.badge-declined {
  background-color: var(--declined);
}

.view-lead p,
.view-job p {
  color: #6c757d;
}

.lead-job-contact p {
  margin-bottom: 2px;
}
.lead-job-contact p:last-child {
  margin-bottom: 0;
}

.staff-info-card ul {
  margin: 0;
  padding: 0;
}
.staff-info-card ul li {
  list-style: none;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e7e7e7;
}
.staff-info-card ul li img {
  max-width: 60px;
  border-radius: 50%;
  margin-right: 15px;
}
.staff-info-card ul li h5 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 2px;
}
.staff-info-card ul li p {
  color: #6c757d;
  margin-bottom: 0;
  font-size: 14px;
}

.cld-day {
  padding: 0;
}
.cld-day.today {
  border-color: #fd2e64;
}

.jsCalendar tbody td.jsCalendar-selected {
  background: #87d10e;
  border-color: #87d10e;
  color: #ffffff;
}

.jsCalendar table {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.jsCalendar tbody td,
.jsCalendar thead .jsCalendar-week-days th {
  width: 48px;
  height: 48px;
  line-height: 3.8;
  border-radius: 50%;
}
@media (max-width: 500px) {
  .jsCalendar tbody td,
  .jsCalendar thead .jsCalendar-week-days th {
    width: 40px;
    height: 40px;
    line-height: 3.1;
  }
}

.jsCalendar tbody td.jsCalendar-current {
  border-radius: 50%;
}

.jsCalendar tbody td.jsCalendar-selected {
  width: 48px;
  height: 48px;
  line-height: 3.8;
  border-radius: 50%;
  border-radius: 50%;
}
@media (max-width: 500px) {
  .jsCalendar tbody td.jsCalendar-selected {
    width: 40px;
    height: 40px;
    line-height: 3.1;
  }
}

.invoice-header p {
  margin-bottom: 0;
}

.jsCalendar tbody td.jsCalendar-selected.not-available {
  background: #fd2e64;
  border-color: #fd2e64;
}

.table-wrap {
  max-height: 220px;
  overflow-y: auto;
}

.feedback-table {
  max-height: 500px;
}
.feedback-table p {
  color: #6c757d;
}

.rating-score-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 15px;
  margin-bottom: 15px;
}
.rating-score-wrap > div:last-child {
  margin-left: 10px;
}
.rating-score-wrap i {
  color: #6c757d;
}
.rating-score-wrap i.yellow {
  color: #fdc886;
}

@media (max-width: 991px) {
  .mobile-footer .navbar .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.mobile-footer .navbar .nav-link {
  font-size: 10px;
  padding: 0;
}
.mobile-footer .navbar-collapse {
  -ms-flex-preferred-size: auto;
      flex-basis: auto;
}
.mobile-footer .navbar-toggler {
  border: 0;
  padding: 0;
}
.mobile-footer .navbar-toggler:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.mobile-footer .navbar-toggler .navbar-toggler-icon {
  -webkit-transform: translateY(-7px);
          transform: translateY(-7px);
}

.btn-group button {
  border-radius: 0;
}
@media (max-width: 575px) {
  .btn-group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.page-numbers {
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.page-numbers li {
  list-style: none;
  border: 1px solid #dee2e6;
  overflow: hidden;
}
.page-numbers li:not(:last-child) {
  border-right: 0;
}
.page-numbers li:first-child {
  overflow: hidden;
  border-top-left-radius: 0.3rem;
  border-bottom-left-radius: 0.3rem;
}
.page-numbers li:last-child {
  border-top-right-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem;
}
.page-numbers li span,
.page-numbers li a {
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  display: block;
}
.page-numbers li a {
  background-color: #fff;
}
.page-numbers li span {
  background-color: #0d6efd;
  color: #fff;
}

input[type=date] {
  position: relative;
  height: 38px;
  color: #000;
}
input[type=date]:before {
  position: absolute;
  top: 5px;
  left: 12px;
  content: attr(data-date);
  display: inline-block;
  color: black;
}
input[type=date]::-webkit-datetime-edit, input[type=date]::-webkit-inner-spin-button, input[type=date]::-webkit-clear-button {
  display: none;
}
input[type=date]::-webkit-calendar-picker-indicator {
  position: absolute;
  top: 7px;
  right: 7px;
  color: black;
  opacity: 1;
}

body {
  font-family: "Montserrat", sans-serif;
  background-color: #f6f6f6;
  font-size: 14px;
  font-weight: 500;
  color: #1b3155;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  color: #343a40;
}

a {
  text-decoration: none;
}

#main {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  margin-top: 100px;
}

.sidebar-open {
  margin-left: 180px;
}

table {
  color: #1b3155;
}
table.table-with-scrollbar {
  display: block;
  overflow-x: auto;
  white-space: nowrap;
}
table.table-with-scrollbar thead {
  display: table-header-group;
}
table .list-group-item {
  padding: 0;
  border: 0;
  background: transparent;
}
table td {
  color: #1b3155;
  font-size: 14px;
}
table.single-line-table td,
table.single-line-table th {
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
}
table.single-line-table .pending td {
  background-color: #ffd601;
  color: #000;
}

@media (max-width: 575px) {
  #main {
    margin-left: 0;
  }
  #main.sidebar-close {
    margin-left: 200px;
  }
}

.admin-table {
  width: 100%;
  font-family: "Roboto", sans-serif;
}
@media (max-width: 991px) {
  .admin-table {
    overflow-x: auto;
    display: block;
    white-space: nowrap;
  }
}
.admin-table thead th {
  background-color: #f8faff;
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid #e8ebf2;
  padding: 0.5rem 0.5rem;
}
.admin-table tbody td {
  padding: 0.5rem 0.5rem;
  border-bottom: 1px solid #e8ebf2;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 500;
  vertical-align: middle;
}
.admin-table.lead-table tbody td {
  padding: 1.3rem 0.5rem;
}

.site-header__avatar img {
  max-width: 40px;
  border-radius: 50%;
}

.card-title {
  font-size: 18px;
  line-height: 1;
  font-weight: 600;
}
.card-subtext {
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #8392a5;
}

.tooltip {
  opacity: 1;
}
/*# sourceMappingURL=dashboard-ydg.css.map */