.elementor-2338 .elementor-element.elementor-element-e89f762{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-2338 .elementor-element.elementor-element-e89f762.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-2338 .elementor-element.elementor-element-7e3f3f5{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}:root{--page-title-display:none;}@media(min-width:768px){.elementor-2338 .elementor-element.elementor-element-e89f762{--width:100%;}}/* Start custom CSS *//* =========================================================
   DSFA - DENTAL SPACE FINDER ALERT FORM
   ========================================================= */

.dsfa-form {
    width: 100%;
    max-width: 100%;
    padding: 34px 36px 38px !important;
    margin: 0;
    background: #ffffff;
    border-radius: 3px;
    box-sizing: border-box;
}

/* =========================================================
   FIELD
   ========================================================= */

.dsfa-form .dsfa-field {
    width: 100%;
        margin: 0 0 16px !important;
    padding: 0 !important;
    box-sizing: border-box;
}

/* Labels */

.dsfa-form .dsfa-field label {
    margin: 0 0 6px;
    padding: 0;
    color: #005A68;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
}

/* =========================================================
   INPUTS
   ========================================================= */

.dsfa-form input[type="email"],
.dsfa-form input[type="text"],
.dsfa-form select {
    display: block;
    width: 100%;
    height: 52px;
    margin: 0;
    padding: 0 18px;
    border: 1px solid #C8C8C8;
    border-radius: 3px;
    background: #ffffff;
    color: #005A68;
    font-family: inherit;
    font-size: 15px;
    font-weight: 400;
    line-height: 52px;
    outline: none;
    box-sizing: border-box;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

/* Select */

.dsfa-form select {
    padding: 0px 15px !important;
    cursor: pointer;
    appearance: auto;
}

/* Focus */

.dsfa-form input[type="email"]:focus,
.dsfa-form input[type="text"]:focus,
.dsfa-form select:focus {
    border-color: #005A68;
    box-shadow: 0 0 0 1px #005A68;
}

/* =========================================================
   TWO COLUMN SECTION
   ========================================================= */

.dsfa-form .dsfa-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Prevent last fields from adding unnecessary space */

.dsfa-form .dsfa-grid .dsfa-field {
    margin-bottom: 0;
}

/* =========================================================
   SUBMIT BUTTON
   ========================================================= */

.dsfa-form .dsfa-submit,
.dsfa-form input[type="submit"] {
    display: block;
    width: 100%;
    height: 48px;
    margin: 24px 0 0;
    padding: 0 20px;
    border: 0;
    border-radius: 3px;
    background: #18B5C1;
    color: #ffffff;
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    line-height: 48px;
    text-align: center;
    cursor: pointer;
    box-sizing: border-box;
    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

/* Hover */

.dsfa-form .dsfa-submit:hover,
.dsfa-form input[type="submit"]:hover {
    background: #079EAA;
    color: #ffffff;
}

/* =========================================================
   NOTE
   ========================================================= */

.dsfa-form .dsfa-note {
    margin: 16px 0 0;
    padding: 0;
    color: #0089A0;
    font-family: inherit;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
}

/* =========================================================
   CF7 DEFAULT SPACING RESET
   ========================================================= */

/* CF7 sometimes creates wrapper elements */

.dsfa-form .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Remove unwanted paragraph spacing */

.dsfa-form p {
    margin-top: 0;
}

/* =========================================================
   VALIDATION
   ========================================================= */

.dsfa-form input.wpcf7-not-valid,
.dsfa-form select.wpcf7-not-valid {
    border-color: #dc3545 !important;
}

.dsfa-form .wpcf7-not-valid-tip {
    display: block;
    margin-top: 5px;
    color: #dc3545;
    font-size: 12px;
    line-height: 1.4;
}

/* =========================================================
   CF7 RESPONSE
   ========================================================= */

.dsfa-form + .wpcf7-response-output,
.wpcf7 .dsfa-form .wpcf7-response-output {
    margin: 15px 0 0 !important;
    padding: 10px 12px !important;
    border-radius: 3px;
    font-size: 13px;
    line-height: 1.4;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .dsfa-form {
        padding: 26px 20px 32px;
    }

    .dsfa-form .dsfa-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .dsfa-form .dsfa-grid .dsfa-field {
        margin-bottom: 16px;
    }

    .dsfa-form .dsfa-field label {
        font-size: 13px;
        margin-bottom: 6px;
    }

    .dsfa-form input[type="email"],
    .dsfa-form input[type="text"],
    .dsfa-form select {
        height: 50px;
        padding-left: 15px;
        padding-right: 15px;
        font-size: 14px;
        line-height: 50px;
    }

    .dsfa-form .dsfa-submit,
    .dsfa-form input[type="submit"] {
        height: 48px;
        margin-top: 22px;
        font-size: 14px;
        line-height: 48px;
    }

    .dsfa-form .dsfa-note {
        margin-top: 14px;
        font-size: 12px;
    }
}/* End custom CSS */