html {
    scroll-behavior: smooth;
}

body {
    padding: 0;
    margin: 0;
    font-size: 18px;
    color: #575757;
    line-height: 1.4;
    font-family: 'Lato';
    height: 100vh;
}

/*-- Fonts Start --*/
@font-face {
    font-family: 'Lato';
    src: url('https://demo.ai.amalgamrx.com/api/proxy/Content/soliris_net/fonts/Lato-Regular.woff2?site=https%3A%2F%2Fwww.soliris.net') format('woff2'),
        url('https://demo.ai.amalgamrx.com/api/proxy/Content/soliris_net/fonts/Lato-Regular.woff?site=https%3A%2F%2Fwww.soliris.net') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lato';
    src: url('https://demo.ai.amalgamrx.com/api/proxy/Content/soliris_net/fonts/Lato-Bold.woff2?site=https%3A%2F%2Fwww.soliris.net') format('woff2'),
        url('https://demo.ai.amalgamrx.com/api/proxy/Content/soliris_net/fonts/Lato-Bold.woff?site=https%3A%2F%2Fwww.soliris.net') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lato';
    src: url('https://demo.ai.amalgamrx.com/api/proxy/Content/soliris_net/fonts/Lato-Light.woff2?site=https%3A%2F%2Fwww.soliris.net') format('woff2'),
        url('https://demo.ai.amalgamrx.com/api/proxy/Content/soliris_net/fonts/Lato-Light.woff?site=https%3A%2F%2Fwww.soliris.net') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lato';
    src: url('https://demo.ai.amalgamrx.com/api/proxy/Content/soliris_net/fonts/Lato-Black.woff2?site=https%3A%2F%2Fwww.soliris.net') format('woff2'),
        url('https://demo.ai.amalgamrx.com/api/proxy/Content/soliris_net/fonts/Lato-Black.woff?site=https%3A%2F%2Fwww.soliris.net') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lato';
    src: url('https://demo.ai.amalgamrx.com/api/proxy/Content/soliris_net/fonts/Lato-Italic.woff2?site=https%3A%2F%2Fwww.soliris.net') format('woff2'),
        url('https://demo.ai.amalgamrx.com/api/proxy/Content/soliris_net/fonts/Lato-Italic.woff?site=https%3A%2F%2Fwww.soliris.net') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

/*-- Fonts End --*/

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0 0 15px 0;
}

ul,
ol {
    /* list-style-type: none; */
    margin-left: 20px;
    margin-right: 20px;
    padding: 0;
}

/* Allows nav bar to maintain UL tag with own features */
.navBar {
    list-style-type: none;
    margin-left: 0;
    margin-right: 0;
}

a {
    text-decoration: none;
    transition: 0.3s all ease;
}

sup {
    position: relative;
    font-size: 75%;
}

.container {
    max-width: 1180px;
    padding-left: 20px;
    padding-right: 20px;
    margin: 0 auto;
}

/*--- Body CSS End ---*/


/*--- Header CSS Start ---*/
header {
    position: relative;
    background-color: #fff;
    -webkit-box-shadow: 0px 3px 4px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 3px 4px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 3px 4px 0px rgba(0, 0, 0, 0.2);
}

.header_row {
    padding: 13px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav ul {
    display: flex;
}

.nav li {
    margin-right: 20px;
}

.nav li:last-child {
    margin-right: 0;
}


.nav a {
    font-size: 16px;
    color: #064B85;
}

.nav a:hover {
    color: #FA7E1C;
}

.text_primary {
    color: #FA7E1C !important;
}

/* Menu btn CSS Start */
.menu_btn {
    width: 26px;
    height: 22px;
    position: relative;
    margin: 0px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    display: none;
}

.menu_btn span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
    background-color: #003C71;
}

.menu_btn span:nth-child(1) {
    top: 0px;
}

.menu_btn span:nth-child(2) {
    top: 8px;
}

.menu_btn span:nth-child(3) {
    top: 16px;
}

.menu_btn.open span:nth-child(1) {
    top: 11px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
}

