.toast-flex{
    display: flex;
    justify-content: center;
    position: relative;
    bottom: 4px;
}
#cart-success-snackbar {
    visibility: hidden;
    padding: 16px;
    position: fixed;
    z-index: 100;
    left: 40%;
    bottom: 130px;
    border-radius: 50px;
    background-color: #003D33;
    font-family: TTNormsPro, Helvetica, sans-serif;
    font-size: 20px ;
    letter-spacing: 0px;
    color: #F2ECDA;
    opacity: 1;
    text-align: center;
    width: auto;
    height: 48px;
}

#cart-success-snackbar.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

#toas-img{
    content: url('../images/food-bowl.png');
    width: 30px;
    height: 26px;
    position: relative;
    bottom: 2px;
}
div#toast-text {
    position: relative;
    bottom: 2px;
}

@-webkit-keyframes fadein {
    from {bottom: 0; opacity: 0;}
    to {bottom: 130px; opacity: 1;}
}

@keyframes fadein {
    from {bottom: 0; opacity: 0;}
    to {bottom: 130px; opacity: 1;}
}

@-webkit-keyframes fadeout {
    from {bottom: 130px; opacity: 1;}
    to {bottom: 0; opacity: 0;}
}

@keyframes fadeout {
    from {bottom: 130px; opacity: 1;}
    to {bottom: 0; opacity: 0;}
}
@media only screen and (max-width: 767px){
    #cart-success-snackbar {
        width: auto;
        height: auto;
        right: 8px;
        left: 3%;
    }
    #toas-img{
        left: 13px;
        top: 3px;
    }
    div#toast-text {
        text-align: center;
        top: 3px;
        padding-left: 5px;
    }
}