/* Jotform dentist referral embed — /referrals/ only.
 *
 * The theme's .referrals-col3 is `display: table`, so its width is
 * shrink-to-fit. Jotform's inline style on the iframe is
 * `width: 10px; min-width: 100%`, and a percentage min-width against a
 * shrink-to-fit parent leaves the iframe at 10px on first layout — it only
 * snaps to full width once a resize forces a reflow. Giving the wrapper a
 * definite width and overriding the inline width removes the ambiguity. */

.referrals-wrapp .referrals-col3 .xd-jotform-embed {
    display: block;
    width: 100%;
}

.referrals-wrapp .referrals-col3 .xd-jotform-embed iframe {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100%;
    border: 0;
    display: block;
}
