.nbp-loading-wrap {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(255,255,255,0.85);
  display: table;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
}
.nbp-loading-spinner {
  width: 300px;
  height: 50px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}
.nbp-loading-ball {
  width: 20px;
  height: 20px;
  background-color: #444;
  border-radius: 50%;
  display: inline-block;
  -webkit-animation: nbpLoading 3s cubic-bezier(0.77,0,0.175,1) infinite;
  animation: nbpLoading 3s cubic-bezier(0.77,0,0.175,1) infinite;
}
.nbp-loading-wrap.nbp-show {
  opacity: 1 !important;
  z-index: 9999;
  visibility: visible;
}
.nbix-pseudo-dropdown {
  position: relative;
  widh: 300px;
}
.nbix-pseudo-list {
  position: absolute;
  top: 36px;
  width: 300px;
  -webkit-box-shadow: 0 3px 10px 0 rgb(75 79 84 / 30%);
  -moz-box-shadow: 0 3px 10px 0 rgba(75,79,84,.3);
  -ms-box-shadow: 0 3px 10px 0 rgba(75,79,84,.3);
  box-shadow: 0 3px 10px 0 rgb(75 79 84 / 30%);
  background: #fff;
  z-index: 99;
  cursor: pointer;
  display: none;
  opacity: 0;
}
.nbix-pseudo-list.active {
  display: block;
  opacity: 1;
}
.nbix-pseudo-list-item {
  display: flex;
  padding: 5px 10px;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ddd;
  cursor: pointer;
}
.nbix-pseudo-list-item img{
  width: 50px;
  height: 50px;
}
.nbix-pseudo-result-name {
  flex-basis: calc(100% - 30px);
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  line-height: 30px;
}
.nbix-pseudo-result {
  height: 36px;
  padding: 3px 8px;
  border: 1px solid #eee;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  box-sizing: border-box;
  width: 300px;
}
@keyframes nbpLoading{
  0% {
      -webkit-transform: translateX(0) scale(1);
      -webkit-transform: translateX(0) scale(1);
      -ms-transform: translateX(0) scale(1);
      transform: translateX(0) scale(1);
  }
  25% {
      -webkit-transform: translateX(-50px) scale(0.3);
      -webkit-transform: translateX(-50px) scale(0.3);
      -ms-transform: translateX(-50px) scale(0.3);
      transform: translateX(-50px) scale(0.3);
  }
  50% {
      -webkit-transform: translateX(0) scale(1);
      -webkit-transform: translateX(0) scale(1);
      -ms-transform: translateX(0) scale(1);
      transform: translateX(0) scale(1);
  }
  75% {
      -webkit-transform: translateX(50px) scale(0.3);
      -webkit-transform: translateX(50px) scale(0.3);
      -ms-transform: translateX(50px) scale(0.3);
      transform: translateX(50px) scale(0.3);
  }
  100% {
      -webkit-transform: translateX(0) scale(1);
      -webkit-transform: translateX(0) scale(1);
      -ms-transform: translateX(0) scale(1);
      transform: translateX(0) scale(1);
  }
}
@-webkit-keyframes nbpLoading{
  0% {
      -webkit-transform: translateX(0) scale(1);
      -webkit-transform: translateX(0) scale(1);
      -ms-transform: translateX(0) scale(1);
      transform: translateX(0) scale(1);
  }
  25% {
      -webkit-transform: translateX(-50px) scale(0.3);
      -webkit-transform: translateX(-50px) scale(0.3);
      -ms-transform: translateX(-50px) scale(0.3);
      transform: translateX(-50px) scale(0.3);
  }
  50% {
      -webkit-transform: translateX(0) scale(1);
      -webkit-transform: translateX(0) scale(1);
      -ms-transform: translateX(0) scale(1);
      transform: translateX(0) scale(1);
  }
  75% {
      -webkit-transform: translateX(50px) scale(0.3);
      -webkit-transform: translateX(50px) scale(0.3);
      -ms-transform: translateX(50px) scale(0.3);
      transform: translateX(50px) scale(0.3);
  }
  100% {
      -webkit-transform: translateX(0) scale(1);
      -webkit-transform: translateX(0) scale(1);
      -ms-transform: translateX(0) scale(1);
      transform: translateX(0) scale(1);
  }
}