:root {
  --size: 90px;
  --gap: 30px;
}

.badge {
  display: inline-block;
  overflow: visible;
  position: fixed;
  bottom: 6%;
  right: 5%;
  z-index: 400;
  width: 150px;
  height: 150px;
  align-content: center;
}

@media (max-width: 959px) {
  .badge {
    display: inline-block;
    overflow: visible;
    position: fixed;
    bottom: 2%;
    right: 3%;
    z-index: 400;
    width: 150px;
    height: 150px;
    align-content: center;
  }
}
.circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: block;
  margin: auto;
  background: url("../img/common/icon-hand-white.svg") no-repeat #ec4c9a;
  background-size: 70px;
  background-position: center;
  transition: transform 0.3s ease;
}

.badge:hover .circle {
  transform: scale(1.08);
  background-color: #84d7ff;
}

.ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(var(--size) + var(--gap));
  height: calc(var(--size) + var(--gap));
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
  overflow: visible;
}

.badge:hover .ring {
  opacity: 1;
}

.rotator {
  animation: spin 10s linear infinite;
  transform-origin: 50% 50%;
}

.ring text {
  font-size: 12px;
  font-weight: 700;
  fill: #000;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
