/* =========================================================
   WEOREX CONTACT FORM
   Compact Right Column Version
   Header Blue: #1976D2
========================================================= */
/* HONEYPOT - COMPLETELY HIDE FROM VISITORS */

.wcf-wrapper input[name="wcf_website"],
.wcf-wrapper #wcf_website,
.wcf-wrapper label[for="wcf_website"] {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
    max-width: 0 !important;
    max-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
}

/* Hide the honeypot container itself */
.wcf-wrapper .wcf-hp-field {
    display: none !important;
    visibility: hidden !important;
    width: 0 !important;
    height: 0 !important;
    max-width: 0 !important;
    max-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    position: absolute !important;
    left: -99999px !important;
    top: -99999px !important;
}
.wcf-wrapper {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    background: #ffffff;
    overflow: hidden;
    font-family: Arial, Helvetica, sans-serif;
}


/* =========================================================
   HEADER
========================================================= */

.wcf-header {
    text-align: center;
    padding: 18px 20px 8px;
}

.wcf-header h2 {
    margin: 0;
    font-size: 22px;
    line-height: 1.15;
    font-weight: 500;
    color: #111111;
    text-transform: lowercase;
}

.wcf-header p {
    margin: 9px auto 0;
    max-width: 330px;
    font-size: 14px;
    line-height: 1.25;
    font-weight: 400;
    color: #333333;
}

.wcf-divider {
    width: 100%;
    height: 1px;
    background: #e5e5e5;
}


/* =========================================================
   FORM CONTENT
========================================================= */

.wcf-content {
    padding: 12px 25px 0;
}

.wcf-form-group {
    margin-bottom: 12px;
}


/* =========================================================
   INPUTS
========================================================= */

.wcf-control {
    width: 100%;
    height: 48px;

    border: 1px solid #dddddd;
    border-radius: 4px;

    background: #ffffff;

    padding: 0 14px;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    font-weight: 400;

    color: #333333;

    outline: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.wcf-control::placeholder {
    color: #777777;
    opacity: 1;
}

.wcf-control:focus {
    border-color: #1976D2;
    box-shadow: 0 0 0 1px #1976D2;
}


/* =========================================================
   STATE SELECT
========================================================= */

.wcf-select-wrapper {
    position: relative;
}

.wcf-select-wrapper select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    cursor: pointer;

    padding-right: 45px;
}

.wcf-select-arrow {
    position: absolute;

    right: 17px;
    top: 50%;

    width: 8px;
    height: 8px;

    transform: translateY(-65%) rotate(45deg);

    border-right: 2px solid #888888;
    border-bottom: 2px solid #888888;

    pointer-events: none;
}


/* =========================================================
   COMMENT
========================================================= */

.wcf-comment-group {
    margin-bottom: 8px;
}

.wcf-comment {
    width: 100%;
    height: 90px;

    border: 1px solid #dddddd;
    border-radius: 4px;

    background: #ffffff;

    padding: 10px;

    resize: vertical;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    line-height: 1.3;

    color: #333333;

    outline: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.wcf-comment::placeholder {
    color: #777777;
    opacity: 1;
}

.wcf-comment:focus {
    border-color: #1976D2;
    box-shadow: 0 0 0 1px #1976D2;
}


/* =========================================================
   REQUIREMENT TEXT
========================================================= */

.wcf-requirement-note {
    margin-top: 7px;

    font-size: 13px;
    line-height: 1.25;

    color: #111111;
}


/* =========================================================
   TERMS
========================================================= */

.wcf-terms-row {
    display: flex;
    align-items: center;

    margin-top: 11px;
    margin-bottom: 15px;

    cursor: pointer;
}

.wcf-terms-row input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;

    width: 17px;
    height: 17px;

    margin: 0 7px 0 0;

    flex-shrink: 0;

    border: 1px solid #1976D2;
    border-radius: 3px;

    background: #ffffff;

    position: relative;

    cursor: pointer;
}

.wcf-terms-row input[type="checkbox"]:checked {
    background: #1976D2;
    border-color: #1976D2;
}

.wcf-terms-row input[type="checkbox"]:checked::after {
    content: "";

    position: absolute;

    left: 4px;
    top: 1px;

    width: 5px;
    height: 10px;

    border: solid #ffffff;
    border-width: 0 2px 2px 0;

    transform: rotate(45deg);
}

.wcf-terms-label {
    font-size: 13px;
    line-height: 1.2;

    color: #777777;
}

.wcf-required {
    color: #e53935;
}


/* =========================================================
   SUBMIT BUTTON
========================================================= */

