/* Form */

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

.checkboxes_hidden {
    display: none;
}
#form_header {
    text-align: center;
    margin-bottom: 1rem;
}
#form_header h2 {
    margin: 1rem 0 0 0;
}
#form_header p {
    font: 1.125rem;
}

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

#chat-form,
#slate-form {
    position: relative;
    padding: 3rem 0;
    background: #f6f7f8;
}

#chat-form form {
    width: 100%;
    -moz-text-size-adjust: none;
    -ms-text-size-adjust: none;
    -webkit-text-size-adjust: none;
    position: relative;
    min-height: 300px;
    margin: 0;
    overflow: hidden;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    max-height: 999px;
    background-color: transparent;
    padding: 1em 0;
}

#chat-form.submitted form,
#chat-form.submitted #form_header {
    max-height: 300px;
    opacity: 0;
}

#chat-form .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;
}

#chat-form .form_submission_success h1 {
    position: relative;
    padding-top: 3em;
    margin-top: 0;
}

#chat-form .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: 1.5em;
    height: 1.5em;
    width: 1.5em;
    line-height: 1.5em;
    text-align: center;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
    content: "\e906";
    border-radius: 100%;
    border: 3px solid #78BE20;
    color: #78BE20;
}

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

#chat-form.submitted .form_submission_success {
    visibility: visible;
    opacity: 1
}

#chat-form label {
    font-size: 1em;
    width: 100%;
    float: left;
    clear: left;
    padding: 0;
    line-height: 1.5em;
    font-weight: normal;
}

#chat-form input[type="text"],
#chat-form input[type="email"],
#chat-form input[type="number"],
#chat-form select,
#chat-form .selectwrap {
    width: 100%;
    padding: 0.75rem 0.5rem 0.75rem 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-radius: 2px;
    border: 1px solid #bbb;
    outline: 0;
    background: transparent;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
}

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

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

#chat-form span.input_required:before {
    content: "*";
    color: #F44336;
    position: absolute;
    top: 1em;
    left: 0.35em;
    z-index: 1;
    line-height: 1em;
}

#chat-form input:focus {
    border: 1px solid #42A5F5;
}

#chat-form .selectwrap {
    position: relative;
    margin: 0 0 1.5em 0;
    padding: 0;
    height: 3em;
    overflow: hidden;
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    cursor: pointer;
}

#chat-form .selectwrap select {
    border: none;
    cursor: pointer;
}

#chat-form select {
    width: 125%;
    background: transparent;
    -moz-appearance: none;
         appearance: none;
    -webkit-appearance: none;
    border-radius: 0;
    height: 3em;
    position: relative;
    z-index: 2;
}

#chat-form .selectwrap:after {
    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;
    right: 0;
    padding: 0;
    content: "\e313";
    font-size: 1.5em;
    line-height: 1em;
    text-align: center;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 50%, 0);
}

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

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

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

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

#chat-form 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 0;
    margin: -1.5em 0 0 0;
    line-height: 1em;
    font-style: italic;
    font-size: 0.825em;
}

#chat-form 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;
}

#chat-form label.error:before,
#chat-form .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: "\e930";
    margin: 0;
    padding-right: 0.5em;
    float: left;
    color: #b22727;
}

#chat-form span.asterisk,
.asterisk {
    padding: 0 0.5em;
    color: #b22727;
}

#chat-form input.error {
    background: #faffbd;
}

#chat-form .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;*/
    opacity: 0.5;
    float: none;
    text-align: right;
    display: block;
}

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

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

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

#chat-form #ss-submit {
    border-radius: 2px;
    padding: 0.75rem 2rem;
    text-align: center;
    text-decoration: none;
    -webkit-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease;
    cursor: pointer;
    -moz-appearance: none;
    appearance: none;
    -webkit-appearance: none;
    display: inline-block;
    outline: none;
    border: 1px solid var(--blue);
    background-color: var(--blue);
    color: #fff;
    margin: 1rem auto 0 auto;
    font-weight: bold;
    min-width: 180px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
    text-transform: uppercase;
}

#chat-form #ss-submit:hover {
    cursor: pointer;
    background: transparent;
    border: 1px solid var(--blue);
    color: var(--blue);
}


/*
#chat-form #ss-submit:hover,
#chat-form #ss-submit:focus {
    background: #105ba6;
    cursor: pointer;
    outline: 0;
}

#chat-form #ss-submit:active {
    background: #1674b9;
}
*/

