/*  
---------------------------------------------------
Alert 
---------------------------------------------------  
*/

/* Component only */
/*
.component.usn_cmp_alertbox { }*/

/* Split component block */
/*
.item_block.usn_cmp_alertbox { }*/

.alert {
    margin: 0;
    border-width: var(--base-border-width);
    border-radius: var(--base-border-radius);
}

.alert--top {
    border-radius: 0;
}

    .alert--top:before {
        display: none !important;
    }

.alert-success {
    --bs-alert-bg: #00AA6C;
    --bs-success-border-subtle: #00AA6C;
}

.alert-danger {
    --bs-alert-bg: #FF585D;
    --bs-danger-border-subtle: #FF585D;
}

.alert-warning {
    --bs-alert-bg: #F2B203;
    --bs-warning-border-subtle: #F2B203;
}

.alert-info {
    --bs-alert-bg: #62B5E5;
    --bs-info-border-subtle: #62B5E5;
}