.moleqular-search-input {
  width: 200px;
}

.moleqular-search-results {
  display: none;
}

.c-search-results {
  background-color: white;
  width: 100%;
  border: 2px solid black;
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 9999;
}

.c-search-results::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  opacity: 0;
  transition: opacity 200ms ease-in-out;
}

.c-search-results::before {
  content: "";
}

.c-search-results.isLoading::after {
  opacity: 1;
  z-index: 2;
}

.c-search-results__count {
  text-align: left;
  font-weight: 700;
  padding: 10px 10px;
  width: 100%;
  display: block;
}

.c-search-results__item {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.c-search-results__item--cat {
  padding-left: 10px;
}

.c-search-results__image {
  width: 50px;
  height: 50px;
  overflow: hidden;
  position: relative;
  margin-right: 15px;
}

.c-search-results__media {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: auto;
  transform: translate(-50%, -50%);
}

