.cart-contents {
	position: relative;
}

.cart-contents span {
    position: absolute;
    background: black;
    color: white;
    border-radius: 50%;
    display: grid;
    place-items: center;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    width: 0.9rem;
    height: 0.9rem;
    line-height: 0.8rem;
    font-size: 0.7rem;
    left: 0.6rem;
    bottom: -0.4rem;
}

.cart-contents span.animated {
	-webkit-animation-name: bounceIn; 
    animation-name: bounceIn;
}

@keyframes bounceIn {
   0% { 
      opacity: 0; 
      transform: scale(.3);
   }
   50% { 
      opacity: 1;
      transform: scale(1.4);
   }
   70% {
      transform: scale(.9);
   }
   100% {
      transform: scale(1);
   }
}