#success_message,
#error_message {
  display: none
}

#overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 100%;
  padding: 0 calc(var(--bs-gutter-x) * .5);
  display: none
}

.cv-spinner {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, .25);
  border-radius: 5px
}

.spinner {
  width: 3rem;
  height: 3rem;
  border: 4px var(--bs-info) solid;
  border-top: 4px var(--bs-secondary) solid;
  border-radius: 50%;
  animation: sp-anime 0.8s infinite linear
}

div:has(>#overlay) {
  position: relative
}

@keyframes sp-anime {
  100% {
    transform: rotate(360deg)
  }
}

.multiselect-dropdown .dropdown-menu {
  max-height: 300px;
  overflow-y: auto;
  overflow-x: hidden;
}
