/* MIXINS */
/* COMPONENTS STYLES (General, non-themed styles) */
/* FULLCALENDAR */
.fc .fc-daygrid-event {
  max-width: 100%;
  height: auto !important;
}
.fc .fc-event-title,
.fc .fc-event-main-frame div {
  white-space: normal !important;
  overflow-wrap: break-word;
  word-break: break-word;
  line-height: 1.2;
}
.fc .fc-timegrid-event .fc-event-main {
  white-space: normal !important;
  overflow-wrap: break-word;
  word-break: break-word;
}

.custom-fc-task {
  border: 0px;
  white-space: normal;
  overflow-wrap: break-word;
  word-break: break-word;
  padding: 2px 4px;
}

.custom-fc-public-holiday {
  border: 0px;
  white-space: normal;
  overflow-wrap: break-word;
  word-break: break-word;
  padding: 2px 4px;
}

.custom-fc-span {
  background-color: white;
  padding: 0px 4px 0px 4px;
  border-radius: 2px;
  font-weight: bold;
}

/* END FULLCALENDAR */
.user-icon {
  display: flex;
  justify-content: flex-end;
}

.inline-flex-div {
  display: inline-flex;
  align-items: center;
}

.right-align-content {
  display: flex;
  justify-content: flex-end;
}

.title-icon-square {
  width: 40px;
  height: 40px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ROUNDED CORNERS SCROLLBAR */
::-webkit-scrollbar {
  width: 12px;
}
::-webkit-scrollbar-thumb {
  border-radius: 15px;
}
::-webkit-scrollbar-track {
  border-radius: 15px;
  margin-top: 2px;
  margin-bottom: 2px;
}

/* Y-SCROLLABLE CARD BODY */
.y-scrollable-card-body {
  overflow-y: auto;
  max-height: 150px !important;
}

/* SIDEBAR */
.wrapper {
  display: flex;
  height: 100vh;
}

.main {
  flex-grow: 1;
  overflow-y: auto;
  position: relative;
}
.main .container {
  max-width: 100%;
  padding-left: 2rem;
  padding-right: 2rem;
}

#sidebar {
  width: 70px;
  min-width: 70px;
  z-index: 40;
  transition: all 0.25s ease-in-out;
  display: flex;
  flex-direction: column;
  background-size: cover;
  height: 100vh;
  overflow-x: hidden;
  position: relative;
}
#sidebar.expand {
  width: 260px;
  min-width: 260px;
}
#sidebar:not(.expand) .sidebar-logo, #sidebar:not(.expand) a.sidebar-link span {
  display: none !important;
}
#sidebar .toggle-btn {
  background-color: transparent;
  cursor: pointer;
  border: 0;
  padding: 1rem 1.5rem;
}
#sidebar .toggle-btn i {
  font-size: 1.5rem;
}
#sidebar .sidebar-logo {
  margin: auto 0;
}
#sidebar .sidebar-logo a, #sidebar .sidebar-logo span {
  color: #fff !important;
  font-size: 1.15rem;
}
#sidebar .sidebar-nav {
  padding: 2rem 0;
  flex: 1 1 auto;
}
#sidebar .sidebar-nav a.sidebar-link {
  padding: 0.625rem 1.625rem;
  color: white;
  display: block;
  font-size: 0.9rem;
  white-space: nowrap;
  text-decoration: none;
}
#sidebar .sidebar-nav a.sidebar-link i {
  font-size: 1.1rem;
  margin-right: 0.75rem;
  opacity: 0.5;
}
#sidebar .sidebar-nav a.sidebar-link span {
  opacity: 0.7;
}
#sidebar .sidebar-nav a.sidebar-link i:active {
  color: white;
  opacity: 1;
}
#sidebar .sidebar-item {
  position: relative;
}
#sidebar .sidebar-footer {
  position: absolute;
  bottom: 0;
  width: 100%;
}

/* LEAVE DATES CARDS */
#leave-list input[type=checkbox] {
  width: 1.2rem;
  height: 1.2rem;
  cursor: pointer;
}

.legend-square {
  width: 20px;
  height: 20px;
  margin-right: 5px;
  border-radius: 4px;
}

/* LOADER */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 39;
}
#loader img {
  width: 50px;
  height: 50px;
}

/* DROPDOWN MENU */
.dropdown-menu .dropdown-divider {
  height: 1px;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
  border: none;
}

.card {
  border-radius: 10px !important;
}

