.alert-success,
.alert-warning{
    position: fixed;
    bottom: -100%;
    left: 20px;
    z-index: 9999;
    padding: 8px;
    border-radius: 4px;
    box-shadow: 0 5px 10px -5px rgba(0, 0, 0, .15), 0 10px 10px -5px rgba(0, 0, 0, .1);
    font-size: 14px !important;
    width: 300px;
    visibility: hidden;
    opacity: 0;
    transition: all 1s ease;
}

.alert-success.active,
.alert-warning.active{
    bottom: 80px;
    visibility: visible;
    opacity: 1;
}

.alert-success a,
.alert-warning a{
    color: var(--link_color) !important;
}

.alert-success a:hover,
.alert-warning a:hover{
    text-decoration: underline;
}

.cartheader .cart_body .grid .cart_item_name .input-text{
    font-size:14px;
    font-weight:bold;
}