:root {
  font-size: 16px;
}
* {
  font-family: "Montserrat", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.tree-multiselect > .selections {
  width: 100% !important;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.button-loading {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.tree-multiselect > .selections > .section {
  margin-top: 1rem;
}

.tree-multiselect > .selections > .item {
  display: none;
}
