<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
    margin: 0%;
}

.dropdowncs {
    width: 100%;
    height: 27px;
    color: black;
    font-size: 12px;
    border-width: 1px;
    font-family: Arial;
}

video::-webkit-media-controls-play-button {
    display: none;
}

video::-webkit-media-controls-timeline {
    display: block;
}

@media (min-width: 10px) and (max-width: 499px) {
    .HeaderBackround {
        display: flex;
        flex-direction: row;
        width: 93%;
        margin: auto;
        margin-top: 2%;
    }

    .HeaderText {
        width: 100%;
        text-align: left;
        align-content: space-around;
    }

        .HeaderText &gt; a {
            color: #452f6a;
            font-size: 13px;
            font-family: arial;
            text-decoration: none;
        }

    .HeaderButton {
        width: 100%;
        text-align: right;
    }

        .HeaderButton &gt; input[type="submit"] {
            background: #452f6a;
            color: #ffffff;
            font-family: Arial;
            font-size: 13px;
            height: 30px;
            width: 64px;
            padding: 5px 7px;
            border-radius: 7px;
            border: hidden;
        }

            .HeaderButton &gt; input[type="submit"]:hover {
                opacity: 0.7;
            }

        .HeaderButton &gt; a {
            color: blue;
            font-size: 14px;
            font-family: arial;
            text-decoration: underline;
        }

    .BackgroundImage {
        width: 100%;
        margin: auto;
        grid-area: 1 / 1 / 1 / 2;
    }

        /*.BackgroundImage &gt; img {
            width: 100%;
            height: 587px;
            margin-top: 2%;
            opacity: 0.6;
            object-fit: cover;
        }*/

        .BackgroundImage &gt; img {
            width: 100%;
            height: 518px;
            margin-top: 2%;
            opacity: 0.6;
            object-fit: cover;
            object-position: 41%;
        }

    .BackgroundImageSub {
        width: 39%;
        margin: auto;
        margin-left: 48%;
        margin-right: 13%;
        margin-top: -20%;
    }

        .BackgroundImageSub &gt; img {
            width: 100%;
            height: 100%;
            margin-top: 3%;
            clip-path: border-box;
        }

    .BackgroundImageText {
        width: 80%;
        margin: auto;
        margin-left: 8%;
        margin-top: 22%;
        text-align: center;
        position: absolute;
    }

        .BackgroundImageText &gt; span {
            font-family: Arial;
            font-size: 19px;
        }

    .BackgroundColor {
        --grid-gutter: calc(var(--sqs-site-gutter, 4vw) - 11.0px);
        --cell-max-width: calc( ( var(--sqs-site-max-width, 1500px) - (11.0px * (24 - 1)) ) / 24 );
        --inset-padding: 0vw;
        --row-height-scaling-factor: 0.0215;
        --container-width: min(var(--sqs-site-max-width, 1500px), calc(100vw - var(--sqs-site-gutter, 4vw) * 2 - var(--inset-padding) ));
        grid-template-rows: repeat(14, minmax(calc(var(--container-width)* var(--row-height-scaling-factor)), auto));
        grid-template-columns: minmax(var(--grid-gutter), 1fr) repeat(24, minmax(0, var(--cell-max-width))) minmax(var(--grid-gutter), 1fr);
        display: grid;
        grid-row-gap: 11px;
        grid-column-gap: 11px;
        background: #452f6a;
    }

    .BackgroundColorHeader {
        grid-area: 2 / 3 / 4 / 25;
        text-align: center;
    }

        .BackgroundColorHeader &gt; span {
            font-family: Arial;
            font-size: 21px;
            color: #ffffff;
        }

    .BackgroundColorHeaderSub {
        grid-area: 4 / 2 / 4 / 26;
        text-align: center;
    }

        .BackgroundColorHeaderSub &gt; span {
            font-family: Arial;
            font-size: 16px;
            color: #ffffff;
        }

    .BackgroundColorVideo {
        grid-area: 5 / 2 / 15 / 26;
    }

        .BackgroundColorVideo &gt; video {
            width: 100%;
            height: 100%;
            background-color: currentcolor;
        }

    .BackgroundColorFooter {
        grid-area: 16 / 5 / 24 / 23;
        text-align: center;
    }

        .BackgroundColorFooter &gt; span {
            font-family: Arial;
            font-size: 21px;
            color: #b9b9b9;
            font-style: italic;
        }

    .video-container {
        display: grid;
        position: relative;
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }

    #videoHolder {
        width: 100%;
        height: auto;
    }

    .play-button {
        position: absolute;
        top: 42%;
        left: 50%;
        transform: translate(-50%, -50%);
        background-color: rgba(0, 0, 0, 0.4);
        border-radius: 50%;
        width: 60px;
        height: 60px;
        display: inline-block;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 10;
    }

        .play-button:hover {
            background-color: rgba(0, 0, 0, 0.7);
        }

        .play-button:before {
            content: "";
            border: solid white;
            border-width: 5px 5px 0px 0px;
            display: inline-block;
            padding: 7px;
            transform: rotate(45deg);
            margin-left: 17px;
            margin-top: 20px;
        }

        .play-button.hide {
            display: none;
        }

    #DivPauseButton {
        position: absolute;
        top: 42%;
        left: 50%;
        transform: translate(-50%, -50%);
        background-color: rgba(0, 0, 0, 0.4);
        border-radius: 50%;
        width: 60px;
        height: 60px;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 10;
    }

        #DivPauseButton:hover {
            background-color: rgba(0, 0, 0, 0.7);
        }

        #DivPauseButton.hide {
            display: none
        }

    .pause-button {
        height: 26px;
        box-sizing: border-box;
        display: block;
        color: white;
        width: 20px;
        border-left: 6px solid;
        border-right: 6px solid;
        margin: auto;
        margin-top: 28%;
    }

        .pause-button.hide {
            display: none;
        }

    .DivEligibility {
        --grid-gutter: calc(var(--sqs-site-gutter, 4vw) - 11.0px);
        --cell-max-width: calc( ( var(--sqs-site-max-width, 1500px) - (11.0px * (24 - 1)) ) / 24 );
        --inset-padding: 0vw;
        --row-height-scaling-factor: 0.0215;
        --container-width: min(var(--sqs-site-max-width, 1500px), calc(100vw - var(--sqs-site-gutter, 4vw) * 2 - var(--inset-padding) ));
        grid-template-rows: repeat(17, minmax(calc(var(--container-width)* var(--row-height-scaling-factor)), auto));
        grid-template-columns: minmax(var(--grid-gutter), 1fr) repeat(24, minmax(0, var(--cell-max-width))) minmax(var(--grid-gutter), 1fr);
        display: grid;
        grid-row-gap: 11px;
        grid-column-gap: 11px;
    }

    .EligibilityHeader {
        grid-area: 1/3/3/25;
        text-align: center;
    }

    .EligibilitySpan {
        margin-top: 15px;
    }

        .EligibilitySpan &gt; span {
            font-family: Arial;
            font-size: 17px;
        }

    .EligibilityLearnMore {
        margin-top: 15px;
    }

        .EligibilityLearnMore &gt; span {
            font-family: Arial;
            font-size: 15px;
        }

    .EligibilityButton {
        margin-top: 21px;
    }

        .EligibilityButton &gt; input[type="submit"] {
            background: #452f6a;
            color: #ffffff;
            font-family: Arial;
            font-size: 15px;
            height: 33px;
            width: 150px;
            padding: 6px 12px;
            border-radius: 7px;
            border: hidden;
        }

            .EligibilityButton &gt; input[type="submit"]:hover {
                opacity: 0.7;
            }

    .ChronicHealth {
        grid-area: 3/2/10/26;
        background-color: #fba115e8;
        border-radius: 18px;
    }

    .ChronicHealthSub {
        width: 88%;
        padding: 6%;
    }

    .ChronicHealthErrorText {
        text-align: center;
        margin-bottom: 4%;
    }

        .ChronicHealthErrorText &gt; span {
            color: White;
            background: Red;
            font-size: 17px;
            font-family: Arial;
        }

    .ChronicHealthHeaderText &gt; span {
        font-family: Arial;
        font-size: 16px;
    }

    .ChronicHealthHeaderTextSub {
        margin-top: 2%;
    }

        .ChronicHealthHeaderTextSub &gt; span {
            font-family: Arial;
            font-size: 12px;
            color: #4b320d;
        }

    .ChronicHealthRadioButton {
        margin-top: 2%;
        display: inline-flex;
    }

        .ChronicHealthRadioButton &gt; label {
            font-family: Arial;
            font-size: 12px;
            color: black;
            padding-top: 6px
        }

        .ChronicHealthRadioButton &gt; input[type="radio"] {
            font-family: Arial;
            font-size: 12px;
            color: black;
            width: 18px;
            height: 18px;
        }

    span.SpanRequired {
        font-family: Arial;
        font-size: 12px;
        color: #4b320d;
    }

    .PhysicianHeader {
        width: 100%;
        margin-top: 4%;
    }

        .PhysicianHeader &gt; span {
            font-family: Arial;
            font-size: 17px;
        }

            .PhysicianHeader &gt; span.SpanRequired {
                font-family: Arial;
                font-size: 12px;
                color: #4b320d;
            }

    .PhysicianHeaderSub {
        margin-top: 1%;
        width: 100%;
    }

        .PhysicianHeaderSub &gt; select {
            font-family: Arial;
            font-size: 12px;
            width: 99%;
            height: 27px;
        }

    .NameHeader {
        width: 100%;
        margin-top: 4%;
    }

        .NameHeader &gt; span {
            font-family: Arial;
            font-size: 17px;
        }

            .NameHeader &gt; span.SpanRequired {
                font-family: Arial;
                font-size: 12px;
                color: #4b320d;
            }

    .NameHeaderTextBox {
        display: flex;
        width: 96%;
        flex-direction: row;
        place-content: space-between;
    }

    .NameHeaderSub1 {
        margin-top: 1%;
        width: 45%;
        display: flex;
        flex-direction: column;
    }

        .NameHeaderSub1 &gt; span {
            font-family: Arial;
            font-size: 11px;
            padding-bottom: 2%;
        }

        .NameHeaderSub1 &gt; input[type="text"] {
            font-family: Arial;
            font-size: 14px;
            width: 95%;
            height: 27px;
            padding: 0px 6px;
        }

    .NameHeaderSub2 {
        margin-top: 1%;
        width: 45%;
        display: flex;
        flex-direction: column;
    }

        .NameHeaderSub2 &gt; span {
            font-family: Arial;
            font-size: 11px;
            padding-bottom: 2%;
        }

        .NameHeaderSub2 &gt; input[type="text"] {
            font-family: Arial;
            font-size: 14px;
            width: 95%;
            height: 27px;
            padding: 0px 6px;
        }

    .PhoneHeader {
        width: 100%;
        margin-top: 4%;
    }

        .PhoneHeader &gt; span {
            font-family: Arial;
            font-size: 17px;
        }

            .PhoneHeader &gt; span.SpanRequired {
                font-family: Arial;
                font-size: 12px;
                color: #4b320d;
            }

    .PhoneHeaderSub {
        margin-top: 1%;
        width: 100%;
    }

        .PhoneHeaderSub &gt; input[type="text"] {
            font-family: Arial;
            font-size: 14px;
            width: 94%;
            height: 27px;
            padding: 0px 6px;
        }

    .PhysicianNameHeader {
        width: 100%;
        margin-top: 4%;
    }

        .PhysicianNameHeader &gt; span {
            font-family: Arial;
            font-size: 17px;
        }

            .PhysicianNameHeader &gt; span.SpanRequired {
                font-family: Arial;
                font-size: 12px;
                color: #4b320d;
            }

    .PhysicianNameHeaderSub {
        margin-top: 1%;
        width: 100%;
    }

        .PhysicianNameHeaderSub &gt; input[type="text"] {
            font-family: Arial;
            font-size: 14px;
            width: 94%;
            height: 27px;
            padding: 0px 6px;
        }

    .PhysicianCityHeader {
        width: 100%;
        margin-top: 4%;
    }

        .PhysicianCityHeader &gt; span {
            font-family: Arial;
            font-size: 17px;
        }

            .PhysicianCityHeader &gt; span.SpanRequired {
                font-family: Arial;
                font-size: 12px;
                color: #4b320d;
            }

    .PhysicianCityHeaderSub {
        margin-top: 1%;
        width: 100%;
    }

        .PhysicianCityHeaderSub &gt; input[type="text"] {
            font-family: Arial;
            font-size: 14px;
            width: 94%;
            height: 27px;
            padding: 0px 6px;
        }

    .BirthdateHeader {
        width: 100%;
        margin-top: 4%;
    }

        .BirthdateHeader &gt; span {
            font-family: Arial;
            font-size: 17px;
        }

            .BirthdateHeader &gt; span.SpanRequired {
                font-family: Arial;
                font-size: 12px;
                color: #4b320d;
            }

    .BirthdateHeaderSub {
        margin-top: 1%;
        width: 100%;
    }

        .BirthdateHeaderSub &gt; input[type="text"] {
            font-family: Arial;
            font-size: 14px;
            width: 30%;
            height: 27px;
            padding: 0px 6px;
        }

    .FooterButton {
        width: 37%;
        margin: auto;
        margin-top: 5%;
    }

    #btnSubmit {
        background: #000000;
        color: #ffffff;
        font-family: Arial;
        font-size: 15px;
        height: 35px;
        width: 90px;
        padding: 6px 12px;
        border-radius: 7px;
        border: hidden;
    }

        #btnSubmit:hover {
            opacity: 0.7;
        }

    .FooterNoteText {
        width: 91%;
        margin: auto;
        margin-top: 5%;
        text-align: center;
    }

        .FooterNoteText &gt; span {
            font-family: Arial;
            font-size: 11px;
            line-height: 15px;
        }

    .EligibilityFooter {
        grid-area: 10/3/14/25;
    }

    .PhysicianFooter {
        text-align: center;
    }

        .PhysicianFooter &gt; span {
            font-family: Arial;
            font-size: 17px;
        }

    .PhysicianFooterPhone {
        width: 91%;
        margin: auto;
        margin-top: 5%;
        text-align: center;
    }

        .PhysicianFooterPhone &gt; span {
            font-family: Arial;
            font-size: 17px;
        }

        .PhysicianFooterPhone &gt; a {
            color: blue;
            font-size: 17px;
            font-family: arial;
            text-decoration: underline;
        }

    .PhysicianFooterClick {
        width: 91%;
        margin: auto;
        margin-top: 5%;
        text-align: center;
    }

        .PhysicianFooterClick &gt; a {
            font-family: Arial;
            font-size: 17px;
            text-decoration-line: underline;
            color: #000000;
        }

    .PhysicianFooterMid {
        width: 91%;
        margin: auto;
        margin-top: 5%;
        text-align: center;
    }

        .PhysicianFooterMid &gt; span {
            font-family: Arial;
            font-size: 17px;
        }

    .PhysicianWorkingTime {
        width: 91%;
        margin: auto;
        margin-top: 2%;
        text-align: center;
    }

        .PhysicianWorkingTime &gt; span {
            font-family: Arial;
            font-size: 11px;
        }

    .PhysicianLearnMore {
        width: 91%;
        margin: auto;
        margin-top: 5%;
        text-align: center;
    }

        .PhysicianLearnMore &gt; span {
            font-family: Arial;
            font-size: 15px;
        }

    .PhysicianButtonLearnMore {
        width: 91%;
        margin: auto;
        margin-top: 5%;
        text-align: center;
    }

        .PhysicianButtonLearnMore &gt; input[type="submit"] {
            background: #452f6a;
            color: #ffffff;
            font-family: Arial;
            font-size: 13px;
            height: 31px;
            width: 100px;
            padding: 6px 12px;
            border-radius: 7px;
            border: hidden;
        }

            .PhysicianButtonLearnMore &gt; input[type="submit"]:hover {
                opacity: 0.7;
            }

    .PhysicianFooterNotes {
        grid-area: 16/3/16/26;
    }

    .PhysicianFooterNotesSub {
        margin-bottom: 5%;
        text-align: center;
        line-height: 1.3;
    }

        .PhysicianFooterNotesSub &gt; span {
            font-family: Arial;
            font-size: 11px;
            color: black;
        }

    .FooterBackround {
        width: 100%;
        display: grid;
    }

    .FooterBackroundColor {
        background: #452f6a;
        height: 60px;
        grid-area: 1/1/1/27;
    }

    .FooterText {
        text-align: center;
        margin: 13px auto;
        width: 100%;
    }

        .FooterText &gt; span {
            color: white;
            font-size: 11px;
            font-family: arial;
        }

    .FooterTextSub {
        text-align: left;
        margin: 5px auto;
        width: 90%;
    }

        .FooterTextSub &gt; a {
            color: #b9b9b9;
            font-size: 13px;
            font-family: arial;
        }
}

