/* Form */

.form_limiter {
    max-width: 540px;
    margin: 0 auto;
}

.checkboxes_hidden {
    display: none;
}

input {
    -webkit-appearance: none;
    border-radius: 0;
}

#faForm {
    position: relative;
    opacity: 1;
    max-height: 100%;
    -webkit-transition: opacity .3s .3s ease, max-height .3s .3s ease;
    -o-transition: opacity .3s .3s ease, max-height .3s .3s ease;
    transition: opacity .3s .3s ease, max-height .3s .3s ease;
    background: #fff;
    background: #f5f6f7;
    padding: 0 2rem 1rem 2rem;
    border: 1px solid #eee;
}

#faForm form {
    width: 100%;
    -moz-text-size-adjust: none;
    -ms-text-size-adjust: none;
    -webkit-text-size-adjust: none;
    position: relative;
    min-height: 300px;
    background: #f5f6f7;
    margin: 1em 0;
    overflow: hidden;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    max-height: 999px;
}
#faForm.submitted #form-header-container,
#faForm.submitted #form-form-container {
    max-height: 300px;
    opacity: 0;
}
/*
#faForm.submitted form,
#faForm.submitted #form_header {
    max-height: 300px;
    opacity: 0;
}
*/
#faForm .form_submission_success {
    text-align: center;
    padding: 30px;
    width: 100%;
    max-width: 35em;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity .3s .3s ease;
    -o-transition: opacity .3s .3s ease;
    transition: opacity .3s .3s ease;
}

#faForm .form_submission_success h1 {
    position: relative;
    padding-top: 8rem;
    margin-top: 0;
}
#faForm .form_submission_success h2 {
    font-family: mongoose, sans-serif;
    font-style: normal;
    font-weight: 500;
    text-transform: uppercase;
    text-align: center;
    max-width: 15rem;
    margin: 0 auto;
    line-height: 1;
    font-size: 2.5rem;
}
#faForm .form_submission_success h1:before {
    font-family: 'icons';
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    margin: 0;
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    padding: 0;
    font-size: 8rem;
    line-height: 1;
    text-align: center;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
    content: "\e92b";
    color: #4EC24F;
}

#faForm .form_submission_success h3 {
    margin: 1rem 0;
    font-size: 1em;
}

#faForm.submitted .form_submission_success {
    visibility: visible;
    opacity: 1
}

#faForm.submitted .form_submission_success .button {
    margin: 0 auto;
}

#faForm label {
    font-size: 1em;
    width: 100%;
    margin: 0 0 0.5rem 0;
    display: block;
    padding: 0;
    line-height: 1.25em;
    font-style: normal;
    font-weight: 700;
    text-align: left;
}

#faForm input[type="text"],
#faForm input[type="email"],
#faForm input[type="number"],
#faForm select,
#faForm .selectwrap {
    width: 100%;
    padding: 0.6125rem 1rem;
    font-size: 16px;
    line-height: 1em;
    margin: 0 0 1.5em 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    border: 1px solid #bbb;
    border-radius: 0;
    outline: 0;
    font-style: normal;
    font-weight: 500;
    color: #000;
}

#faForm .input_wrapper input[type="text"],
#faForm .input_wrapper input[type="email"],
#faForm .input_wrapper input[type="number"] {
    margin: 0 0 1.5em 0;
}

#faForm .input_wrapper,
form .required_wrapper {
    display: block;
    border-radius: 4px;
    margin: 0;
    position: relative;
}

#faForm span.input_required:before,
form span.required:before {
    content: "*";
    color: #F44336;
    position: absolute;
    top: 0.25em;
    left: 0.1em;
    z-index: 1;
    line-height: 1em;
    font-size: 2rem;
}

#faForm input:focus {
    border: 1px solid #0072BC;
}

#faForm .selectwrap {
    position: relative;
    margin: 0 0 1.5em 0;
    padding: 0;
    height: 2.5rem;
    overflow: hidden;
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    cursor: pointer;
    background: #fff;
}

#faForm .selectwrap select {
    border: none;
    cursor: pointer;
}

#faForm select {
    width: 120%;
    background: transparent;
    -webkit-appearance: none;
    border-radius: 0;
    position: relative;
    z-index: 2;
    line-height: 2em;
    padding: 0.25em 0.75rem;
}
#faForm .selectwrap:after {
    font-family: 'icons';
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    margin: 0;
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    height: 2.5rem;
    width: 2.5rem;
    padding: 0;
    font-size: 2rem;
    line-height: 2.5rem;
    text-align: center;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #000;
    content: "\e93d";
    background: #fff;
    z-index: 2;
    pointer-events: none;
    border-left: 1px solid #bbb;
}

:-moz-placeholder {
    color: #000;
    font-weight: 300;
}

:-webkit-input-placeholder {
    color: #000;
    font-weight: 300;
}

.error:-moz-placeholder {
    font-weight: 300;
}

.error:-webkit-input-placeholder {
    font-weight: 300;
}

