﻿@charset "UTF-8";
html, body {
  font-family: HelveticaNeue, "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin: 0px;
  padding: 0px;
  font-size: 14px;
  height: 100%;
  width: 100%;
}

.rz-inputtext {
  font-size: 14.2px;
}

.rz-tabview-nav li a, .rz-tabview-nav li a:not([href]):not([class]) {
  /* padding: 2px !important;
  word-break:break-word !important;*/
  word-break: break-word !important;
  padding: 5px;
}

.rz-tabview-nav {
  list-style: none;
  display: flex !important;
  padding: 1px;
  margin: 1px;
  /*height: 25% !important;*/
}

rz-tabview-title {
  font-size: 7px !important;
}

.login .header {
  position: relative;
  margin: 0px;
  padding: 0px;
  background: #4D9CC8;
  width: 100%;
}

.header {
  background-color: var(--rz-header-background-color);
  min-height: var(--rz-header-min-height);
  border-bottom: var(--rz-header-border);
  color: var(--rz-header-color);
  box-shadow: var(--rz-header-shadow);
}

.app {
  height: 100%;
  width: 100%;
  position: relative;
  display: flex;
}

:root {
  --appbar-height: 45px;
  --toolbar-height: 35px;
  --sidebar-width: 235px;
  --footbar-height: 30px;
  --navitem-height: 3rem ;
}

:root {
  --mdc-theme-primary: #4D9CC8;
  --mdc-theme-secondary: #4D9CC8;
  --mdc-theme-on-primary: #fff;
}

::-webkit-scrollbar {
  width: 13px;
  background-color: darkgray;
}

::-webkit-scrollbar-thumb {
  background: var(--mdc-theme-primary);
  border: 3px solid rgba(0, 0, 0, 0);
  background-clip: padding-box;
  border-radius: 25px;
}

::-webkit-scrollbar-corner {
  background-color: darkgray;
}

#loading-container {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

#loading-circle {
  border: 16px solid darkgray;
  border-top: 16px solid;
  border-top-color: var(--mdc-theme-primary);
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.legibility {
  text-align: center;
  margin-left: 20px;
  margin-right: 20px;
}

.legibility div {
  text-align: left;
  margin: 0 auto;
  max-width: 600px;
}

.legibilityLogoDiv img {
  margin: 0 auto;
}

.legibilityLogo {
  margin: 0 auto !important;
  height: 125px;
  margin-left: 50px;
  padding: 5px;
}

.legibilityLogoDiv {
  width: 100%;
  text-align: center;
}

.legibilityLogoDivLargeLogo {
  background-color: #333;
  height: 75px;
  padding: 5px;
  border-radius: 5px;
  margin-top: 50px;
}

.legibilityBrandedImages {
  margin-top: 50px;
  margin-right: 50px;
}

img {
  margin-right: 50px;
}

.blink {
  animation: blinker 5s linear infinite;
  color: red;
  font-weight: 900;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}
#blazor-error-ui {
  z-index: 9999;
  display: none;
  background: #fff;
  margin: 0 auto;
  padding: 10px 20px;
  text-align: center;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19) !important;
}

#blazor-error-ui::before {
  margin: auto;
}

#blazor-error-ui .dismiss {
  cursor: pointer;
}

.mat-icon {
  outline: 0 !important;
  border: 0 !important;
  box-shadow: none !important;
  margin-top: -5px;
  vertical-align: middle;
}

.mat-icon.small {
  height: 15px;
}

.mat-icon.medium {
  height: 22px;
}

.mat-icon-link {
  color: white;
  outline: 0 !important;
  border: 0 !important;
  box-shadow: none !important;
  margin: 3px 6px;
}

.mat-button {
  height: 27px;
}

.mat-button-left {
  margin-left: 5px;
  height: 27px;
}

.mat-button-right {
  margin-right: 5px;
  height: 27px;
}

.mdc-list-item {
  height: 30px;
}

.mdc-select__anchor {
  height: 40px;
  width: 100%;
}

.mdc-select__selected-text {
  min-width: 100px;
  height: 40px;
}

.mdc-select__dropdown-icon {
  bottom: 8px;
}

.mdc-select .mdc-floating-label {
  font-size: 0.8rem;
  font-weight: 600;
}

.mdc-linear-progress__bar-inner {
  border-color: green;
}

#okta-sign-in {
  margin: 0px auto 8px;
}

#okta-sign-in.auth-container.main-container {
  background-color: #E9EEEB;
  border-color: #ddd #ddd #d8d8d8;
  box-shadow: 0 2px 0 rgba(175, 175, 175, 0.12);
}

.fill-remaining-space {
  flex: 1 1 auto;
}

.progressbar {
  position: fixed;
  z-index: 8999;
}

