.feedback--form{
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 30px;
    align-items: center;
}
div.mf-name, div.mf-email, div.mf-captcha, div.mf-message{
    width: 100%;
    display: flex;
    gap: 20px;
}
.mf-text{
    display: flex;
    white-space: nowrap;
    min-width: 150px;
    max-width: 150px;
    max-height: 20px;
    background: #D3D3D3;
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 10px 24px;
    
}
div.mf-message textarea{
    width: 100%;
    padding: 10px;
    min-height: 168px;
    font-size: 18px;
    font-family: "Roboto Flex";
    border: 1px solid var(--border);
    border-radius: 4px;
    background: var(--white);
    resize: none;
}
div.mf-message textarea:focus{
    outline: none;
}
.btn-primary-feed{
    width: 100%;
    max-width: 200px;
    min-height: 36px;
    border-radius: 8px;
    border: 1px var(--border) solid;
    background-color: var(--button__color);
    font-size: 14px;
    font-weight: 500;
    word-wrap: break-word;
    cursor: pointer;
}
div.mf-ok-text {
    color: var(--blue);
    font-weight: bold;
    padding-bottom: 1em;
}
.errortext, .notetext {
    background: transparent;
    border-color: transparent;
    border: none;
}