#form-container{
    display: none;
}
.autosaveform-form .recieved_items{
    float: right;
    width: 50%;
}
.autosaveform-form #applicant_name{
    display: inline;
}
.autosaveform-form .recieved_items .label{
    float: left;
    width: 50%;
}
#thankyou{
    display: none;
    opacity: 0;
    transition: opacity 1s;
    position: fixed;
    width: 100%;
    z-index: 99;
    left: 0;
}
#deleteForm{
    text-align: center;    
}
#deleteForm .autosaveform-submit{
    display: inline-block;
}
.wpcf7-submit{
    cursor: pointer;
}
.yellowbutton{
    width: 100%;
    height: 2.4375rem;
    padding: 0.5rem;
    border: none;
    box-shadow: none;
    border-radius: 0;
    font-family: inherit;
    font-size: 1rem;
    font-weight: normal;
    line-height: 1.5;
    color: white;
    background: #febd3b;
    font-family: "Vitesse-Black";
    cursor: pointer;
}
.applicant_email_form label.error {
    color: red;
    margin-bottom: 25px;
    margin-top: -25px;
}
#reminder{
    display: inline-block;
    position: relative;
}
#reminder-banner {
    color: black;
    background: #febd3b;
    display: block;
    position: fixed;
    width: 100%;
    top: -32px;
    z-index: 99999;
    margin-left: -59px;
    padding-left: 59px;
    text-align: left;
    height: 32px;
    line-height: 32px;
    transition: transform 1s;
    transform:translateY(0px);
}
#reminder-banner.shown{
    transform:translateY(32px);
}
#reminder-banner.loggedin{
    top:0px;
}
#continueForm .shade {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.25);
    z-index: 99;
    display: flex;
    justify-content: center;
    align-items: center;
}
#continueForm .form_container {
    width: 1000px;
    max-width: 80%;
    padding: 50px 100px; 
}
#continueForm .form_container h5 {
    color: #9fa1a5;
    font-size: 11px;
    text-transform: uppercase;
    border-bottom: 2px solid #cfd0d2;
}
#continueForm .form_container h4 {
    color: #5f6369;
    margin: 50px 0 15px;
}

@media only screen and (max-width: 767px) {
    #reminder-banner, #reminder-banner.loggedin {
        padding: 0 5px;
        top:-64px;
        height: 64px;
    }
    #reminder-banner.shown{
        transform:translateY(64px);
    } 
    #continueForm .form_container {
        padding: 50px 33px;
    }
    #continueForm .form_container h5{
        line-height: 17px;
    }
}