.alfaDotNavbar {
  position: absolute;
  right: 10px;
}
.alfaDotNavbar ul {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  list-style: none;
}
.alfaDotNavbar a {
  position: relative;
  display: block;
  width: 10px;
  height: 10px;
  margin: 40px 10px;
  color: #333;
  text-decoration: none;
}
.alfaDotNavbar a:before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: #666;
  border-radius: 50%;
  -webkit-transition: -webkit-transform 1s;
  -moz-transition: -moz-transform 1s;
  -o-transition: -o-transform 1s;
  -ms-transition: -ms-transform 1s;
  transition: transform 1s;
}
.alfaDotNavbar a:hover:before {
  -webkit-transform: scale(1.6);
  -moz-transform: scale(1.6);
  -o-transform: scale(1.6);
  -ms-transform: scale(1.6);
  transform: scale(1.6);
  background-color: #08f;
}
.alfaDotNavbar a:hover span {
  margin: 0;
  visibility: visible;
}
.alfaDotNavbar span {
  position: absolute;
  right: 30px;
  width: 300px;
  height: 10px;
  line-height: 10px;
  text-align: right;
  visibility: hidden;
/* for beautiful */
  bottom: 3px;
/* animation     */
  margin-right: 16px;
  -webkit-transition: margin 0.3s linear;
  -moz-transition: margin 0.3s linear;
  -o-transition: margin 0.3s linear;
  -ms-transition: margin 0.3s linear;
  transition: margin 0.3s linear;
}
.alfaDotNavbar .active:before {
  background-color: #f66;
}
