a {
    color: #8f750f;
}
.navmenu .share {
    border-bottom: none;
    color: #424242;
}
.section_container{
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    column-gap: 40px;
    align-items: center;
}
.hide{
    display: none;
}
.section{
    width: 350px;
    margin-bottom: 20px;
}
.section_div{
    margin-top: 10px;
    padding: 10px;
    font-family: "futura", "proxima-nova", "helvetica neue";
    font-size: 16px;
    font-weight: normal;
    letter-spacing: .4em;
}
.calc_divider{
    background-color: #2d2d2d;
    height: 2px;
    width: 100%;
    margin: 0 0 10px 0;
}

.car{
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1.4px;
    line-height: 2em;
    font-size: 15px;
    padding: 10px 5px 0 5px;
}
.trim{
    font-weight: 500;
    padding: 0 5px 10px 5px;
    font-size: 13px;
    line-height: 1.4em;
}

.vin{
    text-transform: uppercase;
    font-weight: 700;
    font-size: 12.5px;
    letter-spacing: 1.4px;
    line-height: 1.2em;
    color: #7d7d7d;
    font-family: "Lato", sans-serif;
    padding: 0px 5px;
}
.edit{
    font-size: 10px;
}
.top_section{
    margin: 0 auto;
}
.exp_label{
    font-family: "Lato", sans-serif;
    line-height: 1.5em;
    letter-spacing: 0.6px;
    text-align: justify;
    padding: 0 5px;
    color: #4d4d4d;
    font-size: 14px;
    font-style: italic;
}
.top_exp{
    font-style: normal;
}
.warning{
    color: var(--red);
}
.required_asterisk{
    color: var(--red);
    margin: 0 0.25em;
}
/* Animated Input Group */
.input_group{
    position: relative;
    padding: 20px 5px 10px 5px;
    margin-bottom: 10px;
}
#vin_form .input_group{
    width: 100%;
}

label{
    font-weight: 700;
    text-transform: uppercase;
    font-size: 10px;
    line-height: 20px;
    letter-spacing: 1.4px;
    color: #4d4d4d;
    cursor: pointer;
}
.input_label {
    transition: all .3s ease;
    position: absolute;
    top: 45px;
    transform: translateY(-50%);
    padding-left: 5px;
}

.label_active, .always_active {
    font-size: 9px;
    line-height: 11px;
    letter-spacing: 1px;
    height: 11px;
    display: inline-flex;
    align-items: flex-end;

    margin-top: 12px;
    padding-top: 5px;
    transform: translateY(0);

    top: 5px;
    left: 3px;
    right: 0;
}
.input_field{
    font-family: "Lato", sans-serif;
    line-height: 1.5em;
    width: calc(100% - 10px);
    border: 0;
    border-bottom: 1px solid #9b9b9b;
    outline: 0;
    font-size: 14px;
    color: #040404;
    padding: 15px 0 5px 5px;
    background: transparent;
    transition: border-color 0.2s;
}
.input_field:focus {
    border-width: 3px;
    border-color: #ffe95e;
}
/* End of animated input group */