.menu_btn.open span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.menu_btn.open span:nth-child(3) {
    top: 11px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

/* Menu btn CSS End */


.mobile_bar {
    background-color: #064B85;
    padding: 10px 0;
    display: none;
}

.bar_row {
    display: flex;
    justify-content: space-between;
}

.mobile_bar p,
.mobile_bar a {
    margin: 0;
    font-size: 14px;
    color: #fff;
    display: inline-block;
}

/*--- Header CSS End ---*/



/*--- Patient Banner CSS Start ---*/
.patient_banner {
    background: url(https://demo.ai.amalgamrx.com/api/proxy/Content/soliris_net/images/patient-banner-bg.png?site=https%3A%2F%2Fwww.soliris.net) center top no-repeat;
    background-size: cover;
    position: relative;
}

.patient_banner_inner {
    padding: 60px 0 10px;
}

.banner_content {
    max-width: 430px;
}

.patient_banner .proven {
    margin-bottom: 10px;
    padding: 25px;
    background-color: rgba(0, 95, 158, 0.7);
}

.proven p {
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 0;
}

.banner_content h2 {
    font-size: 36px;
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
}

.banner_content span {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    display: inline-block;
    margin-bottom: 7px;
}

.condition_sec {
    position: relative;
}

.select_condition {
    background-color: #fff;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
}

.select_condition:after {
    content: "";
    background-color: #fff;
    width: 10px;
    height: 100%;
    display: inline-block;
    position: absolute;
    right: -10px;
    top: 0;
    opacity: 0;
}

body.optionsOpen .select_condition:after {
    opacity: 1;
}

.select_condition span {
    font-size: 18px;
    font-weight: 700;
    color: #DE811E;
    margin-bottom: 0;
}

.select_condition i {
    font-size: 30px;
    color: #003C71;
    transition: 0.4s all ease;
}

body.optionsOpen .select_condition i {
    transform: rotate(180deg);
}

.select_options {
    width: 440px;
    position: absolute;
    top: 0;
    left: calc(100% + 10px);
    display: none;
}

.condition_link {
    display: flex;
}

.info_link {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 53px;
    background-color: #fff;
    border-bottom: 1px solid #D8D8D8;
    padding: 13px;
    transition: 0.4s all ease;
}

.select_options span {
    height: 79px;
    width: 75px;
    flex: 0 0 75px;
    margin: 0;
    background-color: #DE811E;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 18px;
    font-weight: 900;
    color: #fff;
    border-bottom: 1px solid #D8D8D8;
}

.select_options p {
    width: 100%;
    font-size: 18px;
    color: #003C71;
    margin-bottom: 0;
    line-height: 1.2;
}

.condition_link:hover .info_link {
    background-color: #EFF0F0;
}

.condition_link:hover span {
    background-color: #AA6011;
}

.condition_link:last-child span,
.condition_link:last-child .info_link {
    border-bottom: none;
}

.source_box {
    background-color: rgba(238, 238, 238, 0.84);
    padding: 20px;
    display: flex;
    align-items: center;
}

.source_box sup {
    top: 3px;
}

.source_logo {
    margin-right: 15px;
}

.source_logo img {
    width: 132px;
    height: 40px;
}

.source_box span {
    font-size: 16px;
    color: #005F9E;
    font-weight: 400;
    display: block;
    margin-bottom: 7px;
}

.source_box a {
    background-color: #DE811E;
    padding: 10px 13px;
    line-height: 1;
    font-size: 16px;
    color: #fff;
    display: inline-block;
}

/*--- Patient Banner CSS End ---*/


/*--- Content CSS Start ---*/
#isiInfo {
    display: none;
}

.detail_section {
    padding: 15px 0 10px;
    background-color: #EFF0F0;
    overflow: hidden;
    transition: 0.4s all ease;
}

.content_inner {
    padding: 20px 0 50px;
}

.detail_section ol {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 35px;
}

.detail_section ol {
    list-style-type: decimal;
    margin-left: 20px;
}

.show_row_outer .show_row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 13px 0;
}

.detail_section h3 {
    font-size: 18px;
    font-weight: 700;
    color: #064B85;
    margin-bottom: 0;
}

.show_arrows {
    display: flex;
    align-items: center;
    width: 205px;
    flex: 0 0 205px;
}

.show_arrows span {
    font-size: 16px;
    font-weight: 700;
    color: #707070;
    display: inline-block;
    margin-right: 3px;
    vertical-align: middle;
}

.show_arrows i {
    font-size: 20px;
    color: #FA7E1C;
    line-height: 1;
    vertical-align: middle;
}

.show_more {
    margin-right: 10px;
}

.show_more,
.show_less {
    cursor: pointer;
}

.detail_section li {
    margin-bottom: 7px;
    padding-left: 20px;
    position: relative;
}

.detail_section ul {
    margin-top: 0;
    margin-left: 0;
}

.detail_section ul li {
    list-style: none;
}

.detail_section ul li::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #575757;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 7px;
}

.detail_section ol li {
    padding-left: 10px;
}

.detail_section ol li::marker {
    font-weight: 700;
}

.detail_section p {
    margin-bottom: 25px;
}

