@import url("https://fonts.googleapis.com/css?family=Overpass");
@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Condensed:ital@0;1&family=IBM+Plex+Sans:ital,wght@0,100;0,400;0,700;1,100;1,400;1,700&display=swap");
* {
  box-sizing: border-box;
}

html, body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 0.93rem;
  width: 100%;
  height: 100vh;
  color: #01152c;
}

.bg-dark {
  background: #00254e;
}
.bg-dark-gradient {
  background: linear-gradient(35deg, #014089, #00254e);
}

img {
  width: 100%;
}

a {
  text-decoration: none;
  color: #014089;
}

.btn {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: #e8eff7 solid 1px;
}
.btn:focus {
  outline: none;
  box-shadow: none;
}
.btn-primary {
  background-color: #014089 !important;
  border-color: #014089 !important;
}
.btn-primary i {
  color: white;
}
.btn-primary:hover {
  background: #3f6ad8;
  transition: 0.3s ease-in-out;
}
.btn-primary-1 {
  background-color: #3f6ad8;
  border-color: #3f6ad8;
}
.btn-secondary {
  background-color: #f8f8f8 !important;
  border-color: #ccc;
  color: #014089 !important;
}
.btn-secondary i {
  color: #014089;
}
.btn-secondary:hover {
  background: #014089;
  color: white;
  transition: 0.3s ease-in-out;
}
.btn-secondary:hover i {
  color: white;
}
.btn-download {
  color: white;
  width: 100%;
  border-radius: 50px;
  padding: 10px 0;
}
.btn-danger i {
  color: white;
}

.color-primary {
  color: #014089;
}
.color-primary-1 {
  color: #3f6ad8;
}
.color-light-primary {
  color: #6297c1;
}
.color-white {
  color: white;
}
.color-grey {
  color: #4E4E4E;
}
.color-red {
  color: red;
}

hr:not([size]), hr {
  height: 1px;
  opacity: 1;
}

.min-vh-100 {
  min-height: 100vh !important;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  padding: 0 0;
  list-style: none;
  font-size: 0.78rem;
  font-weight: 500;
  opacity: 0.8;
  background: none;
}
.breadcrumb-item + .breadcrumb-item::before {
  float: left;
  padding-right: 0.5rem;
  content: "/";
}
.breadcrumb-item a {
  color: #3c4b64;
  opacity: 0.75;
}

.nav-pills .nav-item {
  margin-right: 5px;
}
.nav-pills .nav-item:last-child {
  margin-right: 0;
}
.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
  background: #014089;
}
.nav-pills .nav-link:hover {
  background: #014089;
  color: white;
  transition: 0.3s ease-in-out;
}

.nav-link {
  color: #014089;
}
.nav-link:focus, .nav-link:hover {
  color: #014089;
}

.dropdown-toggle {
  font-size: 0.85rem;
}
.dropdown .dropdown-item {
  font-size: 0.85rem;
}

.table thead th {
  font-size: 0.8rem;
  border-top: 0;
}
.table tbody {
  font-size: 0.88rem;
}

.help-block {
  color: red;
  font-weight: bold;
  font-size: 0.75rem;
}

.form-group {
  margin-bottom: 0.5rem;
}
.form-group .btn {
  font-size: 0.88rem !important;
}
.form-group .checkbox-item label {
  color: #222222 !important;
  margin-bottom: 0.15rem !important;
}
.form-group .checkbox-item.form-group {
  margin-bottom: 0.25rem;
}

.input-group .form-group {
  width: 100%;
}

label {
  margin-bottom: 0.5rem;
}

.form-control, .form-select {
  font-size: 0.85rem !important;
}

