.notify {
    position: fixed;
    padding: 20px;
    color: #fff;

}
.notify[data-position="bottom"] {
    right: 0;
    left: 0;
    bottom: 0
}
.notify[data-position="top"] {
    right: 0;
    left: 0;
    top: 0;
}
.notify[data-position="right"] {
    right: 0;
    bottom: 0;
    top: 0;
    max-width: 300px
}
.notify[data-position="left"] {
    left: 0;
    top: 0;
    bottom: 0;
    max-width: 300px
}
.notify[data-notify='success'] {
    background: #4CAF82;
    z-index: 999999;
}
.notify[data-notify='info'] {
    background: #2d9cee;
    z-index: 999999;
}
.notify[data-notify='error'] {
    background: #AF4C4C;
    z-index: 999999;
}
.notify[data-notify='default'] {
    background: #cf80ad;
    z-index: 999999;
}
.notify .notify-close {
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 0;
    color: #fff;
    padding: 10px 15px;
    font-size: 23px;
    text-decoration: none;
    font-family: 'Avenir Next', sans-serif;
}
.notify h1 {
    margin: 5px 0 10px 0;
    text-transform: uppercase;
    font-weight: normal;
    color: #fff
}

.notify-content{
    font-family: 'Avenir Next', sans-serif;
    text-align: center;
}