#chat-form legend {
    padding: 1em;
    line-height: 1.25em;
    font-size: 1em;
    text-align: center;
    border: none;
    font-size: 1rem;
    margin: 0 auto;
    max-width: 90%;
    font-weight: 600;
}

#chat-form fieldset {
    border: 1px solid #bbb;
    width: 100%;
    position: relative;
    padding: 0 0 1em 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 4px;
    overflow: hidden;
    margin: -1.5em 0 1em 0;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}

#chat-form .fieldset_container {
    padding: 0 2em;
}

.clear {
    clear: both;
}

.cb {
    position: relative;
}
#slateForm input[type="checkbox"],
#slateForm input[type="radio"],
#chat-form input[type="checkbox"],
#chat-form input[type="radio"] {
    position: absolute;
    left: -99999px;
}
#slateForm input[type="checkbox"]+label,
#slateForm input[type="radio"]+label,
#chat-form input[type="checkbox"]+label,
#chat-form input[type="radio"]+label {
    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;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
#slateForm input[type="checkbox"]+label {
    padding-left: 2em;
    line-height: 1;
    margin: 0.75rem 0;
}
#slateForm input[type="checkbox"]+label:hover,
#slateForm input[type="radio"]+label:hover,
#chat-form input[type="checkbox"]+label:hover,
#chat-form input[type="radio"]+label:hover {
    cursor: pointer;
}
#slateForm input[type="checkbox"]+label:before,
#slateForm input[type="checkbox"]:checked+label:before,
#slateForm input[type="radio"]+label:before,
#slateForm input[type="radio"]:checked+label:before,
#slateForm input[type="checkbox"]+label:after,
#slateForm input[type="checkbox"]:checked+label:after,
#slateForm input[type="radio"]+label:after,
#slateForm input[type="radio"]:checked+label:after,
#chat-form input[type="checkbox"]+label:before,
#chat-form input[type="checkbox"]:checked+label:before,
#chat-form input[type="radio"]+label:before,
#chat-form input[type="radio"]:checked+label:before,
#chat-form input[type="checkbox"]+label:after,
#chat-form input[type="checkbox"]:checked+label:after,
#chat-form input[type="radio"]+label:after,
#chat-form input[type="radio"]:checked+label:after {
    display: block;
    padding: 0;
    margin: 0;
    text-decoration: none;
    position: absolute;
    text-align: center;
    top: 0.35rem;
    left: 0;
    height: 1em;
    width: 1em;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
#slateForm input[type="checkbox"]+label:before,
#slateForm input[type="checkbox"]:checked+label:before,
#slateForm input[type="radio"]+label:before,
#slateForm input[type="radio"]:checked+label:before,
#slateForm input[type="checkbox"]+label:after,
#slateForm input[type="checkbox"]:checked+label:after,
#slateForm input[type="radio"]+label:after,
#slateForm input[type="radio"]:checked+label:after{
    top: 0;
}
#slateForm input[type="checkbox"]+label:before,
#slateForm input[type="checkbox"]:checked+label:before,
#chat-form input[type="checkbox"]+label:before,
#chat-form input[type="checkbox"]:checked+label:before {
    font-family: 'icons' !important;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: '\e904';
    color: #353535;
}
#slateForm input[type="radio"]+label:before,
#slateForm input[type="radio"]:checked+label:before,
#chat-form input[type="radio"]+label:before,
#chat-form input[type="radio"]:checked+label:before {
    content: "";
    height: 1rem;
    width: 1rem;
    top: 0.35rem;
    line-height: 0.5em;
    border: 1px solid #353535;
    border-radius: 0;
}
#slateForm input[type="checkbox"]+label:after,
#slateForm input[type="checkbox"]:checked+label:after,
#chat-form input[type="checkbox"]+label:after,
#chat-form input[type="checkbox"]:checked+label:after {
    font-family: 'icons' !important;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: '\ea23';
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    opacity: 0;
    visibility: hidden;
    color: #c99a2c;
}
#slateForm input[type="radio"]+label:after,
#slateForm input[type="radio"]:checked+label:after,
#chat-form input[type="radio"]+label:after,
#chat-form input[type="radio"]:checked+label:after {
    content: "\e90b";
    color: #c99a2c;
    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;
}
#slateForm input[type="checkbox"]:checked+label:after,
#chat-form input[type="checkbox"]:checked+label:after {
    visibility: visible;
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}
#slateForm input[type="checkbox"]:checked+label:before,
#chat-form input[type="checkbox"]:checked+label:before {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    opacity: 0;
    visibility: hidden;
}

