body {
  margin: 0px;
  height: 100vh;
  overflow: hidden;
}

#login-background {
  width: 100vw;
  height: 100vh;
  background-color: var(--tsf-color-alabaster);
  display: flex;
  align-items: center;
  justify-content: center;
}

#login-splash {
  position: relative;
  display: flex;
}

::-webkit-scrollbar {
  width: 0.5em;
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

::-webkit-scrollbar-thumb {
  background-color: darkgrey;
  outline: 1px solid slategrey;
}

#login-splash input:-webkit-autofill,
#login-splash input:-webkit-autofill:hover,
#login-splash input:-webkit-autofill:focus,
#login-splash input:-webkit-autofill:active {
  -webkit-text-fill-color: hsl(0deg, 0%, 90%);
  -webkit-box-shadow: 0 0 0 30px #99497d inset !important;
}

.legal {
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 16px;
  padding-right: 16px;
  color: #333;
}

.legal .copyright {
  font-size: 0.8em;
}

.legal a {
  font-weight: bold;
  text-decoration: none;
}

.legal .version {
  font-size: 0.8em;
}

.list-header {
  font-variant: all-small-caps;
  color: var(--tsf-color-dusty-grey);
}
.list-header:not(:first-child) {
  margin-top: 1em;
}
.list-header:not(:last-child) {
  margin-bottom: 0.5em;
}

.profile-inheritance-steps {
  display: flex;
  align-items: center;
  gap: 2em;
}
.profile-inheritance-steps > *:not(:first-child) {
  position: relative;
}
.profile-inheritance-steps > *:not(:first-child)::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -1.5em;
  transform: translateY(-50%) rotate(45deg);
  width: 0.5em;
  height: 0.5em;
  border-style: solid;
  border-color: #999999;
  border-width: 0.1em 0.1em 0 0;
}

.profile-category,
.gamification-config-category {
  position: relative;
  padding-inline: 4em;
  padding-top: 2em;
}
.profile-category:not(:first-child),
.gamification-config-category:not(:first-child) {
  margin-top: 1em;
}
.profile-category:not(:first-child)::before,
.gamification-config-category:not(:first-child)::before {
  position: absolute;
  content: "";
  top: 1em;
  inset-inline: 0px;
  height: 1px;
  width: 100%;
  transform: translateX(0%);
  background: linear-gradient(90deg, hsl(0deg, 0%, 100%) 0%, hsl(0deg, 0%, 90%) 30%, hsl(0deg, 0%, 90%) 70%, hsl(0deg, 0%, 100%) 100%);
}

.profile-language-list > * {
  position: relative;
  padding-block: 0.2em;
  padding-inline: 0.5em;
  cursor: default;
}
.profile-language-list > *:not(:first-child) {
  margin-top: 0.2em;
}
.profile-language-list > *:not(:first-child)::before {
  position: absolute;
  content: "";
  top: -0.1em;
  inset-inline: 0px;
  height: 1px;
  width: 60%;
  transform: translateX(20%);
  background: linear-gradient(90deg, hsl(0deg, 0%, 100%) 0%, hsl(0deg, 0%, 90%) 30%, hsl(0deg, 0%, 90%) 70%, hsl(0deg, 0%, 100%) 100%);
}

.profile-property,
.gamification-config-property {
  cursor: default;
  position: relative;
  background: "unset";
  border-width: 1px;
  border-style: solid;
  border-color: transparent;
  box-shadow: unset;
  transition: border-color 0.4s ease-out, box-shadow 0.4s ease-out;
}
.profile-property:not(.edit):hover,
.gamification-config-property:not(.edit):hover {
  background: rgba(0, 0, 0, 0.04);
}
.profile-property.edit,
.gamification-config-property.edit {
  border-color: var(--color-lydia-primary);
  box-shadow: rgba(0, 0, 0, 0.06) 0px 3px 12px;
}

.device-explorer-list {
  padding: 1em;
  display: flex;
  flex-direction: column;
  gap: 2em;
}
.device-explorer-list > * {
  position: relative;
}
.device-explorer-list > *:not(:first-child)::before {
  position: absolute;
  content: "";
  top: -1em;
  inset-inline: 0px;
  height: 1px;
  width: 90%;
  transform: translateX(5%);
  background: linear-gradient(90deg, hsl(0deg, 0%, 100%) 0%, hsl(0deg, 0%, 90%) 30%, hsl(0deg, 0%, 90%) 70%, hsl(0deg, 0%, 100%) 100%);
}

.list-button {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 8px 0 8px;
  width: 100%;
  height: 38px;
  border: none;
  outline: none;
  background: unset;
  font-size: 14px;
  color: #333333;
  cursor: pointer;
  transition: background-color 0.5s;
}
.list-button:hover {
  background-color: #eeeeee;
}
.list-button.selected {
  color: #333333;
  background-color: #e8e8e8;
}
.list-button.selected::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  border-left: 4px solid #801B5D;
}

/*-------- Animations -------- */
@keyframes flash {
  0% {
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  85% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.animation-flash {
  animation-name: flash;
  animation-duration: 2s;
  animation-iteration-count: infinite;
}

/* Word/Phrase statistics */
.low-recognition-confidence {
  color: orange;
}

.normal-recognition-confidence {
  /*--color: green;--*/
}

.best-recognition-confidence {
  color: blue;
}

.column-group-even {
  background-color: rgba(226, 226, 226, 0.4);
}

.ag-overlay-no-rows-wrapper {
  user-select: none;
  font-family: Arial, Helvetica, sans-serif;
  font-size: x-large;
  font-variant-caps: all-small-caps;
}

#aspect-tabs .MuiTabs-flexContainer {
  height: 56px;
}

:root {
  --color-lydia-primary: #801b5d;
}

/* Removes buttons in Number-Inputfield */
input[type=number] {
  -moz-appearance: textfield;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.grammar-chip {
  display: inline-flex;
  height: 36px;
  background-color: #fff;
  border: 1px solid var(--tsf-color-mercury);
  border-radius: 18px;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  cursor: default;
}
.grammar-chip.small {
  font-size: 13px;
}

.grammar-chip .avatar {
  font-size: 1em;
  height: 34px;
  width: 34px;
}
.grammar-chip .details {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  justify-items: start;
}
.grammar-chip .details .grammar-name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 110px;
}
.grammar-chip .details .grammar-language {
  color: var(--tsf-color-dusty-grey);
  margin-left: 0.5em;
}
.grammar-chip .details .revision-name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  grid-row: 2;
  grid-column-start: 1;
  grid-column-end: span 2;
  color: var(--tsf-color-dusty-grey);
  max-width: 110px;
}
.grammar-chip .counters {
  display: inline-flex;
  flex-direction: row;
  gap: 0.2em;
  margin-right: 0.4em;
  font-size: 1.5em;
}
.grammar-chip .counters .counter {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.grammar-chip .counters .counter .icon {
  color: #999999;
  width: 1.5em;
  height: 1.5em;
}
.grammar-chip .counters .counter .count {
  color: var(--tfs-color-primary);
  font-weight: bold;
}
.grammar-chip .actions {
  display: flex;
  flex-direction: row;
}

/*# sourceMappingURL=base-generated.css.map */
