.article-alert {
    margin: 50px 0;
    background: #fff;
    -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, .1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, .1);
    border-radius: 5px;
    padding: 25px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.article-alert svg {
    width: 57px;
    height: 57px;
    min-width: 57px;
    fill: #f0a92e
}

.article-alert--title {
    font-weight: 700;
    font-size: 22px;
    line-height: 30px;
    color: rgba(17, 46, 72, .8);
    margin-bottom: 5px
}

.article-alert--text {
    font-size: 14px;
    line-height: 24px;
}

.article-alert--info {
    margin-left: 40px;
    position: relative
}

.article-alert--info:before {
    display: block;
    content: '';
    width: 4px;
    height: calc(100% + 10px);
    position: absolute;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    top: 50%;
    left: -24px;
    background: #f8ba5b;
    -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, .1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, .1);
    border-radius: 5px
}

@media only screen and (max-width: 767px) {
    .article-alert {
        padding: 15px
    }

    .article-alert svg {
        width: 40px;
        height: 40px;
        min-width: 40px
    }

    .article-alert--title {
        font-size: 16px
    }

    .article-alert--text {
        line-height: 20px
    }

    .article-alert--info {
        margin-left: 44px
    }

    .article-alert--info:before {
        height: calc(100% - 10px)
    }
}