/*==================================
 ------------ RESET CSS -----------
==================================*/
html,
body,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
blockquote,
pre,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
center,
dl,
dt,
dd,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

html {
    box-sizing: border-box;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

html {
    font-size: 10px;
}

nav ol,
nav ul:not(.list),
.list--reset ol,
.list--reset ul:not(.list) {
    margin: 0;
    padding: 0;
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

b,
strong {
    font-weight: 700;
}

em {
    font-style: italic;
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
}

sub {
    vertical-align: sub;
}

sup {
    vertical-align: super;
}

small {
    font-size: 70%;
    line-height: normal;
}

select:empty {
    display: none;
}

*::-webkit-input-placeholder {
    color: inherit;
    opacity: 1;
}

*::-moz-placeholder {
    color: inherit;
    opacity: 1;
}

*:-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

/*---------- Animations ----------*/
@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/*==================================
 --------- DEFAULT STYLES ---------
==================================*/
body {
    overflow-x: hidden;
    color: #3F4C50;
    font-family: "Lato", sans-serif;
    font-size: 1.6rem;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: none;
}

/*---------- TYPOGRAPHY ----------*/
h1,
.h1 {
    font-family: "Lato", sans-serif;
    font-size: 4.4rem;
    line-height: 1.228;
    font-weight: 700;
    margin-bottom: 40px;
}

h2,
.h2 {
    font-family: "Roboto", sans-serif;
    font-size: 4rem;
    line-height: 1.175;
    font-weight: 700;
    margin-bottom: 30px;
}

h3,
.h3 {
    font-family: "Roboto", sans-serif;
    font-size: 2.6rem;
    line-height: 1.154;
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 20px;
}

h4,
.h4 {
    font-family: "Roboto", sans-serif;
    font-size: 2.2rem;
    line-height: 1.182;
    font-weight: 700;
    margin-top: 15px;
    margin-bottom: 15px;
}

h5,
.h5 {
    font-family: "Roboto", sans-serif;
    font-size: 1.5rem;
    line-height: 1.2;
    letter-spacing: 0.16em;
    margin-top: 12px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

a {
    text-decoration: underline;
    text-decoration-color: #5AC2A0;
    color: #3F4C50;
}

a:hover {
    color: #C7C8CA;
}

@media only screen and (max-width: 767px) {

    h1,
    .h1 {
        font-size: 3rem;
    }

    h2,
    .h2 {
        font-size: 3rem;
    }
}

/*------------ COMMON ------------*/
img {
    max-width: 100%;
}

input[type="checkbox"],
input[type="radio"] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

input[type="checkbox"]+label,
input[type="radio"]+label {
    user-select: none;
    cursor: pointer;
    display: inline-flex;
    line-height: 1.8rem;
    position: relative;
    padding-left: 28px;
}

input[type="checkbox"]+label:before,
input[type="radio"]+label:before {
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    background-color: #fff;
    border: 1px solid #5AC2A0;
    border-radius: 100%;
    line-height: 1;
    position: absolute;
    top: 0;
    left: 0;
}

input[type="checkbox"]+label:after,
input[type="radio"]+label:after {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #5AC2A0;
    border-radius: 100%;
    line-height: 1;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease-in-out;
    position: absolute;
    top: 4px;
    left: 4px;
}

input[type="checkbox"]:checked+label:after,
input[type="radio"]:checked+label:after {
    opacity: 1;
    visibility: visible;
}

input[type="radio"]+label:before {
    border-radius: 100%;
}

input::-ms-clear {
    display: none;
}

iframe {
    width: 100%;
}

/*------- HACKS AND FIXES -------*/
.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}

.clearfix:after {
    clear: both;
}

/*------------ LISTS ------------*/
.list {
    list-style-type: disc;
    padding-left: 30px;
    margin-top: 15px;
    margin-bottom: 15px;
    line-height: 1.5;
}

.list .list {
    list-style-type: circle;
    margin-top: 0;
    margin-bottom: 0;
}

.list--ordered {
    list-style-type: decimal;
}

.list--alpha {
    list-style-type: lower-alpha;
}

.list--roman {
    list-style-type: lower-roman;
}

.list--inside {
    list-style-position: inside;
}

/*------- BUTTONS / INPUTS -------*/
.input,
.textarea,
.dropdown,
.upload,
.submit,
.button {
    display: inline-block;
    max-width: 100%;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding: 10px 20px;
    background: transparent;
    border: 1px solid #5AC2A0;
    color: #3F4C50;
    border-radius: 30px;
    font-family: "Lato", sans-serif;
    font-size: 1.6rem;
    font-weight: normal;
}

.input::-ms-clear,
.textarea::-ms-clear,
.dropdown::-ms-clear,
.upload::-ms-clear,
.submit::-ms-clear,
.button::-ms-clear {
    display: none;
}

.submit,
.button,
.upload,
.dropdown {
    cursor: pointer;
}

.textarea {
    width: 100%;
    resize: vertical;
}

.upload {
    line-height: 0;
}

.button {
    font-family: "Roboto", sans-serif;
    font-size: 1.6rem;
    line-height: 1.1875;
    font-weight: 400;
    letter-spacing: 0.1em;
    transition: 0.3s ease-in-out;
    padding: 16px 26px;
    background-color: #5AC2A0;
    color: #fff;
    border: none;
    border-radius: 30px;
    text-align: center;
    text-decoration: none;
}

.button:hover {
    background-color: #1E795B;
    color: #fff;
}

.button--inverted {
    background-color: #1E795B;
}

.button--inverted:hover {
    background-color: #5AC2A0;
}

.button--inverted.js--disabled {
    background: #fff;
    border-color: #327CB5;
    color: #327CB5;
}

.button--dark,
.dark .button--dark {
    background-color: #fff;
    color: #5AC2A0;
}

.button--dark:hover,
.dark .button--dark:hover {
    background-color: #1E795B;
    color: #fff;
}

.button--yellow {
    background-color: #5AC2A0;
    border-color: #5AC2A0;
    color: #fff;
}

.button--yellow:hover {
    background-color: #5AC2A0;
    border-color: #5AC2A0;
    color: #fff;
    outline-color: #5AC2A0 !important;
}

.button[disabled] {
    opacity: 0.5;
    pointer-events: none;
}

.dropdown {
    line-height: 1.2;
    padding: 15px 35px 15px 20px;
    background: #fff url("http://s27.q4cdn.com/486207181/files/design/svg/q4-icon_chevron-down-black.svg") no-repeat right 10px center;
    background-size: 14px 14px;
    min-width: 130px;
}

.dropdown::-ms-expand {
    display: none;
}

/*------------ TABLES ------------*/
.table {
    width: 100%;
    margin: 16px 0;
}

.table--fixed {
    table-layout: fixed;
}

.table thead {
    background-color: #327CB5;
}

.table thead th {
    text-align: left;
}

.table tr:nth-child(even) {
    background-color: #F5F6F9;
}

.table th,
.table td,
.table tr>.grid_col {
    margin: 0;
    padding: 10px 8px;
}

.table th {
    color: #fff;
}

.table--headless tr:nth-child(even) {
    background-color: transparent;
}

.table--headless tr:nth-child(odd) {
    background-color: #F5F6F9;
}

.table--headless tr:first-child {
    background-color: #327CB5;
    text-align: left;
}

.table--headless tr:first-child td {
    color: #fff;
}

.table--advocacy {
    text-align: center;
}

.table--advocacy tr:nth-child(odd),
.table--advocacy tr:nth-child(even) {
    background: none;
}

.table--advocacy thead th {
    text-align: center;
}

.table--advocacy th,
.table--advocacy td {
    vertical-align: middle;
}

.table--advocacy img {
    vertical-align: top;
    max-width: 150px;
}

.table--advocacy a {
    word-break: break-all;
}

.table-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
}

.table a {
    word-break: break-word;
}

@media only screen and (max-width: 767px) {
    .table--responsive {
        text-align: left;
    }

    .table--responsive.table--fixed {
        table-layout: auto;
    }

    .table--responsive thead {
        display: none;
    }

    .table--responsive tbody {
        border-top: 2px solid #327CB5;
        border-bottom: 2px solid #327CB5;
    }

    .table--responsive td {
        display: flex;
    }

    .table--responsive td[data-heading]:before {
        content: attr(data-heading) ": ";
        font-weight: 700;
        width: 50%;
        flex: 0 0 auto;
        padding-right: 10px;
        word-break: break-word;
    }
}

/*--------- SPECIAL BOXES --------*/
.code {
    margin: 32px 0;
    padding: 20px 15px;
    background: #F5F6F9;
    border-left: 3px solid rgba(50, 124, 181, 0.5);
    font-family: monospace, serif;
    font-size: 1.4rem;
    word-break: break-all;
    word-wrap: break-word;
    white-space: pre;
    overflow: hidden;
}

.code_comment {
    opacity: 0.5;
}

.quote {
    margin: 32px 0;
    padding: 20px 15px;
    background: #F5F6F9;
    border-left: 3px solid rgba(241, 175, 15, 0.5);
    font-size: 1.4rem;
    font-style: italic;
}

.quote p:before {
    margin-right: 5px;
    font-family: "q4-icons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\eb1b";
}

.quote p:after {
    margin-left: 5px;
    font-family: "q4-icons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\eb1c";
}

/*==================================
 -------- Q4 Modules Icons ---------
==================================*/
.q4icons .q4icons_icon:before {
    font-family: "q4-icons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\e9bb";
    font-size: 2rem;
    vertical-align: middle;
    display: inline-block;
    padding-right: 5px;
}

.q4icons .module_rss-link .q4icons_icon:before,
.q4icons .module_link-rss .q4icons_icon:before {
    content: "\eefa";
}

.q4icons .module_add-to-calendar-reveal .q4icons_icon:before {
    content: "\ea5f";
    padding-right: 5px;
}

.q4icons [href$=".mp3"] .q4icons_icon:before,
.q4icons [href$=".wmv"] .q4icons_icon:before,
.q4icons [href$=".MP3"] .q4icons_icon:before,
.q4icons [href$=".WMV"] .q4icons_icon:before {
    content: "\e952";
}

.q4icons [href$=".xls"] .q4icons_icon:before,
.q4icons [href$=".xlsx"] .q4icons_icon:before,
.q4icons [href$=".csv"] .q4icons_icon:before,
.q4icons [href$=".XLS"] .q4icons_icon:before,
.q4icons [href$=".XLSX"] .q4icons_icon:before,
.q4icons [href$=".CSV"] .q4icons_icon:before {
    content: "\ef41";
}

.q4icons [href$=".mp4"] .q4icons_icon:before,
.q4icons [href$=".flv"] .q4icons_icon:before,
.q4icons [href$=".avi"] .q4icons_icon:before,
.q4icons [href$=".MP4"] .q4icons_icon:before,
.q4icons [href$=".FLV"] .q4icons_icon:before,
.q4icons [href$=".AVI"] .q4icons_icon:before {
    content: "\e95e";
}

.q4icons [href$=".pdf"] .q4icons_icon:before,
.q4icons [href$=".PDF"] .q4icons_icon:before {
    content: "\ef3e";
}

.q4icons [href$=".doc"] .q4icons_icon:before,
.q4icons [href$=".DOC"] .q4icons_icon:before {
    content: "\ef40";
}

.q4icons [href$=".zip"] .q4icons_icon:before,
.q4icons [href$=".ZIP"] .q4icons_icon:before {
    content: "\e9b9";
}

.q4icons .module_link-webcast .q4icons_icon:before,
.q4icons .module_webcast-link .q4icons_icon:before {
    content: "\e930";
}

.q4icons .module_link-news .q4icons_icon:before,
.q4icons .module_news-link .q4icons_icon:before {
    content: "\e92b";
}

.q4icons .module_link-transcript .q4icons_icon:before {
    content: "\e92e";
}

.q4icons .module_link-presentation .q4icons_icon:before,
.q4icons .module_presentation-link .q4icons_icon:before {
    content: "\e92a";
}

.q4icons .module_link-file .q4icons_icon:before,
.q4icons .module_link-tenq .q4icons_icon:before,
.q4icons .module_link-tenk .q4icons_icon:before {
    content: "\e92d";
}

.q4icons .module_link-sec .q4icons_icon:before {
    content: "\e9bb";
}

.q4icons .module_link-sec[href$=".pdf"] .q4icons_icon:before {
    content: "\ef3e";
}

.q4icons .module_link-sec[href$=".rtf"] .q4icons_icon:before {
    content: "\ef40";
}

.q4icons .module_link-sec[href$=".xls"] .q4icons_icon:before {
    content: "\ef41";
}

.q4icons .module_link-sec[href$=".zip"] .q4icons_icon:before {
    content: "\e9b9";
}

.q4icons .module_link-download .q4icons_icon:before {
    content: "\e91d";
}

.q4icons [href^="tel:"] .q4icons_icon:before {
    font-size: 1.6rem;
    vertical-align: middle;
    font-family: "q4-icons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\e928";
}

.q4icons [href^="mailto:"] .q4icons_icon:before {
    font-size: 1.6rem;
    vertical-align: middle;
    font-family: "q4-icons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\e91e";
}

/*==================================
 ----------- TOAST GRID -----------
==================================*/
.grid {
    list-style: none;
    margin-left: -20px;
}

.grid--flex {
    margin-left: -20px;
    box-sizing: border-box;
    display: flex;
    flex: 0 1 auto;
    flex-direction: row;
    flex-wrap: wrap;
}

.grid--flex_column {
    flex-direction: column;
}

.grid--flex_row-reverse {
    flex-direction: row-reverse;
}

.grid--flex_column-reverse {
    flex-direction: column-reverse;
}

.grid--flex_justify-start {
    justify-content: flex-start;
    text-align: start;
}

.grid--flex_justify-center {
    justify-content: center;
    text-align: center;
}

.grid--flex_justify-end {
    justify-content: flex-end;
    text-align: end;
}

.grid--flex_align-top {
    align-items: flex-start;
}

.grid--flex_align-middle {
    align-items: center;
}

.grid--flex_align-bottom {
    align-items: flex-end;
}

.grid--flex_space-around {
    justify-content: space-around;
}

.grid--flex_space-between {
    justify-content: space-between;
}

.grid--flex .grid_col {
    display: block;
    margin-right: 0;
    flex: 0 0 auto;
}

.grid_col--1-of-1,
.grid_col--2-of-2,
.grid_col--3-of-3,
.grid_col--4-of-4,
.grid_col--5-of-5,
.grid_col--6-of-6,
.grid_col--7-of-7,
.grid_col--8-of-8,
.grid_col--12-of-12 {
    width: 100%;
}

.grid_col--1-of-2,
.grid_col--2-of-4,
.grid_col--3-of-6,
.grid_col--4-of-8,
.grid_col--6-of-12 {
    width: 50%;
}

.grid_col--1-of-3,
.grid_col--2-of-6,
.grid_col--4-of-12 {
    width: 33.33333%;
}

.grid_col--2-of-3,
.grid_col--4-of-6,
.grid_col--8-of-12 {
    width: 66.66667%;
}

.grid_col--1-of-4,
.grid_col--2-of-8,
.grid_col--3-of-12 {
    width: 25%;
}

.grid_col--3-of-4,
.grid_col--6-of-8,
.grid_col--9-of-12 {
    width: 75%;
}

.grid--flex .grid_col--1-of-1,
.grid--flex .grid_col--2-of-2,
.grid--flex .grid_col--3-of-3,
.grid--flex .grid_col--4-of-4,
.grid--flex .grid_col--5-of-5,
.grid--flex .grid_col--6-of-6,
.grid--flex .grid_col--7-of-7,
.grid--flex .grid_col--8-of-8,
.grid--flex .grid_col--12-of-12 {
    width: auto;
    flex-basis: 100%;
    max-width: 100%;
}

.grid--flex .grid_col--1-of-2,
.grid--flex .grid_col--2-of-4,
.grid--flex .grid_col--3-of-6,
.grid--flex .grid_col--4-of-8,
.grid--flex .grid_col--6-of-12 {
    width: auto;
    flex-basis: 50%;
    max-width: 50%;
}

.grid--flex .grid_col--1-of-3,
.grid--flex .grid_col--2-of-6,
.grid--flex .grid_col--4-of-12 {
    width: auto;
    flex-basis: 33.33333%;
    max-width: 33.33333%;
}

.grid--flex .grid_col--2-of-3,
.grid--flex .grid_col--4-of-6,
.grid--flex .grid_col--8-of-12 {
    width: auto;
    flex-basis: 66.66667%;
    max-width: 66.66667%;
}

.grid--flex .grid_col--1-of-4,
.grid--flex .grid_col--2-of-8,
.grid--flex .grid_col--3-of-12 {
    width: auto;
    flex-basis: 25%;
    max-width: 25%;
}

.grid--flex .grid_col--3-of-4,
.grid--flex .grid_col--6-of-8,
.grid--flex .grid_col--9-of-12 {
    width: auto;
    flex-basis: 75%;
    max-width: 75%;
}

.grid_col--push-1-of-1,
.grid_col--push-2-of-2,
.grid_col--push-3-of-3,
.grid_col--push-4-of-4,
.grid_col--push-5-of-5,
.grid_col--push-6-of-6,
.grid_col--push-7-of-7,
.grid_col--push-8-of-8,
.grid_col--push-12-of-12 {
    margin-left: 100%;
}

.grid_col--push-1-of-2,
.grid_col--push-2-of-4,
.grid_col--push-3-of-6,
.grid_col--push-4-of-8,
.grid_col--push-6-of-12 {
    margin-left: 50%;
}

.grid_col--push-1-of-3,
.grid_col--push-2-of-6,
.grid_col--push-4-of-12 {
    margin-left: 33.33333%;
}

.grid_col--push-2-of-3,
.grid_col--push-4-of-6,
.grid_col--push-8-of-12 {
    margin-left: 66.66667%;
}

.grid_col--push-1-of-4,
.grid_col--push-2-of-8,
.grid_col--push-3-of-12 {
    margin-left: 25%;
}

.grid_col--push-3-of-4,
.grid_col--push-6-of-8,
.grid_col--push-9-of-12 {
    margin-left: 75%;
}

.grid_col--pull-1-of-1,
.grid_col--pull-2-of-2,
.grid_col--pull-3-of-3,
.grid_col--pull-4-of-4,
.grid_col--pull-5-of-5,
.grid_col--pull-6-of-6,
.grid_col--pull-7-of-7,
.grid_col--pull-8-of-8,
.grid_col--pull-12-of-12 {
    margin-left: -100%;
}

.grid_col--pull-1-of-2,
.grid_col--pull-2-of-4,
.grid_col--pull-3-of-6,
.grid_col--pull-4-of-8,
.grid_col--pull-6-of-12 {
    margin-left: -50%;
}

.grid_col--pull-1-of-3,
.grid_col--pull-2-of-6,
.grid_col--pull-4-of-12 {
    margin-left: -33.33333%;
}

.grid_col--pull-2-of-3,
.grid_col--pull-4-of-6,
.grid_col--pull-8-of-12 {
    margin-left: -66.66667%;
}

.grid_col--pull-1-of-4,
.grid_col--pull-2-of-8,
.grid_col--pull-3-of-12 {
    margin-left: -25%;
}

.grid_col--pull-3-of-4,
.grid_col--pull-6-of-8,
.grid_col--pull-9-of-12 {
    margin-left: -75%;
}

.grid_col--1-of-5 {
    width: 20%;
}

.grid--flex .grid_col--1-of-5 {
    width: auto;
    flex-basis: 20%;
    max-width: 20%;
}

.grid_col--push-1-of-5 {
    margin-left: 20%;
}

.grid_col--pull-1-of-5 {
    margin-left: -20%;
}

.grid_col--2-of-5 {
    width: 40%;
}

.grid--flex .grid_col--2-of-5 {
    width: auto;
    flex-basis: 40%;
    max-width: 40%;
}

.grid_col--push-2-of-5 {
    margin-left: 40%;
}

.grid_col--pull-2-of-5 {
    margin-left: -40%;
}

.grid_col--3-of-5 {
    width: 60%;
}

.grid--flex .grid_col--3-of-5 {
    width: auto;
    flex-basis: 60%;
    max-width: 60%;
}

.grid_col--push-3-of-5 {
    margin-left: 60%;
}

.grid_col--pull-3-of-5 {
    margin-left: -60%;
}

.grid_col--4-of-5 {
    width: 80%;
}

.grid--flex .grid_col--4-of-5 {
    width: auto;
    flex-basis: 80%;
    max-width: 80%;
}

.grid_col--push-4-of-5 {
    margin-left: 80%;
}

.grid_col--pull-4-of-5 {
    margin-left: -80%;
}

.grid_col--1-of-6 {
    width: 16.66667%;
}

.grid--flex .grid_col--1-of-6 {
    width: auto;
    flex-basis: 16.66667%;
    max-width: 16.66667%;
}

.grid_col--push-1-of-6 {
    margin-left: 16.66667%;
}

.grid_col--pull-1-of-6 {
    margin-left: -16.66667%;
}

.grid_col--5-of-6 {
    width: 83.33333%;
}

.grid--flex .grid_col--5-of-6 {
    width: auto;
    flex-basis: 83.33333%;
    max-width: 83.33333%;
}

.grid_col--push-5-of-6 {
    margin-left: 83.33333%;
}

.grid_col--pull-5-of-6 {
    margin-left: -83.33333%;
}

.grid_col--1-of-7 {
    width: 14.28571%;
}

.grid--flex .grid_col--1-of-7 {
    width: auto;
    flex-basis: 14.28571%;
    max-width: 14.28571%;
}

.grid_col--push-1-of-7 {
    margin-left: 14.28571%;
}

.grid_col--pull-1-of-7 {
    margin-left: -14.28571%;
}

.grid_col--2-of-7 {
    width: 28.57143%;
}

.grid--flex .grid_col--2-of-7 {
    width: auto;
    flex-basis: 28.57143%;
    max-width: 28.57143%;
}

.grid_col--push-2-of-7 {
    margin-left: 28.57143%;
}

.grid_col--pull-2-of-7 {
    margin-left: -28.57143%;
}

.grid_col--3-of-7 {
    width: 42.85714%;
}

.grid--flex .grid_col--3-of-7 {
    width: auto;
    flex-basis: 42.85714%;
    max-width: 42.85714%;
}

.grid_col--push-3-of-7 {
    margin-left: 42.85714%;
}

.grid_col--pull-3-of-7 {
    margin-left: -42.85714%;
}

.grid_col--4-of-7 {
    width: 57.14286%;
}

.grid--flex .grid_col--4-of-7 {
    width: auto;
    flex-basis: 57.14286%;
    max-width: 57.14286%;
}

.grid_col--push-4-of-7 {
    margin-left: 57.14286%;
}

.grid_col--pull-4-of-7 {
    margin-left: -57.14286%;
}

.grid_col--5-of-7 {
    width: 71.42857%;
}

.grid--flex .grid_col--5-of-7 {
    width: auto;
    flex-basis: 71.42857%;
    max-width: 71.42857%;
}

.grid_col--push-5-of-7 {
    margin-left: 71.42857%;
}

.grid_col--pull-5-of-7 {
    margin-left: -71.42857%;
}

.grid_col--6-of-7 {
    width: 85.71429%;
}

.grid--flex .grid_col--6-of-7 {
    width: auto;
    flex-basis: 85.71429%;
    max-width: 85.71429%;
}

.grid_col--push-6-of-7 {
    margin-left: 85.71429%;
}

.grid_col--pull-6-of-7 {
    margin-left: -85.71429%;
}

.grid_col--1-of-8 {
    width: 12.5%;
}

.grid--flex .grid_col--1-of-8 {
    width: auto;
    flex-basis: 12.5%;
    max-width: 12.5%;
}

.grid_col--push-1-of-8 {
    margin-left: 12.5%;
}

.grid_col--pull-1-of-8 {
    margin-left: -12.5%;
}

.grid_col--3-of-8 {
    width: 37.5%;
}

.grid--flex .grid_col--3-of-8 {
    width: auto;
    flex-basis: 37.5%;
    max-width: 37.5%;
}

.grid_col--push-3-of-8 {
    margin-left: 37.5%;
}

.grid_col--pull-3-of-8 {
    margin-left: -37.5%;
}

.grid_col--5-of-8 {
    width: 62.5%;
}

.grid--flex .grid_col--5-of-8 {
    width: auto;
    flex-basis: 62.5%;
    max-width: 62.5%;
}

.grid_col--push-5-of-8 {
    margin-left: 62.5%;
}

.grid_col--pull-5-of-8 {
    margin-left: -62.5%;
}

.grid_col--7-of-8 {
    width: 87.5%;
}

.grid--flex .grid_col--7-of-8 {
    width: auto;
    flex-basis: 87.5%;
    max-width: 87.5%;
}

.grid_col--push-7-of-8 {
    margin-left: 87.5%;
}

.grid_col--pull-7-of-8 {
    margin-left: -87.5%;
}

.grid_col--1-of-12 {
    width: 8.33333%;
}

.grid--flex .grid_col--1-of-12 {
    width: auto;
    flex-basis: 8.33333%;
    max-width: 8.33333%;
}

.grid_col--push-1-of-12 {
    margin-left: 8.33333%;
}

.grid_col--pull-1-of-12 {
    margin-left: -8.33333%;
}

.grid_col--2-of-12 {
    width: 16.66667%;
}

.grid--flex .grid_col--2-of-12 {
    width: auto;
    flex-basis: 16.66667%;
    max-width: 16.66667%;
}

.grid_col--push-2-of-12 {
    margin-left: 16.66667%;
}

.grid_col--pull-2-of-12 {
    margin-left: -16.66667%;
}

.grid_col--5-of-12 {
    width: 41.66667%;
}

.grid--flex .grid_col--5-of-12 {
    width: auto;
    flex-basis: 41.66667%;
    max-width: 41.66667%;
}

.grid_col--push-5-of-12 {
    margin-left: 41.66667%;
}

.grid_col--pull-5-of-12 {
    margin-left: -41.66667%;
}

.grid_col--7-of-12 {
    width: 58.33333%;
}

.grid--flex .grid_col--7-of-12 {
    width: auto;
    flex-basis: 58.33333%;
    max-width: 58.33333%;
}

.grid_col--push-7-of-12 {
    margin-left: 58.33333%;
}

.grid_col--pull-7-of-12 {
    margin-left: -58.33333%;
}

.grid_col--10-of-12 {
    width: 83.33333%;
}

.grid--flex .grid_col--10-of-12 {
    width: auto;
    flex-basis: 83.33333%;
    max-width: 83.33333%;
}

.grid_col--push-10-of-12 {
    margin-left: 83.33333%;
}

.grid_col--pull-10-of-12 {
    margin-left: -83.33333%;
}

.grid_col--11-of-12 {
    width: 91.66667%;
}

.grid--flex .grid_col--11-of-12 {
    width: auto;
    flex-basis: 91.66667%;
    max-width: 91.66667%;
}

.grid_col--push-11-of-12 {
    margin-left: 91.66667%;
}

.grid_col--pull-11-of-12 {
    margin-left: -91.66667%;
}

.grid_col {
    box-sizing: border-box;
    display: inline-block;
    margin-right: -.25em;
    min-height: 1px;
    padding-left: 20px;
    vertical-align: top;
}

@media (max-width: 480px) {
    .grid_col {
        display: block;
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }
}

@media (max-width: 1200px) and (min-width: 1025px) {
    .grid_col[class*="grid_col--lg-"] {
        display: inline-block;
        margin-right: -.24em;
    }

    .grid--flex .grid_col[class*="grid_col--lg-"] {
        display: block;
        margin-right: 0;
    }

    .grid_col.grid_col--lg-1-of-1 {
        width: 100%;
    }

    .grid--flex .grid_col.grid_col--lg-1-of-1 {
        width: auto;
        flex-basis: 100%;
        max-width: 100%;
    }

    .grid_col.grid_col--lg-1-of-2,
    .grid_col.grid_col--lg-2-of-4 {
        width: 50%;
    }

    .grid--flex .grid_col.grid_col--lg-1-of-2,
    .grid--flex .grid_col.grid_col--lg-2-of-4 {
        width: auto;
        flex-basis: 50%;
        max-width: 50%;
    }

    .grid_col.grid_col--lg-1-of-3 {
        width: 33.33333%;
    }

    .grid--flex .grid_col.grid_col--lg-1-of-3 {
        width: auto;
        flex-basis: 33.33333%;
        max-width: 33.33333%;
    }

    .grid_col.grid_col--lg-2-of-3 {
        width: 66.66667%;
    }

    .grid--flex .grid_col.grid_col--lg-2-of-3 {
        width: auto;
        flex-basis: 66.66667%;
        max-width: 66.66667%;
    }

    .grid_col.grid_col--lg-1-of-4 {
        width: 25%;
    }

    .grid--flex .grid_col.grid_col--lg-1-of-4 {
        width: auto;
        flex-basis: 25%;
        max-width: 25%;
    }

    .grid_col.grid_col--lg-3-of-4 {
        width: 75%;
    }

    .grid--flex .grid_col.grid_col--lg-3-of-4 {
        width: auto;
        flex-basis: 75%;
        max-width: 75%;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .grid_col[class*="grid_col--lc-"] {
        display: inline-block;
        margin-right: -.24em;
    }

    .grid--flex .grid_col[class*="grid_col--lc-"] {
        display: block;
        margin-right: 0;
    }

    .grid_col.grid_col--lc-1-of-1 {
        width: 100%;
    }

    .grid--flex .grid_col.grid_col--lc-1-of-1 {
        width: auto;
        flex-basis: 100%;
        max-width: 100%;
    }

    .grid_col.grid_col--lc-1-of-2,
    .grid_col.grid_col--lc-2-of-4 {
        width: 50%;
    }

    .grid--flex .grid_col.grid_col--lc-1-of-2,
    .grid--flex .grid_col.grid_col--lc-2-of-4 {
        width: auto;
        flex-basis: 50%;
        max-width: 50%;
    }

    .grid_col.grid_col--lc-1-of-3 {
        width: 33.33333%;
    }

    .grid--flex .grid_col.grid_col--lc-1-of-3 {
        width: auto;
        flex-basis: 33.33333%;
        max-width: 33.33333%;
    }

    .grid_col.grid_col--lc-2-of-3 {
        width: 66.66667%;
    }

    .grid--flex .grid_col.grid_col--lc-2-of-3 {
        width: auto;
        flex-basis: 66.66667%;
        max-width: 66.66667%;
    }

    .grid_col.grid_col--lc-1-of-4 {
        width: 25%;
    }

    .grid--flex .grid_col.grid_col--lc-1-of-4 {
        width: auto;
        flex-basis: 25%;
        max-width: 25%;
    }

    .grid_col.grid_col--lc-3-of-4 {
        width: 75%;
    }

    .grid--flex .grid_col.grid_col--lc-3-of-4 {
        width: auto;
        flex-basis: 75%;
        max-width: 75%;
    }
}

@media (max-width: 768px) and (min-width: 481px) {
    .grid_col[class*="grid_col--md-"] {
        display: inline-block;
        margin-right: -.24em;
    }

    .grid--flex .grid_col[class*="grid_col--md-"] {
        display: block;
        margin-right: 0;
    }

    .grid_col.grid_col--md-1-of-1 {
        width: 100%;
    }

    .grid--flex .grid_col.grid_col--md-1-of-1 {
        width: auto;
        flex-basis: 100%;
        max-width: 100%;
    }

    .grid_col.grid_col--md-1-of-2,
    .grid_col.grid_col--md-2-of-4 {
        width: 50%;
    }

    .grid--flex .grid_col.grid_col--md-1-of-2,
    .grid--flex .grid_col.grid_col--md-2-of-4 {
        width: auto;
        flex-basis: 50%;
        max-width: 50%;
    }

    .grid_col.grid_col--md-1-of-3 {
        width: 33.33333%;
    }

    .grid--flex .grid_col.grid_col--md-1-of-3 {
        width: auto;
        flex-basis: 33.33333%;
        max-width: 33.33333%;
    }

    .grid_col.grid_col--md-2-of-3 {
        width: 66.66667%;
    }

    .grid--flex .grid_col.grid_col--md-2-of-3 {
        width: auto;
        flex-basis: 66.66667%;
        max-width: 66.66667%;
    }

    .grid_col.grid_col--md-1-of-4 {
        width: 25%;
    }

    .grid--flex .grid_col.grid_col--md-1-of-4 {
        width: auto;
        flex-basis: 25%;
        max-width: 25%;
    }

    .grid_col.grid_col--md-3-of-4 {
        width: 75%;
    }

    .grid--flex .grid_col.grid_col--md-3-of-4 {
        width: auto;
        flex-basis: 75%;
        max-width: 75%;
    }
}

@media (max-width: 480px) {
    .grid_col[class*="grid_col--sm-"] {
        display: inline-block;
        margin-right: -.24em;
    }

    .grid--flex .grid_col[class*="grid_col--sm-"] {
        display: block;
        margin-right: 0;
    }

    .grid_col.grid_col--sm-1-of-2,
    .grid_col.grid_col--sm-2-of-4 {
        width: 50%;
    }

    .grid--flex .grid_col.grid_col--sm-1-of-2,
    .grid--flex .grid_col.grid_col--sm-2-of-4 {
        width: auto;
        flex-basis: 50%;
        max-width: 50%;
    }

    .grid_col.grid_col--sm-1-of-3 {
        width: 33.33333%;
    }

    .grid--flex .grid_col.grid_col--sm-1-of-3 {
        width: auto;
        flex-basis: 33.33333%;
        max-width: 33.33333%;
    }

    .grid_col.grid_col--sm-2-of-3 {
        width: 66.66667%;
    }

    .grid--flex .grid_col.grid_col--sm-2-of-3 {
        width: auto;
        flex-basis: 66.66667%;
        max-width: 66.66667%;
    }

    .grid_col.grid_col--sm-1-of-4 {
        width: 25%;
    }

    .grid--flex .grid_col.grid_col--sm-1-of-4 {
        width: auto;
        flex-basis: 25%;
        max-width: 25%;
    }

    .grid_col.grid_col--sm-3-of-4 {
        width: 75%;
    }

    .grid--flex .grid_col.grid_col--sm-3-of-4 {
        width: auto;
        flex-basis: 75%;
        max-width: 75%;
    }

    .grid--flex .grid_col {
        width: auto;
        flex-basis: 100%;
        max-width: 100%;
    }
}

.grid_col--centered {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.grid_col--d-first {
    float: left;
}

.grid--flex .grid_col--d-first {
    float: none;
    order: -1;
}

.grid_col--d-last {
    float: right;
}

.grid--flex .grid_col--d-last {
    float: none;
    order: 1;
}

.grid--no-gutter {
    margin-left: 0;
}

.grid--no-gutter .grid_col {
    padding-left: 0;
}

.grid--no-gutter .grid_col--span-all {
    margin-left: 0;
    width: 100%;
}

.grid--gutter {
    margin-left: -20px;
}

.grid--gutter .grid_col {
    padding-left: 20px;
}

.grid--gutter-40 {
    margin-left: -40px;
}

.grid--gutter-40 .grid_col {
    padding-left: 40px;
}

.grid--no-space .grid_col {
    margin-right: 0;
}

.grid_col--ab {
    vertical-align: bottom;
}

.grid_col--am {
    vertical-align: middle;
}

/*==================================
 --------- UTILITY CLASSES --------
==================================*/
.hidden:not([role=tabpanel]) {
    display: none !important;
}

.hidden[role=tabpanel] {
    display: none;
}

.disabled {
    opacity: 0.1;
    border-color: #3F4C50;
    color: #3F4C50;
    transition: none;
    pointer-events: none;
}

.absolute {
    position: absolute;
}

.relative {
    position: relative;
}

.inline {
    display: inline;
}

.block {
    display: block;
}

.inline-block {
    display: inline-block;
}

.vtop {
    vertical-align: top;
}

.vmiddle {
    vertical-align: middle;
}

.vbottom {
    vertical-align: bottom;
}

.right {
    float: right;
}

.left {
    float: left;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

.text-center {
    text-align: center;
}

.text-justify {
    text-align: justify;
}

.uppercase {
    text-transform: uppercase;
}

.lowercase {
    text-transform: lowercase;
}

.nocase {
    text-transform: none;
}

.background--cover {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.background--brand {
    background-color: #327CB5;
}

.background--alt-brand {
    background-color: #5AC2A0;
}

.background--dark {
    background-color: #222;
}

.background--blue {
    background-color: #026B9E;
}

.background--dark-blue {
    background-color: #20537B;
}

.background--light {
    background-color: #fff;
}

.background--grey {
    background-color: #F5F6F9;
}

.background--dark-grey {
    background-color: #C7C8CA;
}

.background--green {
    background-color: #5AC2A0;
}

.background--success {
    background-color: #1E795B;
}

.background--error {
    background-color: #b72121;
}

.background--color-1 {
    background-color: #007A52;
}

.background--color-2 {
    background-color: #3E3E3E;
}

.background--color-3 {
    background-color: #003053;
}

.background--color-4 {
    background-color: #007CB9;
}

.background--color-5 {
    background-color: #757575;
}

.background--color-6 {
    background-color: #024473;
}

.background--color-7 {
    background-color: #06a1ec;
}

.background--color-8 {
    background-color: #bdbcbc;
}

.background--green-gradient {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.19) 0%, rgba(0, 0, 0, 0) 100%, rgba(255, 255, 255, 0) 100%), #00A26D;
}

.background--blue-gradient {
    background: linear-gradient(180deg, #2E6793 22.79%, rgba(22, 138, 228, 0) 100%), #327CB5;
}

.background--dark-blue-gradient {
    background: linear-gradient(180deg, #215278 22.79%, rgba(22, 138, 228, 0) 100%), #0F304F;
}

.background--grey-gradient {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.19) 0%, rgba(0, 0, 0, 0) 100%, rgba(255, 255, 255, 0) 100%), #3D4E51;
}

.color--default {
    color: #3F4C50;
}

.color--brand {
    color: #327CB5;
}

.color--dark {
    color: #222;
}

.color--blue {
    color: #026B9E;
}

.color--dark-blue {
    color: #20537B;
}

.color--grey {
    color: #F5F6F9;
}

.color--dark-grey {
    color: #C7C8CA;
}

.color--green {
    color: #5AC2A0;
}

.color--success {
    color: #1E795B;
}

.color--error {
    color: #b72121;
}

.color--1 {
    color: #007A52;
}

.color--2 {
    color: #3E3E3E;
}

.color--3 {
    color: #003053;
}

.color--4 {
    color: #007CB9;
}

.color--5 {
    color: #757575;
}

.color--6 {
    color: #024473;
}

.color--7 {
    color: #06a1ec;
}

.color--8 {
    color: #bdbcbc;
}

.dark {
    color: #fff;
}

.dark a {
    color: #fff;
}

.dark .button--cta {
    color: #fff;
}

.font-light {
    font-weight: 300;
}

.font-normal {
    font-weight: 400;
}

.font-medium {
    font-weight: 500;
}

.font-semibold {
    font-weight: 600;
}

.font-bold {
    font-weight: 700;
}

.font-black {
    font-weight: 900;
}

.font-larger {
    font-size: 1.8rem;
    line-height: 1.6667;
}

.font-small {
    font-size: small;
}

.font-smaller {
    font-size: smaller;
}

.line-height-1 {
    line-height: 1;
}

.no-margin {
    margin: 0;
}

.no-margin-top {
    margin-top: 0;
}

.no-margin-bottom {
    margin-bottom: 0;
}

.no-margin-left {
    margin-left: 0;
}

.no-margin-right {
    margin-right: 0;
}

.no-padding {
    padding: 0;
}

.no-padding-top {
    padding-top: 0;
}

.no-padding-bottom {
    padding-bottom: 0;
}

.no-padding-left {
    padding-left: 0;
}

.no-padding-right {
    padding-right: 0;
}

.full-width {
    width: 100%;
}

/*==================================
 --------- ACCESSIBILITY ----------
==================================*/
input:focus,
select:focus,
textarea:focus,
button:focus,
[href]:focus,
[tabindex]:focus,
[contentEditable=true]:focus,
.module_add-to-calendar-reveal:focus,
a:focus,
input[type="checkbox"]:focus+label:before,
input[type="radio"]:focus+label:before {
    outline-width: 2px;
    outline-style: dotted;
    outline-color: inherit;
}

[disabled],
[aria-disabled="true"],
[tabindex="-1"] {
    outline: none !important;
}

.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    border: 0 !important;
}

#maincontent:focus {
    outline: 0px;
}

.tooltip {
    position: absolute;
    padding: 5px;
    font-family: Arial;
    color: black;
    background: white;
    line-height: normal;
    transform: translate(0, -50%);
    z-index: 200;
    font-size: 12px;
    white-space: nowrap;
    margin-left: 5px;
}

.tooltip[data-position="left"] {
    transform: translate(-100%, -50%);
    margin-left: -5px;
}

.tooltip[aria-hidden="true"] {
    display: none;
}

.tooltip[aria-hidden="false"] {
    display: block;
}

/*---------- Javascript ----------*/
.js--loading:after {
    position: relative;
    left: 50%;
    display: inline-block;
    margin: 10px 0 10px -25px;
    font-family: "q4-icons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\eb27";
    font-size: 5rem;
    animation: spin 0.8s infinite linear;
}

.js--hidden:not([data-accordion]) {
    display: none !important;
}

.js--hidden[data-accordion] {
    display: none;
}

.js--visible {
    display: block;
}

.js--disabled {
    opacity: 0.3;
    transition: none;
    pointer-events: none;
}

.js--invalid input[type="text"],
.js--invalid select {
    border: 1px solid #b72121 !important;
}

.js--invalid input[type="checkbox"] {
    border-color: #b72121 !important;
}

/*==================================
 ----------- MODULE CSS -----------
==================================*/
/*-------- All Module CSS --------*/
.module_header,
.module_back-to-top,
.module_anchor-target,
.module_file-size,
.module_file-type,
.module_file-text {
    display: none;
}

.module_nav,
.module_headline,
.module_location,
.module_speakers,
.module_links,
.module_body,
.module_options,
.module_not-found {
    margin-bottom: 10px;
}

.module_error-container {
    margin-bottom: 30px;
    color: #b72121;
}

.module_add-to-calendar-reveal {
    cursor: pointer;
}

.module_add-to-calendar-reveal:focus {
    text-decoration: underline;
}

.module_add-to-calendar-list {
    display: none;
}

.module_add-to-calendar-list:after {
    content: "Select your Calendar";
    display: block;
    margin-top: 15px;
    font-size: 1.4rem;
    text-align: center;
}

.module_add-to-calendar-list a {
    text-decoration: none;
}

.fancybox-container .module_add-to-calendar-list {
    padding: 70px;
    margin: 0;
}

.module_add-to-calendar-item {
    display: inline-block;
    margin: 0 10px;
}

.module_add-to-calendar-item--ics {
    display: none;
}

.module_add-to-calendar-link {
    font-size: 2.4rem;
}

.module_add-to-calendar.js--hidden {
    display: none;
}

.module_actions,
.module_pager {
    margin-top: 20px;
}

.module_date-time {
    font-size: 1.6rem;
    line-height: 1.5;
    color: #9E9E9E;
    margin-bottom: 10px;
}

.dark .module_date-time {
    color: #fff;
}

.module_error-container {
    display: block;
}

.module_error-container ul {
    padding-left: 18px;
    list-style-type: disc;
}

.module_error-container ul>li {
    line-height: 1.5;
}

.module_error-container>br {
    display: none;
}

.module_error-container>span {
    display: block;
    line-height: 1.5;
}

.module_error-container>span:before {
    font-family: "q4-icons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\ec6b";
    margin-right: 5px;
}

.module_headline {
    font-family: "Roboto", sans-serif;
    font-size: 1.8rem;
    line-height: 1.3889;
    font-weight: 700;
}

.module_headline-link {
    color: #3F4C50;
}

.module_headline-link:hover {
    color: #9E9E9E;
}

.module_image {
    display: inline-block;
    max-width: 30%;
    margin-bottom: 16px;
}

.module_image--right {
    float: right;
    margin-left: 32px;
}

.module_image--left {
    float: left;
    margin-right: 32px;
}

.module_introduction:not(:empty) {
    margin-bottom: 35px;
}

.module-financial-year .module_introduction {
    display: none;
}

.module_item {
    padding-top: 20px;
    padding-bottom: 10px;
}

.module_item~.module_item {
    border-top: 1px solid #9E9E9E;
}

.module_label {
    display: inline-block;
    margin-bottom: 5px;
    font-size: 1.4rem;
}

.module_label+.module_required {
    font-size: 1.4rem;
}

.module_links>*,
.module_links li,
.module_links .module_presentation {
    display: inline;
}

@media only screen and (max-width: 480px) {

    .module_links>*,
    .module_links li,
    .module_links .module_presentation {
        display: block;
    }
}

.module_links.module_links--stack>*,
.module_links.module_links--stack li,
.module_links.module_links--stack .module_presentation {
    display: block;
}

.module_link {
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
    margin: 0 15px 5px 0;
    font-size: 1.4rem;
    font-weight: bold;
    text-transform: uppercase;
}

.module_link>.module_link-text,
.module_link>i,
.module_link>span {
    vertical-align: middle;
}

.module_link>i:before {
    display: block;
}

.module_link[style="DISPLAY:block;"],
.module_link[style="display: block;"] {
    display: inline-block !important;
}

.module_loader {
    display: inline-block;
    animation: spin 1s linear infinite;
}

.module_message {
    display: block;
    margin: 16px 0;
}

.module_message[style$="hidden;"],
.module_message:empty {
    display: none;
}

.module_message--success {
    color: #1E795B;
}

.module_message--success:before,
.MessageSent p:before {
    font-family: "q4-icons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\ed71";
    margin-right: 5px;
}

.module_message--error {
    color: #b72121;
}

.module_message--error:before {
    font-family: "q4-icons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\ed4f";
    margin-right: 5px;
}

.module_nav-link,
.module_nav .ModuleYearLink,
.module_nav-link:visited,
.module_nav .ModuleYearLink:visited {
    display: inline-block;
    margin-right: 5px;
    padding: 10px 20px;
    border: 2px solid #327CB5;
    color: #3F4C50;
    font-weight: normal;
}

.module_nav-link.selected,
.module_nav-link.selected:visited,
.module_nav .ModuleYearLink.selected,
.module_nav .ModuleYearLink.selected:visited,
.module_nav-link.selected:visited,
.module_nav-link.selected:visited:visited,
.module_nav .ModuleYearLink.selected:visited,
.module_nav .ModuleYearLink.selected:visited:visited {
    background-color: #327CB5;
    color: #fff;
}

@media only screen and (max-width: 480px) {

    .module_nav-link,
    .module_nav .ModuleYearLink,
    .module_nav-link:visited,
    .module_nav .ModuleYearLink:visited {
        margin-bottom: 10px;
    }
}

.module_options-label,
.module_options-select {
    margin-right: 10px;
}

@media only screen and (max-width: 480px) {

    .module_options-label,
    .module_options-select,
    .module_options-submit {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }
}

.module_pager a {
    color: #3F4C50;
}

.module_pager a[href] {
    color: #327CB5;
}

.module_reminder .module_label {
    margin-right: 10px;
}

.module_reminder.js--reminded {
    display: none;
}

.module_required {
    color: #3F4C50;
}

.module_required-text {
    font-size: 1.3rem;
    color: #3F4C50;
}

.module_rss {
    float: right;
}

.module_speakers li {
    margin-bottom: 5px;
}

.module-title-no-margin-bottom .module_title,
.module_title--no-margin-bottom {
    margin-bottom: 0;
}

h2.module_title {
    color: #327CB5;
}

.dark h2.module_title {
    color: #fff;
}

.module-hidden-title .module_title,
.module_title--hidden {
    display: none;
}

.module-title-line .module_title,
.module_title--line {
    display: flex;
    align-items: center;
}

.module-title-line .module_title:before,
.module_title--line:before,
.module-title-line .module_title:after,
.module_title--line:after {
    content: "";
    background-color: #C7C8CA;
    height: 1px;
    flex-grow: 1;
}

.module-title-line .module_title:before,
.module_title--line:before {
    margin-right: 25px;
}

.module-title-line .module_title:after,
.module_title--line:after {
    margin-left: 25px;
}

.module-title-line-left .module_title,
.module_title--line-left {
    display: flex;
    align-items: center;
}

.module-title-line-left .module_title:before,
.module_title--line-left:before {
    content: "";
    background-color: #C7C8CA;
    height: 1px;
    margin-right: 25px;
    flex-grow: 1;
}

.module-title-line-right .module_title,
.module_title--line-right {
    display: flex;
    align-items: center;
}

.module-title-line-right .module_title:after,
.module_title--line-right:after {
    content: "";
    background-color: #C7C8CA;
    height: 1px;
    margin-left: 25px;
    flex-grow: 1;
}

.module_view-all-link {
    font-size: 1.4rem;
    font-weight: bold;
}

.module_input[type="text"],
.module_input[type="email"],
.module_input[type="file"],
.module_dropdown,
.module textarea.module_input {
    display: block;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    /* Text area demands width*/
    width: 100%;
    max-width: none;
    padding: 12.5px 25px;
    border: 1px solid #5AC2A0;
    border-radius: 30px;
    background-color: #fff;
    font-family: inherit;
    font-size: 1.6rem;
    font-weight: 400;
}

.module_input[type="text"]::-ms-clear,
.module_input[type="email"]::-ms-clear,
.module_input[type="file"]::-ms-clear,
.module_dropdown::-ms-clear,
.module textarea.module_input::-ms-clear {
    display: none;
}

.module textarea.module_input {
    resize: vertical;
    min-height: 150px;
}

.module_input[type="file"],
.module_dropdown {
    cursor: pointer;
}

.module_input[type="file"] {
    line-height: 1;
}

.module_input--brand[type="text"] {
    display: inline-block;
    width: auto;
}

.module_dropdown {
    line-height: 1.2;
    padding: 15px 35px 15px 20px;
    background: #fff url("http://s27.q4cdn.com/486207181/files/design/svg/q4-icon_chevron-down-black.svg") no-repeat right 10px center;
    background-size: 14px 14px;
}

.module_dropdown::-ms-expand {
    display: none;
}

.module-details .module_date-time {
    margin-bottom: 15px;
}

/*- Investment Calculator Widget -*/
.module-calculator_input:not(:last-of-type) {
    margin-bottom: 20px;
}

.module-calculator_input h4 {
    margin-bottom: 12px;
}

.module-calculator_input label {
    display: inline-block;
    font-size: 1.6rem;
    margin-bottom: 5px;
}

.module-calculator_input input[type="checkbox"]+label {
    margin: 0;
}

.module-calculator_input button {
    background: transparent;
    padding: 0;
    border: none;
    font-size: 1.8rem;
    line-height: 1;
    position: absolute;
    right: 10px;
    bottom: 12px;
    color: #327CB5;
    cursor: pointer;
}

.module-calculator_input-row {
    padding-bottom: 10px;
}

.module-calculator_input-row input[type="text"] {
    margin-top: 10px;
    max-width: 300px;
}

.module-calculator_input-row--other input[type="text"] {
    display: none;
}

.module-calculator_input-row--other input.js--revealed[type="text"] {
    display: block;
}

.module-calculator_popup-container h2 {
    margin-top: 0;
    color: inherit;
}

.module-calculator_info td:first-child:before {
    content: none;
}

@media screen and (min-width: 1024px) {
    .module-calculator_popup-container {
        min-width: 920px;
    }
}

@media screen and (min-width: 481px) and (max-width: 768px) {
    .module-calculator_popup-container .table thead {
        display: none;
    }

    .module-calculator_popup-container .table tbody {
        border-top: 2px solid #327CB5;
        border-bottom: 2px solid #327CB5;
    }

    .module-calculator_popup-container .table td {
        display: block;
    }

    .module-calculator_popup-container .table td:before {
        content: attr(data-heading) ": ";
        font-weight: bold;
    }
}

/*- Committee Composition Widget -*/
.module-committee .module_container--desktop .module_header {
    display: table-header-group;
}

@media only screen and (max-width: 768px) {
    .module-committee .module_container--desktop {
        display: none;
    }
}

.module-committee .module_container--tablet {
    display: none;
}

@media only screen and (max-width: 768px) {
    .module-committee .module_container--tablet {
        display: block;
    }
}

.module-committee .module_header {
    display: block;
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
    font-weight: normal;
}

.module-committee .module_header--mobile {
    display: flex;
    align-items: center;
    border: none;
}

.module-committee_trigger[data-accordion] {
    display: inline-flex;
    padding: 0;
}

.module-committee_trigger[data-accordion]:after {
    position: static;
    transform: none;
}

.module-committee .module_item {
    padding: 0;
}

.module-committee .module_item~.module_item {
    border: 0;
}

.module-committee .module_item:nth-child(even) {
    background: rgba(0, 0, 0, 0.05);
}

.module-committee .grid_col {
    padding: 15px;
    text-align: center;
}

.module-committee .grid_col:first-child {
    text-align: left;
}

.module-committee .module-committee_category .grid_col:last-child {
    text-align: right;
}

.module-committee_custom-role {
    margin-left: 5px;
}

.module-committee_bio {
    padding: 0 15px 20px;
    text-align: left;
}

.module-committee_bio p {
    margin: 0;
}

.module-committee_bio p:not(:last-of-type) {
    margin-bottom: 16px;
}

.module-committee_legend-container {
    padding: 20px 15px;
}

.module-committee_legend {
    display: inline-block;
    margin-right: 30px;
}

.module-committee_legend [class*="q4-icon_"] {
    margin-right: 5px;
}

/*----- Dividends Module -----*/
.module-dividends .highcharts-series-0 rect {
    fill: #327CB5;
}

.module-dividends .highcharts-series-1 rect {
    fill: #5AC2A0;
}

/*----- Download List Module -----*/
.module-downloads .module_nav {
    display: none;
}

.module-downloads .module_item {
    padding: 15px 0;
}

.module-downloads_thumbnail,
.module-downloads_description,
.module-downloads_date {
    display: none;
}

.module-downloads_title {
    position: relative;
}

.module-downloads_title-link {
    margin: 0 20px 0 0;
}

.module-downloads .q4icons_icon {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
}

/*--------- Event Module ---------*/
.module-event .module_location,
.module-event .module_speakers h4,
.module-event .module_body {
    display: none;
}

.module-event .module_options {
    margin-bottom: 0;
    padding-bottom: 15px;
}

.module-event .module_item {
    border: none;
}

.module-event .module_item>*:first-child {
    margin-top: 0;
}

.module-event .module_item>*:last-child {
    margin-bottom: 0;
}

.module-event-details .module_speakers h4 {
    display: none;
}

.module-event-details .module_reminder-email.module_input {
    padding: 14px 20px;
}

.module-event-latest .module_item {
    border: none;
}

.module-event-latest .module_item:first-child {
    padding-top: 0;
}

.module-event-latest .module_item>*:first-child {
    margin-top: 0;
}

.module-event-latest .module_item>*:last-child {
    margin-bottom: 0;
}

.module-event-latest .button {
    margin-top: 40px;
}

.module-event-upcoming .module_nav {
    display: none;
}

.module-event-calendar_legend {
    display: none;
    text-align: left;
}

.module-event-calendar_legend ul {
    padding: 0;
    margin: 15px 0 25px 0;
}

.module-event-calendar_legend li {
    display: inline-block;
    vertical-align: top;
    position: relative;
    padding-left: 25px;
    margin-right: 30px;
}

.module-event-calendar_legend li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 3px;
    display: block;
    width: 16px;
    height: 16px;
    background-color: #327CB5;
    border-radius: 3px;
}

