.help-block-error{
    color: red;
    font-size: 13px;
    padding: 10px 10px;
    display: none;
}
._form-error .help-block-error{
    display: block;
}
._form-error .input{
    border: 1px solid #ff323a;
}
.wrapper{
    position: relative;
}
.messages {
    position: absolute;
    top: 20px;
    right: 0;
    width: 100%;
    max-width: 416px;
    padding: 0 15px;
    z-index: 300;
}

.message__block {
    position: relative;
    border-radius: 24px;
    border: 1px solid #F6F6F6;
    background: #FFF;
    -webkit-box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.05);
    padding: 18px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 39px auto;
    grid-template-columns: 39px auto;
    -webkit-column-gap: 14px;
    -moz-column-gap: 14px;
    column-gap: 14px;
}

.message__block:not(:last-child) {
    margin-bottom: 14px;
}

.message__close {
    background: url("../img/icons/close-bg.svg") no-repeat;
    width: 23px;
    height: 23px;
    background-size: 100%;
    position: absolute;
    top: 17px;
    right: 17px;
}

.message__icon {
    width: 39px;
    height: 39px;
}

.message__icon._error {
    background: url("../img/error-message.svg") center no-repeat;
    background-size: 100%;
}

.message__icon._success {
    background: url("../img/success-message.svg") center no-repeat;
    background-size: 100%;
}

.message__title {
    font-size: 17px;
    line-height: 1.1764705882;
}

.message__subtitle {
    color: #929EB2;
    font-size: 16px;
    line-height: 1.25;
}