@charset "UTF-8";
/* CSS Code wenn Dark Mode aktiv */
body {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 0.9375rem;
  color: #000;
  overflow-x: hidden;
  background-color: white;
}

.container {
  max-width: 1440px;
}
@media screen and (max-width: 575px) {
  .container {
    padding-left: 0.625rem;
    padding-right: 0.625rem;
  }
}

.playContainer {
  margin-left: -0.625rem;
  margin-right: -0.625rem;
  margin-bottom: 1.25rem;
}
.playContainer .table-responsive th.event .month {
  font-size: 1rem;
}
.playContainer .table-responsive th.event .day {
  font-size: 1.5rem;
  line-height: 1.5rem;
}
.playContainer .table-responsive th.event.hasInfo {
  text-decoration: underline;
  cursor: pointer;
}
.playContainer .table-responsive .event {
  text-align: center;
}
.playContainer .table-responsive .event.status_0 {
  zoom: 1;
}
.playContainer .table-responsive .event.status_1 {
  background-color: #3c3;
  background: linear-gradient(135deg, #33cc33 0%, rgba(51, 204, 51, 0.5) 100%);
}
.playContainer .table-responsive .event.status_2 {
  background-color: #f33;
  background: linear-gradient(135deg, #ff3333 0%, rgba(255, 51, 51, 0.5) 100%);
}
.playContainer .table-responsive .event.status_3 {
  background-color: #f90;
  background: linear-gradient(135deg, #ff9900 0%, rgba(255, 153, 0, 0.5) 100%);
}

.board-footer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16.25rem, 1fr));
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 575px) {
  .board-footer {
    grid-template-columns: 1fr;
    gap: 0.625rem;
  }
}
.board-footer .panel {
  display: flex;
  flex-direction: column;
  padding: 0.875rem 1rem;
  background-color: #eee;
  border-left: 0.25rem solid #01696f;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.board-footer .panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.625rem;
  margin-bottom: 0.5rem;
}
.board-footer .panel-title {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03125rem;
}
.board-footer .panel-badge {
  flex: 0 0 auto;
  padding: 0.125rem 0.5rem;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03125rem;
  white-space: nowrap;
  color: white;
  background-color: #666;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.board-footer .panel-badge.is-on {
  color: #333;
  background-color: #3c3;
}
.board-footer .panel-badge.is-off {
  background-color: #666;
}
.board-footer .panel-text {
  flex: 1 1 auto;
  margin: 0 0 0.75rem;
  font-size: 0.875rem;
  line-height: 1.45;
  color: #666;
}
.board-footer .panel-text--hint {
  flex: 0 0 auto;
  font-size: 0.8125rem;
}
.board-footer .panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: auto;
}

.panel-btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  color: #01696f;
  background-color: transparent;
  border: 0.0625rem solid #01696f;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-transition: background-color 0.15s ease, color 0.15s ease;
  -moz-transition: background-color 0.15s ease, color 0.15s ease;
  -ms-transition: background-color 0.15s ease, color 0.15s ease;
  -o-transition: background-color 0.15s ease, color 0.15s ease;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.panel-btn:hover, .panel-btn:focus {
  color: white;
  background-color: #01696f;
  text-decoration: none;
}
.panel-btn--primary {
  color: white;
  background-color: #01696f;
}
.panel-btn--primary:hover, .panel-btn--primary:focus {
  background-color: rgb(0.2850140056%, 29.9264705882%, 31.6365546218%);
}
.panel-btn:disabled, .panel-btn.deactivated {
  opacity: 0.5;
  cursor: default;
}

.index[data-loggedin] .playContainer tr.play td.user {
  cursor: pointer;
}

.loginError {
  margin: 0.625rem 0 0.875rem;
  font-size: 0.875rem;
  color: #f33;
}

.buttons {
  margin-bottom: 1.25rem;
}
.buttons a {
  color: white;
}

