/* Pele Wheelzy Form Styles */
.pwf-form-container {
    min-height: 300px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 0px;
    align-items: stretch;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 16px;
    box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.08);
}

.pwf-form-wrap {
    display: flex;
    flex-direction: column;
    padding: 4%;
    gap: 20px;
    flex: 0 1 100%;
    justify-content: center;
}

.pwf-form-container form {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4%;
}

#pickupDetails {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 4%;
}

.pwf-form-hero {
    border-radius: 16px 0 0 16px;
    background: linear-gradient(284deg, #4f9d0a 0%, #7ABE3E 100%);
    color: white;
    padding: 3% 4%;
    min-width: 375px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#pwf-offer-form-container .pwf-form-hero h2,
#pwf-accept-form-container .pwf-form-hero h2 {
    margin: 0;
    font-size: 3.5rem;
    color: white !important;
}

button#pwf-accept-offer:disabled, button#pwf-accept-offer[disabled] {
    background: transparent;
    color: #418308;
    border: none;
    font-size: 22px;
}

.pwf-form-hero p {
    margin-bottom: 0;
    font-size: 18px;
}

.pwf-form-benefits-wrap ul {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding-inline-start: 0;
}

.pwf-form-benefits > li {
    list-style-type: none;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 4px;
    padding: 6px 12px;
    width: fit-content;
    font-size: 16px;
}

.pwf-50 {
    width: 48%;
    margin-bottom: 12px;
    & + .pwf-50 {
    }
}

#zipCodeError:empty, #emailError:empty, #phoneError:empty {
    margin: 0;
}

#zipCodeError, #emailError, #phoneError {
    font-size: 12px;
    margin: 6px 0 0 0;
}

.pwf-form-container .pwf-select-label {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 4px;
    line-height: 1.2;
    color: #4f9d0a;
}

.pwf-form-container select.pwf-select-field {
    padding: 0.2rem 0rem;
    color: black;
    font-size: 16px;
    border: 0;
    z-index: 1;
    background-color: transparent;
    border-bottom: 2px solid #eee;
    border-radius: 0;
}

.pwf-form-container select.pwf-select-field:disabled {
    border: 0;
    border-bottom: 2px solid #eee;
}

.pwf-form-container select.pwf-select-field:active {
    border: 0;
    border-bottom: 2px solid #4f9d0a;
}

.pwf-form-container select.pwf-select-field.pwf-selected {
    border-bottom: 2px solid #4f9d0a;
}

.pwf-form-container .pwf-input {
    display: flex;
    flex-direction: column-reverse;
    position: relative;
    justify-content: start;
    padding-top: 1.5rem;
    & + .pwf-input {
    }
}

.pwf-form-container .pwf-input-label {
    color: #8597a3;
    position: absolute;
    top: 1.8rem;
    transition: .25s ease;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.2;
}

.pwf-form-container .pwf-input-field {
    border: 0;
    z-index: 1;
    background-color: transparent;
    border-bottom: 2px solid #eee;
    font: inherit;
    font-size: 1rem !important;
    padding: .25rem 0 !important;
    border-radius: 0;
    &:focus, &:valid {
        outline: 0;
        border-bottom-color: #4f9d0a;
        &+.pwf-input-label {
            color: #4f9d0a;
            font-weight: 500;
            transform: translateY(-1.6rem);
        }
    }
}

#pwf-accept-form-container .pwf-input-field:not(:required) {
    &+.pwf-input-label {
        color: #4f9d0a;
        font-weight: 500;
        transform: translateY(-1.6rem);
    }
}

.pwf-form-container #pwf-offer-amount-value {
}

.pwf-form-container #pwf-negotiate-offer {
    margin: 20px 0;
    /* display: none; */
}


.pwf-form-wrap form button {
    margin: 12px 0;
    width: 100%;
    padding: 16px;
    background: linear-gradient(177deg, #4F9D0A 0%, #3A7506 100%);
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-size: 18px;
    border: 1px solid #588622;
}

.pwf-form-wrap form button:hover {
    background-color: #418308;
    text-transform: uppercase;
}

div#pwf-accept-form-decline-wrap {
    width: 100%;
    font-size: 16px;
}

a#pwf-decline-offer {
    padding:  0;
    border: none;
    color: orange;
    text-decoration: underline;
    font-size: inherit;
    background: none;
}

a#pwf-decline-offer:hover {
    color: darkorange;
    background: none;
}

#pwf-offer-form-response:empty, #pwf-accept-form-response:empty {
    display: none;
}

#pwf-offer-form-response, #pwf-accept-form-response {
    text-align: center;
}

#pwf-offer-form-contact-notice {
    font-size: 14px;
}

#pwf-offer-form-contact-notice p:last-child {
    margin-bottom: 0;
}

@media (max-width: 928px) {
    .pwf-form-hero {
        border-radius: 16px 16px 0 0;
        min-width: 100%;
    }
    #pwf-offer-form-container .pwf-form-hero h2,
    #pwf-accept-form-container .pwf-form-hero h2 {
        font-size: 3rem;
    }
    .pwf-form-container {
        flex-direction: column;
    }
}

@media (max-width: 520px) {
    #pwf-offer-form-container .pwf-form-hero h2,
    #pwf-accept-form-container .pwf-form-hero h2 {
        font-size: 2rem;
    }
    .pwf-50 {
    }
    .pwf-form-container select.pwf-select-field,
    .pwf-form-container .pwf-input-field,
    .pwf-form-container .pwf-input-label,
    .pwf-form-container .pwf-select-label {
        font-size: 14px;
    }
    .pwf-form-hero {
        padding: 7%;
    }
    .pwf-form-hero p {
        font-size: 15px;
    }
    .pwf-form-wrap {
        padding: 7%;
    }
}

@media (max-width: 410px) {
    .pwf-50 {
        width: 100%;
        margin-bottom: 10px;
    }
}