body {
  margin: 0;
  padding: 0;
}

.splash-screen {
  position: absolute;
  z-index: 1000;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-family: Helvetica, 'sans-serif';
  background-color: #f2f3f8;
  color: #5E6278;
  line-height: 1;
  font-size: 14px;
  font-weight: 400;
}

.splash-screen span {
  color: #5E6278;
  transition: none !important;
  text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
}

.splash-screen img {
  margin-left: calc(100vw - 100%);
  margin-bottom: 30px;
  height: 30px !important;
}

[data-bs-theme="dark"] .splash-screen {
  background-color: #151521;
  color: #92929F;
}
[data-bs-theme="system"] .splash-screen {
  background-color: #fe5000;
  color: #92929F;
}

[data-bs-theme="dark"] .splash-screen span {
  color: #92929F;
}
[data-bs-theme="system"] .splash-screen span {
  color: #fff;
}


/* // Manu Custom CSS // */

.nav-line-tabs_custom .nav-tabs{
 background-color:var(--bs-body-bg);
}

.nav-line-tabs_custom .nav-item .nav-link {
  color: #a1a5b7;
  border: 0;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease;
  padding: 1.25rem 0;
  margin: 0 1rem;
  font-size: var(--bs-nav-link-font-size);
  font-weight: var(--bs-nav-link-font-weight)
}
.nav-line-tabs_custom .nav-item .nav-link.active {
  transition: color 0.2s ease;
  color:var(--bs-text-primary) !important;
}
.nav-line-tabs_custom .nav-item .nav-link.active, 
.nav-line-tabs_custom .nav-item .nav-link:hover:not(.disabled) {
  background-color: transparent;
  border: 0;
  border-bottom: 2px solid var(--bs-primary);
  transition: color 0.2s ease;
}
.nav-line-tabs_custom .tab-content{
  width: 100%;
  min-height: 300px;
  /* height: auto; */
  overflow: auto;
}
.nav-line-tabs_custom .nav-justified .nav-item, .nav-justified>.nav-link {
  flex-basis: auto;
  flex-grow: 0;
}

