body {
  background-color: white;
}
body #app {
  position: relative;
}
body #app .horizontal-sector {
  margin-bottom: 10px;
}
body #app .horizontal-sector .side-by-side {
  float: left;
  width: 0px;
  display: none;
}
body #app .horizontal-sector .side-by-side:nth-child(2) {
  width: 100%;
  display: block;
}
body #app .horizontal-sector .side-by-side.with-help {
  width: 20%;
  display: block;
}
body #app .horizontal-sector .side-by-side.with-help:first-child {
  display: none;
}
body #app .horizontal-sector .side-by-side.with-help:nth-child(2) {
  width: 80%;
}
body #app .horizontal-sector .side-by-side.with-help.with-add-widget {
  width: 20% !important;
  display: block !important;
}
body #app .horizontal-sector .side-by-side.with-help.with-add-widget:nth-child(2) {
  width: 60% !important;
}
body #app .horizontal-sector .side-by-side.with-add-widget {
  display: block;
}
body #app .horizontal-sector .side-by-side.with-add-widget:first-child {
  width: 20%;
}
body #app .horizontal-sector .side-by-side.with-add-widget:nth-child(2) {
  width: 80%;
}
body #app .horizontal-sector .side-by-side.with-add-widget:nth-child(n+3) {
  display: none;
}

.theme.theme-wider-uptake {
  background-color: white;
  color: #003d65;
  font-family: Calibri, Arial;
}
.theme.theme-wider-uptake h1, .theme.theme-wider-uptake h2, .theme.theme-wider-uptake h3 {
  font-family: Industry, Helvetica, Arial;
}
.theme.theme-wider-uptake a:hover {
  border-bottom: 2px solid #099c99;
}
.theme.theme-wider-uptake a:active {
  border-bottom: 2px solid #099c99;
}

.wu-progress {
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  position: absolute;
  display: none;
}
.wu-progress .wu-progress-container {
  opacity: 0.9;
  display: flex;
  height: 100%;
  text-align: center;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.5);
}
.wu-progress .wu-progress-container .wu-progress-display {
  margin-top: 50px;
  width: 60%;
}
.wu-progress .wu-progress-container .wu-progress-display .wu-progress-bar {
  height: 4px;
  width: 100%;
}
.wu-progress .wu-progress-container .wu-progress-display .wu-progress-bar .done {
  width: 0;
  height: 100%;
  background-color: #ff5f00;
}
.wu-progress .wu-progress-container .wu-progress-display .wu-progress-message {
  font-size: 1.3em;
  font-weight: bold;
}

.dots-1 {
  height: 25px;
  aspect-ratio: 4;
  display: grid;
  animation: d1-0 1s infinite;
}

