html, body {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
}

.hidden, .filterHidden {
    display: none !important;
}

#env {
  position: fixed;
  top: 0;
  height: 50px;
  background: #CCC;
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  padding-top: 15px;
}

#nav {
  position: fixed;
  width: 100%;
  height: 75px;
  background: #AAA;
  top: 50px;
}

.contentHolder {
  margin-top: 150px;
}


#title {
  margin: 15px 0;
}


ul {
  list-style: none;
}

li {
  padding: 5px 0;
}

.selected {
  background: #CCC;
}

#widgetNav {
  float: left;
  display: flex;
  height: 100%;
  width: 75%;
  justify-content: space-around;
  align-items: center;
}

#modeNav {
  float: right;
  width: 25%;
  display: flex;
  height: 100%;
}

.modeNavItem {
  width: 50%;
  text-align: center;
  background: #CCC;
  vertical-align: middle;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.modeNavSelected {
  background: #555;
}

.validatorResultValid {
  color: green;
}

.validatorResultInvalid {
  color: red;
}


#validatorContent {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 300px;
}