.Alert {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: start;
    -webkit-box-align: start;
    align-items: start;
    -webkit-flex-direction: row;
    flex-direction: row;
    width: 100%;
    padding: 16px;
    gap: 12px;
    border-radius: 12px;
}

.Alert::before {
    content: 'info';
    display: inline-block;
    font-family: 'Material Symbols Rounded';
    font-size: 20px;
    line-height: 1;
    font-variation-settings:
        'FILL' 1,
        'wght' 300,
        'GRAD' 0,
        'opsz' 24;
    color: var(--theme-text-primary);
}

.Alert-success {
    background-color: var(--theme-background-success);
}

.Alert-success::before {
    color: var(--theme-text-success);
}

.Alert-error {
    background-color: var(--theme-background-error);
}

.Alert-error::before {
    color: var(--theme-text-error);
}

.Alert-info {
    background-color: var(--theme-background-informative);
}

.Alert-info::before {
    color: var(--theme-text-informative);
}
