/* MAIN CONTAINER */
#hbird_ff_form_container
{
    width: 350px;
}
#hbird_ff_form_container *
{
    font-family: sans-serif;
    color: #FFFFFF;
}
/* STEPS */
.hbird_ff_step
{
    background-color: #107C84;
    width: 350px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(50,50,50,0.5);
    padding: 20px;
    min-height: 670px;
}
/* STEP HEADER */
.hbird_ff_step_header
{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.hbird_ff_step_logo
{
    max-height: 80px;
}
.hbird_ff_step_title
{
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    margin-top: 30px;
    margin-bottom: 20px;
    min-width: 100%;
}
.hbird_ff_step_progress
{
    font-size: 15px !important;
    font-style: italic;
    position: relative;
    top: -8px;
}
/* STEP BODY */
.hbird_ff_step_body
{

}
.hbird_ff_step_intro p
{
    font-size: 14px;
    font-style: italic;
    text-align: center;
    min-with: 100%;
}
.hbird_ff_field_title
{
    display: inline-block;
    min-width: 100%;
    font-size: 13px;
    line-height: 17px;
    font-weight: bold;
}
.hbird_ff_field_subtitle
{
    display: inline-block;
    font-size: 8px;
    line-height: 10px;
    font-style: italic;
    position: relative;
    top: -12px;
}
.hbird_ff_radio_label
{
    display: inline;
    font-size: 12px;
}
#hbird_ff_field_terms_label, #hbird_ff_field_terms_label_f
{
    display: block;
    margin: unset;
    position: relative;
    top: -20px;
}
.hbird_ff_tabulation
{
    display: inline-block;
    max-height: 1px;
    width: 25px;
}
.hbird_ff_field_terms_notice
{
    position: relative;
    top: -4px;
    font-size: 13px;
    line-height: 18px;
    display: inline-block;
}
.hbird_ff_field input[type="text"]
{
    color: #333333 !important;
    text-align: right;
    line-height: 25px;
    border-radius: 2px;
    margin-bottom: 15px;
    padding: 2px 7px !important;
    min-width: 100% !important;
}
#hbird_ff_customeremail, #hbird_ff_customerphone, #hbird_ff_customeremail_f, #hbird_ff_customerphone_f
{
    text-align: center !important;
}
.hbird_ff_field input[type="text"], .hbird_ff_field input[type="text"]:focus, .hbird_ff_field input[type="text"]:active
{
    border: unset;
    outline: none;
    background: #FFFFFF;
}
#hbird_ff_purchase
{
    margin-bottom: 6px;
}
.hbird_ff_range
{
    width: 100%;
}
.hbird_ff_range_levels
{
    display: flex;
    font-size: 10px;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
    top: -15px;
}
.hbird_ff_recap
{
    text-align: center;
    font-size: 17px;
    margin-top: 20px;
    margin-bottom: 30px;
}
.hbird_ff_recap span
{
    line-height: 30px;
}
/* STEP FOOTER */
.hbird_ff_step_footer
{
    display: flex;
    justify-content: center;
}
.hbird_ff_next_step_btn
{
    display: inline-block;
    text-align: center;
    color: #107C84 !important;
    background: #FFFFFF !important;
    border-radius: 10px 0 10px 0 !important;
    line-height: 10px !important;
    padding: 10px !important;
    width: 50%;
    border: unset;
    font-weight: bold;
    font-size: 14px !important;
    text-transform: uppercase;
    text-decoration: none !important;
    cursor: pointer !important;
}
/* CONFIRMATION STEP */
.hbird_ff_step_confirmation_body
{
    text-align: center;
}
.hbird_ff_confirmation_img
{
    height: 180px !important;
    width: 180px !important;
    margin: auto;
    padding: 30px;
    border: 6px solid #FFFFFF;
    border-radius: 50%;
}
.hbird_ff_confirmation_txt
{
    text-align: center;
    font-size: 15px;
    font-weight: bold;
    margin-top: 30px;
    margin-bottom: 20px;
    min-width: 100%;
}
/* STYLE OF INPUT RANGE */
input[type=range]
{
    -webkit-appearance: none;
    -moz-apperance: none;
    border-radius: 6px;
    height: 6px;

    background-image: -webkit-gradient(linear,
    left top,
    right top,
    color-stop(15%, #F5A942),
    color-stop(15%, #FFFFFF));

    background-image: -moz-linear-gradient(left center,
    #DF7164 0%, #F5A942 15%,
    #F5D0CC 15%, #FFFFFF 100%);
}
input[type="range"]::-moz-range-track
{
    border: none;
    background: none;
    outline: none;
}
input[type=range]:focus
{
    outline: none;
    border: none;
}
input[type=range]::-webkit-slider-thumb
{
    -webkit-appearance: none !important;
    background-color: #FFFFFF;
    height: 13px;
    width: 13px;
    border-radius: 50%;
    box-shadow: 0 0 5px #333333;
}
input[type=range]::-moz-range-thumb
{
    -moz-appearance: none !important;
    background-color: #FFFFFF;
    border: none;
    height: 13px;
    width: 13px;
    border-radius: 50%;
    box-shadow: 0 0 5px #333333;
}