.gs-back-to-top {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(75,68,204,0.25);
  background: rgba(255,255,255,0.92);
  color: var(--gs-purple);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(75,68,204,0.16);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  line-height: 1;
  z-index: 9500;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .22s ease, transform .22s ease, background .2s ease, color .2s ease;
}

.gs-back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.gs-back-to-top:hover {
  background: var(--gs-purple);
  color: #fff;
}

.gs-section-progress {
  display: none !important;
}

@media (hover: hover) and (pointer: fine) {
  .gs-dynamic-tilt {
    transition: transform .18s ease, box-shadow .18s ease;
    transform-style: preserve-3d;
    will-change: transform;
  }
}

@media (max-width: 768px) {
  .gs-back-to-top {
    right: .9rem;
    bottom: .9rem;
    width: 40px;
    height: 40px;
  }
}