.wcf-submit-button {
    width: 100%;
    height: 48px;

    border: none;
    border-radius: 4px;

    background: #1976D2;
    color: #ffffff;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 17px;
    font-weight: 700;

    cursor: pointer;

    transition:
        background 0.2s ease,
        transform 0.1s ease;
}

.wcf-submit-button:hover {
    background: #1565C0;
}

.wcf-submit-button:active {
    transform: translateY(1px);
}


/* =========================================================
   REPORT ABUSE
========================================================= */

.wcf-report-abuse {
    display: flex;
    align-items: center;

    gap: 8px;

    margin-top: 15px;
    margin-bottom: 15px;

    font-size: 12px;

    color: #999999;
}

.wcf-report-abuse a {
    color: #999999;
    text-decoration: underline;
}

.wcf-help-icon {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 17px;
    height: 17px;

    border-radius: 50%;

    background: #c7ccd1;

    color: #ffffff;

    font-size: 11px;
    font-weight: bold;
}


/* =========================================================
   BOTTOM BLUE LINE
========================================================= */

.wcf-bottom-line {
    width: 100%;
    height: 5px;

    background: #1976D2;
}


/* =========================================================
   SUCCESS / ERROR MESSAGES
========================================================= */

.wcf-message {
    margin-bottom: 14px;

    padding: 10px 12px;

    border-radius: 4px;

    font-size: 13px;
    line-height: 1.3;
}

.wcf-error {
    background: #ffe5e5;
    color: #b00000;
    border: 1px solid #ffbaba;
}

.wcf-success {
    background: #e4f8e9;
    color: #137333;
    border: 1px solid #b7e4c1;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 800px) {

    .wcf-header {
        padding: 20px 20px 9px;
    }

    .wcf-header h2 {
        font-size: 24px;
    }

    .wcf-header p {
        margin-top: 10px;
        font-size: 15px;
    }

    .wcf-content {
        padding: 13px 20px 0;
    }

    .wcf-control {
        height: 50px;
        font-size: 15px;
    }

    .wcf-comment {
        height: 95px;
        font-size: 15px;
    }

    .wcf-requirement-note {
        font-size: 13px;
    }

    .wcf-terms-row {
        margin-top: 12px;
        margin-bottom: 16px;
    }

    .wcf-terms-label {
        font-size: 13px;
    }

    .wcf-submit-button {
        height: 50px;
        font-size: 17px;
    }

    .wcf-report-abuse {
        margin-top: 16px;
        margin-bottom: 16px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .wcf-header {
        padding: 20px 18px 9px;
    }

    .wcf-header h2 {
        font-size: 23px;
    }

    .wcf-header p {
        margin-top: 9px;
        max-width: 320px;
        font-size: 15px;
    }

    .wcf-content {
        padding: 13px 18px 0;
    }

    .wcf-form-group {
        margin-bottom: 12px;
    }

    .wcf-control {
        height: 50px;
        padding: 0 13px;
        font-size: 15px;
    }

    .wcf-comment {
        height: 100px;
        padding: 10px;
        font-size: 15px;
    }

    .wcf-requirement-note {
        margin-top: 7px;
        font-size: 13px;
    }

    .wcf-terms-row {
        margin-top: 12px;
        margin-bottom: 16px;
    }

    .wcf-terms-row input[type="checkbox"] {
        width: 17px;
        height: 17px;
    }

    .wcf-terms-label {
        font-size: 13px;
    }

    .wcf-submit-button {
        height: 50px;
        font-size: 17px;
    }

    .wcf-report-abuse {
        margin-top: 16px;
        margin-bottom: 16px;
        font-size: 12px;
    }

    .wcf-help-icon {
        width: 17px;
        height: 17px;
        font-size: 11px;
    }

    .wcf-bottom-line {
        height: 5px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .wcf-header {
        padding: 18px 16px 8px;
    }

    .wcf-header h2 {
        font-size: 21px;
    }

    .wcf-header p {
        font-size: 14px;
        line-height: 1.2;
    }

    .wcf-content {
        padding: 12px 16px 0;
    }

    .wcf-control {
        height: 47px;
        font-size: 14px;
    }

    .wcf-comment {
        height: 90px;
        font-size: 14px;
    }

    .wcf-requirement-note {
        font-size: 12px;
    }

    .wcf-terms-label {
        font-size: 12px;
    }

    .wcf-submit-button {
        height: 47px;
        font-size: 16px;
    }

    .wcf-report-abuse {
        font-size: 11px;
        margin-top: 14px;
        margin-bottom: 14px;
    }
}

