a {text-decoration: none; color: inherit; display: block;}
ul, li {list-style: none;}
img {display: block; }

td img
{
display: block;
}

.wrap {
  width: 970px;
}

 .time_top {
  background: #2a2a2a;
  font-family: 'SUIT-Regular';
  width: 970px;
}


#timer {
  display: flex;
  justify-content: center;
  font-size: 60px;
  font-weight: 700;
  color: #000;
  width: 100%;
  padding: 60px 0 70px;
}

#timer div {
  display:flex;
  flex-flow: column;
  justify-content: center;
  width: 120px;
  height: 100px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #fff;
  margin: 0 25px;
  position: relative;
  padding-bottom: 6px;
}

#timer div::after {
  position: absolute;
  top: 40px;
  right: -30px;
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 100%;
  background: #fff;
}

#timer div::before {
  position: absolute;
  bottom: 40px;
  right: -30px;
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 100%;
  background: #fff;
}

#timer div:last-child::after {
  display: none;
}
#timer div:last-child::before {
  display: none;
}

#timer div span {
  color: #fff;
  display: block;
  font-size:  15px;
  font-weight: 200;
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translate(-50%, -50%);
}