.module-event-calendar_legend li.module-event-calendar_legend-item--current:before {
    background-color: #5AC2A0;
}

.module-event-calendar .module_container--content {
    display: flex;
    width: 100%;
}

.module-event-calendar_calendar-container,
.module-event-calendar_event-container {
    width: 50%;
    text-align: center;
    vertical-align: middle;
}

.module-event-calendar_calendar-container {
    padding-right: 20px;
}

.module-event-calendar_event-container {
    padding: 50px;
    background-color: #F5F6F9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.module-event-calendar_splash [class*="q4-icon_"] {
    font-size: 4rem;
    line-height: 1;
    color: #327CB5;
}

.module-event-calendar_splash p {
    font-size: 1.4rem;
    line-height: 1.2;
}

.module-event-calendar_controls {
    padding: 15px;
    background-color: #327CB5;
    font-weight: bold;
    color: #fff;
}

.module-event-calendar_controls button {
    color: inherit;
    background-color: transparent;
    border: 0;
    padding: 5px 0;
}

.module-event-calendar_previous-month,
.module-event-calendar_month,
.module-event-calendar_next-month {
    display: inline-block;
}

.module-event-calendar_previous-month,
.module-event-calendar_next-month {
    cursor: pointer;
}

.module-event-calendar_previous-month {
    float: left;
}

