.alert-danger, .alert-info, .alert-success {
    margin: 30px 15px;
}
.alert {
    border: none;
    border-radius: 0;
    background-color: #ffffff;
    box-shadow: 0 4px 15px 2px rgb(0 0 0 / 10%);
    width: auto;
    padding: 24px 48px 24px 48px;
    font-size: 14px;
    line-height: 1.43;
    letter-spacing: -0.4px;
    color: #232323;
    position: relative;
    text-align: left;
    margin: 0 35px;
}
.welcome-main .alert {
    width: auto;
    margin: 0 15px 30px;
}
.alert b, .alert strong {
    color: #393939;
}
.alert-info-msg-content {
    padding: 20px 20px 20px 0px;
    border-right: 2px solid #e6e6e6;
    flex: 1;
}
.alert-success {
    border-top: solid 3px #2a6bb1;
}
.alert-success:before {
    content: url(../images/icon-info.svg);
    position: absolute;
    left: 12px;
    top: 34%;
}
.alert-warning {
    border-top: solid 3px #fdb91f;
}
.alert-warning:before {
    content: url(../images/icon-warning.svg);
    position: absolute;
    left: 12px;
    top: 22px;
}
.alert-danger {
    border-top: solid 3px #b30000;
}
.alert-danger:before {
    content: url(../images/icon-error.svg);
    position: absolute;
    left: 12px;
    top: 22px;
}
.alert-text {
    background: rgb(245, 245, 245);
    border-radius: 4px;
    box-shadow: none;
    text-align: center;
    padding: 14px 36px 16px 36px;
    font-weight: 600;
}
ul.alert-warning + div, ul.alert-danger + div {
    margin-top: 32px;
}
.alert-danger strong {
    color: #232323;
}
.alert .alert-info-closeable {
    border: none;
    border-radius: 0;
    background-color: #ffffff;
    box-shadow: 0 4px 15px 2px rgb(0 0 0 / 10%);
    width: 100%;
    padding: 14px 36px 16px 44px;
    margin-bottom: 24px;
    font-size: 14px;
    line-height: 1.43;
    letter-spacing: -0.4px;
    color: #232323;
    position: relative;
    text-align: left;
}
.alert-info-closeable {
    border-top: solid 3px #2a6bb1;
    display: flex;
    align-items: center;
    padding: 0 0 0 60px;
    font-size: 16px;
}
.alert-info-closeable:before {
    content: url(../images/icon-info.svg);
    position: absolute;
    left: 20px;
    top: 22px;
}
.alert-info-msg-content {
    padding: 20px 20px 20px 0;
    border-right: 2px solid #e6e6e6;
    flex: 1;
}
.informational-msg-close-icon {
    cursor: pointer;
    font-size: 20px;
    height: 100%;
    display: flex;
    width: 60px;
    justify-content: center;
    color: #999999;
}
.margin-bottom-md {
    margin-bottom: 24px;
}
@media (min-width: 991px) {
    .alert-info-closeable:before {
        top: 18px;
    }
}
@media (min-width: 768px) {
    .alert {
        width: 700px;
        margin: 30px auto 0;
    }
}