#com-container{
    position: absolute;
    display: flex;
    flex-direction: column;
    
    bottom: 24px;
    right: 12px;
    max-width: 35%;
}
.com-alert .com-alert--body--message{
    display: none;
}
.com-alert{
    position: relative;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;

    background-color: white;
    border: 3px solid var(--ibo-color-grey-400);

    margin: 4px 12px;
    min-height: 42px;
    border-radius: 5px;
    padding: 3px 44px 3px 10px;
    
    cursor: pointer;
}
.com-alert .ibo-alert--body > *{
    display: inline;
}
.com-alert--body--title{
    margin-right: 5px;
    font-size: 1.17rem;
}

.com-alert::after{
    content: ' ';
    
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    
    font-family: 'Font Awesome 5 Free';
    font-size: 20px;
    font-weight: 900;
    color: white;

    right: 4px;
    width: 37px;
    height: 37px;
    border-radius: 100%;
}
.com-alert.com-is-warning{
    border-color: var(--ibo-color-warning-400);
}
.com-alert.com-is-warning::after{
    content: '\f071';
    background-color: var(--ibo-color-warning-400);
}
.com-alert.com-is-information{
    border-color: var(--ibo-color-blue-400);;
}
.com-alert.com-is-information::after{
    content: '\f129';
    background-color: var(--ibo-color-blue-400);
}
.com-alert.com-is-tip{
    border-color: var(--ibo-color-cyan-400);;
}
.com-alert.com-is-tip::after{
    content: '\f0eb';
    background-color: var(--ibo-color-cyan-400);
}
.com-alert.com-is-scoop{
    border-color: var(--ibo-color-green-400);;
}
.com-alert.com-is-scoop::after{
    content: '\f0a1';
    background-color: var(--ibo-color-green-400);
}

.com-dialog .ui-dialog-titlebar-close{
    box-sizing: border-box;
}