.module-event-calendar_next-month {
    float: right;
}

.module-event-calendar_day-container {
    border-bottom: 1px solid rgba(50, 124, 181, 0.2);
    display: table;
    table-layout: fixed;
    width: 100%;
}

.module-event-calendar_week {
    display: table-row;
}

.module-event-calendar_days {
    display: table-row-group;
}

.module-event-calendar_days>div[role="row"] {
    display: table-row;
}

.module-event-calendar_day {
    display: table-cell;
    position: relative;
    width: 14.285%;
    margin: 0;
    padding: 8px 0 15px;
    border-top: 1px solid rgba(50, 124, 181, 0.2);
    border-left: 1px solid rgba(50, 124, 181, 0.2);
}

.module-event-calendar_day.calendar-dow-6 {
    border-right: 1px solid rgba(50, 124, 181, 0.2);
}

.module-event-calendar_day--name {
    padding: 10px 0;
    border: none;
}

.module-event-calendar_day--today {
    background: #F5F6F9;
}

.module-event-calendar_day--event {
    cursor: pointer;
}

.module-event-calendar_day--event:after {
    content: "";
    position: absolute;
    right: 10px;
    bottom: 10px;
    left: 10px;
    display: block;
    height: 4px;
    background-color: #327CB5;
}

.module-event-calendar_day--selected {
    background-color: #327CB5;
    color: #fff;
}

.module-event-calendar_day--selected:after {
    background-color: #fff;
}

.module-event-calendar_day--adjacent-month {
    color: rgba(51, 51, 51, 0.1);
    pointer-events: none;
}

.module-event-calendar_day--adjacent-month:after {
    content: none;
}

.module-event-calendar .module_item {
    padding: 0;
}

.module-event-calendar .module_date-time,
.module-event-calendar .module_headline {
    margin-bottom: 10px;
}

.module-event-calendar .module_add-to-calendar {
    margin: 0;
}

@media only screen and (max-width: 768px) {
    .module-event-details .module_reminder .grid_col {
        margin-bottom: 20px;
    }

    .module-event-calendar .module_container--content {
        display: block;
    }

    .module-event-calendar_calendar-container,
    .module-event-calendar_event-container {
        display: block;
        width: 100%;
    }

    .module-event-calendar_calendar-container {
        padding-right: 0;
    }

    .module-event-calendar_event-container {
        margin-top: 20px;
    }
}

@media only screen and (max-width: 480px) {
    .module-event-calendar_day {
        display: inline-block;
    }
}

/*---------- FAQ Module ----------*/
.module-faq .toggle-all {
    margin-bottom: 30px;
}

.module-faq .toggle-all .button:before {
    content: "Show all";
}

.module-faq .toggle-all.js--active .button:before {
    content: "Hide all";
}

/*--- Financial Report Modules ---*/
.module-financial-year .module_cover {
    margin-bottom: 15px;
}

.module-financial-year .module_cover img {
    display: inline-block;
    border: 1px solid #327CB5;
}

.module-financial-year .module_item {
    padding: 0;
    border: none;
}

.module-financial-year .module_item~.module_item {
    margin-top: 10px;
}

.module-financial-year .module_links {
    margin: 0;
}

.module-financial-year .module_link {
    margin: 0;
}

.module-financial-year .module-financial_year {
    text-align: center;
}

.module-financial-quarter .module_links>div {
    display: block;
}

.module-financial-quarter .module_links>div+div {
    margin-top: 15px;
}

.module-financial-quarter .module_link {
    margin: 0;
    font-size: 1.6rem;
    font-weight: normal;
    text-transform: none;
}

.module-financial-quarter .q4icons .q4icons_icon:before {
    font-size: 3rem;
}

.module-financial-table .module_container--content {
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.module-financial-table table {
    width: 100%;
}

.module-financial-table table tr {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
}

.module-financial-table table .module-financial-table_column-year {
    opacity: 0;
    visibility: hidden;
    position: relative;
    transform: translateX(0);
    z-index: 1;
    transition: transform 500ms ease, opacity 600ms ease-in, visibility 600ms ease-in;
}

.module-financial-table table .module-financial-table_column-year.visible-track {
    opacity: 1;
    display: block;
    visibility: visible;
}

.module-financial-table_column {
    font-weight: normal;
    padding: 20px 15px;
    width: 25%;
}

.module-financial-table_column-year {
    text-align: center;
    user-select: none;
}

.module-financial-table_column-report {
    display: inline-block;
    position: relative;
    z-index: 2;
    background: #C7C8CA;
    text-align: left;
}

.module-financial-table_column.doc:not(:last-child) {
    margin-right: 15px;
}

.module-financial-table_container-years {
    display: inline-block;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.module-financial-table .doc-missing {
    opacity: 0.5;
}

.module-financial-table_header {
    display: flex;
    background-color: #327CB5;
    color: #fff;
    font-weight: normal;
}

.module-financial-table_header-year {
    padding: 20px 15px;
    flex: 0 0 auto;
}

.module-financial-table_header .module-financial-table_track {
    display: inline-flex;
}

.module-financial-table_item-doc:not(:last-child) {
    margin-right: 15px;
}

.module-financial-table_track {
    display: flex;
    will-change: transform;
    transition: transform 500ms ease;
    z-index: 1;
}

.module-financial-table_track-arrow {
    background: transparent;
    box-shadow: none;
    background-color: transparent;
    border: none;
    color: white;
    font-size: 1.6rem;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
}

.module-financial-table_track-arrow:not(.module-financial-table_track-arrow--disabled) {
    cursor: pointer;
}

.module-financial-table_track-arrow--disabled {
    opacity: 0.3;
}

.module-financial-table_track-arrow--left {
    left: 20px;
}

.module-financial-table_track-arrow--right {
    right: 20px;
}

.module-financial-mashup .module_body {
    max-height: 300px;
    overflow: hidden;
    position: relative;
}

.module-financial-mashup .module-slideshow_viewer {
    margin-top: 25px;
}

.module-financial-mashup .module_body>*:first-child,
.module-financial-mashup .module_body>style+p {
    margin-top: 0;
}

.module-financial-mashup .module_body:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 50px;
    z-index: 1;
    background: -moz-linear-gradient(top, rgba(255, 255, 255, 0.5) 0%, white 70%, white 100%);
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.5) 0%, white 70%, white 100%);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5) 0%, white 70%, white 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#70ffffff', endColorstr='#ffffff', GradientType=0);
}

.module-financial-mashup h4 {
    margin-top: 16px;
}

.module-financial-mashup .module_body ul {
    margin: 16px 0;
    padding-left: 32px;
    list-style-type: disc;
}

.module-financial-mashup .module_body ul li {
    line-height: 1.5;
}

.module-financial-mashup .module-financial-mashup_documents .module_links+h4 {
    margin-top: 30px;
}

.module-financial-mashup .module-financial-mashup_documents .module_links>div {
    background-color: #F5F6F9;
    padding: 15px;
    margin-bottom: 1px;
}

.module-financial-mashup .module-financial-mashup_documents .module_links .module_link {
    margin: 0;
}

.module-financial-mashup .q4icons .q4icons_icon:before {
    font-size: 3rem;
}

.module-financial-mashup .q4-icon_chevron-right {
    font-size: 1rem;
    margin-left: 5px;
}

.module-financial-mashup .button {
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
}

.module-financial-mashup .button.js--selected {
    background: #1E795B;
    color: #fff;
    outline-color: #1E795B;
}

@media only screen and (min-width: 769px) {
    .module-financial-mashup .module_options--mobile {
        display: none;
    }
}

@media only screen and (max-width: 768px) {
    .module-financial-mashup .module_options--desktop {
        display: none;
    }
}

@media only screen and (max-width: 480px) {
    .module-financial-table_item-doc:not(:last-child) {
        margin-right: 7px;
    }
}

/* Latest Quarterly Result Widget */
.pane--banner .module-latest-quarter {
    position: relative;
    padding-top: 30px;
    padding-bottom: 30px;
}

.pane--banner .module-latest-quarter:before {
    content: "";
    background-color: rgba(0, 46, 82, 0.73);
    position: absolute;
    top: 0;
    bottom: 0;
    left: -1000%;
    width: 10000%;
}

.pane--banner .module-latest-quarter>* {
    position: relative;
    z-index: 1;
}

.module-latest-quarter .module_container--inner {
    padding: 0;
    border: none;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.module-latest-quarter .module-financial_quarter {
    font-family: "Roboto", sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 180px;
    height: 180px;
    padding: 10px;
    background-color: rgba(50, 124, 181, 0.4);
    border-radius: 100%;
}

.module-latest-quarter .module-financial_quarter-type {
    font-size: 6.6rem;
    line-height: 1;
    font-weight: 700;
}

.module-latest-quarter .module-financial_quarter-text {
    font-size: 2.3rem;
    line-height: 1.305;
}

.module-latest-quarter .module_links {
    margin: 0;
    text-align: left;
}

.module-latest-quarter .module_links>div {
    display: inline-block;
    text-align: center;
}

.module-latest-quarter .module_link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0 auto;
    width: 180px;
    height: 180px;
    padding: 10px;
    border-radius: 100%;
    transition: 0.3s ease-in-out;
    text-decoration: none;
}

.module-latest-quarter .module_link:hover {
    background-color: rgba(255, 255, 255, 0.13);
}

.module-latest-quarter .module_link .q4icons_icon:before {
    display: inline-block;
    font-size: 6rem;
    padding: 0;
}

.module-latest-quarter .module_link-text {
    font-family: "Roboto", sans-serif;
    display: block;
    margin: 15px 0 0;
    font-size: 1.8rem;
    line-height: 1;
    text-transform: none;
    font-weight: 700;
}

.module-latest-quarter .module_link-type-size {
    font-size: 1.2rem;
    line-height: 1.1667;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 7px;
}

.module-latest-quarter .grid_col {
    vertical-align: middle;
}

@media only screen and (max-width: 1200px) {
    .module-latest-quarter .module-financial_quarter {
        width: 160px;
        height: 160px;
    }

    .module-latest-quarter .module-financial_quarter-type {
        font-size: 6rem;
    }

    .module-latest-quarter .module_link {
        width: 160px;
        height: 160px;
    }

    .module-latest-quarter .module_link .q4icons_icon:before {
        font-size: 5rem;
    }

    .module-latest-quarter .module_link-text {
        font-size: 1.6rem;
    }
}

@media only screen and (max-width: 1024px) {
    .module-latest-quarter .module_links {
        border-left: 0;
    }

    .module-latest-quarter .module_link {
        margin-bottom: 15px;
    }
}

@media only screen and (max-width: 768px) {
    .module-latest-quarter .module_item>div:first-child {
        margin-bottom: 30px;
    }

    .module-latest-quarter .module-financial_quarter {
        margin-left: auto;
        margin-right: auto;
    }

    .module-latest-quarter .module_link {
        width: 140px;
        height: 140px;
    }
}

/*------ Formbuilder Module ------*/
.module-form_error-text[style*="visibility: hidden;"] {
    display: none;
}

.module-form--custom .module_container--content {
    display: none;
}

.module-form--custom .module_container--content.js--visible {
    display: block;
}

.module-form .module_container--content {
    margin-left: -20px;
}

@media only screen and (max-width: 768px) {
    .module-form .module_container--content {
        margin-left: 0;
    }
}

.module-form .module_error-container li[style="visibility: hidden;"] {
    display: none;
}

.module-form .module_required {
    margin-left: 3px;
}

.module-form .module_container--captcha>div {
    margin: 0;
    padding: 0;
}

.module-form .module_container--captcha>div .ErrorMessage {
    display: block;
    margin-top: 10px;
    font-size: 1.4rem;
    color: #b72121;
}

.module-form .module_container--captcha>div .ErrorMessage[style="visibility: hidden;"] {
    display: none;
}

.module-form_item {
    display: inline-block;
    width: 50%;
    margin-bottom: 20px;
    padding-left: 20px;
    vertical-align: top;
}

.module-form_item.module-form_inner-text,
.module-form_item.module-form_item--inquiry-type,
.module-form_item.module-form_item--additional-programeventcongress-information-if-applicable {
    display: block;
}

.module-form_item.module-form_item--additional-programeventcongress-information-if-applicable>label,
.module-form_item.module-form_inner-text>div {
    font-family: "Roboto", sans-serif;
    font-size: 2rem;
    line-height: 1.182;
    font-weight: 700;
    margin-top: 15px;
    margin-bottom: 15px;
}

.module-form_item-title {
    display: block;
    margin-bottom: 5px;
}

.module-form_item_description {
    display: block;
    margin-top: 5px;
}

.module-form_item>label,
.module-form_item legend {
    display: inline-block;
    margin-bottom: 5px;
    font-size: 1.4rem;
}

.module-form_item legend {
    float: left;
    margin-bottom: 15px;
    font-size: 1.6rem;
}

.module-form_item legend~ul {
    clear: both;
    padding-left: 10px;
}

.module-form_item ul li:not(:last-of-type) {
    padding-bottom: 5px;
}

.module-form_item--document-request,
.module-form_item--are-you-an-investor,
.module-form_item--description,
.module-form_item--consent-checkbox,
.module-form_item--europe-disclaimer,
.module-form_item--privacy,
.module-form_item--consent-intro {
    width: 100%;
}

@media only screen and (max-width: 768px) {
    .module-form_item {
        width: 100%;
        padding-left: 0;
    }
}

.module-form_error-text {
    color: #b72121;
}

.module-form_error-text[style="visibility:hidden;"] {
    display: none;
}

.module-form .CaptchaContainer {
    display: block;
}

.module-form .CaptchaContainer input[type="text"] {
    width: 100%;
}

.fancybox-slide--form .fancybox-content {
    margin: 10px auto;
    max-width: 1000px;
    width: 80% !important;
    height: calc(100% - 20px);
    overflow: visible;
}

.fancybox-slide--form_confirmation .fancybox-content {
    max-width: 700px;
}

.fancybox-slide--form .fancybox-button--close {
    display: none;
}

.module-form--meeting {
    padding: 0 20px !important;
}

.module-form--meeting .module_container--outer {
    padding: 0 !important;
}

.module-form--meeting_header {
    padding: 20px !important;
}

.module-form--meeting_header .module_container--outer {
    padding: 0 !important;
}

@media screen and (min-width: 769px) {
    .module-form--meeting_header {
        padding: 20px !important;
    }

    .module-form--meeting_header .grid {
        direction: rtl;
    }

    .module-form--meeting_header .grid .grid_col {
        direction: ltr;
    }
}

.module-form--meeting_header-intro {
    font-size: 1.3rem;
}

@media only screen and (max-width: 768px) {
    .module-form--meeting_header-intro {
        text-align: center;
    }
}

.module-form--meeting_header-intro h3,
.module-form--meeting_header-intro .h3 {
    margin: 0 0 10px 0;
    color: inherit;
    font-size: 2.6rem;
}

.module-form--meeting_header-intro p {
    margin: 0;
}

@media only screen and (max-width: 768px) {
    .module-form--meeting_header-logo {
        text-align: center;
        margin-bottom: 10px;
    }
}

.module-form--meeting_header-logo span {
    font-size: 1.1rem;
    display: block;
}

.module-form--meeting_header-logo img {
    margin: 5px;
}

.module-form--meeting_footer {
    background-color: #327CB5;
    color: #fff;
    font-size: 1.3rem;
}

.module-form--meeting_footer img {
    margin-right: 20px;
    vertical-align: bottom;
}

.module-form--meeting .module_introduction {
    font-size: 1.3rem;
    margin: 0;
}

.module-form--meeting .module-form_item label,
.module-form--meeting .module-form_item legend {
    line-height: 15px;
    vertical-align: top;
}

.module-form--meeting .module-form_item--namehidden .module_input {
    margin-top: 20px;
}

.module-form--meeting .module-form_item--namehidden label {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    border: 0 !important;
}

@media only screen and (min-width: 769px) {
    .module-form--meeting .module-form_item--additional-information-optional {
        width: 75%;
    }
}

.module-form--meeting .module-form_item--date-request-optional {
    position: relative;
}

@media only screen and (min-width: 769px) {
    .module-form--meeting .module-form_item--date-request-optional {
        width: 25%;
    }
}

.module-form--meeting .module-form_item--date-request-optional:before {
    font-family: "q4-icons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\e921";
    position: absolute;
    right: 20px;
    bottom: calc(50% - 19px);
    color: #3F4C50;
}

.module-form--meeting .module-form_item--current-shareholder {
    display: block;
}

.module-form--meeting .module-form_item--current-shareholder legend {
    margin-bottom: 0;
}

@media only screen and (max-width: 480px) {
    .module-form--meeting .module-form_item--current-shareholder legend {
        display: block;
        float: none;
    }
}

.module-form--meeting .module-form_item--current-shareholder ul {
    display: inline-block;
    padding-left: 20px;
}

@media only screen and (max-width: 480px) {
    .module-form--meeting .module-form_item--current-shareholder ul {
        display: block;
        padding-left: 0;
        padding-top: 10px;
    }
}

.module-form--meeting .module-form_item--current-shareholder ul li {
    padding-left: 20px;
    display: inline-block;
    vertical-align: top;
}

@media only screen and (max-width: 480px) {
    .module-form--meeting .module-form_item--current-shareholder ul li {
        padding-left: 0;
        padding-right: 20px;
    }
}

.module-form--meeting .module-form_item--consent-checkbox {
    width: 100%;
}

.module-form--meeting .module-form_item--consent-checkbox label {
    padding-left: 30px;
    position: relative;
}

.module-form--meeting .module-form_item--consent-checkbox label:before,
.module-form--meeting .module-form_item--consent-checkbox label:after {
    position: absolute;
    left: 0;
    top: 50% !important;
    transform: translateY(-50%);
}

.module-form--meeting .module-form_item--consent-checkbox label:after {
    left: 3px;
}

.module-form--meeting .module-form_itemCaptcha {
    position: relative;
    padding-left: 25px;
}

.module-form--meeting .module-form_itemCaptcha input[type="text"] {
    color: #3F4C50;
}

.module-form--meeting .module_dropdown {
    color: #3F4C50;
}

.module-form--meeting .module_input {
    color: #3F4C50;
}

.module-form--meeting .module_required {
    display: none;
}

.module-form--meeting .module_actions {
    margin: 0 -20px;
    padding: 20px;
    background-color: #373737;
    text-align: right;
}

.module-form--meeting .module_actions .module_link {
    color: #fff;
    margin: 0 15px 0 0;
    text-decoration: none;
    text-transform: none;
    font-size: 1.4rem;
}

.module-form--meeting .module_actions [type="submit"][disabled] {
    opacity: 0.5;
    pointer-events: none;
}

.module-form--meeting_confirmation {
    font-size: 1.8rem;
    text-align: center;
    max-width: 520px;
    margin: auto;
}

.module-form--meeting_confirmation .module_container--inner:before {
    font-family: "q4-icons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\e920";
    font-size: 4.6rem;
    color: #222;
    display: block;
    margin: auto;
}

@media only screen and (max-width: 768px) {
    .module-form--meeting .module-form_item--namehidden .module_input {
        margin-top: 0;
    }
}

.module-glossary .module_header {
    display: block;
}

.module-glossary .module_header table {
    width: 100%;
    table-layout: fixed;
}

.module-glossary .module_header table a {
    color: #3F4C50;
    font-weight: normal;
}

.module-glossary .module_header table a[href] {
    color: #327CB5;
}

/*---------- Job Modules ---------*/
.module-job-list_table-wrap {
    overflow-x: auto;
}

