:root {
  --primary: #005289;
  --primary-duo: rgba(0, 82, 137, 0.15);
  --success: #00894b;
  --success-duo: rgba(0, 137, 75, 0.15);
  --warning: #ef6c00;
  --warning-duo: rgba(239, 108, 0, 0.15);
  --danger: #88162d;
  --danger-duo: rgba(136, 22, 45, 0.15);
  --gray_100: #f8f9fa;
  --gray_200: #ededed;
  --gray_300: #e1e1e1;
  --gray_400: #dadada;
  --gray_500: #b7bbbd;
  --gray_600: #76787c;
  --gray_700: #4d4f55;
  --gray_800: #393c40;
  --gray_900: #26262b;
  --gray_1000: #111215;
  --radius: 0.5em;
  --radius-form: 0.5em;
}

body {
  font-family: "Inter", Arial, sans-serif;
  font-size: 15.2px;
  font-weight: 400;
  color: #26262b;
  background-color: #ffffff;
}
body.no-scroll {
  overflow-y: hidden;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  color: #111215;
  font-weight: 700;
}

h1, .h1 {
  font-size: calc(1.375rem + 1.5vw - 0.225rem);
}

h2, .h2 {
  font-size: calc(1.325rem + 0.9vw - 0.225rem);
}

h3, .h3 {
  font-size: calc(1.3rem + 0.6vw - 0.225rem);
}

h4, .h4 {
  font-size: calc(1.275rem + 0.3vw - 0.225rem);
}

h5, .h5 {
  font-size: -223.75rem;
}

h6, .h6 {
  font-size: -224rem;
}

::selection {
  background-color: rgba(0, 82, 137, 0.15);
}

.table select {
  min-width: max-content;
}

.wrapper {
  display: grid;
  row-gap: 0;
  column-gap: 0;
  grid-template-columns: 15rem calc(100% - 15rem);
  grid-template-rows: 3.5rem auto min-content;
  grid-template-areas: "header   header" "sidebar  main" "sidebar  footer";
  height: 100vh;
  width: 100vw;
}
.wrapper:not(:has(.sidebar)) {
  grid-template-columns: 100%;
  grid-template-areas: "header" "main" "footer";
}

.main {
  grid-area: main;
  padding: 1.75rem 2rem;
}

@media (max-width: 767.98px) {
  .wrapper {
    grid-template-columns: 2.75rem calc(100% - 2.75rem);
  }
  .main {
    padding: 1rem 0.5rem;
  }
}
.header {
  grid-area: header;
  display: flex;
  align-items: center;
  background-color: #fafafa;
  border-bottom: solid 1px #e1e1e1;
  font-size: 0.95em;
  z-index: 990;
}
.header .container,
.header .container-fluid {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 100%;
  width: 100%;
}
.header .container {
  padding-left: 1rem;
  padding-right: 1rem;
}
.header.dark {
  background-color: #001523;
  color: #f8f9fa;
  border-bottom: none;
}
.header.dark .nav .item {
  color: #f8f9fa;
}
.header.dark .nav .item:hover {
  border-bottom: solid 1.5px #ffffff;
}
.header.dark .nav .item.active {
  border-bottom: solid 1.5px #ffffff;
}
.header .logo {
  height: 2rem;
}
.header .nav {
  display: flex;
  align-items: center;
  height: 100%;
  column-gap: 1.5rem;
}
.header .nav .item {
  display: flex;
  align-items: center;
  height: 100%;
  color: #393c40;
  text-decoration: none;
  font-weight: 500;
  border-top: solid 1.5px transparent;
  border-bottom: solid 1.5px transparent;
}
.header .nav .item:hover {
  border-bottom: solid 1.5px var(--gray_800);
}
.header .nav .item.active {
  border-bottom: solid 1.5px var(--gray_800);
}

