body {
  font-family: "Inter", sans-serif;
}

.app-header {
  box-shadow: none;
  border-bottom: none;
  height: 56px;
  background: transparent;
}

.app-header-inner .back-color {
  background-color: #fff;
  padding: 15px 13px;
}

.app-branding {
  padding-top: 1.4rem;
}

.app-branding .logo-icon {
  height: auto;
  width: auto;
}

.app-sidepanel {
  border-right: none;
}

.app-sidepanel .sidepanel-inner {
  border-right: 1px solid #d9d9db;
}

.user-title h4 {
  color: #09090b;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.2px;
  margin-bottom: 2px;
}

.user-title p {
  color: #58585e;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: -0.12px;
  margin-bottom: 0;
}

.app-content {
  margin-top: 20px;
  background-color: #f2f4f9;
}

.app-card,
.app-card-body,
.app-content .container-fluid,
.row>[class*="col-"] {
  min-width: 0;
}

.form-control,
.form-select {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.form-control {
  height: auto;
}

.form-select {
  padding-right: 2.5rem;
  background-position: right 0.9rem center;
}

.dropdown-menu {
  max-width: min(20rem, calc(100vw - 1rem));
  overflow-x: auto;
}

body.mobile-sidepanel-open {
  overflow: hidden;
}

.app-header {
  z-index: 1035;
}

.app-sidepanel {
  z-index: 1040;
}

.app-sidepanel .sidepanel-drop {
  z-index: 1;
}

.app-sidepanel .sidepanel-inner {
  z-index: 2;
}

.app-nav .nav-link:hover {
  color: #003772;
}

.first-card {
  background: #4a90e2 !important;
  color: white;
}

.app-nav .nav-link.active {
  color: #003772;
  background: #e6f0fa;
  border-left: 3px solid #003772;
  font-weight: 500;
}

.pagination .page-link {
  color: #15a362;
  border-color: #cfe9db;
  background-color: #ffffff;
}

.pagination .page-link:hover {
  color: #0f7a49;
  border-color: #15a362;
  background-color: #edf8f2;
}

.pagination .page-link:focus {
  color: #0f7a49;
  border-color: #15a362;
  background-color: #edf8f2;
  box-shadow: 0 0 0 0.2rem rgba(21, 163, 98, 0.18);
}

.pagination .page-item.active .page-link {
  color: #ffffff;
  border-color: #15a362;
  background-color: #15a362;
}

.pagination .page-item.disabled .page-link {
  color: #8aa99a;
  border-color: #dfe9e4;
  background-color: #f7fbf9;
}

@media (min-width: 992px) {
  .app-header-inner {
    background-color: #fff;
  }
}

@media (min-width: 992px) {
  .app-header-inner {
    margin-left: 250px;
  }

  .app-wrapper {
    margin-left: 250px;
  }

  .app-sidepanel,
  .app-sidepanel.sidepanel-hidden,
  .app-sidepanel.sidepanel-visible {
    left: 0;
  }

  .app-sidepanel {
    transition: none;
  }

  .app-sidepanel .sidepanel-drop,
  .sidepanel-visible .sidepanel-drop {
    display: none;
  }

  .app-sidepanel .sidepanel-close,
  .sidepanel-visible .sidepanel-close {
    display: none;
  }
}

@media (max-width: 991.98px) {
  .app {
    padding-top: 56px;
  }

  .app-header-inner .back-color {
    padding: 12px 14px;
  }

  .app-sidepanel,
  .app-sidepanel.sidepanel-hidden,
  .app-sidepanel.sidepanel-visible {
    left: 0;
    width: 100%;
    border-right: none;
    pointer-events: none;
  }

  .app-sidepanel .sidepanel-drop,
  .sidepanel-visible .sidepanel-drop {
    position: fixed;
    inset: 56px 0 0;
    min-height: calc(100vh - 56px);
    background: rgba(9, 16, 29, 0.42);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
  }

  .app-sidepanel .sidepanel-inner {
    position: relative;
    width: min(280px, calc(100vw - 2.5rem));
    max-width: min(280px, calc(100vw - 2.5rem));
    height: calc(100vh - 56px);
    margin-top: 56px;
    transform: translateX(calc(-100% - 1rem));
    transition: transform 0.25s ease;
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.2);
  }

  .app-sidepanel.sidepanel-visible {
    pointer-events: auto;
  }

  .app-sidepanel.sidepanel-visible .sidepanel-drop {
    opacity: 1;
    visibility: visible;
  }

  .app-sidepanel.sidepanel-visible .sidepanel-inner {
    transform: translateX(0);
  }

  .app-sidepanel .sidepanel-close,
  .sidepanel-visible .sidepanel-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    right: 0.75rem;
    top: 0.65rem;
    width: 2rem;
    height: 2rem;
    color: #5b6576;
    font-size: 1.8rem;
    line-height: 1;
    background: #fff;
    border-radius: 999px;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
  }

  .app-wrapper {
    margin-left: 0;
    width: 100%;
  }

  .app-content {
    margin-top: 12px;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .app-content .container-fluid {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .app-card .app-card-body {
    padding: 1rem;
    overflow-x: hidden;
  }

  .form-control,
  .form-select {
    font-size: 16px;
  }

  .mobile-filter-actions {
    margin-bottom: 0;
  }

  .mobile-filter-actions .btn {
    flex: 1 1 calc(50% - 0.5rem);
    min-width: 0;
  }

  /* .responsive-inline-select,
  .responsive-inline-select .form-select {
    width: 100% !important;
  } */

  .user-title h4 {
    font-size: 17px;
    line-height: 1.2;
  }

  .user-title p {
    font-size: 11px;
  }
}

@media (min-width: 768px) {
  .dashboard-page .col-md-3 {
    flex: 0 0 auto;
    width: 20%;
  }

  .my-requests-list .col-md-2 {
    flex: 0 0 auto;
    width: 18.666667%
  }

}

.dashboard-page .app-card {
  border-radius: 14px;
  padding: 20px 18px;
  background: #fff;
  box-shadow: 6px 6px 54px 0 rgba(0, 0, 0, 0.05);
}

.dashboard-page .stats-figure {
  color: #09090b;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 1px;
}

.dashboard-page .stats-type {
  color: #58585e;
  font-size: 14px;
  font-weight: 500;
}

.dashboard-page .first-parent {
  background: #003772;
}

.dashboard-page .first-parent .stats-figure {
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 1px;
}

.dashboard-page .first-parent .stats-type {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}