.bariste-toast{
position:fixed;
top:35px;
right:0;
background:#59c379;
color:white;
padding:12px 18px;
border-radius:0;
font-size:14px;
box-shadow:0 10px 20px rgba(0,0,0,0.15);
z-index:999999;
opacity:0;
transform:translateY(-10px);
transition:all .3s ease;
font-family:inherit;
}

.bariste-toast.show{
opacity:1;
transform:translateY(0);
}
