body {
  grid-template-rows: 150px;
  background-color: #2E2E2E;
}

#resultsCount {
  grid-column: 2;
  grid-row: 1;
  padding-top: 55px;
  font: normal normal 400 22px/30px "Segoe UI", "Roboto";
  color: white;
}
#resultsCount i {
  font: normal normal 200 18px/18px "Segoe UI", "Roboto";
}

.apiBox {
  display: grid;
  grid-column: 1/5;
  grid-template-rows: auto auto;
  grid-template-columns: repeat(auto-fit, minmax(275px, 330px));
}
.apiBox .apiTitle {
  margin: 10px 0 10px 10px;
  width: 92vw;
  grid-column: 1/-1;
  font: 40px/40px "Segoe UI", "Roboto";
  color: white;
}
.apiBox .api {
  display: grid;
  grid-template-rows: 35% 5% 50% 10%;
  margin: 10px;
  border: #848484 solid 6px;
  border-radius: 10px;
  background-color: white;
  text-align: center;
  width: 300px;
  max-height: 700px;
  padding-bottom: 10px;
}
.apiBox .api img {
  grid-row: 1;
  justify-self: center;
  align-self: center;
  max-height: 90%;
  max-width: 90%;
}
.apiBox .api h4 {
  grid-row: 2;
  font: 30px/30px "Segoe UI", "Roboto";
  margin: 0;
}
.apiBox .api p {
  height: 100%;
  overflow: hidden;
  grid-row: 3;
  font: 22px "Segoe UI", "Roboto";
  margin: 5px 0 25px;
}
.apiBox .api .infoBox {
  grid-row: 4;
  display: grid;
  grid-template-columns: 50% 50%;
  align-items: center;
  padding-bottom: 50px;
}
.apiBox .api .infoBox button {
  font: 28px "Segoe UI", "Roboto";
  color: black;
  margin-left: 10px;
  border-radius: 10px;
  background: none;
  border: black solid 2px;
  transition: transform 0.1s;
}
.apiBox .api .infoBox button:disabled {
  color: #666666;
  border-color: #5a5a5a;
}
.apiBox .api .infoBox .latency {
  color: black;
  padding: 0;
  font: 22px "Segoe UI", "Roboto";
  margin: 0;
}

.offlineStatus {
  border: #C50000 solid 6px !important;
}

.onlineStatus {
  border: #00C570 solid 6px !important;
}

@media screen and (max-width: 700px) {
  #resultsCount {
    grid-column: 1/3;
  }

  .apiBox .apiTitle {
    font: 35px/33px "Segoe UI", "Roboto";
  }
}/*# sourceMappingURL=apiStatus.css.map */