/* Use these variables for the rest of the application's colors */
/* header */
/* Blue Grey */
/* Green Yellow Red */
/* Button */
/* sidebar */
/* login / loader */
/*
	Here we can set the colors of the light and dark theme
*/
/* Light theme */
/* Header */
/* End light theme */
/* Dark theme */
/* Header */
/* End dark theme */
@font-face {
  font-family: "Roboto-Bold";
  src: url("/assets/fonts/Roboto-Bold.ttf");
}
@font-face {
  font-family: "Roboto-Medium";
  src: url("/assets/fonts/Roboto-Medium.ttf");
}
@font-face {
  font-family: "Roboto-Regular";
  src: url("/assets/fonts/Roboto-Regular.ttf");
}
@font-face {
  font-family: "Font-Awesome-Free-Regular";
  src: url("/assets/fonts/fa-regular-400.ttf");
}
@font-face {
  font-family: "Font-Awesome-Free-Solid";
  src: url("/assets/fonts/fa-solid-900.ttf");
}
/*body {
	background-color: steelblue;
}*/
.loader {
  bottom: 0;
  height: 175px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 175px;
}

.loader .dot {
  bottom: 0;
  height: 100%;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 87.5px;
}

.loader .dot::before {
  border-radius: 100%;
  content: "";
  height: 87.5px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform: scale(0);
  width: 87.5px;
}

.loader .dot:nth-child(7n+1) {
  transform: rotate(45deg);
}

.loader .dot:nth-child(7n+1)::before {
  animation: 0.8s linear 0.1s normal none infinite running load;
  background: #00ff80 none repeat scroll 0 0;
}

.loader .dot:nth-child(7n+2)::before {
  animation: 0.8s linear 0.2s normal none infinite running load;
  background: #00ffea none repeat scroll 0 0;
}

.loader .dot:nth-child(7n+3) {
  transform: rotate(135deg);
}

.loader .dot:nth-child(7n+3)::before {
  animation: 0.8s linear 0.3s normal none infinite running load;
  background: #00aaff none repeat scroll 0 0;
}

.loader .dot:nth-child(7n+4) {
  transform: rotate(180deg);
}

.loader .dot:nth-child(7n+4)::before {
  animation: 0.8s linear 0.4s normal none infinite running load;
  background: #0040ff none repeat scroll 0 0;
}

.loader .dot:nth-child(7n+5) {
  transform: rotate(225deg);
}

.loader .dot:nth-child(7n+5)::before {
  animation: 0.8s linear 0.5s normal none infinite running load;
  background: #2a00ff none repeat scroll 0 0;
}

.loader .dot:nth-child(7n+6) {
  transform: rotate(270deg);
}

.loader .dot:nth-child(7n+6)::before {
  animation: 0.8s linear 0.6s normal none infinite running load;
  background: #9500ff none repeat scroll 0 0;
}

.loader .dot:nth-child(7n+7) {
  transform: rotate(315deg);
}

.loader .dot:nth-child(7n+7)::before {
  animation: 0.8s linear 0.7s normal none infinite running load;
  background: magenta none repeat scroll 0 0;
}

.loader .dot:nth-child(7n+8) {
  transform: rotate(360deg);
}

.loader .dot:nth-child(7n+8)::before {
  animation: 0.8s linear 0.8s normal none infinite running load;
  background: #ff0095 none repeat scroll 0 0;
}

.loader .loading {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  bottom: -40px;
  height: 20px;
  left: -60px;
  position: absolute;
  right: 0;
  width: 300px;
}

@keyframes load {
  100% {
    opacity: 0;
    transform: scale(1);
  }
}
@keyframes load {
  100% {
    opacity: 0;
    transform: scale(1);
  }
}
.loader .spinner-message {
  text-align: center;
  font-size: 26px;
}

.label-primary {
  background-color: #2B6CCC;
}

.label-secondary {
  background-color: #6C757D;
}

