@keyframes rotate {
  100% {
    transform: rotate(1turn);
  }
}

@keyframes rotate2 {
  100% {
    transform: rotate(3turn);
  }
}

@keyframes gradient-animation {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.hb-bar-container {
  display: flex;
  width: 100%;
  max-width: 100%;
  height: 150px;
  align-items: flex-end;
  gap: 4px;
  padding: 0;
  border-bottom: 1px solid rgba(72, 94, 144, 0.16);
}

.hb-bar {
  flex: 1;
  height: 150px;
  border-radius: 6px;
  background: linear-gradient(to top, #00ff88, #007744);

  animation: growIn 0.5s ease forwards;
  transform: scaleY(0);
  transform-origin: bottom;

  min-width: 1px;
}

.hb-bar.warning {
  background: linear-gradient(to top, #ff4444, #990000);
}

.hb-bar.error {
  background: linear-gradient(to top, #ff4444, #990000);
}

.hb-bar.empty {
  background: linear-gradient(to top, #00a1ff, #18c9cd);
}

.hb-bar-item-empty {
  font-weight: bold;
  margin: auto;
}

.pulse-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background: #111;
}

.pulse-dot {
  width: 16px;
  height: 16px;
  background-color: #00c2ff;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.7);
  animation: pulse 3.2s infinite ease-in-out;
}

.paused {
  background-color: #444;
  box-shadow: none;
  animation: none;
  opacity: 0.5;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 76, 255, 0.6);
  }

  70% {
    transform: scale(1.4);
    box-shadow: 0 0 0 10px rgba(0, 255, 136, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 255, 136, 0);
  }
}

@keyframes growIn {
  to {
    transform: scaleY(1);
  }
}

@media (max-width: 600px) {
  .hb-bar-container {
    height: 100px;
  }
}

@keyframes rotate {
  100% {
    transform: rotate(1turn);
  }
}

@keyframes rotate2 {
  100% {
    transform: rotate(3turn);
  }
}

@keyframes gradient-animation {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.rainbow-base {
  position: relative;
  z-index: 0;
  border-radius: 10px;
  overflow: hidden;
  padding: 2rem;
  margin-bottom: 15px;
  background: white;
}

.rainbow {
  position: relative;
  z-index: 0;
  border-radius: 10px;
  overflow: hidden;
  padding: 2rem;
  margin-bottom: 15px;
}

.rainbow::before {
  content: "";
  position: absolute;
  z-index: -2;
  left: -50%;
  top: -50%;
  width: 200%;
  height: 200%;
  background-color: #399953;
  background-repeat: no-repeat;
  background-size: 50% 50%, 50% 50%;
  background-position: 0 0, 100% 0, 100% 100%, 0 100%;
  background-image: linear-gradient(#399953, #399953), linear-gradient(#fbb300, #fbb300), linear-gradient(#d53e33, #d53e33), linear-gradient(#377af5, #377af5);
  animation: rotate 9s linear infinite;
}

.rainbow::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 6px;
  top: 6px;
  width: calc(100% - 12px);
  height: calc(100% - 12px);
  background: white;
  border-radius: 5px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background: rgba(27, 46, 75, 0.9) !important;
}