.appbar {
  position: fixed;
  background-color: var(--mdc-theme-primary);
  color: var(--mdc-theme-on-primary);
  z-index: 9998;
  padding: 0px 0px 0px 10px;
  height: var(--appbar-height);
  display: flex;
  width: 100%;
  align-items: center;
  overflow: visible;
  font-weight: bold;
}

.mdc-dialog {
  z-index: 10000;
}

.appbar .logo-large {
  height: var(--toolbar-height);
  margin: 0px 0px 0px 0px;
  text-decoration: none;
  color: white;
}

.appbar .logo-small {
  height: var(--toolbar-height);
  margin-right: 40px;
}

.appbar .fedramp-logo-small {
  height: var(--toolbar-height);
  margin-right: 5px;
}

.footbar {
  position: fixed;
  left: 0;
  bottom: 0;
  border-top: solid 1px #AAA;
  background-color: lightgray;
  z-index: 9997;
  padding: 0px 0px 0px 10px;
  height: var(--footbar-height);
  display: flex;
  width: 100%;
  align-items: center;
  overflow: hidden;
  font-weight: bold;
}

.toolbar {
  color: var(--mdc-theme-primary);
  padding: 0px 0px 0px 5px;
  height: var(--toolbar-height);
  display: flex;
  align-items: center;
  overflow: hidden;
  font-weight: bold;
  width: 100%;
}

.toolbar.half {
  height: calc(var(--toolbar-height) / 2);
}

.toolbar .title {
  font-size: 1em;
}

.toolbar .field {
  height: 2.1rem;
  margin: 0px 2px;
  font-size: 1.15em;
  font-weight: normal;
}

.toolbar .field.clear {
  background-color: #fff;
}

.toolbar .field.xsmall {
  width: 75px;
}

.toolbar .field.small {
  width: 100px;
}

.toolbar .field.medium {
  width: 125px;
}

.toolbar .field.large {
  width: 150px;
}

.toolbar .field.xlarge {
  width: 175px;
}

.toolbar .field.xxlarge {
  width: 200px;
}

ul.breadcrumb {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

ul.breadcrumb li + li:before {
  margin-left: -5px;
  padding-right: 5px;
  content: "›";
}

ul.breadcrumb li,
ul.breadcrumb li a {
  padding: 5px;
  text-transform: uppercase;
  text-shadow: none;
  text-decoration: none;
  display: inline;
  color: #fff;
}

ul.breadcrumb li a:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  text-decoration: none;
}

.drawer {
  position: fixed;
  top: var(--appbar-height);
  width: 100%;
  height: calc(100% - var(--appbar-height) - var(--footbar-height));
}

.drawer .sidebar {
  float: left;
  height: 100%;
  width: var(--sidebar-width);
  overflow-y: auto;
}

.drawer .nav-menu {
  height: 100%;
}

.dialog .header {
  background-color: var(--mdc-theme-primary);
  color: var(--mdc-theme-on-primary);
  padding: 0px;
  height: var(--toolbar-height);
  display: flex;
  align-items: center;
  overflow: hidden;
  font-weight: bold;
  width: 100%;
}

.dialog .header .title {
  margin-left: 10px;
  font-size: 0.89em;
}

.dialog .content {
  padding: 10px 0px 10px 8px;
}

.dialog .content.x300 {
  max-width: 300px;
}

.dialog .content.x400 {
  max-width: 400px;
}

.dialog .content.x500 {
  max-width: 500px;
}

.dialog .content.x600 {
  max-width: 600px;
}

.dialog .content.x700 {
  max-width: 700px;
}

.dialog .content.x900 {
  max-width: 900px;
}

.dialog .content.x1200 {
  max-width: 1200px;
}

.dialog .actions {
  padding: 6px 8px 8px;
  height: calc(var(--toolbar-height) + 6px);
  font-weight: bold;
  border-top: 1px solid silver;
  background-color: aliceblue;
}

.page {
  height: 100%;
  overflow-y: auto;
}

.page .content {
  height: 100%;
}

.page .content article {
  padding: 10px;
}

.page .content .form {
  height: 100%;
}

.page .content .form .tabs {
  height: calc(100% - var(--toolbar-height));
}

.page .content .form .tabs.notoptoolbar {
  height: 100%;
}

.page .content .form .tabs.noradzentabs {
  margin: 15px;
}

.page .content .form .tabs.extrahalftoolbar {
  height: calc(100% - var(--toolbar-height) / 2);
}

.page .content .form .tabs .tab {
  margin: -5px -15px -20px -8px;
  display: flex;
  flex-wrap: wrap;
}

.page .content .form .tabs .tab.nomargin {
  margin: -17px -17px -17px -17px;
}

.page .content .form .break {
  flex-basis: 100%;
  height: 0;
}

.page .content .form .break.none {
  display: none;
}

.page .content .form .form-field {
  height: 3rem;
  width: calc(100% - 8px);
  margin: 0px 8px 10px 0px;
}

