.flotante {
  animation: 1s rotate ease infinite;
}

.moverse {
  animation: 1s rotate ease infinite;
}
#reee {
    width: 100%;
    display: block;
    float: right !important;
}
#reee a {
    color: #fff !important;
    font-weight: 500;
    border-bottom: 0px solid #fff;
    text-decoration: none !important;
    padding: 5px;
}
#reee a:hover {
    color: #000 !important;
    text-decoration: underline;
}
#reee img {
    height: 15px !important;
    width: 33px !important;
    margin-top: 3px;
    margin-right: 8px;
}



@media (max-width: 460px) {
#reee {
    margin-top: 25px !important;
    margin-bottom: 0px !important;
    z-index: -100000 !important;
}
#reee a {
    font-size: 15px !important;
    font-weight: 600;
}
}

@keyframes rotate {
  0% {
    transform: rotate(-1deg);
    box-shadow: 0 2px 2px var(--first-color);
  }
  20% {
    transform: rotate(3deg);
  }
  40% {
    transform: rotate(-2deg);
  }
  60% {
    transform: rotate(1deg);
  }
  90% {
    transform: rotate(-1deg);
  }
  100% {
    transform: rotate(0);
    box-shadow: 0 2px 2px var(--first-color);
  }
}