.containerCoin {
  margin-bottom: 15px;
}

@keyframes animation-coinTarget {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
.navCoin {

}
.navCoin .coinTarget {
  display: inline-block;
}
.navCoin .coinTarget.coinTarget--animate {
  animation-duration: 0.4s;
  animation-fill-mode: forwards;
  animation-name: animation-coinTarget;
  animation-timing-function: ease-out;
}

.collect-button {
  
}
.collect-button:hover {
 
}
.collect-button:active {
  
}

.coin {
  background-color: orange;
  background-size: cover;
  border-radius: 48px;
  height: 24px;
  left: 0;
  position: fixed;
  top: 0;
  width: 24px;
  z-index: 1000;
}