.scrollifyPagination {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 20px;
  height: 90px;
  margin: auto;
  font-size: 0.8em;
  z-index: 10;
}
.scrollifyPagination a {
  display: block;
  width: 350px;
  height: 13px;
  border-radius: 50%;

  color: #325C77;
  position: relative;
  padding: 10px;
}
.scrollifyPagination a.active:after {
  background: transparent;
  border: 1px solid #325C77;
  width: 8px;
  height: 8px;
  right: 0;
}
.scrollifyPagination a .hover-text {
  position: absolute;
  right: 20px;
  top: 1px;
  opacity: 0;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
.scrollifyPagination a:hover .hover-text {
  opacity: 1;
}
.scrollifyPagination a:after {
  width: 4px;
  height: 4px;

  display: block;
  background: #325C77;
  border-radius: 50%;
  content: "";
  position: absolute;
  margin: auto;
  top: 0;
  right: 4px;
  bottom: 0;
}
