
/* === Suggestions recherche comptes === */
.search-wrap {
  position: relative;
  z-index: 5;
}

.search-bar {
  position: relative;
}

.search-suggest {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 6px);
  background: #0f0f0f;
  border: 1px solid #2a2a2a;
  border-radius: 10px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, .45);
  overflow: auto;
  max-height: 280px;
  display: none;
}

.search-suggest.show {
  display: block;
}

.search-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  cursor: pointer;
}

.search-item:hover,
.search-item.active {
  background: #161616;
}

.search-item img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid #222;
}

.search-item .psd {
  font-weight: 700;
  color: #eaeaea;
}


.search-wrap {
  position: relative;
  z-index: 5
}

.search-bar {
  position: relative
}

.search-suggest {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 6px);

}

.search-suggest.show {
  display: block;
}