#faForm label.error {
    color: #999;
    color: #b22727;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    font-weight: normal;
    font-family: Arial, Helvetica, sans-serif;
    padding: 0 1rem 1em;
    margin: -1.5em 0 0 0;
    line-height: 1em;
    font-style: italic;
    font-size: 0.825em;
}

#faForm label.checkerror {
    width: 100%;
    position: absolute;
    bottom: 0.25em;
    left: -1em;
    margin: 0;
    padding: 0.25em 2em;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}

#chat_options {
    -webkit-transition: background .3s ease;
    -o-transition: background .3s ease;
    transition: background .3s ease;
}

#chat_options.error {
    background: #faffbd;
}

#faForm label.error:before,
#faForm .checkboxes_required label.error:before {
    font-family: 'icons';
    font-style: normal;
    font-size: 1em;
    font-weight: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\e905";
    margin: 0;
    padding-right: 0.5em;
    float: left;
    color: #b22727;
}
#faForm .checkboxes_required label.error {
    position: absolute;
    bottom: 0.5rem;
}

#faForm span.asterisk,
.asterisk {
    padding: 0 0.125rem;
    color: #b22727;
    font-size: 2rem;
    line-height: 1;
    vertical-align: text-top;
}

#faForm legend span.asterisk {
    color: #fff;
}

#faForm input.error {
    background: #faffbd;
}

#faForm .help {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    font-weight: normal;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.725em;
    line-height: 1em;
    margin: 2em 0.5em 1em 0;
    padding: 0;
    color: #999;
    float: none;
    text-align: right;
    display: block;
}

#faForm input[type=submit],
#faForm input[type=submit]:hover,
#faForm input[type=submit]:active {
    padding: 0;
    -webkit-appearance: none;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-radius: 0px;
}

#faForm input.disabled,
#faForm input.disabled:hover,
#faForm input.disabled:active {
    background: #ccc;
    border-color: #bbb;
    cursor: progress;
}

.submit_button {
    padding: 0;
    margin: 2em auto 1em auto;
}

#faForm #ss-submit {
    display: table;
    font-family: 'mongoose';
    font-weight: 500;
    font-style: normal;
    font-size: 1.875rem;
    line-height: .8333333333;
    letter-spacing: .03em;
    text-align: center;
    text-transform: uppercase;
    outline: none;
    padding: 0.8125rem 1.5rem;
    border-radius: 0.1875rem;
    border-width: 0.125rem;
    color: #fff;
    border-color: var(--lvc-dark-blue);
    background-color:var(--lvc-dark-blue);
    margin: 0 auto;
    transition: all .25s ease;
    -webkit-transition: all .25s ease;
    -moz-transition: all .25s ease;
    -ms-transition: all .25s ease;
    -o-transition: all .25s ease;
    cursor: pointer;
}

#faForm #ss-submit:hover {
    background-color:var(--lvc-light-blue);
    border-color: var(--lvc-light-blue);
    color:#fff;
}

#faForm legend {
    padding: 1em;
    line-height: 1.25em;
    font-size: 1em;
    text-align: center;
    border: none;
    background: #003057;
    color: #fff;
    width: 100%;
}

#faForm fieldset {
    border: none;
    -webkit-box-shadow: inset 0 0 1px 0 #999;
            box-shadow: inset 0 0 1px 0 #999;
    width: 100%;
    position: relative;
    padding: 1em 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-radius: 0;
    overflow: hidden;
}

#faForm .fieldset_container {
    padding: 0 1em;
}

.clear {
    clear: both;
}

.cb {
    position: relative;
    display: block;
    width: 100%;
    padding-bottom: 1rem;
}

#faForm input[type="checkbox"],
#faForm input[type="radio"] {
    position: absolute;
    left: -99999px;
}
.ss-choice-label.checkLabel {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
}
#faForm input[type="checkbox"]+label.checkLabel,
#faForm input[type="radio"]+label.checkLabel {
    padding-left: 2em;
    position: relative;
    margin-bottom: 1em;
    background: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}

#faForm input[type="checkbox"]+label.checkLabel:hover,
#faForm input[type="radio"]+label.checkLabel:hover {
    cursor: pointer;
}

#faForm input[type="checkbox"]+label.checkLabel:before,
#faForm input[type="checkbox"]:checked+label.checkLabel:before,
#faForm input[type="radio"]+label.checkLabel:before,
#faForm input[type="radio"]:checked+label.checkLabel:before,
#faForm input[type="checkbox"]+label.checkLabel:after,
#faForm input[type="checkbox"]:checked+label.checkLabel:after,
#faForm input[type="radio"]+label.checkLabel:after,
#faForm input[type="radio"]:checked+label.checkLabel:after {
    display: block;
    padding: 0;
    margin: 0;
    text-decoration: none;
    position: absolute;
    text-align: center;
    top: 0;
    left: 0;
    height: 1em;
    width: 1em;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