.label-success {
  background-color: #38B249;
}

.label-warning {
  background-color: #F6AB2F;
}

.label-danger {
  background-color: #E6492D;
}

.tag-label {
  color: var(--light-text);
  display: inline-flex;
  align-items: center;
  text-transform: uppercase;
  padding: 0 0.25em;
  white-space: nowrap;
  height: inherit;
}

.label-in-table {
  color: var(--main-text);
  font-size: small;
}

.inactive {
  background-color: var(--inactive-background);
}

.icon-label {
  display: inline;
  color: var(--light-text);
  align-items: center;
  text-transform: uppercase;
  white-space: nowrap;
  height: inherit;
  position: relative;
  padding: 0.25em 0.25em;
  border-radius: 1em;
  top: -0.8em;
  right: 1em;
  font-size: 0.8em;
}

.alert {
  background-color: var(--active-background);
  padding: 0 0.25em;
  border: 0.05em solid var(--input-border-color);
  border-radius: 0.2em;
}
.alert.alert-info {
  border-left: 1em solid #2B6CCC;
}
.alert.alert-warning {
  border-left: 1em solid #F6AB2F;
}
.alert.alert-danger {
  border-left: 1em solid #E6492D;
}

.flexbox-container {
  display: flex;
  flex-direction: row;
}
.flexbox-container .flexbox-item {
  flex: 1 1 0;
}
.flexbox-container .flexbox-item:first-child {
  flex-grow: 2;
}
.flexbox-container .flex-fixed {
  flex: 0 0 0;
}

.grid-container {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1em 1em;
}
.grid-container.col-1 {
  grid-template-columns: auto;
}
.grid-container.col-2 {
  grid-template-columns: auto auto;
}
.grid-container.col-3 {
  grid-template-columns: auto auto auto;
}
.grid-container.col-4 {
  grid-template-columns: auto auto auto auto;
}

/* based on angular-toastr css https://github.com/Foxandxss/angular-toastr/blob/cb508fe6801d6b288d3afc525bb40fee1b101650/dist/angular-toastr.css */
/* position */
.toast-center-center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.toast-top-center {
  top: 0;
  right: 0;
  width: 100%;
}

.toast-bottom-center {
  bottom: 0;
  right: 0;
  width: 100%;
}

.toast-top-full-width {
  top: 0;
  right: 0;
  width: 100%;
}

.toast-bottom-full-width {
  bottom: 0;
  right: 0;
  width: 100%;
}

.toast-top-left {
  top: 12px;
  left: 12px;
}

.toast-top-right {
  top: 12px;
  right: 12px;
}

.toast-bottom-right {
  right: 12px;
  bottom: 12px;
}

.toast-bottom-left {
  bottom: 12px;
  left: 12px;
}

/* toast styles */
.toast-title {
  font-weight: bold;
}

.toast-message {
  word-wrap: break-word;
}

.toast-message a,
.toast-message label {
  color: #FFFFFF;
}

.toast-message a:hover {
  color: #CCCCCC;
  text-decoration: none;
}

.toast-close-button {
  position: relative;
  right: -0.3em;
  top: -0.3em;
  float: right;
  font-size: 20px;
  font-weight: bold;
  color: #FFFFFF;
  text-shadow: 0 1px 0 #ffffff;
  /* opacity: 0.8; */
}

.toast-close-button:hover,
.toast-close-button:focus {
  color: #000000;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.4;
}

/*Additional properties for button version
 iOS requires the button element instead of an anchor tag.
 If you want the anchor version, it requires `href="#"`.*/
button.toast-close-button {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
}

.toast-container {
  pointer-events: none;
  position: fixed;
  z-index: 999999;
}

.toast-container * {
  box-sizing: border-box;
}

