
.ilmeta_fixed-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999999;
    scale: 0.7;
}
.ilmeta_fixed-button svg{
color: white;
}
#ilmeta_main-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    background-color: #007BFF;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-animation: ilmeta_hoverWave linear 1s infinite;
    animation: ilmeta_hoverWave linear 1s infinite;
}
@keyframes ilmeta_hoverWave {
0% {
box-shadow: 0 8px 10px rgba(56, 163, 253, 0.3), 0 0 0 0 rgba(56, 163, 253, 0.2), 0 0 0 0 rgba(56, 163, 253, 0.2)
}

40% {
box-shadow: 0 8px 10px rgba(56, 163, 253, 0.3), 0 0 0 15px rgba(56, 163, 253, 0.2), 0 0 0 0 rgba(56, 163, 253, 0.2)
}

80% {
box-shadow: 0 8px 10px rgba(56, 163, 253, 0.3), 0 0 0 30px rgba(56, 163, 253, 0), 0 0 0 26.7px rgba(56, 163, 253, 0.067)
}

100% {
box-shadow: 0 8px 10px rgba(56, 163, 253, 0.3), 0 0 0 30px rgba(56, 163, 253, 0), 0 0 0 40px rgba(56, 163, 253, 0.0)
}
}

#ilmeta_main-button img {
    width: 30px;
    height: 30px;
}

.ilmeta_popup {
    display: none;
    position: absolute;
    bottom: 70px;
    right: 10px;
    flex-direction: column;
    align-items: center;
}

.ilmeta_popup-button {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
    border-radius: 50%;
    background-color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.ilmeta_popup-button svg {
    width: 25px;
    height: 25px;
    color: #007bff;
}

.ilmeta_popup-button:hover {
    transform: scale(1.1);
}
.meta-pulse{
 width: 22px;
 height: 22px;
 border-radius: 50%;
 background: #005c7e;
 cursor: pointer;
 box-shadow: 0 0 0 #005c7e;
 animation: metapulse 1.5s infinite;
}

@keyframes metapulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 #005c7e;
  }

 70% {
   -webkit-box-shadow: 0 0 0 20px rgba(204,169,44, 0);
 }
 100% {
    -webkit-box-shadow: 0 0 0 0 rgba(204,169,44, 0);
  }
}

.trade-button{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    flex-direction: column;
    background: linear-gradient(180deg, #01bcff 0%, #01bcff 80%, #0092c7 100%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: #135DA8 solid 1.5px;
    text-decoration: none;
}

.text-in-button{
    display: flex;
    color: #FFF;
    font-family: sans-serif;
    margin-block: 0px;
}

.shoulder-left{
  transform-origin: center;
  animation: motion-animation-left 2s linear infinite;
}

.shoulder-right{
  transform-origin: center;
  animation: motion-animation-right 2s linear infinite;
}

.money-bag-image-left{
  animation: motion-animation-money-left 2s linear infinite;
}

.money-bag-image-right{
  animation: motion-animation-money-right 2s linear infinite;
}

@keyframes motion-animation-left {
  25% {
    rotate: 10deg;
  }

  50% {
    rotate: 0deg;
  }

  75% {
    rotate: -10deg;
  }

  100% {
    rotate: 0deg;
  }
}


@keyframes motion-animation-right {
  25% {
    rotate: 10deg;
  }

  50% {
    rotate: 0deg;
  }

  75% {
    rotate: -10deg;
  }

  100% {
    rotate: 0deg;
  }
}

@keyframes  motion-animation-money-left {
  25% {
    transform: translate(0, -100px);
  }

  50% {
    transform: translate(0, 0);
  }

  75% {
    transform: translate(0, 150px);
  }

  100% {
    transform: translate(0, 0);
  }
}

@keyframes  motion-animation-money-right {
  25% {
    transform: translate(0, 150px);
  }

  50% {
    transform: translate(0, 0);
  }

  75% {
    transform: translate(0, -100px);
  }

  100% {
    transform: translate(0, 0);
  }
}