:host {
	box-sizing: border-box;
	display: block;
  width: 100%;
  min-width: 200px;
  max-width: 300px;
}

:host * {
  box-sizing: border-box;
}

.container {
  align-items: center;
  display: flex;
  height: 30px;
  justify-content: space-between;
  width: 100%;
}

.name {
  color: #555555;
  font-family: Roboto;
  font-size: 12px;
  line-height: 14px;
}

.fault-off {
  background-color: #4caf50;
  border-radius: 20px;
  height: 18px;
  position: relative;
  width: 18px;
}

.fault-off > .tick {
  border-color: #ffffff;
  border-style: solid;
  border-width: 0px 2px 2px 0px;
  height: 8px;
  left: 7px;
  position: absolute;
  transform: rotate(45deg);
  top: 4px;
  width: 4px;
}

.fault-on {
  height: 18px;
  width: 18px;
  background-color: #dd0000;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
}

.fault-on > .cross {
  color: #ffffff;
  position: absolute;
  font-size: 10px;
  font-family: Roboto;
}

.fault-warning {
  height: 18px;
  width: 18px;
  background-color: #f3cd34;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
}

.fault-warning > .exclamation {
  color: #ffffff;
  position: absolute;
  font-size: 10px;
  font-family: Roboto;
}

.display_none {
  display: none;
}
