.assets-search {
  position: relative;
  width: 100%;
  z-index: 1200;
  background-color: var(--app-background-section);
}

.input-wrapper {
  position: relative;
  height: 25px;
}

.input-wrapper input {
  width: 100%;
  height: 100%;
  padding-right: 35px;
  padding-left: 5px;
}

.input-wrapper input.animate {
  animation: pulse 1s linear infinite;
}

.input-wrapper input:focus {
  box-shadow: 0 0 2px 0 rgba(0,0,0,.4), 0 1px 3px 0 rgba(0,0,0,.1);
  border: none;
}

.input-background {
  position: absolute;
  background-position: center center;
  background-size: 12px;
  background-repeat: no-repeat;
  height: 100%;
  width: 25px;
  right: 0;
  top: 0;
  bottom: 0;
}

.input-background-search {
  background-image: url("./search.png");
}

.input-background-close {
  background-image: url("./close.png");
  cursor: pointer;
}

.assets-search-list {
  position: relative;
  top: -6px;
  width: 320px;
  max-height: 310px;
  overflow-y: scroll;
  z-index: 200;
  background-color: var(--app-background-section);
  box-shadow: 0 1px 2px 0 rgba(0,0,0,.7), 0 1px 15px 0 rgba(0,0,0,.5);
}
