/*
 * jQuery toast plugin CSS
 * https://github.com/kamranahmedse/jquery-toast-plugin
 */

.jq-toast-wrap {
    display: block;
    position: fixed;
    width: 250px;
    pointer-events: none !important;
    margin: 0;
    padding: 0;
    z-index: 9999 !important;
}

.jq-toast-wrap * { margin: 0; padding: 0; }

.jq-toast-single {
    display: block;
    width: 100%;
    padding: 12px 20px;
    margin: 0 0 8px;
    border-radius: 6px;
    font-size: 0.87rem;
    font-family: 'Public Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 500;
    line-height: 1.5;
    position: relative;
    pointer-events: all !important;
    background-color: #1a1a2e;
    color: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    border-left: 4px solid rgba(255,255,255,0.2);
}

.close-jq-toast-single {
    position: absolute;
    top: 6px;
    right: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    color: rgba(255,255,255,0.6);
    background: none;
    border: none;
    line-height: 1;
    padding: 0;
}
.close-jq-toast-single:hover { color: #fff; }

.jq-toast-heading {
    font-size: 0.93rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: #fff;
}

.jq-toast-single-text { margin: 0; }

/* Icons */
.jq-toast-icon {
    display: inline-block;
    margin-right: 8px;
    font-size: 1rem;
    vertical-align: middle;
}

/* Type colours */
.jq-has-icon.jq-icon-info    { background-color: #0d6efd; border-left-color: #6ea8fe; }
.jq-has-icon.jq-icon-success { background-color: #198754; border-left-color: #75b798; }
.jq-has-icon.jq-icon-warning { background-color: #f0ad00; border-left-color: #ffd96a; color: #1a1a1a; }
.jq-has-icon.jq-icon-warning .jq-toast-heading { color: #1a1a1a; }
.jq-has-icon.jq-icon-warning .close-jq-toast-single { color: rgba(0,0,0,0.5); }
.jq-has-icon.jq-icon-error   { background-color: #dc3545; border-left-color: #f1aeb5; }

.jq-toast-ul { list-style: none; margin: 0; padding: 0; }
.jq-toast-li { padding: 2px 0; }