.bold {
    font-weight: 700;
}

.italic {
    font-style: italic;
}

.underline {
    text-decoration: underline;
}

.text-red {
    color: #b42a2b !important;
}

.text-green {
    color: #2bb42a !important;
}

.hide {
    display: none !important;
}

.space-2 {
    margin: 1px !important;
}

.space-4 {
    margin: 2px !important;
}

.space-10 {
    margin: 5px !important;
}

.space-20 {
    margin: 10px !important;
}

.space-30 {
    margin: 15px !important;
}

.space-40 {
    margin: 20px !important;
}

.space-50 {
    margin: 25px !important;
}

.space-100 {
    margin: 50px !important;
}

#loaderDiv {
    margin: 30px 0 30px 18px;
    border: 16px solid #f4f4f4;
    border-radius: 50%;
    border-top: 16px solid #3f8ad2;
    width: 120px;
    height: 120px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

#verifyAddress {
    align-self: center;
}

#verifyingAddressText {
    margin-top: 10px;
    margin-bottom: 10px;
}

body {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-flex: 0 0 auto;
    flex: 0 0 auto;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-align-items: center;
    align-items: center;
    margin: 0;
    padding: 0;
}

    body * {
        font-family: Verdana,Arial,Helvetica,sans-serif;
        color: #262727;
        max-width: 100%;
        margin: 0;
        padding: 0;
    }

img {
    opacity: 1;
    transition: opacity 0.3s;
}

    img[data-src] {
        opacity: 0;
    }

a, a:hover, a:before, a:after {
    text-decoration: none;
}

hr {
    width: 90vw;
    max-width: 1000px;
    margin: 5px 0;
}

#siteBody {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-flex: 0 0 auto;
    flex: 0 0 auto;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    height: auto;
    width: 90%;
    padding: 30px;
}

.img-grid {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-flex: 0 0 auto;
    flex: 0 0 auto;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
    height: auto;
    width: 100%;
    align-self: center;
    padding: 25px;
}

.grid-row {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex: 0 0 auto;
    flex: 0 0 auto;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
    align-items: stretch;
    padding: 0;
}

.grid-item {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-flex: 0 0 auto;
    flex: 0 0 auto;
    -webkit-justify-content: space-around;
    justify-content: space-around;
    -webkit-align-items: center;
    align-items: center;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    border-radius: 10px;
    box-shadow: 3px 3px 10px #444;
    overflow: hidden;
    margin: 20px;
}

.lazy {
    display: none;
}

.photo-label {
    margin: 10px;
}

    .photo-label * {
        text-align: center;
        color: #7e7f7f;
    }

.photo-div img {
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.loader-div {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-flex: 0 0 auto;
    flex: 0 0 auto;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    align-self: center;
}

    .loader-div .loader-text {
        margin: 10px 0;
    }

    .loader-div .loader-spinner {
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -ms-border-radius: 50%;
        border-radius: 50%;
        height: 120px;
        width: 120px;
        border: 16px solid #f4f4f4;
        border-top: 16px solid #8ca6bf;
        -webkit-animation: spin 2s linear infinite;
        animation: spin 2s linear infinite;
        margin: 30px 0 30px 18px;
    }

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

#siteHeader {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex: 0 0 auto;
    flex: 0 0 auto;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    height: 100px;
    width: 100%;
    background-color: #4c6c89;
}

#siteTitle {
    text-align: center;
    font-size: 56px;
    font-weight: bolder;
    color: #fefefe;
    padding: 0 30px;
}

@media (max-width:1360px) {
    #siteTitle {
        font-size: 48px;
    }
}

@media (max-width:1200px) {
    #siteHeader {
        height: 150px;
    }

    #siteTitle {
        font-size: 48px;
        padding: 0 50px;
    }
}

@media (max-width:720px) {
    #siteHeader {
        height: 120px;
    }

    #siteTitle {
        font-size: 36px;
    }
}

@media (max-width:530px) {
    #siteHeader {
        height: 100px;
    }

    #siteTitle {
        font-size: 24px;
    }
}

@media (max-width:350px) {
    #siteHeader {
        height: 85px;
    }

    #siteTitle {
        font-size: 20px;
        padding: 0 20px;
    }
}

