.glidy-curved-text-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 180px;
  transform: rotate(-10deg);
}

.glidy-curved-text-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  animation: glidy-curved-spin var(--glidy-curved-speed) linear infinite;
  box-shadow: 0 0 0 12px rgba(0, 0, 0, 0.02);
}

.glidy-curved-text-icon {
  position: relative;
  z-index: 2;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

@keyframes glidy-curved-spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}