/* Button Styles */
.btnshine {
  color: #F7F6F1;
  background-color: #1D1D1D;
  border-color: #1D1D1D;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-bottom: 20px;
  position: relative;
  transition: 1s;
  font-family: manrope;
}
.btnshine::after {
  content: "";
  width: 30px;
  height: 70px;
  position: absolute;
  left: -20px;
  top: 0;
  margin-top: -20px;
  background: #fff;
  opacity: 0.6;
  filter: blur(20px);
  animation: login-blur 3s infinite;
  animation-delay: 0s;
  transform-origin: top;
}
@keyframes login-blur {
  from {
    transform: translate(0) rotate(45deg);
  }
  to {
    transform: translateX(370px) rotate(45deg);
  }
}
.btnshine:hover {
  transform: translateY(-5px);
  color: rgb(240, 240, 240);
  cursor: pointer;
}
.floating_button_invest {
  position: fixed;
  top: 9px;
  right: 88px;
  z-index: 1030;
  transition: 2s;
}
