div.mfeedback {
    max-width: 336px;
    width: 100%;
    padding: 25px 20px 20px 20px;
    background: #fafafa;
    border-radius: 6px;
}

p.mf-header {
    font-size: 18px;
    margin-bottom: 20px;
}

div.mf-text-field {

    width: 100%;
    position: relative;
    margin-bottom: 10px;
}

div.mf-text-field:after {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    position: absolute;
    top: 17px;
    left: 9px;
    background: #D93030;
    border-radius: 50%;
}

div.mf-text-field.filled:after {

    background: #80BFFF;
}

div.mf-text-field input {

    width: 100%;
    height: 100%;
    padding: 12px 12px 12px 38px;
    border: none;
    background: #ffffff;
    border-radius: 6px;
    font-family: 'Rubik';
    font-weight: 300;
}

input.mf-submit-btn {

    font-family: 'Rubik';
    font-size: 18px;
    text-transform: uppercase;
    width: 100%;
    height: 40px;
    border: none;
    cursor: pointer;
    border-radius: 6px;
    color: white;
    background-color: #D93030;
}

input.mf-submit-btn:disabled {

    background: #808080;
}

.mf-user-concent {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-top: 20px;
}

.mf-user-concent-checkbox {
    display: block;
    width: 14px;
    height: 14px;
    border: 1px solid #cccccc;
    border-radius: 2px;
    position: relative;
    margin-right: 20px;
}

input:checked + .mf-user-concent-checkbox {
    border-color: #D93030;
}

input:checked + .mf-user-concent-checkbox:before,
input:checked + .mf-user-concent-checkbox:after {
    background:  #D93030;
}

.mf-user-concent-checkbox:after,
.mf-user-concent-checkbox:before {

    content: '';
    position: absolute;
    left: 5.5px;
    width: 1px;
    height: 100%;
    border-radius: 2px;
    background: #cccccc;
}

.mf-user-concent-checkbox:after {
    transform: rotate(45deg);
}

.mf-user-concent-checkbox:before {
    transform: rotate(-45deg);
}

.mf-user-concent-text {

    font-weight: 300;
    color: #808080;
}

.mf-download-link {

    display: flex;
    align-items: center;
    margin: 32px 0px;
}

.mf-download-link-icon {

    color: #cccccc;
    width: 22px;
    height: 26px;
    margin-right: 16px;
}

.mf-download-link-text {

    color: #cccccc;
    font-size: 18px;
}

.mf-download-link:hover .mf-download-link-icon {

    color: #D93030;
}

.mf-download-link:hover .mf-download-link-text {

    color: #000000;
}

.mf-captcha-img  img{

    width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.mf-error-text {
    margin-bottom: 10px;
    line-height: 1.3;
    color:red;
}

div.mf-ok-text {color:green; margin-bottom: 10px; line-height: 1.3;}

/*
div.mf-name, div.mf-email, div.mf-captcha, div.mf-message {width:80%; padding-bottom:0.4em;}
div.mf-name input, div.mf-email input {width:60%;}
div.mf-message textarea {width: 60%;}
span.mf-req {color:red;}