@media (min-width: 500px) and (max-width: 899px) {
    .HeaderBackround {
        display: flex;
        flex-direction: row;
        width: 93%;
        margin: auto;
        margin-top: 2%;
    }

    .HeaderText {
        width: 100%;
        text-align: left;
        align-content: space-around;
    }

        .HeaderText &gt; a {
            color: #452f6a;
            font-size: 15px;
            font-family: arial;
            text-decoration: none;
        }

    .HeaderButton {
        width: 100%;
        text-align: right;
    }

        .HeaderButton &gt; input[type="submit"] {
            background: #452f6a;
            color: #ffffff;
            font-family: Arial;
            font-size: 15px;
            height: 33px;
            width: 90px;
            padding: 6px 12px;
            border-radius: 7px;
            border: hidden;
        }

            .HeaderButton &gt; input[type="submit"]:hover {
                opacity: 0.7;
            }

        .HeaderButton &gt; a {
            color: blue;
            font-size: 17px;
            font-family: arial;
            text-decoration: underline;
        }

    .BackgroundImage {
        width: 100%;
        margin: auto;
        grid-area: 1 / 1 / 1 / 2;
    }

        /*.BackgroundImage &gt; img {
            width: 100%;
            height: 587px;
            margin-top: 2%;
            opacity: 0.6;
            object-fit: cover;
        }*/

        .BackgroundImage &gt; img {
            width: 100%;
            height: 682px;
            margin-top: 2%;
            opacity: 0.6;
            object-fit: cover;
            object-position: 32%;
        }

    .BackgroundImageSub {
        width: 39%;
        margin: auto;
        margin-left: 48%;
        margin-right: 13%;
        margin-top: -20%;
    }

        .BackgroundImageSub &gt; img {
            width: 100%;
            height: 100%;
            margin-top: 3%;
            clip-path: border-box;
        }

    .BackgroundImageText {
        width: 80%;
        margin: auto;
        margin-left: 8%;
        margin-top: 14%;
        text-align: center;
        position: absolute;
    }

        .BackgroundImageText &gt; span {
            font-family: Arial;
            font-size: 19px;
        }

    .BackgroundColor {
        --grid-gutter: calc(var(--sqs-site-gutter, 4vw) - 11.0px);
        --cell-max-width: calc( ( var(--sqs-site-max-width, 1500px) - (11.0px * (24 - 1)) ) / 24 );
        --inset-padding: 0vw;
        --row-height-scaling-factor: 0.0215;
        --container-width: min(var(--sqs-site-max-width, 1500px), calc(100vw - var(--sqs-site-gutter, 4vw) * 2 - var(--inset-padding) ));
        grid-template-rows: repeat(14, minmax(calc(var(--container-width)* var(--row-height-scaling-factor)), auto));
        grid-template-columns: minmax(var(--grid-gutter), 1fr) repeat(24, minmax(0, var(--cell-max-width))) minmax(var(--grid-gutter), 1fr);
        display: grid;
        grid-row-gap: 11px;
        grid-column-gap: 11px;
        background: #452f6a;
    }

    .BackgroundColorHeader {
        grid-area: 2 / 3 / 4 / 25;
        text-align: center;
    }

        .BackgroundColorHeader &gt; span {
            font-family: Arial;
            font-size: 24px;
            color: #ffffff;
        }

    .BackgroundColorHeaderSub {
        grid-area: 4 / 5 / 4 / 23;
        text-align: center;
    }

        .BackgroundColorHeaderSub &gt; span {
            font-family: Arial;
            font-size: 16px;
            color: #ffffff;
        }

    .BackgroundColorVideo {
        grid-area: 5 / 3 / 15 / 25;
    }

        .BackgroundColorVideo &gt; video {
            width: 100%;
            height: 100%;
            background-color: currentcolor;
        }

    .BackgroundColorFooter {
        grid-area: 16 / 5 / 24 / 23;
        text-align: center;
    }

        .BackgroundColorFooter &gt; span {
            font-family: Arial;
            font-size: 21px;
            color: #b9b9b9;
            font-style: italic;
        }

    .video-container {
        display: grid;
        position: relative;
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }

    #videoHolder {
        width: 100%;
        height: auto;
    }

    .play-button {
        position: absolute;
        top: 46%;
        left: 50%;
        transform: translate(-50%, -50%);
        background-color: rgba(0, 0, 0, 0.4);
        border-radius: 50%;
        width: 80px;
        height: 80px;
        display: inline-block;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 10;
    }

        .play-button:hover {
            background-color: rgba(0, 0, 0, 0.7);
        }

        .play-button:before {
            content: "";
            border: solid white;
            border-width: 6px 6px 0 0;
            display: inline-block;
            padding: 8px;
            transform: rotate(45deg);
            margin-left: 24px;
            margin-top: 29px;
        }

        .play-button.hide {
            display: none;
        }

    #DivPauseButton {
        position: absolute;
        top: 46%;
        left: 50%;
        transform: translate(-50%, -50%);
        background-color: rgba(0, 0, 0, 0.4);
        border-radius: 50%;
        width: 80px;
        height: 80px;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 10;
    }

        #DivPauseButton:hover {
            background-color: rgba(0, 0, 0, 0.7);
        }

        #DivPauseButton.hide {
            display: none
        }

    .pause-button {
        height: 30px;
        box-sizing: border-box;
        display: block;
        color: white;
        width: 25px;
        border-left: 7px solid;
        border-right: 7px solid;
        margin: auto;
        margin-top: 31%;
    }

        .pause-button.hide {
            display: none;
        }

    .DivEligibility {
        --grid-gutter: calc(var(--sqs-site-gutter, 4vw) - 11.0px);
        --cell-max-width: calc( ( var(--sqs-site-max-width, 1500px) - (11.0px * (24 - 1)) ) / 24 );
        --inset-padding: 0vw;
        --row-height-scaling-factor: 0.0215;
        --container-width: min(var(--sqs-site-max-width, 1500px), calc(100vw - var(--sqs-site-gutter, 4vw) * 2 - var(--inset-padding) ));
        grid-template-rows: repeat(14, minmax(calc(var(--container-width)* var(--row-height-scaling-factor)), auto));
        grid-template-columns: minmax(var(--grid-gutter), 1fr) repeat(24, minmax(0, var(--cell-max-width))) minmax(var(--grid-gutter), 1fr);
        display: grid;
        grid-row-gap: 11px;
        grid-column-gap: 11px;
    }

    .EligibilityHeader {
        grid-area: 1/4/3/24;
        text-align: center;
    }

    .EligibilitySpan {
        margin-top: 18px;
    }

        .EligibilitySpan &gt; span {
            font-family: Arial;
            font-size: 21px;
        }

    .EligibilityLearnMore {
        margin-top: 18px;
    }

        .EligibilityLearnMore &gt; span {
            font-family: Arial;
            font-size: 25px;
        }

    .EligibilityButton {
        margin-top: 18px;
    }

        .EligibilityButton &gt; input[type="submit"] {
            background: #452f6a;
            color: #ffffff;
            font-family: Arial;
            font-size: 15px;
            height: 33px;
            width: 150px;
            padding: 6px 12px;
            border-radius: 7px;
            border: hidden;
        }

            .EligibilityButton &gt; input[type="submit"]:hover {
                opacity: 0.7;
            }

    .ChronicHealth {
        grid-area: 3/3/10/25;
        background-color: #fba115e8;
        border-radius: 18px;
    }

    .ChronicHealthSub {
        width: 88%;
        padding: 6%;
    }

    .ChronicHealthErrorText {
        text-align: center;
        margin-bottom: 4%;
    }

        .ChronicHealthErrorText &gt; span {
            color: White;
            background: Red;
            font-size: 17px;
            font-family: Arial;
        }

    .ChronicHealthHeaderText &gt; span {
        font-family: Arial;
        font-size: 16px;
    }

    .ChronicHealthHeaderTextSub {
        margin-top: 2%;
    }

        .ChronicHealthHeaderTextSub &gt; span {
            font-family: Arial;
            font-size: 12px;
            color: #4b320d;
        }

    .ChronicHealthRadioButton {
        margin-top: 2%;
        display: inline-flex;
    }

        .ChronicHealthRadioButton &gt; label {
            font-family: Arial;
            font-size: 12px;
            color: black;
            padding-top: 6px
        }

        .ChronicHealthRadioButton &gt; input[type="radio"] {
            font-family: Arial;
            font-size: 12px;
            color: black;
            width: 18px;
            height: 18px;
        }

    span.SpanRequired {
        font-family: Arial;
        font-size: 12px;
        color: #4b320d;
    }

    .PhysicianHeader {
        width: 100%;
        margin-top: 4%;
    }

        .PhysicianHeader &gt; span {
            font-family: Arial;
            font-size: 17px;
        }

            .PhysicianHeader &gt; span.SpanRequired {
                font-family: Arial;
                font-size: 12px;
                color: #4b320d;
            }

    .PhysicianHeaderSub {
        margin-top: 1%;
        width: 100%;
    }

        .PhysicianHeaderSub &gt; select {
            font-family: Arial;
            font-size: 12px;
            width: 100%;
            height: 27px;
        }

    .NameHeader {
        width: 100%;
        margin-top: 4%;
    }

        .NameHeader &gt; span {
            font-family: Arial;
            font-size: 17px;
        }

            .NameHeader &gt; span.SpanRequired {
                font-family: Arial;
                font-size: 12px;
                color: #4b320d;
            }

    .NameHeaderTextBox {
        display: flex;
        width: 96%;
        flex-direction: row;
        place-content: space-between;
    }

    .NameHeaderSub1 {
        margin-top: 1%;
        width: 45%;
        display: flex;
        flex-direction: column;
    }

        .NameHeaderSub1 &gt; span {
            font-family: Arial;
            font-size: 11px;
            padding-bottom: 2%;
        }

        .NameHeaderSub1 &gt; input[type="text"] {
            font-family: Arial;
            font-size: 14px;
            width: 98%;
            height: 27px;
            padding: 0px 6px;
        }

    .NameHeaderSub2 {
        margin-top: 1%;
        width: 45%;
        display: flex;
        flex-direction: column;
    }

        .NameHeaderSub2 &gt; span {
            font-family: Arial;
            font-size: 11px;
            padding-bottom: 2%;
        }

        .NameHeaderSub2 &gt; input[type="text"] {
            font-family: Arial;
            font-size: 14px;
            width: 98%;
            height: 27px;
            padding: 0px 6px;
        }

    .PhoneHeader {
        width: 100%;
        margin-top: 4%;
    }

        .PhoneHeader &gt; span {
            font-family: Arial;
            font-size: 17px;
        }

            .PhoneHeader &gt; span.SpanRequired {
                font-family: Arial;
                font-size: 12px;
                color: #4b320d;
            }

    .PhoneHeaderSub {
        margin-top: 1%;
        width: 100%;
    }

        .PhoneHeaderSub &gt; input[type="text"] {
            font-family: Arial;
            font-size: 14px;
            width: 95%;
            height: 27px;
            padding: 0px 6px;
        }

    .PhysicianNameHeader {
        width: 100%;
        margin-top: 4%;
    }

        .PhysicianNameHeader &gt; span {
            font-family: Arial;
            font-size: 17px;
        }

            .PhysicianNameHeader &gt; span.SpanRequired {
                font-family: Arial;
                font-size: 12px;
                color: #4b320d;
            }

    .PhysicianNameHeaderSub {
        margin-top: 1%;
        width: 100%;
    }

        .PhysicianNameHeaderSub &gt; input[type="text"] {
            font-family: Arial;
            font-size: 14px;
            width: 95%;
            height: 27px;
            padding: 0px 6px;
        }

    .PhysicianCityHeader {
        width: 100%;
        margin-top: 4%;
    }

        .PhysicianCityHeader &gt; span {
            font-family: Arial;
            font-size: 17px;
        }

            .PhysicianCityHeader &gt; span.SpanRequired {
                font-family: Arial;
                font-size: 12px;
                color: #4b320d;
            }

    .PhysicianCityHeaderSub {
        margin-top: 1%;
        width: 100%;
    }

        .PhysicianCityHeaderSub &gt; input[type="text"] {
            font-family: Arial;
            font-size: 14px;
            width: 95%;
            height: 27px;
            padding: 0px 6px;
        }

    .BirthdateHeader {
        width: 100%;
        margin-top: 4%;
    }

        .BirthdateHeader &gt; span {
            font-family: Arial;
            font-size: 17px;
        }

            .BirthdateHeader &gt; span.SpanRequired {
                font-family: Arial;
                font-size: 12px;
                color: #4b320d;
            }

    .BirthdateHeaderSub {
        margin-top: 1%;
        width: 100%;
    }

        .BirthdateHeaderSub &gt; input[type="text"] {
            font-family: Arial;
            font-size: 14px;
            width: 27%;
            height: 27px;
            padding: 0px 6px;
        }

    .FooterButton {
        width: 23%;
        margin: auto;
        margin-top: 5%;
    }

    #btnSubmit {
        background: #000000;
        color: #ffffff;
        font-family: Arial;
        font-size: 15px;
        height: 35px;
        width: 90px;
        padding: 6px 12px;
        border-radius: 7px;
        border: hidden;
    }

        #btnSubmit:hover {
            opacity: 0.7;
        }

    .FooterNoteText {
        width: 91%;
        margin: auto;
        margin-top: 5%;
        text-align: center;
    }

        .FooterNoteText &gt; span {
            font-family: Arial;
            font-size: 11px;
            line-height: 15px;
        }

    .EligibilityFooter {
        grid-area: 10/4/14/24;
    }

    .PhysicianFooter {
        text-align: center;
    }

        .PhysicianFooter &gt; span {
            font-family: Arial;
            font-size: 25px;
        }

    .PhysicianFooterPhone {
        width: 91%;
        margin: auto;
        margin-top: 5%;
        text-align: center;
    }

        .PhysicianFooterPhone &gt; span {
            font-family: Arial;
            font-size: 21px;
        }

        .PhysicianFooterPhone &gt; a {
            color: blue;
            font-size: 21px;
            font-family: arial;
            text-decoration: underline;
        }

    .PhysicianFooterClick {
        width: 91%;
        margin: auto;
        margin-top: 5%;
        text-align: center;
    }

        .PhysicianFooterClick &gt; a {
            font-family: Arial;
            font-size: 21px;
            text-decoration-line: underline;
            color: #000000;
        }

    .PhysicianFooterMid {
        width: 91%;
        margin: auto;
        margin-top: 5%;
        text-align: center;
    }

        .PhysicianFooterMid &gt; span {
            font-family: Arial;
            font-size: 21px;
        }

    .PhysicianWorkingTime {
        width: 91%;
        margin: auto;
        margin-top: 2%;
        text-align: center;
    }

        .PhysicianWorkingTime &gt; span {
            font-family: Arial;
            font-size: 11px;
        }

    .PhysicianLearnMore {
        width: 91%;
        margin: auto;
        margin-top: 5%;
        text-align: center;
    }

        .PhysicianLearnMore &gt; span {
            font-family: Arial;
            font-size: 21px;
        }

    .PhysicianButtonLearnMore {
        width: 91%;
        margin: auto;
        margin-top: 2%;
        text-align: center;
    }

        .PhysicianButtonLearnMore &gt; input[type="submit"] {
            background: #452f6a;
            color: #ffffff;
            font-family: Arial;
            font-size: 15px;
            height: 33px;
            width: 110px;
            padding: 6px 12px;
            border-radius: 7px;
            border: hidden;
        }

            .PhysicianButtonLearnMore &gt; input[type="submit"]:hover {
                opacity: 0.7;
            }

    .PhysicianFooterNotes {
        grid-area: 15/3/16/26;
    }

    .PhysicianFooterNotesSub {
        margin-bottom: 5%;
        text-align: center;
        line-height: 1.3;
    }

        .PhysicianFooterNotesSub &gt; span {
            font-family: Arial;
            font-size: 11px;
            color: black;
        }

    .FooterBackround {
        width: 100%;
        display: grid;
    }

    .FooterBackroundColor {
        background: #452f6a;
        height: 60px;
        grid-area: 1/1/1/27;
    }

    .FooterText {
        text-align: center;
        margin: 13px auto;
        width: 100%;
    }

        .FooterText &gt; span {
            color: white;
            font-size: 11px;
            font-family: arial;
        }

    .FooterTextSub {
        text-align: left;
        margin: 5px auto;
        width: 90%;
    }

        .FooterTextSub &gt; a {
            color: #b9b9b9;
            font-size: 11px;
            font-family: arial;
        }
}

