/**
 * jQuery toast plugin created by Kamran Ahmed copyright MIT license 2014
 */

.jq-toast-wrap {
    display: block;
    position: fixed;
    width: 350px;
    pointer-events: none !important;
    margin: 0;
    padding: 0;
    letter-spacing: normal;
    z-index: 9000 !important;
    font-size: 14px;    
}

.samll .jq-toast-wrap {
    width: 250px !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;
    box-shadow: 1px 0px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    padding: 15px;
    margin: 0px 0px 5px;
    font-family: arial, sans-serif;
    line-height: 19px;
    position: relative;
    pointer-events: all !important;
    background-color: #fff;
    color: #2b2b2b;
    border-radius: 5px;
}

.jq-toast-single h2 {
    font-family: arial, sans-serif;
    font-size: 16px;
    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: 14px;
}

.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: 19px;
    background: none;
    margin: 0;
    padding: 0;
    letter-spacing: normal;
}

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

.jq-toast-loader {
    display: block;
    position: absolute;
    bottom: -3px;
    height: 5px;
    width: 0%;
    left: 0;
    border-radius: 5px;
    background: red;
}

.jq-toast-loaded {
    width: 100%;
}

.jq-has-icon {
    padding: 10px 10px 10px 70px;
    background-repeat: no-repeat;
    background-position: 10px;
    background-size: 50px;    
}

.jq-icon-info {
    background-image: url("../img/lvcBlueCountPulse.svg");
    color: #666;
    background-color: #fff;
    box-shadow: 0 0 1px rgba(0,0,0,0.2), 0 1px 2px rgba(0,0,0,0.05), 0 8px 50px rgba(0,0,0,0.05);
}

.jq-icon-warning {
    background-image: url("../img/austinTxMapSample.png");
    color: #333;
    background-color: #fff;
    box-shadow: 0 0 1px rgba(0,0,0,0.2), 0 1px 2px rgba(0,0,0,0.05), 0 8px 50px rgba(0,0,0,0.05);
}

.jq-icon-error {
    background-image: url("../img/ccOrangeIcon180302.svg");
    color: #000;
    background-color: #fff;
    box-shadow: 0 0 1px rgba(0,0,0,0.2), 0 1px 2px rgba(0,0,0,0.05), 0 8px 50px rgba(0,0,0,0.05);
}

.jq-icon-success {
    background-image: url("../img/flamelite.svg");
    color: #0095f7;
    background-color: #fff;
    box-shadow: 0 0 1px rgba(0,0,0,0.2), 0 1px 2px rgba(0,0,0,0.05), 0 8px 50px rgba(0,0,0,0.05);
}