
#addedCartItem {
  position: sticky;
  display: flex;
  opacity: 0;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  bottom: 2em;
  left: calc(100% - 28em);
  padding: 1em;
  background-color: var(--white);
  border: 2px solid black;
  border-radius: 0.2em;
  max-width: 25em;
}

#addedCartItem:hover {
  cursor: pointer;
}

#addedCartItem img {
  width: 6em;
  height: 6em;
  object-fit: contain;
}

#addedItemHeader {
  font-size: 1.2em;
}

#addedItemHeader p {
  margin: 0.2em 0;
  font-weight: bold;
}

#addedItemBelow {
  margin-top: 1em;
  font-size: 1.1em;
  font-weight: bold;
}

#addedItemBelow p {
  margin: 0.3em 0;
}


@media only screen and (max-width: 600px) {

  #addedCartItem {
    width: calc(90vw - 2em);
    left: 5vw;
    max-width: unset;
  }


}