﻿   #toast {
    visibility: hidden;
    max-width: 350px;
    height: auto;
    margin: auto;
    background-color: #4CAF50;
    color: #fff;
    text-align: left;
    border-radius: 6px;
    position: fixed;
    z-index: 2000;
    right:1px;
    top: 30px;
    font-size:13px;
    white-space: normal;
}
#toast #symbol  
{       
    color: #fff;  
    height: auto; 
    padding: 16px;    
    overflow: hidden;
    white-space: normal;
    line-height: 1.2;
}

#toast #mesg{    
    color: #fff;  
    height: auto; 
    padding: 16px;    
    overflow: hidden;
    white-space: normal;
    line-height: 1.2;
}

#toast.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, expand 0.5s 0.5s,stay 3s 1s, shrink 0.5s 2s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, expand 0.5s 0.5s,stay 3s 1s, shrink 0.5s 4s, fadeout 0.5s 4.5s;
}

@-webkit-keyframes fadein {
    from {top: 30px; opacity: 0;} 
    to {top: 30px; opacity: 1;}
}

@keyframes fadein {
    from {top: 30px; opacity: 0;}
    to {top: 30px; opacity: 1;}
}

@-webkit-keyframes expand {
    from {min-width: 50px} 
    to {min-width: 350px}
}

@keyframes expand {
    from {min-width: 50px}
    to {min-width: 350px}
}
@-webkit-keyframes stay {
    from {min-width: 350px} 
    to {min-width: 350px}
}

@keyframes stay {
    from {min-width: 350px}
    to {min-width: 350px}
}
@-webkit-keyframes shrink {
    from {min-width: 350px;} 
    to {min-width: 350px;}
}

@keyframes shrink {
    from {min-width: 350px;} 
    to {min-width: 350px;}
}

@-webkit-keyframes fadeout {
    from {top: 30px; opacity: 1;} 
    to {top: 30px; opacity: 0;}
}

@keyframes fadeout {
    from {top: 30px; opacity: 1;}
    to {top: 30px; opacity: 0;}
}