
.notification {
    width: 350px;
    position: fixed;
    bottom: 0;
    right: -300px;
    background: #fefefe;
    margin-bottom: 10px;
    font-size: 16px;
    padding: 20px 15px;
    box-sizing: border-box;
    line-height: 25px;
    border-left: 5px solid;
    z-index:10000000;
    overflow: hidden;
}

.notification .img-wrap {
    position:absolute;
    top:0px;
    left:0px;
    height:80px;
    width:80px;
    overflow: hidden;
    background-size: cover;
    background-position: center center;
}

.notification .img-wrap+.text {
    margin-left: 80px;
}

.notification-info {
    border-left-color: #3498db;
    color: #3498db;
}

.notification-success {
    border-left-color: #2ecc71;
    color: #2ecc71;
}

.notification-warning {
    border-left-color: #e67e22;
    color: #e67e22;
}

.notification-error {
    border-left-color: #e74c3c;
    color: #e74c3c;
}