.alert{
    background-color: transparent;
    box-shadow: 2px 2px 2px rgba(0,0,0,0.2);
    padding: 10px 15px 10px 15px;
    margin: 0px 10px 15px 0px;
    border-radius: 2px;
    color: #fff;
    display: inline-block;
    width: auto;
    font-weight: normal;
    line-height: 22px;
}

.alert.alert-success{
    background-color: #45bf7b;
}

.alert.alert-info{
    background-color: #1976d2;
}

.alert.alert-warning{
    background-color: #f9b358;
}

.alert.alert-danger{
    background-color: #eb6262;
}

.alert .fa{
    font-size: 22px;
    line-height: 22px;
    margin-right: 10px;
    display: inline-block;
}

.container-alert{
    top: 10px;
    left: 10px;
    position: fixed;
    z-index: 999;
}

.container-alert .alert{
    box-shadow: 2px 2px 1px rgba(0, 0, 0, 0.4);
}