.orbs-container {
  bottom: 140px; 

}

.orb-container {
  width: 100px;
  height: 100px;
}
.orb {
  cursor: pointer;
  user-select: none;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  /* // position: relative; */
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid #fff;
  /* box-shadow: 10px 10px 40px rgba(0, 0, 0, 0.5); */
  filter: drop-shadow();
}

.water {
  position: relative;
  width: 100%;
  height: 100%;
  background: white;
  /* box-shadow: inset 0 0 0 5px #000000; */
  border-radius: 30px;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  /* //overflow: hidden; */
}

.wave:before,
.wave:after {
  content: '';
  position: absolute;
  width: 300%;
  height: 300%;

  top: var(--height);
  left: 50%;
  transform: translate(-50%, -75%);
  background: linear-gradient(45deg, #520000, #780000, #990000);
  transition: all 2s ease;
  animation-delay: 2s;
}

.wave:before {
  border-radius: 45%;
  animation: animate 10.5s linear infinite;
  /* // rise 2.5s linear infinite alternate; */
}

.wave:after {
  border-radius: 40%;
  animation: animate 10.5s linear infinite;
  /* // rise 2.5s linear infinite alternate; */
  background: rgba(255, 0, 0, 0.5);
}
.wave.mana:before,
.wave.mana:after {
  animation: animate2 10.6s linear infinite;
  background: linear-gradient(45deg, #040052, #020065, #00067e);
}
.wave.mana:after {
  background: rgba(4, 0, 255, 0.5);
}

.glass-streak {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  color: #000;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(
    circle at 25% 25%,
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0) 60%
  );

  pointer-events: none; /* To make sure it doesn't interfere with any interactions */
}

@keyframes animate {
  0% {
    transform: translate(-50%, -75%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -75%) rotate(360deg);
  }
}

@keyframes animate2 {
  0% {
    transform: translate(-50%, -75%) rotate(360deg);
  }
  100% {
    transform: translate(-50%, -75%) rotate(0deg);
  }
}

