.alert{
    font-size: 14px;
    line-height: 1.2;
    padding: 16px;
    border-left: 4px solid  var(--defaultCtaTxt);
    background: var(--defaultCtaBg);
    color: var(--defaultCtaTxt);
    animation: fadeIn 0.5s ease-in forwards; 
    margin-bottom: 16px;
    border-radius: 0;
    width: 100%;
    
}

@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1; }
}
.alert [class^="icon-"]{
    margin: 0 8px;
}
.alert.alert-danger{
    background:  #EC2D301A;
    color:  #EC2D30;
    border-color:  #EC2D30;
}
.alert.alert-success{
    background:  #0C9D611A;
    color: #0C9D61;
    border-color:  #0C9D61;
}

.alert.alert-info{
    background:  #668DCE1A;
    color: #668DCE;
    border-color:  #668DCE;
}


.alert button.close{
    opacity: .75;
    width: 16px;
    height: 16px;
    font-size: 24px;
    color: inherit;
    display: inline-flex;
    text-align: center;
    justify-content: center;
    align-items: center;
}

.alert ul, .alert  ol{
    padding: 0 0 0 20px;
}
.alert ul li, .alert  ol li{
    margin-top: 8px;
}