#siteFooter {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-flex: 0 0 auto;
    flex: 0 0 auto;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    -webkit-align-items: center;
    align-items: center;
    height: 80px;
    width: 100%;
    align-self: flex-end;
    padding: 50px 0;
}

    #siteFooter * {
        text-align: center;
        color: #5a80a3;
    }

    #siteFooter p {
        font-size: 14px;
        width: 80%;
    }

    #siteFooter hr {
        height: 1px;
        width: 85%;
        background-color: #a5bacd;
        border-style: none;
    }

@media (max-width:1420px) {
    #siteFooter {
        height: 90px;
    }
}

@media (max-width:740px) {
    #siteFooter {
        height: 100px;
    }
}

@media (max-width:515px) {
    #siteFooter {
        height: 110px;
    }
}

@media (max-width:475px) {
    #siteFooter {
        height: 125px;
    }
}

@media (max-width:400px) {
    #siteFooter {
        height: 140px;
    }
}

@media (max-width:350px) {
    #siteFooter {
        height: 150px;
    }
}

.button-div {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-flex: 0 0 auto;
    flex: 0 0 auto;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
}

.button {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-flex: 0 0 auto;
    flex: 0 0 auto;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    border-radius: 10px;
    height: 45px;
    width: auto;
    color: #fefefe;
    font-size: 22px;
    font-weight: bolder;
    background-color: #3e5870;
    border: none;
    box-shadow: 3px 3px 5px #262727;
    margin: 15px;
    padding: 0 20px;
}

    .button:hover {
        cursor: pointer;
        box-shadow: inset 0 2px 3px #304457,0 3px 9px #a6a6a6;
    }

.fake-button {
    height: 45px;
    width: auto;
}

.fake-button-wrapper {
    width: 100%;
}

.thank-you-text, .thank-you-sub-header, .thank-you-header {
    text-align: center;
    max-width: 950px;
}

.thank-you-sub-header {
    padding: 30px 0;
}

.uscpsc-div {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-flex: 0 0 auto;
    flex: 0 0 auto;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    max-width: 930px !important;
}

    .uscpsc-div * {
        font-family: "Times New Roman",Georgia,Serif !important;
        margin: 0;
    }

.uscpsc-header-div {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex: 0 0 auto;
    flex: 0 0 auto;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
    margin: 15px;
}

#uscpscLogo {
    padding: 0 50px 0 10px;
}

#uscpscHeader {
    font-size: 40px;
    padding: 0 50px 0 0;
}

.recall-summary-div, .recall-details-div {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-flex: 0 0 auto;
    flex: 0 0 auto;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    max-width: 100%;
}

    .recall-summary-div h3, .recall-details-div h3 {
        font-size: 22px;
        padding: 0 0 10px 0;
    }

    .recall-summary-div p, .recall-details-div p {
        padding: 5px 0;
    }

@media (max-width:575px) {
    .uscpsc-header-div {
        display: -webkit-flex;
        display: flex;
        -webkit-flex-direction: column;
        flex-direction: column;
        -webkit-flex: 0 0 auto;
        flex: 0 0 auto;
        -webkit-justify-content: space-between;
        justify-content: space-between;
        -webkit-align-items: center;
        align-items: center;
    }

    #uscpscLogo {
        padding: 0;
    }

    #uscpscHeader {
        text-align: center;
        font-size: 10vw;
        padding: 0;
    }

    .uscpsc-header-div .img-grid img {
        height: 83.72vw;
        width: 90vw !important;
    }
}

.form {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-flex: 0 0 auto;
    flex: 0 0 auto;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    max-width: 930px;
}

.form-group {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-flex: 0 0 auto;
    flex: 0 0 auto;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    height: auto;
    width: auto;
    padding-left: 50px;
}

.form-step {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-flex: 0 0 auto;
    flex: 0 0 auto;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    height: auto;
    width: 90%;
}

.form-item-div {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex: 0 0 auto;
    flex: 0 0 auto;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    height: 60px;
    width: 500px;
    margin: 10px 0;
}

.form-item-left {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex: 0 0 auto;
    flex: 0 0 auto;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    -webkit-align-items: center;
    align-items: center;
    height: 30px;
    width: 225px;
    text-align: right;
}

