a.wrapAddedToCart{
    padding: 25px 20px;
    width: 289px;
    height: 89px;
    background: #6ec17c;
    position: fixed;
    right: -289px;
    z-index: 999999999999;
    top: 200px;
    color: #fff;
    display: none;
}

a.wrapAddedToCart:hover{
    color: #fff;
    background: #3c904b;
}

a.wrapAddedToCart .inner{
    font-size: 13px;    
}

a.wrapAddedToCart .JStext{
    display: block;
    min-height: 50px;
    width: 180px;
    white-space: normal;
    position: relative;
    overflow: hidden !important;
    text-overflow: ellipsis;
    top: -9px;
}

a.wrapAddedToCart .cartIcon{
    color: #fff;
    font-size: 46px;
    float: left;
    margin-right: 19px;
    position: relative;
    top: -5px;
}


a.wrapAddedToCart.show{
  animation-name: leftShow;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  display: block !important;
}


@keyframes leftShow {
  from {
    right: -289px;
  }
  to {
    right: 0;
  }
}




