/**
 * You can place your custom CSS statements here
 * it is better to write everything custom here
 * because this file won't be replaced during upgrade
 * Don't forget to rename this file to "site.css"
 */
.am-active-invoice-product {
word-wrap: break-word;
}
.am-cart .am-cart-product .am-cart-product-content-title .am-cart-new {
    padding: .2em;
    font-size: .6rem;
    font-weight: bold;
    line-height: normal;
    text-transform: uppercase;
    letter-spacing: normal;
    vertical-align: top;
    background-color: red;
    color: white;
    border: 1px dotted #DAA520;
    margin-left: 0.5em;
    animation: animate 2s linear infinite;
}
@keyframes animate{
   0%{
     opacity: 0;
   }
   50%{
     opacity: 0.7;
   }
   100%{
     opacity: 0;
   }
 }
