@font-face {
  font-family: "OpenSans";
  src: url("/fonts/OpenSans/OpenSans-Light.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: "OpenSans";
  src: url("/fonts/OpenSans/OpenSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "OpenSans";
  src: url("/fonts/OpenSans/OpenSans-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "OpenSans";
  src: url("/fonts/OpenSans/OpenSans-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "OpenSans";
  src: url("/fonts/OpenSans/OpenSans-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "OpenSans";
  src: url("/fonts/OpenSans/OpenSans-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
}

/* fallback */
@font-face {
  font-family: "Material Icons";
  font-style: normal;
  font-weight: 400;
  src: url("/fonts/material-icons.woff2") format("woff2");
}

.material-icons {
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
}

* {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

body {
  font: 14px "OpenSans", Arial, sans-serif !important;
  padding-left: 6rem;
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
  background-color: var(--primary-color-40);
}

body::-webkit-scrollbar,
.MuiBox-root.css-bdh8pz::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
body::-webkit-scrollbar-track,
.MuiBox-root.css-bdh8pz::-webkit-scrollbar-track {
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.1);
}
body::-webkit-scrollbar-thumb,
.MuiBox-root.css-bdh8pz::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.2);
}
body::-webkit-scrollbar-thumb:hover,
.MuiBox-root.css-bdh8pz::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.4);
}
body::-webkit-scrollbar-thumb:active,
.MuiBox-root.css-bdh8pz::-webkit-scrollbar-thumb:active {
  background: rgba(0, 0, 0, 0.9);
}

body.loaded {
  opacity: 1;
}

body.proxy {
  padding: 1rem;
}

.loader {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(255, 255, 255, 0.8);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.input-field {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.col .row {
  margin-bottom: 1rem;
}

a.link {
  text-transform: uppercase;
  text-decoration: none;
  vertical-align: middle;
  display: inline-block;
  margin-top: 9px;
}

.content-sst {
  min-height: 100vh;
  position: relative;
}

.app__container {
  padding: 0 2rem;
  margin-top: 2rem;
  position: relative;
}

footer {
  margin-top: 5rem;
  padding-bottom: 1rem;
}

footer p {
  margin: 0;
}

.footer-terms,
.footer-copy {
  font-size: 16px;
  color: var(--primary-color);
}

.footer-terms {
  padding-left: 5rem !important;
}

.footer-terms a,
.footer-copy p {
  font-size: inherit;
  color: inherit;
}

.footer-separator {
  margin: 0 1em;
  font-size: 16px;
}

.nav-container {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  z-index: 1000;
}

.nav__logo {
  position: absolute;
  z-index: 1;
  right: -45px;
  top: 60px;
  background-color: var(--white-color);
  border: 1px solid var(--border-color);
  padding: 0.25rem 0.5rem;
  font-size: 20px;
  font-weight: normal;
  color: var(--text-color);
}
.nav__logo .color1 {
  color: #f0ab00;
  font-weight: bold;
}

.nav__logo .color2 {
  color: #830051;
}

.nav-menu {
  position: relative;
  height: 100%;
  width: 6rem;
  padding: 0.75em;
  background-color: var(--primary-color);
  color: var(--white-color);
  transition: all 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  overflow: hidden;
  box-shadow: 5px 5px 3px var(--shadow-color);
}

.nav-menu__icon input {
  display: none;
}

.nav-menu__icon {
  position: relative;
}

.nav-menu__icon .menu {
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
}

.nav-menu__icon label {
  display: block;
  cursor: pointer;
  position: relative;
  width: 40px;
  height: 40px;
}

.nav-menu__icon path {
  fill: none;
  stroke: var(--white-color);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  --length: 24;
  --offset: -38;
  stroke-dasharray: var(--length) var(--total-length);
  stroke-dashoffset: var(--offset);
  transition: all 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.nav-menu__icon circle {
  fill: var(--white-color);
  opacity: 0;
}

.nav-menu__icon label:hover circle {
  opacity: 0.1;
}

.nav-menu__icon .cross input:checked + svg .line--1,
.nav-menu__icon .cross input:checked + svg .line--3 {
  --length: 22.627416998;
}
.nav-menu__icon .cross input:checked + svg .line--2 {
  --length: 0;
}

.nav-menu__icon .back input:checked + svg .line--1,
.nav-menu__icon .back input:checked + svg .line--3 {
  --length: 8.602325267;
}

.nav-menu__icon .menu .line--1,
.nav-menu__icon .menu .line--3 {
  --total-length: 126.38166809082031;
}

.nav-menu__icon .menu .line--2 {
  --total-length: 80;
}
.nav-menu__icon .menu input:checked + svg .line--1,
.nav-menu__icon .menu input:checked + svg .line--3 {
  --offset: -109.1770175568;
}

.nav-menu__icon-text {
  margin-top: 0px;
  text-align: center;
  transition: opacity 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
  font-size: 0.75rem;
  text-transform: uppercase;
}

.nav-menu.active {
  width: 25rem;
}

.nav-menu__items {
  margin-top: 3rem;
  opacity: 1;
  font-size: 1rem;
  text-transform: uppercase;
  transition: opacity 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
  overflow: hidden;
}

.active .nav-menu__items {
  opacity: 1;
  pointer-events: unset;
}

.nav-menu__item {
  padding: 0 0.5em;
  white-space: nowrap;
  transition: padding 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.active .nav-menu__item {
  padding: 0 2em;
}

.nav-menu__item .text {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.active .nav-menu__item .text {
  opacity: 1;
}

.nav-menu__item a {
  padding: 1.5em 1em;
  color: var(--white-color);
  text-align: center;
  display: flex;
  justify-content: left;
  align-items: center;
  line-height: 0;
  transition: padding 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.nav-menu__item a:hover {
  opacity: 0.8;
}

.nav-menu__item a .icon {
  margin-right: 1.5rem;
  color: var(---white-color);
}

.nav-menu__item a .icon i {
  font-size: 26px;
}

.nav-menu__item:last-child a {
  border-bottom: none;
}

.welcome__content.page {
  padding: 0 2rem;
}

.welcome__content.page .welcome__title {
  font-size: 32px;
  line-height: 39px;
  color: var(--primary-color);
  font-weight: bold;
}

.welcome__content.page .welcome__desc {
  font-size: 16px;
  line-height: 24px;
  color: var(--primary-color);
}

.header {
  padding: 1rem 1.5rem;
}

.header .row {
  margin-bottom: 0;
}

.header__app-info {
  position: relative;
  top: 0.5rem;
  font-size: 1.2rem;
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
  display: none;
}

.header__app-info span {
  font-weight: 100;
}

.header__sticky .header__app-info {
  opacity: 1;
}

.header__app-name sup {
  font-size: 0.5em;
  position: relative;
  top: -10px;
  left: 0px;
}

.header__text {
  font-size: 0.65rem;
  margin: 0 0.35rem;
  text-transform: uppercase;
}

.header__actions {
  display: flex;
  align-items: center;
  width: 100%;
  flex-direction: row-reverse;
}

.header__themes {
  margin-right: 1.5rem;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.header__user {
  background-color: var(--white-color);
  border: 1px solid var(--border-color);
  border-radius: 40px;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  line-height: 0;
  cursor: default;
  white-space: nowrap;
}

.header__user .user__text {
  margin-right: 0.5rem;
  font-size: 14px;
  color: var(--text-color-2);
}

.header__user .user__icon i {
  font-size: 28px;
  color: var(--primary-color);
}

.nav__back-container {
  margin-top: 2rem;
}

.nav__back-btn {
  padding: 0 0.75rem;
  color: var(--primary-color);
}

.nav__back-btn span {
  position: relative;
  top: -5px;
  margin-left: 5px;
}

.intro__container {
  padding: 2rem;
}

.intro__content {
  padding: 2rem;
}

.intro__title {
  font-weight: bold;
  font-size: 36px;
  line-height: 44px;
  color: var(--primary-color);
  margin: 0;
}

.intro__desc {
  font-size: 22px;
  line-height: 27px;
  font-weight: bold;
  margin: 0;
  color: var(--primary-color);
}

.landing__container {
  margin-top: 1rem;
}

.landing__login {
  padding: 2rem 4rem;
}

.split-border-right {
  border-right: 1px solid var(--border-color);
}

.split-border-left {
  border-right: 1px solid var(--border-color);
}

.landing__content {
  color: var(--primary-color);
  font-size: 16px;
  padding: 1rem 2rem;
}

.landing__content strong {
  font-weight: bold;
}

.login__container {
  background-color: var(--white-color);
  border: 1px solid var(--border-color);
  padding: 1rem;
}

.login__container .sso__text {
  margin: 0;
  font-size: 20px;
  line-height: 26px;
  font-weight: bold;
  color: var(--primary-color);
}

.login__container .sso__btn {
  background-color: var(--primary-color);
  margin-top: 1.5rem;
  text-transform: none;
  color: var(--white-color);
}

.app__content {
  margin-top: 1rem;
}

/* Error Page - Start */

.error-page__container {
  padding: 1rem;
}

.error-page__content {
}

.error-page__image {
  width: 100%;
}

.error-page__title {
  font-weight: 900;
}

.error-page__message {
  font-weight: 900;
  font-size: 2rem;
  text-transform: uppercase;
}

.error-page__link {
  margin-top: 1rem;
}

/* Error Page - End */

@media only screen and (max-width: 768px) {
  body {
    padding-left: 4rem;
  }
  .nav-menu {
    width: 4rem;
  }
  .nav-menu__item {
    padding: 0;
  }
  .nav-menu:not(.active) .nav-menu__item a {
    padding-left: 0.5em;
    padding-right: 0.5em;
    text-align: center;
  }
  .header__logo-img {
    width: 4em;
  }
  .intro__container {
    padding: 1rem;
  }
  .intro__title {
    font-size: 1.5rem;
  }
  .intro__content {
    padding: 1em;
    position: relative;
  }
  .intro__desc {
    font-size: 1.2rem;
  }

  .register__title {
    font-size: 1.5rem;
    margin-top: 0;
    line-height: 2rem;
  }

  .register__content {
    padding: 0;
  }
  .register__bg {
    position: relative;
  }
  .register__bg-image {
    width: 100%;
    margin-top: 0;
  }

  .page__bg {
    position: relative;
    width: 100%;
  }

  .welcome__title strong {
    display: block;
  }

  .app__container {
    padding: 0 1rem;
    margin-top: 2rem;
  }

  .footer-terms,
  .footer-copy {
    margin-top: 1rem;
    text-align: center;
  }
}

.documentation-links {
  padding: 2rem 1rem;
}

.documentation-links .documentation-title {
  margin: 1rem 0;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-color);
}

.documentation-links .documentation-group {
  padding: 1rem 0;
  border-bottom: 1px solid var(--primary-color);
}

.documentation-links .documentation-group:last-child {
  border-bottom: none;
}

.documentation-links .group-title {
  margin-bottom: 0.75rem;
  font-size: 1rem;
  font-weight: bold;
  color: var(--primary-color);
  font-style: italic;
}

.documentation-links .doc-link-wrap {
  margin-bottom: 0.5rem;
}

.documentation-links .doc-link-wrap:last-child {
  margin-bottom: 0;
}

.documentation-links .doc-link {
  font-size: 1rem;
  font-style: italic;
  color: var(--primary-color);
}

.documentation-links .doc-link:hover {
  text-decoration: underline;
}

.css-1u3bzj6-MuiFormControl-root-MuiTextField-root,
.css-q8hpuo-MuiFormControl-root {
  width: 100%;
  font-size: 16px;
}

.date-overrides {
  width: 100%;
}

.date-overrides .MuiInputLabel-outlined {
  left: -14px;
}

.date-overrides .MuiOutlinedInput-notchedOutline {
  border: 0;
  border-bottom: 1px solid;
  border-radius: 0;
}

.date-overrides .MuiInputBase-root {
  margin-top: 16px;
}

.date-overrides input {
  padding: 4px 0px 5px;
}

/* Angular Overrides */

.mat-flat-button.mat-primary,
.mat-raised-button.mat-primary,
.mat-fab.mat-primary,
.mat-mini-fab.mat-primary {
  background-color: var(--primary-color) !important;
  color: var(--white-color) !important;
}

.mat-step-header .mat-step-icon-selected,
.mat-step-header .mat-step-icon-state-done,
.mat-step-header .mat-step-icon-state-edit {
  background-color: var(--primary-color) !important;
  color: var(--white-color) !important;
}

.mat-primary .mat-option.mat-selected:not(.mat-option-disabled) {
  color: var(--primary-color) !important;
}

.mat-form-field.mat-focused.mat-primary .mat-select-arrow {
  color: var(--primary-color) !important;
}

.mat-form-field.mat-focused .mat-form-field-ripple {
  background-color: var(--primary-color) !important;
}

.mat-progress-bar-fill:after {
  background-color: var(--primary-color) !important;
}

.mat-progress-bar-buffer {
  background-color: var(--primary-color-40) !important;
}

.theme-primary {
  background-color: var(--primary-color) !important;
  color: var(--white-color);
}

.theme-primary-text {
  color: var(--primary-color);
}
