.alert {
    padding: 5px 10px;
    font-size: 13px;
    line-height: 1.3;
    display: flex;
    align-items: center;
    margin: @body-padding;
    a {
        text-decoration: underline;
        color: inherit;
    }
    .alert-icon {
        font-size: 28px;
        margin-right: 10px;
        flex-shrink: 0;
        color: fade(white, 80%);
    }
    &.alert-error,
    &.alert-danger,
    &.alert-warning {
        background: @red;
        color: white;
    }
    &.alert-success {
        background: @green;
        color: white;
    }
    &.no-margin {
        margin: 0;
    }
}

#alert-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}
