.alert-notification {
    color: white;
    border-radius: 3px;
    font-family: 'poppins-thin';
    font-size: 1.1em;
    padding: 5px 15px !important;
    position: fixed;
    top: -40px;
    transition: ease-in-out .5s;
}

.alert-notification-show {
    top: 10px;
    transition: ease-in-out .5s;
}

.alert-notification > i {
    border-right: 1px solid white;    
    padding-right: 10px !important;
}

.alert-success {
    background-color: #22a5c5;
}