.mobileMenu {
  display: flex;
  position: fixed;
  inset: 0;
  z-index: 800;
  padding: 30px 30px;
  justify-content: center;
  transition: opacity ease 0.3s;
  transition-delay: 0.1s;
  opacity: 1;
}
.mobileMenu.hide {
  display: none;
}
.mobileMenu.hideOpacity {
  opacity: 0;
}
.mobileMenu .mobileMenu__content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
}
.mobileMenu .mobileMenu__content .item {
  text-decoration: none;
  color: #111215;
  cursor: pointer;
  padding: 0.6em 0;
  font-size: 2em;
  font-weight: 600;
  opacity: 0;
  filter: blur(2px);
  transform: translateX(-5%);
  transition: 0.8s ease all;
}
.mobileMenu .mobileMenu__content .item.show {
  opacity: 1;
  filter: blur(0);
  transform: translateX(0);
}
.mobileMenu .mobileMenu__content .item:nth-child(2) {
  transition-delay: 0.15s;
}
.mobileMenu .mobileMenu__content .item:nth-child(3) {
  transition-delay: 0.3s;
}
.mobileMenu .mobileMenu__content .item:nth-child(4) {
  transition-delay: 0.45s;
}
.mobileMenu .mobileMenu__content .item:nth-child(5) {
  transition-delay: 0.6s;
}
.mobileMenu .mobileMenu__content .item:nth-child(6) {
  transition-delay: 0.75s;
}
.mobileMenu .mobileMenu__content .item:nth-child(8) {
  transition-delay: 1s;
}
.mobileMenu .mobileMenu__content .item:nth-child(9) {
  transition-delay: 1.15s;
}
.mobileMenu .mobileMenu__content .item:nth-child(10) {
  transition-delay: 1.3s;
}

.mobileMenuOverlay {
  content: "";
  position: fixed;
  inset: 0;
  backdrop-filter: blur(50px) saturate(30%);
  -webkit-backdrop-filter: blur(50px) saturate(30%);
  opacity: 1;
  transition: opacity 0.3s ease;
  transition-delay: 0.1s;
  z-index: 790;
  display: block;
}
.mobileMenuOverlay.hide {
  display: none;
}
.mobileMenuOverlay.hideOpacity {
  opacity: 0;
}

