.sol-floating-account-btn {
  position: fixed !important;
  right: -18px;
  top: 45%;
  transform: translateY(-50%);
  width: 122px;
  height: 122px;
  background: #f5b400;
  color: #000 !important;
  z-index: 999999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 11px;
  text-decoration: none;
  font-weight: 800;
  font-size: 15px;
  border-radius: 26px 0 0 26px;
  box-shadow: 0 10px 30px rgba(0,0,0,.22);
  animation: solFloat 3s ease-in-out infinite, solPulse 2s infinite;
  transition: all .35s ease;
}

.sol-floating-account-btn:hover {
  right: 0;
  width: 135px;
  background: #ffbf00;
}

.sol-floating-wallet-icon {
  width: 35px;
  height: 25px;
  border: 3px solid #000;
  border-radius: 5px;
  position: relative;
}

.sol-floating-wallet-icon::before {
  content: "";
  position: absolute;
  width: 22px;
  height: 7px;
  border: 3px solid #000;
  border-bottom: 0;
  border-radius: 5px 5px 0 0;
  top: -11px;
  left: 4px;
}

.sol-floating-wallet-icon::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  background: #000;
  border-radius: 50%;
  right: 5px;
  top: 8px;
}

@keyframes solPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(245,180,0,.65);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(245,180,0,0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(245,180,0,0);
  }
}

@keyframes solFloat {
  0%, 100% {
    transform: translateY(-50%);
  }
  50% {
    transform: translateY(calc(-50% - 7px));
  }
}

@media (max-width: 768px) {
  .sol-floating-account-btn {
    right: -14px;
    top: 55%;
    width: 96px;
    height: 96px;
    font-size: 12px;
    border-radius: 20px 0 0 20px;
  }

  .sol-floating-account-btn:hover {
    right: 0;
    width: 108px;
  }

  .sol-floating-wallet-icon {
    width: 30px;
    height: 22px;
  }
}