.toast-container .ngx-toastr {
  position: relative;
  overflow: hidden;
  margin: 0 0 6px;
  padding: 15px 15px 15px 50px;
  width: 300px;
  border-radius: 3px 3px 3px 3px;
  background-position: 15px center;
  background-repeat: no-repeat;
  background-size: 24px;
  box-shadow: 0 0 12px #999999;
  color: #FFFFFF;
}

.toast-container .ngx-toastr:hover {
  box-shadow: 0 0 12px #000000;
  opacity: 1;
  cursor: pointer;
}

/* https://github.com/FortAwesome/Font-Awesome-Pro/blob/master/advanced-options/raw-svg/regular/info-circle.svg */
.toast-info {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCA1MTIgNTEyJyB3aWR0aD0nNTEyJyBoZWlnaHQ9JzUxMic+PHBhdGggZmlsbD0ncmdiKDI1NSwyNTUsMjU1KScgZD0nTTI1NiA4QzExOS4wNDMgOCA4IDExOS4wODMgOCAyNTZjMCAxMzYuOTk3IDExMS4wNDMgMjQ4IDI0OCAyNDhzMjQ4LTExMS4wMDMgMjQ4LTI0OEM1MDQgMTE5LjA4MyAzOTIuOTU3IDggMjU2IDh6bTAgMTEwYzIzLjE5NiAwIDQyIDE4LjgwNCA0MiA0MnMtMTguODA0IDQyLTQyIDQyLTQyLTE4LjgwNC00Mi00MiAxOC44MDQtNDIgNDItNDJ6bTU2IDI1NGMwIDYuNjI3LTUuMzczIDEyLTEyIDEyaC04OGMtNi42MjcgMC0xMi01LjM3My0xMi0xMnYtMjRjMC02LjYyNyA1LjM3My0xMiAxMi0xMmgxMnYtNjRoLTEyYy02LjYyNyAwLTEyLTUuMzczLTEyLTEydi0yNGMwLTYuNjI3IDUuMzczLTEyIDEyLTEyaDY0YzYuNjI3IDAgMTIgNS4zNzMgMTIgMTJ2MTAwaDEyYzYuNjI3IDAgMTIgNS4zNzMgMTIgMTJ2MjR6Jy8+PC9zdmc+");
}

/* https://github.com/FortAwesome/Font-Awesome-Pro/blob/master/advanced-options/raw-svg/regular/times-circle.svg */
.toast-error {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCA1MTIgNTEyJyB3aWR0aD0nNTEyJyBoZWlnaHQ9JzUxMic+PHBhdGggZmlsbD0ncmdiKDI1NSwyNTUsMjU1KScgZD0nTTI1NiA4QzExOSA4IDggMTE5IDggMjU2czExMSAyNDggMjQ4IDI0OCAyNDgtMTExIDI0OC0yNDhTMzkzIDggMjU2IDh6bTEyMS42IDMxMy4xYzQuNyA0LjcgNC43IDEyLjMgMCAxN0wzMzggMzc3LjZjLTQuNyA0LjctMTIuMyA0LjctMTcgMEwyNTYgMzEybC02NS4xIDY1LjZjLTQuNyA0LjctMTIuMyA0LjctMTcgMEwxMzQuNCAzMzhjLTQuNy00LjctNC43LTEyLjMgMC0xN2w2NS42LTY1LTY1LjYtNjUuMWMtNC43LTQuNy00LjctMTIuMyAwLTE3bDM5LjYtMzkuNmM0LjctNC43IDEyLjMtNC43IDE3IDBsNjUgNjUuNyA2NS4xLTY1LjZjNC43LTQuNyAxMi4zLTQuNyAxNyAwbDM5LjYgMzkuNmM0LjcgNC43IDQuNyAxMi4zIDAgMTdMMzEyIDI1Nmw2NS42IDY1LjF6Jy8+PC9zdmc+");
}

