a.cart-btn {
    font-family: 'Poppins', sans-serif;
    display: inline-block;
    background-color: #0e2238;
    color: #fff;
    padding: 10px 20px;
    margin-right: 30px !important;
    }

    a.cart-btn i {
    margin-right: 5px;
    }
    a.cart-btn {
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    }

    a.cart-btn:hover {
    background-color: #F28123;
    color: #F28123;
    }



.add-to-cart 
{
    padding: 8px 8px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s;
}
.add-to-cart:active 
{
    transform: scale(0.95);
}

.item-count 
    {
    position: absolute;
    top: -5px;
    right: -10px;
    background-color: red;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;  
    }

    .animate {
         animation: bounce 1s;
    }

    @keyframes bounce 
    {
            0%, 20%, 50%, 80%, 100%
             {
                transform: translateY(5);
             }
            40%
             {
                transform: translateY(-20px);
             }
            60%
             {
                transform: translateY(-25px);
             }
    }