/**
 * jQuery toast plugin created by Kamran Ahmed copyright MIT license 2014
 */
.jq-toast-wrap { display: block; position: fixed; width: 250px;  pointer-events: none !important; margin: 0; padding: 0; letter-spacing: normal; z-index: 9000 !important; }
.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: 4px; font-size: 12px; line-height: 17px; position: relative;  pointer-events: all !important; background-color: #444444; color: white; }

.jq-toast-single h2 { font-family: 'Roboto', sans-serif; font-size: 14px; margin: 0px 1em 0px 0px; 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: 1.5em; cursor: pointer; text-shadow: 0 1px 0 #fff; opacity: .5;}

.jq-toast-loader { display: block; position: absolute; bottom: 0px; height: 2px; width: 0%; left: 0; border-radius: 5px; background: red; }
.jq-toast-loaded { width: 100%; }
.jq-has-icon { padding: 10px 10px 10px 50px; background-repeat: no-repeat; background-position: 10px; }

.jq-has-icon:before {
    font-family: "Ionicons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    text-rendering: auto;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
	
	font-size: 2em;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    width: 50px;
    height: 100%;
    top: 0;
}

.jq-icon-info {
	color: #004085;
    background-color: #cce5ff;
    border-color: #b8daff;
}

.jq-icon-warning {
	color: #856404;
    background-color: #fff3cd;
    border-color: #ffeeba;
}

.jq-icon-success {
	color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.jq-icon-error {
	color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.jq-icon-success:before {
    content: "";
    font-size: 3em;
}

.jq-icon-info:before {
    content: "";
}

.jq-icon-error:before {
    content: "";
}

.jq-icon-warning:before {
    content: "";
}