.elementor-1687 .elementor-element.elementor-element-64b5c5e1{--display:flex;--margin-top:110px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}/* Start custom CSS for container, class: .elementor-element-64b5c5e1 *//* ============================================
   CF7 Quote Form — full stylesheet
   ============================================ */

/* ---- Form container ---- */
.wpcf7-form {
    max-width: 900px;
    margin: 0 auto;
    font-family: inherit;
}

/* Neutralize CF7's auto-inserted <p> tags so the grid
   sees the real columns as its children */
.wpcf7-form .cf7-row p {
    margin: 0;
    display: contents;
}

/* ---- Rows ---- */
.wpcf7-form .cf7-row {
    margin-bottom: 22px;
}
.wpcf7-form .cf7-row.two-col,
.wpcf7-form .cf7-row.three-col {
    display: grid;
    gap: 0 20px;
    align-items: start;
}
.wpcf7-form .cf7-row.two-col   { grid-template-columns: 1fr 1fr; }
.wpcf7-form .cf7-row.three-col { grid-template-columns: 1fr 1fr 1fr; }

.wpcf7-form .cf7-col {
    display: block;
    min-width: 0;
}

/* ---- Labels ---- */
.wpcf7-form label,
.wpcf7-form .cf7-label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
    margin-bottom: 6px;
}
.wpcf7-form .req { color: #d63638; }

/* ---- Text inputs & textareas (gray fill) ---- */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea {
    display: block;
    width: 100%;
    margin-top: 6px;
    padding: 11px 13px;
    font-size: 15px;
    font-weight: 400;
    color: #333;
    background: #ececec;
    border: 1px solid #e2e2e2;
    border-radius: 0;
    box-sizing: border-box;
    transition: background 0.2s ease, border-color 0.2s ease;
}
.wpcf7-form textarea {
    min-height: 140px;
    resize: vertical;
}
.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
    outline: none;
    background: #e4e4e4;
    border-color: #1577b0;
}
.wpcf7-form input::placeholder,
.wpcf7-form textarea::placeholder { color: #999; }

/* ---- Checkbox group (custom gray boxes) ---- */
.wpcf7-form .wpcf7-checkbox {
    display: block;
    margin-top: 8px;
}
.wpcf7-form .wpcf7-checkbox .wpcf7-list-item {
    display: block;
    margin: 8px 0 0;
}
.wpcf7-form .wpcf7-checkbox input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    margin-right: 10px;
    vertical-align: middle;
    background: #ececec;
    border: 1px solid #d8d8d8;
    border-radius: 0;
    cursor: pointer;
    position: relative;
}
.wpcf7-form .wpcf7-checkbox input[type="checkbox"]:checked {
    background: #1577b0;
    border-color: #1577b0;
}
.wpcf7-form .wpcf7-checkbox input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.wpcf7-form .wpcf7-checkbox .wpcf7-list-item-label {
    font-weight: 400;
    color: #333;
    vertical-align: middle;
}

/* ---- Drag & Drop upload (codedropz) — replicate Forminator look ---- */
.wpcf7-form .codedropz-upload-wrapper { margin-top: 6px; }

/* The drop-zone box */
.wpcf7-form .codedropz-upload-handler {
    border: none;
    background: #ececec;
    border-radius: 0;
    padding: 28px 20px 30px;
    text-align: center;
}
.wpcf7-form .codedropz-upload-inner { margin: 0; }

/* Hide plugin's built-in icon, inject custom cloud SVG */
.wpcf7-form .codedropz-upload-inner .dnd-icon-upload {
    display: none !important;
}
.wpcf7-form .codedropz-upload-inner::before {
    content: "";
    display: block;
    width: 34px;
    height: 34px;
    margin: 0 auto 10px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%238a8a8a'%3E%3Cpath d='M19.35 10.04A7.49 7.49 0 0 0 12 4C9.11 4 6.6 5.64 5.35 8.04A5.994 5.994 0 0 0 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM14 13v4h-4v-4H7l5-5 5 5h-3z'/%3E%3C/svg%3E");
}

/* Drop-zone text on one line */
.wpcf7-form .codedropz-upload-inner h3 {
    display: inline;
    font-size: 15px;
    font-weight: 400;
    color: #777;
    margin: 0;
    line-height: 1.4;
}
.wpcf7-form .codedropz-upload-inner h3 br { display: none; }

/* "Choose Files" link inline */
.wpcf7-form .codedropz-upload-inner a,
.wpcf7-form .codedropz-btn-browse {
    display: inline;
    margin-left: 4px;
    color: #1577b0;
    font-weight: 700;
    text-decoration: underline;
    cursor: pointer;
}
.wpcf7-form .codedropz-upload-inner a:hover,
.wpcf7-form .codedropz-btn-browse:hover { color: #11628f; }

/* ---- Helper text ---- */
.wpcf7-form .cf7-help {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    font-weight: 400;
    color: #777;
}

/* ---- Submit button (consistent across all states) ---- */
.wpcf7-form input[type="submit"],
.wpcf7-form input[type="submit"]:hover,
.wpcf7-form input[type="submit"]:focus,
.wpcf7-form input[type="submit"]:active,
.wpcf7-form button,
.wpcf7-form button:hover,
.wpcf7-form button:focus,
.wpcf7-form button:active {
    color: #fff !important;
    background: #1577b0 !important;
    border: none !important;
    border-radius: 2px !important;
    outline: none !important;
    box-shadow: none !important;
    padding: 12px 22px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.2px;
    cursor: pointer;
    transition: background 0.2s ease;
}
.wpcf7-form input[type="submit"]:hover,
.wpcf7-form button:hover { background: #11628f !important; }

/* ---- Validation & response messages ---- */
.wpcf7-form .wpcf7-not-valid-tip {
    display: block;
    margin-top: 4px;
    font-size: 13px;
    font-weight: 400;
    color: #d63638;
}
.wpcf7-form input.wpcf7-not-valid,
.wpcf7-form textarea.wpcf7-not-valid {
    border-color: #d63638;
}
.wpcf7-response-output {
    margin: 18px 0 0 !important;
    padding: 12px 16px !important;
    border-radius: 4px;
    font-size: 14px;
}

/* ---- Divi / spinner safety ---- */
.wpcf7-form .wpcf7-spinner { margin: 0 0 0 12px; }

/* ---- Mobile: collapse multi-column rows ---- */
@media (max-width: 700px) {
    .wpcf7-form .cf7-row.two-col,
    .wpcf7-form .cf7-row.three-col {
        grid-template-columns: 1fr;
        gap: 0;
    }
}/* End custom CSS */