.status-bar {
  background: #f8f8fa;
  width: 100%;
  min-height: 100px;
  padding: 16px 36px;
  border-radius: 12px;
  margin: 28px auto 15px !important;
  display: flex;
  justify-content: space-between;
}

.detect_before {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  text-align: right;
  min-width: 234px;
  color: #605c6d;
  font-size: 14px;
}
.detect_before p {
  margin: 0;
}
.detect_before p:not(:last-child) {
  margin: 0 0 16px 0;
}
.detect_before .score {
  font-size: 32px;
  color: #5ede64;
  font-family: Urbanist;
  line-height: 40px;
}

.status-bar--red .score {
  color: #ffa4a4;
}
.status-bar--red {
  background: linear-gradient(90deg, #F8F8FA 0%, #ffe4e4 100%);
}

.status-bar--red .result--red {
  display: block;
}

.status-bar--yellow .score {
  color: #ffa800;
}

.status-bar--green .score {
  color: #5ede64;
}
.status-bar--green{
  background: linear-gradient(90deg, #F8F8FA 0%, #E7FFE9 100%);
}

.status-bar--green .result--nored,
.status-bar--yellow .result--nored {
  display: block;
}

@media (max-width: 576px) {
  .status-bar {
    min-height: 0;
    margin: 12px auto !important;
  }
  .detect_before {
    text-align: center;
    width: 100%;
  }

  .status-bar .detect_before .score {
    font-size: 22px;
    /* color: #5ede64; */
    font-family: Urbanist;
  }
}
