/* Loading composant */

.loading-component-filter {
  background-color: #FFF;
  opacity: 0.8;
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 20;
  top: 0px;
  left: 0px;
  display: none;
}
.loading-component-filter .loading-inner {
  border: 2px solid rgba(0, 0, 0, 0.5);
  border-top-color: rgba(0, 0, 0, 0.08);
  border-left-color: rgba(0, 0, 0, 0.08);
  background-color: transparent;
  border-radius: 150px !important;
  vertical-align: middle;
  -webkit-animation: loading 1s infinite linear;
  -moz-animation: loading 1s infinite linear;
  -ms-animation: loading 1s infinite linear;
  -o-animation: loading 1s infinite linear;
  animation: loading 1s infinite linear;
  width: 100px;
  height: 100px;
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -50px;
  margin-top: -50px;
}
.loading-component-filter .loading-inner img {
  display: none;
}
@-webkit-keyframes loading {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@-moz-keyframes loading {
  0% {
    -moz-transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(360deg);
  }
}
@-ms-keyframes loading {
  0% {
    -ms-transform: rotate(0deg);
  }
  100% {
    -ms-transform: rotate(360deg);
  }
}
@-o-keyframes loading {
  0% {
    -o-transform: rotate(0deg);
  }
  100% {
    -o-transform: rotate(360deg);
  }
}
@keyframes loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.filtre {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.recherche {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.recherche > * {
  margin-right: 5px;
}
.tag-selector {
  margin-right: 5px;
  margin-bottom: 5px;
}
* {
  box-sizing: border-box;
}
.select-multiple.multi-select {
  background-color: #FFF;
}
.multi-select,
.multi-select-plugin {
  display: inline-block;
  position: relative;
}
.multi-select > span,
.multi-select-plugin > span {
  border: none;
  background: none;
  position: relative;
  padding: 0.25em 0.5em;
  padding-right: 1.5em;
  display: block;
  border: solid 1px #000;
  cursor: default;
}
.multi-select > span > .chevron,
.multi-select-plugin > span > .chevron {
  display: inline-block;
  transform: rotate(-90deg) scale(1, 2) translate(-50%, 0);
  font-weight: bold;
  font-size: 0.75em;
  position: absolute;
  top: 0.2em;
  right: 0.75em;
}
.multi-select > ul,
.multi-select-plugin > ul {
  position: absolute;
  list-style: none;
  padding: 0;
  margin: 0;
  left: 0;
  top: 100%;
  min-width: 100%;
  z-index: 1000;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  display: none;
  max-height: 320px;
  overflow-x: hidden;
  overflow-y: auto;
}
.multi-select > ul > li,
.multi-select-plugin > ul > li {
  white-space: nowrap;
}
.multi-select > ul > li.selected > label,
.multi-select-plugin > ul > li.selected > label {
  background-color: LightBlue;
}
.multi-select > ul > li.focused > label,
.multi-select-plugin > ul > li.focused > label {
  background-color: DodgerBlue;
}
.multi-select > ul > li > label,
.multi-select-plugin > ul > li > label {
  padding: 0.25em 0.5em;
  display: block;
}
.multi-select > ul > li > label:focus,
.multi-select-plugin > ul > li > label:focus,
.multi-select > ul > li > label:hover,
.multi-select-plugin > ul > li > label:hover {
  background-color: DodgerBlue;
}
.multi-select.in > ul,
.multi-select-plugin.in > ul {
  display: block;
}
.multi-select-backdrop,
.multi-select-plugin-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 900;
}