@media (min-width: 900px) and (max-width: 1023px) {
    .HeaderBackround {
        display: flex;
        flex-direction: row;
        width: 93%;
        margin: auto;
        margin-top: 2%;
    }

    .HeaderText {
        width: 100%;
        text-align: left;
        align-content: space-around;
    }

        .HeaderText &gt; a {
            color: #452f6a;
            font-size: 15px;
            font-family: arial;
            text-decoration: none;
        }

    .HeaderButton {
        width: 100%;
        text-align: right;
    }

        .HeaderButton &gt; input[type="submit"] {
            background: #452f6a;
            color: #ffffff;
            font-family: Arial;
            font-size: 15px;
            height: 33px;
            width: 90px;
            padding: 6px 12px;
            border-radius: 7px;
            border: hidden;
        }

            .HeaderButton &gt; input[type="submit"]:hover {
                opacity: 0.7;
            }

        .HeaderButton &gt; a {
            color: blue;
            font-size: 21px;
            font-family: arial;
            text-decoration: underline;
        }

    .BackgroundImage {
        width: 100%;
        margin: auto;
        grid-area: 1 / 1 / 1 / 2;
    }

        .BackgroundImage &gt; img {
            width: 100%;
            height: 100%;
            margin-top: 2%;
            opacity: 0.6;
        }

    .BackgroundImageSub {
        width: 39%;
        margin: auto;
        margin-left: 48%;
        margin-right: 13%;
        margin-top: -20%;
    }

        .BackgroundImageSub &gt; img {
            width: 100%;
            height: 100%;
            margin-top: 3%;
            clip-path: border-box;
        }

    .BackgroundImageText {
        width: 71%;
        margin: auto;
        margin-left: 12%;
        margin-top: 20%;
        text-align: center;
        position: absolute;
    }

        .BackgroundImageText &gt; span {
            font-family: Arial;
            font-size: 23px;
        }

    .BackgroundColor {
        --grid-gutter: calc(var(--sqs-site-gutter, 4vw) - 11.0px);
        --cell-max-width: calc( ( var(--sqs-site-max-width, 1500px) - (11.0px * (24 - 1)) ) / 24 );
        --inset-padding: 0vw;
        --row-height-scaling-factor: 0.0215;
        --container-width: min(var(--sqs-site-max-width, 1500px), calc(100vw - var(--sqs-site-gutter, 4vw) * 2 - var(--inset-padding) ));
        grid-template-rows: repeat(14, minmax(calc(var(--container-width)* var(--row-height-scaling-factor)), auto));
        grid-template-columns: minmax(var(--grid-gutter), 1fr) repeat(24, minmax(0, var(--cell-max-width))) minmax(var(--grid-gutter), 1fr);
        display: grid;
        grid-row-gap: 11px;
        grid-column-gap: 11px;
        background: #452f6a;
    }

    .BackgroundColorHeader {
        grid-area: 2 / 4 / 4 / 24;
        text-align: center;
    }

        .BackgroundColorHeader &gt; span {
            font-family: Arial;
            font-size: 30px;
            color: #ffffff;
        }

    .BackgroundColorHeaderSub {
        grid-area: 4 / 6 / 4 / 22;
        text-align: center;
    }

        .BackgroundColorHeaderSub &gt; span {
            font-family: Arial;
            font-size: 16px;
            color: #ffffff;
        }

    .BackgroundColorVideo {
        grid-area: 5 / 7 / 15 / 21;
    }

        .BackgroundColorVideo &gt; video {
            width: 100%;
            height: 100%;
            background-color: currentcolor;
        }

    .BackgroundColorFooter {
        grid-area: 16 / 8 / 24 / 20;
        text-align: center;
    }

        .BackgroundColorFooter &gt; span {
            font-family: Arial;
            font-size: 21px;
            color: #b9b9b9;
            font-style: italic;
        }

    .video-container {
        display: grid;
        position: relative;
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }

    #videoHolder {
        width: 100%;
        height: auto;
    }

    .play-button {
        position: absolute;
        top: 46%;
        left: 50%;
        transform: translate(-50%, -50%);
        background-color: rgba(0, 0, 0, 0.4);
        border-radius: 50%;
        width: 80px;
        height: 80px;
        display: inline-block;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 10;
    }

        .play-button:hover {
            background-color: rgba(0, 0, 0, 0.7);
        }

        .play-button:before {
            content: "";
            border: solid white;
            border-width: 7px 7px 0px 0px;
            display: inline-block;
            padding: 9px;
            transform: rotate(45deg);
            margin-left: 22px;
            margin-top: 26px;
        }

        .play-button.hide {
            display: none;
        }

    #DivPauseButton {
        position: absolute;
        top: 46%;
        left: 50%;
        transform: translate(-50%, -50%);
        background-color: rgba(0, 0, 0, 0.4);
        border-radius: 50%;
        width: 80px;
        height: 80px;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 10;
    }

        #DivPauseButton:hover {
            background-color: rgba(0, 0, 0, 0.7);
        }

        #DivPauseButton.hide {
            display: none
        }

    .pause-button {
        height: 33px;
        box-sizing: border-box;
        display: block;
        color: white;
        width: 26px;
        border-left: 8px solid;
        border-right: 8px solid;
        margin: auto;
        margin-top: 28%;
    }

        .pause-button.hide {
            display: none;
        }


    .DivEligibility {
        --grid-gutter: calc(var(--sqs-site-gutter, 4vw) - 11.0px);
        --cell-max-width: calc( ( var(--sqs-site-max-width, 1500px) - (11.0px * (24 - 1)) ) / 24 );
        --inset-padding: 0vw;
        --row-height-scaling-factor: 0.0215;
        --container-width: min(var(--sqs-site-max-width, 1500px), calc(100vw - var(--sqs-site-gutter, 4vw) * 2 - var(--inset-padding) ));
        grid-template-rows: repeat(14, minmax(calc(var(--container-width)* var(--row-height-scaling-factor)), auto));
        grid-template-columns: minmax(var(--grid-gutter), 1fr) repeat(24, minmax(0, var(--cell-max-width))) minmax(var(--grid-gutter), 1fr);
        display: grid;
        grid-row-gap: 11px;
        grid-column-gap: 11px;
    }

    .EligibilityHeader {
        grid-area: 1/6/3/22;
        text-align: center;
    }

    .EligibilitySpan {
        margin-top: 21px;
    }

        .EligibilitySpan &gt; span {
            font-family: Arial;
            font-size: 21px;
        }

    .EligibilityLearnMore {
        margin-top: 21px;
    }

        .EligibilityLearnMore &gt; span {
            font-family: Arial;
            font-size: 27px;
        }

    .EligibilityButton {
        margin-top: 21px;
    }

        .EligibilityButton &gt; input[type="submit"] {
            background: #452f6a;
            color: #ffffff;
            font-family: Arial;
            font-size: 15px;
            height: 33px;
            width: 150px;
            padding: 6px 12px;
            border-radius: 7px;
            border: hidden;
        }

            .EligibilityButton &gt; input[type="submit"]:hover {
                opacity: 0.7;
            }

    .ChronicHealth {
        grid-area: 3/7/10/21;
        background-color: #fba115e8;
        border-radius: 18px;
    }

    .ChronicHealthSub {
        width: 88%;
        padding: 6%;
    }

    .ChronicHealthErrorText {
        text-align: center;
        margin-bottom: 4%;
    }

        .ChronicHealthErrorText &gt; span {
            color: White;
            background: Red;
            font-size: 17px;
            font-family: Arial;
        }

    .ChronicHealthHeaderText &gt; span {
        font-family: Arial;
        font-size: 16px;
    }

    .ChronicHealthHeaderTextSub {
        margin-top: 2%;
    }

        .ChronicHealthHeaderTextSub &gt; span {
            font-family: Arial;
            font-size: 12px;
            color: #4b320d;
        }

    .ChronicHealthRadioButton {
        margin-top: 2%;
        display: inline-flex;
    }

        .ChronicHealthRadioButton &gt; label {
            font-family: Arial;
            font-size: 12px;
            color: black;
            padding-top: 6px
        }

        .ChronicHealthRadioButton &gt; input[type="radio"] {
            font-family: Arial;
            font-size: 12px;
            color: black;
            width: 18px;
            height: 18px;
        }

    span.SpanRequired {
        font-family: Arial;
        font-size: 12px;
        color: #4b320d;
    }

    .PhysicianHeader {
        width: 100%;
        margin-top: 4%;
    }

        .PhysicianHeader &gt; span {
            font-family: Arial;
            font-size: 17px;
        }

            .PhysicianHeader &gt; span.SpanRequired {
                font-family: Arial;
                font-size: 12px;
                color: #4b320d;
            }

    .PhysicianHeaderSub {
        margin-top: 1%;
        width: 100%;
    }

        .PhysicianHeaderSub &gt; select {
            font-family: Arial;
            font-size: 12px;
            width: 98%;
            height: 27px;
        }

    .NameHeader {
        width: 100%;
        margin-top: 4%;
    }

        .NameHeader &gt; span {
            font-family: Arial;
            font-size: 17px;
        }

            .NameHeader &gt; span.SpanRequired {
                font-family: Arial;
                font-size: 12px;
                color: #4b320d;
            }

    .NameHeaderTextBox {
        display: flex;
        width: 96%;
        flex-direction: row;
        place-content: space-between;
    }

    .NameHeaderSub1 {
        margin-top: 1%;
        width: 45%;
        display: flex;
        flex-direction: column;
    }

        .NameHeaderSub1 &gt; span {
            font-family: Arial;
            font-size: 11px;
            padding-bottom: 2%;
        }

        .NameHeaderSub1 &gt; input[type="text"] {
            font-family: Arial;
            font-size: 14px;
            width: 98%;
            height: 27px;
            padding: 0px 6px;
        }

    .NameHeaderSub2 {
        margin-top: 1%;
        width: 45%;
        display: flex;
        flex-direction: column;
    }

        .NameHeaderSub2 &gt; span {
            font-family: Arial;
            font-size: 11px;
            padding-bottom: 2%;
        }

        .NameHeaderSub2 &gt; input[type="text"] {
            font-family: Arial;
            font-size: 14px;
            width: 98%;
            height: 27px;
            padding: 0px 6px;
        }

    .PhoneHeader {
        width: 100%;
        margin-top: 4%;
    }

        .PhoneHeader &gt; span {
            font-family: Arial;
            font-size: 17px;
        }

            .PhoneHeader &gt; span.SpanRequired {
                font-family: Arial;
                font-size: 12px;
                color: #4b320d;
            }

    .PhoneHeaderSub {
        margin-top: 1%;
        width: 100%;
    }

        .PhoneHeaderSub &gt; input[type="text"] {
            font-family: Arial;
            font-size: 14px;
            width: 95%;
            height: 27px;
            padding: 0px 6px;
        }

    .PhysicianNameHeader {
        width: 100%;
        margin-top: 4%;
    }

        .PhysicianNameHeader &gt; span {
            font-family: Arial;
            font-size: 17px;
        }

            .PhysicianNameHeader &gt; span.SpanRequired {
                font-family: Arial;
                font-size: 12px;
                color: #4b320d;
            }

    .PhysicianNameHeaderSub {
        margin-top: 1%;
        width: 100%;
    }

        .PhysicianNameHeaderSub &gt; input[type="text"] {
            font-family: Arial;
            font-size: 14px;
            width: 95%;
            height: 27px;
            padding: 0px 6px;
        }

    .PhysicianCityHeader {
        width: 100%;
        margin-top: 4%;
    }

        .PhysicianCityHeader &gt; span {
            font-family: Arial;
            font-size: 17px;
        }

            .PhysicianCityHeader &gt; span.SpanRequired {
                font-family: Arial;
                font-size: 12px;
                color: #4b320d;
            }

    .PhysicianCityHeaderSub {
        margin-top: 1%;
        width: 100%;
    }

        .PhysicianCityHeaderSub &gt; input[type="text"] {
            font-family: Arial;
            font-size: 14px;
            width: 95%;
            height: 27px;
            padding: 0px 6px;
        }

    .BirthdateHeader {
        width: 100%;
        margin-top: 4%;
    }

        .BirthdateHeader &gt; span {
            font-family: Arial;
            font-size: 17px;
        }

            .BirthdateHeader &gt; span.SpanRequired {
                font-family: Arial;
                font-size: 12px;
                color: #4b320d;
            }

    .BirthdateHeaderSub {
        margin-top: 1%;
        width: 100%;
    }

        .BirthdateHeaderSub &gt; input[type="text"] {
            font-family: Arial;
            font-size: 14px;
            width: 20%;
            height: 27px;
            padding: 0px 6px;
        }

    .FooterButton {
        width: 23%;
        margin: auto;
        margin-top: 5%;
    }

    #btnSubmit {
        background: #000000;
        color: #ffffff;
        font-family: Arial;
        font-size: 15px;
        height: 35px;
        width: 90px;
        padding: 6px 12px;
        border-radius: 7px;
        border: hidden;
    }

        #btnSubmit:hover {
            opacity: 0.7;
        }

    .FooterNoteText {
        width: 91%;
        margin: auto;
        margin-top: 5%;
        text-align: center;
    }

        .FooterNoteText &gt; span {
            font-family: Arial;
            font-size: 11px;
            line-height: 15px;
        }

    .EligibilityFooter {
        grid-area: 10/8/14/20;
    }

    .PhysicianFooter {
        text-align: center;
    }

        .PhysicianFooter &gt; span {
            font-family: Arial;
            font-size: 25px;
        }

    .PhysicianFooterPhone {
        width: 91%;
        margin: auto;
        margin-top: 5%;
        text-align: center;
    }

        .PhysicianFooterPhone &gt; span {
            font-family: Arial;
            font-size: 21px;
        }

        .PhysicianFooterPhone &gt; a {
            color: blue;
            font-size: 21px;
            font-family: arial;
            text-decoration: underline;
        }

    .PhysicianFooterClick {
        width: 91%;
        margin: auto;
        margin-top: 5%;
        text-align: center;
    }

        .PhysicianFooterClick &gt; a {
            font-family: Arial;
            font-size: 21px;
            text-decoration-line: underline;
            color: #000000;
        }

    .PhysicianFooterMid {
        width: 91%;
        margin: auto;
        margin-top: 5%;
        text-align: center;
    }

        .PhysicianFooterMid &gt; span {
            font-family: Arial;
            font-size: 21px;
        }

    .PhysicianWorkingTime {
        width: 91%;
        margin: auto;
        margin-top: 2%;
        text-align: center;
    }

        .PhysicianWorkingTime &gt; span {
            font-family: Arial;
            font-size: 11px;
        }

    .PhysicianLearnMore {
        width: 91%;
        margin: auto;
        margin-top: 5%;
        text-align: center;
    }

        .PhysicianLearnMore &gt; span {
            font-family: Arial;
            font-size: 21px;
        }

    .PhysicianButtonLearnMore {
        width: 91%;
        margin: auto;
        margin-top: 2%;
        text-align: center;
    }

        .PhysicianButtonLearnMore &gt; input[type="submit"] {
            background: #452f6a;
            color: #ffffff;
            font-family: Arial;
            font-size: 15px;
            height: 33px;
            width: 110px;
            padding: 6px 12px;
            border-radius: 7px;
            border: hidden;
        }

            .PhysicianButtonLearnMore &gt; input[type="submit"]:hover {
                opacity: 0.7;
            }

    .PhysicianFooterNotes {
        grid-area: 15/6/16/23;
    }

    .PhysicianFooterNotesSub {
        margin-bottom: 5%;
        text-align: center;
        line-height: 1.3;
    }

        .PhysicianFooterNotesSub &gt; span {
            font-family: Arial;
            font-size: 11px;
            color: black;
        }

    .FooterBackround {
        width: 100%;
        display: grid;
    }

    .FooterBackroundColor {
        background: #452f6a;
        height: 60px;
        grid-area: 1/1/1/27;
    }

    .FooterText {
        text-align: center;
        margin: 13px auto;
        width: 100%;
    }

        .FooterText &gt; span {
            color: white;
            font-size: 11px;
            font-family: arial;
        }

    .FooterTextSub {
        text-align: left;
        margin: 5px auto;
        width: 90%;
    }

        .FooterTextSub &gt; a {
            color: #b9b9b9;
            font-size: 11px;
            font-family: arial;
        }
}