/* Radio Inputs [General] */
.quote_container input[type='radio']+label{
    color: #4d4d4d;
    font-family: "Lato", sans-serif;
    line-height: 1.5em;
    text-transform: none;
    font-size: 14px;
    font-weight: 500;
    background: #eff0eb;
    border-radius:3px;
}
input[type='radio']+label span{
    display: block;
}
/* Conditions Options */
.conditions{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.radio_group{
    padding: 10px;
    width: 100%;
}
.quote_container .conditions input[type='radio']+label{
    display: flex;
    align-items: center;
    flex-flow: column nowrap;
    text-align: center;
    justify-content: center;
    padding: 15px;
    height: 65px;
}
/* Replacement Vehicle Options */
.repl_options{
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 10px;
    grid-template-rows: 50px;
    margin: 10px 0px;
}
.quote_container .repl_options input[type='radio']+label{
    padding: 15px;
    display: block;
    width: 80%;
    text-align: center;
    font-weight: bold;
    cursor: pointer;
}

/* Clip radio and checkboxes */
input[type=radio]+label,
input[type=checkbox]+label
{
    transition: all 0.25s;
    transition-property: all;
    transition-duration: 0.25s;
    transition-timing-function: ease;
    transition-delay: 0s;
}
input[type=radio]{
    width:1px;
    height: 1px;
    position:absolute;
    clip: rect(0 0 0 0);
}
input[type=checkbox]{
    width:1px;
    height: 1px;
    position:absolute;
    clip: rect(0 0 0 0);
}

input[type=radio]:hover+label,
.add_attributes input[type='checkbox']:hover+label{
    background-color: #F2D151;
    color: #fcfcfc;
}
input[type=radio]:checked+label{
    background-color: #F2D151;
    color: #fcfcfc;

    border-style: solid;
    border-width: 0 1px 2px;
    border-color: #F2D151;
}
.conditions input[type=radio]:checked+label{
    border-right-color: #d9b527;
    border-right-width: 4px;
}
.repl_options input[type=radio]:checked+label{
    border-bottom-color: #d9b527;
    border-bottom-width: 4px;
}
.add_attributes input[type='checkbox']:checked+label{
    background-color: #F2D151;
    color: #fcfcfc;
    border-bottom: 4px solid #d9b527;
}
/* Quote Form Attributes Checkboxes */
.add_attributes{
    display: flex;
    align-items: start;
    flex-flow: row wrap;
    text-align: center;
    justify-content: space-evenly;
    row-gap: 10px;
    padding: 15px 0;
}
.add_attribute{
    padding: 15px 0;
}
.add_attributes input[type='checkbox']+label
{
    color: #4d4d4d;
    font-family: "Lato", sans-serif;
    line-height: 1.5em;
    text-transform: none;
    font-size: 14px;
    font-weight: 500;
    height: 30px;

    background: #eff0eb;
    padding: 15px;
    border-radius:3px;

}


/* Textarea */
textarea{
    width: calc(100% - 10px);
    border: 1px solid #9b9b9b;
    margin-top: 10px;
}
.textarea_label {
    font-size: 12px;
}

/* Button */
.button{
    display: block;
    font-family:"futura-medium", "montserrat","proxima-nova", "helvetica neue";
    background-color: transparent;
    color: #4d4d4d;
    font-size: 12px;
    text-transform: uppercase;
    padding: 15px 15px;
    border: 2px solid #4d4d4d;
    border-radius: 3px;
    margin: 10px auto;
    line-height: 1.2em;
    letter-spacing: 3px;
    width: 100%;
    cursor: pointer;
}
.button:hover,
.single_form .button:hover,
#quote_form .button:hover{
    background-color: #F2D151;
    color: #fcfcfc;
    font-style: italic;

    transition: all 0.25s;
    transition-property: all;
    transition-duration: 0.25s;
    transition-timing-function: ease;
    transition-delay: 0s;

    border-style: solid;
    border-width: 0 1px 2px;
    border-bottom-width: 2px;
    border-color: #F2D151;
    border-bottom-color: #d9b527;
}
.button:active, .botton:focus{
    background-color: #F2D151;
    color: #fcfcfc;

    transition: all 0.25s;
    transition-property: all;
    transition-duration: 0.25s;
    transition-timing-function: ease;
    transition-delay: 0s;

    border-style: solid;
    border-width: 0 1px 2px;
    border-bottom-width: 2px;
    border-color: #F2D151;
    border-bottom-color: #d9b527;
    box-shadow: rgb(0 0 0 / 30%) 0 0 10px;
}
.single_form .button,
#quote_form .button{
    background-color: #2e2e2e;
    border: none;
    color: #F2D151;
    font-size: 14px;
}
/* Routes Staff Page Button */
.wrapper#routes_staff{
    max-width: 450px;
    margin: auto;
}
/* VIN Form */
/* require input_group and button css */
.single_form .widget_container{
    max-width: 350px;
    column-gap: 15px;
    align-items: center;
    justify-items: center;
    justify-content: center;
    margin: 0 auto;
}
#vin_form .widget_container{
    display: grid;
    grid-template-columns: 3fr 1fr;
}
#login_form .widget_container{
    display: grid;
    grid-template-columns: 1fr;
}
.single_form .input_label{
    font-size: 14px;
}
.single_form .input_field{
    font-size: 16px;
}
.single_form .label_active{
    font-size: 11px;
}
.single_form .button{
    padding: 10px;
}
/* End of VIN Form */
.vin_container p{
    font-style: italic;
    max-width: 380px;
    margin: 10px auto;
    text-align: justify;
    color: #4d4d4d;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 14px;
    line-height: 1.5em;
}
.vin_heading{
    padding: 30px 10px 0px 10px;
}
.vin_heading p {
    line-height: 2em;
    max-width: 380px;
    margin: 10px auto;
    color: #4d4d4d;
}
.vin_container .intro_toggle{
    cursor: pointer;
    color: #8f750f;
    text-decoration: underline;
    margin: 0px auto;
    text-align: center;
}
/* VIN invalid character error */
.vin_container .vin_err{
    color: var(--red);
    font-size: 0.85em;
    margin-top: 8px;
    text-align: center;
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'lato', 'monserratt', sans-serif;
}
.alt_toggle{
    cursor: pointer;
    text-decoration: underline;
    color: #8f750f;
    margin-top: 10px;
}