.form-item-right {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-flex: 0 0 auto;
    flex: 0 0 auto;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    height: 60px;
    width: 500px;
}

.form-item-top {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex: 0 0 auto;
    flex: 0 0 auto;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
    height: 30px;
    width: 270px;
}

.form-item-bottom {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex: 0 0 auto;
    flex: 0 0 auto;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-align-items: center;
    align-items: center;
    height: 30px;
    width: 270px;
}

.form-item-text-field, .form-item-combo-field {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    border-radius: 5px;
    display: inline;
    border: 1px solid #c3c4c4;
    box-shadow: inset 0 2px 3px #cdcdcd;
    padding: 2px;
}

.form-item-label {
    height: 22px;
    width: 225px;
    padding: 0 25px 0 0;
}

.form-item-text-field {
    height: 24px;
    width: 220px;
}

.form-item-combo-field {
    height: 30px;
    width: 225px;
}

.form-item-checkbox, .form-item-asterisk {
    height: 20px;
    width: 20px;
}

.form-item-error-message {
    text-align: left;
}

.checkbox-form-item-div {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-flex: 0 0 auto;
    flex: 0 0 auto;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    height: auto;
    width: 650px;
    margin: 10px 0;
}

    .checkbox-form-item-div .form-item-top {
        display: -webkit-flex;
        display: flex;
        -webkit-flex-direction: row;
        flex-direction: row;
        -webkit-flex: 0 0 auto;
        flex: 0 0 auto;
        -webkit-justify-content: center;
        justify-content: center;
        -webkit-align-items: center;
        align-items: center;
        height: auto;
        width: 600px;
    }

        .checkbox-form-item-div .form-item-top .form-item-label {
            height: auto;
            width: 450px;
            padding: 5px 10px 0 20px !important;
        }

    .checkbox-form-item-div .form-item-bottom {
        padding: 5px 0 5px 80px !important;
    }

.checkbox-hr {
    width: 100%;
}

@media (max-width:900px) {
    .checkbox-form-item-div {
        height: auto;
        width: 550px;
    }

        .checkbox-form-item-div .form-item-top {
            height: auto;
            width: 525px;
        }

            .checkbox-form-item-div .form-item-top .form-item-label {
                height: auto;
                width: 450px;
            }

        .checkbox-form-item-div .form-item-bottom {
            padding: 5px 0 5px 45px !important;
        }
}

@media (max-width:750px) {
    .form-item-div {
        display: -webkit-flex;
        display: flex;
        -webkit-flex-direction: column;
        flex-direction: column;
        -webkit-flex: 0 0 auto;
        flex: 0 0 auto;
        -webkit-justify-content: flex-start;
        justify-content: flex-start;
        -webkit-align-items: flex-start;
        align-items: flex-start;
        height: 100px;
        width: 270px;
    }

        .form-item-div .form-item-left {
            display: -webkit-flex;
            display: flex;
            -webkit-flex-direction: row;
            flex-direction: row;
            -webkit-flex: 0 0 auto;
            flex: 0 0 auto;
            -webkit-justify-content: flex-start;
            justify-content: flex-start;
            -webkit-align-items: center;
            align-items: center;
            text-align: left;
        }

    #howDidYouHearDiv {
        height: 120px !important;
        width: 270px;
    }

        #howDidYouHearDiv .form-item-left {
            height: 52px;
            width: 225px;
        }

            #howDidYouHearDiv .form-item-left #howDidYouHearLabel {
                height: 44px !important;
                width: 225px;
            }

    .checkbox-form-item-div .form-item-bottom {
        padding: 5px 0 5px 30px !important;
    }
}

@media (max-width:500px) {
    .step-header {
        display: -webkit-flex;
        display: flex;
        -webkit-flex-direction: column;
        flex-direction: column;
        -webkit-flex: 0 0 auto;
        flex: 0 0 auto;
        -webkit-justify-content: center;
        justify-content: center;
        -webkit-align-items: flex-start;
        align-items: flex-start;
    }

        .step-header h4 {
            padding: 10px 0;
        }
}

@media (max-width:400px) {
    .form-group {
        padding-left: 10px !important;
    }
}

#pleaseSelectHeader {
    text-align: center;
}

#continueDiv {
    align-self: center;
}