.module-job-details_description-container {
    margin-bottom: 35px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.module-job-details_description {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.module-job-details_description label {
    font-weight: normal;
}

.module-job-details_description input {
    width: auto;
    max-width: none;
    padding: 0;
    border: none;
    float: right;
    font-family: "Lato", sans-serif;
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 0;
}

@media only screen and (max-width: 480px) {
    .module-job-details_description label:after {
        content: ":";
    }

    .module-job-details_description input {
        display: block;
        float: none;
        margin-top: 5px;
    }
}

.module-job-details .grid_col {
    padding: 15px 20px;
}

.module-job-application_table {
    display: block;
    width: 100%;
    margin-left: -20px;
    font-size: 0;
}

.module-job-application_table tr {
    display: inline-block;
    width: 50%;
    margin-bottom: 20px;
    padding-left: 20px;
    vertical-align: top;
    font-size: 1.6rem;
}

.module-job-application_table tr:last-child {
    margin-bottom: 0;
}

.module-job-application_table tr.module-job-application_cover-letter-text,
.module-job-application_table tr.module-job-application_resume-text {
    width: 100%;
}

.module-job-application_table tr td {
    display: block;
    position: relative;
}

.module-job-application_table tr label {
    display: inline-block;
    margin-bottom: 5px;
    font-size: 1.4rem;
}

@media only screen and (max-width: 768px) {
    .module-job-application_table {
        margin-left: 0;
    }

    .module-job-application_table tr {
        width: 100%;
        padding-left: 0;
    }
}

.module-job-application .module_required {
    font-size: 1.4rem;
}

/*----- Miscellaneous Modules ----*/
.module-script {
    display: none;
}

.module-slideshow_ratio {
    padding-bottom: 56.25%;
    /* this should be changed with aspecRatio option in widget */
    position: relative;
}

.module-slideshow_viewer:not(.grid_col) {
    display: inline-block;
    width: 100%;
    max-width: 640px;
}

.module-slideshow_viewer:not(.grid_col):not(:last-child) {
    margin-bottom: 30px;
}

.module-slideshow_title {
    margin-bottom: 10px;
    display: none;
}

.module-slideshow .module_links>*+* {
    margin-top: 15px;
}

.module-slideshow_link {
    font-size: 1.4rem;
    font-weight: bold;
    text-transform: uppercase;
}

.module-slideshow iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
}

.module-slideshow .module_link {
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: none;
}

.module-slideshow .module_link-text {
    margin-right: 30px;
}

.module-slideshow .size {
    margin-left: 7px;
}

.module-slideshow .q4icons .q4icons_icon:before {
    content: "\e91d";
    font-size: 2.8rem;
    padding: 0;
    color: #5AC2A0;
}

.module-rss p+h2 {
    margin: 40px 0 30px;
}

.module-round-image {
    position: relative;
}

.module-round-image .module_abs-image {
    position: absolute;
    padding-bottom: 40px;
    top: 53px;
    left: 0;
    width: 33.33333%;
    display: block;
    z-index: 1;
}

.module-round-image .module_abs-image img {
    width: 100%;
    max-width: 400px;
}

@media only screen and (max-width: 768px) {
    .module-round-image .module_abs-image {
        position: static;
        margin-left: -70px;
        width: auto;
    }

    .module-round-image .module_abs-image img {
        max-width: 450px;
    }
}

.module-mitochondrial .module_container-image {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 35%;
}

.module-mitochondrial .module_container-image span img {
    height: 100%;
}

.module-mitochondrial .module_title {
    color: #327CB5;
}

.module-mitochondrial .module_title span {
    color: #3F4C50;
}

/*------ Navigation Modules ------*/
.nav_close {
    display: none;
}

.nav_guide {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

@media only screen and (max-width: 1024px) {
    .nav_guide {
        display: none;
    }
}

.nav a[tabindex="-1"]:focus {
    /* navigation needs this for accessibility purpose  */
    outline-width: 2px !important;
    outline-style: dotted !important;
    outline-color: inherit !important;
}

.nav--sitemap {
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 100px;
    padding-bottom: 100px;
}

.nav--sitemap a {
    font-size: 1.4rem;
    font-weight: 700;
    display: inline-block;
}

.nav--sitemap .level1 {
    column-count: 3;
    column-gap: 20px;
}

.nav--sitemap .level1>li {
    break-inside: avoid;
    display: block;
}

.nav--sitemap .level1>li:not(:last-of-type) {
    margin-bottom: 35px;
}

.nav--sitemap .level1>li>a,
.nav--sitemap .level1>li>a:visited {
    margin-bottom: 15px;
    font-size: 2.4rem;
}

.nav--sitemap .level2 li {
    padding: 5px 0;
}

.nav--sitemap .level2>li>a {
    margin-bottom: 5px;
}

.nav--sitemap .level3 li {
    padding-left: 15px;
}

@media only screen and (max-width: 768px) {
    .nav--sitemap .level1 {
        column-count: 2;
    }
}

@media only screen and (max-width: 480px) {
    .nav--sitemap .level1 {
        column-count: 1;
        column-gap: normal;
    }
}

/*-------- News Module CSS -------*/
.module-news .module_nav,
.module-news .module_thumbnail-link,
.module-news .module_more-link {
    display: none;
}

.module-news .module_item {
    border: none;
}

.module-news .module-news_search {
    display: inline-block;
    vertical-align: middle;
    position: relative;
}

.module-news .module-news_search .module-search_input {
    padding: 17px 15px;
}

.module-news .module-news_search .module-search_button {
    top: 17px;
}

.module-news .module_item>*:first-child {
    margin-top: 0;
}

.module-news .module_item>*:last-child {
    margin-bottom: 0;
}

.module-news-latest {
    position: relative;
}

.module-news-latest--home .module-news-latest_image {
    position: absolute;
    top: 0;
    left: 0;
    width: 41.66667%;
    display: block;
    max-height: 100%;
}

.module-news-latest--home .module-news-latest_image .mobile {
    display: none;
}

.module-news-latest--ir .module-news-latest_image {
    position: absolute;
    bottom: -80px;
    right: 0;
    width: 41.66667%;
    display: block;
    max-height: 100%;
    text-align: right;
    z-index: 1;
}

.module-news-latest .module_item {
    padding-top: 10px;
    border: none;
}

.module-news-latest .module_item>*:first-child {
    margin-top: 0;
}

.module-news-latest .module_item>*:last-child {
    margin-bottom: 0;
}

.module-news-latest .button {
    margin-top: 30px;
}

.module-news-list .module_item {
    padding-left: 0;
    padding-top: 20px;
}

.module-news-list .module_item+.module_item {
    border-top: 1px solid rgba(55, 55, 55, 0.25);
}

.module-news-details .module_view-all-link {
    display: inline-block;
    margin-bottom: 25px;
}

.module-news-details .module_view-all-link--bottom {
    margin-top: 25px;
    margin-bottom: 0;
}

.module-news-details_category {
    display: none;
}

.module-news-details ul {
    margin: 16px 0;
    padding-left: 32px;
    list-style-type: disc;
}

.module-news-details ul li {
    line-height: 1.5;
}

.module-news-details .module_multimedia .module_link {
    margin: 0;
    display: block;
    font-weight: normal;
    text-transform: none;
}

.module-news-details .module_multimedia-caption {
    margin-bottom: 16px;
}

.module-news-details .module_multimedia-caption .module_file-text {
    display: block;
}

.module-news-details .module_multimedia-caption .module_file-resolution {
    display: none;
}

.module-news-details .module_multimedia-image {
    width: 100%;
    float: none;
}

.module-news-details .module_multimedia-size {
    margin-top: 10px;
}

.module-news-details .module_multimedia-size .module_file-size {
    display: inline;
}

.module-news-details .module_multimedia-size .module_file-resolution:before {
    content: "(";
}

.module-news-details .module_multimedia-size .module_file-resolution:after {
    content: ")";
}

.module-news-details a {
    word-break: break-all;
}

.module-news-details.module-news-details img {
    padding: 0;
    margin-right: 10px;
}

@media only screen and (max-width: 1024px) {
    .module-news-details .module_multimedia-item {
        margin-bottom: 30px;
    }
}

@media only screen and (max-width: 768px) {
    .module-news .module_options .grid_col {
        margin-bottom: 20px;
    }

    .module-news-latest.module-news-latest.module-news-latest {
        padding-top: 30px;
    }

    .module-news-latest--home .module-news-latest_image {
        position: static;
        width: 100%;
        margin-bottom: 30px;
        text-align: center;
    }

    .module-news-latest--home .module-news-latest_image .desktop {
        display: none;
    }

    .module-news-latest--home .module-news-latest_image .mobile {
        display: inline-block;
    }

    .module-news-latest--ir .module-news-latest_image {
        position: static;
        width: auto;
        margin-right: -30px;
        margin-bottom: 30px;
    }

    .module-news-latest .module_title:after {
        display: none;
    }
}

@media screen and (max-width: 480px) {
    .module-news .module-news_search {
        width: 100%;
    }
}

/*---------- Pager ----------*/
.pager {
    margin: 15px 0;
}

.pager_list-item {
    display: inline-block;
    vertical-align: top;
    margin: 5px 0;
}

.pager_list-item:not(:last-child) button {
    margin-right: 5px;
}

.pager_dots {
    margin-right: 5px;
    appearance: none;
    border: 1px solid #327CB5;
    color: #327CB5;
    background-color: #F5F6F9;
    border-radius: 3px;
    width: 35px;
    height: 35px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 35px;
    text-align: center;
    cursor: default;
}

.pager_button {
    appearance: none;
    border: 1px solid #327CB5;
    color: #327CB5;
    background-color: #F5F6F9;
    border-radius: 3px;
    min-width: 35px;
    height: 35px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s;
    cursor: pointer;
}

.pager_button:not(.js--disabled):hover {
    color: #fff;
    background-color: #327CB5;
}

.pager_button:not(.js--disabled):focus {
    color: #fff;
    background-color: #327CB5;
    outline-color: #327CB5;
}

.pager_button.js--active {
    color: #fff;
    background-color: #327CB5;
}

.pager_button.js--disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.pager_button [class^="q4-icon_"],
.pager_button [class*=" q4-icon_"] {
    color: inherit;
    font-size: 1rem;
    pointer-events: none;
}

/*------ Person List Module ------*/
.module-person--management {
    position: relative;
    overflow: hidden;
}

.module-person--management:after {
    content: "";
    background-color: #F5F6F9;
    position: absolute;
    top: 58%;
    left: 0;
    right: 0;
    height: 28.6%;
    transform: translateY(-50%);
}

.module-person--management>* {
    position: relative;
    z-index: 1;
}

.module-person--top {
    position: relative;
    margin-top: -45px;
}

.module-person .module-person_description,
.module-person .module-person_res-photo-container,
.module-person .module_comma {
    display: none;
}

.module-person .module_item {
    position: relative;
    border: none;
    padding-top: 0;
    padding-bottom: 40px;
}

.module-person .module_item-inner {
    cursor: pointer;
    text-align: center;
}

.module-person .module-person_photo-container {
    border-radius: 100%;
    overflow: hidden;
    box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.15);
    background-color: #fff;
    position: relative;
    max-width: 240px;
    margin-left: auto;
    margin-right: auto;
}

.module-person .module-person_photo-container:after {
    content: "";
    border: 15px solid rgba(241, 241, 241, 0.4);
    border-radius: 100%;
    position: absolute;
    top: 15px;
    left: 15px;
    width: calc(100% - 30px);
    height: calc(100% - 30px);
}

.module-person .module-person_photo-container>span {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 100%;
    overflow: hidden;
}

.module-person .module-person_photo-container img {
    width: 100%;
    vertical-align: top;
}

.module-person .module-person_name-container {
    margin-top: 24px;
}

.module-person .module-person_name-container h3 {
    line-height: 1;
    margin: 0;
}

.module-person .module-person_name-wrap {
    font-size: 2.2rem;
    line-height: 1.182;
}

.module-person .module-person_name-wrap:after {
    font-family: 'q4-icons';
    content: "\e919";
    color: #327CB5;
    font-size: 2.4rem;
    font-weight: normal;
    margin-left: 15px;
}

.module-person .module-person_suffix .module_comma {
    display: inline;
}

.module-person .module-person_title {
    font-size: 1.5rem;
    line-height: 1.2;
    font-weight: 400;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    display: block;
    margin-top: 22px;
    color: #000;
}

.fancybox-container .module-person .module_item {
    max-width: 980px;
    padding: 70px;
}

.fancybox-container .module-person .module_item-inner {
    text-align: left;
    cursor: default;
}

.fancybox-container .module-person_photo-container,
.fancybox-container .module-person_name-container {
    display: inline-block;
    vertical-align: middle;
}

.fancybox-container .module-person .module-person_photo-container:after {
    display: none;
}

.fancybox-container .module-person_name-container {
    position: static;
    background: transparent;
    text-align: left;
    opacity: 1;
    visibility: visible;
    cursor: initial;
    max-width: 65%;
    padding-left: 40px;
    margin-top: 0;
}

.fancybox-container .module-person_name-container h3 {
    position: static;
    transform: none;
}

.fancybox-container .module-person_name-container a {
    color: #3F4C50;
}

.fancybox-container .module-person_photo-container {
    max-width: 30%;
}

.fancybox-container .module-person_name-wrap {
    display: block;
    font-size: 3.6rem;
    line-height: 1.45;
}

.fancybox-container .module-person .module-person_name-wrap:after {
    display: none;
}

.fancybox-container .module-person_title {
    font-size: 2.4rem;
}

.fancybox-container .module-person_description-container {
    margin-top: 40px;
}

.fancybox-container .module-person_description {
    display: block;
}

.module-person-accordion .module_container--inner>.grid_col {
    padding-bottom: 20px;
}

.module-person-accordion .module-person_name-container h3 {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    color: inherit;
    margin: 0;
}

.module-person-accordion .module-person_suffix .module_comma {
    display: inline;
}

.module-person-accordion .module-person_title {
    font-size: 1.5rem;
    line-height: 1.2;
    font-weight: 400;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    display: block;
    color: #000;
}

.module-person-accordion .module-person_title:not(:empty) {
    margin-top: 10px;
}

.module-person-accordion .module_comma {
    display: none;
}

.module-person-accordion .module-person_photo-container {
    float: left;
    margin: 0 25px 15px 0;
}

.module-person-accordion .module-person_photo-container img {
    display: block;
    margin: auto;
}

.module-person-accordion .module-person_description>*:first-child {
    margin-top: 0;
}

.module-person-accordion .module-person_description>*:last-child {
    margin-bottom: 0;
}

.module-person-accordion .module-person_res-photo-container>span {
    margin-right: 10px;
}

.module-person-accordion .module-person_res-photo-container>span:empty {
    display: none;
}

.module-person-details .module_title {
    display: none;
}

.module-person-details .module_comma {
    display: none;
}

.module-person-details_photo-container,
.module-person-details_name-container {
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
}

.module-person-details_photo-container {
    max-width: 30%;
    margin-right: 40px;
}

.module-person-details_name {
    display: block;
    margin-bottom: 10px;
    font-size: 3.6rem;
    color: #327CB5;
}

.module-person-details_title {
    display: block;
    font-size: 2.4rem;
}

.module-person-details_description-container {
    margin-top: 40px;
}

@media only screen and (max-width: 1023px) {
    .module-person-accordion .module_container--inner>.grid_col {
        flex-basis: 100%;
        max-width: 100%;
    }
}

@media only screen and (max-width: 768px) {
    .module-person--top {
        margin-top: -30px;
    }

    .fancybox-container .module-person .module_item {
        padding-left: 20px;
        padding-right: 20px;
    }

    .fancybox-container .module-person_photo-container {
        display: block;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 35px;
    }

    .fancybox-container .module-person_name-container {
        display: block;
        max-width: none;
        padding-left: 0;
    }

    .module-person-accordion .module-person_photo-container {
        float: none;
        margin: 0 auto 15px auto;
        text-align: center;
    }

    .module-person-accordion .module-person_res-photo-container>span {
        display: block;
        margin: 0 0 10px 0;
    }

    .module-person-details_photo-container {
        margin-right: 15px;
        margin-bottom: 35px;
    }
}

@media only screen and (max-width: 480px) {
    .fancybox-container .module-person_photo-container {
        margin-right: 0;
        max-width: none;
    }

    .fancybox-container .module-person_name {
        font-size: 2.4rem;
        line-height: 1.2;
    }

    .fancybox-container .module-person_title {
        font-size: 1.8rem;
        line-height: 1.125;
    }

    .module-person-details_photo-container {
        margin-right: 0;
        max-width: none;
    }
}

/*--------- Presentation Module ---------*/
.module-presentation .module_body {
    display: none;
}

/*------ Q4 Preview Toolbar ------*/
body.PreviewBody {
    margin: 0;
    background-position: 0;
}

body.PreviewBody .PreviewToolBar {
    position: fixed;
    top: 100%;
    bottom: auto;
    width: 100%;
    margin: 0;
    padding: 35px 20px;
    border: 0;
    background: #222;
    font-size: 0;
    text-align: left;
    color: #fff;
    z-index: 100;
}

body.PreviewBody .PreviewToolBar.js--open {
    top: auto;
    bottom: 0;
}

body.PreviewBody .PreviewToolBar .PreviewTrigger {
    position: absolute;
    top: 0;
    left: 10px;
    padding: 20px;
    background: #222;
    transform: translate(0, -100%);
    font-size: 2.4rem;
    cursor: pointer;
}

body.PreviewBody .PreviewToolBar .PreviewTrigger.js--active i:before {
    content: "\ed6d";
}

body.PreviewBody .PreviewToolBar .PreviewFloatLeft,
body.PreviewBody .PreviewToolBar .PreviewDateControls {
    display: inline-block;
    vertical-align: middle;
}

body.PreviewBody .PreviewToolBar .PreviewFloatLeft:before,
body.PreviewBody .PreviewToolBar .PreviewDateControls:before {
    font-size: 1.6rem;
    margin-right: 15px;
    line-height: 50px;
}

body.PreviewBody .PreviewToolBar .PreviewFloatLeft {
    float: none;
}

body.PreviewBody .PreviewToolBar .PreviewFloatLeft:before {
    content: "Select Preview Type:";
}

body.PreviewBody .PreviewToolBar .PreviewDateControls {
    float: right;
}

body.PreviewBody .PreviewToolBar .PreviewDateControls:before {
    content: "Select Preview Date:";
}

body.PreviewBody .PreviewToolBar img {
    display: none;
}

body.PreviewBody .PreviewToolBar input[type="radio"],
body.PreviewBody .PreviewToolBar label,
body.PreviewBody .PreviewToolBar input[type="text"],
body.PreviewBody .PreviewToolBar select,
body.PreviewBody .PreviewToolBar input[type="submit"] {
    display: inline-block;
    margin-right: 5px;
    font-family: "Lato", sans-serif !important;
    font-weight: 300;
    font-size: 1.4rem;
    text-transform: uppercase;
    vertical-align: baseline;
}

body.PreviewBody .PreviewToolBar input[type="text"],
body.PreviewBody .PreviewToolBar select,
body.PreviewBody .PreviewToolBar input[type="submit"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 15px 20px;
    border: 0;
    border-radius: 0;
}

body.PreviewBody .PreviewToolBar label+input[type="radio"] {
    margin-left: 15px;
}

body.PreviewBody .PreviewToolBar input[type="text"] {
    min-width: 110px;
}

body.PreviewBody .PreviewToolBar select {
    padding: 15px 35px 15px 20px;
    background: #fff url("http://s27.q4cdn.com/486207181/files/design/svg/q4-icon_chevron-down-black.svg") no-repeat right 10px center;
    background-size: 14px 14px;
}

body.PreviewBody .PreviewToolBar select::-ms-expand {
    display: none;
}

body.PreviewBody .PreviewToolBar input[type="submit"] {
    background: #327CB5;
    color: #fff !important;
}

@media only screen and (max-width: 1024px) {

    body.PreviewBody .PreviewToolBar .PreviewFloatLeft,
    body.PreviewBody .PreviewToolBar .PreviewDateControls {
        display: block;
        float: none;
        margin-bottom: 15px;
    }

    body.PreviewBody .PreviewToolBar .PreviewFloatLeft:before,
    body.PreviewBody .PreviewToolBar .PreviewDateControls:before {
        display: block;
    }
}

@media only screen and (max-width: 768px) {

    body.PreviewBody .PreviewToolBar input[type="radio"],
    body.PreviewBody .PreviewToolBar label,
    body.PreviewBody .PreviewToolBar input[type="text"],
    body.PreviewBody .PreviewToolBar select,
    body.PreviewBody .PreviewToolBar input[type="submit"] {
        margin-bottom: 5px;
    }
}

/*-------- Search Modules --------*/
.module-search .module_container--outer {
    display: flex;
    align-items: center;
}

.module-search .module_container--outer:before {
    content: "";
    background-color: rgba(255, 255, 255, 0.1);
    width: 1px;
    height: 19px;
    margin-left: 32px;
    margin-right: 27px;
}

.module-search_toggle {
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
}

.module-search .module_container--inner {
    position: relative;
    opacity: 0;
    visibility: hidden;
    width: 0;
    overflow: hidden;
    transition: 0.3s ease-in-out;
}

.module-search .module_container--inner.js--revealed {
    opacity: 1;
    visibility: visible;
    width: 267px;
    margin-left: 12px;
}

.module-search_input[type="text"] {
    font-family: "Roboto", sans-serif;
    display: inline-block;
    width: 100%;
    padding: 6.5px 15px;
    border: none;
    border-radius: 30px;
    background: rgba(50, 124, 181, 0.4);
    font-size: 1.4rem;
    font-weight: 400;
    color: #fff;
    margin: 0;
}

.module-search_button {
    position: absolute;
    top: 8px;
    right: 10px;
    width: 15px;
    height: 15px;
    padding: 0;
    border: 0;
    background: transparent url("http://s27.q4cdn.com/486207181/files/design/svg/search-white.svg");
    background-repeat: no-repeat;
    background-size: contain;
    font-size: 0;
    cursor: pointer;
    outline-color: #fff !important;
    display: none;
}

.module-search-results {
    max-width: 1240px;
    margin: 0 auto;
    padding-left: 30px;
    padding-right: 30px;
}

.module-search-results .form_fields-right input {
    width: 100%;
    border-color: #327CB5;
    color: #979797;
}

.module-search-results .form_field {
    margin-bottom: 25px;
}

.module-search-results .form_field--date {
    position: relative;
}

.module-search-results .form_field--date:after {
    content: "\ea5f";
    position: absolute;
    top: 41px;
    right: 15px;
    font-family: 'q4-icons' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    color: #327CB5;
    clear: both;
    display: table;
    font-size: 20px;
}

.module-search-results .form_field--search {
    margin-bottom: 35px;
}

.module-search-results .form_label {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
    display: block;
    margin-bottom: 7px;
}

.module-search-results .form_select {
    width: 100%;
    min-width: auto;
    display: block !important;
}

.module-search-results .form_select+.sbHolder {
    display: none;
}

.module-search-results .form_input {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 100%;
    border: 1px solid #5AC2A0;
    border-radius: 0;
    box-shadow: none;
    padding: 15px;
    color: #3F4C50;
    display: block;
}

.module-search-results_link {
    text-transform: uppercase;
    font-size: 14px;
    text-shadow: 0 1px 0 #FFFFFF;
    font-weight: 500;
    margin-bottom: 20px;
    display: inline-block;
}

.module-search-results_item {
    box-shadow: inset 0 1px 0 0 rgba(204, 201, 196, 0.3), inset 0 -1px 0 0 rgba(204, 201, 196, 0.3);
    padding: 30px 0;
}

.module-search-results_url,
.module-search-results_result a {
    word-wrap: break-word;
}

.module-search-results_url {
    display: none;
}

.module-search-results_result:after {
    content: '';
    display: table;
    clear: both;
}

.module-search-results_description {
    font-size: 14px;
    text-shadow: 0 1px 0 #FFFFFF;
    line-height: 1.5;
    font-weight: 400;
}

.module-search-results_summary {
    color: #545B62;
    font-size: 20px;
    line-height: 21px;
    text-shadow: 1px 1px #FFFFFF;
    font-weight: 400;
    margin: 0 0 30px;
}

.module-search-results_summary span {
    color: #327CB5;
}

.module-search-results_pager {
    float: right;
}

.module-search-results .pager_text {
    display: none;
}

@media only screen and (max-width: 1024px) {
    .module-search .module_container--outer:before {
        display: none;
    }

    .module-search_toggle {
        position: absolute;
        top: 34px;
        right: 80px;
        z-index: 2;
    }

    .module-search .module_container--inner {
        position: absolute;
        top: calc(100% + 1px);
        right: 30px;
        width: 267px;
    }

    .module-search_input[type="text"] {
        background: #327cb5;
        padding-right: 40px;
    }

    .module-search_button {
        display: block;
    }
}

@media only screen and (max-width: 1023px) {
    .module-search-results .module-search-results_filter>.grid_col {
        width: 100%;
    }
}

@media only screen and (max-width: 768px) {
    .module-search-results .form-fields--pages {
        margin-top: 25px;
        display: block;
        width: 100%;
    }

    .module-search-results .form-fields--search {
        width: 100%;
    }
}

/*-------- SEC Module CSS --------*/
.module-sec .module_options-select {
    margin-right: 0;
}

.module-sec .module_header {
    display: block;
    background-color: #327CB5;
}

.module-sec .module_header-text {
    padding: 15px 8px;
    color: #fff;
}

.module-sec .module_item {
    padding: 0;
}

.module-sec .module_item~.module_item {
    border: 0;
}

.module-sec .module_item:nth-child(odd) {
    background-color: rgba(0, 0, 0, 0.05);
}

.module-sec .module_item .grid_col {
    vertical-align: middle;
    padding: 10px 8px;
}

.module-sec .module_item .module-sec_filing {
    font-weight: bold;
}

.module-sec_download-list-item {
    display: inline-block;
}

.module-sec_download-list-item:not(:last-child) {
    margin-right: 5px;
}

.module-sec_download-list .module_link {
    margin: 0;
}

.module-sec_download-list .q4icons_icon:before {
    font-size: 2.4rem;
    padding: 0;
}

.module-sec-details_date,
.module-sec-details_description {
    margin-bottom: 15px;
}

.module-sec-details_download-list-item {
    display: inline-block;
}

.module-sec-details_download-list-item:not(:last-child) {
    margin-right: 10px;
}

.module-sec-details_download-list .module_link {
    margin: 0;
}

.module-sec-details_download-list .q4icons_icon:before {
    font-size: 2.4rem;
    padding: 0;
}

@media only screen and (max-width: 768px) {
    .module-sec .module_options .grid_col:not(:first-child) {
        margin-top: 20px;
    }

    .module-sec .module_header {
        display: none;
    }

    .module-sec .module_header+.module_item {
        border-top: 2px solid #327CB5;
    }

    .module-sec .module_item {
        padding: 15px 0;
    }

    .module-sec .module_item:first-child {
        border-top: 2px solid #327CB5;
    }

    .module-sec .module_item:last-child {
        border-bottom: 2px solid #327CB5;
    }

    .module-sec .module_item .grid_col {
        display: flex;
        padding: 0 5px;
    }

    .module-sec .module_item .grid_col:before {
        content: attr(data-before);
        width: 50%;
        flex: 0 0 auto;
        padding-right: 10px;
        font-weight: bold;
    }

    .module-sec .module_item+.module_footer {
        border-bottom: 2px solid #327CB5;
    }

    .module-sec_date,
    .module-sec_filer,
    .module-sec_filing,
    .module-sec_description {
        margin-bottom: 15px;
    }
}

/*---- Accessibility Skip Link ---*/
.module-skip_link {
    position: absolute;
    top: -100px;
    left: 50%;
    padding: 15px 20px;
    background: transparent;
    color: white;
    transform: translate(-50%, 0);
    transition: 0.5s ease-in-out;
    z-index: 100;
}

.module-skip_link:focus,
.module-skip_link:active,
.module-skip_link:hover {
    top: 0;
    background: #327CB5;
    outline: 0;
}

.module-skip_link:visited {
    color: #fff;
}

.module-slider .module_container--outer {
    display: table;
    width: 100%;
    table-layout: fixed;
}

.module-slider .module_container--inner {
    display: table-cell;
    vertical-align: middle;
    height: 390px;
}

.module-slider .slick-slider {
    padding: 0 40px;
}

.module-slider .slick-slider .slick-slide {
    float: none;
    display: inline-block;
    vertical-align: middle;
    padding: 0 5px;
}

.module-slider .slick-arrow:before {
    font-size: 30px;
}

.module-slider .module_add-to-calendar-reveal {
    color: #fff;
}

.module-slider .module-slider_title h1 {
    margin: 0;
}

.module-slider .module_loader {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.module-slider_description {
    font-size: 2.4rem;
    line-height: 1;
    margin-top: 10px;
}

.module-slider_description .module_date-time {
    font-size: inherit;
}

.module-slider_description p {
    margin: 10px 0;
}

.module-slider_description p:first-child {
    margin-top: 0;
    margin-bottom: 10px;
}

.module-slider_description .module_links {
    margin-top: 10px;
    margin-bottom: 0;
}

.module-slider .slick-dots {
    display: inline;
}

.module-slider .slick_autoplay-ctrl button {
    background: none;
    border: none;
    padding: 0;
    color: white;
    margin-right: 10px;
    vertical-align: middle;
}

.module-slider .slick_autoplay-ctrl button:before {
    font-family: 'q4-icons' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.module-slider .slick_autoplay-ctrl--play:before {
    content: "\ed85";
}

.module-slider .slick_autoplay-ctrl--pause:before {
    content: "\ed86";
}

/*------ Stock Chart Widget ------*/
.module-stock-chart .js--hidden[data-highcharts-chart] {
    display: block !important;
    max-height: 0;
    overflow: hidden;
}

.module-stock-chart .highcharts-legend>rect {
    fill: none;
}

.module-stock-chart .highcharts-legend-item text[style*="#CCC"] {
    fill: #767676 !important;
    color: #767676 !important;
}

.module-stock-chart .highcharts-legend-item rect[fill="#CCC"] {
    fill: #767676 !important;
}

.module-stock-chart .highcharts-legend-item:first-child path {
    stroke: #327CB5;
}

.module-stock-chart .highcharts-legend-item:first-child text {
    cursor: default !important;
    color: #327CB5 !important;
    fill: #327CB5 !important;
}

.module-stock-chart .highcharts-series-0 {
    stroke: #327CB5;
}

.module-stock-chart .highcharts-series-0 path:first-child {
    stroke: #327CB5;
}

.module-stock-chart .highcharts-series.highcharts-series-3 path {
    stroke: #327CB5;
}

.module-stock-chart .highcharts-series-group .highcharts-series-2 path {
    stroke: #327CB5;
    stroke-width: 2px;
}

.module-stock-chart .highcharts-navigator rect {
    fill: rgba(50, 124, 181, 0.6);
}

.module-stock-chart .highcharts-navigator-handle {
    stroke: rgba(0, 0, 0, 0.05);
    fill: #f2f2f2;
    cursor: ew-resize;
}

.module-stock-chart .highcharts-navigator-handle-right rect,
.module-stock-chart .highcharts-navigator-handle-left rect {
    stroke-width: 0;
    fill: #327CB5;
}

.module-stock-chart .highcharts-navigator-handle-right path,
.module-stock-chart .highcharts-navigator-handle-left path {
    stroke: #fff;
}

.module-stock-chart .highcharts-highcharts-scrollbar g:first-of-type rect {
    fill: #327CB5;
    stroke: #327CB5;
}

.module-stock-chart .highcharts-range-selector {
    box-sizing: content-box;
}

.module-stock-chart .highcharts-range-input rect {
    stroke: #cccccc;
    fill: #f2f2f2;
}

.module-stock-chart .highcharts-button rect,
.module-stock-chart .highcharts-input-group rect {
    stroke-width: 0;
    fill: rgba(0, 0, 0, 0.05);
}

.module-stock-chart .highcharts-button text,
.module-stock-chart .highcharts-input-group text {
    fill: #3F4C50;
}

.module-stock-chart .highcharts-container>svg>.highcharts-button {
    display: none;
}

/*------ Stock Header Module -----*/
.module-stock-header {
    position: absolute;
    top: 0;
    right: 30px;
    line-height: 1;
    text-align: right;
    width: 40%;
}

.module-stock-header .module_container--outer {
    display: inline-block;
    text-align: left;
}

.module-stock-header_description1 {
    display: block;
    font-weight: bold;
}

.module-stock-header_stock-price-change {
    display: flex;
    display: flex;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.module-stock-header_stock-price {
    display: block;
    font-size: 4.5rem;
    color: #fff;
    margin-right: 10px;
}

.module-stock-header_stock-price:before {
    content: '$';
}

.module-stock-header_change>span {
    display: block;
    font-size: 2rem;
}

.module-stock-header_percent-change .module-stock-header_indicator {
    display: none;
}

.module-stock-header_volume {
    display: block;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #fff;
}

.module-stock-header_description3,
.module-stock-header_date {
    display: block;
    font-size: 1.2rem;
    line-height: 1.5;
}

@media only screen and (max-width: 1023px) {
    .module-stock-header {
        position: static;
        width: 100%;
        text-align: left;
        padding-bottom: 50px;
    }
}

/*------ Stock Quote Module ------*/
.module-stock .module_options {
    margin-bottom: 30px;
}

.module-stock .module_container--content {
    border-top: 1px solid #9E9E9E;
}

.module-stock .stock-historical-range .module_options>*:not(:last-of-type) {
    margin-bottom: 20px;
}

.module-stock_lookup-title {
    padding-left: 20px;
}

.module-stock_label,
.module-stock_value {
    border-bottom: 1px solid #9E9E9E;
}

.module-stock_label>span,
.module-stock_value>span {
    display: block;
    padding: 10px 20px;
}

.module-stock_up {
    color: #1E795B;
}

.module-stock_down {
    color: #b72121;
}

.module-stock_label {
    font-weight: normal;
}

.module-stock_date {
    margin-top: 25px;
    font-size: 1.4rem;
    font-style: italic;
}

.module-stock_date-text {
    margin-left: 20px;
}

.module-stock_delay {
    margin-top: 25px;
    font-size: 1.4rem;
    font-style: italic;
    text-align: right;
}

.module-stock_delay-text {
    margin-right: 20px;
}

@media only screen and (max-width: 768px) {
    .module-stock.module-stock-historical .module-stock_empty {
        display: none;
    }

    .module-stock-historical .module_options-label,
    .module-stock-historical .module_options-select,
    .module-stock-historical .module_options-submit {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }

    .module-stock_lookup-title {
        padding-left: 10px;
    }

    .module-stock_label>span,
    .module-stock_value>span {
        padding: 10px;
    }
}

@media only screen and (max-width: 480px) {
    .module-stock_lookup-title {
        padding-left: 5px;
    }

    .module-stock_label>span,
    .module-stock_value>span {
        padding: 10px 0 10px 5px;
    }

    .module-stock_date-text {
        margin-left: 0;
    }

    .module-stock_delay {
        margin-top: 5px;
        text-align: left;
    }

    .module-stock_delay-text {
        margin-right: 0;
    }
}

/*- MailingList Subscribe Module -*/
.module-subscribe_table {
    display: block;
    width: 100%;
    margin-bottom: 10px;
}

.module-subscribe_table tbody {
    width: 100%;
    display: block;
}

.module-subscribe_form {
    font-size: 0;
}

.module-subscribe_form tr {
    display: inline-block;
    width: 50%;
    margin-bottom: 20px;
    vertical-align: top;
    font-size: 1.6rem;
}

.module-subscribe_form tr:nth-child(even) {
    padding-left: 10px;
}

.module-subscribe_form tr:nth-child(odd) {
    padding-right: 10px;
}

.module-subscribe_form tr.module-subscribe_notes-text {
    margin: 0;
}

.module-subscribe_form tr.module-subscribe_notes-text,
.module-subscribe_form tr.module-subscribe_notes-input {
    display: block;
    width: 100%;
    padding: 0;
}

@media only screen and (max-width: 768px) {
    .module-subscribe_form tr {
        width: 100%;
    }

    .module-subscribe_form tr:nth-child(even) {
        padding-left: 0;
    }

    .module-subscribe_form tr:nth-child(odd) {
        padding-right: 0;
    }
}

.module-subscribe_form td {
    display: block;
}

.module-subscribe_form label {
    display: inline-block;
    margin-bottom: 5px;
    font-size: 1.4rem;
}

.module-subscribe_mailing-list tr.module-subscribe_list-header td {
    padding-bottom: 15px;
}

.module-subscribe_mailing-list tr table td {
    padding-bottom: 5px;
}

.module-subscribe_mailing-list tr table tr:last-child td {
    padding-bottom: 0;
}

.module-subscribe .module_required {
    font-size: 1.4rem;
}

/* MailingList Unsubscribe Module */
.module-unsubscribe_table {
    width: 50%;
}

@media only screen and (max-width: 768px) {
    .module-unsubscribe_table {
        width: 100%;
    }
}

.module-unsubscribe_table td {
    padding-right: 10px;
}

@media only screen and (max-width: 768px) {
    .module-unsubscribe_table td {
        padding-right: 0;
    }
}

.module-unsubscribe_table label {
    display: inline-block;
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.module-unsubscribe_table .module_input[type="text"],
.module-unsubscribe_table .module_input[type="email"] {
    background-color: #fff;
}

/*==================================
 ----------- LAYOUT CSS -----------
==================================*/
/*------- iframe layout CSS ------*/

.layout--iframe .pane--content .module:not(.module--default-pad) {
    padding: 35px 0;
}

/*==================================
 ------------ BLANK CSS -----------
==================================*/
/*-------- Layout Specific -------*/


.layout .layout_inner {
    position: relative;
    overflow: hidden;
}

.layout_footer {
    background: #F5F6F9;
}

@media only screen and (max-width: 1024px) {
    .layout.js--mobile {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        overflow: hidden;
    }
}

/*--------- Pane Specific --------*/
.pane_inner {
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 30px;
    padding-right: 30px;
}

.pane--content {
    font-size: 1.8rem;
    line-height: 1.6667;
}

.pane--content .pane_inner {
    max-width: none;
    padding-left: 0;
    padding-right: 0;
}

.pane--content .module {
    padding-top: 100px;
    padding-bottom: 100px;
}

.pane--content .module_container--outer {
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 30px;
    padding-right: 30px;
}

.pane--content .module--no-container .module_container--outer {
    max-width: none;
    padding-left: 0;
    padding-right: 0;
}

.pane--content .module--thin {
    padding-top: 50px;
    padding-bottom: 50px;
}

.pane--content .module--thin-top {
    padding-top: 50px;
}

.pane--content .module--thin-bottom {
    padding-bottom: 50px;
}

.pane--content .module--thick {
    padding-top: 150px;
    padding-bottom: 150px;
}

.pane--content .module--thick-top {
    padding-top: 150px;
}

.pane--content .module--thick-bottom {
    padding-bottom: 150px;
}

.pane--content .module--no-padding {
    padding-top: 0;
    padding-bottom: 0;
}

.pane--content .module--no-padding-top {
    padding-top: 0;
}

.pane--content .module--no-padding-bottom {
    padding-bottom: 0;
}

.pane--content .module-sitemap {
    padding-bottom: 35px;
}

/*--------- Page Specific --------*/
.page--no-alternating .pane--content {
    padding: 35px 0;
}

.page--no-alternating .module {
    padding-top: 35px;
    padding-bottom: 35px;
}

/*-------- Module Specific -------*/
.module-cta {
    position: fixed;
    z-index: 1000;
    right: 20px;
    bottom: 20px;
}

.module-cta [class*="q4-icon_"]:before {
    font-size: 16px;
    margin-right: 10px;
    vertical-align: sub;
}

.module-cta .button--cookie {
    color: black;
    position: absolute;
    right: -10px;
    top: -10px;
    cursor: pointer;
    z-index: 1;
    background-color: white;
    width: 20px;
    height: 20px;
    border-radius: 100%;
}

.module-cta .button--cookie [class*="q4-icon_"]:before {
    font-size: 10px;
    line-height: 20px;
    text-align: center;
    display: block;
    margin: auto;
}

/*===========================HEADER===========================*/
.pane--header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 200;
    transition: 0.3s ease-in-out;
}

.js--header-sticky .pane--header {
    background-color: #327CB5;
}

.pane--header .pane_outer--1 {
    background-color: #20537B;
    text-align: right;
    padding: 5px 0;
}

.pane--header .pane_outer--2 {
    padding-top: 32px;
    padding-bottom: 32px;
}

.pane--header .module,
.pane--header .nav {
    display: inline-block;
    vertical-align: middle;
}

.module-links-social-header {
    font-size: 1.4rem;
}

.module-links-social-header ul {
    display: flex;
    flex-wrap: wrap;
}

.module-links-social-header li:not(:last-child) {
    margin-right: 12px;
}

.module-links-social-header a {
    text-decoration: none;
}

.module-logo {
    width: 190px;
}

.module-logo img {
    vertical-align: middle;
}

.nav--main {
    font-family: "Roboto", sans-serif;
    /* font-size: 1.4rem; */
    font-size: 1.2rem;
    line-height: 1.428;
    width: calc(100% - 190px);
}

.nav--main button.submenu-trigger {
    /* removing default button styling for dropdown menu buttons */
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

.nav--main .level1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.nav--main .level1>li:not(:last-child) {
    margin-right: 32px;
}

.nav--main li {
    position: relative;
}

.nav--main a {
    display: block;
    letter-spacing: 0.05em;
    text-transform: capitalize;
    color: #000;
    position: relative;
    text-decoration: none;
}

.nav--main a:hover {
    color: #C7C8CA;
}

.nav--main .level1>li>a,
.nav--main .level1>li>.submenu-trigger>a {
    /* font-size: 1.5rem; */
    font-size: 1.3rem;
    line-height: 1.2;
    color: #fff;
    text-transform: uppercase;
}

.nav--main .level1>li>a:hover,
.nav--main .level1>li.selected>a,
.nav--main .level1>li.expanded>a,
.nav--main .level1>li.sfHover>a,
.nav--main .level1>li>.submenu-trigger>a:hover,
.nav--main .level1>li.selected>.submenu-trigger>a,
.nav--main .level1>li.expanded>.submenu-trigger>a,
.nav--main .level1>li.sfHover>.submenu-trigger>a {
    color: rgba(255, 255, 255, 0.5);
}

.nav--main .level2 {
    display: none;
    position: absolute;
    top: calc(100% + 20px);
    left: 50%;
    background-color: #fff;
    box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    width: 100%;
    padding: 20px 0;
    transform: translateX(-50%);
    opacity: 1 !important;
}

.nav--main .level2 li {
    padding: 0 20px;
}

.nav--main .level2 li+li {
    margin-top: 20px;
}

.nav--main li.sfHover>.level2,
.nav--main li:hover>.level2 {
    display: block !important;
}

.nav--main .level3 {
    display: none;
    position: absolute;
    top: 0;
    left: calc(100% + 1px);
    background-color: #fff;
    box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    width: 100%;
    padding: 20px 0;
    opacity: 1 !important;
}

.nav--main .level1>li:last-child .level3 {
    left: auto;
    right: calc(100% + 1px);
}

.nav--main li.sfHover>.level3,
.nav--main li:hover>.level3 {
    display: block !important;
}

.nav--main .level4 {
    display: none;
    position: absolute;
    top: 0;
    left: calc(100% + 1px);
    background-color: #fff;
    box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    width: 100%;
    padding: 20px 0;
    opacity: 1 !important;
}

.nav--main li.sfHover>.level4,
.nav--main li:hover>.level4 {
    display: block !important;
}

.nav--main .level1>li:last-child .level4 {
    left: auto;
    right: calc(100% + 1px);
}

.pane--header .layout_toggle {
    display: none;
    text-align: right;
}

.pane--header .layout_toggle-button {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    font-size: 3rem;
    line-height: 1;
    background: none;
    padding: 0;
    border: none;
    border-radius: 0;
    color: #fff;
}

.pane--header .layout_toggle [class^="q4-icon_"]:focus {
    outline: none;
}

.js--mobile .pane--header .layout_toggle [class^="q4-icon_"]:before {
    content: "\e91c";
}

.pane--banner {
    background-image: url("../design/banner/banner.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    color: #fff;
    padding-top: 170px;
    padding-bottom: 50px;
    min-height: 400px;
    position: relative;
}

.layout--home .pane--banner {
    padding-top: 230px;
    padding-bottom: 230px;
    min-height: 760px;
}

.pane--banner>* {
    position: relative;
    z-index: 1;
}

.page-investors .pane--banner {
    padding-top: 170px;
    padding-bottom: 0;
    min-height: auto;
    overflow: hidden;
}

div[class*="PageInvestors"] .pane--banner {
    background-image: url("../design/banner/banner-investors.jpg");
}

div[class*="PageInvestors"] .pane--banner:before {
    content: "";
    background-color: #20537B;
    opacity: 0.6;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

div[class*="PageAboutUsOurStory"] .pane--banner {
    background-image: url("../design/banner/banner-story.jpg");
}

div[class*="PageDiseasesWeTarget"] .pane--banner {
    background-image: url("../design/banner/banner-diseases.jpg");
}

div[class*="PageAboutUsLeadership"] .pane--banner {
    background-image: url("../design/banner/banner-leadership.jpg");
}

div[class*="PageOurScience"] .pane--banner {
    background-image: url("../design/banner/banner-science.jpg");
}

div[class*="PageOurScienceOurTechnologiesNrf2Activators"] .pane--banner {
    background-image: url("../design/banner/banner-nrf-v2.png");
    background-color: #20537B;
}

div[class*="PageOurScienceOurTechnologiesNrf2Activators"] .pane--banner:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #20537B;
    opacity: 0.3;
}

div[class*="PageOurScienceOurTechnologiesNrf2Activators"] .pane--banner .pane_inner {
    position: static;
}

div[class*="PageCareersBenefits"] .pane--banner {
    background-image: url("../design/banner/banner-benefits.jpg");
    position: relative;
}

div[class*="PageCareersBenefits"] .pane--banner:after {
    content: "";
    background-color: rgba(0, 0, 0, 0.3);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

div[class*="PageCareersBenefits"] .pane--banner>* {
    position: relative;
    z-index: 1;
}

div[class*="PageOurCommunity"] .pane--banner {
    background-image: url("http://s27.q4cdn.com/486207181/files/images/2022/10/MicrosoftTeams-image-(5).png");
    background-image: url("../images/2022/12/iStock-1359816113.jpg");
    background-position: center 37%;
}
div[class*="PageOurCommunity"] .pane--banner:before {
    content: "";
    background-color: #20537B;
    opacity: 0.6;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

div[class*="PageCareers"] .pane--banner {
    background-image: url("../design/banner/banner-working-v2.jpg");
}

div[class*="PageCareers"] .pane--banner:before {
    content: "";
    background-color: #20537B;
    opacity: 0.6;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

div[class*="PageOurSciencePartneringIn-Licensing"] .pane--banner {
    background-image: url("../design/banner/banner-partnering.jpg");
}

div[class*="PageOurSciencePartneringIn-Licensing"] .pane--banner:before {
    content: "";
    background-color: #20537B;
    opacity: 0.6;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

div[class*="PageContactUs"] .pane--banner {
    background-image: url("../design/banner/banner-contact.jpg");
}

div[class*="PageContactUs"] .pane--banner:before {
    content: "";
    background-color: #20537B;
    opacity: 0.6;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.pane--banner h1 {
    margin: 0;
}

.pane--banner .module-page-title {
    max-width: 640px;
    position: relative;
}

.module-banner-text {
    font-family: "Roboto", sans-serif;
    font-size: 2rem;
    line-height: 1.5;
    width: 55%;
    max-width: 640px;
}

.module-banner-text .module_container--inner>*:last-child {
    margin-bottom: 0;
}

.module-banner-text p {
    margin-top: 10px;
    margin-bottom: 0;
}

.module-banner-text .module_list-popup-buttons {
    margin-top: 20px;
}

.layout--home .module-banner-text h1+p {
    margin-top: 30px;
}

.module-banner-info {
    position: absolute;
    bottom: 10px;
    right: 30px;
    text-align: right;
}

.pane--navigation .module-search {
    display: none;
}

.pane--navigation .layout_toggle-button {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    font-size: 2rem;
    line-height: 1;
    background: none;
    padding: 0;
    border: none;
    border-radius: 0;
    color: #fff;
}

.pane--navigation .layout_toggle [class^="q4-icon_"]:focus {
    outline: none;
}

.js--mobile .pane--navigation .layout_toggle [class^="q4-icon_"]:before {
    content: "\e91c";
}

.nav--mobile {
    display: none;
    font-family: "Roboto", sans-serif;
}

.nav--mobile a {
    font-size: 1.3rem;
    line-height: 1.5;
    letter-spacing: 0.055em;
    display: block;
    text-transform: uppercase;
}

.nav--mobile .level1>li+li {
    margin-top: 40px;
}

.nav--mobile .level1>li>a {
    font-size: 1.5rem;
}

.nav--mobile .level1 li>ul {
    display: none;
    padding-top: 30px;
}

.nav--mobile .level1 li.js--expanded>ul {
    display: block;
}

.nav--mobile .level2 li {
    padding-left: 30px;
}

.nav--mobile .level2 li>ul {
    padding-bottom: 10px;
}

.nav--mobile .level2 li+li {
    margin-top: 20px;
}

.pane--navigation .module-links-social-header {
    display: none;
    padding-top: 50px;
}

.pane--navigation .module-links-social-header:before {
    content: "";
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    display: block;
    padding-top: 50px;
}

.pane--breadcrumb {
    background-color: #20537B;
}

.pane--breadcrumb .pane_inner {
    padding: 0 !important;
}

.nav--secondary li {
    position: relative;
}

.nav--secondary a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
}

.nav--secondary a:hover,
.nav--secondary .level2>li.selected>a,
.nav--secondary .level2>li.expanded>a {
    color: #C7C8CA;
}

.nav--secondary .level1>li,
.nav--secondary .level1>li>a {
    display: none;
}

.nav--secondary .level1>li.selected,
.nav--secondary .level1>li.expanded {
    display: block;
}

.nav--secondary .level2 {
    display: flex;
    align-items: stretch;
    justify-content: center;
}

.nav--secondary .level2>li>a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 15px 20px;
    height: 100%;
}

.nav--secondary .level3 {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    min-width: 200px;
    background-color: #20537B;
    z-index: 2;
}

.nav--secondary li.sfHover>.level3 {
    display: block;
}

.nav--secondary .level4 {
    display: none;
    position: absolute;
    top: 1px;
    left: calc(100% + 1px);
    width: 100%;
    min-width: 200px;
    background-color: #20537B;
    z-index: 2;
}

.nav--secondary li.sfHover>.level4 {
    display: block;
}

@media only screen and (max-width: 1700px) {

    .nav--main .level1>li:nth-last-child(1) .level3,
    .nav--main .level1>li:nth-last-child(2) .level3,
    .nav--main .level1>li:nth-last-child(3) .level3 {
        left: auto;
        right: calc(100% + 1px);
    }

    .nav--main .level1>li:nth-last-child(1) .level4,
    .nav--main .level1>li:nth-last-child(2) .level4,
    .nav--main .level1>li:nth-last-child(3) .level4 {
        left: auto;
        right: calc(100% + 1px);
    }
}

@media only screen and (max-width: 1279px) {
    .nav--main .level1>li+li+li .level3 {
        left: auto;
        right: calc(100% + 1px);
    }

    .nav--secondary .level2>li:nth-last-child(1) .level4,
    .nav--secondary .level2>li:nth-last-child(2) .level4,
    .nav--secondary .level2>li:nth-last-child(3) .level4 {
        left: auto;
        right: calc(100% + 1px);
    }
}

@media only screen and (max-width: 1199px) {
    .nav--main .level1>li:not(:last-child) {
        margin-right: 15px;
    }

    .nav--main .level1>li>a,
    .nav--main .level1>li>.submenu-trigger>a {
        /* font-size: 1.4rem; */
        font-size: 1.2rem;
    }
}

@media only screen and (max-width: 1024px) {
    .pane--header .pane_outer--1 {
        height: 0;
        padding: 0;
        overflow: hidden;
    }

    .pane--header .pane_outer--2 .pane_inner {
        position: relative;
    }

    .pane--header .module-links-social-header {
        display: none;
    }

    .pane--header .layout_toggle {
        display: inline-block;
        position: absolute;
        top: 0;
        right: 30px;
    }

    .pane--header .nav {
        display: none;
    }

    .module-banner-info {
        position: relative;
        bottom: auto;
        right: auto;
        text-align: left;
    }

    .pane--navigation.js--hidden {
        display: block !important;
    }

    .pane--navigation {
        position: fixed;
        top: -100%;
        left: 0;
        right: 0;
        bottom: 100%;
        transition: 0.5s ease-in-out;
        overflow-y: auto;
        z-index: 201;
        background-color: #092841;
    }

    .js--mobile .pane--navigation {
        top: 0;
        bottom: 0;
    }

    .pane--navigation .pane_inner {
        padding: 30px 50px 50px;
    }

    .pane--navigation .layout_toggle {
        text-align: right;
    }

    .pane--navigation .layout_toggle-button {
        position: relative;
        right: -20px;
    }

    .nav--mobile {
        display: block;
    }

    .pane--navigation .module-links-social-header {
        display: block;
    }

    .nav--secondary {
        display: none;
    }
}

@media only screen and (max-width: 1023px) {
    .module-banner-text {
        width: 100%;
    }
}

@media only screen and (max-width: 767px) {
    .pane--banner {
        padding-top: 150px;
        min-height: 300px;
    }

    .layout--home .pane--banner {
        padding-top: 170px;
        padding-bottom: 170px;
        min-height: auto;
    }

    .page-investors .pane--banner {
        padding-top: 150px;
    }

    .module-banner-text {
        font-size: 1.8rem;
    }
}

/*=========================END HEADER=========================*/
/*===========================FOOTER===========================*/
.pane--footer {
    font-family: "Roboto", sans-serif;
    font-size: 1.8rem;
    line-height: 1.1667;
    background-color: #3F4C50;
    color: #fff;
}

.FooterPaneDiv:not(:empty) {
    display: block;
    padding-top: 50px;
}

.pane--footer .module:not(.module-embed) {
    padding-bottom: 50px;
}

.pane--footer .module_title {
    font-size: 1.6rem;
    line-height: 1.1875;
    margin-bottom: 25px;
    color: #fff;
}

.module-contact ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.module-contact li:not(:last-child) {
    margin-right: 2.3vw;
}

.module-contact .q4icons .q4icons_icon:before {
    font-size: 2rem;
    padding-right: 15px;
    color: #5AC2A0;
}

.pane--footer .module_error-container {
    margin-bottom: 20px;
    color: #fff;
}

.pane--footer .module_message--error {
    color: #fff;
}

.pane--footer .module_message--success {
    color: #fff;
}

.pane--footer .module_error-container li {
    margin-bottom: 16px;
}

.pane--footer .module_introduction {
    display: none;
}

.pane--footer .module-subscribe_table-wrap {
    position: relative;
}

.pane--footer .module-subscribe_email label {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    border: 0 !important;
}

.pane--footer .module-subscribe_list-header,
.pane--footer .module-subscribe_email .module_required,
.pane--footer .module-subscribe .CaptchaContainer {
    display: none;
}

.pane--footer .module-subscribe_form {
    max-width: calc(100% - 130px);
}

.pane--footer .module-subscribe_form tbody {
    display: block;
}

.pane--footer .module-subscribe_form tr {
    width: 100%;
    margin: 0;
    padding: 0;
}

.pane--footer .module-subscribe_mailing-list {
    margin: 20px 0 10px;
}

.pane--footer .module-subscribe_list {
    display: block;
}

.pane--footer .module-subscribe_list>td {
    padding: 0;
    display: block;
}

.pane--footer .module-subscribe_list table {
    display: block;
}

.pane--footer .module-subscribe_list tbody {
    display: flex;
    flex-wrap: wrap;
}

.pane--footer .module-subscribe_list tbody>tr {
    display: block;
}

.pane--footer .module-subscribe_list tbody>tr:not(:last-child) {
    margin-right: 15px;
}

.pane--footer .module-subscribe_mailing-list tr table td {
    padding-bottom: 7px;
}

.pane--footer .module-subscribe_list label {
    font-size: 1.4rem;
    letter-spacing: 0.233333px;
}

.pane--footer .module-subscribe p {
    padding-right: 35px;
}

.pane--footer .module-subscribe input[type="checkbox"]+label:before {
    border-color: #fff;
}

.pane--footer .module-subscribe .module_input[type="text"],
.pane--footer .module-subscribe .module_input[type="email"] {
    border-color: #fff;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    height: 46px;
}

.pane--footer .module-subscribe .module_input[type="text"]::-webkit-input-placeholder,
.pane--footer .module-subscribe .module_input[type="email"]::-webkit-input-placeholder {
    font-size: 1.4rem;
    color: rgba(0, 59, 76, 0.4);
}

.pane--footer .module-subscribe .module_input[type="text"]::-moz-placeholder,
.pane--footer .module-subscribe .module_input[type="email"]::-moz-placeholder {
    font-size: 1.4rem;
    color: rgba(0, 59, 76, 0.4);
}

.pane--footer .module-subscribe .module_input[type="text"]:-ms-input-placeholder,
.pane--footer .module-subscribe .module_input[type="email"]:-ms-input-placeholder {
    font-size: 1.4rem;
    color: rgba(0, 59, 76, 0.4);
}

.pane--footer .module-subscribe .module_actions {
    margin: 0;
    position: absolute;
    top: 0;
    right: 0;
    max-width: 119px;
    width: 100%;
}

.pane--footer .module-subscribe .button {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    padding: 13.5px 20px;
    width: 100%;
}

.pane--footer2 {
    font-size: 1.4rem;
    line-height: 1.43;
    color: #003B4C;
    padding-top: 30px;
}

.pane--footer2 .module:not(.module-embed) {
    padding-bottom: 30px;
}

.module-logo-footer img {
    vertical-align: top;
}

.module-links-social-footer .module_container--outer {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
}

.module-links-social-footer .module_title {
    font-size: 1.4rem;
    line-height: 1.43;
    font-weight: 400;
    letter-spacing: 0.2px;
    margin: 0 22px 0 0;
    color: #003B4C;
}

.module-links-social-footer ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.module-links-social-footer li:not(:last-child) {
    margin-right: 15px;
}

.module-links-social-footer a {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 1.4rem;
    line-height: 1;
    width: 30px;
    height: 30px;
    background-color: #5AC2A0;
    color: #fff;
    border-radius: 100%;
    transition: 0.3s ease-in-out;
    text-decoration: none;
}

.module-links-social-footer a:hover {
    background-color: #1E795B;
}

.pane--credits {
    padding-bottom: 40px;
    font-size: 1.4rem;
    line-height: 1.215;
}

.pane--credits .pane_inner:before {
    content: "";
    display: block;
    border-top: 1px solid rgba(199, 200, 202, 0.4);
    padding-bottom: 30px;
}

.pane--credits .module-links-footer ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.pane--credits .module-links-footer li:not(:last-child):after {
    content: "|";
    margin: 0 12px;
}

.pane--credits .module-links-social-footer {
    display: none;
}

.module-q4-credits {
    text-align: right;
}

.pane--credits .button {
    color: #fff;
    border: none;
    background-color: #327CB5;
}

@media only screen and (max-width: 1200px) {
    .pane--credits .module-links ul {
        justify-content: flex-end;
    }

    .module-q4-credits {
        padding-top: 20px;
        text-align: center;
    }
}

@media only screen and (max-width: 1023px) {
    .pane--footer .module.grid_col {
        width: 100%;
    }

    .pane--credits {
        text-align: center;
    }

    .pane--credits .module.grid_col {
        width: 100%;
    }

    .pane--credits .module-links-footer {
        padding-top: 30px;
    }

    .pane--credits .module-links-footer ul {
        justify-content: center;
    }
}

@media only screen and (max-width: 767px) {
    .module-contact ul {
        flex-direction: column;
        align-items: flex-start;
    }

    .module-contact li:not(:last-child) {
        margin-bottom: 10px;
        margin-right: 0;
    }

    .pane--footer .module-subscribe_form {
        max-width: none;
    }

    .pane--footer .module-subscribe .module_input[type="text"],
    .pane--footer .module-subscribe .module_input[type="email"] {
        border-radius: 30px;
    }

    .pane--footer .module-subscribe .module_actions {
        position: static;
        margin-top: 20px;
        max-width: none;
    }

    .pane--footer .module-subscribe .button {
        border-radius: 30px;
    }

    .pane--footer2 {
        text-align: center;
        padding-top: 50px;
    }

    .pane--footer2 .module:not(.module-embed) {
        padding-bottom: 50px;
    }

    .pane--footer2 .module.grid_col {
        width: 100%;
    }

    .module-links-social-footer {
        padding-top: 35px;
    }

    .module-links-social-footer .module_container--outer {
        flex-direction: column;
    }

    .module-links-social-footer .module_title {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .pane--footer2 .module-links-social-footer {
        display: none;
    }

    .pane--credits .pane_inner:before {
        padding-bottom: 50px;
    }

    .pane--credits .module-links-social-footer {
        display: block;
    }

    .pane--credits .module-links-footer ul {
        flex-direction: column;
    }

    .pane--credits .module-links-footer li:not(:last-child):after {
        display: none;
    }

    .pane--credits .module-links-footer li+li {
        margin-top: 12px;
    }

    .module-q4-credits {
        padding-top: 40px;
    }
}

/*=========================END FOOTER=========================*/
/*=========================INNER PAGES========================*/

.break-links a {
    word-break: break-word;
}

.accordion_item {
    background-color: #fff;
    box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.15);
    border-radius: 5px;
    padding: 0;
    border: none;
}

.accordion_item~.accordion_item {
    border: none;
    margin-top: 10px;
}

.accordion_toggle {
    font-family: "Roboto", sans-serif;
    font-size: 2.6rem;
    line-height: 1.154;
    font-weight: 700;
    margin: 0;
    padding: 30px 55px 30px 30px;
    position: relative;
    cursor: pointer;
    color: #000;
}

.accordion_toggle:after {
    font-family: "q4-icons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\ed5d";
    font-size: 1.6rem;
    color: #327CB5;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #327CB5;
    border-radius: 100%;
    width: 30px;
    height: 30px;
    position: absolute;
    top: 50%;
    right: 17px;
    transform: translateY(-50%);
}

.accordion_item.js--active .accordion_toggle:after {
    content: "\ed5e";
}

.accordion_panel {
    padding: 0 30px 30px;
    margin: 0;
}

.accordion_panel>*:first-child {
    margin-top: 0;
}

.accordion_panel>*:last-child {
    margin-bottom: 0;
}

.module_message-box {
    display: flex;
    border: 2px solid #327CB5;
}

.module_message-box-icon {
    display: flex;
    width: 70px;
    flex: 0 0 auto;
    font-size: 4rem;
    line-height: 1;
    align-items: center;
    justify-content: center;
    padding: 10px;
    color: #5AC2A0;
}

.module_message-box-content {
    flex-grow: 1;
    padding: 10px;
    font-size: 2rem;
}

.module_message-box-content>*:first-child {
    margin-top: 0;
}

.module_message-box-content>*:last-child {
    margin-bottom: 0;
}

.module-videos .slick-slider {
    padding: 0;
    margin-left: -10px;
    margin-right: -10px;
}

.module-videos .slick-slide>div:not([class]) {
    align-items: stretch;
}

.module-videos .module_item {
    border: none;
    padding: 30px 10px;
}

.module-videos .module_item-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #FFFFFF;
    box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.15);
    border-radius: 30px;
    overflow: hidden;
    text-decoration: none;
}

.module-videos .slick-slide:not(.slick-active) .module_item-inner {
    box-shadow: none;
}

.module-videos .module_item-thumbnail {
    height: 227px;
    background-color: #C7C8CA;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    position: relative;
}

.module-videos .module_item-thumbnail:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease-in-out;
    background-color: rgba(0, 47, 83, 0.66);
}

.module-videos .module_item-inner:hover .module_item-thumbnail:before {
    opacity: 1;
    visibility: visible;
}

.module-videos .module_item-thumbnail:after {
    font-family: 'q4-icons';
    content: "\e929";
    font-size: 8.7rem;
    line-height: 1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
}

.module-videos .module_item-content {
    padding: 35px 50px;
}

.module-videos .module_item-content>*:first-child {
    margin-top: 0;
}

.module-videos .module_item-content>*:last-child {
    margin-bottom: 0;
}

.module-videos .module_item-title {
    font-size: 2.2rem;
    line-height: 1.363;
}

.module-videos a:hover {
    color: #9E9E9E;
}

.module-videos .button {
    margin-top: 20px;
}

.module_list-popup-buttons {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

.module_list-popup-buttons li {
    margin-top: 20px;
}

.module_list-popup-buttons li:not(:last-child) {
    margin-right: 20px;
}

.module_list-popup-buttons .button {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    max-width: 410px;
}

.module-popup {
    display: none;
    font-size: 2.2rem;
    line-height: 1.637;
    font-weight: 500;
    color: #595959;
}

.module-popup.fancybox-content {
    background: none;
}

.module-popup .module_container--outer {
    max-width: 806px;
    background-color: #f5f6f9;
    border-radius: 67px;
    overflow: hidden;
}

.module-popup_image img {
    display: block;
}

.module-popup_container {
    padding-bottom: 15px;
    position: relative;
}

.module-popup_container:before {
    content: "";
    background-image: url(http://s27.q4cdn.com/486207181/files/design/circles-pattern-sm.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 109px;
    display: block;
}

.module-popup_container>* {
    position: relative;
    z-index: 1;
}

.module-popup_image {
    float: left;
    shape-outside: ellipse(200px 160px at 50% 50%);
    padding-right: 65px;
}

.module-popup--ataxia .module-popup_image {
    shape-outside: ellipse(200px 160px at 50% 50%);
}

.module-popup--alport2 .module-popup_image {
    shape-outside: ellipse(200px 140px at 50% 50%);
    padding-right: 160px;
}

@media all and (-ms-high-contrast:none) {
    .module-popup--alport2 .module-popup_image {
        padding-right: 50px;
    }
}

.module-popup_content {
    padding: 60px 20px 30px;
    position: relative;
    left: -35px;
}

.module-popup_content .text-center .button {
    margin-left: 21vw;
}

@media all and (-ms-high-contrast:none) {
    .module-popup_content .text-center .button {
        margin-left: 0;
    }
}

.module-popup--ataxia .module-popup_content {
    padding-top: 95px;
    left: -20px;
}

.module-popup--alport2 .module-popup_content {
    padding-top: 88px;
    left: -45px;
}

@media all and (-ms-high-contrast:none) {
    .module-popup--alport2 .module-popup_content {
        left: 0;
    }
}

.module-popup_content>*:first-child {
    margin-top: 0;
}

.module-popup_content>*:last-child {
    margin-bottom: 0;
}

.module-popup_footer {
    font-size: 1.5rem;
    line-height: 1.428;
    font-weight: 400;
    font-style: italic;
    background-color: #2E6894;
    color: #fff;
    text-align: center;
    padding: 13.5px 55px;
}

.module-popup_footer>*:first-child {
    margin-top: 0;
}

.module-popup_footer>*:last-child {
    margin-bottom: 0;
}

.fancybox-slide--popup.fancybox-slide--popup .fancybox-close-small {
    width: auto;
    height: auto;
    padding: 0;
    color: #5AC2A0;
    opacity: 1;
    top: 25px;
    right: 42px;
}

.fancybox-slide--popup .fancybox-close-small svg {
    display: none;
}

.fancybox-slide--popup .fancybox-close-small:before {
    font-family: 'q4-icons';
    content: "\e932";
    font-size: 2.4rem;
    line-height: 1;
}

@media only screen and (max-width: 1023px) {
    .module-videos .module_item-content {
        padding: 30px;
    }

    .module-popup--alport2 .module-popup_image {
        shape-outside: ellipse(200px 200px at 50% 50%);
        padding-right: 65px;
    }
}

@media only screen and (max-width: 768px) {
    .module-popup {
        font-size: 2rem;
    }

    .module-popup .module_container--outer {
        border-radius: 30px;
    }

    .module-popup_image {
        float: none;
        shape-outside: border-box;
        padding-right: 70px;
    }

    .module-popup_content.module-popup_content {
        padding-top: 30px;
        left: 0;
    }

    .module-popup_content .text-center .button {
        margin-left: 0;
    }

    .module-popup_content br {
        display: none;
    }

    .module-popup_footer {
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media only screen and (max-width: 767px) {
    .module-videos .slick-slider .slick-track {
        align-items: flex-start;
    }

    .module_list-popup-buttons {
        flex-direction: column;
    }

    .module_list-popup-buttons li:not(:last-child) {
        margin-right: 0;
    }

    .module_list-popup-buttons .button {
        max-width: none;
    }
}

/*========================HOME========================*/
.module-corp-profile.module-corp-profile {
    position: relative;
    padding-top: 0;
    margin-top: -236px;
}

.module-corp-profile .slick-slider {
    padding: 0;
    margin-left: -10px;
    margin-right: -10px;
}

.module-corp-profile .slick-slide>div:not([class]) {
    align-items: stretch;
}

.module-corp-profile .module_item {
    border: none;
    padding: 30px 10px;
}

.module-corp-profile .module_item-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #FFFFFF;
    box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.15);
    border-radius: 30px;
    overflow: hidden;
}

.module-corp-profile .slick-slide:not(.slick-active) .module_item-inner {
    box-shadow: none;
}

.module-corp-profile .module_item-thumbnail {
    height: 206px;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
}

.module-corp-profile .slick-slide[data-slick-index="2"] .module_item-thumbnail {
    background-size: 95% 95%;
    background-position: 10px 10px;
}

.module-corp-profile .module_item-content {
    padding: 50px 50px 70px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.module-corp-profile .module_item-content>*:first-child {
    margin-top: 0;
}

.module-corp-profile .module_item-content>*:last-child {
    margin-bottom: 0;
}

.module-corp-profile .module_item-title {
    font-size: 2.2rem;
    line-height: 1.363;
}

.module-corp-profile .module_item-description {
    margin-bottom: 30px;
}

.module-corp-profile .module_item-description>*:first-child {
    margin-top: 0;
}

.module-corp-profile .module_item-description>*:last-child {
    margin-bottom: 0;
}

.module-corp-profile .module_more {
    margin-top: auto;
}

.module-pipeline {
    position: relative;
}

.module-pipeline>* {
    position: relative;
    z-index: 1;
}

.module-pipeline:after {
    content: "";
    background-image: url(http://s27.q4cdn.com/486207181/files/design/circles-pattern.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    height: 254px;
}

.module-pipeline_subheading {
    margin-top: 50px;
    margin-bottom: 40px;
}

.module-pipeline_graphic-container {
    overflow: hidden;
    position: relative;
}

.module-pipeline_link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
}

.module-pipeline_graphic {
    font-family: "Roboto", sans-serif;
    overflow: hidden;
    padding-bottom: 18px;
    position: relative;
    transition: 0.3s ease-in-out;
}

.module-pipeline_header {
    display: flex;
}

.module-pipeline_header-cell {
    flex: 1;
    position: relative;
}

.module-pipeline_header-cell:after {
    content: "";
    position: absolute;
    top: 0;
    height: 1000000%;
    right: 0;
    border-right: 4px dotted currentColor;
}

.module-pipeline_header-cell:first-child:after {
    right: -10px;
}

.module-pipeline_header-cell:first-child {
    flex: 0 0 55px;
    max-width: 55px;
}

.module-pipeline_header-text {
    display: flex;
    height: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 17px 15px;
}

.module-pipeline_body {
    position: relative;
    z-index: 1;
}

.module-pipeline_body-row {
    display: flex;
}

.module-pipeline_body-row+.module-pipeline_body-row {
    margin-top: 5px;
}

.module-pipeline_body-cell--heading {
    flex: 0 0 55px;
    max-width: 55px;
}

.module-pipeline_body-cell--heading .module-pipeline_body-item {
    display: flex;
    flex-direction: column;
    height: 100%;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.module-pipeline_body-cell--heading .module-pipeline_body-text {
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    white-space: nowrap;
    transform: rotate(-90deg);
    color: #fff;
}

.module-pipeline_body-cell--content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.module-pipeline_body-cell--content .module-pipeline_body-item {
    padding-left: 5px;
}

.module-pipeline_body-cell--content .module-pipeline_body-item+.module-pipeline_body-item {
    margin-top: 5px;
}

.module-pipeline_body-cell--content .module-pipeline_body-text {
    background-repeat: no-repeat;
    background-position: right center;
    background-size: cover;
    padding: 13px 25px;
    color: #fff;
    position: relative;
    width: calc(100% - 30px);
    display: flex;
    align-items: center;
}

.module-pipeline_body-cell--content .module-pipeline_body-text:after {
    content: "";
    position: absolute;
    top: 0;
    right: -30px;
    width: 0;
    height: 0;
    border-top: 28px solid transparent;
    border-left: 30px solid transparent;
    border-bottom: 28px solid transparent;
}

.module-pipeline_body-cell--content .module-pipeline_body-text.background--color-6:after {
    border-left-color: #024473;
}

.module-pipeline_body-cell--content .module-pipeline_body-text.background--color-7:after {
    border-left-color: #06a1ec;
}

.module-pipeline_body-cell--content .module-pipeline_body-text.background--color-8:after {
    border-left-color: #bdbcbc;
}

.module-pipeline_body-cell--content .module-pipeline_body-text[data-accordion] {
    cursor: pointer;
}

.module-pipeline_body-cell--content .module-pipeline_body-text.green-gradient {
    background-image: url("http://s27.q4cdn.com/486207181/files/design/pipeline-green-pattern.svg");
}

.module-pipeline_body-cell--content .module-pipeline_body-text.blue-gradient {
    background-image: url("http://s27.q4cdn.com/486207181/files/design/pipeline-blue-pattern.svg");
}

.module-pipeline_body-cell--content .module-pipeline_body-text.grey-gradient {
    background-image: url("http://s27.q4cdn.com/486207181/files/design/pipeline-grey-pattern.svg");
}

.module-pipeline_body-row--chronic .module-pipeline_body-cell--content .module-pipeline_body-item:nth-child(1) .module-pipeline_body-text {
    /*width: calc(87% - 30px);*/
    width: calc(52% - 42px);
}
.module-pipeline_body-row--chronic .module-pipeline_body-cell--content .module-pipeline_body-item:nth-child(2) .module-pipeline_body-text {
    width: calc(61% - 45px)!important;
}

.module-pipeline_body-row--chronic .module-pipeline_body-cell--content .module-pipeline_body-item:nth-child(3) .module-pipeline_body-text {
    width: calc(52% - 42px);
}

/*.module-pipeline_body-row--chronic .module-pipeline_body-cell--content .module-pipeline_body-item:nth-child(2) .module-pipeline_body-text,
.module-pipeline_body-row--chronic .module-pipeline_body-cell--content .module-pipeline_body-item:nth-child(3) .module-pipeline_body-text {
    width: calc(63% - 30px);
}*/

/*.module-pipeline_body-row--chronic .module-pipeline_body-cell--content .module-pipeline_body-item:nth-child(3) .module-pipeline_body-text,*/
.module-pipeline_body-row--chronic .module-pipeline_body-cell--content .module-pipeline_body-item:nth-child(4) .module-pipeline_body-text,
.module-pipeline_body-row--chronic .module-pipeline_body-cell--content .module-pipeline_body-item:nth-child(5) .module-pipeline_body-text {
    width: calc(49.6% - 30px);
}

.module-pipeline_body-row--chronic .module-pipeline_body-cell--content .module-pipeline_body-item:nth-child(6) .module-pipeline_body-text {
    width: calc(39.5% - 30px);
}

.module-pipeline_body-row--neurology .module-pipeline_body-cell--content .module-pipeline_body-item:nth-child(1) .module-pipeline_body-text {
   /* width: calc(87% - 30px);*/
    width: calc(79.5% - 26px);
}

.module-pipeline_body-row--neurology .module-pipeline_body-cell--content .module-pipeline_body-item:nth-child(2) .module-pipeline_body-text {
   /* width: calc(24.8% - 30px);*/
    width: calc(19.8% - 33px);
}

.module-pipeline_body-row--other .module-pipeline_body-cell--content .module-pipeline_body-item .module-pipeline_body-text {
    width: calc(24.8% - 30px);
}

.module-pipeline_body-cell--content .module-pipeline_body-text .mobile {
    display: none;
}

.module-pipeline_body-cell--content .module-pipeline_body-text [class*="q4-icon"] {
    display: inline-flex;
    vertical-align: middle;
    font-size: 1.6rem;
}

.module-pipeline_body-cell--content .module-pipeline_body-text [class*="q4-icon"]:before {
    transform: rotate(90deg);
}

.module-pipeline_body-cell--content .module-pipeline_body-item.js--active .module-pipeline_body-text [class*="q4-icon"]:before {
    transform: rotate(-90deg);
}

.module-pipeline_body-item-content {
    padding: 20px 25px;
    margin-top: 5px;
}

.module-pipeline_body-item-content>*:first-child {
    margin-top: 0;
}

.module-pipeline_body-item-content>*:last-child {
    margin-bottom: 0;
}

.module-pipeline_legend {
    margin-top: 60px;
}

.module-pipeline_buttons-container {
    display: none;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
}

.module-pipeline_buttons-container.js--visible {
    display: flex;
}

.module-pipeline_button {
    position: relative;
    font-size: 0;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: none;
    border-radius: 0;
    padding: 0;
    background: none;
    cursor: pointer;
    color: inherit;
}

.module-pipeline_button:not(.js--visible) {
    opacity: 0;
    visibility: hidden;
    z-index: -1;
}

.module-pipeline_button:before {
    font-family: 'q4-icons';
    font-size: 31px;
}

.module-pipeline_button--prev:before {
    content: "\e918";
}

.module-pipeline_button--next:before {
    content: "\e917";
}

.module-pipeline_legend-list {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: none;
}

.module-pipeline_legend-list li:not(:last-child) {
    margin-bottom: 10px;
}

.module-pipeline_legend-list-bullet {
    display: inline-block;
    vertical-align: middle;
    width: 15px;
    height: 15px;
    border-radius: 100%;
    margin-right: 5px;
}

.module-cares .slick-slider {
    padding: 0;
    margin-left: -10px;
    margin-right: -10px;
}

.module-cares .slick-slide>div:not([class]) {
    align-items: stretch;
}

.module-cares .module_item {
    border: none;
    padding: 30px 10px;
}

.module-cares .module_item-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #FFFFFF;
    box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.15);
    border-radius: 30px;
    overflow: hidden;
    text-decoration: none;
}

.module-cares .slick-slide:not(.slick-active) .module_item-inner {
    box-shadow: none;
}

.module-cares .module_item-thumbnail {
    height: 227px;
    background-color: #C7C8CA;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    position: relative;
}

.module-cares .module_item-thumbnail:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease-in-out;
    background-color: rgba(0, 47, 83, 0.66);
}

.module-cares .module_item-inner:hover .module_item-thumbnail:before {
    opacity: 1;
    visibility: visible;
}

.module-cares .module_item-thumbnail:after {
    font-family: 'q4-icons';
    content: "\e929";
    font-size: 8.7rem;
    line-height: 1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
}

.module-cares .module_item-content {
    padding: 35px 50px;
}

.module-cares .module_item-content>*:first-child {
    margin-top: 0;
}

.module-cares .module_item-content>*:last-child {
    margin-bottom: 0;
}

.module-cares .module_item-title {
    font-size: 2.2rem;
    line-height: 1.363;
}

.module-cares a:not(.button):hover {
    color: #9E9E9E;
}

.module-cares .button {
    margin-top: 20px;
}

.module-careers-home.module-careers-home {
    position: relative;
    padding-top: 70px;
    padding-bottom: 20px;
}

.module-careers-home:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #F5F6F9;
    height: 70px;
    display: block;
}

.module-careers-home>* {
    position: relative;
    z-index: 1;
}

.module-careers-home_item--inner {
    height: 100%;
}

.module-careers-home_item--image .module-careers-home_item--inner {
    background-image: url("../design/home-careers-bg.jpg");
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    min-height: 303px;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
}

.module-careers-home_item--content .module-careers-home_item--inner {
    padding: 50px;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    background-color: #fff;
    box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.15);
}

.module-careers-home_item--content .module-careers-home_item--inner>*:first-child {
    margin-top: 0;
}

.module-careers-home_item--content .module-careers-home_item--inner>*:last-child {
    margin-bottom: 0;
}

.module-careers-home .module_title {
    color: #3F4C50;
    line-height: 1.363;
    margin-bottom: 30px;
}

.module-careers-home .button {
    margin-top: 30px;
}

@media only screen and (max-width: 1280px) {
    .module-corp-profile .module_item-content {
        padding-left: 30px;
        padding-right: 30px;
    }

    .module-pipeline_graphic {
        font-size: 1.6rem;
    }

    .module-pipeline_body-cell--content .module-pipeline_body-text:after {
        border-top-width: 26px;
        border-bottom-width: 26px;
    }
}

@media only screen and (max-width: 1023px) {
    .module-corp-profile .module_item-content {
        padding: 30px;
    }

    .module-pipeline_graphic {
        font-size: 1.5rem;
    }

    .module-pipeline_body-cell--content .module-pipeline_body-text {
        padding: 12px 10px;
        min-height: 70px;
    }

    .module-pipeline_body-cell--content .module-pipeline_body-text:after {
        border-top-width: 35px;
        border-bottom-width: 35px;
    }

    .module-cares .module_item-content {
        padding: 30px;
    }

    .module-cares .button {
        margin-top: 40px;
    }
}

@media only screen and (max-width: 768px) {
    .module-careers-home_item--image .module-careers-home_item--inner {
        min-height: auto;
        padding-bottom: 42vw;
        border-top-left-radius: 30px;
        border-top-right-radius: 30px;
        border-bottom-left-radius: 0;
    }

    .module-careers-home_item--content .module-careers-home_item--inner {
        border-top-right-radius: 0;
        border-bottom-left-radius: 30px;
        border-bottom-right-radius: 30px;
        padding: 30px;
    }

    .module-careers-home .button {
        margin-top: 15px;
    }
}

@media only screen and (max-width: 767px) {
    .module-corp-profile .slick-slider .slick-track {
        align-items: flex-start;
    }

    .module-corp-profile.module-corp-profile {
        margin-top: -90px;
    }

    .module-corp-profile .module_item-thumbnail {
        height: 150px;
    }

    .module-pipeline_graphic {
        font-size: 1.4rem;
    }

    .module-pipeline_header-cell:first-child {
        display: none;
    }

    .module-pipeline_header-cell:after {
        border-width: 2px;
    }

    .module-pipeline_header-text {
        font-size: 1rem;
        padding: 10px 5px;
    }

    .module-pipeline_body-row {
        flex-wrap: wrap;
    }

    .module-pipeline_body-cell--heading {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 5px;
    }

    .module-pipeline_body-cell--heading .module-pipeline_body-item {
        padding: 10px;
    }

    .module-pipeline_body-cell--heading .module-pipeline_body-text {
        transform: none;
    }

    .module-pipeline_body-cell--content .module-pipeline_body-item {
        padding-left: 0;
    }

    .module-pipeline_body-cell--content .module-pipeline_body-text {
        padding-left: 10px;
    }

    .module-pipeline_body-cell--content .module-pipeline_body-text .desktop {
        display: none;
    }

    .module-pipeline_body-cell--content .module-pipeline_body-text .mobile {
        display: inline;
    }

    .module-pipeline_body-item-content {
        padding-left: 10px;
        padding-right: 10px;
    }

    .module-pipeline_legend-list {
        display: block;
    }

    .module-cares .slick-slider .slick-track {
        align-items: flex-start;
    }
}

/*======================END HOME======================*/
/*======================IR HOME=======================*/
.page-investors .module-banner-text {
    min-height: 250px;
    padding-bottom: 50px;
}

.page-investors .pane--banner .pane_inner {
    position: relative;
}

.module-company-profile.module-company-profile {
    position: relative;
    padding-top: 140px;
    padding-bottom: 150px;
}

.module-company-profile_image {
    position: absolute;
    top: 0;
    left: 0;
    width: 33.33333%;
    display: block;
    z-index: 1;
}

.module-why-invest {
    position: relative;
}

.module-why-invest>* {
    position: relative;
    z-index: 1;
}

.module-why-invest:after {
    content: "";
    background-image: url(http://s27.q4cdn.com/486207181/files/design/circles-pattern2.svg);
    background-repeat: no-repeat;
    background-position: center 90%;
    background-size: cover;
    opacity: 0.5;
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    height: 254px;
}

.module-why-invest .slick-slider {
    padding: 0;
}

.module-why-invest .slick-slide>div:not([class]) {
    align-items: stretch;
}

.module-why-invest_column {
    height: 100%;
    text-align: center;
    padding: 30px 20px;
}

.module-why-invest_column>*:first-child {
    margin-top: 0;
}

.module-why-invest_column>*:last-child {
    margin-bottom: 0;
}

.module-why-invest_column-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 130px;
    height: 130px;
    border: 4px solid rgba(255, 255, 255, 0.2);
    border-radius: 100%;
    font-size: 6.5rem;
    line-height: 1;
    margin-left: auto;
    margin-right: auto;
    transition: 0.3s ease-in-out;
}

.module-why-invest_column:hover .module-why-invest_column-icon {
    border-color: #5AC2A0;
}

.module-why-invest_column-title {
    font-size: 2.2rem;
    line-height: 1.182;
}

.module-events-presentation {
    position: relative;
}

.module-events-presentation>* {
    position: relative;
    z-index: 1;
}

.module-events-presentation:after {
    content: "";
    background-image: url(http://s27.q4cdn.com/486207181/files/design/circles-pattern2.svg);
    background-repeat: no-repeat;
    background-position: center 98%;
    background-size: cover;
    opacity: 0.5;
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    height: 254px;
}

@media only screen and (max-width: 1023px) {
    .page-investors .module-banner-text {
        min-height: auto;
    }
}

@media only screen and (max-width: 768px) {
    .module-company-profile.module-company-profile {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .module-company-profile_image {
        position: static;
        margin-left: -30px;
        width: auto;
    }

    .module-events-presentation .grid_col+.grid_col>.module {
        padding-top: 0;
    }
}

@media only screen and (max-width: 767px) {
    .page-investors .module-banner-text {
        min-height: auto;
    }

    .module-why-invest .slick-slider .slick-track {
        align-items: flex-start;
    }
}

/*====================END IR HOME=====================*/
/*=====================OUR STORY======================*/
.module-what-we-do.module-what-we-do {
    position: relative;
    padding-top: 150px;
    padding-bottom: 150px;
}

.module-what-we-do_image {
    position: absolute;
    top: 50px;
    left: 0;
    width: 33.33333%;
    display: block;
    z-index: 1;
}

.module-what-we-do .button {
    margin-top: 30px;
}

.module-story-team.module-story-team {
    position: relative;
    padding-bottom: 140px;
}

.module-story-team:after {
    content: "";
    background-image: url(http://s27.q4cdn.com/486207181/files/design/circles-pattern2.svg);
    background-repeat: no-repeat;
    background-position: center 98%;
    background-size: cover;
    opacity: 0.5;
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    height: 254px;
}

.module-story-team_image {
    position: absolute;
    top: -90px;
    right: 0;
    width: 33.33333%;
    display: block;
    z-index: 1;
    text-align: right;
}

.module-story-team_content {
    position: relative;
    z-index: 1;
}

.module-story-team .button {
    margin-top: 30px;
}

@media only screen and (max-width: 768px) {
    .module-what-we-do.module-what-we-do {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .module-what-we-do_image {
        position: static;
        margin-left: -30px;
        width: auto;
    }

    .module-story-team.module-story-team {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .module-story-team_image {
        position: static;
        margin-right: -30px;
        width: auto;
    }
}

/*===================END OUR STORY====================*/
/*====================OUR SCIENCE=====================*/
.module-discover.module-discover {
    position: relative;
    padding-top: 120px;
}

.module-discover_image {
    position: absolute;
    top: 50px;
    right: 0;
    width: 33.33333%;
    display: block;
    z-index: 1;
    text-align: right;
}

.module-technologies .module-technologies-boxes {
    padding-top: 10px;
}

.module-technologies-boxes .module_item {
    border: none;
    padding-top: 20px;
    padding-bottom: 0;
}

.module-technologies-boxes .module_item {
    min-height: 247px;
}

.module-technologies-boxes .module_item-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
    background-color: #fff;
    box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.15);
    border-radius: 30px;
    padding: 50px;
}

.module-technologies-boxes .module_item-inner>*:first-child {
    margin-top: 0;
}

.module-technologies-boxes .module_item-inner>*:last-child {
    margin-bottom: 0;
}

.module-technologies-boxes .module_item-inner>*:first-child {
    margin-top: 0;
}

.module-technologies-boxes .module_item-inner>*:last-child {
    margin-bottom: 0;
}

.module-technologies-boxes .module_item--activators .module_item-inner {
    flex-direction: column;
    align-items: stretch;
    justify-content: stretch;
}

.module-technologies-boxes .module_item-button-container:not(:last-child) {
    margin-bottom: 20px;
}

.module-technologies-boxes .module_item-button-container .button {
    width: 100%;
}

.module-technologies-boxes .module_item-title {
    font-size: 2.2rem;
    line-height: 1.363;
    margin: 0;
}

.module-technologies-boxes .module_item-description {
    margin-bottom: 30px;
}

.module-technologies-boxes .module_item-description>*:first-child {
    margin-top: 0;
}

.module-technologies-boxes .module_item-description>*:last-child {
    margin-bottom: 0;
}

.module-technologies-boxes .module_more {
    margin-top: auto;
}

.module-nextgeneration.module-nextgeneration {
    padding-top: 200px;
    padding-bottom: 200px;
}

.module-nextgeneration .module_circled-image img {
    width: 400px;
}

.module-nrf2-activators .module-full-width {
    width: 100vw;
    max-width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    margin: 20px 0;
}

.module-nrf2-activators .module-full-width .module_container-image {
    height: 100%;
    right: 0;
}

.module-nrf2-activators .module-full-width .module_container-image span {
    height: 90%;
}

.module-ror.module-ror {
    padding-top: 200px;
    padding-bottom: 200px;
}

.module-ror.module-ror .module_container-image--left {
    left: 0;
}

.module-technologies_therapies-item+.module-technologies_therapies-item {
    padding-top: 20px;
}

@media only screen and (max-width: 1023px) {
    .module-technologies-boxes .module_item {
        min-height: auto;
    }

    .module-technologies-boxes .module_item.grid_col {
        flex-basis: 100%;
        max-width: 100%;
    }

    .module-technologies-boxes .module_item-inner {
        padding: 30px;
    }
}

@media only screen and (max-width: 768px) {
    .module-technologies-boxes .module_item-column+.module_item-column {
        padding-top: 15px;
    }

    .module-discover.module-discover {
        padding-top: 100px;
    }

    .module-discover_image {
        position: static;
        width: auto;
        margin-right: -30px;
    }

    .module-nextgeneration.module-nextgeneration {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .module-nextgeneration .module_circled-image img {
        width: auto;
    }

    .module-ror.module-ror {
        padding-top: 100px;
        padding-bottom: 100px;
    }
}

/*==================END OUR SCIENCE===================*/
/*=================DISEASES WE TARGET=================*/
.module-fight-disease.module-fight-disease {
    position: relative;
    padding-top: 120px;
    padding-bottom: 270px;
}

.module-fight-disease_image {
    position: absolute;
    top: 50px;
    left: 0;
    width: 33.33333%;
    display: block;
    z-index: 1;
}

.module-fight-disease .module-diseases_list {
    margin-top: 50px;
}

.module-diseases {
    position: relative;
}

.module-diseases:after {
    content: "";
    background-image: url(http://s27.q4cdn.com/486207181/files/design/circles-pattern2.svg);
    background-repeat: no-repeat;
    background-position: center 98%;
    background-size: cover;
    opacity: 0.5;
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    height: 254px;
}

.module-diseases>* {
    position: relative;
    z-index: 1;
}

.module-diseases_videos {
    position: relative;
    top: -70px;
    margin-bottom: -20px;
}

.module-diseases_videos-item .grid_col>div {
    height: 100%;
}

.module-diseases_videos-item-thumbnail {
    background-image: url("../design/diseases-video.jpg");
    background-repeat: no-repeat;
    background-position: left top;
    background-size: cover;
    min-height: 259px;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
}

.module-diseases_videos-item-thumbnail a {
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
}

.module-diseases_videos-item-thumbnail a:after {
    font-family: 'q4-icons';
    content: "\e929";
    font-size: 8.7rem;
    line-height: 1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
}

.module-diseases_videos-item-content {
    padding: 50px;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    background-color: #fff;
    box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.15);
}

.module-diseases_videos-item-content>*:first-child {
    margin-top: 0;
}

.module-diseases_videos-item-content>*:last-child {
    margin-bottom: 0;
}

.module-diseases_videos-item-title {
    font-size: 2.2rem;
    line-height: 1.363;
}

.module-diseases_videos-item-content .button {
    margin-top: 30px;
}

.module-diseases_list {
    list-style-type: none;
    margin-top: 0;
    margin-bottom: 0;
    padding: 0;
}

.module-diseases_list li {
    padding-bottom: 20px;
}

.module-diseases_list .button {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}

.module-ckd .module_circled-image:before {
    border-width: 2.61vw;
}

@media only screen and (max-width: 768px) {
    .module-fight-disease.module-fight-disease {
        padding-top: 100px;
        padding-bottom: 150px;
    }

    .module-fight-disease_image {
        position: static;
        width: auto;
        margin-left: -30px;
    }

    .module-diseases_videos-item-thumbnail {
        border-top-left-radius: 30px;
        border-top-right-radius: 30px;
        border-bottom-left-radius: 0;
    }

    .module-diseases_videos-item-content {
        border-top-right-radius: 0;
        border-bottom-left-radius: 30px;
        border-bottom-right-radius: 30px;
        padding: 30px;
    }

    .module-ckd .module_circled-image:before {
        border-width: 20px;
    }
}

/*===============END DISEASES WE TARGET===============*/
/*=================COMPASSIONATE USE==================*/

.module-compassionate_image {
    position: absolute;
    top: 50px;
    left: 0;
    width: 33.33333%;
    display: block;
    z-index: 1;
}

.module_circled-image {
    display: inline-block;
    border-radius: 100%;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 50px rgba(0, 0, 0, 0.25);
    max-width: 100%;
}

.module_circled-image:before {
    content: "";
    border: 21px solid rgba(255, 255, 255, 0.5);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 50px);
    height: calc(100% - 50px);
    border-radius: 100%;
}

.module_circled-image--larger-border:before {
    border-width: 30px;
}

.module_circled-image img {
    vertical-align: top;
}

@media only screen and (max-width: 768px) {
    .module_circled-image img {
        width: 400px;
    }

    .module_circled-image:before {
        border-width: 20px;
    }

    .module_circled-image--larger-border:before {
        border-width: 20px;
    }

    .module-compassionate_image {
        position: static;
        margin-left: -30px;
        width: auto;
    }
}

/*===============END COMPASSIONATE USE================*/
/*======================BENEFITS======================*/
.module-working_intro {
    font-size: 2rem;
    line-height: 1.5;
}

.module-working_intro>*:first-child {
    margin-top: 0;
}

.module-working_intro>*:last-child {
    margin-bottom: 0;
}

.module-working_columns {
    padding-top: 70px;
}

.module-working_column-item {
    padding-bottom: 20px;
}

.module-working_column-item img {
    width: 100%;
    vertical-align: top;
}

.module-testimonials_items-container.slick-slider {
    padding: 0;
}

.module-testimonials_items-container.slick-slider .slick-track {
    align-items: flex-start;
}

.module-testimonials_item-description {
    border-top: 1px solid #9E9E9E;
    border-bottom: 1px solid #9E9E9E;
    padding-top: 45px;
    padding-bottom: 45px;
    font-size: 2rem;
    line-height: 1.5;
}

.module-testimonials_item-description>*:first-child {
    margin-top: 0;
}

.module-testimonials_item-description>*:last-child {
    margin-bottom: 0;
}

.module-testimonials_item-photo-name {
    text-align: center;
    padding-top: 70px;
}

.module-testimonials_item-photo {
    width: 152px;
    height: 152px;
    border-radius: 100%;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
}

.module-testimonials_item-photo img {
    width: 100%;
}

.module-testimonials_item-name-position {
    margin-top: 40px;
}

.module-testimonials_item-name {
    text-transform: uppercase;
    margin-top: 0;
}

.module-testimonials_item-position {
    max-width: 260px;
    margin-left: auto;
    margin-right: auto;
}

.module-testimonials_items-container .slick-dots {
    margin-top: 60px;
}

.module-cares-videos_item-inner {
    display: block;
    height: 100%;
    position: relative;
}

.module-cares-videos_item-thumbnail {
    position: relative;
}

.module-cares-videos_item-thumbnail:after {
    content: "";
    background-color: rgba(50, 124, 181, 0.7);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.module-cares-videos_item-thumbnail img {
    display: block;
    width: 100%;
}

.module-cares-videos_item-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.module-cares-videos_item-logo img {
    vertical-align: top;
}

.module-has-image {
    position: relative;
}

.module_container-image {
    position: absolute;
    top: 50px;
    display: block;
    z-index: 1;
}

.module_container-image--upper {
    top: -90px;
}

.module_container-image--left {
    left: 0;
}

.module_container-image--right {
    right: 0;
    text-align: right;
}

.module_container-image--1-of-5 {
    width: 20%;
}

.module_container-image--1-of-4,
.module_container-image--2-of-8,
.module_container-image--3-of-12 {
    width: 25%;
}

.module_container-image--1-of-3,
.module_container-image--2-of-6,
.module_container-image--4-of-12 {
    width: 33.33333%;
}

.module_container-image--2-of-5 {
    width: 40%;
}

.module_container-image--1-of-2,
.module_container-image--2-of-4,
.module_container-image--3-of-6,
.module_container-image--4-of-8,
.module_container-image--6-of-12 {
    width: 50%;
}

.module_container-image--3-of-5 {
    width: 60%;
}

.module_container-image--2-of-3,
.module_container-image--4-of-6,
.module_container-image--8-of-12 {
    width: 66.66667%;
}

.module_container-image--3-of-4,
.module_container-image--6-of-8,
.module_container-image--9-of-12 {
    width: 75%;
}

.module_container-image--4-of-5 {
    width: 80%;
}

.module_container-image--1-of-6 {
    width: 16.66667%;
}

.module_container-image--5-of-6 {
    width: 83.33333%;
}

.module_container-image--1-of-7 {
    width: 14.28571%;
}

.module_container-image--2-of-7 {
    width: 28.57143%;
}

.module_container-image--3-of-7 {
    width: 42.85714%;
}

.module_container-image--4-of-7 {
    width: 57.14286%;
}

.module_container-image--5-of-7 {
    width: 71.42857%;
}

.module_container-image--6-of-7 {
    width: 85.71429%;
}

.module_container-image--1-of-8 {
    width: 12.5%;
}

.module_container-image--3-of-8 {
    width: 37.5%;
}

.module_container-image--5-of-8 {
    width: 62.5%;
}

.module_container-image--7-of-8 {
    width: 87.5%;
}

.module_container-image--1-of-12 {
    width: 8.33333%;
}

.module_container-image--2-of-12 {
    width: 16.66667%;
}

.module_container-image--5-of-12 {
    width: 41.66667%;
}

.module_container-image--7-of-12 {
    width: 58.33333%;
}

.module_container-image--10-of-12 {
    width: 83.33333%;
}

.module_container-image--11-of-12 {
    width: 91.66667%;
}

.module-benefits .module_container-image {
    top: 50px;
    width: 33.33333%;
}

.module-benefits .module_list-buttons {
    margin-top: 30px;
}

.module-advocacy .module_container-image {
    width: 33.33333%;
}

.module-clinical .module_circled-image:before {
    border-width: 2.61vw;
}

.module_list-buttons {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

.module_list-buttons li:not(:last-child) {
    margin-right: 20px;
    margin-bottom: 20px;
}

.module-advocacy_diseases .grid_col {
    padding-bottom: 20px;
}

.module-advocacy_diseases img {
    vertical-align: middle;
}

@media only screen and (max-width: 768px) {
    .module_container-image.module_container-image.module_container-image {
        position: static;
        max-width: none;
        width: auto;
    }

    .module_container-image--left {
        margin-left: -30px;
        margin-bottom: 30px;
    }

    .module_container-image--right {
        margin-top: 30px;
        margin-right: -30px;
    }

    .module-clinical .module_circled-image:before {
        border-width: 20px;
    }


}

/*====================END BENEFITS====================*/
/*=====================CONTACT US=====================*/
.module-locations_columns>.grid_col {
    padding-bottom: 20px;
}

.module-locations_column {
    display: flex;
    height: 100%;
    background-color: #fff;
    box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.15);
    padding: 30px;
}

.module-locations_column-image {
    width: 30%;
    flex: 0 0 auto;
}

.module-locations_column-content {
    flex-grow: 1;
    padding-left: 20px;
}

.module-locations_column-content>*:first-child {
    margin-top: 0;
}

.module-locations_column-content>*:last-child {
    margin-bottom: 0;
}

.module-locations_column-title {
    color: #327CB5;
}

.layout--iframe .pane--content .module-form--contact {
    padding-top: 1em;
    padding-bottom: 3em;
}

.layout--iframe .pane--content .module-form--contact .module_container--outer {
    padding-left: 2px;
    padding-right: 2px;
}

.layout--iframe .pane--content .module_container--outer {
    max-width: none;
}

.layout--iframe .pane--content .module-form--contact p {
    margin: 0;
    padding-top: 1em;
    padding-bottom: 1em;
}

#map-container .highcharts-series.highcharts-series-0>g>path {
    transition: 0.3s ease-in-out;
}

#map-container .highcharts-series.highcharts-series-0.highcharts-series-inactive>g>path[fill="#25517B"] {
    fill: #0F304F;
}

.module-form-iframe .module_options-label {
    display: block;
    font-size: 1.4rem;
    margin-bottom: 5px;
    margin-right: 0;
}

.module-form-iframe .module_options-select {
    display: block;
    width: 50%;
}

@media only screen and (max-width: 480px) {
    .module-locations_column {
        flex-direction: column;
    }

    .module-locations_column>div+div {
        margin-top: 20px;
    }

    .module-locations_column-image {
        width: 100%;
    }

    .module-locations_column-content {
        padding-left: 0;
    }
}

/*===================END CONTACT US===================*/
/*===============SOCIAL MEDIA DISCLOSURE==============*/
.module-links-social-inline ul {
    display: flex;
    flex-wrap: wrap;
}

.module-links-social-inline li:not(:last-child) {
    margin-right: 10px;
}

.module-links-social-inline li a {
    font-size: 2.5rem;
    line-height: 1;
    display: block;
    text-decoration: none;
}

/*=============END SOCIAL MEDIA DISCLOSURE============*/
/*========================ESG=========================*/
.module-ceo-letter_image {
    border-radius: 100%;
    overflow: hidden;
    box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.15);
    background-color: #fff;
    display: inline-block;
}

.module-ceo-letter_image img {
    vertical-align: top;
}

.module-ceo-letter .button {
    margin-top: 20px;
}

.module-esg-pillars .module_item {
    border: none;
    padding-top: 0;
    padding-bottom: 20px;
    min-height: 500px;
}

.module-esg-pillars .module_item-link {
    display: block;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    height: 100%;
    padding: 30px;
    position: relative;
    overflow: hidden;
}

.module-esg-pillars .module_item-link:after {
    content: "";
    background-color: #000;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
    transition: 0.3s ease;
}

.module-esg-pillars .module_item-link:hover:after {
    opacity: 0.7;
}

.module-esg-pillars .module_item-content {
    height: 100%;
    transform: translateY(100%) translateY(-60px);
    transition: transform .3s ease;
    position: relative;
    z-index: 1;
    display: block;
}

.module-esg-pillars .module_item-link:hover .module_item-content {
    transform: translateY(0);
}

.module-esg-pillars .module_item-content>*:first-child {
    margin-top: 0;
}

.module-esg-pillars .module_item-content>*:last-child {
    margin-bottom: 0;
}

.module-esg-pillars .module_item-title {
    display: block;
}

.module-esg-pillars .module_item-description {
    opacity: 0;
    visibility: hidden;
    transition: .3s ease;
    display: block;
}

.module-esg-pillars .module_item-link:hover .module_item-description {
    opacity: 1;
    visibility: visible;
}

.module-esg-pillars .module_item-description>*:first-child {
    margin-top: 0;
}

.module-esg-pillars .module_item-description>*:last-child {
    margin-bottom: 0;
}

.module-esg-report {
    background-image: url("../design/esg-sustainability-reports.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.module-esg-report .module_item {
    padding: 0;
}

.module-esg-report .module_link {
    position: relative;
    display: inline-block;
    padding-left: 50px;
    margin: 0;
}

.module-esg-report .module_link .module_link-text,
.module-esg-report .module_link .module_link-type-size {
    display: block;
    width: 100%;
}

.module-esg-report .module_link .q4icons_icon:before {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 3rem;
    padding: 0;
}

@media only screen and (max-width: 1023px) {
    .module-esg-pillars .module_item.grid_col {
        flex-basis: 100%;
        max-width: 100%;
    }
}

@media only screen and (max-width: 768px) {
    .module-esg-report .module_item>.grid>.grid_col+.grid_col {
        padding-top: 20px;
    }
}

.module-environmental .images {
    position: relative;
}

.module-environmental .module_container-image {
    position: static;
}

.module-environmental .module_container-image--right {
    /* position: absolute; */
    top: 50px;
    right: -31%;
    width: 33.33333%;
    display: block;
    z-index: 1;
    text-align: right;
}

.module-environmental .module_container-image--left {
    /* transform: translateX(-90%); */
    /* position: absolute; */
    top: 50px;
    left: -30%;
    width: 33.33333%;
    display: block;
    z-index: 1;
    text-align: right;
}

.module-environmental .images .grid>div {
    vertical-align: middle;
    display: inline-block;
}

.module-esg-ltr,
.module-esg-rtl {
    position: relative;
}

.module-esg-ltr:after,
.module-esg-rtl:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 50%;
    display: block;
}

.module-esg-ltr:after {
    left: 0;
}

.module-esg-rtl:before {
    right: 0;
}

.module-esg-communities2.module-esg-communities2 {
    padding-top: 150px;
    padding-bottom: 200px;
}

.module-documents_downloads {
    padding-top: 20px;
}

.module-documents_downloads .grid_col {
    padding-right: 20px;
}

.module-documents_downloads .grid_col:nth-child(odd) {
    border-right: 5px solid #327CB5;
}

@media only screen and (max-width: 1024px) {
    .module-documents_downloads .grid_col {
        padding-right: 0;
    }

    .module-documents_downloads .grid_col+.grid_col {
        padding-top: 30px;
    }

    .module-documents_downloads .grid_col:nth-child(odd) {
        border: none;
    }
}

@media only screen and (max-width: 768px) {
    .module-environmental .module_circled-image img {
        width: auto;
    }

    .module-esg-ltr:after,
    .module-esg-rtl:before {
        position: static;
        width: 100%;
        padding-bottom: 68vw;
    }

    .module-esg-ltr:after {
        margin-top: 30px;
    }

    .module-esg-rtl:before {
        margin-bottom: 30px;
    }

    .module-esg-communities2.module-esg-communities2 {
        padding-top: 100px;
        padding-bottom: 100px;
    }
}

/*======================END ESG=======================*/

/*=======================END INNER PAGES======================*/


/*==00208607==*/

.break-links .cookie-table,
.module--privacy-clinical .cookie-table {
    padding: 1px;
}
.break-links .cookie-table-cell,
.module--privacy-clinical .cookie-table-cell {
    width: 25% !important;
    border-bottom: 1px solid #20537B;
    padding: 1px;
}
.break-links .cookie-table-lifespan,
.module--privacy-clinical .cookie-table-lifespan {
    width: 15% !important;
}
.break-links thead,
.module--privacy-clinical thead {
    font-weight: 700;
    border-bottom: 2px solid #20537B;
}

/*-- 00226515 --*/
.module_popup-jobfair {
    padding: 0 !important;
}
.PageCareersCPOJobFair ~ .fancybox-container .fancybox-slide--html {
    padding: 200px;
}
@media only screen and (max-width: 1024px) {
    .PageCareersCPOJobFair ~ .fancybox-container .fancybox-slide--html {
        padding: 0px;
    }
}

.module_jobfair-circle-image {
    border-radius: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    object-position: 80% 100%;
}
.module_jobfair .button {
    margin-right: 15px;
    margin-bottom: 25px;
}
.module_jobfair .button-register {
    background-color:#2c7bb5;
    font-family: Roboto;
    font-style: normal;
    font-weight: bold;
    font-size: 30px;
    line-height: 35px;
    text-align: center;
    padding: 20px 52px;
}
.module_jobfair-more {
    display: flex;
}
@media only screen and (max-width: 425px) {
    .module_jobfair-more {
        flex-direction: column;
    }
}
.module_positions .module_jobfair-circle-image,
.module_contact .module_jobfair-circle-image {
    width: 65.5%
}
.module_jobfair-form {
    padding-top: 0px !important;
}
.module_jobfair-form .module-form_item {
    width: 45%;
}
.module_jobfair-form .module-form_item:first-of-type {
     width: 45%;
    display: block;
}
.module.module-embed.module-title-line-right {
    padding-bottom:20px
}
.PageCareersCPOJobFair .pane.pane--footer.grid.grid--no-gutter {
    background-image: url('../images/2021/Sunrise-with-Blue-Bonnets-v2.jpg');
    background-position: center;
    background-size: cover;
    height: 642px;
}
.PageCareersCPOJobFair .module_location {
    margin-bottom: 0px;
}
.module_career-container .module_jobfair-image-container {
    display: inline-block;
}
.module_career-container .module_career_image img {
    outline-offset: -50px;
    outline: 25px solid rgba(255, 255, 255, 0.4);
    border-radius: 100%;
    width: 80%;
    margin: 0 auto;
    display: block;
}
@media only screen and (max-width: 767px) {
    .module_career-container .module_career_image img {
        width: 100%;
    }
    .module_career-container .module_career_image {
        padding: 0px !important;
        padding-right:0;
    }
}
.module_career-container .module_career_image {
    position: relative;
    padding-right: 20px;
    margin-bottom: 30px;
}
.module_career-container span.module_text-container {
    color: #fff;
    width: calc(80% - 120px);
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    /* display: none; */
    transform: translate(-50%, -50%);
    text-align: center;
}
.module_career-container span.module_text-container > * {
    margin: 0px;
    padding: 0 10px;
}
h3.module_career-title {
    color: #327CB5;
}
.module_jobfair-more .module_more .jobfair-anchor-link {
    font-family: Roboto;
    font-style: normal;
    font-weight: bold;
    font-size: 18px;
    line-height: 21px;
    text-align: center;
    padding: 15px 50px;
    margin-top: 30px;
    margin-right: 30px;
}
.module_jobfair-more .module_more .jobfair-anchor-link {
    font-family: Roboto;
    font-style: normal;
    font-weight: bold;
    font-size: 18px;
    line-height: 21px;
    text-align: center;
    padding: 15px 50px;
    margin-top: 30px;
    margin-right: 30px;
}

.module_career_image .module_text-container h5 {
    font-family: Roboto;
    font-style: normal;
    font-weight: 600;
    font-size: 27px;
    line-height: 29px;
    text-align: center;
    text-transform: capitalize;
    letter-spacing: 1.5px;
    text-shadow: 2px 2px 14px #000000;
}

.module_career_image .module_text-container p {
    text-shadow: 2px 2px 14px #000000;
    font-weight: 600;
    font-style: italic;
}
/*.module_career-contact img.module_jobfair-circle-image:not(.module_contact-circle-image) {*/ 
.module_career-contact img.module_jobfair-circle-image {
    outline-offset: -29px;
    outline: 16px solid rgba(255, 255, 255, 0.4);
}
.module_career-contact h3.module_career-title {
    margin:0px
}
.module_career-contact p {
    margin:0px
}

.module_career-contact .grid_col {
    vertical-align: baseline;
}

.module_actions .button{
			font-family: Roboto;
font-style: normal;
font-weight: bold;
font-size: 18px;
line-height: 21px;
padding: 15px 45px;
text-align: center;
}
.module_location_addresstext h3,
.module_location_addresstext p {
    margin:0px 0px 0px 25px;
}
.module_location_addresstext h3,
.module_location_addresstext p a{
    color: #327CB5;
}
.module_location_address {
   width: 196px;
}
.module-top_offset{
 margin-top:30px;
}
.module_address_flex {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    align-content: center;
    gap: 0px;
}
.module_location_map {
    padding-left: 70px!important;
}
/*fix*/
.module_career-container .module_carousel .module_jobfair-image-container:after, .module_about .module_jobfair-image-container:after {
    content: "";
    border: 25px solid rgba(255, 255, 255, 0.4);
    position: absolute;
    height: calc(100% - 50px); 
    width: calc(100% - 50px);
    top: 0;
    left: 0;
    border-radius: 100%;
    margin: 25px;
}
.module_career-container .module_career_image img, .module_career-contact img.module_jobfair-circle-image {
    outline: none;
    outline-offset: 0;
}
.module_career-container .module_jobfair-image-container {
    position: relative;
}
.module_career-container .module_carousel img, .module_about .module_jobfair-image-container img   {
    visibility: hidden;
}
.module_career-container .module_carousel .module_jobfair-image-container, .module_about .module_jobfair-image-container {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    border-radius: 100%;
    height: 0px;
    overflow: hidden;
    display: block;
    width: 80%;
    padding-bottom: 80%;
    margin: 0 auto;
}
.module_about .module_jobfair-image-container {
    width: 100%;
    padding-bottom: 100%;
}
.module_career-contact .grid_col {
    vertical-align: middle;
}
.module_career-container .module_career-contact .module_jobfair-image-container {
    display: block;
    margin: 0 auto;
    max-width: 170px;
    line-height: 0;   
}
.module_career-container .module_career-contact .module_jobfair-image-container a {
    display: inline-block;
}
.module_career-container .module_career-contact .module_jobfair-image-container img {
    width: 100%;
}
.module_career-container .module_career-contact .module_jobfair-image-container a:after {
    content: "";
    border: 15px solid rgba(255, 255, 255, 0.4);
    position: absolute;
    height: calc(100% - 30px); 
    width: calc(100% - 30px);
    top: 0;
    left: 0;
    border-radius: 100%;
    margin: 15px;
}
/*end fix*/
@media only screen and (max-width: 767px) {
    .mobile-hidden {
        display: none;
    }
    .module_career-contact {
        display: flex;
        flex-direction: column-reverse;
        text-align: center;
    }
    .module_jobfair-form .module-form_item:first-of-type {
         width: 100%;
    }
    .module_jobfair-form .module-form_item {
        width: 100%;
    }
    .PageCareersCPOJobFair .pane.pane--footer.grid.grid--no-gutter {
        height: 122px;
        background-repeat: no-repeat;
    }
     a.button.button-register.jobfair-anchor-link {
    display:block
    }
    .module_jobfair-more {
        display:block!important;
    }
    .module_jobfair-more a.button.jobfair-anchor-link {
        width:225px;
    }
    .module_jobfair .button-register {
        font-size: 25px;
        line-height: 35px;
        letter-spacing: 1px;
    }
   .module_location .module_location_address {
        width: 100%;
    }
    .module_location .module_address_flex {
        flex-wrap: wrap;
    }
    .module_location_addresstext {
        text-align: center;
        margin-bottom: 30px;
    }
}
@media only screen and (min-width: 768px) {
    .desktop-hidden {
        display: none;
    }


}
@media only screen and (max-width: 376px) {
    .module_address_flex {
        display: flex;
        justify-content: center;
        align-items: center;
        align-content: center;
        flex-direction: column;
        text-align: center;
    }
    .module_location_map {
        padding-left: 0px !important;
        margin-top:20px;
    }
    .module_career-container span.module_text-container > * {
        margin: 0px;
        padding: 0 0px!important;
    }
    .module_career-container span.module_text-container {
        width: calc(80% - 64px);
    }
}

.module-text-centered {
    text-align:center;
}
.PageCareersCPOJobFair .module_positions .slick-arrow {
    top: 44%;
}

/* 00273257 */

.Sectionour-technologies .module-faq .module_item, .PageAboutUs .module-faq .module_item, .PageDiseasesWeTargetChronicKidneyDisease .module-faq .module_item, .PageDiseasesWeTargetNeurology .module-faq .module_item, .PageOurScience .module-faq .module_item {
  border-top: 1px solid #9E9E9E;
  padding-top: 0;
}

.Sectionour-technologies .module-faq .js--active .module-faq_answer, .PageAboutUs .module-faq .js--active .module-faq_answer, .PageDiseasesWeTargetChronicKidneyDisease .module-faq .js--active .module-faq_answer, .PageDiseasesWeTargetNeurology .module-faq .js--active .module-faq_answer, .PageOurScience .module-faq .js--active .module-faq_answer {
  border-top: 1px solid #9E9E9E;
  padding-top: 20px;
}

.Sectionour-technologies .module-faq_question span, .PageAboutUs .module-faq_question span, .PageDiseasesWeTargetChronicKidneyDisease .module-faq_question span, .PageDiseasesWeTargetNeurology .module-faq_question span, .PageOurScience .module-faq_question span {
  font-weight: 300;
  font-size: 26px
}

.Sectionour-technologies .module-faq_question span:before, .PageAboutUs .module-faq_question span:before, .PageDiseasesWeTargetChronicKidneyDisease .module-faq_question span:before, .PageDiseasesWeTargetNeurology .module-faq_question span:before, .PageOurScience .module-faq_question span:before {
  content: '+';
  padding-right: 5px;
}

.Sectionour-technologies .js--active .module-faq_question span:before, .PageAboutUs .js--active .module-faq_question span:before, .PageDiseasesWeTargetChronicKidneyDisease .js--active .module-faq_question span:before, .PageDiseasesWeTargetNeurology .js--active .module-faq_question span:before, .PageOurScience .js--active .module-faq_question span:before {
  content: '-';
  padding-right: 5px;
}

/**CR 1198304929135125/1202453965178192/f ***/
.module-Neurology-kidney{
    padding-top:40px !important;
}
.module-Neurology-kidney  h2{
    margin-bottom: 0;
}
.module-Neurology-kidney .image-wrapper{
    display: flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
    align-content: center;
}
.module-Neurology-kidney  .image-wrapper--img{
    margin-right: 47px;
}
.module-Neurology-kidney  .image-wrapper--text{
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}
@media only screen and (max-width: 768px) {
    .module-Neurology-kidney .image-wrapper{
            flex-direction: column;
    }
    
}
 .module-Neurology-kidney .image-wrapper--text p {
margin-bottom: 0;
margin-top: 0;
}
    .module-Neurology-kidney .image-wrapper--text p:not(:first-child) {

margin-top: 0;
}
.grant-sponsorship-bg .pane--banner {
    background-image: url(../design/banner/blue-beaker-banner.png);
}

.grant-sponsorship-bg + .fancybox-container .fancybox-bg {
    background:rgba(35, 67, 91, 0.69);
}

.thank-you-modal-box.clearfix.module-has-image.fancybox-content {
    max-width: 806px;
    margin: auto;
    border-radius: 67px;
    padding: 0;
    box-shadow: 5px 5px 30px 5px rgba(0, 0, 0, 0.4);
}
.thank-you-modal-box img{
    width: 650px;
    shape-outside: ellipse(28% 54% at 127px 161px);
    float: left;
}
.thank-you-modal-box img.mobile {
    width: 80%;
    float: none;
    shape-outside: none;
    display: none;
}

.thank-you-modal-box .thank-you-modal-text{
    transform: translateY(16%);
    padding: 0 15px;
}

.thank-you-modal-box .thank-you-modal-text.fail {
    transform: none;
    padding: 90px 40px;
}

.thank-you-modal-box .thank-you-modal-text p{
    margin-bottom: 0;
}
.grant-thank-you-page  .thank-you-modal-box .thank-you-modal-text {
    transform: translateY(10%);
    padding: 40px;
}
@media only screen and (max-width: 768px) {
    .thank-you-modal-box{
        padding-bottom: 37px;
    }
    .thank-you-modal-box.clearfix.module-has-image.fancybox-content {
        max-width: 360px;
    }
    .thank-you-modal-box img{
        display: none;
    }
    .thank-you-modal-box img.mobile {
        display: block;
    }
    .thank-you-modal-box .thank-you-modal-text,
    .thank-you-modal-box .thank-you-modal-text.fail {
        transform: none;
        min-height: 203px;
        padding: 10px 40px 40px 40px;
    }
    .text-center-sm{
        text-align: center;
    }
}

.grant-sponsorship-bg .module-banner-text{
        width: unset;
    max-width: unset;
}
.no-margin-bottom{
    margin-bottom: 0;
}
.no-margin-top{
    margin-top: 0;
}
/**making the circle images circle **/
@media only screen and (max-width: 480px) {
    
    .module_container-image--right , .module_container-image--left{
         text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
}

.module-grants-sponsorship .module_container-image,
.module-grants-sponsorship .module_container-image.module_container-image--right{
    padding-right: 50px;
}
.module-independent-medical .module_container-image--left.hide-md,
.module-spon .module_container-image {
    padding-left: 50px;
}

/***********/
@media only screen and (max-width: 768px) {
    .module-independent-medical.module {
        padding-top: 69px;
        padding-bottom: 69px;
    }
    .module-Neurology-kidney .image-wrapper--img {
            max-width: 400px;
        padding-bottom: 10px;
    }
    .grant-sponsorship-bg  .module_container-image--right , .grant-sponsorship-bg  .module_container-image--left {
         text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    .module-grants-sponsorship .module_container-image {
        padding-right: 0px;
    }
    .hide-md{
        display: none;
    }
     .hide-desktop {
         padding-top: 20px;
    }
    .module-grants-sponsorship .module_container-image--right{
        padding-bottom:50px;
    }
}

@media only screen and (min-width: 769px) {
     .hide-desktop {
         display: none;
    }
}

/* CR-https://app.asana.com/0/1198304929135125/1202453965178192/f */
h2.module_title-form {
    margin-bottom: 0;
}

.grantspon {
    display: inline-block;
    border-radius: 100%;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 50px rgba(0, 0, 0, 0.25);
    width: 100%;
    max-width: 700px;
}

.module-spon .grantspon {
    max-width: 550px;
}

.module-submitting-application .module_container-image .module_circled-image {
    width: 100%;
    height: 100%;
    max-width: 480px;
    max-height: 480px;
}

@media screen and (max-width: 768px) {
    .module-submitting-application .module_container-image .module_circled-image {
        width: auto;
    }
}

.module-submitting-application .module_container-image .module_circled-image img {
    width: 100%;
}

/* 00433098 */
.module-settlement-materials {
    padding-bottom: 100px !important;
}
.module-settlement-materials .module_container--content {
    text-align: center;
}
    .module-settlement-title h2 span{
        color: #3F4C50;
        font-weight: 300;
    }
    .module-settlement-materials .module_item {
        /* border: 1px solid #9E9E9E; */
        border: none;
        border-radius: 10%;
        width: 45%;
        padding: 40px 40px 100px 40px;
        box-shadow: 0px 4px 30px rgb(0 0 0 / 15%);
        text-align: left;
    }
    .module-settlement-materials .module_item:nth-child(odd) {
        margin-right: 5%;
    }
    .settlement-doc-thumbnail {
        text-align: center;
    }
    .settlement-doc-thumbnail img {
        width: 80%;
    }
    .module-settlement-materials h4 {
        color: #327CB5;
        margin: 50px 0;
    }
    .module-settlement-materials .button {
        text-transform: uppercase;
    }
@media (max-width: 768px) {
    .module-settlement-materials .module_item {
        width: 100%;
        margin-bottom: 5%;
    }

}
/* 00433098 end */

/* 00458832 start */

.speedbump-container.fancybox-content {
  max-width: 700px;
  border-radius: 50px;
  max-height: 380px;
  overflow: hidden;
  padding: 0 0 20px 0;
}

.speedbump-container .container-left {
  vertical-align: middle;
  position: relative;
}


.speedbump-container .container-left .image-container {
  overflow: hidden;
  width: 330px;
  position: absolute;
  left: -75px;
  top: -30px; 
  
}

.speedbump-container .container-left img {
  border-radius: 50%;
  
}

.speedbump-container h3,
.speedbump-container .button_accept {
  text-transform: uppercase;
}

.speedbump-container .button_deny-container {
  text-align: right;
}

.speedbump-container .button_deny {
  background-color: white;
  color: #5AC2A0
}

/*@media screen and (max-width: 768px) {
  .speedbump-container .container-right {
    text-align: right;
    padding-left: 75px;
    padding-right: 10px;
  }

}*/

@media screen and (max-width: 660px) {

  .speedbump-container.fancybox-content {
    padding: 30px;
    max-width: 320px;
    max-height: 650px;
  }

  

  .speedbump-container .container-left {
    width: 100%;
    height: 170px;
    

  }

  .speedbump-container .container-right {
    text-align: left;
    padding-left: 0px;
    width: 100%;
    position: relative;
    margin-top: 50px;
  }
      .speedbump-container .container-right h3 {
    font-size:2.3rem;
  }

  .speedbump-container .container-right .button_deny-container {
    position: absolute;
    top: -220px;
    right: -5px;
  }

  .speedbump-container .container-right .button_deny {
    padding: 0px;
  }

  .speedbump-container .container-left .image-container {
    overflow: hidden;
    width: auto;
    width: 300px;
    left: -50px;
    top: -100px; 
    
  }

  .speedbump-container .footer {
    text-align: center;
  }
    div#sb-popup1 .container-right .body p {
        margin-right: 0px;
    }
}

.speedbump-container .button_deny-container .button {
    padding-bottom:0px!important;
}

.speedbump-container h3.speedbump_header {
    margin-top:0px;
}

.speedbump-container .grid_col.grid_col--4-of-7.container-right {
    padding-left: 0px;
}
div#sb-popup1 .container-right .body p {
    margin-right: 25px;
}


/* 00458832 end */


/*
 .module-pipeline_graphic {
    font-size: 1.74rem!important;
}


.PageHome .module-pipeline_body-cell--content .module-pipeline_body-text:after {
    border-top: 32px solid transparent!important;
}*/



/* 00473311 start */


/* UNCOMMENT WHEN PIPELINE MODULES ARE PUBLISHED */
.module-pipeline_body-cell--content .module-pipeline_body-text {
    padding: 13px 11px;
}

.module-pipeline_body-item-content p {
    margin-bottom: 0px;
}

.module-pipeline_body-item-content ul {
    margin-top: 0px;
    margin-bottom: 0px;
}

.module-ataxia .ataxia-logos .ataxia-logo-container {
    margin-top: 30px;
    /* margin-bottom: 20px; */
}

.module-ataxia .ataxia-logos .ataxia-logo-container img {
    max-width: 215px;
}

.module-ataxia .ataxia-logo-text {
    margin-top: 0px;
}

.PageAboutUsEthicsampComplianceCaliforniaDeclaration .module.california-declaration {
    padding-top: 100px;
}

@media screen and (max-width: 768px) {
    .module-ataxia .ataxia-logos .ataxia-logo-container {
        text-align: center;
    }

    .module-ataxia .ataxia-logos .ataxia-logo-container img {
        max-width: 200px;
    }

    .module-ataxia .ataxia-logo-text {
        text-align: center;
    }

}



/* Product page */
.product-page .pane--banner {
  background-image: url('../doc_downloads/2023/Skyclarys-Banner.png');
}

.product-page .module-page-title {
  display: none;
}

.header-logo-container {
  max-width: 300px;
}

.product-page h1.product-page-heading {
    font-size: 20px;
}

.product-page .skyclarys-container-one {
  margin-bottom: 50px;
  padding-top: 100px;
}

.product-page .product-approved-header {
  position: relative;
  /* background-color: white; */
}

.product-page .product-approved-header:after {
  content: "";
  display: block;
  width: 130px;
  height: 2px;
  background: #c5c7ca;
  right: 140px;
  top: 50%;
  position: absolute;
}

.product-page .product-approved-text {
  padding-right: 10px;
}

.product-page .text-blue {
  color:#2b7cb5;
}

.product-page .large-text-link {
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
}

.product-page .product-button {
  text-decoration: underline;
  text-transform: uppercase;
  font-weight: 700;
  min-width: 200px;
  height: 60px;
  border-radius: 40px;
  padding: 10px 26px;
  margin-bottom: 5px;
}

.product-page .product-button a {
  color: white;
  text-decoration: underline;
}

.product-page .skyclarys-logo-container {
    max-width: 300px;
    margin-left: 25%;
}

.product-page .reach-logo-container {
  width: 300px;
  margin-left: 25%;
  position: relative;
}

.product-page .reach-logo-container a {
  position: absolute;
  top: 55px;
  left: 70px;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 16px;
  margin-top: 3px;
}

.product-page .reach-logo-container a:hover {
  color: #C7C8CA;
}

.product-page .reach-logo-container a p {
  margin-bottom: 0px;
  margin-top: 3px;
}

div#sb-popup2.speedbump-container.fancybox-content .container-left .image-container {
  width: 300px;
  left: -84px;
}

@media screen and (max-width: 1200px) {
  .product-page .product-approved-header:after {
    right: 0px;
    width: 65px;
  }
}

@media screen and (max-width: 900px) {
  .product-page .reach-logo-container {
    margin-left: 10%;
  }
}

@media screen and (max-width: 768px) {

  .product-page .skyclarys-container-one {
    margin-bottom: 50px;
  }

  .product-page .product-approved-header:after {
    left: 50%;
    width: 55px;
  }

  .product-page .reach-logo-container {
    margin-left: 0px;
    margin-bottom: 50px;
    display: inline-block;
  }

  .product-page .skyclarys-logo-container {
    margin-left: 0px;
    }
}

@media screen and (max-width: 480px) {
  
    .product-page .skyclarys-container-one {
        padding-top: 0px;
    }

  .product-page .skyclarys-logo-container {
    margin-bottom: 50px;
  }
  
  .product-page .product-approved-header:after {
    right: 0px;
    left: auto;
    width: 45px;
  }

  .product-page .reach-logo-container {
    width: 270px;
  }

  .product-page .reach-logo-container a {
    top: 50px;
    left: 62px;
  }

  .product-page .product-button {
    margin-bottom: 35px;
  }
}

/* Product Popup */
.product-popup.home {
  width: auto;
  border-radius: 5%;
}

.product-popup .product_image-container {
  width: 700px;
  height: 360px;
  background-image: url('../doc_downloads/2023/Skyclarys-Interstitial-PopUp-desktop.png');
  background-size: cover;
}

.product-popup .fancybox-close-small {
  height: 65px;
  width: 65px;
  margin-top: 8px;
}

@media screen and (max-width: 768px) {
  .product-popup .product_image-container {
    width: 430px;
    height: 460px;
    background-image: url('../doc_downloads/2023/Skyclarys-Interstitial-PopUp-mobile.png');
  }

  .product-popup .fancybox-close-small {
    margin-top: 0px;
  }

}

@media screen and (max-width: 480px) {
  .product-popup .product_image-container {
    width: 290px;
    height: 315px;
  }

  .product-popup .fancybox-close-small {
    height: 45px;
    width: 45px;
  }
}



/* Within */
/* .nav--main .level1>li>a,
.nav--main .level1>li>.submenu-trigger>a {
    font-size: 1.3rem;
} */

/* .nav--main .level1>li>a,
.nav--main .level1>li>.submenu-trigger>a {
    font-size: 1.2rem;
} */

/* .nav--main {
  font-size: 1.2rem;
} */

/* 00473311 end */
