.scroll-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  height: 40px;
  width: 40px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(45px);
  transition: all 300ms linear;
  background-color: #fff; /* white */
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.progress-circle {
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(-90deg);
  overflow: visible;
}

.progress-circle path {
  stroke: #79b900;   /* ngjyra e progress-it */
  stroke-width: 8px;
  fill: none;
  transition: stroke-dashoffset 10ms linear;
}

.arrow-up {
  color: #79b900;
  z-index: 1;
  position: relative;
}

.arrow-up i {
  font-size: 14px;
}
