.status {
  font-size: 12px;
}
.status .status__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  display: block;
}
.status.full {
  color: red;
}
.status.empty {
  color: green;
}
.status.full .status__dot {
  background-color: red;
}
.status.empty .status__dot {
  background-color: green;
}