#chat-form input[type="radio"]+label:before {
    content: "\e604";
    color: #bbb;
}

#chat-form input[type="radio"]:checked+label:before {
    content: "\e603";
    color: #326296;
}


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

input[type=submit].button,
button.button {
    -moz-appearance: none;
         appearance: none;
    -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;
}

.success {
    text-align: center;
    padding: 3em 3em 0;
}

.success h1 {
    font-size: 2.5em;
    line-height: 1.15em;
}

.success h3 {
    font-size: 1.25em;
    padding: 1em;
    line-height: 1.15em;
    font-weight: 400;
}

.success h2 {
    margin: 2em 0 1em 0;
}

.chattitle {
    width: 100%;
    font-weight: 600;
    line-height: 1.2em;
    margin-top: 0.25em;
    margin-bottom: 0.25em;
    color: #3d3935;
}

.chatdate,
.chattime {
    font-size: 0.825em;
    line-height: 1.15em;
}

.chatdate {
    display: inline;
    white-space: nowrap;
}

.chattime {
    display: inline;
    padding-left: 1em;
    margin-left: 0.5em;
    position: relative;
    white-space: nowrap;
}

.chattime:before {
    content: '';
    display: inline-block;
    position: absolute;
    width: 0.5em;
    height: 0;
    left: 0;
    top: 50%;
    margin: 0;
    border-top: 1px solid #333;
}

@media only screen and (max-width: 639px) {
    #chat-form fieldset {
        margin: 0;
    }
}

@media only screen and (max-width: 369px) {
    .chattime {
        display: block;
        margin-left: 0;
        padding-left: 0;
        width: 100%;
        margin-top: 0.25rem;
    }
    .chattime:before {
        display: none;
    }
    .theForm p.intro {
        font-size: 1em;
    }
    #chat-form legend {
        font-size: 1em;
    }
}


/* Slate Form */

.slateHeader {
    max-width: 640px;
    margin: 0 auto;
}

#slateForm {
    font-size: 1em;
    color: #000;
    line-height: 1.5em;
    margin: 0 auto;
    width: 100%;
    max-width: 640px;
    opacity: 0;
    -webkit-transition: opacity .25s ease;
    -o-transition: opacity .25s ease;
    transition: opacity .25s ease;
}

#slateForm.form_loaded {
    opacity: 1;
}

#slateForm input {
    font-size: 1em;
}

#slateForm input[type="text"]:focus,
#slateForm input[type="email"]:focus,
#slateForm input[type="tel"]:focus,
#slateForm_parents input[type="text"]:focus,
#slateForm_parents input[type="email"]:focus,
#slateForm_parents input[type="tel"]:focus {
    border: 1px solid #2196f3;
    outline: none;
}

#slateForm input[type="text"],
#slateForm input[type="email"],
#slateForm input[type="tel"],
#slateForm_parents input[type="text"],
#slateForm_parents input[type="email"],
#slateForm_parents input[type="tel"] {
    line-height: 1em;
    padding: 0.25em;
    border: 1px solid #bbb;
    border-radius: 3px;
    width: 100%;
}

#slateForm .form_responses {
    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: wrap;
    flex-wrap: wrap;
}

#slateForm .disclaimer {
    text-align: right;
    text-transform: capitalize;
    font-size: 0.825em;
    opacity: 0.55;
}

#slateForm .asterisk {
    color: #f44336;
    display: inline-block;
    padding: 0 0.25em;
}

#slateForm select {
    font-size: 1em;
    line-height: 1.5rem;
    height: 3em;
    -moz-appearance: none;
         appearance: none;
    -webkit-appearance: none;
    border-radius: 0px;
    margin: 0;
    background: #fff;
    padding: 0.75rem 1rem;
}

#slateForm .selectwrap {
    position: relative;
    margin: 0 1em 0 0;
    padding: 0 2em 0 0;
    height: 2em;
    overflow: hidden;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    border: 1px solid #bbb;
}

#slateForm .selectwrap:last-child {
    margin-right: 0;
}

#slateForm .form_page .selectwrap select {
    border: none;
    width: 120%;
    background: transparent;
    -moz-appearance: none;
         appearance: none;
    -webkit-appearance: none;
    border-radius: 0;
    height: 2em;
    position: relative;
    z-index: 2;
    outline: none;
}