.detail_section p:nth-child(1),
.detail_section p:nth-child(2) {
    margin-bottom: 7px;
}

.detail_section a {
    color: #05A0F2;
}




/* Patient Content CSS STart */
.show_row_outer {
    background-color: #003C71;
}

.content_patient .detail_section {
    padding: 0;
}

.show_row_outer h3 {
    color: #fff;
}

.content_patient .show_arrows span,
.content_patient .show_arrows i {
    color: #fff;
}

.content_patient .content_inner {
    display: block;
}

.bottom_sec h3 {
    margin-bottom: 7px;
}

.bottom_sec h4 {
    color: #064B85;
    margin-bottom: 7px;
}

.detail_section .bottom_sec ul li::before {
    top: 12px;
}


/*--- Content CSS End ---*/



/*--- Footer CSS Start ---*/
footer {
    padding: 45px 0;
}

.footer_row {
    display: flex;
    justify-content: space-between;
}

.footer_left {
    max-width: 430px;
}

footer sup {
    top: 3px;
}

footer p {
    font-size: 12px;
    color: #707070;
    line-height: 1.5;
    margin-bottom: 0;
}

.logo_footer {
    margin-bottom: 20px;
}

.footer_links p {
    font-size: 14px;
    color: #575757;
}

.footer_links a {
    color: #05A0F2;
    margin: 0 2px;
}

/*--- Footer CSS End ---*/



/*--- Responsive Start ---*/
@media (max-width: 1440px) {
    .patient_banner_inner {
        padding: 10px 0 10px;
    }

    .banner_content h2 {
        font-size: 32px;
    }

    .patient_banner .proven {
        padding: 15px
    }
}


@media (max-width: 1199px) {
    .nav li {
        margin-right: 8px;
    }

    .nav a {
        font-size: 14px;
    }

    .patient_banner_inner {
        padding-top: 35px;
    }
}


@media (max-width: 991px) {
    header {
        z-index: 100;
    }

    body.nav_open {
        position: fixed;
    }

    .mobile_bar {
        display: block;
        padding: 5px 0;
        height: 20px;
    }

    .nav {
        display: none;
        position: absolute;
        left: 0;
        top: 100%;
        width: 100%;
        background-color: #003C71;
        padding: 25px 20px;
        height: 100vh;
        z-index: -1;
        box-sizing: border-box;
    }

    .nav a {
        font-size: 18px;
        color: #fff;
    }

    .nav ul {
        display: block;
    }

    .nav li {
        border-bottom: 1px solid #707070;
        padding: 10px 0;
        margin-right: 0;
    }

    .menu_btn {
        display: block;
    }

    .patient_banner {
        padding: 0;
    }

    .patient_banner_inner {
        padding: 30px 0;
    }

    .patient_banner .proven {
        padding: 10px;
    }

    .proven p {
        font-size: 16px;
        line-height: 1.3;
    }

    .banner_col {
        box-sizing: border-box;
    }

    .banner_col:first-child {
        padding-right: 20px;
    }

    .banner_content h2 {
        font-size: 30px;
    }

    .banner_content {
        max-width: 380px;
    }

    .select_options p,
    .select_options span {
        font-size: 16px;
    }

    .select_options {
        width: 350px;
    }
}


