/* =============== Base Style =============== */

*, *:before, *:after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
html, body {
    min-height: 100%;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
}
body {
    color: #231f20;
    background-color: #ffffff;
    font-size: 16px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.5;
}
.container {
    float: none;
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
}
.page-center {
    float: none;
    width: 100%;
    max-width: 1040px;
    margin: 0 auto;
}
.clearfix:before, .clearfix:after {
    content: '';
    clear: both;
    display: block;
}
img {
    max-width: 100%;
    height: auto;
}

/* add any custom brand fonts here */

/* ============ Body Styling ================= */

.body-container {
    padding: 0 30px;
}

.form-column-wrapper {
    position: relative;
    overflow: hidden;
}

.form-column {
    position: relative;
    width: 100%;
    padding: 0;
}

.form-block {
    padding-top: 15px;
    padding-bottom: 15px;
}

.form-block input,
.form-block select {
    font-family: Arial, Helvetica, sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.18;
    color: #231f20;
    background: #ffffff;
    border: 1px solid #C0C0C0;
    box-sizing: border-box;
    display: block;
    width: 100%;
    padding: 16px 15px;
    max-height: 52px;
    margin: 0;
    border-radius: 8px;
}

.form-block input[size="2"] {
    min-width: 60px;
}

.form-block input[size="4"] {
    min-width: 80px;
}

.form-block label.error {
    color: red;
    font-family: Arial, Helvetica, sans-serif;
    font-style: normal;
    font-weight: 300;
    padding: 4px 0 0;
    display: block;
}

.form-block label#terms-error {
    margin-top: 1em;
    padding-left: 35px;
} 

input:placeholder {
color: #CACACA;
opacity: 1;
}
input::placeholder {
color: #CACACA;
opacity: 1;
}

.form-block label,
.form-block legend {
    display: block;
    font-weight: bold;
    color: #111;
}

.form-block label.required::after,
.form-block fieldset legend.required::after,
.form-block label.checkbox .required:after {
    display: inline-block;
    content: '*';
    color: #f0493e;
}

.form-block label .title {
    font-family: Arial, Helvetica, sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.18;
    color: #231f20;
    display: block;
    padding-left: 35px;
}
.form-block label .title span {
    display: block;
}
.form-block label .title .sub {
    font-family: Arial, Helvetica, sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.21;
    color: #5F5F73;
    padding-top: 8px;
}
.form-block label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.form-block fieldset.dob {
    border: none;
    padding: 0;
}

.form-block fieldset.dob legend {
    padding: 0 0 4px 0;
}

.form-block fieldset.dob .date-wrapper {
    display: inline-block;
}

.form-block fieldset.dob .date-wrapper label {
    font-size: smaller;
    font-weight: normal;
    color: #231F20;
}

.form-block input:read-only {
 color: #828282;
 background-color: #f5f5f5;
}

.form-block .radio .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background: #FFFFFF;
    border: 1px solid #A1A1A1;
    box-sizing: border-box;
    border-radius: 100%;
}
.form-block .radio input:checked + span {
    border: 1px solid #005d7e;
}

.form-block .radio .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
.form-block .radio .checkmark:after {
    content: '';
    background-color: #005d7e;
    width: 14px;
    height: 14px;
    border-radius: 100%;
    position: absolute;
    top: 2px;
    left: 2px;
}
.form-block .radio input:checked ~ .checkmark:after {
    display: block;
}
.form-block label.checkbox {
    position: relative;
    cursor: pointer;
    /* max-width: 480px; */
    margin: 0 auto;
    text-align: left;
}

.form-block label.checkbox + span.title {
    position: relative;
    /* max-width: 480px; */
    margin: 0 auto;
    text-align: left;
    display: block;
}

.form-block .checkbox .checkmark {
    position: absolute;
    top: 0;
    height: 20px;
    width: 20px;
    background: #FFFFFF;
    border: 1px solid #A1A1A1;
    box-sizing: border-box;
    border-radius: 3px;
}
 
.form-block .checkbox .checkmark{ left: 0;}
 
.form-block .checkbox input:checked ~ .checkmark, .form-block-2 .checkbox input:checked ~ .checkmark {
    border: 1px solid #005d7e;
    background: #005d7e;
}
.form-block .checkbox .checkmark:after, .form-block-2 .checkbox .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
.form-block .checkbox .checkmark:after, .form-block-2 .checkbox .checkmark:after {
    left: 6px;
    top: 1px;
    width: 6px;
    height: 13px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.form-block .checkbox input:checked ~ .checkmark:after, .form-block-2 .checkbox input:checked ~ .checkmark:after {
    display: block;
}

.form-block.button {
    text-align: center;
}

.form-block.button p {
    text-align: left;
}

.form-block.button input {
    background: #005d7e;
    border-radius: 24px;
    border: none;
    font-family: Arial, Helvetica, sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.21;
    text-align: center;
    padding: 15px 15px;
    cursor: pointer;
    max-width: 300px;
    display: inline-block;
    text-transform: uppercase;
    color: #fff;
    margin-top: 12px;
    -webkit-appearance: none;
}

.section-container { 
    width:100%; 
    max-width: 900px; 
    margin: 0 auto;
    padding: 30px 0;
    background-color: #ffffff;}

#terms {
    padding-top: 1.5em;  
  }

/* =============== Thank You Page ===================== */


.body-container.submission-page {
    min-height: calc(100vh - 160px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.submission-page-wrapper {
    background: #FFFFFF;
    padding: 40px 35px;
}
.submission-page-wrapper h1 {
    font-family: Arial, Helvetica, sans-serif;
    font-style: normal;
    font-weight: 800;
    font-size: 36px;
    line-height: 1;
    color: #111;
    text-align: center;
    padding: 0 0 20px;
}
.submission-page-wrapper p {
    font-family: Arial, Helvetica, sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    line-height: 1.5;
    text-align: center;
    color: #5F5F73;
    margin: 0;
    padding-bottom: 50px;
}
.submission-page-wrapper a {
    padding: 15px 20px;
    display: block;
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.21;
    color: #fff;
    background: #111;
    border-radius: 8px;
    max-height: 45px;
    max-width: 246px;
    text-align: center;
    text-transform: uppercase;
    width: 100%;
    margin: 0 auto;
    max-width: 300px;
}

/* ======================== Media Queries ========================== */

@media only screen and (max-width: 767px) {
.form-wrapper {
    margin: 0;
    padding: 20px 0 10px;
}

.section-container{
    width:100%; 
    max-width: 650px;
    padding-top: 0;
}
/* ======== thank you ============*/

.submission-page-wrapper h1 {
    font-size: 24px;
}

.submission-page-wrapper p {
    font-size: 16px;
}
}