/* Leads Portal */
#leads select{
    height: 35px;
    box-shadow: none;
    width: calc(100% - 10px);
}
#leads .optional_form select{
    background: #fcfcfc;
    margin-bottom: 10px;
}
#leads #leads_filters select{
    background: #f7f7f7;
    padding: 0 30px;
}
#leads #leads_filters input{
    padding: 8px 0;
}
#leads_filters{
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
    row-gap: 10px;
}
.quoted_filter{
    display: inline-flex;
    column-gap: 10px;
    align-items: center;
}
.bookmark_label{
    cursor: pointer;
}
.bookmark_label{
    font-size: 20px;
    padding: 0 10px;
}
.quote_options .bookmark_input:checked + label {
    background-color: #F2D151 !important;
    color: #fcfcfc!important;
    border-bottom: none!important;
    border: 1.5px solid #F2D151 !important;
}
#leads .item{
    grid-template-columns: 2fr 3fr;
}
#leads .item{
    color: #3d3d3d;
    font-style: normal;
    font-family: "montserrat", "Lato", sans-serif;
    font-weight: 500;
    letter-spacing: 0.05em;
}

#leads .detail label{
    color: black;
}
#leads .lead_status{
    font-style: italic;
    font-weight: bold;
    text-transform: uppercase;
    background-color: #3d3d3d;
    color: #fdfdfd;
    margin-right: 8px;
}
#leads .deal_type{
    text-transform: uppercase;
    font-weight: bold;
    font-size: 11px;
}
#leads .repl_label{
    color: #8f750f;
    font-style: italic;
}
#leads .summary .quoted{
    text-align: right;
}

#leads .summary .quoted .quote{
    font-size: 25px;
    padding: 10px 0;
    color: black;
    font-weight: bold;
}
#leads .red{
    color: var(--red);
}
.response{
    font-style: italic;
    text-align: right;
}
.msg{
    font-style: italic;
    text-align: center;
    margin: 20px auto;
    color: #4d4d4d;
}
/* Quoted - Reminder form */
#leads .summary .reminder_form{
    display: flex;
    justify-content: right;
    padding-top: 10px;
}
#leads .summary .reminder_form .button, .duplicate_form .button{
    font-size: 10px;
    line-height: 1.5em;
    font-weight: 600;
    font-family: "PT Sans", "montserrat","futura", monospace, sans-serif;
    margin: 0 0 0 auto;

    width: auto;
    background: #4d4d4d;
    color: #F2D151;
    padding: 5px 7.5px;
    border-radius: 2px;
    border: 1.5px solid #4d4d4d;
    /* justify-self: end; */

    transition: all 0.25s;
    transition-property: all;
    transition-duration: 0.25s;
    transition-timing-function: ease;
    transition-delay: 0s;
}
#leads .summary .reminder_form .button:hover,
#leads .summary .reminder_form .button:active,
.duplicate_form .button:hover,
.duplicate_form .button:active{
    border: 1.5px solid #F2D151;
    border-bottom: 2px solid #d9b527;
    background-color: #F2D151;
    color: #fcfcfc;
}