#select .form-group .form-item-div .form-item-left {
    width: 170px;
}

#translateButton {
    height: 45px;
    width: 270px;
    text-align: center;
}

#translateDiv {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex: 0 0 auto;
    flex: 0 0 auto;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    -webkit-align-items: center;
    align-items: center;
    height: 60px;
    width: 100%;
    margin: 0 0 25px 0;
}

.index-header-div {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-flex: 0 0 auto;
    flex: 0 0 auto;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    max-width: 930px;
}

    .index-header-div * {
        text-align: center;
        padding: 10px;
    }

    .index-header-div #isiSubHeader {
        color: #4c6c89;
    }

#indexPhotoDiv {
    height: auto;
    width: 100%;
}

    #indexPhotoDiv .grid-row {
        height: auto;
        width: 100%;
    }

.grid-item {
    height: 350px;
    width: 400px;
}

.photo-div img {
    height: 250px;
    width: auto;
}

.index-footer-div {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-flex: 0 0 auto;
    flex: 0 0 auto;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    max-width: 930px !important;
}

    .index-footer-div * {
        text-align: center;
    }

#indexForm .form-group .form-item-div .form-item-left .form-item-label {
    text-align: right;
}

.index-footer-text {
    padding: 30px 0;
}

    .index-footer-text h2 {
        color: #4c6c89;
        margin: 15px;
    }

.recaptcha-div {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-flex: 0 0 auto;
    flex: 0 0 auto;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    width: 100%;
    margin: 25px 5px;
}

#regButton {
    height: 45px;
    width: 130px;
}

#noteDiv {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-flex: 0 0 auto;
    flex: 0 0 auto;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-align-items: center;
    align-items: center;
    height: auto;
}

#indexForm .form-group {
    padding-left: 0 !important;
}

@media (max-width:980px) {
    .index-footer-div {
        width: 90% !important;
    }

    .grid-row {
        display: -webkit-flex;
        display: flex;
        -webkit-flex-direction: column;
        flex-direction: column;
        -webkit-flex: 0 0 auto;
        flex: 0 0 auto;
        -webkit-justify-content: space-between;
        justify-content: space-between;
        -webkit-align-items: center;
        align-items: center;
        padding: 0;
    }
}

@media (max-width:750px) {
    #indexForm .form-group .form-item-div .form-item-left .form-item-label {
        text-align: left;
    }
}

@media (max-width:700px) {
    #isiHeader {
        font-size: 32px;
        padding: 5px;
    }

    #isiSubHeader {
        font-size: 18px;
        padding: 5px;
    }
}

@media (max-width:580px) {
    .img-grid {
        height: auto;
        width: 80vw !important;
    }

    .grid-row {
        height: auto;
        width: 100%;
    }

    .grid-item {
        height: 60vw;
        width: 75vw;
    }

    .photo-label {
        margin: 10px;
    }

        .photo-label * {
            font-size: 12px;
            margin: 0;
        }

    .photo-div img {
        height: auto;
        width: 65vw;
        margin: 5px;
    }
}

@media (max-width:530px) {
    #isiHeader {
        font-size: 26px;
    }

    #isiSubHeader {
        font-size: 16px;
    }
}

@media (max-width:420px) {
    .index-footer-div {
        width: 100% !important;
    }
}

#invalidAddressDiv {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-flex: 0 0 auto;
    flex: 0 0 auto;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    text-align: center;
    max-width: 1000px;
    padding: 0 0 50px 0;
}

    #invalidAddressDiv h2 {
        max-width: 90%;
        margin: 0;
        padding: 10px 0;
    }

    #invalidAddressDiv hr {
        max-width: 100%;
    }

#registrationHeader {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-flex: 0 0 auto;
    flex: 0 0 auto;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
}

#instructionsHeader {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-flex: 0 0 auto;
    flex: 0 0 auto;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    max-width: 900px !important;
    padding: 10px;
}

    #instructionsHeader h3 {
        text-align: center;
        padding: 10px;
    }

#detailsHeader {
    padding: 10px 0;
}

.important-div {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-flex: 0 0 auto;
    flex: 0 0 auto;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
}

#regsitrationForm {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-flex: 0 0 auto;
    flex: 0 0 auto;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-align-items: center;
    align-items: center;
    height: auto;
    width: 900px;
}

