.coin {
  position: relative;
  min-width: 60px;
  min-height: 60px;
  background-color: #d4af37;
  border-radius: 50%;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.3);
  background-image: radial-gradient( circle at 50% 120%, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 80% );
  animation: flip 3s infinite;
}

.engravingCoin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 30px;
  font-weight: bold;
  color: rgba(0, 0, 0, 0.5);
  text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.5);
}

@keyframes flip {
  0% {
    transform: rotateY(0deg);
  }
  50% {
    transform: rotateY(180deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}

.accordion-body-money {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

