.shopping-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, 280px);
  grid-gap: 30px;
  justify-content: center;
  padding: 3px 0;
}

.shopping-list .item {
  border: 0px;
  height: 200px;
  position: relative;
  background-color: #f5f7f9;
  /* box-shadow: 0px 0px 3px 1px #0000008c; */
  box-shadow: 0px 0px 2px 1px #00000020;
  cursor: pointer;
}

.shopping-list .item .item-top {
  position: absolute;
  padding: 5px;
  width: 100%;
  top: 0;
  display: flex;
  justify-content: space-between;
}

.shopping-list .item .item-top img {
  width: auto;
  height: 20px;
}

.shopping-list .item img {
  width: 100%;
  height: calc(100% - 42px);
}

.shopping-list .item .item-button {
  padding: 0 8px;
  width: 100%;
  height: 42px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.shopping-list .item .item-button .name {
  border-left: 3px solid #0080ff;
  padding-left: 5px;
  height: 16px;
  line-height: 16px;
  white-space: nowrap;
  width: 80%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.shopping-list .item .item-button .star {
  display: flex;
  align-items: center;
}

.shopping-list .item .item-button .star img {
  height: 14px;
  width: auto;
  margin-right: 3px;
}