#faForm input[type="checkbox"]+label.checkLabel:before,
#faForm input[type="checkbox"]:checked+label.checkLabel:before,
#faForm input[type="radio"]+label.checkLabel:before,
#faForm input[type="radio"]:checked+label.checkLabel:before {
    content: "";
    height: 0.75em;
    width: 0.75em;
    top: 0.15em;
    line-height: 0.5em;
    font-size: 1.5em;
    border: 1px solid #bbb;
    background: #fff;
    border-radius: 0;
}

#faForm input[type="checkbox"]+label.checkLabel:after,
#faForm input[type="checkbox"]:checked+label.checkLabel:after,
#faForm input[type="radio"]+label.checkLabel:after,
#faForm input[type="radio"]:checked+label.checkLabel:after {
    content: "\ea10";
    color: #0072BC;
    font-size: 1.5em;
    line-height: 0.925em;
    font-family: 'icons';
    font-weight: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    opacity: 0;
    visibility: hidden;
}

#faForm input[type="checkbox"]:checked+label.checkLabel:after {
    visibility: visible;
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

#faForm input[type="checkbox"]:checked+label.checkLabel:before {
    border-color: #0072BC;
}

#faForm input[type="radio"]+label.checkLabel:before {
    content: "\e604";
    color: #ccc;
}

#faForm input[type="radio"]:checked+label.checkLabel:before {
    content: "\e603";
    color: #326296;
}


/* Don't use native buttons on iOS */

input[type=submit].button,
button.button {
    -webkit-appearance: none;
}


/* Correct FF button padding */

@-moz-document url-prefix() {
    button::-moz-focus-inner,
    input[type="reset"]::-moz-focus-inner,
    input[type="button"]::-moz-focus-inner,
    input[type="submit"]::-moz-focus-inner,
    input[type="file"]>input[type="button"]::-moz-focus-inner {
        border: none;
        padding: 0;
    }
    input[type="submit"].tiny.button {
        padding: 3px 10px 4px;
    }
    input[type="submit"].small.button {
        padding: 5px 14px 6px;
    }
    input[type="submit"].button,
    input[type=submit].medium.button {
        padding: 8px 20px 9px;
    }
    input[type="submit"].large.button {
        padding: 13px 30px 14px;
    }
}

.errorbox label.error {
    width: 100%;
    background: #faffbd;
    padding: 0.25em 1em;
    margin: 0;
    left: 0;
}

form input.error {
    background: #faffbd;
}

.help,
.label-help {
    font-size: 0.825em;
    color: #999;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    font-weight: normal;
    font-family: Arial, Helvetica, sans-serif;
}

.form-submit {
    width: 100%;
    clear: both;
    padding: 2em 0 0;
}
.prizeImage {
    margin: 0 auto;
}

.prize_options {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    color: #bbb;
}

.prize_options span {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 50%;
    flex: 0 1 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.prize_disclaimer {
    text-align: center;
    color: #000;
    font-size: 0.75em;
    margin-top: 0;
    opacity: 0.75;
}

.success {
    text-align: center;
    padding: 0;
    background-color: #fff;
}

.success h2 {
    margin: 1rem;
    font-family: 'mongoose';
    text-transform: uppercase;
    font-size: 3.5rem;
    line-height: 1;
}

.gform .success_icon {
    display: block;
    height: 6rem;
    position: relative;
}
.gform .success_icon:before {
    font-family: 'icons';
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    margin: 0;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    padding: 0;
    font-size: 6rem;
    text-align: center;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-transform: translate3d(-50%, -50%, 0);
            transform: translate3d(-50%, -50%, 0);
    content: "\e92b";
    color: #4EC24F;
}
.working #faForm {
    opacity: 0;
    max-height: 0;
}

.working .success {
    padding: 2rem 0;
    opacity: 1;
    -webkit-transform: scale(1) translate3d(0,0,0);
            transform: scale(1) translate3d(0,0,0);
    position: relative;
}

#faForm .form_disclaimer {
    margin: 0;
    font-size: 0.825rem;
    text-align: left;
}

.faform_header {
    margin-bottom: 2rem;
    display: block;
    width: 100%;
}
.faform_header h3 {
    font-size: 2.605em;
}

.modal-popup-caption #faForm {
    padding: 0;
}
.modal-popup-caption #faForm,
.modal-popup-caption #faForm form {
    background: #fff;
    border: none;
}
.modal-popup-caption #faForm label {
    font-size: 0.925rem;
}
.modal-popup-caption .faform_header {
    font-size: 0.925rem;
    line-height: 1.2;
}
label {
    position: relative;
}
label .asterisk {
    position: absolute;
    top: 0;
}
.cb label .asterisk {
    position: relative;
}

#fa_form_reset p {
    text-align: left;
    margin: 0 0 0.5rem 0;
}

#faForm label.required_label {
    position: relative;
    padding-left: 1rem;
}
.required_label span.asterisk {
    left: 0;
}
.label_disclaimer {
    display: block;
    font-weight: 300;
    margin: 0.25rem 0 0 0;
    line-height: 1;
    color: #b22727;
}