/* https://github.com/FortAwesome/Font-Awesome-Pro/blob/master/advanced-options/raw-svg/regular/check.svg */
.toast-success {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCA1MTIgNTEyJyB3aWR0aD0nNTEyJyBoZWlnaHQ9JzUxMic+PHBhdGggZmlsbD0ncmdiKDI1NSwyNTUsMjU1KScgZD0nTTE3My44OTggNDM5LjQwNGwtMTY2LjQtMTY2LjRjLTkuOTk3LTkuOTk3LTkuOTk3LTI2LjIwNiAwLTM2LjIwNGwzNi4yMDMtMzYuMjA0YzkuOTk3LTkuOTk4IDI2LjIwNy05Ljk5OCAzNi4yMDQgMEwxOTIgMzEyLjY5IDQzMi4wOTUgNzIuNTk2YzkuOTk3LTkuOTk3IDI2LjIwNy05Ljk5NyAzNi4yMDQgMGwzNi4yMDMgMzYuMjA0YzkuOTk3IDkuOTk3IDkuOTk3IDI2LjIwNiAwIDM2LjIwNGwtMjk0LjQgMjk0LjQwMWMtOS45OTggOS45OTctMjYuMjA3IDkuOTk3LTM2LjIwNC0uMDAxeicvPjwvc3ZnPg==");
}

/* https://github.com/FortAwesome/Font-Awesome-Pro/blob/master/advanced-options/raw-svg/regular/exclamation-triangle.svg */
.toast-warning {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCA1NzYgNTEyJyB3aWR0aD0nNTc2JyBoZWlnaHQ9JzUxMic+PHBhdGggZmlsbD0ncmdiKDI1NSwyNTUsMjU1KScgZD0nTTU2OS41MTcgNDQwLjAxM0M1ODcuOTc1IDQ3Mi4wMDcgNTY0LjgwNiA1MTIgNTI3Ljk0IDUxMkg0OC4wNTRjLTM2LjkzNyAwLTU5Ljk5OS00MC4wNTUtNDEuNTc3LTcxLjk4N0wyNDYuNDIzIDIzLjk4NWMxOC40NjctMzIuMDA5IDY0LjcyLTMxLjk1MSA4My4xNTQgMGwyMzkuOTQgNDE2LjAyOHpNMjg4IDM1NGMtMjUuNDA1IDAtNDYgMjAuNTk1LTQ2IDQ2czIwLjU5NSA0NiA0NiA0NiA0Ni0yMC41OTUgNDYtNDYtMjAuNTk1LTQ2LTQ2LTQ2em0tNDMuNjczLTE2NS4zNDZsNy40MTggMTM2Yy4zNDcgNi4zNjQgNS42MDkgMTEuMzQ2IDExLjk4MiAxMS4zNDZoNDguNTQ2YzYuMzczIDAgMTEuNjM1LTQuOTgyIDExLjk4Mi0xMS4zNDZsNy40MTgtMTM2Yy4zNzUtNi44NzQtNS4wOTgtMTIuNjU0LTExLjk4Mi0xMi42NTRoLTYzLjM4M2MtNi44ODQgMC0xMi4zNTYgNS43OC0xMS45ODEgMTIuNjU0eicvPjwvc3ZnPg==");
}

.toast-container.toast-top-center .ngx-toastr,
.toast-container.toast-bottom-center .ngx-toastr {
  width: 300px;
  margin-left: auto;
  margin-right: auto;
}

.toast-container.toast-top-full-width .ngx-toastr,
.toast-container.toast-bottom-full-width .ngx-toastr {
  width: 96%;
  margin-left: auto;
  margin-right: auto;
}

.ngx-toastr {
  background-color: #030303;
  pointer-events: auto;
}

.toast-success {
  background-color: #51A351;
}

.toast-error {
  background-color: #BD362F;
}

.toast-info {
  background-color: #2F96B4;
}

.toast-warning {
  background-color: #F89406;
}

.toast-progress {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  background-color: #000000;
  opacity: 0.4;
}

