.root {
  min-height: 80px;
  position: relative;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  border: 1px solid #eee;
  padding: 0.5em 1em 0.5em 30px;
  background-repeat: no-repeat;
  background-position: left 0.5em center;
  background-size: 20px;
}

.root h3 {
  text-align: center;
  margin-bottom: 0.5em;
  font-size: 0.8em;
}

.onlineStatus {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  position: absolute;
  top: 3px;
  right: 3px;
}

.onlineStatus.online {
  background-color: greenyellow;
}

.onlineStatus.offline {
  background-color: red;
}

.external {
  max-width: 24px;
  position: absolute;
  right: 3px;
  bottom: 3px;
}

.config {
  width: 12px;
  height: 12px;
  position: absolute;
  right: 3px;
  bottom: 3px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
  background-image: url(/images/config.svg);
  background-color: transparent;
  cursor: pointer;
  border: 0;
  padding: 0;
}

.wifiSignal {
  position: absolute;
  left: 3px;
  bottom: 3px;
  white-space: nowrap;
  font-size: 0.7em;
}

.wifiSignal img {
  width: 12px;
  height: 12px;
  margin-right: 3px;
  vertical-align: top;
}

@media (min-width: 475px) {
  .root {
    padding-left: 34px;
    background-size: 24px;
  }

  .root h3 {
    font-size: 1em;
  }
}
