.paymentError{
    color: red;
    font-size: large;
    font-weight: 600;
    animation-duration: 15s;
    animation-direction: normal;
    animation-name: title;
    animation-iteration-count: infinite;
    transition: width 10s;
    /* background-color:yellow; */
}
@keyframes title{
    from{
        display: flex;
        justify-content: end;
        transform: translateX(0%);
    }
    
     to{display: flex;
        justify-content: end;
        transform: translateX(-100%);
    }
}

.paymentErrordiv{
    background-color:rgb(243, 243, 116);
    margin-right: 0;
    padding-right: 0;
}

.paymentErrordiv:hover{
     transition: transform .5s;
    transform: scale(1.5,1.5);
}
/* .card{
    transition: transform 2s;
    transform: scale(1.05,1.05);
} */
.card:hover{
 transition: transform .5s;
    transform: scale(1.09,1.09);
}
img:hover{
   transition: transform .5s;
    transform: scale(1.09,1.09); 
}
video:hover{
     transition: transform .5s;
    transform: scale(1.5,1.5);
}


tr:hover{
    transition: transform 1s;
    transform: scale(1.05,1.05);
}