@media (max-width: 767px) {
    body {
        font-size: 14px;
    }

    body.optionsOpen .patient_banner_inner {
        padding-bottom: 175px;
        padding-top: 100px;
    }

    .banner_content {
        display: flex;
        flex-direction: column;
        margin: 0 auto;
    }

    .condition_wrap {
        order: 12;
    }

    .source_box {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        flex-direction: column;
        background-color: #fff;
        text-align: center;
        box-sizing: border-box;
        height: 160px;
        display: flex;
    }

    body.optionsOpen .source_box {
        display: flex;
        bottom: 0;
    }

    .source_logo {
        margin-right: 0;
        margin-bottom: 7px;
    }

    .select_options {
        width: 100%;
        left: 0;
        top: auto;
        bottom: 80px;
        -webkit-box-shadow: 0px 3px 4px 0px rgba(0, 0, 0, 0.2);
        -moz-box-shadow: 0px 3px 4px 0px rgba(0, 0, 0, 0.2);
        box-shadow: 0px 3px 4px 0px rgba(0, 0, 0, 0.2);
    }

    .select_options p {
        line-height: 1.4;
    }

    .select_condition i {
        transform: rotate(-90deg);
    }

    body.optionsOpen .select_condition i {
        transform: rotate(90deg);
    }

    .select_condition:after {
        content: none;
    }

    .banner_content span {
        font-size: 20px;
    }

    .select_condition span {
        font-size: 18px;
    }

    .select_condition {
        margin-bottom: 0;
    }

    .patient_banner .proven {
        margin-bottom: 25px;
        padding: 13px;
    }




    .detail_section h3 {
        font-size: 14px;
    }

    .show_arrows span {
        font-size: 0;
    }

    .show_arrows {
        width: 50px;
        flex: 0 0 50px;
        justify-content: flex-end;
    }

    footer {
        padding: 25px 0;
    }

    .footer_row {
        flex-wrap: wrap;
        justify-content: center;
    }

    .logo_footer {
        text-align: center;
        margin-bottom: 30px;
    }

    .footer_left p {
        margin-bottom: 25px;
    }

    .footer_links {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .header_row {
        padding: 10px 0;
    }

    .logo img {
        width: 110px;
    }

    .patient_banner {
        background: url(https://demo.ai.amalgamrx.com/api/proxy/Content/soliris_net/images/patient-banner-bg-mobile.png?site=https%3A%2F%2Fwww.soliris.net) center center no-repeat;
        background-size: 100% 150%;
        background-position: 0 100%;
        height: 505px !important;
    }

    .patient_banner_inner {
        padding: 40px 0;
    }

    .indications h2 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .indication_box p {
        font-size: 14px;
    }

    .banner_content h2 {
        font-size: 28px;
    }

    .select_options p,
    .select_options span {
        font-size: 14px;
    }

    .patient_banner .proven {
        margin-bottom: 20px;
    }


}

@media (max-width: 767px) and (min-width: 365px) {
    .detail_section_fixed {
        position: fixed;
        top: 467px;
        z-index: 10;
    }

    .content_patient .detail_section.first-load {
        top: 467px;
        position: fixed;
    }

    .content_patient .detail_section.fixed-bottom {
        top: -69px;
        position: relative;
    }
}

@media (max-width: 420px) {
    .source_box {
        height: 140px;
        padding: 13px;
    }

    body.optionsOpen .patient_banner_inner {
        padding-bottom: 165px;
        /*padding-top: 95px;*/
        padding-top: 121px;
    }

    .banner_content h2 {
        margin-bottom: 7px;
    }

    .proven p {
        line-height: 1.25;
    }

    body.optionsOpen .patient_banner .proven {
        margin-bottom: 15px;
    }

    body.optionsOpen .select_condition {
        height: 40px;
    }

    .select_options {
        bottom: 65px;
    }
}

@media (max-width: 375px) {
    .source_box {
        height: 137px;
        padding: 13px;
    }


    .select_options span {
        height: 65px;
        width: 65px;
        flex: 0 0 65px;
    }

    .info_link {
        padding: 10px;
        height: 45px;
    }

    .banner_content span {
        font-size: 16px;
    }

    .proven p {
        font-size: 16px;
    }

    body.optionsOpen .patient_banner_inner {
        padding-bottom: 150px;
        padding-top: 55px;
    }

    .banner_content h2 {
        margin-bottom: 7px;
        font-size: 26px;
    }

    .proven p {
        line-height: 1.25;
    }

    body.optionsOpen .patient_banner .proven {
        margin-bottom: 15px;
    }

    body.optionsOpen .select_condition {
        height: 40px;
    }

    body.optionsOpen .select_options {
        bottom: 65px;
    }
}

@media (max-width: 330px) {
    .logo img {
        width: 110px;
    }

    body.optionsOpen .patient_banner_inner {
        padding-top: 63px;
        padding-bottom: 145px;
    }

    .banner_content h2 {
        font-size: 22px;
    }

    .patient_banner .proven {
        margin-bottom: 20px;
    }

    .select_condition {
        height: 40px;
    }

    body.optionsOpen .select_options {
        bottom: 48px;
    }

    body.optionsOpen .select_condition {
        height: 20px;
    }

    .banner_content span {
        font-size: 15px;
    }

    .source_box {
        height: 128px;
    }

    .source_logo {
        margin-bottom: 3px;
    }

    .source_box a {
        padding: 7px 12px;
    }


    .patient_banner {
        height: 465px !important;
    }
}

/*--- Responsive End ---*/

footer .privacy-choices-link::before {
    content: "";
    background: url(https://demo.ai.amalgamrx.com/api/proxy/-/media/images/footer/privacy-choices-icon.svg?site=https%3A%2F%2Fwww.soliris.net);
    background-repeat: no-repeat;
    height: 13px;
    margin-right: 0px;
    flex: 1 0 auto;
    width: 30px;
    display: inline-block;
    position: relative;
    top: 1.5px;
}