#wrap-notify {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 99999;
}

.cont-notify {
    width: 350px;
    margin-top: 20px;
}

.notify {
    position: absolute;
    padding: 0;
    width: 350px;
    font-size: 15px;
    font-family: Notify, Arial, sans-serif;
    box-shadow: rgba(0, 0, 0, 0.0980392) 0px 2px 4px;
    overflow: hidden;
}

.notify.success {
    background-color: #d4edda;
    color: #155724;
    border-top: 2px solid #c3e6cb;
}
.notify.error {
    background-color: #f8d7da;
    color: #721c24;
    border-top: 2px solid #f5c6cb;
}
.notify.info {
    background-color:#cce5ff;
    color: #004085;
    border-top: 2px solid #b8daff;
}
.notify.warning {
    background-color: #fff3cd;
    color: #856404;
    border-top: 2px solid #ffeeba;
}

.notify-text {
    float: left;
    width: 70%;
    box-sizing: content-box;
    padding: 18px 5px 18px 30px;
    text-align: left;
}

.notify-text p {
    margin: 0;
    padding: 0;
    line-height: 22px;
}

.notify-close {
    float: left;
    position: absolute;
    right: 0;
    width: 20%;
    height: 100%;
    text-align: center;
    vertical-align: middle;
}

.close-icon {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    max-width: 100%;
    max-height: 100%;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    cursor: pointer;
}

.close-icon.success {
    background: url('../images/notify/t2.png') no-repeat scroll center center / 50% auto;
}

.close-icon.error {
    background: url('../images/notify/t1.png') no-repeat scroll center center / 50% auto;
}

.close-icon.info {
    background: url('../images/notify/t3.png') no-repeat scroll center center / 50% auto;
}

.close-icon.warning {
    background: url('../images/notify/t4.png') no-repeat scroll center center / 50% auto;
}

.close-icon.success:hover {
    background-color: #c3e6cb;
}

.close-icon.error:hover {
    background-color: #f5c6cb;
}

.close-icon.info:hover {
    background-color: #b8daff;
}

.close-icon.warning:hover {
    background-color: #ffeeba;
}