.cart-form-road i:before{
    color: #1E3A70;
}
.payment-nav-row{
    max-width: 10% !important;
}
.cart-form span.woocommerce-Price-currencySymbol {
    display: inline-flex;
}
.cart-form span.woocommerce-Price-currencySymbol img{
    width: 16px !important;
}
.checkout-form * , .cart-form *{
    font-family: kalameh !important;
}
.checkout-form button#place_order:before, .checkout-form button#place_order:after, .cart-form a.checkout-button.button.alt.wc-forward:before, .cart-form a.checkout-button.button.alt.wc-forward:after{
    content: '';
    display: inline-block;
    position: absolute;
    top: calc(50% - 8px);
    left: 15px;
    animation-name: bounceAlpha;
    animation-duration: 1.4s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    background-color: #fff;
    border-radius: 5px;
    width: 3px;
    height: 16px;
}
.checkout-form button#place_order:after, .cart-form a.checkout-button.button.alt.wc-forward:after{
     left: 22px;
   animation-name: bounceAlpha;
   animation-duration:1.4s;
   animation-delay:0.2s;
   animation-iteration-count:infinite;
   animation-timing-function:linear;
}
@keyframes bounceAlpha {
  0% {opacity: 1; transform: translateX(0px) scale(1);}
  25%{opacity: 0; transform:translateX(-10px) scale(0.9);}
  26%{opacity: 0; transform:translateX(10px) scale(0.9);}
  55% {opacity: 1; transform: translateX(0px) scale(1); color:#FFF}
}