.app-header {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  min-height: 4rem;
  padding: 0.5rem 0.5rem;
  background: white;
  border-bottom: #d8dbe0 solid 1px;
}
.app-header .app-title {
  font-size: 1.25rem;
  font-weight: bold;
}
.app-header.app-header-sticky {
  position: sticky;
  top: 0;
  z-index: 1029;
}
.app-header > .container, .app-header > .container-fluid {
  display: flex;
  flex-wrap: inherit;
  align-items: center;
  justify-content: space-between;
}
.app-header-toggler {
  margin-right: 10px;
  padding: 5px;
}
.app-header-toggler.btn:focus {
  outline: none;
  box-shadow: none;
}
.app-header-toggler i {
  font-size: 1.5rem;
}
.app-header-nav {
  position: relative;
  display: flex;
  flex: 1;
  padding: 0;
  margin-bottom: 0;
  overflow-x: hidden;
  overflow-y: auto;
  list-style: none;
  margin-right: 1.5rem;
}
.app-header-nav .nav-link {
  display: flex;
  align-items: center;
  padding: 0.8445rem 1rem;
  color: #ccc;
  text-decoration: none;
  white-space: inherit;
  background: transparent;
  transition: background 0.15s ease, color 0.15s ease;
  background: rgba(181, 200, 233, 0.337254902);
  border-radius: 100px;
}
.app-header-nav .nav-link:hover {
  color: #4a5870;
  background: #b5c8e9;
  border-radius: 50px;
  transition: 0.3s ease;
}
.app-header-nav .nav-link:hover .nav-icon {
  color: #4a5870;
}
.app-header-nav .nav-icon {
  flex: 0 0 3rem;
  height: 1.25rem;
  font-size: 1.25rem;
  text-align: left;
  color: #4a5870;
}
.app-header-nav .nav-icon-notification {
  position: absolute;
  font-weight: bold;
  background: red;
  color: white;
  border-radius: 100px;
  right: 3px;
  top: 0px;
  width: 25px;
  height: 20px;
  text-align: center;
  font-size: 0.88rem;
}
.app-header-left {
  display: flex;
  align-items: center;
}
.app-header-right {
  align-items: center;
  display: flex;
  margin-left: auto;
}
.app-header-user-info {
  display: flex;
  position: relative;
  align-items: center;
}
.app-header-user-info .widget-content-container {
  text-align: right;
}
.app-header-user-info .widget-heading {
  opacity: 0.8;
  font-weight: bold;
}
.app-header-user-info .widget-subheading {
  opacity: 0.5;
  font-weight: 400;
  font-size: 0.7rem;
  text-transform: uppercase;
}
.app-header-user-info .widget-icon-user {
  font-size: 1.15rem;
  background: linear-gradient(35deg, #014089, #00336d);
  padding: 0.5rem;
  border-radius: 100%;
  color: white;
  display: inline-flex;
  font-weight: bold;
}
.app-header-user-info .dropdown {
  background: #e3e3e3;
  border-radius: 100px;
  padding: 0.25rem 0.5rem 0.25rem 0.25rem;
  margin-left: 10px;
}
.app-header-user-info .dropdown-menu {
  min-width: 20rem;
  font-size: 0.9rem;
  border: 0;
  box-shadow: #d3d3d3 0px 4px 10px;
}
.app-header-user-info .dropdown-menu a, .app-header-user-info .dropdown-menu i {
  color: #3c4b64;
}
.app-header-user-info .dropdown.dropdown-toggle {
  font-size: 1rem;
}
.app-header-divider {
  flex-basis: calc(100% + 1rem);
  height: 0;
  margin: 0.5rem 0rem;
  border-top: #d8dbe0 solid 1px;
  background: #d8dbe0;
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(26, 54, 126, 0.125);
  border-radius: 8px;
}
.card.card-sm {
  max-width: 500px;
  margin: 0 auto;
}
.card-title {
  font-size: 0.88rem;
  font-weight: bold;
  margin-bottom: 0.75rem;
}
.card-body {
  flex: 1 1 auto;
  padding: 1rem 1rem;
}
.card-body label {
  font-weight: 500;
  font-size: 10.5px;
  color: #00336d;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}
.card-body .table > thead {
  text-transform: uppercase;
}
.card-body .table > thead th {
  font-size: 10px;
  font-weight: 400;
  padding: 0.5rem 0.5rem 0.95rem 0.5rem;
}
.card-body .table > thead th a {
  text-decoration: none;
}
.card-body .form-group {
  margin-bottom: 0.25rem;
}
.card-section-title {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  margin-top: 1rem;
  font-weight: bold;
}
.card-translation {
  font-size: 0.83rem;
  opacity: 0.88;
  margin-top: 0.25rem;
  font-weight: 400;
  display: inline-block;
  margin-left: 0.5rem;
  border-left: #ddd solid 1px;
  padding-left: 0.5rem;
  font-style: italic;
}
.card .divider {
  background: #e3e3e3;
  margin: 1.15rem 0 1rem;
}
.card-header {
  padding: 0.5rem 1rem;
  margin-bottom: 0;
  background: none;
  display: flex;
  align-items: center;
}
.card-header-title {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 0;
  line-height: 1.25rem;
}
.card-header-actions {
  margin-left: auto;
}
.card-body-heading {
  font-size: 2rem;
  font-weight: 600;
}
.card-body-subheading {
  font-size: 9px;
  text-transform: uppercase;
  font-weight: 500;
}
.card.bg-primary .card-body-heading {
  color: white;
}
.card.bg-primary .card-body-subheading {
  color: white;
  opacity: 0.8;
}

.login {
  display: flex;
}
.login-brand img {
  width: auto;
  max-height: 70px;
}
.login-info-wrapper {
  margin-left: 1rem;
}
.login-info-heading {
  margin-bottom: 0.25rem;
}

.app-sidebar {
  display: flex;
  flex-direction: column;
  width: 283px;
  background: #f3f1f6;
  box-shadow: none;
  transition: 0.5s;
}
.app-sidebar.app-sidebar-dark {
  background: #00336d;
}
.app-sidebar.app-sidebar-fixed {
  position: fixed;
  top: 0;
  bottom: 0;
}
.app-sidebar-brand {
  flex: 0 0 4rem;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 2rem;
  background: #00254e;
}
.app-sidebar-brand img {
  max-height: 30px;
  width: auto;
  margin-right: 0.5rem;
}
.app-sidebar-nav {
  position: relative;
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 0 0 4rem 0;
  margin-bottom: 0;
  overflow-x: hidden;
  overflow-y: auto;
  list-style: none;
}
.app-sidebar-nav .nav-link {
  display: flex;
  align-items: center;
  padding: 0.8445rem 1rem;
  color: #ccc;
  text-decoration: none;
  white-space: inherit;
  background: transparent;
  font-size: 12.5px;
}
.app-sidebar-nav .nav-link:hover {
  background: #0c4a91;
  color: white;
}
.app-sidebar-nav .nav-link:hover .nav-icon {
  color: white;
}
.app-sidebar-nav .nav-icon {
  flex: 0 0 3rem;
  height: 1.25rem;
  font-size: 1.25rem;
  text-align: left;
  color: #ccc;
}
.app-sidebar-nav .nav-title {
  padding: 0.75rem 1rem;
  margin-top: 1rem;
  font-size: 80%;
  font-weight: 700;
  color: #e3e3e3;
  text-transform: uppercase;
  transition: height 0.15s, margin 0.15s;
  border-bottom: #2d3950 solid 1px;
}
.app-sidebar-nav .nav-group-items {
  padding: 0;
  list-style: none;
}
.app-sidebar-nav .nav-group-items .nav-link {
  padding-left: 2rem;
}
.app-sidebar-nav .nav-group-indicator {
  flex: 0 0 3rem;
  font-size: 0.88rem;
  text-align: right;
  color: #ccc;
  margin-left: auto;
}
.app-sidebar-nav .nav-group .nav-link.nav-group-toggle::after {
  display: none;
  flex: 0 12px;
  content: "";
  background-image: url(../assets/icons/chevron-down-solid.svg);
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.15s;
  height: 12px;
  margin-left: auto;
}
.app-sidebar-nav .nav-group .collapse.show {
  background: #00254e;
}
.app-sidebar-nav .nav-group #collapse_budget .nav-group-items {
  background: #00152d;
}

.app-main-wrapper {
  width: auto;
  will-change: auto;
  transition: padding 0.15s;
  background: #f3f4f6;
  margin-left: 19rem;
  transition: 0.5s ease;
}

.app-main {
  padding: 30px;
  flex: 1;
}

.app-page-title {
  padding: 30px;
  margin: -30px -30px 30px;
  position: relative;
  background: rgba(255, 255, 255, 0.45);
}
.app-page-title.dark-theme {
  background: linear-gradient(35deg, #014089, #00254e);
}
.app-page-title.dark-theme .page-title-icon i {
  color: white;
}
.app-page-title.dark-theme .page-title-heading {
  color: white;
}
.app-page-title.dark-theme .page-title-subheading {
  color: white;
  opacity: 0.6;
}
.app-page-title.light-theme {
  background: none;
}
.app-page-title .page-title-wrapper {
  position: relative;
  display: flex;
  align-content: center;
  align-items: center;
}
.app-page-title .page-title-icon {
  margin-right: 1.25rem;
}
.app-page-title .page-title-icon i {
  color: #014089;
  font-size: 3.25rem;
}
.app-page-title .page-title-heading {
  font-size: 1.5rem;
  font-weight: 600;
}
.app-page-title .page-title-subheading {
  padding: 3px 0 0;
  font-size: 0.93rem;
  font-weight: 300;
  opacity: 0.75;
}
.app-page-title .page-title-subheading--md {
  max-width: 750px;
  opacity: 0.95 !important;
}
.app-page-title .page-title-actions {
  margin-left: auto;
}
.app-page-body {
  flex: 1 1 auto;
  padding-bottom: 3rem;
}
.app-page-body .page-subheading-tabs .navbar .nav-link {
  color: #014089 !important;
  font-size: 12px;
  text-transform: uppercase;
}
.app-page-body .page-subheading-tabs .navbar .nav-link.active {
  color: #3f6ad8 !important;
  font-weight: bold;
}
.app-page-body .card-body-heading {
  font-size: 22px;
}

.datatable-actions-wrapper {
  position: relative;
  display: flex;
  align-content: center;
  align-items: center;
}
.datatable-actions-searchfilter {
  position: relative;
  display: flex;
  align-content: center;
  align-items: center;
}
.datatable-actions-sort {
  margin-left: auto;
  position: relative;
  display: flex;
  align-content: center;
  align-items: center;
}

.summary {
  font-size: 11px;
}

.pagination {
  margin-bottom: 0;
  font-size: 11px;
}
.pagination li {
  margin: 0 2px;
}
.pagination li a {
  padding: 4px 8px;
  text-decoration: none;
}
.pagination li a:hover {
  background: #014089;
  color: white;
  transition: 0.3s ease-in-out;
}
.pagination li.active a {
  background: #014089;
  color: white;
}/*# sourceMappingURL=index.css.map */