@import url("https://fonts.googleapis.com/css2?family=Kanit:wght@300&family=Roboto:ital,wght@0,400;0,700;1,400&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}

html,
body {
  height: 100%;
}

body > div {
  height: 100%;
  display: flex;
  flex-direction: column;
}

header {
  background: linear-gradient(90.02deg, #0b8aff 0.03%, #9507d8 105.11%);
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
header div {
  max-width: 900px;
  flex: 1;
  display: flex;
  align-items: end;
}
header div img {
  margin-bottom: 8px;
}
header div h1 {
  font-family: "Kanit", sans-serif;
  font-size: 39px;
  color: #ffffff;
  margin-left: 16px;
  font-weight: 300;
}

main {
  flex: 1;
  background: #f8f8f8;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 38px;
  flex-direction: column;
}
main .footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-size: 13px;
  color: #a9a9a9;
}
main .footer p {
  margin-left: 8px;
}
main div {
  max-width: 900px;
  width: -webkit-fill-available;
}
main .aplication {
  margin-bottom: 32px;
  margin-left: 32px;
  flex: 1;
}
main .aplication h2 {
  font-weight: 700;
  font-size: 30px;
  color: #565656;
}
main .aplication div {
  margin-top: 18px;
  margin-left: 18px;
}
main .aplication div h3 {
  font-size: 14px;
  margin-bottom: 8px;
}
main .aplication div ul {
  list-style: none;
}
main .aplication div ul li {
  border-bottom: 1px solid #000;
  padding-bottom: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
main .aplication div ul li > .option {
  cursor: pointer;
  display: flex;
  margin-top: 8px;
  align-items: center;
}
main .aplication div ul li > .option p,
main .aplication div ul li > .option em,
main .aplication div ul li > .option .detail {
  color: #7b7b7b;
}
main .aplication div ul li > .option p {
  margin-right: 12px;
  font-size: 14px;
}
main .aplication div ul li > .option em {
  font-style: italic;
  font-size: 12px;
}
main .aplication div ul li > .option .detail {
  opacity: 0;
  transition: opacity 0.5s linear;
  font-size: 10px;
  font-weight: bold;
  margin-left: 16px;
  text-decoration: none;
}
main .aplication div ul li > .option:hover .detail {
  opacity: 1;
}
main .aplication div ul li > .option span {
  width: 12px;
  height: 12px;
  border-radius: 100%;
  margin-right: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
main .aplication div ul li > .option span.success {
  background: linear-gradient(0deg, #3ba221, #3ba221), #3ba221;
}
main .aplication div ul li > .option span.error, main .aplication div ul li > .option span.offline {
  background: linear-gradient(0deg, #d22020, #d22020), #d22020;
}
main .aplication .status-bar-container {
  display: flex;
  flex-wrap: nowrap;
  margin: 0;
  padding: 0;
  margin-top: 0;
  margin-left: 0;
}
main .aplication .status-bar-container .status-bar {
  opacity: 0.8;
  position: relative;
  width: 8px;
  height: 24px;
  margin-right: 2px;
  cursor: pointer;
  margin: 0;
  padding: 0;
  margin-top: 0;
  margin-left: 0;
}
main .aplication .status-bar-container .status-bar.gray {
  background: #e3e3e3;
}
main .aplication .status-bar-container .status-bar.green {
  background: #3ba221;
}
main .aplication .status-bar-container .status-bar.red {
  background: #d22020;
}
main .aplication .status-bar-container .status-bar .tooltip {
  visibility: hidden;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 4px;
  padding: 4px 8px;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 12px;
  opacity: 0;
  transition: opacity 0.2s;
}
main .aplication .status-bar-container .status-bar:hover {
  opacity: 1;
}
main .aplication .status-bar-container .status-bar:hover .tooltip {
  visibility: visible;
  opacity: 1;
}
main .show_services {
  height: 93px;
  background: #ffffff;
  box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  display: flex;
  align-items: center;
  padding: 0 43px;
  margin-bottom: 64px;
}
main .show_services h2 {
  margin-right: 13px;
  font-size: 30px;
}
main .show_services h2.on {
  color: #3ba221;
}
main .show_services h2.off {
  color: #d22020;
}

.services {
  margin-bottom: 32px;
}
.services h3 {
  font-weight: 400;
}

.service_group_header {
  display: flex;
  -moz-column-gap: 16px;
       column-gap: 16px;
  align-items: center;
}

.loading li > .option span {
  background: gray !important;
}/*# sourceMappingURL=styles.css.map */