/** ===== Contact Form ===== **/
.contact-form-wrapper {
    margin: 0 !important;
    display: flex;
    flex-wrap: wrap;

    .wpcf7-form-control-wrap {
        display: block;
    }

    .name-field,
    .email-field {
        max-width: 50%;
        flex: 0 0 50%;
        margin-bottom: 30px;
    }

    .name-field {
        padding-right: 15px;
    }

    .email-field {
        padding-left: 15px;
    }

    .textarea-field {
        margin-bottom: 30px;
    }

    .textarea-field,
    .submit-field {
        max-width: 100%;
        flex: 0 0 100%;
    }

    textarea {
        height: 150px;
    }

    .submit-field {
        display: flex;
        align-items: center;
        margin-top: 20px;
    }
}

.offcanvas-panel-wrapper {
    .contact-form-wrapper {
        .email-field,
        .name-field,
        .textarea-field {
            max-width: 100%;
            flex: 0 0 100%;
            padding: 0;
            margin-bottom: 20px;
        }

        .submit-field {
            margin: 0;
        }
    }
}

.newsletter-wrapper {
    position: relative;

    input {
        height: 70px;
        font-weight: 400;
        border-radius: 10px;
        padding: 0 200px 0 25px;
    }

    input[type="submit"],
    button[type="submit"] {
        position: absolute;
        right: 10px;
        top: 10px;
        bottom: 10px;
        height: auto;
        padding: 5px 30px;
        border-radius: 8px;
    }

    button i {
        font-size: 80%;
        margin-left: 8px;
    }
}