.searchresultwrapper {
  z-index: 10000;
  position: absolute;
  left: 2px;

  box-sizing: border-box;
  width: 480px;
  color: #777;
  background-color: #fff;

  width: 550px;
  overflow-x: none;
  overflow-y: scroll;
}

@media (min-width: 999px) {
  .searchresultwrapper {
    max-height: 500px;
  }
}

@media (max-width: 999px) {
  .searchresultwrapper {
    left: 0px;
    top: 129px;
    width: 100vw;
    max-height: 50vh;
  }
}
/* 
@media (max-width:540px){
  .searchresultwrapper {
    left: 0px;
    top: 216px;
    width: 100vw;
    max-height: calc(100vh - 140px);
  }
}

@media (max-width:411px){
  .searchresultwrapper {
    left: 0px;
    top: 190px;
    width: 100vw;
    max-height: calc(100vh - 140px);
  }
}

@media (max-width:360px){
  .searchresultwrapper {
    left: 0px;
    top: 190px;
    width: 100vw;
    max-height: calc(100vh - 140px);
  }
}

@media (max-width:280px){
  .searchresultwrapper {
    left: 0px;
    top: 156px;
    width: 100vw;
    max-height: calc(100vh - 140px);
  }
} */

.search-list-item {
  padding: 6px;
  box-sizing: border-box;

  display: grid !important;
  grid-template-columns: 4fr 1fr;
  gap: 6px;
  align-content: center;
  border-bottom: 1px solid #e6e6e6;
  margin-bottom: 5px;
}

.search-list-item > a {
  display: grid !important;
  grid-template-columns: 1fr 3fr;
  gap: 6px;
  align-content: center;
}

.search-list-item > a > img {
  width: 64px;
  height: 64px;
  align-self: center;
  justify-self: center;
}

.search-list-item > form {
  display: flex;
  align-self: stretch;
  justify-content: stretch;
}

.search-list-item .search-item-cart-btn {
  border-left: 1px solid #e6e6e6;
  transition: all 0.3s;
  z-index: 10000;

  display: flex !important;
  width: 100%;
  height: 100%;
  text-align: center;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.search-list-item .search-item-cart-btn:hover {
  filter: brightness(0.8);
}

.search-list-item .search-item-cart-btn > img {
  width: 24px;
  height: 24px;
}

.search-list-item > a > div {
  box-sizing: border-box;

  width: 100%;

  display: flex;
  flex-direction: column;
}

.search-list-item > a > div > .search-item-title {
  color: #000 !important;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 12px;
  text-transform: uppercase;
  transition: all 150ms ease-in-out;
}

.search-list-item > a > div > .search-item-title:hover, .search-list-item > a > div > .search-item-title:focus {
  color: var(--purple-500) !important;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 12px;
}

.search-list-item > a > div > strong {
  font-size: 12px;
  color: var(--purple-500);
  font-weight: 700;
  font-family: "Lato", sans-serif;
}

.search-list-item > a > div > span {
  color: #a8a8a8;
  font-size: 12px;
  font-weight: 900;
}

.search-list-item > a > div > span > strong {
  color: var(--purple-500);
  font-size: 12px;
  font-weight: 900;
}
.search-list-item > a > div > p {
  margin: 0;
  padding: 0;
  color: #6f6f6f;
  font-size: 12px;
  font-weight: 600;
}

.search-list-item > a > div > p > span {
  color: var(--purple-500);
  font-size: 12px;
  font-weight: 700;
  line-height: 20px;
}