/* Responsive Design */
@media all and (max-width: 240px) {
  .toast-container .ngx-toastr.div {
    padding: 8px 8px 8px 50px;
    width: 11em;
  }
  .toast-container .toast-close-button {
    right: -0.2em;
    top: -0.2em;
  }
}
@media all and (min-width: 241px) and (max-width: 480px) {
  .toast-container .ngx-toastr.div {
    padding: 8px 8px 8px 50px;
    width: 18em;
  }
  .toast-container .toast-close-button {
    right: -0.2em;
    top: -0.2em;
  }
}
@media all and (min-width: 481px) and (max-width: 768px) {
  .toast-container .ngx-toastr.div {
    padding: 15px 15px 15px 50px;
    width: 25em;
  }
}
body.legacy {
  margin: 0;
  height: 100vh;
  font-family: "Roboto-Regular";
  font-size: 14px;
  position: relative;
  color: var(--main-text);
  /* Header Start */
}
body.legacy .header-action {
  cursor: pointer;
}
body.legacy .header-action:hover {
  background-color: var(--header-active-color);
}
body.legacy .header-dropdown {
  position: fixed;
  display: none;
  overflow: hidden;
}
body.legacy .header-dropdown.show {
  display: block;
  color: var(--main-text);
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.1);
  background-color: var(--background-color);
  z-index: 9999;
}
body.legacy .header-dropdown .flexbox-container {
  flex-wrap: wrap;
  flex-direction: column;
}
body.legacy .header-dropdown .flexbox-container .flexbox-item {
  flex: 1;
  border-bottom: solid 0.01em var(--input-border-color);
  background-color: var(--background-color);
  padding: 0 0.5em;
}
body.legacy .header-dropdown .flexbox-container .flexbox-item .ng-fa-icon {
  margin-right: 0.5em;
}
body.legacy .header-dropdown .flexbox-container .flexbox-item:hover {
  background-color: var(--header-active-color);
  color: var(--background-color);
}
body.legacy .header-dropdown .flexbox-container .flexbox-item:first-child {
  flex-grow: 1;
}
body.legacy {
  /* Header End */
  /* Page Content */
}
body.legacy .page-content .content-title-block, body.legacy .page-content .actions-block {
  display: flex;
  justify-content: flex-start;
  line-height: 3em;
  align-items: baseline;
  padding: 0.5em;
  padding-left: 0em;
}
body.legacy .page-content .content-title-block app-search-input,
body.legacy .page-content .content-title-block input, body.legacy .page-content .actions-block app-search-input,
body.legacy .page-content .actions-block input {
  display: flex;
  flex-grow: 1;
}
body.legacy .page-content .content-title-block {
  height: 3em;
  border-bottom: 1px solid var(--border-color);
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  margin: 0 -1.5em;
}
body.legacy .page-content .content-title-block .page-content-title {
  font-family: "Roboto-Bold";
  font-size: 24px;
  padding: 0 0.25em;
}
body.legacy .page-content .content-title-block app-sidebar-toggle,
body.legacy .page-content .content-title-block .page-content-title,
body.legacy .page-content .content-title-block .page-content-title-description,
body.legacy .page-content .content-title-block app-search-input,
body.legacy .page-content .content-title-block app-dropdown-input {
  margin-right: 0.25em;
}
body.legacy .page-content .content-title-block app-dropdown-input:last-child {
  margin-right: 0.7em;
}
body.legacy .page-content .content-row-block {
  display: flex;
}
body.legacy .page-content .content-row-block > * {
  margin-right: 0.5em;
  flex-grow: 1;
}
body.legacy .page-content .content-row-block > *:last-child {
  margin-right: 0;
}
body.legacy .page-content .content-row-block app-button {
  flex-grow: initial;
}
body.legacy .page-content .hidden {
  display: none;
}
body.legacy .page-content {
  /* Input page styling */
}
body.legacy .page-content .splitBlock {
  display: flex;
  flex-direction: row;
  border-bottom: 1px solid var(--border-color);
  padding: 0.5em 0;
}
body.legacy .page-content .splitBlock .mainDescription {
  font-family: "Roboto-Bold";
  flex: 1;
}
body.legacy .page-content .splitBlock .mainContent {
  flex: 6;
}
body.legacy .page-content .splitBlock .mainContent app-dropdown-input,
body.legacy .page-content .splitBlock .mainContent app-text-input,
body.legacy .page-content .splitBlock .mainContent app-toggle-input,
body.legacy .page-content .splitBlock .mainContent app-file-input {
  display: block;
  margin-bottom: 0.5em;
}
body.legacy .page-content .splitBlock .mainContent app-dropdown-input :disabled,
body.legacy .page-content .splitBlock .mainContent app-text-input :disabled,
body.legacy .page-content .splitBlock .mainContent app-toggle-input :disabled,
body.legacy .page-content .splitBlock .mainContent app-file-input :disabled {
  background-color: var(--inactive-background);
}
body.legacy .page-content .splitBlock:last-child {
  margin-bottom: 0.5em;
}
body.legacy .page-content .info {
  flex-grow: 0.03;
}
body.legacy .page-content .info:before {
  font-family: "Font-Awesome-Free-Solid";
  background-color: #2B6CCC;
  content: "\f129";
  color: var(--light-text);
  padding: 0.5em 0.9em;
  position: absolute;
  border-radius: 2em;
  cursor: pointer;
}
body.legacy app-search-input,
body.legacy ng-select,
body.legacy .input-group {
  display: flex;
  line-height: 2em;
  border: 0.05em solid var(--input-border-color);
  border-radius: 0.2em;
  overflow: hidden;
}
body.legacy app-search-input input,
body.legacy ng-select input,
body.legacy .input-group input {
  height: 2em;
  flex-grow: 1;
  padding: 0 0.5em;
  border: none;
  font-family: inherit;
  font-size: inherit;
}
body.legacy app-search-input input:disabled,
body.legacy ng-select input:disabled,
body.legacy .input-group input:disabled {
  background-color: var(--inactive-background);
}
body.legacy app-search-input .input-group-prepend, body.legacy app-search-input .input-group-append,
body.legacy ng-select .input-group-prepend,
body.legacy ng-select .input-group-append,
body.legacy .input-group .input-group-prepend,
body.legacy .input-group .input-group-append {
  background: var(--inactive-background);
  padding: 0 0.5em;
}
body.legacy .app-dropdown-block label,
body.legacy .app-text-input-block label,
body.legacy app-users-role-permission label {
  font-family: "Roboto-Bold";
}
body.legacy ngneat-dialog .ngneat-dialog-content {
  background: none;
  box-shadow: none;
}
body.legacy ngneat-dialog {
  /* Hiding the default padding of the backdrop and removing the close button */
}
body.legacy ngneat-dialog .ngneat-dialog-backdrop {
  padding: 0;
}
body.legacy ngneat-dialog .ngneat-dialog-backdrop .ngneat-close-dialog {
  visibility: hidden;
}
body.legacy {
  /* End input page styling */
}

