.system-status.container {
  width: 100%;
}

.system-status header {
  text-align: center;
  padding-top: 98px;
  color: #0a1247;
}

.system-status header h1 {
  font-size: 36px;
}

.system-status header p {
  margin-top: 0px;
  font-size: 14px;
  color: #0a1247;
}

.system-status__content {
  background: #ffffff;
  box-shadow: 0px 20px 100px rgba(10, 18, 71, 0.05);
  border-radius: 20px;
  margin-bottom: 20px;
  padding: 30px 40px;
}

.system-status__header {
  display: flex;
  flex-direction: column;
}

.system-status__title {
  font-size: 24px;
  line-height: 31.2px;
}

.system-status__status {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #0a1247;
}

.system-status__point {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: #60c8a1;
  border-radius: 50%;
  margin-right: 5px;
}

.system-status__bars {
  display: flex;
  justify-content: space-between;
}

.system-status__bar {
  position: relative;
  cursor: pointer;
  width: 1px;
  height: 26px;
  background: #60c8a1;
  border-radius: 6px;
  align-self: stretch;
  flex-grow: 0;
  margin: 7px 0px;
}

.system-status__bar:hover .system-status__tooltip {
  visibility: visible;
  opacity: 1;
}

.system-status__tooltip {
  visibility: hidden;
  position: absolute;
  top: 135%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  width: 120px;
  line-height: 15.6px;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  background: #0a1247;
  border-radius: 2px;
  padding: 10px 12px;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.6s;
}

.system-status__tooltip::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent #555 transparent;
}

.system-status--maintenance {
  background: #f2c65f;
}

.system-status--downtime {
  background: #ff655d;
}

.system-status__states {
  display: flex;
  justify-content: center;
  align-items: center;

  padding: 30px 0px;
  margin-bottom: 100px;
  background: #eefcfc;
  border-radius: 20px;
}

.system-status__states p {
  font-size: 11px;
  display: flex;
  align-items: center;
  margin-right: 10px;
  color: #0a1247;
}

@media (min-width: 1280px) {
  .system-status.container {
    width: 1280px;
  }

  .system-status__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .system-status header h1 {
    font-size: 52px;
  }

  .system-status header p {
    font-size: 18px;
  }

  .system-status__title {
    font-size: 26px;
  }

  .system-status__status {
    font-size: 16px;
  }

  .system-status__bar {
    width: 3px;
  }

  .system-status__states p {
    font-size: 18px;
    margin-right: 30px;
  }

  .system-status__point {
    margin-right: 10px;
  }
}
.system-status__states p {
  margin-left: 0;
}
