/**
 * jQuery toast plugin created by Kamran Ahmed copyright MIT license 2014
 */
.jq-toast-wrap { display: block; position: fixed; width: 90%; pointer-events: none !important; margin: 0; padding: 0; letter-spacing: normal; z-index: 9000 !important; }

@media screen and (min-width: 992px) {
	.jq-toast-wrap { max-width: 500px; width: auto; }
}
.jq-toast-wrap * { margin: 0; padding: 0; }

.jq-toast-wrap.bottom-left { bottom: 20px; left: 20px; }
.jq-toast-wrap.bottom-right { bottom: 20px; right: 40px; }
.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: 10px; margin: 0px 0px 5px; border-radius: 0; font-size: 12px; font-family: Lato, arial, sans-serif; line-height: 18px; position: relative;  pointer-events: all !important; background-color: #444444; color: white; }
.jq-toast-single:before {
	display: inline-block;
	font-family: "Glyphicons Halflings";
	font-size: 26px;
	position: absolute;
	margin-left: -1.4em;
	margin-top: 0.4em;
}
.jq-toast-single h2 { font-family: Lato, arial, sans-serif; font-size: 16px; font-weight: 600; margin: 0 15px 3px 0; background: none; color: inherit; line-height: inherit; letter-spacing: normal;  }
.jq-toast-single p { font-family: Lato, arial, sans-serif; font-size: 14px; }
.jq-toast-single p:first-letter { text-transform: uppercase; }

.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: 11px; right: 10px; font-size: 24px; cursor: pointer; border: none; background: none; }

.jq-toast-loader { display: block; position: absolute; top: -2px; height: 5px; width: 0%; left: 0; border-radius: 5px; background: red; }
.jq-toast-loaded { width: 100%; }
.jq-has-icon { padding: 10px 30px 12px 50px; background-repeat: no-repeat; background-position: 10px; }

.jq-icon-info {
	/* background-color: #d7faff; */
	background-color: #fff;
	color: #000;
	border: 1px solid #ddd;
	border-left: 4px solid #269abc;
}
.jq-icon-info::before {
	color: #269abc;
	content: "\e086";
}
.jq-icon-warning {
	/* background-color: #f9f4d4; */
	background-color: #fff;
	color: #000;
	border: 1px solid #ddd;
	border-left: 4px solid #f90;
}
.jq-icon-warning::before {
  color: #f90;
  content: "\e107";
}
.jq-icon-error {
	/* background-color: #f3e9e8; */
	background-color: #fff;
	color: #000;
	border: 1px solid #ddd;
	border-left: 4px solid #d3080c;
}
.jq-icon-error::before {
  color: #d3080c;
  content: "\e101";
}
.jq-icon-success {
	/* background-color: #d8eeca; */
	background-color: #fff;
	color: #000;
	border: 1px solid #ddd;
	border-left: 4px solid #278400;
}
.jq-icon-success::before {
	color: #278400;
	content: "\e084";
}