#toast {
    visibility: hidden;
    max-width: 60px;
    height: 60px;
    /*margin-left: -125px;*/
    margin: auto;
  /*  background-color: #333;*/
  /* color: #fff;*/
    text-align: center;
  /*  border-radius: 2px;*/
overflow: hidden;
    position: fixed;
    z-index: 1;
    left: 0;right:0;
    bottom: 200px;
   /* font-size: 17px;*/
    white-space: nowrap;
}
#toast #img{
	width: 60px;
	height: 60px;
    border-bottom-left-radius: 10px;
	border-top-left-radius: 10px;
    float: left;
    
    padding-top: 16px;
    padding-bottom: 16px;
    
    box-sizing: border-box;

    
  /* background-color: #111;
    color: #fff;*/
}
#toast #desc{

    height: 60px;
   /* color: #fff;*/
    border-bottom-right-radius: 10px;
	border-top-right-radius: 10px;
    padding: 16px;
    overflow: hidden;
	white-space: nowrap;
}

#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 {bottom: 0; opacity: 0;} 
    to {bottom: 200px; opacity: 1;}
}

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

@-webkit-keyframes expand {
    from {min-width: 60px} 
    to {min-width: 350px}
}

@keyframes expand {
    from {min-width: 60px}
    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: 60px;}
}

@keyframes shrink {
    from {min-width: 350px;} 
    to {min-width: 60px;}
}

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

@keyframes fadeout {
    from {bottom: 200px; opacity: 1;}
    to {bottom: 0px; opacity: 0;}
}