.step-header {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex: 0 0 auto;
    flex: 0 0 auto;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-align-items: center;
    align-items: center;
    align-self: flex-start;
}

    .step-header h2 {
        margin: 0 30px 0 0;
        color: #4c6c89;
    }

    .step-header h4 {
        margin: 1px 0 0 0;
    }

#registrationForm ul {
    padding: 0 0 0 35px;
}

#examplePhotoDiv {
    height: 350px;
    width: 900px;
}

    #examplePhotoDiv .grid-row {
        height: 350px;
        width: 100%;
    }

#photoFormGroup {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex: 0 0 auto;
    flex: 0 0 auto;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    height: 225px;
    width: 750px;
    max-width: 800px;
    margin: 0 0 0 50px;
    padding: 0 !important;
}

    #photoFormGroup .photo-upload-div {
        display: -webkit-flex;
        display: flex;
        -webkit-flex-direction: column;
        flex-direction: column;
        -webkit-flex: 0 0 auto;
        flex: 0 0 auto;
        -webkit-justify-content: flex-start;
        justify-content: flex-start;
        -webkit-align-items: center;
        align-items: center;
        height: 225px;
        width: 310px !important;
    }

        #photoFormGroup .photo-upload-div .photo-upload-label-div {
            display: -webkit-flex;
            display: flex;
            -webkit-flex-direction: column;
            flex-direction: column;
            -webkit-flex: 0 0 auto;
            flex: 0 0 auto;
            -webkit-justify-content: space-between;
            justify-content: space-between;
            -webkit-align-items: center;
            align-items: center;
            height: 60px;
            width: 270px;
            margin: 10px 20px 20px 20px;
        }

            #photoFormGroup .photo-upload-div .photo-upload-label-div .photo-upload-label {
                height: 100%;
                width: 100%;
                text-align: center;
            }

        #photoFormGroup .photo-upload-div .photo-upload-button {
            height: 45px;
            width: 235px;
            margin: 0 0 20px 0;
        }

            #photoFormGroup .photo-upload-div .photo-upload-button .button {
                margin: 0 !important;
            }

        #photoFormGroup .photo-upload-div .photo-upload-field {
            height: 65px;
            width: 265px;
            margin: 0 0 0 40px;
        }

            #photoFormGroup .photo-upload-div .photo-upload-field .form-item-top {
                display: -webkit-flex;
                display: flex;
                -webkit-flex-direction: row;
                flex-direction: row;
                -webkit-flex: 0 0 auto;
                flex: 0 0 auto;
                -webkit-justify-content: space-between;
                justify-content: space-between;
                -webkit-align-items: center;
                align-items: center;
                height: 30px;
                width: 265px;
                margin: 0 0 5px 0;
            }

            #photoFormGroup .photo-upload-div .photo-upload-field .form-item-bottom {
                display: -webkit-flex;
                display: flex;
                -webkit-flex-direction: row;
                flex-direction: row;
                -webkit-flex: 0 0 auto;
                flex: 0 0 auto;
                -webkit-justify-content: flex-start;
                justify-content: flex-start;
                -webkit-align-items: center;
                align-items: center;
                height: 30px;
                width: 225px;
            }

#photoFormatError {
    max-width: 750px;
    text-align: center;
    margin: 0 0 0 40px;
}

.step-text {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-flex: 0 0 auto;
    flex: 0 0 auto;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    max-width: 100%;
}

    .step-text p {
        max-width: 90%;
        padding: 10px;
        text-align: center;
    }

#submitForm {
    height: 45px;
    width: 255px;
}

