.__bounce__ {
  animation: bounce_y 1s infinite;
  animation-timing-function: ease-in-out;
  animation-direction: alternate;
}

.__bounce_left_ {
  animation: bounce_left 1s infinite;
  animation-timing-function: ease-in-out;
  animation-direction: alternate;
}

.__bounce_right_ {
  animation: bounce_right 1s infinite;
  animation-timing-function: ease-in-out;
  animation-direction: alternate;
}

@keyframes bounce_y {
  from {
    transform: translateY(0px);
  }
  to {
    transform: translateY(6px);
  }
}

@keyframes bounce_left {
  from {
    transform: translateX(0px);
  }
  to {
    transform: translateX(6px);
  }
}

@keyframes bounce_right {
  from {
    transform: translateX(6px);
  }
  to {
    transform: translateX(0px);
  }
}

.__scrollbar_hide__ {
  overflow-y: scroll;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
.__scrollbar_hide__::-webkit-scrollbar {
  display: none;
}