@media (min-width: 1024px) {
    .HeaderBackround {
        display: flex;
        flex-direction: row;
        width: 93%;
        margin: auto;
        margin-top: 2%;
    }

    .HeaderText {
        width: 100%;
        text-align: left;
        align-content: space-around;
    }

        .HeaderText &gt; a {
            color: #452f6a;
            font-size: 15px;
            font-family: arial;
            text-decoration: none;
        }

    .HeaderButton {
        width: 100%;
        text-align: right;
    }

        .HeaderButton &gt; input[type="submit"] {
            background: #452f6a;
            color: #ffffff;
            font-family: Arial;
            font-size: 15px;
            height: 33px;
            width: 90px;
            padding: 6px 12px;
            border-radius: 7px;
            border: hidden;
        }

            .HeaderButton &gt; input[type="submit"]:hover {
                opacity: 0.7;
            }

        .HeaderButton &gt; a {
            color: blue;
            font-size: 21px;
            font-family: arial;
            text-decoration: underline;
        }

    .BackgroundImage {
        width: 100%;
        margin: auto;
        grid-area: 1 / 1 / 1 / 2;
    }

        .BackgroundImage &gt; img {
            width: 100%;
            height: 100%;
            margin-top: 2%;
            opacity: 0.6;
        }

    .BackgroundImageSub {
        width: 39%;
        margin: auto;
        margin-left: 48%;
        margin-right: 13%;
        margin-top: -20%;
    }

        .BackgroundImageSub &gt; img {
            width: 100%;
            height: 100%;
            margin-top: 3%;
            clip-path: border-box;
        }

    .BackgroundImageText {
        width: 71%;
        margin: auto;
        margin-left: 13%;
        margin-top: 24%;
        text-align: center;
        position: absolute;
    }


        .BackgroundImageText &gt; span {
            font-family: Arial;
            font-size: 23px;
        }

    .BackgroundColor {
        --grid-gutter: calc(var(--sqs-site-gutter, 4vw) - 11.0px);
        --cell-max-width: calc( ( var(--sqs-site-max-width, 1500px) - (11.0px * (24 - 1)) ) / 24 );
        --inset-padding: 0vw;
        --row-height-scaling-factor: 0.0215;
        --container-width: min(var(--sqs-site-max-width, 1500px), calc(100vw - var(--sqs-site-gutter, 4vw) * 2 - var(--inset-padding) ));
        grid-template-rows: repeat(14, minmax(calc(var(--container-width)* var(--row-height-scaling-factor)), auto));
        grid-template-columns: minmax(var(--grid-gutter), 1fr) repeat(24, minmax(0, var(--cell-max-width))) minmax(var(--grid-gutter), 1fr);
        display: grid;
        grid-row-gap: 11px;
        grid-column-gap: 11px;
        background: #452f6a;
    }

    .BackgroundColorHeader {
        grid-area: 2 / 3 / 4 / 25;
        text-align: center;
    }

        .BackgroundColorHeader &gt; span {
            font-family: Arial;
            font-size: 35px;
            color: #ffffff;
        }

    .BackgroundColorHeaderSub {
        grid-area: 4 / 7 / 4 / 21;
        text-align: center;
    }

        .BackgroundColorHeaderSub &gt; span {
            font-family: Arial;
            font-size: 21px;
            color: #ffffff;
        }

    .BackgroundColorVideo {
        grid-area: 5 / 8 / 15 / 20;
    }

        .BackgroundColorVideo &gt; video {
            width: 100%;
            height: 100%;
            background-color: currentcolor;
        }

    .BackgroundColorFooter {
        grid-area: 16 / 9 / 24 / 19;
        text-align: center;
    }

        .BackgroundColorFooter &gt; span {
            font-family: Arial;
            font-size: 21px;
            color: #b9b9b9;
            font-style: italic;
        }

    .video-container {
        display: grid;
        position: relative;
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }

    #videoHolder {
        width: 100%;
        height: auto;
    }

    .play-button {
        position: absolute;
        top: 46%;
        left: 50%;
        transform: translate(-50%, -50%);
        background-color: rgba(0, 0, 0, 0.4);
        border-radius: 50%;
        width: 80px;
        height: 80px;
        display: inline-block;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 10;
    }

        .play-button:hover {
            background-color: rgba(0, 0, 0, 0.7);
        }

        .play-button:before {
            content: "";
            border: solid white;
            border-width: 7px 7px 0px 0px;
            display: inline-block;
            padding: 9px;
            transform: rotate(45deg);
            margin-left: 22px;
            margin-top: 26px;
        }

        .play-button.hide {
            display: none;
        }

    #DivPauseButton {
        position: absolute;
        top: 46%;
        left: 50%;
        transform: translate(-50%, -50%);
        background-color: rgba(0, 0, 0, 0.4);
        border-radius: 50%;
        width: 80px;
        height: 80px;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 10;
    }

        #DivPauseButton:hover {
            background-color: rgba(0, 0, 0, 0.7);
        }

        #DivPauseButton.hide {
            display: none
        }

    .pause-button {
        height: 33px;
        box-sizing: border-box;
        display: block;
        color: white;
        width: 26px;
        border-left: 8px solid;
        border-right: 8px solid;
        margin: auto;
        margin-top: 28%;
    }

        .pause-button.hide {
            display: none;
        }

    .DivEligibility {
        --grid-gutter: calc(var(--sqs-site-gutter, 4vw) - 11.0px);
        --cell-max-width: calc( ( var(--sqs-site-max-width, 1500px) - (11.0px * (24 - 1)) ) / 24 );
        --inset-padding: 0vw;
        --row-height-scaling-factor: 0.0215;
        --container-width: min(var(--sqs-site-max-width, 1500px), calc(100vw - var(--sqs-site-gutter, 4vw) * 2 - var(--inset-padding) ));
        grid-template-rows: repeat(14, minmax(calc(var(--container-width)* var(--row-height-scaling-factor)), auto));
        grid-template-columns: minmax(var(--grid-gutter), 1fr) repeat(24, minmax(0, var(--cell-max-width))) minmax(var(--grid-gutter), 1fr);
        display: grid;
        grid-row-gap: 11px;
        grid-column-gap: 11px;
    }

    .EligibilityHeader {
        grid-area: 1/6/3/22;
        text-align: center;
    }

    .EligibilitySpan {
        margin-top: 21px;
    }

    .EligibilitySpan &gt; span {
        font-family: Arial;
        font-size: 21px;
    }

    .EligibilityLearnMore {
        margin-top: 21px;
    }

        .EligibilityLearnMore &gt; span {
            font-family: Arial;
            font-size: 27px;
        }

    .EligibilityButton {
        margin-top: 21px;
    }

    .EligibilityButton &gt; input[type="submit"] {
        background: #452f6a;
        color: #ffffff;
        font-family: Arial;
        font-size: 15px;
        height: 33px;
        width: 150px;
        padding: 6px 12px;
        border-radius: 7px;
        border: hidden;
    }

        .EligibilityButton &gt; input[type="submit"]:hover {
            opacity: 0.7;
        }

    .ChronicHealth {
        grid-area: 3/8/10/20;
        background-color: #fba115e8;
        border-radius: 18px;
    }

    .ChronicHealthSub {
        width: 88%;
        padding: 6%;
    }

    .ChronicHealthErrorText {
        text-align: center;
        margin-bottom: 4%;
    }

        .ChronicHealthErrorText &gt; span {
            color: White;
            background: Red;
            font-size: 17px;
            font-family: Arial;
        }

    .ChronicHealthHeaderText &gt; span {
        font-family: Arial;
        font-size: 16px;
    }

    .ChronicHealthHeaderTextSub {
        margin-top: 2%;
    }

        .ChronicHealthHeaderTextSub &gt; span {
            font-family: Arial;
            font-size: 12px;
            color: #4b320d;
        }

    .ChronicHealthRadioButton {
        margin-top: 2%;
        display: inline-flex;
    }

        .ChronicHealthRadioButton &gt; label {
            font-family: Arial;
            font-size: 12px;
            color: black;
            padding-top: 6px
        }

        .ChronicHealthRadioButton &gt; input[type="radio"] {
            font-family: Arial;
            font-size: 12px;
            color: black;
            width: 18px;
            height: 18px;
        }

    span.SpanRequired {
        font-family: Arial;
        font-size: 12px;
        color: #4b320d;
    }

    .PhysicianHeader {
        width: 100%;
        margin-top: 4%;
    }

        .PhysicianHeader &gt; span {
            font-family: Arial;
            font-size: 17px;
        }

            .PhysicianHeader &gt; span.SpanRequired {
                font-family: Arial;
                font-size: 12px;
                color: #4b320d;
            }

    .PhysicianHeaderSub {
        margin-top: 1%;
        width: 100%;
    }

        .PhysicianHeaderSub &gt; select {
            font-family: Arial;
            font-size: 12px;
            width: 98%;
            height: 27px;
        }

    .NameHeader {
        width: 100%;
        margin-top: 4%;
    }

        .NameHeader &gt; span {
            font-family: Arial;
            font-size: 17px;
        }

            .NameHeader &gt; span.SpanRequired {
                font-family: Arial;
                font-size: 12px;
                color: #4b320d;
            }

    .NameHeaderTextBox {
        display: flex;
        width: 96%;
        flex-direction: row;
        place-content: space-between;
    }

    .NameHeaderSub1 {
        margin-top: 1%;
        width: 45%;
        display: flex;
        flex-direction: column;
    }

        .NameHeaderSub1 &gt; span {
            font-family: Arial;
            font-size: 11px;
            padding-bottom: 2%;
        }

        .NameHeaderSub1 &gt; input[type="text"] {
            font-family: Arial;
            font-size: 14px;
            width: 98%;
            height: 27px;
            padding: 0px 6px;
        }

    .NameHeaderSub2 {
        margin-top: 1%;
        width: 45%;
        display: flex;
        flex-direction: column;
    }

        .NameHeaderSub2 &gt; span {
            font-family: Arial;
            font-size: 11px;
            padding-bottom: 2%;
        }

        .NameHeaderSub2 &gt; input[type="text"] {
            font-family: Arial;
            font-size: 14px;
            width: 98%;
            height: 27px;
            padding: 0px 6px;
        }

    .PhoneHeader {
        width: 100%;
        margin-top: 4%;
    }

        .PhoneHeader &gt; span {
            font-family: Arial;
            font-size: 17px;
        }

            .PhoneHeader &gt; span.SpanRequired {
                font-family: Arial;
                font-size: 12px;
                color: #4b320d;
            }

    .PhoneHeaderSub {
        margin-top: 1%;
        width: 100%;
    }

        .PhoneHeaderSub &gt; input[type="text"] {
            font-family: Arial;
            font-size: 14px;
            width: 95%;
            height: 27px;
            padding: 0px 6px;
        }

    .PhysicianNameHeader {
        width: 100%;
        margin-top: 4%;
    }

        .PhysicianNameHeader &gt; span {
            font-family: Arial;
            font-size: 17px;
        }

            .PhysicianNameHeader &gt; span.SpanRequired {
                font-family: Arial;
                font-size: 12px;
                color: #4b320d;
            }

    .PhysicianNameHeaderSub {
        margin-top: 1%;
        width: 100%;
    }

        .PhysicianNameHeaderSub &gt; input[type="text"] {
            font-family: Arial;
            font-size: 14px;
            width: 95%;
            height: 27px;
            padding: 0px 6px;
        }

    .PhysicianCityHeader {
        width: 100%;
        margin-top: 4%;
    }

        .PhysicianCityHeader &gt; span {
            font-family: Arial;
            font-size: 17px;
        }

            .PhysicianCityHeader &gt; span.SpanRequired {
                font-family: Arial;
                font-size: 12px;
                color: #4b320d;
            }

    .PhysicianCityHeaderSub {
        margin-top: 1%;
        width: 100%;
    }

        .PhysicianCityHeaderSub &gt; input[type="text"] {
            font-family: Arial;
            font-size: 14px;
            width: 95%;
            height: 27px;
            padding: 0px 6px;
        }

    .BirthdateHeader {
        width: 100%;
        margin-top: 4%;
    }

        .BirthdateHeader &gt; span {
            font-family: Arial;
            font-size: 17px;
        }

            .BirthdateHeader &gt; span.SpanRequired {
                font-family: Arial;
                font-size: 12px;
                color: #4b320d;
            }

    .BirthdateHeaderSub {
        margin-top: 1%;
        width: 100%;
    }

        .BirthdateHeaderSub &gt; input[type="text"] {
            font-family: Arial;
            font-size: 14px;
            width: 20%;
            height: 27px;
            padding: 0px 6px;
        }

    .FooterButton {
        width: 23%;
        margin: auto;
        margin-top: 5%;
    }

    #btnSubmit {
        background: #000000;
        color: #ffffff;
        font-family: Arial;
        font-size: 15px;
        height: 35px;
        width: 90px;
        padding: 6px 12px;
        border-radius: 7px;
        border: hidden;
    }

        #btnSubmit:hover {
            opacity: 0.7;
        }

    .FooterNoteText {
        width: 91%;
        margin: auto;
        margin-top: 5%;
        text-align: center;
    }

        .FooterNoteText &gt; span {
            font-family: Arial;
            font-size: 11px;
            line-height: 15px;
        }

    .EligibilityFooter {
        grid-area: 10/9/14/19;
    }

    .PhysicianFooter {
        text-align: center;
    }

        .PhysicianFooter &gt; span {
            font-family: Arial;
            font-size: 25px;
        }

    .PhysicianFooterPhone {
        width: 91%;
        margin: auto;
        margin-top: 5%;
        text-align: center;
    }

        .PhysicianFooterPhone &gt; span {
            font-family: Arial;
            font-size: 21px;
        }

        .PhysicianFooterPhone &gt; a {
            color: blue;
            font-size: 21px;
            font-family: arial;
            text-decoration: underline;
        }

    .PhysicianFooterClick {
        width: 91%;
        margin: auto;
        margin-top: 5%;
        text-align: center;
    }

        .PhysicianFooterClick &gt; a {
            font-family: Arial;
            font-size: 21px;
            text-decoration-line: underline;
            color: #000000;
        }

    .PhysicianFooterMid {
        width: 91%;
        margin: auto;
        margin-top: 5%;
        text-align: center;
    }

        .PhysicianFooterMid &gt; span {
            font-family: Arial;
            font-size: 21px;
        }

    .PhysicianWorkingTime {
        width: 91%;
        margin: auto;
        margin-top: 2%;
        text-align: center;
    }

        .PhysicianWorkingTime &gt; span {
            font-family: Arial;
            font-size: 11px;
        }

    .PhysicianLearnMore {
        width: 91%;
        margin: auto;
        margin-top: 5%;
        text-align: center;
    }

        .PhysicianLearnMore &gt; span {
            font-family: Arial;
            font-size: 21px;
        }

    .PhysicianButtonLearnMore {
        width: 91%;
        margin: auto;
        margin-top: 2%;
        text-align: center;
    }

        .PhysicianButtonLearnMore &gt; input[type="submit"] {
            background: #452f6a;
            color: #ffffff;
            font-family: Arial;
            font-size: 15px;
            height: 33px;
            width: 110px;
            padding: 6px 12px;
            border-radius: 7px;
            border: hidden;
        }

            .PhysicianButtonLearnMore &gt; input[type="submit"]:hover {
                opacity: 0.7;
            }

    .PhysicianFooterNotes {
        grid-area: 15/6/16/23;
    }

    .PhysicianFooterNotesSub {
        margin-bottom: 5%;
        text-align: center;
        line-height: 1.3;
    }

        .PhysicianFooterNotesSub &gt; span {
            font-family: Arial;
            font-size: 11px;
            color: black;
        }

    .FooterBackround {
        width: 100%;
        display: grid;
    }

    .FooterBackroundColor {
        background: #452f6a;
        height: 60px;
        grid-area: 1/1/1/27;
    }

    .FooterText {
        text-align: center;
        margin: 13px auto;
        width: 100%;
    }

        .FooterText &gt; span {
            color: white;
            font-size: 11px;
            font-family: arial;
        }

    .FooterTextSub {
        text-align: left;
        margin: 5px auto;
        width: 90%;
    }

        .FooterTextSub &gt; a {
            color: #b9b9b9;
            font-size: 11px;
            font-family: arial;
        }
}
</pre></body></html>