.changePlayContainer .changePlayBox {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.changePlayContainer .changePlayBox .changePlayElement {
  position: relative;
  width: 30%;
  min-height: 50px;
  padding-bottom: 30%;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  background-color: #eee;
  background: linear-gradient(135deg, #eeeeee 0%, rgba(238, 238, 238, 0.5) 100%);
  cursor: pointer;
}
.changePlayContainer .changePlayBox .changePlayElement.status_1 {
  background-color: #3c3;
  background: linear-gradient(135deg, #33cc33 0%, rgba(51, 204, 51, 0.5) 100%);
}
.changePlayContainer .changePlayBox .changePlayElement.status_1 .content svg {
  fill: rgb(8%, 32%, 8%);
}
.changePlayContainer .changePlayBox .changePlayElement.status_2 {
  background-color: #f33;
  background: linear-gradient(135deg, #ff3333 0%, rgba(255, 51, 51, 0.5) 100%);
}
.changePlayContainer .changePlayBox .changePlayElement.status_2 .content svg {
  fill: #990000;
}
.changePlayContainer .changePlayBox .changePlayElement.status_3 {
  background-color: #f90;
  background: linear-gradient(135deg, #ff9900 0%, rgba(255, 153, 0, 0.5) 100%);
}
.changePlayContainer .changePlayBox .changePlayElement.status_3 .content svg {
  fill: rgb(40%, 24%, 0%);
}
.changePlayContainer .changePlayBox .changePlayElement .content {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.changePlayContainer .changePlayBox .changePlayElement .content svg {
  -webkit-transition: all 0.33s ease;
  -moz-transition: all 0.33s ease;
  -ms-transition: all 0.33s ease;
  -o-transition: all 0.33s ease;
  transition: all 0.33s ease;
  opacity: 0;
  width: 50px;
  height: 50px;
  fill: rgb(63.3333333333%, 63.3333333333%, 63.3333333333%);
}
.changePlayContainer .changePlayBox .changePlayElement:hover .content svg, .changePlayContainer .changePlayBox .changePlayElement.active .content svg {
  opacity: 1;
}

.playInfoList .playInfoRow {
  display: grid;
  grid-template-columns: 1.25rem 1fr auto;
  align-items: center;
  gap: 0.75rem;
  padding: 0.375rem 0;
  border-bottom: 1px solid #eee;
}
.playInfoList .playInfoRow:last-child {
  border-bottom: 0;
}
.playInfoList .playInfoRow .square {
  width: 1rem;
  height: 1rem;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  background-color: #ccc;
}
.playInfoList .playInfoRow .square.status_1 {
  background-color: #3c3;
}
.playInfoList .playInfoRow .square.status_2 {
  background-color: #f33;
}
.playInfoList .playInfoRow .square.status_3 {
  background-color: #f90;
}
.playInfoList .playInfoRow .date {
  color: #666;
  font-size: 0.875rem;
  text-align: right;
  white-space: nowrap;
}
.playInfoList .playInfoRow .name {
  font-weight: 700;
}
.playInfoList .playInfoEmpty {
  color: #666;
  padding: 0.375rem 0;
}

body[data-options="3"] .changePlayContainer .changePlayBox .changePlayElement {
  width: 24%;
  padding-bottom: 24%;
}

.table tr.headline > th {
  background-color: #eee;
  background: linear-gradient(135deg, #eeeeee 0%, rgba(238, 238, 238, 0.5) 100%);
}
.table tr.headline > th:nth-child(2) {
  background-color: #999;
  background: linear-gradient(135deg, #999999 0%, rgba(153, 153, 153, 0.5) 100%);
  color: white;
}
.table tr.headline > th.isSpecial {
  background-color: #909;
  background: linear-gradient(135deg, #990099 0%, rgba(153, 0, 153, 0.5) 100%);
  color: white;
}
.table tr.headline > th.isIncident {
  background-color: #000;
  background: linear-gradient(135deg, black 0%, rgba(0, 0, 0, 0.5) 100%);
  color: white;
}
.table tr.headline > th.user {
  background-color: #999;
}
.table tr.headline > th.user .topline {
  color: #999;
  text-transform: uppercase;
  font-size: 1.5rem;
}
.table tr.headline > th.user .subline {
  color: #999;
  font-size: 1rem;
}
.table tr.count > th {
  background-color: #999;
  background: linear-gradient(135deg, #999999 0%, rgba(153, 153, 153, 0.5) 100%);
}
.table tr.count > th.event.count {
  cursor: pointer;
}
.table tr.count > th.event.count .info-line {
  display: flex;
  justify-content: center;
  margin-top: 0.375rem;
}
.table tr.count > th.event.count .info-line .info-icon {
  width: 1.125rem;
  height: 1.125rem;
  fill: white;
  pointer-events: none;
}
.table tr.count > th.isSpecial {
  background-color: #909;
  background: linear-gradient(135deg, #990099 0%, rgba(153, 0, 153, 0.5) 100%);
  color: white;
}
.table tr.count > th.isIncident {
  background-color: #000;
  background: linear-gradient(135deg, black 0%, rgba(0, 0, 0, 0.5) 100%);
  color: white;
}
.table tr.count > th.user {
  color: white;
}
.table tr.count > th .wrapper {
  color: white;
  font-size: 1.125rem;
  background-color: #f33;
  background: linear-gradient(135deg, #ff3333 0%, rgba(255, 51, 51, 0.5) 100%);
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.table tr.count > th.good .wrapper {
  background-color: #3c3;
  background: linear-gradient(135deg, #33cc33 0%, rgba(51, 204, 51, 0.5) 100%);
}
.table tr.count > th.almostgood .wrapper {
  background-color: #ffd700;
  background: linear-gradient(135deg, gold 0%, rgba(255, 215, 0, 0.5) 100%);
}
.table tr.play td.event {
  cursor: pointer;
}
.table tr:nth-child(even) > td {
  background-color: #eee;
  background: linear-gradient(135deg, #eeeeee 0%, rgba(238, 238, 238, 0.5) 100%);
}
.table tr:nth-child(even) > td.isSpecial {
  background-color: #909;
  background: linear-gradient(135deg, rgba(153, 0, 153, 0.5) 0%, rgba(153, 0, 153, 0.25) 100%);
  color: white;
}
.table tr:nth-child(even) > td.isIncident {
  background-color: #000;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.5) 100%);
  color: white;
}
.table tr:nth-child(odd) > td {
  background-color: #ccc;
  background: linear-gradient(135deg, #cccccc 0%, rgba(204, 204, 204, 0.5) 100%);
}
.table tr:nth-child(odd) > td.isSpecial {
  background-color: #909;
  background: linear-gradient(135deg, rgba(153, 0, 153, 0.5) 0%, rgba(153, 0, 153, 0.25) 100%);
  color: white;
}
.table tr:nth-child(odd) > td.isIncident {
  background-color: #000;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.5) 100%);
  color: white;
}
.table th {
  font-weight: 700;
}
.table td,
.table th {
  border-top: none;
  background: #eee;
  background: linear-gradient(135deg, #eeeeee 0%, rgba(238, 238, 238, 0.5) 100%);
}
.table td:first-child,
.table th:first-child {
  position: sticky;
  left: 0px;
  font-size: 1.125rem;
}
.table td.user div,
.table th.user div {
  max-width: calc((100vw - 24px) / 2);
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  cursor: pointer;
}
@media screen and (min-width: 576px) {
  .table td.user div,
  .table th.user div {
    max-width: calc((100vw - 24px) / 3);
  }
}

@media screen and (min-width: 768px) {
  .stoerer {
    position: absolute;
    top: 0.625rem;
    right: 0.625rem;
    max-width: 20vw;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
  }
}
.stoerer {
  background-color: #909;
  padding: 0.625rem;
}
.stoerer .head {
  font-weight: 700;
  font-size: 1.125rem;
  color: white;
}
.stoerer .text {
  font-weight: 400;
  font-size: 0.9375rem;
  color: white;
}
.stoerer .text a {
  color: white;
  text-decoration: underline;
}

.deleteUserContainer {
  margin-top: 1rem;
  border-top: 1px solid #dee2e6;
  padding-top: 1rem;
}
.deleteUserContainer .deleteUserBox.finisher {
  display: none;
}
.deleteUserContainer .deleteUserBox .flex {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.deleteUserContainer .deleteUserBox .flex a {
  flex-shrink: 0;
}

.statistik {
  padding-bottom: 2.5rem;
}
.statistik h2 {
  font-size: 1.375rem;
  font-weight: 700;
  margin: 1.875rem 0 0.75rem;
  padding-bottom: 0.375rem;
  border-bottom: 1px solid #ccc;
}
.statistik .stat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.625rem;
  padding: 0.9375rem 0;
}
.statistik .stat-head .topline {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.875rem;
}
.statistik .stat-head .subline {
  font-size: 1rem;
  color: #666;
}
.statistik .stat-head a {
  color: white;
  white-space: nowrap;
}
.statistik .stat-note {
  font-size: 0.8125rem;
  color: #666;
  margin: 0.625rem 0 1.25rem;
}
.statistik .stat-note p {
  margin-bottom: 0.625rem;
}
.statistik .stat-glossary {
  display: grid;
  grid-template-columns: 6.875rem 1fr;
  gap: 0.25rem 0.875rem;
  margin: 0 0 0.625rem;
}
@media screen and (max-width: 575px) {
  .statistik .stat-glossary {
    grid-template-columns: 1fr;
    gap: 0.0625rem 0;
  }
}
.statistik .stat-glossary dt {
  font-weight: 700;
  color: #000;
}
.statistik .stat-glossary dd {
  margin: 0;
}
.statistik .stat-glossary .trend {
  font-size: 0.625rem;
}
.statistik .stat-glossary .trend.trend-up {
  color: #3c3;
}
.statistik .stat-glossary .trend.trend-down {
  color: #f33;
}
.statistik .stat-glossary .trend.trend-flat {
  color: #999;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(11.25rem, 1fr));
  gap: 0.625rem;
  margin-bottom: 1.25rem;
}
.kpi-grid.small {
  margin-top: 1.25rem;
  grid-template-columns: repeat(auto-fill, minmax(10rem, 1fr));
}
@media screen and (max-width: 575px) {
  .kpi-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
}
.kpi-grid .kpi {
  padding: 0.75rem 0.875rem;
  background-color: #eee;
  border-left: 0.25rem solid #999;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.kpi-grid .kpi .kpi-value {
  font-size: 1.875rem;
  line-height: 2.125rem;
  font-weight: 700;
}
.kpi-grid .kpi .kpi-value.is-name {
  font-size: 1.25rem;
  line-height: 1.5rem;
  padding: 0.3125rem 0;
}
.kpi-grid .kpi .kpi-label {
  font-size: 0.875rem;
  font-weight: 700;
}
.kpi-grid .kpi .kpi-sub {
  font-size: 0.75rem;
  color: #666;
  margin-top: 0.125rem;
}
.kpi-grid .kpi.is-green {
  border-left-color: #3c3;
}
.kpi-grid .kpi.is-red {
  border-left-color: #f33;
}
.kpi-grid .kpi.is-orange {
  border-left-color: #f90;
}
.kpi-grid .kpi.is-special {
  border-left-color: #909;
}
.kpi-grid .kpi.is-gray {
  border-left-color: #999;
}
.kpi-grid .kpi.is-dark {
  border-left-color: #000;
}

.chart-block {
  margin-bottom: 1.5625rem;
}
.chart-block .chart-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem 1rem;
  font-size: 0.75rem;
  color: #666;
  margin: 0.75rem 0 0.5rem;
}
.chart-block .chart-legend .legend {
  display: inline-flex;
  align-items: center;
}
.chart-block .chart-legend .legend:before {
  content: "";
  display: inline-block;
  width: 1rem;
  height: 0.1875rem;
  margin-right: 0.375rem;
  background-color: #999;
}
.chart-block .chart-legend .legend.thin:before {
  background-color: #ccc;
}
.chart-block .chart-legend .legend.strong:before {
  background-color: #3c3;
  height: 0.25rem;
}
.chart-block .chart-legend .legend.target:before {
  background-color: #f90;
}
.chart-block .chart-legend .legend.box:before {
  width: 0.75rem;
  height: 0.75rem;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.chart-block .chart-legend .legend.green:before {
  background-color: #3c3;
}
.chart-block .chart-legend .legend.red:before {
  background-color: #f33;
}
.chart-block .chart-legend .legend.gray:before {
  background-color: #ccc;
}
.chart-block .chart-legend .legend.lvl-1:before {
  background-color: rgba(255, 51, 51, 0.85);
}
.chart-block .chart-legend .legend.lvl-2:before {
  background-color: rgba(255, 153, 0, 0.8);
}
.chart-block .chart-legend .legend.lvl-3:before {
  background-color: rgba(51, 204, 51, 0.55);
}
.chart-block .chart-legend .legend.lvl-4:before {
  background-color: rgba(51, 204, 51, 0.8);
}
.chart-block .chart-legend .legend.lvl-5:before {
  background-color: #33cc33;
}
.chart-block .chart-legend .legend.lvl-none:before {
  background-color: #eee;
  border: 1px solid #ccc;
}
.chart-block .chart-legend .legend.mx-1:before {
  background-color: rgba(51, 204, 51, 0.15);
}
.chart-block .chart-legend .legend.mx-3:before {
  background-color: rgba(51, 204, 51, 0.5);
}
.chart-block .chart-legend .legend.mx-5:before {
  background-color: rgba(51, 204, 51, 0.9);
}

.chart-line {
  position: relative;
  padding-left: 1.75rem;
}
.chart-line svg {
  display: block;
  width: 100%;
  height: 15rem;
  overflow: visible;
}
.chart-line svg .grid {
  stroke: #ccc;
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}
.chart-line svg .target {
  stroke: #f90;
  stroke-width: 1.5;
  stroke-dasharray: 6 4;
  vector-effect: non-scaling-stroke;
}
.chart-line svg .area {
  fill: rgba(51, 204, 51, 0.12);
  stroke: none;
}
.chart-line svg .raw {
  fill: none;
  stroke: #ccc;
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}
.chart-line svg .avg {
  fill: none;
  stroke: #3c3;
  stroke-width: 2.5;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}
.chart-line .chart-scale {
  position: absolute;
  left: 0;
  top: 0;
  height: 15rem;
  width: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  font-size: 0.6875rem;
  color: #666;
}
.chart-line .chart-axis {
  position: relative;
  height: 1rem;
  margin-top: 0.25rem;
}
.chart-line .chart-axis span {
  position: absolute;
  transform: translateX(-50%);
  font-size: 0.6875rem;
  color: #666;
  white-space: nowrap;
}

.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 0.375rem;
  overflow-x: auto;
  padding: 0 0.625rem;
}
.chart-bars .bar-group {
  flex: 1 1 0;
  min-width: 2.875rem;
  text-align: center;
}
.chart-bars .bar-group .bars {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.125rem;
  height: 9.375rem;
  padding-top: 1rem;
  box-sizing: content-box;
}
.chart-bars .bar-group .bar {
  position: relative;
  flex: 1 1 0;
  min-height: 1px;
  background-color: #ccc;
  -webkit-border-radius: 2px 2px 0 0;
  -moz-border-radius: 2px 2px 0 0;
  border-radius: 2px 2px 0 0;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.chart-bars .bar-group .bar span {
  position: absolute;
  top: -0.9375rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.625rem;
  color: #666;
  white-space: nowrap;
}
.chart-bars .bar-group .bar.green {
  background-color: #3c3;
}
.chart-bars .bar-group .bar.red {
  background-color: #f33;
}
.chart-bars .bar-group .bar.gray {
  background-color: #ccc;
}
.chart-bars .bar-group .bar-label {
  font-size: 0.8125rem;
  font-weight: 700;
  margin-top: 0.25rem;
}
.chart-bars .bar-group .bar-sub {
  font-size: 0.6875rem;
  color: #666;
}
.chart-bars.histogram .bar-group {
  min-width: 2.125rem;
}
.chart-bars.dense {
  gap: 0.125rem;
}
.chart-bars.dense .bar-group {
  min-width: 1.5rem;
}
.chart-bars.dense .bar-group .bars {
  height: 6.875rem;
}
.chart-bars.dense .bar-group .bar-label {
  font-size: 0.625rem;
}

.chart-heatmap {
  min-width: 43.75rem;
}
.chart-heatmap .heat-row {
  display: flex;
  align-items: center;
  gap: 0.125rem;
  margin-bottom: 0.125rem;
}
.chart-heatmap .heat-year {
  flex: 0 0 2.5rem;
  font-size: 0.75rem;
  font-weight: 700;
}
.chart-heatmap .heat-cell {
  flex: 1 1 0;
  height: 1rem;
  background-color: #eee;
  border: 1px solid #eee;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.chart-heatmap .heat-cell.lvl-1 {
  background-color: rgba(255, 51, 51, 0.85);
  border-color: rgba(255, 51, 51, 0.85);
}
.chart-heatmap .heat-cell.lvl-2 {
  background-color: rgba(255, 153, 0, 0.8);
  border-color: rgba(255, 153, 0, 0.8);
}
.chart-heatmap .heat-cell.lvl-3 {
  background-color: rgba(51, 204, 51, 0.55);
  border-color: rgba(51, 204, 51, 0.55);
}
.chart-heatmap .heat-cell.lvl-4 {
  background-color: rgba(51, 204, 51, 0.8);
  border-color: rgba(51, 204, 51, 0.8);
}
.chart-heatmap .heat-cell.lvl-5 {
  background-color: #3c3;
  border-color: #3c3;
}
.chart-heatmap .heat-cell.lvl-none {
  border-color: #ccc;
}
.chart-heatmap .heat-legend-row .heat-cell {
  background: none;
  border: none;
  height: 0.875rem;
  font-size: 0.625rem;
  color: #666;
  text-align: center;
}

.stat-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.stat-table th,
.stat-table td {
  padding: 0.375rem 0.5rem;
  border-bottom: 1px solid #eee;
  white-space: nowrap;
}
.stat-table thead th {
  background-color: #333;
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  text-align: right;
  position: sticky;
  top: 0;
  z-index: 1;
}
.stat-table thead th.lead {
  text-align: left;
}
.stat-table.sortable thead th {
  cursor: pointer;
  user-select: none;
}
.stat-table.sortable thead th:after {
  content: "";
  display: inline-block;
  width: 0.5rem;
  margin-left: 0.1875rem;
}
.stat-table.sortable thead th.sorted-asc:after {
  content: "▲";
}
.stat-table.sortable thead th.sorted-desc:after {
  content: "▼";
}
.stat-table tbody tr:nth-child(even) {
  background-color: rgba(238, 238, 238, 0.5);
}
.stat-table td {
  text-align: right;
}
.stat-table td.lead {
  text-align: left;
  font-weight: 700;
  white-space: normal;
  min-width: 8.75rem;
}
.stat-table td.strong {
  font-weight: 700;
}
.stat-table td.muted {
  color: #666;
}
.stat-table td.small {
  font-size: 0.6875rem;
  line-height: 0.875rem;
}
.stat-table.compact th, .stat-table.compact td {
  padding: 0.25rem 0.375rem;
  font-size: 0.75rem;
}
.stat-table .quota-bar {
  display: block;
  width: 3.75rem;
  height: 0.1875rem;
  background-color: #eee;
  margin: 0 0 0.125rem auto;
}
.stat-table .quota-bar span {
  display: block;
  height: 100%;
  background-color: #3c3;
}
.stat-table .trend {
  font-size: 0.625rem;
}
.stat-table .trend.trend-up {
  color: #3c3;
}
.stat-table .trend.trend-down {
  color: #f33;
}
.stat-table .trend.trend-flat {
  color: #999;
}

.chart-matrix {
  min-width: 38.75rem;
}
.chart-matrix thead th {
  text-align: center;
  cursor: help;
}
.chart-matrix td.matrix-cell {
  text-align: center;
  min-width: 2.125rem;
  background-color: #eee;
}
.chart-matrix td.matrix-cell.lvl-0 {
  background-color: #eee;
}
.chart-matrix td.matrix-cell.lvl-1 {
  background-color: rgba(51, 204, 51, 0.15);
}
.chart-matrix td.matrix-cell.lvl-2 {
  background-color: rgba(51, 204, 51, 0.3);
}
.chart-matrix td.matrix-cell.lvl-3 {
  background-color: rgba(51, 204, 51, 0.5);
}
.chart-matrix td.matrix-cell.lvl-4 {
  background-color: rgba(51, 204, 51, 0.7);
}
.chart-matrix td.matrix-cell.lvl-5 {
  background-color: rgba(51, 204, 51, 0.9);
}
.chart-matrix td.matrix-cell.lvl-self {
  background-color: #333;
  color: white;
  font-weight: 700;
}
.chart-matrix td.matrix-cell.empty {
  background: none;
}
.chart-matrix tbody tr:nth-child(even) td.matrix-cell.empty {
  background: none;
}

@media (prefers-color-scheme: dark) {
  /* CSS Code wenn Dark Mode aktiv */
  body {
    color: white;
    background-color: #000;
  }
  .modal {
    color: #000;
  }
  .table {
    color: white;
  }
  .playContainer .table-responsive .event.status_0 {
    zoom: 1;
  }
  .playContainer .table-responsive .event.status_1 {
    background-color: #3c3;
    background: linear-gradient(135deg, #33cc33 0%, rgba(51, 204, 51, 0.5) 100%);
  }
  .playContainer .table-responsive .event.status_2 {
    background-color: #f33;
    background: linear-gradient(135deg, #ff3333 0%, rgba(255, 51, 51, 0.5) 100%);
  }
  .buttons a {
    color: white;
  }
  .board-footer .panel {
    background-color: #1a1a1a;
    border-left-color: #2aa198;
    border-top: 0.0625rem solid #333;
    border-right: 0.0625rem solid #333;
    border-bottom: 0.0625rem solid #333;
  }
  .board-footer .panel-title {
    color: white;
  }
  .board-footer .panel-text {
    color: #aaa;
  }
  .board-footer .panel-badge {
    color: #333;
    background-color: #999;
  }
  .board-footer .panel-badge.is-on {
    background-color: #3c3;
    color: #333;
  }
  .board-footer .panel-badge.is-off {
    color: white;
    background-color: #666;
  }
  .changePlayContainer .changePlayBox .changePlayElement {
    background-color: #eee;
    background: linear-gradient(135deg, #eeeeee 0%, rgba(238, 238, 238, 0.5) 100%);
  }
  .changePlayContainer .changePlayBox .changePlayElement.status_1 {
    background-color: #3c3;
    background: linear-gradient(135deg, #33cc33 0%, rgba(51, 204, 51, 0.5) 100%);
  }
  .changePlayContainer .changePlayBox .changePlayElement.status_1 .content svg {
    fill: rgb(8%, 32%, 8%);
  }
  .changePlayContainer .changePlayBox .changePlayElement.status_2 {
    background-color: #f33;
    background: linear-gradient(135deg, #ff3333 0%, rgba(255, 51, 51, 0.5) 100%);
  }
  .changePlayContainer .changePlayBox .changePlayElement.status_2 .content svg {
    fill: #990000;
  }
  .changePlayContainer .changePlayBox .changePlayElement .content svg {
    fill: rgb(63.3333333333%, 63.3333333333%, 63.3333333333%);
  }
  .table tr.headline > th {
    background-color: #333;
    background: linear-gradient(135deg, #333333 0%, rgba(51, 51, 51, 0.5) 100%);
  }
  .table tr.headline > th:nth-child(2) {
    background-color: #ccc;
    background: linear-gradient(135deg, #cccccc 0%, rgba(204, 204, 204, 0.5) 100%);
    color: white;
  }
  .table tr.headline > th.isSpecial {
    background-color: #909;
    background: linear-gradient(135deg, #990099 0%, rgba(153, 0, 153, 0.5) 100%);
    color: white;
  }
  .table tr.headline > th.isIncident {
    background-color: #000;
    background: linear-gradient(135deg, black 0%, rgba(0, 0, 0, 0.5) 100%);
    color: white;
  }
  .table tr.headline > th.user {
    background-color: #999;
  }
  .table tr.headline > th.user .topline {
    color: #999;
  }
  .table tr.headline > th.user .subline {
    color: #999;
  }
  .table tr.count > th {
    background-color: #eee;
    background: linear-gradient(135deg, #eeeeee 0%, rgba(238, 238, 238, 0.5) 100%);
    color: #000;
  }
  .table tr.count > th.isSpecial {
    background-color: #909;
    background: linear-gradient(135deg, #990099 0%, rgba(153, 0, 153, 0.5) 100%);
    color: white;
  }
  .table tr.count > th.isIncident {
    background-color: #000;
    background: linear-gradient(135deg, black 0%, rgba(0, 0, 0, 0.5) 100%);
    color: white;
  }
  .table tr.count > th.user {
    color: #000;
  }
  .table tr.count > th .wrapper {
    color: white;
    background-color: #f33;
    background: linear-gradient(135deg, #ff3333 0%, rgba(255, 51, 51, 0.5) 100%);
  }
  .table tr.count > th.good .wrapper {
    background-color: #3c3;
    background: linear-gradient(135deg, #33cc33 0%, rgba(51, 204, 51, 0.5) 100%);
  }
  .table tr.count > th.almostgood .wrapper {
    background-color: #ffd700;
    background: linear-gradient(135deg, gold 0%, rgba(255, 215, 0, 0.5) 100%);
  }
  .table tr:nth-child(even) > td {
    background-color: #333;
    background: linear-gradient(135deg, #333333 0%, rgba(51, 51, 51, 0.5) 100%);
  }
  .table tr:nth-child(even) > td:nth-child(2) {
    background-color: #999;
    background: linear-gradient(135deg, #999999 0%, rgba(153, 153, 153, 0.5) 100%);
  }
  .table tr:nth-child(even) > td.isSpecial {
    background-color: #909;
    background: linear-gradient(135deg, rgba(153, 0, 153, 0.5) 0%, rgba(153, 0, 153, 0.25) 100%);
    color: white;
  }
  .table tr:nth-child(even) > td.isIncident {
    background-color: #000;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.5) 100%);
    color: white;
  }
  .table tr:nth-child(odd) > td {
    background-color: #666;
    background: linear-gradient(135deg, #666666 0%, rgba(102, 102, 102, 0.5) 100%);
  }
  .table tr:nth-child(odd) > td:nth-child(2) {
    background-color: #ccc;
    background: linear-gradient(135deg, #cccccc 0%, rgba(204, 204, 204, 0.5) 100%);
  }
  .table tr:nth-child(odd) > td.isSpecial {
    background-color: #909;
    background: linear-gradient(135deg, rgba(153, 0, 153, 0.5) 0%, rgba(153, 0, 153, 0.25) 100%);
    color: white;
  }
  .table tr:nth-child(odd) > td.isIncident {
    background-color: #000;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.5) 100%);
    color: white;
  }
  .table td,
  .table th {
    background: #eee;
    background: linear-gradient(135deg, #eeeeee 0%, rgba(238, 238, 238, 0.5) 100%);
  }
  .deleteUserContainer {
    border-top: 1px solid #dee2e6;
  }
  .panel-btn {
    color: #2aa198;
    border-color: #2aa198;
  }
  .panel-btn:hover, .panel-btn:focus {
    color: #000;
    background-color: #2aa198;
  }
  .panel-btn--primary {
    color: #000;
    background-color: #2aa198;
  }
  .panel-btn--primary:hover, .panel-btn--primary:focus {
    background-color: rgb(19.7809330629%, 75.8269100744%, 71.5881387038%);
  }
  .loginError {
    color: #ff6666;
  }
  .statistik h2 {
    border-bottom-color: #333;
  }
  .statistik .stat-head .subline {
    color: #999;
  }
  .statistik .stat-note {
    color: #999;
  }
  .statistik .stat-glossary dt {
    color: white;
  }
  .statistik .stat-glossary .trend.trend-flat {
    color: #666;
  }
  .kpi-grid .kpi {
    background-color: #333;
  }
  .kpi-grid .kpi .kpi-sub {
    color: #ccc;
  }
  .kpi-grid .kpi.is-dark {
    border-left-color: white;
  }
  .chart-block .chart-legend {
    color: #999;
  }
  .chart-block .chart-legend .legend.thin:before {
    background-color: #666;
  }
  .chart-block .chart-legend .legend.lvl-none:before {
    background-color: #333;
    border-color: #666;
  }
  .chart-line svg .grid {
    stroke: #333;
  }
  .chart-line svg .raw {
    stroke: #666;
  }
  .chart-line svg .area {
    fill: rgba(51, 204, 51, 0.18);
  }
  .chart-line .chart-scale,
  .chart-line .chart-axis span {
    color: #999;
  }
  .chart-bars .bar-group .bar {
    background-color: #666;
  }
  .chart-bars .bar-group .bar span {
    color: #999;
  }
  .chart-bars .bar-group .bar.gray {
    background-color: #666;
  }
  .chart-bars .bar-group .bar-sub {
    color: #999;
  }
  .chart-heatmap .heat-cell {
    background-color: #333;
    border-color: #333;
  }
  .chart-heatmap .heat-cell.lvl-none {
    border-color: #666;
  }
  .chart-heatmap .heat-legend-row .heat-cell {
    color: #999;
  }
  .stat-table {
    color: white;
  }
  .stat-table th,
  .stat-table td {
    border-bottom-color: #333;
  }
  .stat-table thead th {
    background-color: #666;
  }
  .stat-table tbody tr:nth-child(even) {
    background-color: rgba(255, 255, 255, 0.06);
  }
  .stat-table td.muted {
    color: #999;
  }
  .stat-table .quota-bar {
    background-color: #333;
  }
  .stat-table .trend.trend-flat {
    color: #666;
  }
  .chart-matrix td.matrix-cell {
    background-color: #333;
  }
  .chart-matrix td.matrix-cell.lvl-0 {
    background-color: #333;
  }
  .chart-matrix td.matrix-cell.lvl-1 {
    background-color: rgba(51, 204, 51, 0.2);
  }
  .chart-matrix td.matrix-cell.lvl-2 {
    background-color: rgba(51, 204, 51, 0.35);
  }
  .chart-matrix td.matrix-cell.lvl-3 {
    background-color: rgba(51, 204, 51, 0.55);
  }
  .chart-matrix td.matrix-cell.lvl-4 {
    background-color: rgba(51, 204, 51, 0.75);
  }
  .chart-matrix td.matrix-cell.lvl-5 {
    background-color: rgba(51, 204, 51, 0.95);
  }
  .chart-matrix td.matrix-cell.lvl-3, .chart-matrix td.matrix-cell.lvl-4, .chart-matrix td.matrix-cell.lvl-5 {
    color: #000;
  }
  .chart-matrix td.matrix-cell.lvl-self {
    background-color: #666;
    color: white;
  }
  .chart-matrix td.matrix-cell.empty {
    background: none;
  }
}

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