// PROGRESS DIAL
// Set up the floating progress bar
  .progress-bar {
    width: 52px;
    height: 52px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    visibility: hidden;
    opacity: 0;
     -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
  }

// SCROLL TO TOP BUTTON
.btn-top {
  font-size: 25px;
  height: 60px;
  width: 60px;
  line-height: 60px;
  position: fixed;
  right: 27px;
  bottom: 28px;
  color: rgba(77, 91, 109, 0.8);
  text-align: center;
  text-decoration: none;
}

.is-visible {
  /* the button becomes visible */
  visibility: visible;
  opacity: 1;
}