#exhq_signup_input,#pac-input {
    width: 100%;
    padding: 20px;
    font-size: 30px;
    border-radius: 12px;
}

#exhq_address_lookup_results {
    padding: 20px;
    margin: 30px;
}

.exhq_disabled {
    display: none;
}

#exhq_popup_container {
    padding: 20px;
    margin: auto;
    z-index: 91000;
    width: 80%;
    max-height: 100%;
    overflow: scroll;
    border-radius: 8px;
}
#exhq_popup_overlay {
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 90000;
}
.exhq_popup_close {
    position: fixed;
    top: 35px;
    right: 15px;
}
.exhq_popup_close:hover,
#exhq_popup_close_2:hover {
    cursor: pointer;
}

.exhq_popup_close:hover {
}
#exhq_popup_close_2:hover {
}
#exhq_popup_close_2 {
    padding: 10px 20px;
    border-radius: 3px;
    text-align: center;
}

#exhq_controls_container {
    position: fixed;
    bottom: 0;
    left: 0;
    flex-basis: 100%;
    display: flex;
    width: 100%;
    justify-content: space-around;
}
.exhq_control {
    padding: 10px 20px;
    border-radius: 5px;
    margin: 7px 5px;
    font-weight: bold;
}
.exhq_control:hover {
    cursor: pointer;
    
}
.exhq_control.disabled {
    background-color: #616161;
}
.exhq_control.disabled:hover {
    cursor: not-allowed;
}
#exhq_control_submit {
    display: none;
}

#exhq_step_terms {
    flex-direction: column;
    width: 100%;
}
#exhq_map_container {
    width: 100%;
    height: 300px;
}
#exhq_steps_container {
    display: none;
    flex: 1;
}
.exhq_step {
    display: none;
    flex-direction: column;
    flex: 1;
}
#exhq_confirmation {
    display: none;
    overflow: scroll;
    flex: 1;
}
#exhq_thankyou {
    display: none;
    flex-direction: column;
    text-align: center;
    flex: 1;
}

.exhq_step_options_container {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: space-evenly;
}

.exhq_option {
    text-align: center;
    padding: 10px;
    border-radius: 6px;
    flex: 1;
    margin: 3px 5px;
}

.exhq_option:hover {
    cursor: pointer;
}

.exhq_col_50 {
    flex: 1;
}


.exhq_step h1 {
    margin: 0 0 10px;
    padding-left: 10px;
}
.exhq_step p {
    margin-bottom: 40px;
    padding-left: 20px;
}

.exhq_accept_terms_label:hover {
    cursor: pointer;
}
.exhq_accept_terms_label a:hover {
    
}
#exhq_accept_terms:hover {
    cursor: pointer;
}
#exhq_accept_terms_continue,
.exhq_submit_form_button {
    display: block;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
}
#exhq_accept_terms_continue:hover {
    cursor: pointer;
}
#exhq_accept_terms_continue.disabled:hover {
    cursor: not-allowed;
}
.exhq_no_confirm,
.exhq_confirm_alert{
    padding: 10px;
    list-style: none;
    margin: 5px 0px;
    display: flex;
}

.exhq_no_confirm > label,
.exhq_confirm_alert > label {
    padding-right: 20px;
}
.exhq_no_confirm > input,
.exhq_confirm_alert > input {
    flex: 1;
    border-radius: 3px;
    padding: 7px 5px 7px 11px;
}

#exhq_oosa {
    display: none;
    flex-direction: column;
    flex: 2;
}
#exhq_oosa_form {
    display: none;
    flex-grow: 1;
}
#exhq_oosa_form ul {
    display: flex;
    flex-grow: 1;
    flex-direction: column;
}

#exhq_oosa_submit:hover {
    cursor: pointer;
}

#exhq_oosa_thankyou {
    display: none;
    flex-direction: column;
    text-align: center;
}

#exhq_review_list_container {
    list-style: none;
    padding-left: 20px;
}

#exhq_review_list_container li {
    padding: 20px;
    margin: 15px 0;
    border-radius: 7px;
}

#exhq_review_total_container {
    text-align: right;
    padding-right: 25px;
}

@media( max-width: 480px ) {
    #exhq_signup_input, #pac-input {
        max-width: 90%;
    }
    #exhq_popup_container {
        width: 100%;
        margin: 80px 0;
        padding: 20px 5px 20px 10px;
    }
    .exhq_step_options_container {
        flex-direction: column;
    }
    .exhq_option exhq_option_selected {
        margin-bottom: 6px;
    }
    #exhq_confirmation {
        flex-direction: column-reverse;
    }
    .exhq_col_50 {
        width: 95%;
    }
}