*,
*:before,
*:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --col_red: #c93b3b;
  --col_green: #0ac18a;
}

@media screen and (max-width: 500px) {
  #container {
    margin: 0 auto !important;
    min-height: 100vh;
  }
}

body {
  background-color: #fff;
  font-family: 'Archivo', sans-serif;
  text-align: center;
  font-size: 18px;
  color: #222;
}

#container {
  margin: 100px auto;
  max-width: 600px;
  background-color: #f1f1f1;
}

#status {
  width: 100%;
  padding: 4vh 0;
  background-color: #222;
  transition: all 1s ease;
}

#status_text {
  font-weight: 700;
  font-size: 8vh;
  color: #fff;
  transition: all 1s ease;
}

#monitoring_time {
  margin: 50px 0 30px 0;
}

.button {
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  width: 300px;
  padding: 15px;
  border-radius: 100px;
  color: #222;
  border: 3px solid #222;
  margin: 10px auto;
  cursor: pointer;
  transition: all 0.35s ease;
}

.button:hover {
  background-color: #222;
  color: #fff;
}

.button-small {
  padding: 5px;
  width: 120px;
  font-size: 13px;
}

.heading {
  margin-top: 50px;
}

#events {
  padding: 5px 50px;
}

h2 {
  font-size: 35px;
  margin-bottom: 15px;
}

p {
  line-height: 1.5;
}

.uppercase {
  text-transform: uppercase;
}

.statistics {
  font-size: 6vh;
}

.event_disconnect {
  font-weight: 700;
  font-size: 22px;
  color: var(--col_red);
}

.event_connect {
  font-weight: 700;
  font-size: 22px;
  color: var(--col_green);
}

.event_default {
  font-weight: 700;
  font-size: 22px;
  color: #222;
}

.event_item {
  margin: 20px 0;
}

.wrap {
  height: 15px;
  width: 225px;
  margin: 10px auto;
  position: relative;
  opacity: 0;
  transition: all 1s ease;
}

.loader {
  height: 10px;
  width: 225px;
  margin: auto;
}
.loader--dot {
  animation-timing-function: ease-in-out;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  height: 6px;
  width: 6px;
  border-radius: 100%;
  background-color: black;
  position: absolute;
  background-color: #0ac18a;
  transition: background-color 1s ease;
}
.loader--dot:first-child {
  animation-delay: 0.30s;
  opacity: 0.1;
}
.loader--dot:nth-child(2) {
  animation-delay: 0.24s;
  opacity: 0.2;
}
.loader--dot:nth-child(3) {
  animation-delay: 0.18s;
  opacity: 0.4;
}
.loader--dot:nth-child(4) {
  animation-delay: 0.12s;
  opacity: 0.6;
}
.loader--dot:nth-child(5) {
  animation-delay: 0.06s;
  opacity: 0.8;
}
.loader--dot:nth-child(6) {
  animation-delay: 0s;
  opacity: 1;
}

@keyframes loader {
  15% {
    transform: translateX(0);
  }
  45% {
    transform: translateX(219px);
  }
  65% {
    transform: translateX(219px);
  }
  95% {
    transform: translateX(0);
  }
}
