.root {
  min-height: 70px;
  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;
}

.sceneSelector {
  margin-top: 1em;
}

.dialog {
  position: fixed;
  width: 80vw;
  top: 30%;
  left: 10vw;
  right: auto;
}

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

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