@charset "UTF-8";
/***
 * Note de JNI :
 * 
 * Ce fichier n'est pas inclut par défaut dans le plugin pour des raisons de performances (on évite de charger des ressources inutiles)
 * 
 * En cas d'ajout de fonctionnalité côté Front, il faut décommenter le chargement du css dans la classe Loader
 * Vous pourrez ensuite supprimer cette note
 * 
 */
.autocomplete-core-results-wrapper {
  position: relative;
  z-index: 999;
  background-color: var(--autocomplete-background-color);
  border-bottom: 0.1rem solid var(--autocomplete-border-color);
  display: none;
}
.autocomplete-core-results-wrapper.show {
  display: block;
  position: absolute;
  top: 100%;
  box-shadow: 0px 1px 9px 1px rgba(0, 0, 0, 0.1);
}
.autocomplete-core-results-title {
  padding: 1rem;
  background-color: var(--autocomplete-title-background-color);
  color: var(--autocomplete-title-font-color);
}
.autocomplete-core-results-item {
  padding: 1rem;
  border-top: 0.1rem solid var(--autocomplete-border-color);
  cursor: pointer;
  transition: all ease-in-out 0.2s;
  background-color: var(--autocomplete-item-background-color);
  color: var(--autocomplete-item-font-color);
}
.autocomplete-core-results-item:hover {
  background-color: var(--autocomplete-item-background-color-hover);
  color: var(--autocomplete-item-font-color-hover);
}
.autocomplete-core-loader {
  position: absolute;
  right: 1.5rem;
  top: 2rem;
  bottom: 2rem;
  width: 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity ease-in-out 0.5s;
}
.autocomplete-core-loader.loading {
  opacity: 1;
}
.autocomplete-core-default {
  --autocomplete-background-color: white;
  --autocomplete-title-background-color: red;
  --autocomplete-title-font-color: white;
  --autocomplete-item-font-color: black;
  --autocomplete-item-background-color: white;
  --autocomplete-item-font-color-hover: black;
  --autocomplete-item-background-color-hover: white;
  --autocomplete-border-color: grey;
}

.lds-spinner-core {
  color: official;
  display: inline-block;
  position: relative;
  width: 64px;
  height: 64px;
  transform: scale(0.4);
}
.lds-spinner-core div {
  transform-origin: 32px 32px;
  animation: lds-spinner-core-animation 1.2s linear infinite;
}
.lds-spinner-core div:after {
  content: " ";
  display: block;
  position: absolute;
  top: 3px;
  left: 29px;
  width: 5px;
  height: 14px;
  border-radius: 20%;
  background: grey;
}
.lds-spinner-core div:nth-child(1) {
  transform: rotate(30deg);
  animation-delay: -1.1s;
}
.lds-spinner-core div:nth-child(2) {
  transform: rotate(60deg);
  animation-delay: -1s;
}
.lds-spinner-core div:nth-child(3) {
  transform: rotate(90deg);
  animation-delay: -0.9s;
}
.lds-spinner-core div:nth-child(4) {
  transform: rotate(120deg);
  animation-delay: -0.8s;
}
.lds-spinner-core div:nth-child(5) {
  transform: rotate(150deg);
  animation-delay: -0.7s;
}
.lds-spinner-core div:nth-child(6) {
  transform: rotate(180deg);
  animation-delay: -0.6s;
}
.lds-spinner-core div:nth-child(7) {
  transform: rotate(210deg);
  animation-delay: -0.5s;
}
.lds-spinner-core div:nth-child(8) {
  transform: rotate(240deg);
  animation-delay: -0.4s;
}
.lds-spinner-core div:nth-child(9) {
  transform: rotate(270deg);
  animation-delay: -0.3s;
}
.lds-spinner-core div:nth-child(10) {
  transform: rotate(300deg);
  animation-delay: -0.2s;
}
.lds-spinner-core div:nth-child(11) {
  transform: rotate(330deg);
  animation-delay: -0.1s;
}

@keyframes lds-spinner-core-animation {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.lds-ellipsis-core {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-ellipsis-core div {
  position: absolute;
  top: 33px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--dark-grey-color);
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-ellipsis-core div:nth-child(1) {
  left: 8px;
  animation: lds-ellipsis-core1 0.6s infinite;
}
.lds-ellipsis-core div:nth-child(2) {
  left: 8px;
  animation: lds-ellipsis-core2 0.6s infinite;
}
.lds-ellipsis-core div:nth-child(3) {
  left: 32px;
  animation: lds-ellipsis-core2 0.6s infinite;
}
.lds-ellipsis-core div:nth-child(4) {
  left: 56px;
  animation: lds-ellipsis-core3 0.6s infinite;
}

@keyframes lds-ellipsis-core1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes lds-ellipsis-core3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes lds-ellipsis-core2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}

/*# sourceMappingURL=app.css.map*/