.dots-1:before,
.dots-1:after {
  content: "";
  grid-area: 1/1;
  --_g: no-repeat radial-gradient(farthest-side, #000 94%, #0000);
  background: var(--_g) left, var(--_g) right;
  background-size: 25% 100%;
}

.dots-1:after {
  transform: rotate(0) translate(37.5%) rotate(0);
  animation: inherit;
  animation-name: d1-1;
}

@keyframes d1-0 {
  100% {
    transform: translate(37.5%);
  }
}
@keyframes d1-1 {
  100% {
    transform: rotate(-0.5turn) translate(37.5%) rotate(0.5turn);
  }
}
.dots-2 {
  height: 25px;
  aspect-ratio: 5;
  display: grid;
  --_g: no-repeat radial-gradient(farthest-side, #000 94%, #0000);
}

.dots-2:before,
.dots-2:after {
  content: "";
  grid-area: 1/1;
  background: var(--_g) left, var(--_g) right;
  background-size: 20% 100%;
  animation: d2 1s infinite;
}

.dots-2:after {
  background: var(--_g) calc(1*100%/3), var(--_g) calc(2*100%/3);
  background-size: 20% 100%;
  animation-direction: reverse;
}

@keyframes d2 {
  80%, 100% {
    transform: rotate(0.5turn);
  }
}
.dots-3 {
  height: 25px;
  aspect-ratio: 5;
  display: flex;
  justify-content: space-between;
}

.dots-3:before,
.dots-3:after {
  content: "";
  width: calc(140%/3);
  --_g: no-repeat radial-gradient(farthest-side, #000 94%, #0000);
  background: var(--_g) left, var(--_g) right;
  background-size: calc(300%/7) 100%;
  transform-origin: calc(300%/14) 50%;
  transform: translate(0) rotate(0);
  animation: d3 1s infinite linear;
}

.dots-3:after {
  --s: -1;
  transform-origin: calc(100% - calc(300%/14)) 50%;
}

@keyframes d3 {
  100% {
    transform: translate(calc(var(--s, 1)*(100% - calc(300%/7)))) rotate(calc(var(--s, 1)*.5turn));
  }
}
.dots-4 {
  height: 25px;
  aspect-ratio: 4;
  display: grid;
  transform: translate(calc(-100% / 6));
}

.dots-4:before,
.dots-4:after {
  content: "";
  grid-area: 1/1;
  --_g: no-repeat radial-gradient(farthest-side, #ff7f00 94%, #0000);
  background: var(--_g) left, var(--_g) right;
  background-size: 25% 100%;
  animation: d4 1s infinite;
  transform: translate(var(--d, 0)) rotate(0);
}

.dots-4:after {
  --d: 37.5%;
  animation-delay: 0.5s;
}

@keyframes d4 {
  50%, 100% {
    transform: translate(var(--d, 0)) rotate(0.5turn);
  }
}
.dots-5 {
  height: 25px;
  aspect-ratio: 5;
  display: grid;
}

.dots-5:before,
.dots-5:after {
  content: "";
  grid-area: 1/1;
  height: inherit;
  --_g: no-repeat radial-gradient(farthest-side, #000 94%, #0000);
  background: var(--_g) left, var(--_g) right;
  background-size: 15px 100%;
  background-repeat: no-repeat;
  animation: d5 1s infinite linear;
}

.dots-5:after {
  margin-left: auto;
  --s: -1;
}

@keyframes d5 {
  0% {
    transform: translateY(calc(var(--s, 1)*0px));
    aspect-ratio: 2.3;
  }
  33% {
    transform: translateY(calc(var(--s, 1)*8px));
    aspect-ratio: 2.3;
  }
  66% {
    transform: translateY(calc(var(--s, 1)*8px));
    aspect-ratio: 3.7;
  }
  100% {
    transform: translateY(calc(var(--s, 1)*0px));
    aspect-ratio: 3.7;
  }
}
.dots-6 {
  height: 25px;
  aspect-ratio: 5;
  display: grid;
  animation: d6-0 2s infinite linear;
}

.dots-6:before,
.dots-6:after {
  content: "";
  grid-area: 1/1;
  height: inherit;
  --_g: no-repeat radial-gradient(farthest-side, #000 94%, #0000);
  background: var(--_g) left, var(--_g) right;
  background-size: 15px 100%;
  background-repeat: no-repeat;
  animation: d6-1 1s infinite linear;
}

.dots-6:after {
  margin-left: auto;
  --s: -1;
}

@keyframes d6-0 {
  0%, 49.99% {
    transform: scaleY(1);
  }
  50%, 100% {
    transform: scaleY(-1);
  }
}
@keyframes d6-1 {
  0% {
    transform: translate(0, calc(var(--s, 1)*0px));
    aspect-ratio: 2.3;
  }
  33% {
    transform: translate(0, calc(var(--s, 1)*8px));
    aspect-ratio: 2.3;
  }
  66% {
    transform: translate(calc(var(--s, 1)*19px), calc(var(--s, 1)*8px));
    aspect-ratio: 3.7;
  }
  100% {
    transform: translate(calc(var(--s, 1)*19px), calc(var(--s, 1)*0px));
    aspect-ratio: 3.7;
  }
}
@keyframes d6-0 {
  0%, 49.99% {
    transform: scaleY(1);
  }
  50%, 100% {
    transform: scaleY(-1);
  }
}
.dots-7 {
  width: 6px;
  aspect-ratio: 1;
  border-radius: 50%;
  animation: d7-1 0.75s infinite linear alternate, d7-2 1.5s infinite linear;
}

@keyframes d7-1 {
  0%, 20% {
    box-shadow: 30px 0 0 3px, 10px 0 0 3px, -10px 0 0 3px, -30px 0 0 3px;
  }
  60%, 100% {
    box-shadow: 12px 0 0 3px, 14px 0 0 6px, -14px 0 0 6px, -12px 0 0 3px;
  }
}
@keyframes d7-2 {
  0%, 25% {
    transform: rotate(0);
  }
  50%, 100% {
    transform: rotate(0.5turn);
  }
}
.dots-8 {
  width: 35px;
  aspect-ratio: 1;
  --_g: no-repeat radial-gradient(farthest-side, #000 94%, #0000);
  background: var(--_g) 0 0, var(--_g) 100% 0, var(--_g) 100% 100%, var(--_g) 0 100%;
  background-size: 40% 40%;
  animation: d8 0.5s infinite;
}

@keyframes d8 {
  100% {
    background-position: 100% 0, 100% 100%, 0 100%, 0 0;
  }
}
.dots-9 {
  height: 25px;
  aspect-ratio: 5;
  display: grid;
  animation: d9-0 1s infinite linear;
}

.dots-9:before,
.dots-9:after {
  content: "";
  width: calc(140%/3);
  grid-area: 1/1;
  --_g: no-repeat radial-gradient(farthest-side, #000 94%, #0000);
  background: var(--_g) left, var(--_g) right;
  background-size: calc(300%/7) 100%;
  animation: d9-1 1s infinite linear;
}

.dots-9:after {
  margin-left: auto;
  --s: -1;
}

@keyframes d9-0 {
  0%, 30% {
    transform: rotate(0);
  }
  50%, 100% {
    transform: rotate(0.5turn);
  }
}
@keyframes d9-1 {
  30%, 70% {
    transform: translate(calc(var(--s, 1)*400%/14));
  }
}
.dots-10 {
  height: 25px;
  aspect-ratio: 5;
  --_g: no-repeat radial-gradient(farthest-side, #000 94%, #0000);
  background: var(--_g), var(--_g), var(--_g), var(--_g);
  background-size: 20% 100%;
  animation: d10-1 0.75s infinite alternate, d10-2 1.5s infinite alternate;
}

@keyframes d10-1 {
  0%, 10% {
    background-position: 0 0, 0 0, 0 0, 0 0;
  }
  33% {
    background-position: 0 0, calc(100%/3) 0, calc(100%/3) 0, calc(100%/3) 0;
  }
  66% {
    background-position: 0 0, calc(100%/3) 0, calc(2*100%/3) 0, calc(2*100%/3) 0;
  }
  90%, 100% {
    background-position: 0 0, calc(100%/3) 0, calc(2*100%/3) 0, 100% 0;
  }
}
@keyframes d10-2 {
  0%, 49.99% {
    transform: scale(1);
  }
  50%, 100% {
    transform: scale(-1);
  }
}
.wu-watermark {
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  text-align: center;
  position: absolute;
  opacity: 0.1;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.wu-watermark img {
  width: 60%;
  -moz-user-select: none;
  -webkit-user-select: none;
  user-select: none;
}

.add-widget-section {
  margin: 0 5px 0 0;
  border: 1px solid navy;
}
.add-widget-section .add-widget-section-header {
  padding: 3px 35px 3px 10px;
  position: relative;
  height: 38px;
  position: relative;
}
.add-widget-section .add-widget-section-header button {
  position: absolute;
  right: 5px;
  top: 5px;
  height: 25px;
  padding: 0 10px;
}
.add-widget-section .add-widget-section-content {
  max-height: 75vh;
  overflow: auto;
  margin-top: 5px;
}
.add-widget-section .add-widget-section-content .add-widget-button {
  margin-bottom: 5px;
  padding: 5px;
  display: flex;
}
.add-widget-section .add-widget-section-content .add-widget-button:hover {
  background-color: #d2d2d2;
}
.add-widget-section .add-widget-section-content .add-widget-button .add-widget-image {
  margin-top: 1px;
  display: block;
  width: 20%;
}
.add-widget-section .add-widget-section-content .add-widget-button .add-widget-image img {
  width: 100%;
}
.add-widget-section .add-widget-section-content .add-widget-button .add-widget-text {
  word-break: break-word;
  display: block;
  width: 80%;
  padding-left: 5px;
  line-height: 1.3em;
}
.add-widget-section .add-widget-section-content .add-widget-button .add-widget-text .add-widget-title {
  font-size: 1.05em;
  font-weight: bold;
}

.grid-stack {
  background-color: #cfcfcf;
  overflow: hidden;
}
.grid-stack .grid-stack-item-content {
  background-color: white;
  border: 1px solid #7f7f7f;
}
.grid-stack .grid-stack-item-content .panel-heading {
  cursor: default;
  padding: 3px 35px 3px 10px;
  position: relative;
  min-height: 38px;
}
.grid-stack .grid-stack-item-content .panel-heading .panel-left {
  display: inline-block;
  margin-right: 10px;
}
.grid-stack .grid-stack-item-content .panel-heading .panel-right {
  position: absolute;
  right: 5px;
  top: 5px;
  height: 25px;
}
.grid-stack .grid-stack-item-content .panel-heading .panel-right button {
  padding: 0 10px;
  margin-right: 2px;
}
.grid-stack .grid-stack-item-content .panel-heading .panel-right button:last-child {
  margin-right: 0px;
}
.grid-stack .grid-stack-item-content .grid-stack-item-canvas {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.grid-stack .grid-stack-item-content .grid-stack-item-canvas.dimm g.chart, .grid-stack .grid-stack-item-content .grid-stack-item-canvas.dimm g.y-axis, .grid-stack .grid-stack-item-content .grid-stack-item-canvas.dimm g.y-label {
  opacity: 0.1;
}
.grid-stack .grid-stack-item-content .grid-stack-item-canvas.dimm g.chart.emphasize, .grid-stack .grid-stack-item-content .grid-stack-item-canvas.dimm g.y-axis.emphasize, .grid-stack .grid-stack-item-content .grid-stack-item-canvas.dimm g.y-label.emphasize {
  opacity: 1;
}

.series-descriptions {
  display: none;
}

.d3-chart {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.data-export-widget {
  display: flex;
  position: absolute;
  height: 100%;
  width: 100%;
}
.data-export-widget .table-preview {
  width: inherit;
  height: 100%;
  display: block;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0px;
  overflow: auto;
}
.data-export-widget .table-preview table, .data-export-widget .table-preview tr, .data-export-widget .table-preview td, .data-export-widget .table-preview th {
  border: solid 1px grey;
}
.data-export-widget .table-preview table {
  border-collapse: collapse;
}
.data-export-widget .table-preview table td, .data-export-widget .table-preview table th {
  font-size: 1em;
  padding: 2px 5px;
}
.data-export-widget .table-preview table th {
  background-color: #acacac;
}
.data-export-widget .table-creator {
  max-width: 300px;
  padding: 2px;
  display: flex;
  flex-direction: column;
}
.data-export-widget .table-creator .selector-section {
  display: flex;
  flex-direction: column;
  height: 31%;
  padding: 0 5px 5px 5px;
  border-bottom: solid 1px grey;
}
.data-export-widget .table-creator .selector-section .title {
  font-weight: bold;
}
.data-export-widget .table-creator .selector-section.sixth {
  height: 16% !important;
  max-height: 80px;
}
.data-export-widget .table-creator .selector-section.values {
  flex-grow: 1;
}
.data-export-widget .table-creator .selector-section .selection-area {
  background: #e7e7e7;
  margin: 2px;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
}
.data-export-widget .table-creator .selector-section .selection-area .dragging-cell {
  opacity: 50%;
}
.data-export-widget .table-creator .selector-section .selection-area .draggable-cell {
  background: #ffffff;
  border: solid 0.2px grey;
  margin: 5px 5px 0px 5px;
  border-radius: 5px;
  padding-left: 5px;
  display: flex;
  align-items: center;
}
.data-export-widget .table-creator .selector-section .selection-area .draggable-cell .cell-delete {
  width: 7%;
  color: red;
}
.data-export-widget .table-creator .selector-section .selection-area .draggable-cell .cell-delete:hover {
  text-decoration: none !important;
  cursor: pointer;
  border: none;
}
.data-export-widget .table-creator .selector-section .selection-area .draggable-cell.parameter {
  color: white;
}
.data-export-widget .table-creator .halfed-section {
  flex-direction: row;
}
.data-export-widget .table-creator .halfed-section .half-section {
  padding: 0 5px 5px;
  display: flex;
  flex-direction: column;
  width: 50%;
}
.data-export-widget .table-creator .halfed-section .half-section.third {
  width: 33.5%;
}
.data-export-widget .table-creator .halfed-section .half-section.sixth {
  width: 66.5%;
}
.data-export-widget .table-creator .halfed-section .half-section.left-section {
  padding: 0 5px 0px 0px;
}
.data-export-widget .table-creator .halfed-section .half-section.right-section {
  padding: 0 0px 0px 5px;
}
.data-export-widget .table-creator .pivot-selectors {
  display: flex;
}
.data-export-widget .table-creator .vertically-halved-section {
  height: 100%;
}
.data-export-widget .table-creator .vertically-halved-section .radio-section {
  height: 50%;
  font-size: 0.7em;
}
.data-export-widget .table-creator .vertically-halved-section .radio-section.agg-time {
  height: 40%;
}
.data-export-widget .table-creator .vertically-halved-section .radio-section.agg-type {
  height: 60%;
}
.data-export-widget .table-creator .vertically-halved-section .radio-title {
  font-size: 1.2em;
}
.data-export-widget .table-creator .radio-buttons {
  display: flex;
  flex-wrap: wrap;
}
.data-export-widget .table-creator .radio-buttons .radio-button {
  flex-direction: row;
}
.data-export-widget .table-creator .radio-buttons .radio-button.half {
  width: 50%;
}
.data-export-widget .table-creator .radio-buttons .radio-button.third {
  width: 33.3%;
}
.data-export-widget .table-creator .radio-buttons input[type=radio] {
  margin-top: -1px;
  vertical-align: middle;
  transform: scale(0.7, 0.7);
  -moz-transform: scale(0.7, 0.7);
  -ms-transform: scale(0.7, 0.7);
  -webkit-transform: scale(0.7, 0.7);
  -o-transform: scale(0.7, 0.7);
}
.data-export-widget .table-creator .radio-buttons label {
  margin: 0;
}
.data-export-widget .table-creator .buttons {
  height: 7%;
  display: flex;
  align-items: center;
}
.data-export-widget .table-creator .buttons .excel {
  color: white;
  border-style: none;
  background: green;
  margin-left: 7px;
  border-radius: 5px;
  padding: 3px 5px;
}
.data-export-widget .table-creator .buttons .excel:hover {
  background: #007900;
  text-decoration: none;
  cursor: pointer;
}

.data-popup {
  display: none;
  position: fixed;
  background: white;
  padding: 15px;
  margin: 2px;
  border: 1px solid black;
  top: 100px;
  left: 70px;
  right: 70px;
  bottom: 50px;
  z-index: 10;
}

.data-popup-content {
  position: relative;
  width: 100%;
  height: 100%;
}
.data-popup-content .data-popup-table {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 60px;
  overflow: auto;
}
.data-popup-content .data-popup-table table, .data-popup-content .data-popup-table tr, .data-popup-content .data-popup-table td, .data-popup-content .data-popup-table th {
  border: solid 1px grey;
}
.data-popup-content .data-popup-table table {
  border-collapse: collapse;
}
.data-popup-content .data-popup-table table td, .data-popup-content .data-popup-table table th {
  padding: 5px 10px;
}
.data-popup-content .data-popup-table table th {
  background-color: #acacac;
}
.data-popup-content .progress-animation {
  width: 100%;
  height: 100%;
  text-align: center;
  position: absolute;
  background-color: white;
  opacity: 0.5;
}
.data-popup-content .progress-animation img {
  max-width: 100%;
  max-height: 100%;
}
.data-popup-content .data-popup-toolbar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  text-align: right;
}

.description-viewer {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 1px;
  text-align: center;
}
.description-viewer .description-container {
  position: relative;
  height: 100%;
  width: fit-content;
  margin: auto;
}
.description-viewer .hover-panel {
  font-size: 0.65em;
  position: absolute;
  border: 1px solid greenyellow;
  border-radius: 3px;
  padding: 5px;
  background: white;
  display: none;
}
.description-viewer .description-map-item, .description-viewer .description-scheme, .description-viewer .description-measurement, .description-viewer .description-image {
  position: absolute;
  border-radius: 3px;
  opacity: 0.2;
  transition: 0.3s;
  border-style: solid;
  border-width: 3px;
  cursor: pointer;
}
.description-viewer .description-image {
  background-color: #58f858;
  border-color: #029202;
}
.description-viewer .description-image:hover {
  background-color: #19f019;
  border-color: #029202;
  opacity: 0.4;
}
.description-viewer .description-measurement {
  background-color: #e28073;
  border-color: #8a3a2f;
}
.description-viewer .description-measurement:hover {
  background-color: #fc3d3d;
  border-color: #8a3a2f;
  opacity: 0.4;
}
.description-viewer .description-scheme {
  background-color: #e2c473;
  border-color: #9c8138;
}
.description-viewer .description-scheme:hover {
  background-color: #eeb004;
  opacity: 0.4;
}
.description-viewer .description-map {
  width: 100%;
  height: 100%;
  max-height: 100%;
  top: 0;
  left: 0;
  position: absolute;
}
.description-viewer img {
  max-width: 100%;
  max-height: 100%;
  height: 100%;
}
.description-viewer img:before {
  content: "Image not found";
  display: block;
  position: absolute;
  height: 50px;
  width: 100%;
  padding: 30px;
}

.evaluation-details {
  height: 100%;
  position: relative;
  padding: 10px;
}
.evaluation-details .evaluation-layout {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  top: 74px;
  display: flex;
  flex-direction: row;
}
.evaluation-details .evaluation-layout .evaluation-buttons {
  flex: 0 1 200px;
}
.evaluation-details .evaluation-layout .evaluation-buttons .short {
  display: none;
}
.evaluation-details .evaluation-layout .evaluation-buttons .long {
  display: inline;
}
.evaluation-details .evaluation-layout .evaluation-buttons.narrow {
  flex: 0 1 50px;
}
.evaluation-details .evaluation-layout .evaluation-buttons.narrow .short {
  display: inline;
}
.evaluation-details .evaluation-layout .evaluation-buttons.narrow .long {
  display: none;
}
.evaluation-details .evaluation-layout .evaluation-visual {
  flex: 2 0 auto;
  padding: 0 15px 15px 15px;
  position: relative;
}
.evaluation-details .evaluation-layout .evaluation-visual .visual-content {
  background-color: rgba(220, 220, 220, 0.1);
  height: 100%;
  position: relative;
}
.evaluation-details .evaluation-layout .evaluation-visual .visual-content .chart {
  position: absolute;
  top: 90px;
  left: 0;
  bottom: 0;
  right: 0;
}
.evaluation-details .evaluation-layout .evaluation-visual .visual-content .chart .strip {
  fill: rgba(220, 220, 220, 0);
}
.evaluation-details .evaluation-layout .evaluation-visual .visual-content .chart .strip:hover {
  fill: rgba(220, 220, 220, 0.5);
}
.evaluation-details .evaluation-layout .evaluation-visual .visual-content .statistics {
  position: absolute;
  top: 10px;
  width: 180px;
  height: 95px;
  right: 10px;
  background-color: rgba(192, 192, 192, 0.8);
  border: solid 2px rgba(192, 192, 192, 0.8);
  border-radius: 10px;
  padding: 10px;
  text-align: center;
}
.evaluation-details .evaluation-layout .evaluation-visual .visual-content .statistics .statistics-table {
  display: flex;
  flex-direction: row;
}
.evaluation-details .evaluation-layout .evaluation-visual .visual-content .statistics .statistics-table div {
  flex: 1 0 auto;
}

.evaluation-viewer {
  height: 100%;
  position: relative;
  padding: 10px;
}
.evaluation-viewer .evaluation-layout {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  top: 70px;
}
.evaluation-viewer .evaluation-layout .visual-content {
  background-color: rgba(220, 220, 220, 0.1);
  height: 100%;
  position: relative;
}
.evaluation-viewer .evaluation-layout .visual-content .chart {
  position: absolute;
  top: 90px;
  left: 0;
  bottom: 0;
  right: 0;
}
.evaluation-viewer .evaluation-layout .visual-content .chart .strip {
  fill: rgba(220, 220, 220, 0);
}
.evaluation-viewer .evaluation-layout .visual-content .chart .strip:hover {
  fill: rgba(220, 220, 220, 0.5);
}
.evaluation-viewer .evaluation-layout .visual-content .statistics {
  position: absolute;
  top: 10px;
  width: 250px;
  height: 70px;
  right: 10px;
  background-color: rgba(192, 192, 192, 0.8);
  border: solid 2px rgba(192, 192, 192, 0.8);
  border-radius: 10px;
  padding: 10px;
  text-align: center;
}
.evaluation-viewer .evaluation-layout .visual-content .statistics .statistics-table {
  display: flex;
  flex-direction: row;
}
.evaluation-viewer .evaluation-layout .visual-content .statistics .statistics-table div {
  flex: 1 0 auto;
}

.project-header .version-info {
  margin-left: 20px;
  color: #afafaf;
  font-weight: 400;
  font-size: 14px;
}

.help-section {
  margin: 0 0 0 5px;
  border: 1px solid navy;
}
.help-section .help-section-header {
  padding: 3px 35px 3px 10px;
  position: relative;
  height: 38px;
  position: relative;
}
.help-section .help-section-header button {
  position: absolute;
  right: 5px;
  top: 5px;
  height: 25px;
  padding: 0 10px;
}
.help-section .help-section-content {
  padding: 5px;
}

.image-viewer {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 1px;
  text-align: center;
}
.image-viewer img {
  max-width: 100%;
  max-height: 100%;
}
.image-viewer img:before {
  content: "Image not found";
  display: block;
  position: absolute;
  height: 50px;
  width: 100%;
  padding: 30px;
}

.message-bar {
  background-color: #ffffd0;
  padding: 5px 20px;
  border: 1px solid #ced4da;
}
.message-bar .action-buttons {
  margin-left: 20px;
}
.message-bar .action-buttons .action-button {
  padding: 0 10px;
}

.metadata-viewer {
  height: 100%;
  position: relative;
  padding: 10px;
}
.metadata-viewer .first-level-row {
  float: right;
}
.metadata-viewer .first-level-row .first-level-button {
  display: inline-block;
  border-radius: 3px;
  border: 1px solid gray;
  padding: 0 10px 5px 10px;
  margin: 0 5px 0 0;
  cursor: pointer;
}
.metadata-viewer .first-level-row .first-level-button span {
  border-bottom: 2px solid gray;
}
.metadata-viewer .first-level-row .first-level-button.active span {
  border-bottom-color: green;
}
.metadata-viewer .metadata-layout {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  top: 74px;
  display: flex;
  flex-direction: row;
}
.metadata-viewer .metadata-layout .metadata-visual {
  flex: 2 0 auto;
  padding: 0 15px 15px 15px;
  position: relative;
  width: 100%;
}
.metadata-viewer .metadata-layout .metadata-visual .visual-content {
  background-color: rgba(220, 220, 220, 0.1);
  height: 100%;
  position: relative;
  overflow: auto;
}

.modal-background {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(160, 160, 160, 0.5);
}

.modal-body {
  overflow: auto;
  max-height: 600px;
}

.pages-control .pages {
  height: 40px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  background-color: #343a40;
}
.pages-control .pages .control-button {
  width: 40px;
  height: 100%;
  padding: 5px;
  background-color: gray;
  display: flex;
  justify-content: center;
}
.pages-control .pages .download-button {
  width: 90px;
  height: 100%;
  padding: 5px;
  background-color: gray;
  display: flex;
  justify-content: center;
}
.pages-control .pages .pages-info {
  flex: 1;
  padding: 0 10px;
  background-color: gray;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  height: 100%;
  align-items: center;
}
.pages-control .pages .pages-divider {
  flex-grow: 2;
  height: 100%;
}
.pages-control .pages .pages-divider.active {
  background-color: #28a745;
  height: 10px;
}
.pages-control .tabs {
  padding: 0px 10px;
  height: 40px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  background-color: gray;
  border-top: 0.5px solid #343a40;
}

.portal {
  height: 100%;
  width: 100%;
  position: relative;
}
.portal .portal-section {
  position: absolute;
}
.portal .portal-section.portal-top-left {
  top: 0px;
  left: 0px;
  width: 150px;
  height: 100px;
}
.portal .portal-section.portal-top-right {
  top: 0px;
  right: 0px;
  left: 150px;
  height: 100px;
}
.portal .portal-section.portal-bottom-left {
  bottom: 0px;
  left: 0px;
  width: 150px;
  top: 100px;
}
.portal .portal-section.portal-bottom-right {
  bottom: 0px;
  right: 0px;
  left: 150px;
  top: 100px;
  overflow: auto;
}

.process-viewer {
  height: 100%;
  position: relative;
}
.process-viewer .process-no-source {
  position: absolute;
  top: 50%;
  width: 100%;
  text-align: center;
  font-size: 25px;
  color: #6f6f6f;
  font-weight: 400;
}
.process-viewer .process-info-panel {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  padding: 20px 20px 0px 90px;
  z-index: 8;
}
.process-viewer .process-info-panel .process-info {
  background-color: #cfcfcf;
  border-radius: 5px;
  flex: 1;
  text-align: center;
  padding: 5px 10px;
  margin-right: 10px;
  font-size: 20px;
}
.process-viewer .process-info-panel .process-info.standard-selector {
  cursor: pointer;
}
.process-viewer .process-switch {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  padding: 20px 30px 0px 90px;
  z-index: 8;
}
.process-viewer .process-result {
  padding: 10px 20px 20px 20px;
  position: relative;
}
.process-viewer .process-result .hover-panel {
  position: absolute;
  border: 1px solid greenyellow;
  border-radius: 3px;
  padding: 5px;
  background: white;
  display: none;
}
.process-viewer .process-result .process-columns {
  display: flex;
}
.process-viewer .process-result .process-columns .process-column {
  border-right: 4px solid gray;
}
.process-viewer .process-result .process-columns .process-column.labels {
  flex: 0 1 140px;
}
.process-viewer .process-result .process-columns .process-column.process {
  flex: 2 0 0%;
}
.process-viewer .process-result .process-columns .process-column .process-row {
  height: 150px;
  margin: 20px 15px;
}
.process-viewer .process-result .process-columns .process-column .process-row.process-label {
  text-align: center;
  border-radius: 20px;
  min-height: 150px;
  color: black;
  font-weight: 600;
  font-size: 30px;
  word-break: break-word;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
}
.process-viewer .process-result .process-columns .process-column .product-row {
  height: 90px;
}
.process-viewer .process-result .process-columns .process-column .product-row.product-label {
  text-align: right;
  margin: 0;
  padding: 10px 15px;
  font-size: 25px;
  font-weight: 600;
}
.process-viewer .process-result .process-columns .process-column .product-row.product-label .product-name {
  white-space: nowrap;
}
.process-viewer .process-result .process-columns .process-column .product-row.product-label .unit-of-measure {
  background-color: #cfcfcf;
  font-size: 14px;
  border-radius: 3px;
  float: right;
  padding: 2px 10px;
}
.process-viewer .process-result .process-columns .process-column .product-row.product-value .value-cell {
  display: flex;
  flex-direction: row;
}
.process-viewer .process-result .process-columns .process-column .product-row.product-value .value-cell .value-data {
  flex: 1 0 0%;
  height: 90px;
  background-clip: border-box;
  background-origin: border-box;
  background-size: cover;
  background-position: center bottom;
  margin: 0;
  cursor: pointer;
  padding: 22px 5px;
  text-align: center;
  color: black;
  font-weight: 600;
  font-size: 25px;
  border-right: 1px solid #202020;
}
.process-viewer .process-result .process-columns .process-column .product-row.product-value .value-cell .value-data:last-child {
  border-right: none;
}
.process-viewer .process-result .process-columns .process-column .product-row.product-value .value-cell .value-data.standard-green {
  color: #006818;
}
.process-viewer .process-result .process-columns .process-column .product-row.product-value .value-cell .value-data.standard-amber {
  color: #cc6633;
}
.process-viewer .process-result .process-columns .process-column .product-row.product-value .value-cell .value-data.standard-red {
  color: red;
}
.process-viewer .process-result .process-columns .process-column .product-row.product-value .value-cell .value-data.selected {
  padding: 20px 3px;
  border: 2px solid red;
}
.process-viewer .process-result .process-columns .process-column .product-row.product-value .value-cell .value-data.hover {
  padding: 20px 3px;
  border: 2px solid orange;
  background-blend-mode: lighten;
}
.process-viewer .process-result .process-columns .process-column .product-row.product-value .value-cell .value-data.hover.selected {
  padding: 20px 3px;
  border: 2px solid purple;
}
.process-viewer .value-data {
  background-image: url("img/rain.png");
}
.process-viewer .water {
  background-image: url("img/tryska.png");
}
.process-viewer .plant {
  background-image: url("img/veget.png");
}
.process-viewer .plant.grass {
  background-image: url("img/trava1.png");
}
.process-viewer .plant.flowers {
  background-image: url("img/kytky.png");
}
.process-viewer .plant.bushes {
  background-image: url("img/krovi.png");
}
.process-viewer .soil {
  background-image: url("img/zeme1.png");
}
.process-viewer .filtrate {
  background-image: url("img/voda1.png");
}
.process-viewer .stavanger .water {
  background-image: url("img/pile.jpg");
}

.report-viewer {
  display: flex;
  height: 100%;
  flex-direction: column;
}
.report-viewer .report-paging {
  min-height: 40px;
  max-height: 80px;
}
.report-viewer .report-content {
  flex: 1;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  overflow: hidden;
}
.report-viewer .report-content .report-widget {
  width: 60%;
  height: 100%;
  position: relative;
  overflow: auto;
}
.report-viewer .report-content .report-description {
  width: 40%;
  height: 100%;
  background-color: #ebebeb;
  padding: 5px;
  overflow: auto;
}
.report-viewer .report-content .data-description {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}
.report-viewer .report-content .data-description .report-data-series {
  flex-grow: 1;
}
.report-viewer .report-content .data-description .report-description-buttons {
  width: 40px;
}
.report-viewer .progress-animation {
  width: 100%;
  height: 100%;
  text-align: center;
  opacity: 0.5;
}
.report-viewer .progress-animation img {
  max-width: 100%;
  max-height: 100%;
}

.selector-dialog {
  display: none;
  position: fixed;
  background: white;
  padding: 15px;
  margin: 2px;
  border: 1px solid black;
  z-index: 10;
}
.selector-dialog .selector-button {
  color: white;
}
.selector-dialog .selector-button.active {
  background-color: #00BFFF !important;
}

.series-control .series-info .path-info {
  display: inline-block;
  padding: 1px 10px 1px 10px;
  background-color: #7f7f7f;
  border-radius: 5px;
  margin: 0 5px 5px 0;
  position: relative;
}
.series-control .series-info .path-info .path-delete {
  margin-left: 5px;
  text-decoration: none;
  font-weight: bold;
  color: red;
  cursor: pointer;
}
.series-control .series-info .path-info .path-delete:hover {
  text-decoration: none;
}
.series-control .series-info .path-info:hover .tooltiptext {
  visibility: visible;
}
.series-control .series-info .path-info .tooltiptext {
  display: none;
  visibility: hidden;
  width: 100%;
  max-width: 200%;
  top: 100%;
  left: 50%;
  margin-left: -50%;
  /* Use half of the width (120/2 = 60), to center the tooltip */
  background-color: #464b50;
  color: white;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;
  position: absolute;
  z-index: 10;
}
.series-control .series-info .path-info .tooltiptext::after {
  content: " ";
  position: absolute;
  bottom: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent #464b50 transparent;
}

.specification-viewer {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 35px;
  padding: 1px;
}

.static-map {
  height: 100%;
  position: relative;
  padding: 10px;
}
.static-map .static-map-layout {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  top: 74px;
  display: flex;
  flex-direction: row;
}
.static-map .static-map-layout .static-map-visual {
  flex: 2 0 auto;
  padding: 0 15px 15px 15px;
  position: relative;
  width: 100%;
}
.static-map .static-map-layout .static-map-visual .visual-content {
  background-color: rgba(220, 220, 220, 0.1);
  height: 100%;
  position: relative;
  overflow: auto;
}

.timelapse-viewer {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 35px;
  padding: 1px;
  text-align: center;
}
.timelapse-viewer .progress-animation {
  width: 100%;
  height: 100%;
  text-align: center;
  position: absolute;
  background-color: white;
  opacity: 0.5;
}
.timelapse-viewer img {
  max-width: 100%;
  max-height: 100%;
}
.timelapse-viewer img:before {
  content: "Image not found";
  display: block;
  position: absolute;
  height: 50px;
  width: 100%;
  padding: 30px;
}

.loading-overlay {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 35px;
  margin-right: auto;
  margin-left: auto;
  padding: 1px;
  background: white;
  opacity: 0.4;
  height: 100%;
  transition: 0.5s ease;
  text-align: center;
}

.loader-viewer {
  height: 100%;
  width: 100%;
}

.timelapse-progress .button {
  float: right;
  width: 70px;
  margin-right: 5px;
}
.timelapse-progress .button button {
  width: 100%;
}
.timelapse-progress .progress {
  margin: 0 80px 0 5px;
}

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