html {
  box-sizing: border-box;
  font-size: 16px;
}

*, *:before, *:after {
  box-sizing: inherit;
  box-sizing: border-box;
}

body, h1, h2, h3, h4, h5, h6, p, ol, ul {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

ol, ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.page-content {
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
  font-size: 18px;
  color: #000000;
  font-family: "Sarabun", sans-serif;
}
@media screen and (max-width: 975px) {
  .page-content {
    font-size: 16px;
  }
}

.state-container {
  position: relative;
  display: inline-block;
  padding: 20px;
  max-width: 100%;
  width: 1200px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 975px) {
  .state-container {
    top: 0;
    transform: translate(-50%, 0);
  }
}
.state-container .state-title {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 3px;
}
@media screen and (max-width: 975px) {
  .state-container .state-title {
    font-size: 24px;
  }
}
.state-container .state-title .state-logo {
  margin-bottom: -4px;
}
@media screen and (max-width: 975px) {
  .state-container .state-title .state-logo {
    display: none;
  }
}
.state-container .state-title span {
  color: #0073ab;
  font-size: 18px;
  font-weight: bold;
  padding-left: 10px;
  padding-bottom: 2px;
  padding-top: 2px;
  border-left: 1px solid #bbbcbf;
}
@media screen and (max-width: 975px) {
  .state-container .state-title span {
    font-size: 24px;
    padding-left: 0;
    padding-bottom: 0;
    padding-top: 0;
    border-left: none;
  }
}
.state-container .state-refresh-rate {
  margin-bottom: 10px;
  opacity: 0.6;
}
.state-container .state-content {
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: stretch;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.state-container .state-content .state-block {
  background-color: #e3e4e6;
  padding: 15px 15px 30px;
  margin: 10px 15px;
  width: calc(33.3333333333% - 30px);
  max-width: 100%;
}
@media screen and (max-width: 975px) {
  .state-container .state-content .state-block {
    width: 100%;
  }
}
.state-container .state-content .state-block .state-more-infos {
  padding: 10px 0 10px 15px;
}
.state-container .state-content .state-block .state-more-infos .state-block-title {
  font-size: 16px;
  padding: 1px 0;
}
.state-container .state-content .state-block .state-more-infos .state-block-title .state-block-statut {
  width: 12px;
  height: 12px;
  margin-right: 6px;
}
.state-container .state-content .state-block .state-block-title {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
  margin-bottom: 2px;
}
.state-container .state-content .state-block .state-block-title .state-block-statut {
  width: 14px;
  height: 14px;
  margin-right: 8px;
  border-radius: 100%;
  background-color: #F8312F;
  -moz-transition: background-color 250ms ease;
  -o-transition: background-color 250ms ease;
  -webkit-transition: background-color 250ms ease;
  transition: background-color 250ms ease;
}
.state-container .state-content .state-block .state-block-title .state-block-statut.active {
  -moz-transition: background-color 250ms ease;
  -o-transition: background-color 250ms ease;
  -webkit-transition: background-color 250ms ease;
  transition: background-color 250ms ease;
  background-color: #00D26A;
}
.state-container .state-content .state-block .state-block-title span {
  line-height: 1;
}
.state-container .state-content .state-block .state-block-subtitle {
  font-size: 16px;
  opacity: 0.6;
}
.state-container .state-content .state-block .state-block-error-msg {
  position: relative;
  font-size: 16px;
  display: block;
  color: #F8312F;
}

.state-container .state-content .state-block .service::after, .state-container .state-content .state-block .website::after {
  display: block;
  margin-top: 8px;
  content: "";
  height: 1px;
  width: 100%;
  left: 0;
  background-color: #bbbcbf;
}

.state-container .state-content .state-block .service:last-child::after, .state-container .state-content .state-block .website:last-child::after {
  display: none;
} 

.state-container .state-content .state-block h3 {
  margin-bottom: 10px;
}

.state-container .state-content .state-block .website, .state-container .state-content .state-block .service {
  margin-bottom: 8px;
}