#slateForm select:focus {
    outline: none;
}

div.form_question.selected,
div.form_question.required {
    background: transparent!important;
    background-color: transparent!important;
}

div.form_question.required input,
div.form_question.required select {
    background-color: #ffc;
}

div.form_question.required .form_responses:after {
    content: 'This field is required';
    display: block;
    width: 100%;
    font-size: 0.825em;
    color: #f44336;
}

.action button {
    -moz-appearance: none;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
    border: none;
    border-radius: 25px;
    padding: 0.75rem 2rem;
    text-align: center;
    text-decoration: none;
    -webkit-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease;
    cursor: pointer;
    -moz-appearance: none;
    appearance: none;
    -webkit-appearance: none;
    display: table;
    border: 1px solid #3d3935;
    background-color: #3d3935;
    color: #fff;
    margin: 2rem auto 0 auto;
    font-weight: bold;
    min-width: 180px;
}
.action button:hover,
.action button:focus {
    cursor: pointer;
    background: #bbb;
    border: 1px solid #bbb;
}

/* Custom dropdown */

#slateForm .cs_dropdown {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    vertical-align: middle;
    margin-bottom: 0.5em;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
}

#slateForm .cs_dropdown select {
    background-color: #fff;
    font-size: inherit;
    padding: .25em 0.5em;
    padding-right: 2.5em;
    border: 1px solid #bbb;
    margin: 0;
    border-radius: 3px;
    text-indent: 0.01px;
    -o-text-overflow: '';
       text-overflow: '';
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    margin-left: 0!important;
    line-height: 1.5rem;
    height: 2rem;
    width: 100%;
}

#slateForm .form_responses .cs_dropdown {
    margin-right: 1em;
}

#slateForm .form_responses .cs_dropdown:last-child {
    margin-right: 0;
}


/*Hiding the select arrow for IE10*/

.cs_dropdown select::-ms-expand {
    display: none;
}

.cs_dropdown::before,
.cs_dropdown::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.cs_dropdown::after {
    font-family: 'icons';
    height: 1rem;
    width: 2rem;
    text-align: center;
    font-size: 1rem;
    line-height: 1;
    right: 0;
    top: 50%;
    margin-top: -.5em;
    content: "\f078";
}

.cs_dropdown::before {
    /*  Custom dropdown arrow cover */
    width: 2em;
    right: 0;
    top: 0;
    bottom: 0;
    border-radius: 0 3px 3px 0;
    background-color: rgba(0, 0, 0, .1);
    background-color: #3d3935;
}

.cs_dropdown::after {
    color: rgba(0, 0, 0, .5);
    color: #fff;
}

.cs_dropdown select[disabled] {
    color: rgba(0, 0, 0, .25);
}

.dialog,
.progress_dialog_div {
    font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
    font-size: 1em;
    color: #f44336;
}

.dialog {
    border-radius: 3px;
}

#slateForm #register_date,
#slateForm #register_location {
    display: none;
}

#slateForm label {
    line-height: 1.2;
    float: none;
    margin-bottom: 0.25rem;
    font-size: 1em;
}

#slateForm fieldset {
    border: 1px solid #bbb;
    width: 100%;
    position: relative;
    padding: 1rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 4px;
    overflow: hidden;
    margin: 0;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    
}

#slateForm fieldset legend {
    padding: 1rem;
    line-height: 1.25em;
    text-align: center;
    border: none;
    font-size: 1rem;
    margin: 0 auto -1rem auto;
    max-width: 90%;
    font-weight: 600;
    display: block!important;
}
#slateForm fieldset>.form_label {
    display: none;
}

#slateForm fieldset .form_responses {
    padding: 0;
}

#slateForm input[type="text"],
#slateForm input[type="password"],
#slateForm input[type="date"],
#slateForm input[type="datetime"],
#slateForm input[type="datetime-local"],
#slateForm input[type="month"],
#slateForm input[type="week"],
#slateForm input[type="email"],
#slateForm input[type="number"],
#slateForm input[type="search"],
#slateForm input[type="tel"],
#slateForm input[type="time"],
#slateForm input[type="url"],
#slateForm textarea {
    margin-bottom: 0;
    height: auto;
    -webkit-box-shadow: none;
            box-shadow: none;
}


#slateForm div.form_header .form_label {
    background-color: transparent;
    padding: 0;
    margin: 1rem 0;
    text-align: center;
}
.form_wrapper {
    margin: 2rem 0; 
}