/* NON BROWSER SPECIFIC*/
/* CROSS BROWSER SELECTOR*/
progress[value] {
  /* RESETS */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  width: 100%;
  display: flex;
  flex: 0 0 100%;
  height: 2em;
  border-radius: 0.1em;
  background-color: var(--active-background);
  color: #2B6CCC;
}

/* WEBKIT BROWSERS - CHROME, OPERA AND SAFARI */
progress[value]::-webkit-progress-bar {
  background-color: var(--active-background);
  border-radius: 0.1em;
}

progress[value]::-moz-progress-bar {
  background: #2B6CCC;
}

progress[value]::-webkit-progress-value {
  background: #2B6CCC;
}

:host-context(body.legacy) table {
  max-width: fit-content;
  min-width: 100%;
  border-collapse: collapse;
  border: solid 0.01em var(--input-border-color);
}
:host-context(body.legacy) table thead tr th {
  font-size: smaller;
  font-weight: 500;
  color: var(--sub-text);
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: uppercase;
  vertical-align: top;
  padding: 0.5em;
  border-bottom: solid 0.01em var(--input-border-color);
}
:host-context(body.legacy) table tbody tr {
  max-height: 3em;
}
:host-context(body.legacy) table tbody tr:nth-child(even) {
  background-color: var(--inactive-background);
}
:host-context(body.legacy) table tbody tr:nth-child(odd) {
  background-color: var(--background-color);
}
:host-context(body.legacy) table tbody td {
  resize: vertical;
  overflow-wrap: anywhere;
  color: inherit;
  vertical-align: top;
  padding: 0.5em;
  vertical-align: middle;
}
:host-context(body.legacy) table tbody td img.preview {
  max-height: 4em;
  max-width: 7em;
  object-fit: contain;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1), inset 5px 5px 13px rgba(0, 0, 0, 0.1);
}
:host-context(body.legacy) table tbody td .btn-group {
  display: flex;
  float: right;
}
:host-context(body.legacy) table tbody td .btn-group app-button {
  margin-right: 0.5em;
}
:host-context(body.legacy) table tbody td .btn-group app-button:last-of-type {
  margin-right: 0;
}

