body {
  background: #22252a;
  min-height: 100vh;
  /* overflow: hidden; */
  font-family: sans-serif;
}

.rotImg {
  -webkit-transition: -webkit-transform 0.2s linear 0.2s;
  -moz-transition: -moz-transform 0.2s linear 0.2s;
  transition: transform 0.2s linear 0.2s;
}

.distributeVertical {
  display: -webkit-flex;
  display: flex;

  -webkit-flex-direction: column;
  flex-direction: column;

  -webkit-align-content: space-between;
  align-content: space-between;

  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
}

.container {
  min-height: 100vh;
}



table {
  margin: auto;
  margin-top: 20px;
  width: 80%;
  border: 10px solid transparent;
}
td {
  width: 25%;
  position: relative;
  border: 10px solid transparent;
}
td:after {
  content: '';
  display: block;
  margin-top: 100%;
}
td .content {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #CCC;
}
td .valid {
  background-color: #65a3d0;
}






.st1{fill:#6E6E6D;}
.st0 {
  fill: #FFFFFF;
  animation: pulse-me 1s linear infinite;
}
.st2 {
  fill: #D31A19;
  animation: pulse-me2 2s linear infinite;
}
.st3 {
  fill: #FF0000;
  animation: blink-me 2s linear infinite;
}
.st5 {fill: #FFFFFF;}
@keyframes blink-me {
  0% {
    opacity: 1;
    fill:#D31A19;
  }
  5% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  15% {
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
}

@keyframes pulse-me {
  0% {
    opacity: 1;
    fill:#FFFFFF;
  }
  25% {

    opacity: 0.5;
  }
  50% {
    opacity: 1;
    fill:#000000;
  }
  75% {

    opacity: 0.5;
  }
  100% {

    fill:#FFFFFF;
    opacity: 1;
  }
}
@keyframes pulse-me2 {
  0% {
    fill:#D31A19;
  }
  50% {
    fill:#000000;
  }
  100% {
    fill:#D31A19;
  }
}
