div#timeline {
  background-color: #ccc;
  margin-top:50px;
  height: 10px;
  width: 100%;
  position: relative;
  margin-bottom: 50px;
}
div#timeline .inside {
  position: absolute;
  height: 4px;
  background-color: #fff;
  width: 0%;
  top: 3px;
  left: 0;
}
div#timeline .dot {
  z-index: 99;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  width: 40px;
  height: 40px;
  border-radius: 50%!important;
  position: absolute;
  top: -15px;
  text-align: center;
  cursor: pointer;
  background-color: #ccc;
}
div#timeline .dot:nth-child(1) {
  left: 30%;
}
div#timeline .dot:nth-child(2) {
  left: 70%;
}

div#timeline .dot:hover {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
background-color: #1ca3aa;
}
div#timeline .dot date {
  font-size: 1.1rem;
  display: block;
  position: relative;
  top: -60px;
  text-align: center;
}
div#timeline .dot span {
  display: inline-block;
  margin-top: 10px;
  width: 20px;
  height: 20px;
  background-color: #fff;
  position: relative;
  border-radius: 50%!important;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

div#timeline .dot.selec {
  background-color: #ef7a59;
}
div#timeline .dot.none {
  background-color: #ccc;
}