.mobileMenuToggle {
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.mobileMenuToggle .mobileMenuToggle__content {
  transition: transform 0.5s;
}
.mobileMenuToggle .mobileMenuToggle__content span {
  border-top: 2px solid;
  display: block;
  transition: margin 0.5s, transform 0.5s;
  width: 30px;
}
.mobileMenuToggle .mobileMenuToggle__content span:nth-child(2) {
  margin: 6px 0;
}
.mobileMenuToggle .mobileMenuToggle__content.toggle {
  padding: 15px 0;
  transform: rotate(180deg);
}
.mobileMenuToggle .mobileMenuToggle__content.toggle span:nth-child(1) {
  transform: rotate(45deg);
}
.mobileMenuToggle .mobileMenuToggle__content.toggle span:nth-child(2) {
  margin: -2px 0;
  opacity: 0;
}
.mobileMenuToggle .mobileMenuToggle__content.toggle span:nth-child(3) {
  transform: rotate(-45deg);
}

.header .mobileMenuToggle .mobileMenu__content span {
  border-top-color: #ffffff;
}
.header.dark .mobileMenuToggle .mobileMenu__content span {
  border-top-color: #000000;
}

.sidebar {
  grid-area: sidebar;
  background-color: #fafafa;
  overflow-y: auto;
  overflow-x: hidden;
}
.sidebar .nav {
  display: flex;
  flex-flow: column;
}
.sidebar .nav .title {
  font-weight: 800;
  font-size: 1.05em;
  padding: 1.5rem 1rem;
  display: block;
  line-height: 1.2;
  word-wrap: break-word;
  hyphens: auto;
}
.sidebar .nav .item {
  display: block;
  width: 100%;
  padding: 0.8rem 1rem;
  background-color: #f6f6f6;
  color: #26262b;
  font-weight: 500;
  font-size: 0.95em;
  text-decoration: none;
  border-top: #ededed 1px solid;
  border-bottom: #ededed 1px solid;
}
.sidebar .nav .item:hover {
  background-color: #efefef;
}
.sidebar .nav .item.active {
  background-color: #ebebeb;
}
.sidebar .nav .item i {
  width: 25px;
}
.sidebar .nav .nav-subsection {
  display: flex;
  flex-flow: column;
  width: 100%;
}
.sidebar .nav .nav-subsection .item {
  padding: 0.6rem 1rem 0.6rem 1.6rem;
}
@media (max-width: 767.98px) {
  .sidebar .title {
    display: none !important;
  }
  .sidebar .item {
    padding: 0.6rem 0.2rem !important;
    font-size: 1.1em !important;
    text-align: center;
  }
  .sidebar .item span {
    display: none;
  }
  .sidebar .nav-subsection .item {
    padding: 0.6rem 0.2rem !important;
  }
}

.footer {
  grid-area: footer;
  padding: 0.75rem 2rem;
  font-size: 0.8rem;
  color: #4d4f55;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.footer a {
  color: #4d4f55;
}
@media (max-width: 575.98px) {
  .footer {
    flex-flow: column;
    gap: 0.6rem;
  }
}

.authPage {
  min-width: 350px;
}
.authPage .authBox {
  padding: 1em 2em 1em 2em;
  background-color: #fafafa;
  border-radius: 0.2em;
}

.timeline {
  display: flex;
  flex-flow: row;
  align-items: start;
}
.timeline .item {
  border-radius: 0.5em;
  border: 1px solid #005289;
  background-color: rgba(0, 82, 137, 0.15);
  padding: 1em 1.1em;
  position: relative;
  display: flex;
  flex-flow: row;
  gap: 0.75em;
  width: 100%;
}
.timeline .item:not(:last-child) {
  margin-right: 1em;
}
@media (max-width: 575.98px) {
  .timeline .item:not(:last-child) {
    margin-right: 0;
    margin-bottom: 1em;
  }
}
.timeline .item:not(:last-child)::after {
  display: block;
  content: "";
  background-color: #005289;
  height: 1px;
  width: calc(1em + 1px);
  position: absolute;
  top: 50%;
  right: calc(-1em - 1.5px);
}
@media (max-width: 575.98px) {
  .timeline .item:not(:last-child)::after {
    height: calc(1em + 1px);
    width: 1px;
    top: unset;
    bottom: calc(-1em - 1.5px);
    right: 50%;
  }
}
.timeline .item .icon {
  font-size: 1rem;
  background-color: var(--primary);
  color: white;
  border-radius: 100%;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.timeline .item .name {
  font-weight: 600;
  font-size: 1.2rem;
  min-height: 2.5rem;
  display: flex;
  align-items: center;
}
.timeline .item .datetime {
  color: #4d4f55;
  font-weight: 300;
  margin-bottom: 0.5em;
}
.timeline .item .description {
  color: #393c40;
}
@media (max-width: 767.98px) {
  .timeline .item {
    flex-flow: column;
  }
}
@media (max-width: 575.98px) {
  .timeline {
    flex-flow: column;
  }
}

.callout {
  background-color: rgba(0, 82, 137, 0.15);
  border-radius: 0.2em;
  border: 1px solid #005289;
  padding: 0.8rem 1.4rem;
}
.callout strong {
  display: block;
}
.callout.callout-primary {
  background-color: rgba(0, 82, 137, 0.15);
  border-color: #005289;
}
.callout.callout-success {
  background-color: rgba(0, 137, 75, 0.15);
  border-color: #00894b;
}
.callout.callout-warning {
  background-color: rgba(239, 108, 0, 0.15);
  border-color: #ef6c00;
}
.callout.callout-danger {
  background-color: rgba(136, 22, 45, 0.15);
  border-color: #88162d;
}

#alertMessages {
  position: fixed;
  top: 66px;
  right: 10px;
  width: 100%;
  max-width: 400px;
  z-index: 980;
  display: flex;
  flex-flow: column;
  gap: 0.5rem;
}

.alert {
  padding: 1em 1.2em;
  background-color: #005289;
  color: white;
  border-color: #005289;
  border-radius: 0.2em;
}

.numberDisplay {
  display: flex;
  flex-flow: column;
}

.numberDisplay-title {
  margin-bottom: 0.25rem;
}

.numberDisplay-number {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1;
}

.errorPage {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}
.errorPage .box {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.errorPage .box .code {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
}
.errorPage .box .heading {
  font-weight: 500;
}
.errorPage .box .btn {
  margin-top: 1rem;
}

.container:has(.errorPage),
.container-fluid:has(.errorPage),
.container-sm:has(.errorPage),
.container-md:has(.errorPage),
.container-lg:has(.errorPage),
.container-xl:has(.errorPage),
.container-xxl:has(.errorPage) {
  height: 100%;
}

.card {
  border: #ededed 2px solid;
}
.card .card-header {
  border-bottom: #ededed 2px solid;
}

.sixDigitInput {
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25em;
}
.sixDigitInput label {
  border: 0 !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}
.sixDigitInput input {
  border: 1px solid var(--gray_500);
  border-radius: 0.25rem;
  width: 1.75em;
  height: 2.5em;
  text-align: center;
}
.sixDigitInput #verifyEmail_code {
  display: none;
}

.footer {
  grid-area: footer;
  padding: 0.75rem 2rem;
  font-size: 0.8rem;
  color: #4d4f55;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.footer a {
  color: #4d4f55;
}
@media (max-width: 575.98px) {
  .footer {
    flex-flow: column;
    gap: 0.6rem;
  }
}

/*# sourceMappingURL=main.css.map */