#leavesTimeline {
  height: auto;
}

/* CUSTOM FONT SIZES */
.total-hours-fs {
  font-size: 5em;
  font-weight: bold;
}

/* LOGIN & REGISTER CUSTOM CARDS */
.custom-auth-card {
  width: 100%;
  max-width: 420px;
}

/* HAMBURGER NAV MENU */
.hamburger-icon {
  display: none;
  background: none;
  border: none;
  color: gray;
  font-size: 2rem;
  cursor: pointer;
  border-radius: 5px;
  transition: all 0.3s ease;
}
.hamburger-icon:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* SIDEBAR OVERLAY FOR MOBILE */
.sidebar-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 39;
}

/* END SIDEBAR OVERLAY FOR MOBILE */
/* RADIO BUTTONS */
/* RADIO BUTTONS STRUCTURE */
.form-check-input[type=radio] {
  border-radius: 50%;
  width: 1em;
  height: 1em;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  cursor: pointer;
  transition: all 0.2s;
}
.form-check-input[type=radio]::before {
  content: "";
  display: block;
  width: 0.5em;
  height: 0.5em;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: transparent;
  transition: background-color 0.2s;
}
.form-check-input[type=radio]:focus {
  outline: none;
}

/* END RADIO BUTTONS */
/* SWITCH BUTTONS STRUCTURAL */
.form-check.form-switch .form-check-input[type=checkbox] {
  width: 2em;
  height: 1em;
  border-radius: 1em;
  cursor: pointer;
  transition: all 0.25s ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  background: transparent;
}
.form-check.form-switch .form-check-input[type=checkbox]::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 1px;
  width: 0.8em;
  height: 0.8em;
  border-radius: 50%;
  transition: transform 0.25s ease-in-out, background-color 0.25s ease-in-out;
}
.form-check.form-switch .form-check-input[type=checkbox]:checked::before {
  transform: translateX(1em);
}

/* END SWITCH BUTTONS STRUCTURAL */
/* BREAKPOINT FOR MOBILE & TABLETS */
@media (max-width: 1280px) {
  .wrapper {
    flex-direction: column;
  }
  #sidebar {
    position: fixed;
    top: 0;
    left: -260px;
    width: 260px;
    height: 100vh;
    z-index: 40;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.5);
    transition: left 0.3s ease-in-out;
  }
  #sidebar.show {
    left: 0;
  }
  .main {
    margin-left: 0;
  }
  .sidebar-overlay.show {
    display: block;
  }
  .toggle-btn {
    display: none;
  }
}
@media (min-width: 1281px) {
  .toggle-btn {
    display: block;
  }
}
/* END BREAKPOINT FOR MOBILE & TABLETS */
/* TIME OFF BALANCE */
.time-off-balance-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.time-off-balance-bar {
  position: relative;
  border-radius: 6px;
  padding: 6px 52px 6px 14px;
  min-width: 160px;
  max-width: calc(100% - 130px);
  flex-shrink: 0;
  transition: width 0.4s ease;
}
.time-off-balance-bar .bar-label {
  color: #f8f9fa;
  font-size: 0.85rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.time-off-balance-bar .bar-label b {
  font-weight: 600;
}
.time-off-balance-bar .bar-days {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  font-weight: 700;
  color: #f8f9fa !important;
  line-height: 1;
}

.time-off-balance-controls {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.vac-btn {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid #dee2e6;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  flex-shrink: 0;
  padding: 0;
  transition: background 0.15s, border-color 0.15s;
}
.vac-btn:hover {
  background: #f0f0f0;
  border-color: #bbb;
}
.vac-btn.vac-btn-save {
  background: #2ed8b3;
  border-color: #2ed8b3;
  color: #f8f9fa;
}
.vac-btn.vac-btn-save:hover {
  background: #22c4a1;
  border-color: #1eb598;
}

@media (max-width: 575.98px) {
  .time-off-balance-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid #ced4da;
  }
  .time-off-balance-wrap:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
  }
  .time-off-balance-bar {
    max-width: 100%;
    width: 100% !important;
    padding-right: 52px;
  }
  .time-off-balance-controls {
    align-self: flex-end;
  }
}
/* END TIME OFF BALANCE */
/* BOOTSTRAP MULTISELECT - Structural (non-themed) styles */
.multiselect.btn {
  border-radius: 6px !important;
  padding: 6px 30px 6px 12px !important;
  text-align: left !important;
  position: relative !important;
  overflow: hidden !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
}
.multiselect.btn .multiselect-selected-text {
  flex: 1 !important;
  text-align: left !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  font-size: 0.9rem !important;
}
.multiselect.btn::after {
  position: absolute !important;
  right: 12px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  flex-shrink: 0 !important;
  margin: 0 !important;
}

