.progress-wrap {
  position: fixed;
  right: 30px;
  bottom: 25px;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  /* box-shadow: inset 0 0 0 2px rgba(135, 80, 247, 0.5); */
  box-shadow: inset 0 0 0 2px #108a0073;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}
.dark\:progress-wrap-dark:is(.dark *) {
  box-shadow: inset 0 0 0 2px rgba(135, 80, 247, 0.5);
}

.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.progress-wrap::after {
  position: absolute;
  content: "\f176";
  font-family: "Font Awesome 5 Pro";
  text-align: center;
  line-height: 46px;
  font-size: 20px;
  color: var(--primary-color);
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 1;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}
.dark\:after\:progress-wrap-dark:is(.dark *)::after {
  color: var(--primary-color-dark);
}

.progress-wrap svg path {
  fill: none;
}

.progress-wrap svg.progress-circle path {
  stroke: var(--primary-color);
  stroke-width: 4;
  box-sizing: border-box;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}
.dark\:progress-wrap-dark svg.progress-circle path:is(.dark *) {
  stroke: var(--primary-color-dark);
}

@media (max-width: 767px) {
  .progress-wrap {
    right: 15px;
    bottom: 15px;
  }
}
