.display-flex {
  display: flex;
}

.display-flex-column {
  flex-direction: column;
  display: flex;
}

.display-flex-row {
  flex-direction: row;
  display: flex;
}

.flex-grow-1 {
  flex-grow: 1;
}

.flex-grow-0 {
  flex-grow: 0;
}

.width-full {
  width: 100%;
}

.flex-items-grow-1 > * {
  flex-grow: 1;
}

.form-row--mb1ex .form-row {
  margin-bottom: 1ex;
}

@keyframes spin {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

.simple-loader {
  border: 1px solid red;
  border-left: 2px solid #fff3;
  border-right: 2px solid #fff3;
  border-radius: 50%;
  width: 2ex;
  height: 2ex;
  animation: 2s linear infinite spin;
  display: inline-block;
}

.c-big-centered-btn {
  text-align: center;
  width: 100%;
  margin: 2ex 0;
}

.c-big-centered-btn .btn {
  min-width: 50%;
}

.flash-message__container {
  z-index: 3000;
  position: fixed;
  top: 5%;
  left: 5%;
}

.flash-message__loader {
  color: gray;
  background: #fff;
  border-radius: 4ex;
  margin: 1em 0;
  padding: 2ex 3ex 2ex 2ex;
  box-shadow: 5px 5px 20px #0008;
}

.flash-message__loader__removing {
  opacity: 0;
  transition: all 2s;
  transform: scale(3, .1);
}

.flash-message__loader:before {
  content: " ";
  border: 1px solid red;
  border-left: 2px solid #fff3;
  border-right: 2px solid #fff3;
  border-radius: 50%;
  width: 2ex;
  height: 2ex;
  margin-right: 1ex;
  animation: 2s linear infinite spin;
  display: inline-block;
}

.flash-message__flash {
  background-color: #ff8;
  border-radius: 4ex;
  margin: 1em 0;
  padding: 2.5ex;
  box-shadow: 5px 5px 20px #0008;
}

.flash-message__flash__head {
  display: flex;
}

.flash-message__flash__close {
  cursor: pointer;
  padding-left: 1ex;
  font-weight: bold;
}

.flash-message__flash__text {
  flex-grow: 1;
}

.flash-message__flash--error {
  color: #fff;
  background-color: #e33;
  font-weight: bold;
}

.flash-message__flash--saved, .flash-message__flash--deleted {
  background-color: #8f8;
}

.layout {
  flex-direction: column;
  display: flex;
}

.layout__header {
  z-index: 1;
  padding: 1ex;
  box-shadow: 0 0 15px #0008;
}

.layout__middle {
  flex-direction: row;
  flex-grow: 1;
  gap: 1ex;
  display: flex;
}

.layout__side {
  background: #eee;
  flex: 1;
  padding: 1ex;
}

.layout__side .flash-message__container {
  position: sticky;
}

.layout__content {
  flex: 3;
  padding: 1ex;
}

.error-navigator {
  max-height: 100vh;
  position: sticky;
  top: 0;
  overflow: auto;
}

.error-navigator__errors {
  margin: 0 0 0 2ex;
  padding: 0 0 0 1ex;
}

.error-navigator__errors li {
  cursor: pointer;
  border-radius: 1ex;
}

.error-navigator__errors li:hover {
  background: #fff;
}

.error-navigator__errors li::marker {
  color: orange;
}

@keyframes error-navigator-focus {
  0% {
    background: none;
    transform: scale(1);
    box-shadow: 0 0 #0000;
  }

  50% {
    background: #ff0;
    transform: scale(1.1);
    box-shadow: 0 0 15px #ff0;
  }

  100% {
    background: none;
    transform: scale(1);
    box-shadow: 0 0 #0000;
  }
}

@keyframes flash-remove {
  0% {
    opacity: 1;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(2, .5);
  }
}

.error-list {
  color: red;
  margin: -4px 0 1ex;
  padding: .5ex;
  font-size: 80%;
}

.error-list:empty {
  border: none;
}

label.value-required:after {
  content: "*";
  color: green;
  font-weight: bold;
}

input[type="number"] {
  text-align: right;
  font-family: monospace;
}

.has-error {
  border-color: #f88;
}

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