.multiselect-container.dropdown-menu {
  border-radius: 6px !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15) !important;
  min-width: 100% !important;
  padding: 0 !important;
  overflow: hidden !important;
}
.multiselect-container.dropdown-menu .dropdown-item {
  padding: 7px 12px !important;
  cursor: pointer !important;
}
.multiselect-container.dropdown-menu .dropdown-item label {
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  margin: 0 !important;
  width: 100% !important;
  font-weight: normal !important;
}
.multiselect-container.dropdown-menu .dropdown-item label input[type=checkbox] {
  cursor: pointer !important;
  flex-shrink: 0 !important;
  width: 15px !important;
  height: 15px !important;
}
.multiselect-container.dropdown-menu .multiselect-item.multiselect-all .dropdown-item label {
  font-weight: 600 !important;
}

/* END BOOTSTRAP MULTISELECT - Structural */
/* POLICY FOOTER */
.policy-footer {
  font-size: 0.78rem;
}
.policy-footer a {
  color: inherit;
  opacity: 0.6;
  text-decoration: none;
}
.policy-footer a:hover {
  opacity: 1;
  text-decoration: underline;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}
body {
  font-family: "Montserrat", sans-serif !important;
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 0 !important;
}

.color-green {
  color: #2ed8b3 !important;
}

.bg-color-green {
  background-color: #2ed8b3 !important;
}

.color-blue {
  color: #0d6efd !important;
}

.color-pink,
.text-pink {
  color: #f06190 !important;
}

.bg-color-pink {
  background-color: #f06190 !important;
}

.bg-color-cyan {
  background-color: rgba(0, 172, 193, 0.8) !important;
}

.color-purple {
  color: #6f42c1 !important;
}

.bg-color-purple {
  background-color: #6f42c1 !important;
}

.bg-color-teal {
  background-color: rgba(75, 192, 192, 0.8) !important;
}

.color-orange {
  color: #fd7e14 !important;
}

.bg-color-orange {
  background-color: #fd7e14 !important;
}

.color-dark-pink {
  color: #d63384 !important;
}

.bg-color-dark-pink {
  background-color: #d63384 !important;
}

.color-vivid-red {
  color: rgba(255, 99, 132, 0.8) !important;
}

.bg-color-bright-orange {
  background-color: rgba(255, 159, 64, 0.8) !important;
}

.color-bright-orange {
  color: rgba(255, 159, 64, 0.8) !important;
}

.color-sunny-yellow {
  color: rgba(255, 205, 86, 0.8) !important;
}

.color-teal {
  color: rgba(75, 192, 192, 0.8) !important;
}

.color-strong-blue {
  color: rgba(54, 162, 235, 0.8) !important;
}

.color-vibrant-purple {
  color: rgba(153, 102, 255, 0.8) !important;
}

.color-light-gray {
  color: rgba(201, 203, 207, 0.8) !important;
}

.color-emerald-green {
  color: rgba(26, 188, 156, 0.8) !important;
}

.color-tomato-red {
  color: rgba(231, 76, 60, 0.8) !important;
}

.color-amber {
  color: rgba(243, 156, 18, 0.8) !important;
}

.color-carrot-orange {
  color: rgba(230, 126, 34, 0.8) !important;
}

.color-lime-green {
  color: rgba(46, 204, 113, 0.8) !important;
}

.color-dodger-blue {
  color: rgba(52, 152, 219, 0.8) !important;
}

.color-amethyst {
  color: rgba(142, 68, 173, 0.8) !important;
}

.color-burnt-orange {
  color: rgba(211, 84, 0, 0.8) !important;
}

.color-cyan {
  color: rgba(0, 172, 193, 0.8) !important;
}

.color-mauve {
  color: rgba(155, 89, 182, 0.8) !important;
}

.color-dark-teal {
  color: rgba(0, 128, 128, 0.8) !important;
}

.color-maroon {
  color: rgba(192, 57, 43, 0.8) !important;
}

.color-dark-brown {
  color: rgba(88, 44, 44, 0.8) !important;
}

