/**
 * jQuery toast plugin created by Kamran Ahmed copyright MIT license 2014
 * v0.1
 */
.jq-toast-wrap { display: block; position: fixed; width: 250px;  pointer-events: none !important; margin: 0; padding: 0; letter-spacing: normal; z-index: 9999;}
.jq-toast-wrap * { margin: 0; padding: 0; }

.jq-toast-wrap.bottom-left { bottom: 20px; left: 20px; }
.jq-toast-wrap.bottom-right { bottom: 0; right: 0; }
.jq-toast-wrap.top-left { top: 20px; left: 20px; }
.jq-toast-wrap.top-right { top: 20px; right: 40px; }

.jq-toast-single {
	display: block;
	width: 100%;
	padding: 0;
	margin: 0;
	border-radius: 0;
	font-size: 12px;
	font-family: arial, sans-serif;
	line-height: 17px;
	position: relative;
	pointer-events: all !important;
}

.jq-toast-single h2 { font-family: arial, sans-serif; font-size: 14px; margin: 0px 0px 7px; background: none; color: inherit; line-height: inherit; letter-spacing: normal; }
.jq-toast-single a { color: #eee; text-decoration: none; font-weight: bold; border-bottom: 1px solid white; padding-bottom: 3px; font-size: 12px; }

.jq-toast-single ul { margin: 0px 0px 0px 15px; background: none; padding:0px; }
.jq-toast-single ul li { list-style-type: disc !important; line-height: 17px; background: none; margin: 0; padding: 0; letter-spacing: normal; }

.close-jq-toast-single { position: absolute; top: 3px; right: 7px; font-size: 14px; cursor: pointer; }

.close-jq-toast-single {
	box-shadow: rgba(0, 0, 0, 0.4) 0 2px 5px;
	position: absolute;
	right: 7px;
	top: -13px;	
	width: 35px;
	height: 35px;
	display: block;
	padding: 8px 0;
	background: #ff4242;
	text-align: center;
	font-size: 24px;
	font-weight: 800;
	color: white;
	-webkit-border-radius: 50%;
	border-radius: 50% !important;
	background-clip: padding-box;
	-webkit-transition-duration: 0.3s;
	-moz-transition-duration: 0.3s;
	-ms-transition-duration: 0.3s;
	-o-transition-duration: 0.3s;
	-transition-duration: 0.3s;
	transition-duration: 0.3s;
}

.close-jq-toast-single:hover {
	color: white;
	box-shadow: 0 25px 55px 0 rgba(0, 0, 0, 0.21), 0 16px 28px 0 rgba(0, 0, 0, 0.22);
	-webkit-transition: all 0.2s ease-out;
	-moz-transition: all 0.2s ease-out;
	-ms-transition: all 0.2s ease-out;
	-o-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
}