.toast * {
	transition: 0.1s ease all;
}
.toast-wrapper {
	position: fixed;
	left: 30px;
	bottom:30px;
	z-index: 9;
	display: grid;
	grid-template-columns:1fr;
	grid-gap: 10px;
}
@media (min-width: 1339px){
	.toast-wrapper {
		bottom: 65px;
	}
}
.toast-wrapper > * {
	margin-left: 0px;
	margin-bottom: 0px;
	margin-top: auto;
	margin-right: auto;
}
.toast {
	border-radius: 4px;
	
	background-color: var(--color_lowbright);
	display: block;
	padding: 15px 15px; 
	
	
	display: grid;
	grid-gap: 5px;
	grid-template-columns: 40px 1fr;
	
	box-shadow: 0 2px 3px 0 rgba(40,44,53,0.012),0 3px 7px 0 rgba(40,44,53,0.05);
	width: 400px;
	  transition: 0.3s all 2s;
}
@media (max-width: 520px){
	.toast {
		width: 100%;
		
	}
}
.toast + .toast { 
	  transition: 0.3s all 1.5s;
}
body:not(.jquery-inited) .toast,
.toast.closing { 
	transition: 0.3s all;
	 opacity: 0;
  transform: translateY(10px); /* Start position (off screen) */  
  /* Initial animation state */
	pointer-events: none;	
}
.toast + .toast.closing {
	transition: 0.9s ease all 0.2s;
	height: 1px;
	overflow: hidden;
}

.toast > * {
	margin: auto;
}
.toast i[class*="fa-"] {
	font-size: 30px;
}
.toast-text {
	max-width: 320px;
	position: relative;
	padding-right: 15px!important;
	padding-top: 5px!important;
	padding-bottom: 25px!important;
	margin-left: 0px;
	margin-right: 0px;
}

@media (max-width: 520px){
	.toast-wrapper {
		left: 10px;
		right: 10px;
		bottom: 0px;
	}
	.toast, .toast-text {
		max-width: 100%;
		
	}
}
.toast a[onClick*="closeToast"] {
	position: absolute;
	top: -5px;
	right: -5px;
	padding: 5px;
} 

.toast a[onClick*="closeToast"]:hover {
	
}
.toast a[href] {
	position: absolute;
	right: 0px;
	bottom: 0px;
}
.toast:not(:hover) a[href] {
	opacity: 0;
}

.toast a:hover {
	color: var(--color_darkest);
}

