.ris-status {
  margin: 0 0 16px;
  padding: 0;
  font-size: 14px;
  line-height: 1.25;
  color: inherit;
  max-width: 100%;
}

.ris-row {
  display: flex;
  align-items: center;
  min-height: 26px;
  height: 26px;
  gap: 8px;
  max-width: 100%;
}

.ris-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex: 0 0 9px;
  background: #9a9a9a;
}

.ris-dot--online {
  background: #1b8a3a;
}

.ris-dot--offline {
  background: #b42318;
}

.ris-dot--unknown {
  background: #9a9a9a;
}

.ris-text {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ris-name {
  font-weight: 600;
}

.ris-value {
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
}

.ris-sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 420px) {
  .ris-row {
    height: auto;
    min-height: 26px;
  }

  .ris-text {
    white-space: normal;
  }
}
