/*
 * Nofifier
 *
 * @version 1.1.4
 *
 * @author Javier Sanahuja Liebana <bannss1@gmail.com>
 *
 * https://github.com/jsanahuja/Notifierjs
 *
 */

.notifyjs-container {
    z-index: 9999;
    position: fixed;
    top: 1em;
    right: 1em;
    max-width: 325px;
    width: 100%;
}

.notifyjs-container .notifyjs-notification {
    color:#5c7094;
    display: none;
    position: relative;
    padding: 1em 2em 1em 2.5em;
    margin-bottom: 0.5em;
    border-left: 6px solid black;
    width: 100%;
    box-sizing: border-box;
    box-shadow: 0 3px 12px 1px rgba(43, 55, 72, 0.15);
    line-height: 1.3rem;
    background: #fff;
    border-radius: 4px;
}

.notifyjs-container .notifyjs-notification p.progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 100%;
    height: 2px;
    content: ' ';
    margin-bottom: 0;
}

.notifyjs-container .notifyjs-notification.alert-success {
    border-color: #1ee0ac;
}

.notifyjs-container .notifyjs-notification.alert-danger {
    border-color: #e85347;
}

.notifyjs-container .notifyjs-notification.alert-warning {
    border-color: #f4bd0e;
}

.notifyjs-container .notifyjs-notification.alert-info {
    border-color: #0537cc;
}
.notifyjs-container p.progress {
    opacity: .35;
}
.notifyjs-container .notifyjs-notification.alert-success p.progress {
    background: #1ee0ac;
}

.notifyjs-container .notifyjs-notification.alert-danger p.progress {
    background: #e85347;
}

.notifyjs-container .notifyjs-notification.alert-warning p.progress {
    background: #f4bd0e;
}

.notifyjs-container .notifyjs-notification.alert-info p.progress {
    background: #0537cc;
}

.notifyjs-container .notifyjs-notification.alert-success .notifyjs-icon svg {
    fill: #1ee0ac;
}

.notifyjs-container .notifyjs-notification.alert-danger .notifyjs-icon svg {
    fill: #e85347;
}

.notifyjs-container .notifyjs-notification.alert-warning .notifyjs-icon svg {
    fill: #f4bd0e;
}

.notifyjs-container .notifyjs-notification.alert-info .notifyjs-icon svg {
    fill: #0537cc;
}

.notifyjs-container .notifyjs-notification .notifyjs-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 10px;
}

.notifyjs-container .notifyjs-notification .notifyjs-icon svg,
.notifyjs-container .notifyjs-notification .notifyjs-icon img {
    width: 16px;
    height: 16px;
}