.form-block {
    max-width: 1225px !important;
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 37px;
    padding-bottom: 44px;
    box-shadow: 0 3px 20px #0000000D;

    @media (min-width: 1024px) {
        padding-left: 103px;
        padding-right: 103px;
        padding-top: 51px;
        padding-bottom: 48px;
    }

    h2 {
        font-size: var(--wp--preset--font-size--font-36-px);

        & + p {
            margin-bottom: 32px;
            text-align: center;
            font-size: var(--wp--preset--font-size--font-18-px);
        }
    }

    h3 {
        margin-top: 50px;
        margin-bottom: 15px;
        font-size: var(--wp--preset--font-size--font-24-px);

        & + p {
            margin-top: 0px;
            margin-bottom: 0px;
            font-size: var(--wp--preset--font-size--font-18-px);
        }
    }

    h4 {
        font-weight: bold;
    }

    fieldset {
        legend {
            margin-bottom: 8px;
            font-weight: bold !important;
        }

        input {
            & + label {
                margin-top: 8px;
            }
        }
    }

    .gfield {
        label, .gfield_description {
            margin-bottom: 8px;
            font-size: var(--wp--preset--font-size--font-16-px) !important;
        }
    }

    .gfield_radio {
        flex-direction: row !important;
    }

    .gform_drop_area {
        background-color: #F9F9F9 !important;
        border: 1px dashed #707070 !important;
    }

    .gform_fileupload_multifile {
        & + .gfield_description {
            display: none;
        }
    }

    .gform_validation_errors {
        display: none;
    }

    .validation_message {
        border-style: none !important;
        background-color: transparent !important;
        padding: 0px !important;
        font-size: 12px !important;
        line-height: 16px !important;
        color: #f73e53 !important;
    }

    input[type=text], input[type=email], input[type=tel], select {
        min-height: 58px !important;
        padding-left: 18px !important;
        padding-right: 18px !important;
        padding-top: 16px !important;
        padding-bottom: 16px !important;
        
        @media all and (max-width: 975px) {
            max-width:calc(100% - 2px);
        }
        
    }

    input[type=radio] {
        margin-top: 0px;
        border-radius: 36px !important;

        & + label {
            margin-bottom: 0px;
        }
    }

    .gform_footer {
        margin-top: 40px;
        justify-content: center;
    }

    .privacy-message {
        text-align: center;
        font-size: 14px;
        line-height: 35px;
        color: #5A5656;

        a {
            font-weight: bold;
        }
    }

    &.is-style-simple-form-type{
        .gform_wrapper {
            .gfield {
                [type="text"],
                [type="password"],
                [type="email"],
                [type="number"],
                [type="url"],
                [type="date"],
                [type="datetime-local"],
                [type="month"],
                [type="week"],
                [type="time"],
                [type="search"],
                [type="tel"],
                [type="checkbox"],
                [type="radio"],
                select,
                select[multiple],
                textarea {
                    background: transparent;
                    border-left:none !important;
                    border-right:none !important;
                    border-top:none !important;
                    border-bottom: 1px solid var(--wp--preset--color--dark-gray);
                    outline: none!important;
                    padding-left:0 !important;
                    padding-right:0!important;
                    box-shadow: none !important;
                }
            }
        }
    }
}