#bypassAddressVerificationDiv {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-flex: 0 0 auto;
    flex: 0 0 auto;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    height: auto !important;
    width: 650px;
}

    #bypassAddressVerificationDiv .checkbox-form-item-div {
        display: -webkit-flex;
        display: flex;
        -webkit-flex-direction: column;
        flex-direction: column;
        -webkit-flex: 0 0 auto;
        flex: 0 0 auto;
        -webkit-justify-content: flex-start;
        justify-content: flex-start;
        -webkit-align-items: flex-start;
        align-items: flex-start;
        height: auto;
        width: 650px;
        margin: 10px 0;
    }

        #bypassAddressVerificationDiv .checkbox-form-item-div .form-item-top {
            display: -webkit-flex;
            display: flex;
            -webkit-flex-direction: row;
            flex-direction: row;
            -webkit-flex: 0 0 auto;
            flex: 0 0 auto;
            -webkit-justify-content: center;
            justify-content: center;
            -webkit-align-items: center;
            align-items: center;
            height: auto;
            width: 600px;
        }

            #bypassAddressVerificationDiv .checkbox-form-item-div .form-item-top .form-item-label {
                height: auto;
                width: 450px;
                padding: 5px 10px 0 20px !important;
            }

        #bypassAddressVerificationDiv .checkbox-form-item-div .form-item-bottom {
            padding: 5px 0 5px 80px !important;
        }

#step4 .button-div {
    align-self: center;
}

#noteDiv, #validateButtonDiv, #invalidFieldMessage, #notAffectedMessage {
    margin-bottom: 20px;
}

#validText {
    max-width: 500px;
}

@media (max-width:980px) {
    #examplePhotoDiv {
        height: 800px;
        width: 450px;
    }

        #examplePhotoDiv .grid-row {
            height: 100% !important;
            width: 100% !important;
        }

    #registrationHeader {
        width: 100% !important;
    }

    #instructionsHeader {
        width: 95% !important;
    }
}

@media (max-width:900px) {
    #photoFormGroup {
        display: -webkit-flex;
        display: flex;
        -webkit-flex-direction: column;
        flex-direction: column;
        -webkit-flex: 0 0 auto;
        flex: 0 0 auto;
        -webkit-justify-content: space-between;
        justify-content: space-between;
        -webkit-align-items: center;
        align-items: center;
        height: 500px;
        width: 310px;
    }

    #bypassAddressVerificationDiv {
        height: auto !important;
        width: 550px;
    }

        #bypassAddressVerificationDiv #innerBypassAddressVerificationDiv {
            height: auto;
            width: 500px;
        }

            #bypassAddressVerificationDiv #innerBypassAddressVerificationDiv .form-item-top {
                height: auto;
                width: 475px;
            }

                #bypassAddressVerificationDiv #innerBypassAddressVerificationDiv .form-item-top .form-item-label {
                    height: auto;
                    width: 400px;
                }

            #bypassAddressVerificationDiv #innerBypassAddressVerificationDiv .form-item-bottom {
                padding: 5px 0 5px 45px !important;
            }
}

@media (max-width:850px) {
    #registrationForm {
        width: 90%;
        padding: 0 0 0 20px;
    }

        #registrationForm .form-step {
            width: 95%;
        }
}

@media (max-width:750px) {
    #step3 {
        height: 1950px !important;
        width: 90%;
    }

        #step3 .form-group {
            height: 1850px !important;
            width: 320px;
        }

    #bypassAddressVerification {
        height: auto;
        width: 90%;
    }
}

@media (max-width:580px) {
    #examplePhotoDiv {
        height: 140vw;
        width: 80vw;
    }

        #examplePhotoDiv .grid-row {
            height: 100%;
            width: 100%;
        }

            #examplePhotoDiv .grid-row .grid-item {
                height: 60vw;
                width: 75vw;
            }

                #examplePhotoDiv .grid-row .grid-item .photo-label {
                    margin: 10px;
                }

                    #examplePhotoDiv .grid-row .grid-item .photo-label * {
                        font-size: 14px;
                    }

                #examplePhotoDiv .grid-row .grid-item .photo-div img {
                    height: auto;
                    width: 75vw;
                    margin: 0;
                }
}

@media (max-width:500px) {
    #photoFormGroup {
        margin-left: 0 !important;
    }
}

.indent {
    margin-left: 50px;
}

table {
    text-align: center;
}

td, th {
    border: 1px solid #262727;
    padding: 5px;
}

#healthCanadaLink {
    cursor: pointer;
    color: #4c6c89;
}

.form-item-radio-button {
    border: 4px solid #c3c4c4 !important;
    background-color: #eaebeb !important;
    width: 20px;
    height: 20px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
}

    .form-item-radio-button:hover, .radio-button-div:hover {
        cursor: pointer;
    }

.link:hover {
    cursor: pointer;
}

#submitDiv {
    align-self: center;
}