body {
  background-color: #f3f7fa !important;
  color: #212529 !important;
}
body h1, body h2, body h3, body h4, body h5, body h6, body p, body label, body span, body strong, body ul, body .text-muted, body .vis-text {
  color: #212529 !important;
}
body input {
  background-color: white !important;
  color: #212529 !important;
  border: 1px solid #ddd !important;
}
body input:hover, body input:focus {
  background-color: !important;
}
body input::placeholder,
body textarea::placeholder {
  color: #212529 !important;
}
body textarea {
  color: #212529 !important;
  background-color: white !important;
}
body select {
  background-color: white !important;
  color: #212529 !important;
  border: 1px solid #ddd !important;
}
body .input-group-text {
  color: #0d6efd !important;
  background-color: #fff !important;
}
body {
  /* RADIO BUTTONS */
}
body .form-check-input[type=radio] {
  border: 1px solid #ddd !important;
  background-color: white !important;
}
body .form-check-input[type=radio]:checked::before {
  background-color: #0d6efd !important;
}
body .form-check-input[type=radio]:hover {
  border-color: #0d6efd !important;
}
body .form-check-input[type=radio]:focus {
  box-shadow: 0 0 0 2px #0d6efd;
}
body .form-check-input[type=radio]:hover, body .form-check-input[type=radio]:focus {
  background-color: !important;
}
body {
  /*END RADIO BUTTONS */
  /* SWITCH BUTTONS THEME */
}
body .form-check.form-switch .form-check-input[type=checkbox] {
  border: 1px solid #ddd !important;
  background-color: transparent !important;
}
body .form-check.form-switch .form-check-input[type=checkbox]::before {
  background-color: #ddd !important;
}
body .form-check.form-switch .form-check-input[type=checkbox]:checked {
  border-color: #0d6efd !important;
}
body .form-check.form-switch .form-check-input[type=checkbox]:checked::before {
  background-color: #0d6efd !important;
}
body .form-check.form-switch .form-check-input[type=checkbox]:hover {
  border-color: #0d6efd !important;
}
body .form-check.form-switch .form-check-input[type=checkbox]:focus {
  box-shadow: 0 0 0 2px rgba(13, 110, 253, 0.25);
}
body {
  /* END SWITCH BUTTONS THEME */
  /* CHECKBOX */
}
body .form-check-input[type=checkbox] {
  border-color: #0d6efd !important;
  border-width: 2px !important;
  background-color: white !important;
}
body .form-check-input[type=checkbox]:hover {
  border-color: #0d6efd;
  opacity: 0.8;
}
body .form-check-input[type=checkbox]:checked {
  background-color: #0d6efd !important;
  border-color: #0d6efd !important;
}
body {
  /* END CHECKBOX */
  /* BOOTSTRAP MULTISELECT - Theme specific */
}
body .multiselect.btn {
  background-color: white !important;
  border: 2px solid #0d6efd !important;
  color: #212529 !important;
}
body .multiselect.btn:hover, body .multiselect.btn:focus, body .multiselect.btn:focus-visible, body .multiselect.btn:active {
  background-color: white !important;
  border-color: #0d6efd !important;
  color: #212529 !important;
  box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.15) !important;
}
body .multiselect.btn::after {
  border-top-color: #0d6efd !important;
}
body .show > .multiselect.btn {
  background-color: white !important;
  border-color: #0d6efd !important;
  color: #212529 !important;
}
body .multiselect-container.dropdown-menu {
  background-color: white !important;
  border: 2px solid #0d6efd !important;
}
body .multiselect-container.dropdown-menu .multiselect-search.form-control {
  background-color: white !important;
  color: #212529 !important;
  border-color: #ddd !important;
}
body .multiselect-container.dropdown-menu .multiselect-search.form-control::placeholder {
  color: #212529 !important;
  opacity: 0.6 !important;
}
body .multiselect-container.dropdown-menu .multiselect-item.multiselect-all {
  border-bottom: 1px solid #ddd !important;
}
body .multiselect-container.dropdown-menu .dropdown-item {
  color: #212529 !important;
}
body .multiselect-container.dropdown-menu .dropdown-item label,
body .multiselect-container.dropdown-menu .dropdown-item label span {
  color: #212529 !important;
}
body .multiselect-container.dropdown-menu .dropdown-item:hover, body .multiselect-container.dropdown-menu .dropdown-item:focus {
  background-color: #0d6efd !important;
  color: white !important;
}
body .multiselect-container.dropdown-menu .dropdown-item:hover label,
body .multiselect-container.dropdown-menu .dropdown-item:hover label span, body .multiselect-container.dropdown-menu .dropdown-item:focus label,
body .multiselect-container.dropdown-menu .dropdown-item:focus label span {
  color: white !important;
}
body .multiselect-container.dropdown-menu li.active > .dropdown-item {
  background-color: rgba(13, 110, 253, 0.12) !important;
  color: #212529 !important;
}
body .multiselect-container.dropdown-menu li.active > .dropdown-item label,
body .multiselect-container.dropdown-menu li.active > .dropdown-item label span {
  color: #212529 !important;
}
body {
  /* END BOOTSTRAP MULTISELECT */
}
body .nav-link.active {
  background-color: transparent !important;
  color: #212529 !important;
  border-color: transparent;
}
body .btn-primary {
  background-color: #0d6efd;
  border-color: #0d6efd;
}
body .btn-secondary {
  background-color: rgba(75, 192, 192, 0.8);
  border-color: rgba(75, 192, 192, 0.8);
}
body .btn-success {
  background-color: #2ed8b3;
  border-color: #2ed8b3;
}
body .btn-danger {
  background-color: #d63384;
  border-color: #d63384;
}
body .btn-warning {
  background-color: #fd7e14;
  border-color: #fd7e14;
}
body .btn-info {
  background-color: rgba(0, 172, 193, 0.8);
  border-color: rgba(0, 172, 193, 0.8);
}
body .btn-light {
  background-color: #f3f7fa;
  border-color: #f3f7fa;
}
body .btn-dark {
  background-color: #263544;
  border-color: #263544;
}
body header,
body footer,
body .leftsidenav {
  background-color: #263544;
}
body .custom-table-thead th span {
  color: white !important;
}
body .table {
  color: #212529;
  background-color: white;
  border-color: #ddd;
}
body .table thead th {
  background-color: #1a6edc !important;
  border-color: #ddd !important;
  color: white !important;
}
body .table tbody tr td {
  background-color: white !important;
  color: #212529 !important;
  border-color: #ddd !important;
}
body .table tbody tr:hover td {
  background-color: #eef4ff !important;
  color: #212529 !important;
}
body {
  /* DATATABLES - Theme specific */
}
body .dt-container table.dataTable {
  --bs-table-color: #212529;
  --bs-table-bg: white;
  --bs-table-striped-bg: white;
  --bs-table-hover-bg: #eef4ff;
}
body .dt-container table.dataTable tbody tr td {
  background-color: white !important;
  color: #212529 !important;
  border-color: #ddd !important;
}
body .dt-container table.dataTable tbody tr:hover td {
  background-color: #eef4ff !important;
  color: #212529 !important;
}
body .dt-container table.dataTable thead {
  background-color: #1a6edc !important;
  color: white !important;
}
body .dt-container table.dataTable thead th {
  border-color: #ddd !important;
  color: white !important;
}
body .dt-container .dt-info,
body .dt-container .dt-search,
body .dt-container .dt-processing,
body .dt-container .dt-length {
  color: #212529 !important;
}
body .dt-container .dt-paging .dt-paging-button {
  background-color: white !important;
  color: #212529 !important;
  border-radius: 6px !important;
  border: 0 !important;
  padding: 0.25rem 0.5rem !important;
  background-image: none !important;
  cursor: pointer;
}
body .dt-container .dt-paging .dt-paging-button:hover:not(.disabled) {
  background-color: #0d6efd !important;
  background-image: none !important;
}
body .dt-container .dt-paging .dt-paging-button.current, body .dt-container .dt-paging .dt-paging-button.active {
  background-color: #0d6efd !important;
  background-image: none !important;
}
body .dt-container .dt-paging .dt-paging-button.current.current, body .dt-container .dt-paging .dt-paging-button.active.active {
  color: white !important;
}
body .dt-container .dt-paging .dt-paging-button.current.current:hover, body .dt-container .dt-paging .dt-paging-button.active.active:hover {
  color: white !important;
}
body .dt-container .dt-paging .dt-paging-button.disabled {
  background-color: transparent !important;
  color: #212529 !important;
  cursor: not-allowed;
  background-image: none !important;
}
body .dt-container .dt-paging .dt-paging-button.disabled:hover {
  color: #0d6efd !important;
}
body .dt-container .dt-paging .dt-paging-button.current.current.disabled, body .dt-container .dt-paging .dt-paging-button.active.active.disabled {
  background-color: #0d6efd !important;
  color: white !important;
  cursor: default;
}
body {
  /* END DATATABLES - Theme specific */
}
body .leave-approved-bg {
  background-color: #92CD28;
}
body .leave-pending-bg {
  background-color: #FFA33F;
}
body .leave-item {
  border: 1px solid #ddd;
}
body #loader {
  background-color: rgba(255, 255, 255, 0.8);
}
body #sidebar {
  background-image: linear-gradient(180deg, #1a6edc 0%, #1a3fa8 50%, #12297a 100%);
}
body #sidebar a.sidebar-link {
  color: #0d6efd;
}
body #sidebar a.sidebar-link:hover {
  background-color: rgba(255, 255, 255, 0.075);
}
body #sidebar .sidebar-link i:active {
  color: #f8f9fa;
}
body #sidebar .toggle-btn i {
  color: white;
}
body {
  /* FULLCALENDAR */
}
body .fc {
  background-color: white;
  --fc-event-bg-color: #0d6efd;
  --fc-event-border-color: #0d6efd;
}
body .fc .fc-button {
  background-color: white;
  border-color: #ddd;
  color: #212529;
}
body .fc .fc-button:hover {
  background-color: #e9ecef !important;
  border-color: #ddd !important;
  color: #212529 !important;
}
body .fc .fc-button:active, body .fc .fc-button.fc-button-active {
  background-color: #ddd !important;
  border-color: #ddd !important;
  color: #212529 !important;
}
body .fc .fc-day-disabled {
  background: #fcfcfc;
}
body .fc .fc-day-today {
  background-color: rgba(255, 220, 40, 0.15) !important;
}
body .fc .fc-event-title {
  color: white;
}
body .custom-fc-public-holiday {
  background-color: rgba(255, 159, 64, 0.8);
  color: white;
}
body .custom-fc-span {
  background-color: rgba(0, 128, 128, 0.8);
  color: white;
}
body .custom-fc-task {
  background-color: rgba(75, 192, 192, 0.8);
  color: white;
}
body .left-nav-bg {
  background-color: #263544;
}
body .title-icon-square {
  background-color: #1a6edc;
}
body ::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.45);
}
body ::-webkit-scrollbar-track {
  background-color: rgba(180, 180, 180, 0.5);
}
body .main {
  background-color: #f3f7fa;
}
body .main #leavesTimeline {
  background-color: #f8f9fc;
}
body .main #leavesTimeline .vis-text {
  color: #4D4D4D !important;
}
body .rounded-card-bg {
  background-color: white;
}
body .topbar {
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background-color: white;
}
body .dropdown-menu {
  color: #212529 !important;
  background-color: white !important;
}
body .dropdown-menu .dropdown-item {
  color: #212529 !important;
}
body .dropdown-menu .dropdown-item:hover {
  color: #212529 !important;
  background-color: #e9ecef !important;
}
body .dropdown-menu .dropdown-item:hover i {
  color: #212529 !important;
}
body .dropdown-menu .dropdown-divider {
  background-color: #ddd;
}
body .card {
  background-color: white;
}
body .card-child {
  border-radius: 1rem;
  background-color: transparent !important;
  border: 1px solid #ddd !important;
}
body .card.color-mauve p, body .card.color-mauve h5, body .card.color-mauve span, body .card.color-mauve b {
  color: rgba(155, 89, 182, 0.8) !important;
}
body .btn.custom-secondary-btn {
  background-color: rgba(75, 192, 192, 0.8);
  color: #fff;
}
body .btn.custom-secondary-btn:hover {
  background-color: rgba(0, 172, 193, 0.8) !important;
}
body .btn.custom-filters-btn {
  background-color: #343a40;
  color: #fff;
  border: 1px solid #ddd !important;
}
body .btn.custom-filters-btn:hover {
  background-color: #4D4D4D !important;
}
body .modal .modal-content {
  background-color: white !important;
}
body .modal .modal-header.bg-primary {
  background-color: !important;
}
body .modal .modal-header.bg-primary .modal-title {
  color: #fff !important;
}
body .modal .modal-header.bg-primary .btn-close {
  filter: invert(1) grayscale(100%) brightness(200%);
}

body .offcanvas .offcanvas-body .ui-slider .ui-slider-handle {
  background: #0d6efd;
  border-color: #0d6efd;
}/*# sourceMappingURL=light-theme.css.map */