#antToast {
	width: 380px;
	color: white;
	padding: 10px;
	position: fixed;
    right: 40px;
 /*   left: 0px; */
	z-index: 9;
}
#antToast div {
	position: relative;
}
#antToast a {
	color: white;
	text-decoration: none;
}
#antToast a.antToastBnr img {
	width: 100%;
	height: auto;
	position: absolute;
	right: -12px;
	bottom: 0;
}
#antToast a.antToastClose {
	position: absolute;
	/*bottom: 76px;
	bottom: 92px;*/
	bottom: 100px;
	right: -28px;
	width: 36px;
	height: 36px;
}
#antToast a.antToastClose img {
	width: 100%;
	height: 100%;
}
.antToastHide {
	bottom: -150px;
	-webkit-opacity: 0;
	opacity: 0;
}
.antToastShow {
	transition-property: -webkit-opacity bottom;
	transition-duration: 0.5s;
	-webkit-opacity: 0.95;
	opacity: 0.95;
	bottom: 80px;
    /* bottom: 15px; */
}
.antToastNone {
	transition-property: -webkit-opacity bottom;
	transition-duration: 1s;
	-webkit-opacity: 0;
	opacity: 0;
	bottom: -150px;
}

@media screen and (max-width: 768px){
#antToast {
	width: 88%;
	color: white;
	padding: 10px 10px 30px 10px;
	position: fixed;
	left: 40%;
	margin-left: -40%;
	z-index: 9;
    bottom: 40px;
}
#antToast div {
	position: relative;
}
#antToast a {
	color: white;
	text-decoration: none;
}
#antToast a.antToastBnr img {
	width: 100%;
	height: auto;
	position: absolute;
	right: -12px;
	bottom: 0;
}
#antToast a.antToastClose {
	position: absolute;
	/* bottom: 84px; */
    bottom: 97px;
	right: -28px;
	width: 36px;
	height: 36px;
}
.antToastHide {
	bottom: -150px;
	-webkit-opacity: 0;
	opacity: 0;
}
.antToastShow {
	transition-property: -webkit-opacity bottom;
	transition-duration: 0.5s;
	-webkit-opacity: 0.95;
	opacity: 0.95;
	bottom: 90px;
}
.antToastNone {
	transition-property: -webkit-opacity bottom;
	transition-duration: 1s;
	-webkit-opacity: 0;
	opacity: 0;
	bottom: -150px;
}
}