.status {
  margin-top:-1.5rem; 
}
.open-icon,
.closed-icon {
  margin-right:0.25rem;
  display:inline-block;
  height:0.5rem;
  width:0.5rem;
  position:relative;
  top: -2px;
  border-radius:10000px;
}
@keyframes pulse
{
  0%  {box-shadow:0 0 0 0 rgba(53,202,108,0.8)}
  100%{box-shadow:0 0 0 6px rgba(53,202,108,0)}
}
.open-icon {
  background-color:#35ca6c;
}
.closed-icon {
  background-color:#ca3535;
}
.open-icon:after {
  animation: 1.5s ease 0s infinite normal none running pulse;
  content: '';
  position: absolute;
  border-radius: 100%;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.open-cycle {
  background-color:#f5fcf7;
}
th {
  background-color: #e9e9fc;
  min-width: 100px!important;
  text-align: left;
  /*background-color: #aa3dfe;
  padding: 1rem 0.5rem;*/
}
th, td { }


@media (min-width:768px) {
  th {
    min-width: 175px!important;
  }
}
@media (max-width:767px) {
  th, td {
    padding: 0.5rem;
  }
  .tg-wrap, .tg-wrap p {
    font-size: 0.85rem!important;
  }
  .open-icon, .closed-icon {
    top: -1px;
  }
}