/* Optional Form */
#leads .summary .optional_form{
    display: grid;
    grid-template-columns: 3fr 1.5fr;
    align-items: center;
    justify-content: flex-end;
    max-width: 350px;
    column-gap: 15px;
    margin-left: auto;
    margin-top: 10px;
}
#leads .summary .optional_form input{
    margin-bottom: 10px;
}
#leads .summary .optional_form .button{
    padding: 10px 15px;
    background: #4d4d4d;
    color: #F2D151;
    border: 1.5px solid #4d4d4d;
    font-family: "PT Sans", "montserrat","futura", monospace, sans-serif;
    font-weight: bold;
}
#leads .summary .optional_form .button:hover{
    border: 1.5px solid #F2D151;
    border-bottom: 2px solid #d9b527;
    background: #F2D151;
    color: #fcfcfc;
}
#leads .summary .optional_form label{
    text-align: left;
    display: block;
}
#leads .summary .optional_form input{
    width: calc(100% - 10px);
}


/* Option Checkboxes */
.quote_options{
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-end;
    gap: 5px 10px;
    padding: 10px 0 5px 0;
    align-items: center;
}
.quote_option{
    padding: 5px 0;
    font-size: 10px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    display: inline-block;
}
.quote_options input[type='checkbox']+label{
    line-height: 1.5em;
    font-weight: 500;

    background: transparent;
    padding: 5px 7.5px;

    transition: all 0.25s;
    transition-property: all;
    transition-duration: 0.25s;
    transition-timing-function: ease;
    transition-delay: 0s;

    border-radius: 3px;
    border: 1.5px solid #8f8f8f;
    color: #8f8f8f;
    cursor: pointer;
}

.quote_options input[type=checkbox]:checked+label
{
    color: #d9b527;
    border: 1.5px solid #d9b527;
    font-weight: bold;
}

.quote_options input[type='checkbox']:hover+label
{
    background-color: #F2D151;
    color: #fcfcfc;
    border-bottom: none;
    border: 1.5px solid #F2D151;
}

@media screen and (max-width: 480px){
    #leads .info{
        grid-column: span 2;
    }
}

#response_page p{
    font-size: 16px;
    text-align: center;
    max-width: 450px;
    margin: 0 auto;
    line-height: 2em;
}

/* Equityhackr Survey */
#survey_page{
    max-width: 650px;
    margin:auto;
}
.tagline{
    font-style:italic;
    text-align: center;
    padding: 20px 0;
}
.question_grp{
    margin:15px 0;
}
.question{
    font-size: 12px;
    padding: 15px 0;
    display: block;
}
.survey_radios{
    display: flex;
    flex-direction: row;
    margin: 0 0 0 2.5px;
}
.survey_radios input[type='radio']+label{
    background: #eff0eb;
    padding: 8px 20px;
    transition: all 0.25s ease 0s;
    cursor: pointer;
    text-align: center;
    border-radius: 2px;
}
.survey_radios input[type='radio']+label:hover{
    background-color: rgba(242, 209, 81, 0.7);
    color: #fcfcfc;
}
.survey_radios input[type=radio]:checked + label {
    border-width: 0 0 2px 0;
    background-color: #F2D151;
    color: #fcfcfc;
    border-style: solid;
    border-color: #d9b527;
}
#eh_survey .input_field{
    max-width: 450px;
}
#eh_survey textarea{
    margin-left: 2.5px;
    max-width: 450px;
}
#survey_submit{
    margin:30px auto;
}
#eh_survey .button{
    max-width: 350px;
}