.AlertWidget
{
    margin-bottom: 16px;
    border: 3px solid transparent;
    padding: 16px 20px 16px 16px;
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: stretch;
    border-radius: 12px;
    background-color: #fff;
    color: #2e2e2e;
}
.AlertWidget .AlertWidget__Highlight
{
    min-width: 6px;
    border-radius: 6px;
}
.AlertWidget>.AlertWidget__Highlight
{
    margin: -4px 0;
}
.AlertWidget>.AlertWidget__Content
{
    flex: 1;
    display: flex;
    flex-direction: row;
    gap: 28px;
    align-items: center;
}
.AlertWidget>.AlertWidget__Content>.AlertWidget__Icon
{
    max-width: 52px;
    min-width: 52px;
    max-height: 52px;
    min-height: 52px;
    display: none;
    border-radius: 50%;
    font-size: 28px;
    line-height: 52px;
    text-align: center;
}
.AlertWidget>.AlertWidget__Content>.AlertWidget__Content
{
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 16px;
}
.AlertWidget>.AlertWidget__Content>.AlertWidget__Content>.AlertWidget__Title
{
    font-weight: bold;
}
.AlertWidget>.AlertWidget__Content>.AlertWidget__Content>.AlertWidget__TextContainer
{
    display: flex;
    flex-direction: row;
    gap: 20px;
}
.AlertWidget>.AlertWidget__Content>.AlertWidget__Content>.AlertWidget__TextContainer>.AlertWidget__Highlight
{
    display: none;
}
.AlertWidget>.AlertWidget__Content>.AlertWidget__CloseButton
{
    margin-left: auto;
    max-width: 32px;
    min-width: 32px;
    max-height: 32px;
    min-height: 32px;
    border-radius: 50%;
    font-size: 18px;
    font-weight: bold;
    line-height: 32px;
    text-align: center;
    background-color: #f5f5f5;
    cursor: pointer;
}
.AlertWidget.AlertWidget--Success
{
    border-color: #12be23;
}
.AlertWidget.AlertWidget--Success .AlertWidget__Highlight
{
    background-color: #12be23;
}
.AlertWidget.AlertWidget--Success>.AlertWidget__Content>.AlertWidget__Icon
{
    background-color: #ecf8ee;
    color: #12be23;
}
.AlertWidget.AlertWidget--Success>.AlertWidget__Content>.AlertWidget__Icon.AlertWidget__IconSuccess
{
    display: unset;
}
.AlertWidget.AlertWidget--Success>.AlertWidget__Content>.AlertWidget__Content>.AlertWidget__Title
{
    color: #068813;
}
.AlertWidget.AlertWidget--Error, .AlertWidget.AlertWidget--ErrorSummary
{
    border-color: #f34545;
}
.AlertWidget.AlertWidget--Error .AlertWidget__Highlight, .AlertWidget.AlertWidget--ErrorSummary .AlertWidget__Highlight
{
    background-color: #f34545;
}
.AlertWidget.AlertWidget--Error>.AlertWidget__Content>.AlertWidget__Icon, .AlertWidget.AlertWidget--ErrorSummary>.AlertWidget__Content>.AlertWidget__Icon
{
    background-color: #ffeaea;
    color: #f34545;
}
.AlertWidget.AlertWidget--Error>.AlertWidget__Content>.AlertWidget__Icon.AlertWidget__IconError, .AlertWidget.AlertWidget--ErrorSummary>.AlertWidget__Content>.AlertWidget__Icon.AlertWidget__IconError
{
    display: unset;
}
.AlertWidget.AlertWidget--Error>.AlertWidget__Content>.AlertWidget__Content>.AlertWidget__Title, .AlertWidget.AlertWidget--ErrorSummary>.AlertWidget__Content>.AlertWidget__Content>.AlertWidget__Title
{
    color: #e32a26;
}
.AlertWidget.AlertWidget--Error>.AlertWidget__Content>.AlertWidget__CloseButton, .AlertWidget.AlertWidget--ErrorSummary>.AlertWidget__Content>.AlertWidget__CloseButton
{
    display: none;
}
.AlertWidget.AlertWidget--StyleNoHighlight>.AlertWidget__Highlight
{
    display: none;
}
.AlertWidget.AlertWidget--StyleList>.AlertWidget__Highlight
{
    display: none;
}
.AlertWidget.AlertWidget--StyleList>.AlertWidget__Content
{
    align-items: unset;
}
.AlertWidget.AlertWidget--StyleList>.AlertWidget__Content>.AlertWidget__Content>.AlertWidget__TextContainer>.AlertWidget__Highlight
{
    display: unset;
}/*# sourceMappingURL=AlertWidget.css.map */