.custom-alert {
    padding: 25px;
    display: flex;
    flex-direction: row;
    background-color: #F8FAFF;
    /*border: 1px solid #424242;*/
    /*align-items: center;*/
    margin-top: 25px;
    opacity: 1;
    align-items: flex-start;
    /*height: 100%;*/
    box-shadow: 0px 0px 15px rgba(0,0,0,0.2);
    border-radius: 3px;

}
.custom-alert.fade {
    opacity: 0;
    height: 0;
    transition: 1s;
}
.custom-alert .widget_media_image {
    flex: 0 6%;
}
.custom-alert .widget_text {
    flex: 0 90%;
}
.custom-alert .widget_text p {
    color: #021544;
    margin-bottom: 0;
    font-weight: 500;
}
.custom-alert .widget_text a {
    color: #0033AB;
}
.custom-alert .widget_media_image img {
    width: 40px;
}
.custom-alert--close {
    position: relative;
    top: -25px;
    left: 30px;
}
.custom-alert--wrapper {
    display: flex;
}
.custom-alert > li{
    list-style-type: none;
}