.lista-resultados {
    position: absolute;
    width: 99.8%;
    height: 50rem;
    left: 0;
    padding: 0;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 1rem;
    display: none;
    z-index: 1000;
    overflow: hidden;
    overflow-y: auto;
}
.lista-resultados::-webkit-scrollbar{
  width: 5px;
}
.lista-resultados::-webkit-scrollbar-thumb{
  position: absolute;
  width: 6px;
  height: 30px;
  left: 1110px;
  background: #555353;
  border-radius: 50px;
  }
.itemLoader {
    display: flex;
    align-items: center;
    padding: 10px;
    cursor: pointer;
    border-bottom: 1px solid #ddd;
}
.itemLoader span{
  width: 28rem;
  color: black;
}
.itemLoader img {
    width: 5rem;
    height: 5rem;
    margin-right: 10px;
    border-radius: 5px;
}
.itemLoader:hover {
    background: #f0f0f0;
}

.busca {
  text-align: center;
}

.search{
  display: flex;
  width: fit-content;
  align-items: flex-end;
}

.search .clear-btn {
  right: 3.5rem;
  top: 1.65rem;
  position: relative;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 2rem;
  color: gray;
  display: none;
}

.search .clear-btn:hover {
  color: black;
}
.search input {
  background-image: url(../../../images/icons/icone-search.png);
  background-repeat: no-repeat;
  height: 12px;
  padding: 1rem 4rem 1rem 1rem;
  margin-top: 0;
  background-position: 96%;
  border: 1px solid #d6d6d6;
  border-radius: 50px;
  color: black;
  position: relative;
  font-size: 13px;
}