ul.wizard-list,
.wizard-list-item,
ul.wizard-list li {
  margin: 0;
  padding: 0;
  text-indent: 0;
  list-style-type: none;
  min-width: 100%;
  position: relative;
}

.btn-group.wizard-list-item {
  white-space: nowrap;
}

.wizard-btn-center {
  text-align: center;
  white-space: nowrap;
}

.wizard-btn-center * {
  white-space: nowrap;
}

.wizard-btn-center .btn-group {
  display: inline-block;
}

.wizard-btn-center .btn-group .btn {
  margin: 0;
  display: inline-block;
}

.wizard-search-container {
  padding: 10px 15px;
  color: #333;
  background-color: #f5f5f5;
  border-bottom: 1px solid #ddd;
}

.wizard-search {
  height: 3em !important;
  transition: height 0.25s ease-in-out;
}

.wizard-search-container-active > .wizard-search,
.wizard-search-container:focus-within > .wizard-search {
  height: 10em !important;
}

.wizard-search-options {
  margin-top: 5px;
  display: flex;
  justify-content: space-between;
  height: 0;
  opacity: 0;
  transition: opacity 0.25s ease-in-out;
}

.wizard-search-container-active > .wizard-search-options,
.wizard-search-container:focus-within > .wizard-search-options {
  height: auto;
  opacity: 1;
}

.wizard-loader {
  position: absolute;
  z-index: 100;
  top: 2em;
  left: 0;
  font-size: 2em;
  text-align: center;
  width: 100%;
  display: block;
  transform-origin: 50% 47%;
  animation: wizard-loading 2s infinite linear;
}

@keyframes wizard-loading {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

ul.wizard-list {
  height: 10em;
  overflow-y: auto;
  padding: 4px;
  margin-top: 6px;
}

.wizard-panel .wizard-union-toggle {
  margin-top: 6px;
}

.wizard-panel .wizard-union-toggle-min-group {
  max-width: 150px;
  margin: 0 auto;
  display: none;
}

.wizard-panel .wizard-union-toggle-min-group input {
  height: 22px;
}

.wizard-panel .wizard-union-toggle-min-group .input-group-btn .btn {
  height: 22px;
  padding: 0 10px;
}

button.wizard-list-add {
  width: 2.45em;
  z-index: 100;
}

button.wizard-list-rem {
  width: 2.45em;
  z-index: 100;
}

.wizard-list-name {
  width: calc(100% - 2.45em);
}

div.wizard-panel {
  min-width: 140px;
  overflow: hidden;
}

div.wizard-panel .panel-body {
  padding: 6px;
}

.btn.wizard-btn-tag {
  pointer-events: none;
}