.ng-dropdown-panel {
  font-family: "Roboto-Regular";
  font-size: 16px;
  line-height: 2em;
  border: 0.05em solid var(--input-border-color);
  border-radius: 0.2em;
  overflow: hidden;
  background-color: var(--background-color);
}
.ng-dropdown-panel.ng-select-top {
  bottom: 100%;
}
.ng-dropdown-panel.ng-select-top .ng-dropdown-panel-items {
  width: 100% !important;
}
.ng-dropdown-panel.ng-select-top .ng-dropdown-panel-items .ng-option:first-child {
  border-top-right-radius: 2px;
  border-top-left-radius: 2px;
}

app-dropdown-input {
  background-color: var(--background-color);
}

.ng-option-selected, .ng-option:hover {
  font-family: Roboto-Bold;
  background-color: var(--active-background);
  border-color: #2B6CCC !important;
  color: #2B6CCC;
}

body.legacy {
  --background-color: #FFFFFF;
  --bs-body-bg: #FFFFFF;
  --bs-body-color: #423F3E;
  --main-text: #423F3E;
  --light-text: #FFFFFF;
  --sub-text: #6B6C6F;
  --active-background: #F5F5F5;
  --inactive-background: #E9E9E9;
  --border-color: #DBDBDB;
  --secondary-border-color: #E4E4E4;
  --input-border-color: #BABBBC;
  --header-color: #003399;
  --header-color-test: #ff0000;
  --header-active-color: rgb(0, 59.5, 178.5);
  --accent-background-color: #ffedb5;
  --accent-color: #423F3E;
}

body.dark-theme {
  --bs-body-bg: #121212;
  --bs-body-color: hsl(0, 0%, 116%);
  --background-color: #121212;
  --main-text: hsl(0, 0%, 116%);
  --light-text: #e9e9e9;
  --sub-text: hsl(0, 0%, 140%);
  --active-background: rgb(38.4, 38.4, 38.4);
  --inactive-background: rgb(30.75, 30.75, 30.75);
  --border-color: rgb(35.85, 35.85, 35.85);
  --secondary-border-color: rgb(30.75, 30.75, 30.75);
  --input-border-color: rgb(30.75, 30.75, 30.75);
  --header-color: #003399;
  --header-color-test: #a80000;
  --header-active-color: #6699ff;
  --accent-background-color: #6699ff;
  --accent-color: #121212;
}

.search-input-block, input, button {
  background-color: var(--active-background);
  color: var(--main-text);
}

.ng-fa-icon {
  display: inline-block;
  width: 1.25rem;
  text-align: center;
}

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