#notifications {
    position: fixed;
    right: 0px;
    z-index: 9999;
    bottom: 0px;
    margin-bottom: 22px;
    margin-right: 15px;
    width: 350px;   
}
.notification {
    position: relative;
    padding: 22px;
    margin-top: 10px;
    border-top: 45px solid;
    background-color: #fff;
    color: rgba(0, 0, 0, 0.7);
    border-radius: 5px;

    box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.1);
}
.notification--success {
    border-color: #71b03e;
}
.notification--error {
    border-color: #f2494e;
}
.notification--info {
    border-color: #2ea1d9;
}
.notification--warning {
    border-color: #fbaa1d;
}
.notification--success:before {
    background-position: -40px -280px
}
.notification--error:before {
    background-position: 0px -280px
}
.notification--info:before {
    background-position: 0px -240px
}
.notification--warning:before {
    background-position: -40px -240px
}
.notification::before {
    display: block;
    position: absolute;
    top: -34px;
    left: 15px;
    font-size: 18px;
    color: #fff;
}
.notification--success::before {
    content: 'Success';
}
.notification__close {
    display: block;
    position: absolute;
    top: -45px;
    right: 0;
    padding: 10px 15px 10px;
    
    line-height: 1;
    font-size: 25px;
    color: #fff;
}
.notification__close:hover {
    cursor: pointer;
    color: #fff;
    text-decoration: none;
}