#snackbar {
    visibility: hidden;
    min-width: 100%;
    
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 2px;
    padding: 16px;
    position: fixed;
    z-index: 1;
    left: 0;
    bottom: 0;
    font-size: 17px;
}
.snack_content{
	float:left;
	margin-top:0.5%;
}
.snack_option{
	float:left;
	margin-left:7%;
}
#snackbar.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s;
    animation: fadein 0.5s;
}

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

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

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

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

/*Snack Bar Common Version*/

.snackbar_notify {
    display:none;
    width: 18%;
    background-color: #CB4C4C;
    color: #fff;
    text-align: center;
    border-radius: 2px;
    padding: 16px;
    position: fixed;
    z-index: 1;
    left: 79%;
    bottom: 1%;
    font-size: 17px;
    height:auto;
}
.snackbar_notify .snack_content{
	margin-top:-2.5%;
	width:100%;
}
.snackbar_notify .snack_content .snack_header{
	margin-top:3%;
	font-weight:bolder;
}
.snackbar_notify .snack_content .snack_body{
	background-color:white;
	color:black;
	width:auto;
	display:none;
}


.snackbar_notify .snack_option{
	float:left;
	margin-left:7%;
}
.snackbar_notify.show {
	display:block;
}

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

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

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

@keyframes fadeout {
    from {bottom: 0; opacity: 1;}
    to {bottom: 0; opacity: 0;}
}
/*Exit*/
