.toast {
	position: fixed;
	display: inline-block;
	width: 40%;
	left: -100%;
	z-index: 9999;
	/*bottom: 0px;*/
	box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 10px 0px;
	background: #323232;
	color: #EEE;
	border-radius: 3px;
	padding: 20px 25px 11px 25px;
	line-height: 1;
	overflow: hidden;
	transition: left 0.5s, bottom 0.5s;
}
.toast.toast-show {
	left: 50px;
}
.toast.toast-static {
	position: static;
	left: initial;
	width: 100%;
	max-width: initial;
	z-index: initial;
	margin: 5px 5px 15px 5px;
}
.toast .toast-message {
	padding-bottom: 7px;
	line-height: 1;
}
.toast button.toast-close {
	display: none;
	font-family: serif;
	font-size: 31px;
	opacity: 0.2;
	margin-top: -10px;
	margin-left: 15px;
	float: right;
	font-weight: 700;
	text-shadow: 0 1px 0 #fff;
	background: transparent;
	border: none;
	padding: 0px;
	opacity: 0.2;
	color: white;
	outline: none;
	line-height: 1;
}
.toast button.toast-close:hover {
	opacity: 0.5;
}
.toast .toast-actions {
	float: right;
	line-height: 1;
	margin-top: -5px;
}
.toast .toast-actions button {
	font-size: 13px;
	text-transform: uppercase;
	border-radius: 2px;
	background: rgba(255, 255, 255, 0);
	border: none;
	padding: 5px;
	color: #FFC107;
	outline: none;
	margin-left: 10px;
	line-height: 1;
}
.toast .toast-actions button:active {
	background: rgba(255, 255, 255, 0.1);
}
@media(max-width: 768px) {
	.toast:not(.toast-static) {
		width: 100%;
		max-width: 100%;
		left: 0% !important;
		right: 0% !important;
		bottom: 0% !important;
		border-radius: 0px;
	}
	.toast:not(.toast-static):not(:last-child) {
		display: none;
	}
}