.page .content .form .form-field.clear {
  background-color: #fff;
}

.page .content .form .form-field.small {
  height: 2.1rem;
}

.page .content .form .form-field.x6 {
  width: calc(16.6666666667% - 8px);
}

.page .content .form .form-field.x5 {
  width: calc(20% - 8px);
}

.page .content .form .form-field.x4 {
  width: calc(25% - 8px);
}

.page .content .form .form-field.x3 {
  width: calc(33.3333333333% - 8px);
}

.page .content .form .form-field.x3.y2 {
  height: 6rem;
}

.page .content .form .form-field.x3.y3 {
  height: 9rem;
}

.page .content .form .form-field.x3.y4 {
  height: 9rem;
}

.page .content .form .form-field.x2 {
  width: calc(50% - 8px);
}

.page .content .form .form-field.x2.y2 {
  height: 6rem;
}

.page .content .form .form-field.x2.y3 {
  height: 9rem;
}

.page .content .form .form-field.x2.y4 {
  height: 9rem;
}

.page .content .form .form-field.x1 {
  width: calc(100% - 8px);
}

.page .content .form .form-field.x1.y2 {
  height: 6rem;
}

.page .content .form .form-field.x1.y3 {
  height: 9rem;
}

.page .content .form .form-field.x1.y4 {
  height: 12rem;
}

.page .content .form .form-field.x1.y5 {
  height: 15rem;
}

.page .content .form .form-field.x1.y6 {
  height: 18rem;
}

.rz-tabview-title {
  font-weight: normal;
  font-size: 11.6px !important;
}

.rz-tabview-nav {
  overflow-wrap: break-word;
  max-height: max-content;
}

.rz-tabview-nav li {
  border: solid 1px #ddd;
}

.rz-tabview-nav li a {
  padding: 5px;
}

.ui-tabview-nav li {
  border: solid 1px #ddd;
}

.ui-tabview-nav li a {
  padding: 5px;
}

.split-js {
  height: calc(100% - var(--toolbar-height));
}

.split-js.none {
  height: 100%;
}

.split-js .top {
  overflow-y: auto;
}

.split-js .bottom {
  overflow-y: auto;
}

.gutter {
  background-color: #eee;
  background-repeat: no-repeat;
  background-position: 50%;
}

.gutter.gutter-horizontal {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAeCAYAAADkftS9AAAAIklEQVQoU2M4c+bMfxAGAgYYmwGrIIiDjrELjpo5aiZeMwF+yNnOs5KSvgAAAABJRU5ErkJggg==");
  cursor: col-resize;
}

.gutter.gutter-vertical {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAFAQMAAABo7865AAAABlBMVEVHcEzMzMzyAv2sAAAAAXRSTlMAQObYZgAAABBJREFUeF5jOAMEEAIEEFwAn3kMwcB6I2AAAAAASUVORK5CYII=");
  cursor: row-resize;
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (max-width: 1199.98px) {
  .page .content .form .form-field.x5, .page .content .form .form-field.x6 {
    width: calc(20% - 8px);
  }
  .page .content .form .form-field.x3, .page .content .form .form-field.x4 {
    width: calc(33.3333333333% - 8px);
  }
}
/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
  .page .content .form .tabs {
    word-break: break-all;
  }
  .page .content .form .form-field.x5, .page .content .form .form-field.x6 {
    width: calc(33.3333333333% - 8px);
  }
  .page .content .form .form-field.x3, .page .content .form .form-field.x4 {
    width: calc(50% - 8px);
  }
  .page .content .form .form-field.x2 {
    width: calc(100% - 8px);
  }
  .page .content .form .form-field.x2.y2 {
    width: calc(100% - 8px);
  }
  .page .content .form .form-field.x2.y3 {
    width: calc(100% - 8px);
  }
}
/* Small devices (landscape phones, less than 768px)*/
@media (max-width: 767.98px) {
  .appbar .logo-small {
    margin-right: 5px;
  }
  .appbar .logo-large {
    display: none;
  }
  .appbar .fedramp-logo-small {
    display: none;
  }
  ul.breadcrumb {
    display: none;
  }
  .page .content .form .form-field.x5, .page .content .form .form-field.x6 {
    width: calc(50% - 8px);
  }
  .legacy_page .main .loginLeft {
    border-right: none;
  }
  .legacy_page .main .loginRight {
    display: none;
  }
}
/* Extra small devices (portrait phones, less than 600px) */
@media (max-width: 599.98px) {
  .page .content .form .form-field {
    margin-right: 0px;
  }
  .page .content .form .form-field.x4, .page .content .form .form-field.x5, .page .content .form .form-field.x6 {
    width: calc(100% - 8px);
  }
  .legacy_page .main .loginLeft {
    border-right: none;
  }
  .legacy_page .main .loginRight {
    display: none;
  }
}
