.CodiguinCTA {
  position: fixed;
  z-index: 999;
  width: 90px;
  background: #fdac00;
  right: 0px;
  top: 60%;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  font-weight: bold;
  text-align: center;
  font-size: 12px;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  line-height: 1.2;
  animation: tada 10s infinite;

  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.CodiguinCTA span {
  color: #2c2d2c;
}
.CodiguinCTA:hover span {
  color: white;
}

.CodiguinCTA__image {
  background-color: white;
  border-radius: 100%;
  width: 50px;
  height: 50px;
  margin-bottom: 8px;

  background-image: url("https://static.tropafreefire.com.br/assets/cg-thumb.png");
  background-position: center;
  background-size: cover;
}

@keyframes tada {
  from {
    transform: scale3d(1, 1, 1);
  }

  1%,
  2% {
    transform: scale3d(1, 1, 1) rotate3d(0, 0, 1, -3deg);
  }

  3%,
  5%,
  7%,
  9% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  4%,
  6%,
  8% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  10% {
    transform: scale3d(1, 1, 1);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}
