/*==================================
 ------------ 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;
}

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;
}

::-webkit-scrollbar {
    width: 13px;
    height: 13px;
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(13deg, #00873e 14%,#00873E 64%);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover{
    background: linear-gradient(13deg, #79D97C 14%,#79d97c 64%);
}
::-webkit-scrollbar-track{
    background: #ffffff;
    border-radius: 10px;
    box-shadow: inset 7px 10px 12px #f0f0f0;
}


/*---------- Animations ----------*/
@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.animate {
    -webkit-animation-duration: .75s;
    -webkit-animation-fill-mode: both;
    animation-duration: .75s;
    animation-fill-mode: both;
    animation-delay: .75s;
    opacity: 0;
}

.animate.js--animate {
    opacity: 1;
}

.animate.infinite {
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

@-webkit-keyframes fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.fade-in.js--animate {
    -webkit-animation-name: fade-in;
    animation-name: fade-in;
}

@-webkit-keyframes fade-in-left {
    0% {
        -webkit-transform: translate3d(-100%, 0, 0);
        opacity: 0;
        transform: translate3d(-100%, 0, 0)
    }

    to {
        -webkit-transform: translateZ(0);
        opacity: 1;
        transform: translateZ(0)
    }
}

@keyframes fade-in-left {
    0% {
        -webkit-transform: translate3d(-100%, 0, 0);
        opacity: 0;
        transform: translate3d(-100%, 0, 0)
    }

    to {
        -webkit-transform: translateZ(0);
        opacity: 1;
        transform: translateZ(0)
    }
}

.fade-in-left.js--animate {
    -webkit-animation-name: fade-in-left;
    animation-name: fade-in-left
}

/*@-webkit-keyframes start-fade-from-left {
    0% {
        -webkit-transform: translate3d(-100%, 0, 0);
        opacity: 0;
        transform: translate3d(-100%, 0, 0)
    } 66.66667% {
        -webkit-transform: translateZ(0);
        opacity: 0;
        transform: translateZ(0)
    } 100% {
        opacity: 1;
    }
}

@keyframes start-fade-from-left {
    0% {
        -webkit-transform: translate3d(-100%, 0, 0);
        opacity: 0;
        transform: translate3d(-100%, 0, 0)
    } 66.66667% {
        -webkit-transform: translateZ(0);
        opacity: 0;
        transform: translateZ(0)
    } 100% {
        opacity: 1;
    }
}*/

.start-fade-from-left.js--animate {
    -webkit-animation-name: start-fade-from-left;
    animation-name: start-fade-from-left;
}

/*@-webkit-keyframes end-fade-from-left {
    0% {
        -webkit-transform: translate3d(-100%, 0, 0);
        opacity: 0;
        transform: translate3d(-100%, 0, 0);
    } 66.66667% {
        opacity: 1;
    } 100% {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

@keyframes end-fade-from-left {
    0% {
        -webkit-transform: translate3d(-100%, 0, 0);
        opacity: 0;
        transform: translate3d(-100%, 0, 0);
    } 66.66667% {
        opacity: 1;
    } 100% {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}*/

.end-fade-from-left.js--animate {
    -webkit-animation-name: end-fade-from-left;
    animation-name: end-fade-from-left;
}

@-webkit-keyframes fade-in-right {
    0% {
        -webkit-transform: translate3d(100%, 0, 0);
        opacity: 0;
        transform: translate3d(100%, 0, 0);
    }

    to {
        -webkit-transform: translateZ(0);
        opacity: 1;
        transform: translateZ(0);
    }
}

@keyframes fade-in-right {
    0% {
        -webkit-transform: translate3d(100%, 0, 0);
        opacity: 0;
        transform: translate3d(100%, 0, 0);
    }

    to {
        -webkit-transform: translateZ(0);
        opacity: 1;
        transform: translateZ(0);
    }
}

.fade-in-right.js--animate {
    -webkit-animation-name: fade-in-right;
    animation-name: fade-in-right;
}

@-webkit-keyframes fade-in-top {
    0% {
        -webkit-transform: translate3d(0, 100%, 0);
        opacity: 0;
        transform: translate3d(0, 100%, 0);
    }

    to {
        -webkit-transform: translateZ(0);
        opacity: 1;
        transform: translateZ(0);
    }
}

@keyframes fade-in-top {
    0% {
        -webkit-transform: translate3d(0, 100%, 0);
        opacity: 0;
        transform: translate3d(0, 100%, 0);
    }

    to {
        -webkit-transform: translateZ(0);
        opacity: 1;
        transform: translateZ(0);
    }
}

.fade-in-top.js--animate {
    -webkit-animation-name: fade-in-top;
    animation-name: fade-in-top;
}

@-webkit-keyframes fade-in-bottom {
    0% {
        -webkit-transform: translate3d(0, -100%, 0);
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }

    to {
        -webkit-transform: translateZ(0);
        opacity: 1;
        transform: translateZ(0);
    }
}

@keyframes fade-in-bottom {
    0% {
        -webkit-transform: translate3d(0, -100%, 0);
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }

    to {
        -webkit-transform: translateZ(0);
        opacity: 1;
        transform: translateZ(0);
    }
}

.fade-in-bottom.js--animate {
    -webkit-animation-name: fade-in-bottom;
    animation-name: fade-in-bottom;
}

@-webkit-keyframes bounce {

    0%,
    100% {
        -webkit-transform: translateY(0);
    }

    50% {
        -webkit-transform: translateY(-15px);
    }
}

@keyframes bounce {

    0%,
    100% {
        -webkit-transform: translateY(0);
    }

    50% {
        -webkit-transform: translateY(-15px);
    }
}

.bounce {
    -webkit-animation-name: bounce;
    -webkit-transform-origin: center bottom;
    animation-name: bounce;
    transform-origin: center bottom;
}


@-webkit-keyframes scale-vertical {
    0% {
        -webkit-transform: scaleY(0);
        transform: scaleY(0);
    }

    100% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }
}


@keyframes scale-vertical {
    0% {
        -webkit-transform: scaleY(0);
        transform: scaleY(0);
    }

    100% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }
}

.scale-vertical.js--animate {
    -webkit-animation-name: scale-vertical;
    animation-name: scale-vertical;
}

@-webkit-keyframes pulse {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }

    50% {
        opacity: 1;
        transform: scale(1.3);

    }

    100% {
        opacity: 1;
        transform: scale(1);

    }
}

@keyframes pulse {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }

    50% {
        opacity: 1;
        transform: scale(1.3);

    }

    100% {
        opacity: 1;
        transform: scale(1);

    }
}

.pulse.js--animate {
    -webkit-animation-name: pulse;
    animation-name: pulse;
}

@-webkit-keyframes zoom-in {
    0% {
        -webkit-transform: scale3d(.3, .3, .3);
        opacity: 0;
        transform: scale3d(.3, .3, .3);
    }

    50% {
        opacity: 1;
    }
}

@keyframes zoom-in {
    0% {
        -webkit-transform: scale3d(.3, .3, .3);
        opacity: 0;
        transform: scale3d(.3, .3, .3);
    }

    50% {
        opacity: 1;
    }
}

.zoom-in.js--animate {
    -webkit-animation-name: zoom-in;
    animation-name: zoom-in;
}

@keyframes opacity {
    0% {
        opacity: 1;
    }

    50% {
        opacity: .7;
    }

    100% {
        opacity: .4;
    }
}

.opacity.js--animate {
    -webkit-animation-name: opacity;
    animation-name: opacity;
}

.delay-1 {
    animation-delay: .75s;
}

.delay-2 {
    animation-delay: 1.5s;
}

.delay-3 {
    animation-delay: 2.25s;
}

.delay-4 {
    animation-delay: 3s;
}

.delay-5 {
    animation-delay: 3.75s;
}

.delay-6 {
    animation-delay: 4.5s;
}

.delay-7 {
    animation-delay: 5.25s;
}

.delay-8 {
    animation-delay: 6s;
}

.delay-9 {
    animation-delay: 6.75s;
}

.delay-10 {
    animation-delay: 7.5s;
}

.delay-11 {
    animation-delay: 8.25s;
}

.delay-12 {
    animation-delay: 9s;
}


.module-differentiated-path-clinical .delay-4 {
    animation-delay: 2.7s;
}
/*==================================
 --------- DEFAULT STYLES ---------
==================================*/
body {
    overflow-x: hidden;
    color: #425563;
    font-family: "Lato", sans-serif;
    font-size: 1.8rem;
    font-weight: normal;
    line-height: 1.4;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: none;
}

@media only screen and (max-width: 768px) {
    body {
        font-size: 2rem;
    }
}

/*---------- TYPOGRAPHY ----------*/

h1,
.h1 {
    font-size: 4rem;
    margin-bottom: 30px;
    line-height: 1;
    font-family: "Rufina", sans-serif;
    font-weight: bold;
}

@media only screen and (max-width: 768px) {
    h1,
    .h1 {
        font-size: 3.6rem;
    }
}

h2,
.h2 {
    font-size: 3.5rem;
    line-height: 1;
    margin-bottom: 20px;
    font-weight: bold;
    font-family: "Rufina", sans-serif;    
}

@media only screen and (max-width: 768px) {
    h2,
    .h2 {
        font-size: 3rem;
    }
}

h3,
.h3 {
    font-size: 2rem;
    line-height: 1;
    margin: 24px 0;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

h4,
.h4 {
    font-size: 1.6rem;
    line-height: 1;
    margin: 16px 0;
    font-weight: 700;
    text-transform: uppercase;
}

h5,
.h5 {
    font-size: 1.28rem;
    line-height: 1;
    margin: 12px 0;
    text-transform: uppercase;
}

h6,
.h6 {
    font-weight: bold;
}

a {
    text-decoration: none;
    color: #00873E;
    font-weight: 700;
}

a:hover {
    text-decoration: underline;
}

/*------------ 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;
}

input[type="checkbox"]+label:before,
input[type="radio"]+label:before {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    border: 1px solid #425563;
    margin-right: 8px;
    line-height: 1;
}

input[type="checkbox"]:checked+label:before,
input[type="radio"]:checked+label:before {
    width: 12px;
    height: 12px;
    border-width: 4px;
}

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: none;
    padding-left: 0;
    margin-top: 18px;
    margin-bottom: 18px;
}

.list li {
    position: relative;
    padding-left: 18px;
}

.list li ~li {
    margin-top: 10px;
}

.list li:before  {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border: 1px solid #00873E;
    border-radius: 100%;
    background: #00873E;
    display: inline-block;
}

.list .list li:before  {
    background: transparent;
}

.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: 15px 20px;
    background-color: transparent;
    font-family: inherit;
    border: 1px solid #425563;
    border-radius: 5px;
    letter-spacing: 0.3px;
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
}

.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;
}

.submit,
.button {
    text-transform: uppercase;
}

.textarea {
    width: 100%;
    resize: vertical;
}

.upload {
    line-height: 0;
}

.button {
    transition: 0.3s ease-in-out;
    padding: 10px 20px;
    line-height: normal;
    background: transparent;
    color: #fff;
    position: relative;
    font-weight: bold;
    letter-spacing: .3px;
    font-size: 1.5rem;
    text-transform: uppercase;
    border: none;
    border-radius: 27px;
    line-height: normal;
    min-width: 324px;
    text-align: center;
    overflow: hidden;
    position: relative;
    z-index: 1;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

@media only screen and (max-width: 768px) {
    .button {
        min-width: auto;
    }
}

.button:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #00873E;
    z-index: -1;
}

.button:after {
    content: '';
    position: absolute;
    top: 0;
    left: -20px;
    width: 0;
    height: 100%;
    background-color: #79D97C;
    transform: skew(-45deg);
    transition: 0.3s ease-in-out;
    z-index: -1;
}

.button:hover:after {
    width: 75%;
}

.button:hover {
    text-decoration: none;
    color: #fff;
}

.button--dark {
    color: #006341;
}

.button--dark:before {
    background: #fff;
}

.button--dark:hover {
    color: #006341;
}

.dropdown {
    padding: 15px 35px 15px 20px;
    background: transparent url(../design/svg/q4-icon_chevron-down-green.svg) no-repeat right 10px center;
    background-size: 14px 14px;
    min-width: 130px;
    border: 1px solid #425563;
    border-radius: 5px;
    letter-spacing: 0.3px;
    color: #00873E;
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
}

.dropdown {
    display: none;
}

.dropdown::-ms-expand {
    display: none;
}



/*----------------------- Select 2 ---------------------------*/

.select2-container {
    box-sizing: border-box;
    display: inline-block;
    margin: 0;
    position: relative;
    vertical-align: middle;
    max-width: 100%;
    margin-right: 10px;
}

.select2-container .select2-selection--single {
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    user-select: none;
    -webkit-user-select: none;
    font-size: 14px;
    font-size: 1.4rem;
    background-color: #fff;
    border: 1px solid #425563;
    color: #000;
    font-style: normal;
    min-height: 40px;
    border-radius: 5px;
}


@media (min-width: 481px) {
    .module_options-select--category+.select2-container {
        width: 170px !important;
    }

    .module-sec_type-select+.select2-container {
        width: 248px !important;
    }
}

.dark .select2-container .select2-selection--single {
    color: #fff;
    border-color: #fff;
}

.select2-container--default.select2-container--open .select2-selection--single {
    border: 1px solid #425563;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: left;
    padding: 16px 45px 16px 30px;
    transition: color 0.3s ease 0s;
    font-family: 'Lato';
    text-transform: uppercase;
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 0.3px;
    color: #00873E;
    line-height: 1.5;
}

.select2-container .select2-selection--single:focus {
    outline: none !important;
}

.select2-container .select2-selection--single .select2-selection__clear {
    position: relative
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    line-height: 1;
}

.select2-container--default .select2-selection--single .select2-selection__arrow:before {
    content: "\edc2";
    font-family: "q4icons";
    color: #425563;
    display: inline-block;
    font-size: 14px;
    vertical-align: middle;
    font-weight: bold;
}

.dark .select2-container--default .select2-selection--single .select2-selection__arrow:before {
    color: #fff;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow:before {
    content: "\edc2";
}

.select2-results__options {
    list-style: none;
    margin: 0;
    user-select: none;
    -webkit-user-select: none;
    font-size: 18px;
    text-align: left;
    transition: color 0.3s ease 0s;
    text-transform: uppercase;
    padding: 0;
    color: #425563;
    letter-spacing: .36px;
}

.select2-results__options li {
    padding: 10px 30px;
}

.select2-results__options li:hover, 
.select2-results__options li[aria-selected="true"] {
    background: rgba(121, 217, 124, .10);
}

.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered {
    padding-right: 8px;
    padding-left: 20px;
}

.select2-container .select2-search--inline {
    float: left
}

.select2-container .select2-search--inline .select2-search__field {
    box-sizing: border-box;
    border: none;
    font-size: 100%;
    margin-top: 5px;
    padding: 0;
}

.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
    -webkit-appearance: none;
}

.select2-dropdown {
    background-color: white;
    border: 1px solid #b7b7b7;
    box-sizing: border-box;
    display: block;
    position: absolute;
    left: -100000px;
    width: 100%;
    z-index: 5;
    border-radius: 5px;
}

.dark .select2-dropdown {
    border: 1px solid #fff;
}

.select2-results {
    display: block;
}

.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar {
    width: 3px;
}

.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar-thumb {
    background: #425563;
}

.select2-results__option[aria-selected] {
    cursor: pointer;
}

.select2-container--open .select2-dropdown {
    left: 0;
}

.select2-container--open .select2-dropdown--above {
    border-bottom: none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.select2-container--open .select2-dropdown--below {
    border-top: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.select2-search--dropdown {
    display: block;
    padding: 4px;
}

.select2-search--dropdown .select2-search__field {
    padding: 4px;
    width: 100%;
    box-sizing: border-box;
}

.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
    -webkit-appearance: none;
}

.select2-search--dropdown.select2-search--hide {
    display: none;
}

.select2-close-mask {
    border: 0;
    margin: 0;
    padding: 0;
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    min-height: 100%;
    min-width: 100%;
    height: auto;
    width: auto;
    opacity: 0;
    z-index: 99;
    background-color: #fff;
    filter: alpha(opacity=0);
}

.select2-hidden-accessible {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
    cursor: pointer;
    float: right;
    font-weight: bold;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #999;
}

.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear {
    float: left;
}

.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow {
    left: 1px;
    right: auto;
}

.select2-container--default.select2-container--disabled .select2-selection--single {
    background-color: #eee;
    cursor: default;
}

.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
    display: none;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent #888 transparent;
    border-width: 0 4px 5px 4px;
}

.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
    display: none;
}

.select2-container--default.select2-container--open.select2-container--above .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #aaa;
}

.select2-container--default .select2-search--inline .select2-search__field {
    background: transparent;
    border: none;
    outline: 0;
    box-shadow: none;
    -webkit-appearance: textfield;
}

.select2-container--default .select2-results>.select2-results__options {
    max-height: 245px;
    overflow-y: auto;
}

.select2-container--default .select2-results__option[role=group] {
    padding: 0;
}

.select2-container--default .select2-results__option[aria-disabled=true] {
    color: #999;
}

.select2-container--default .select2-results__group {
    cursor: default;
    display: block;
    padding: 6px;
}

.select2-container--classic.select2-container--open .select2-dropdown {
    border-color: #425563;
}

.select2-container--default.select2-container--open.select2-container--above .select2-selection--single {
    border-top: 0;
    border-color: #425563;
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single {
    border-bottom: 0;
    border-color: #425563;
}

.select2-container--open .select2-dropdown--above,
.select2-container--open .select2-dropdown--below {
    border-color: #425563;
}

@media only screen and (max-width:480px) {
    .select2-container {
        display: block;
        margin: 0 0 10px 0;
        width: 100% !important;
    }
}

/*------------------------ End Select 2 ---------------------------*/

/*------------ TABLES ------------*/
.table {
    width: 100%;
    margin: 18px 0;
    box-shadow: 0px 3px 6px #00000029;
    background: #fff;
}

.table thead {
    background-color: #425563;
    font-size: 2.2rem;
    font-weight: bold;  
    letter-spacing: 0.44px;     
}

.table thead th {
    text-align: left;
}

.table.text-center thead th {
    text-align: center;
}

.table tr ~ tr {
    border-top: 1px solid rgba(66, 85, 99, .44);
}

.table td ~ td,
.table th ~ th {
    border-left: 1px solid rgba(66, 85, 99, .44);
}

.table th,
.table td,
.table tr>.grid_col {
    margin: 0;
    padding: 20px 30px;
}

.table th {
    color: #fff;   
}

.table-wrapper {
    overflow-x: auto;
}

.table--headless tr:nth-child(even) {
    background-color: transparent;
}

.table--headless tr:nth-child(odd) {
    background-color: #DBE2E9;
}

.table--headless tr:first-child {
    background-color: #00873E;
    text-align: left;
}

.table--headless tr:first-child td {
    color: #fff;
}

@media only screen and (max-width: 480px) {
    .table--responsive thead {
        display: none;
    }

    .table--responsive tbody {
        border-top: 2px solid #00873E;
        border-bottom: 2px solid #00873E;
    }

    .table--responsive td {
        display: block;
    }

    .table--responsive td:before {
        content: attr(data-heading) ": ";
        font-weight: 700;
    }
    .table td ~ td, 
    .table th ~ th {
        border-left: 0;
    }
}

/*--------- SPECIAL BOXES --------*/
.code {
    margin: 32px 0;
    padding: 20px 15px;
    background: #DBE2E9;
    border-left: 3px solid rgba(0, 111, 186, 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: #DBE2E9;
    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: "q4icons";
    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: "q4icons";
    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: "q4icons";
    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: "\eecd";
    font-size: 2.4rem;
    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: "\eeae";
}

.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: "\e901";
}

.q4icons .module_link-webcast .q4icons_icon:before,
.q4icons .module_webcast-link .q4icons_icon:before {
    content: "\e936";
}

.q4icons .module_link-news .q4icons_icon:before,
.q4icons .module_link-transcript .q4icons_icon:before {
    content: "\e99b";
}

.q4icons .module_link-presentation .q4icons_icon:before {
    content: "\e92d";
}

.q4icons .module_link-file .q4icons_icon:before {
    content: "\eb81";
}

.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 [href^="tel:"] .q4icons_icon:before {
    font-size: 1.6rem;
    vertical-align: text-bottom;
    font-family: "q4icons";
    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: "\ea1d";
}

.q4icons [href^="mailto:"] .q4icons_icon:before {
    font-size: 1.6rem;
    vertical-align: text-bottom;
    font-family: "q4icons";
    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: "\ea32";
}

/*==================================
 ----------- 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.grid_col--sm-1-of-5 {
        width: auto;
        flex-basis: 20%;
        max-width: 20%;
    }

    .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--gutter-70 {
    margin-left: -70px;
}

.grid--gutter-70 .grid_col {
    padding-left: 70px;
}

.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: #425563;
    color: #425563;
    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;
}

.background--cover {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.background--brand {
    background-color: rgba(121, 217, 124, .08);
}

.background--alt-brand {
    background-color: #00873E;
}

.background--dark {
    background-color: #425563;
}

.background--light {
    background-color: #fff;
}

.background--grey {
    background-color: rgba(219, 226, 233, .22);
}

.background--alt-grey {
    background-color: rgba(219, 226, 233, .5);
}

.background--success {
    background-color: #23a217;
}

.background--error {
    background-color: #b72121;
}

.color--brand {
    color: #00873E;
}

.color--dark {
    color: #425563;
}

.color--grey {
    color: #DBE2E9;
}

.color--success {
    color: #23a217;
}

.color--error {
    color: #b72121;
}

.dark {
    color: #fff;
}

.dark a:not(.button) {
    color: #fff;
}

.dark .button--cta {
    color: #fff;
}

.no--margin {
    margin: 0;
}

.width--780 {
    max-width: 780px;
}

.font--lato {
    font-family: Lato;
}

.size--18 {
    font-size: 1.8rem;
}

.size--20 {
    font-size: 2rem;
    line-height: 1.25;
    letter-spacing: .2px;
}

.size--22 {
    font-size: 2.2rem;
    line-height: 1.25;
    letter-spacing: 0.22px;
}

.size--23 {
    font-size: 2.3rem;
    line-height: 1.25;
    letter-spacing: 0.46px;
}

.image--right {
    position: relative;
    padding-top: 15px;
    padding-bottom: 15px;
}

.image--right:before {
    position: absolute;
    content: '';
    right: 0;
    top: 0;
    height: 100%;
    width: 50%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 2;
}

.image--right-40:before {
    width: 40%;
}

.image--right.animate:before {
    -webkit-animation-duration: .75s;
    -webkit-animation-fill-mode: both;
    animation-duration: .75s;
    animation-fill-mode: both;
    animation-delay: .5s;
    opacity: 0;
}

.image--right.js--animate:before {
    -webkit-animation-name: fade-in-right;
    animation-name: fade-in-right;
    opacity: 1;
}

.shape--left {
    position: relative;
    padding-left: 40px;
}

.shape--left:before {
    content: '';
    position: absolute;
    top: 0;
    background-image: url(../design/1_1-DNA_Accent_Large_height_436px_3x.png);
    background-repeat: no-repeat;
    background-position: 0 center;
    background-size: 100% 100%;
    width: 18px;
    height: 100%;
    left: 0;
}

.shape--left.shape--left-400:before {
    background-image: url(../design/svg/shape-400.svg);
}

.shape--left.shape--left-624:before {
    background-image: url(../images/shape-624.png);
}

.shape--left.shape--left-1880:before {
    background-image: url(../images/shape-1880.png);
}

/*.shape--left.shape--left-396:before {
    background-image: url(../images/shape-359.png);
}*/

.shape--left.shape--left-359:before {
    background-image: url(../design/svg/shape-396.svg);
}

.shape--left.shape--left-256:before {
    background-image: url(../design/svg/shape-256.svg);
}

.shape--left.shape--left-199:before {
    background-image: url('../images/shape-199.png');
    background-size: contain;
    background-position: center;
}

.shape--left.shape--left-165:before {
    background-image: url(../design/svg/shape-165.svg);
}

.module.image--right.module--first p {
    margin: 0;
}

.module.image--right.module--first .module_title {
    margin-bottom: 25px;
}

@media screen and (max-width: 768px) {
    .image--right {
        margin-top: 230px;        
    }
    .image--right-40:before,
    .image--right:before {
        width: 100%;
        top: -230px;
        height: 230px;
    }
    .module.image--right.module--first {
        margin-top: 0;        
        margin-bottom: 230px;
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .image--right.module--first:before,
    .image--right-40.module--first:before {
        top: auto;
        bottom: -231px;
    }
    .image--right .grid_col:empty {
        display: none;
    }
    .shape--left {
        padding-left: 0;
    }
    .shape--left:before {
        display: none;
    }
}

/*==================================
 --------- ACCESSIBILITY ----------
==================================*/
/*According to BH #484, client request to remove focus outline*/
/*
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: "q4icons";
    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]):not(.pane--navigation):not(.tab--content) {
    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_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 {
    color: #00873E;
    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;
}

.fancybox-container .module_add-to-calendar-list {
    padding: 0 30px;
}

.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 {
    margin-top: 20px;
}

.module_date-time {
    margin-bottom: 5px;
    font-weight: 900;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 0.28px;
}

.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: "q4icons";
    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-weight: normal;
    letter-spacing: 0.4px;
    font-size: 2rem;
}

.module_footnote small {
    font-size: 14px;
    line-height: 19px;
    display: block;
}

.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 {
    margin-bottom: 35px;
}

.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-block;
    vertical-align: middle;
    margin: 0 15px 5px 0;
    font-size: 2rem;
    font-weight: bold;
    text-transform: none;
    letter-spacing: 0.4px;
}
/*
.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: #23a217;
}

.module_message--success:before {
    font-family: "q4icons";
    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: "q4icons";
    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 #00873E;
    color: #425563;
    font-weight: normal;
}

.module_nav-link.selected,
.module_nav-link.selected:visited,
.module_nav .ModuleYearLink.selected,
.module_nav .ModuleYearLink.selected:visited,
.module_nav-link:visited.selected,
.module_nav-link:visited.selected:visited,
.module_nav .ModuleYearLink:visited.selected,
.module_nav .ModuleYearLink:visited.selected:visited {
    background-color: #00873E;
    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: #425563;
}

.module_pager a[href] {
    color: #00873E;
}

.module_reminder .button {
    border: 2px solid #00873E;
    color: #00873E;
    min-width: 120px;
}

.module_reminder .module_label {
    margin-right: 10px;
}

.module_reminder.js--reminded {
    display: none;
}

.module_required {
    color: #425563;
}

.module_required-text {
    font-size: 1.3rem;
    color: #425563;
}

.module_rss {
    float: right;
}

.module_speakers li {
    margin-bottom: 5px;
}

.module_view-all-link {
    font-size: 1.4rem;
    font-weight: bold;
    text-transform: uppercase;
}

.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;
    width: 100%;
    max-width: none;
    padding: 15px 20px;
    background-color: transparent;
    font-family: inherit;
    border: 1px solid #425563;
    border-radius: 5px;
    letter-spacing: 0.3px;
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
    color: #00873E;
}

.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;
    padding: 15px 20px;
    border: 2px solid #00873E;
    background: transparent;
}

.module_dropdown {
    background: #DBE2E9 url("../design/svg/q4-icon_chevron-down-black.svg") no-repeat right 20px center;
    background-size: 14px 14px;
}

.module_dropdown::-ms-expand {
    display: none;
}

.module-details .module_date-time {
    margin-bottom: 15px;
}

/*- Investment Calculator Widget -*/
.module-calculator {
    border-bottom: 1px solid rgba(66, 85, 99, 0.44);
    padding-bottom: 70px;
    margin-bottom: 70px;
}

.module-calculator_input:not(:last-of-type) {
    margin-bottom: 20px;
}

.module-calculator_input {
    position: relative;
}

.module-calculator_input h4 {
    margin-bottom: 12px;
}

.module-calculator_input label {
    display: block;
    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: 13px;
    color: #00873E;
    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[type="text"].js--revealed {
    display: block;
}

.module-calculator_popup-container h2 {
    margin-top: 0;
    color: inherit;
    font-family: inherit;
}

.module-calculator_popup-container {
    width: 100%;
}

@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 #00873E;
        border-bottom: 2px solid #00873E;
    }

    .module-calculator_popup-container .table td {
        display: block;
    }

    .module-calculator_popup-container .table td:before {
        content: attr(data-heading) ": ";
        font-weight: bold;
    }
}

.module-calculator_info td:first-child:before {
    content: none;
}

/*- 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: 1px solid rgba(66, 85, 99, 0.44);
    font-weight: normal;
}

.module-committee .module_header .grid_col {
    letter-spacing: 0.36px;
    vertical-align: baseline;
    font-weight: bold;
}

.module-committee .module_item {
    padding: 0;
    border-bottom: 1px solid rgba(66, 85, 99, 0.44);
}

.module-committee .grid_col {
    padding: 20px 0;
    text-align: center;
}

.module-committee .grid_col:first-child {
    text-align: left;
    color: #425563;
    letter-spacing: 0.36px;
    font-weight: bold;
}

.module-committee .module-committee_trigger:focus {
    outline: transparent;
}

.module-committee_category.js--active .module_header .module-committee_trigger:before {
    content: "\edba";
}

.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;
}

@media only screen and (max-width: 768px) {
    .module-committee .module_header > .grid_col {
        color: #00873E;
    }
}

/*----- Dividends Module -----*/
.module-dividends .highcharts-series-0 rect {
    fill: #00873E;
}

.module-dividends .highcharts-series-1 rect {
    fill: #F0CD3B;
}

/*----- Download List Module -----*/

.module-downloads .module_nav {
    display: none;
}

.module-downloads .module_item {
    padding: 10px 0;
}

.module-downloads_thumbnail,
.module-downloads_description,
.module-downloads_date {
    display: none;
}

.module-downloads_title {
    position: relative;
}

.module-downloads_title-link {
    margin: 0;
    padding-left: 35px;
}

.module-downloads .q4icons_icon {
    position: absolute;
    top: 0px;
    left: 0;
}

/*--------- Event Module ---------*/
.module-event .module_location,
.module-event .module_speakers h4,
.module-event .module_body {
    display: none;
}

.module-event-upcoming .module_container--content >p,
.module-event-archive .module_container--content >p {
    margin-bottom: 50px;
}

.module-event-upcoming,
.module-event-archive {
    border-top: 1px solid rgba(66, 85, 99, .44);
    padding-top: 50px;
}

.module-event-upcoming .module_item,
.module-event-archive .module_item {
    padding: 0 0 40px; 
    border: 0;
    border-bottom: 1px solid rgba(66, 85, 99, .44);
}

.module-event-upcoming .module_item:last-child {
    border-bottom: none;
}

.module-event-upcoming .module_item ~ .module_item,
.module-event-archive .module_item ~ .module_item {
    padding-top: 50px;
}

.module-event-details .module_headline-link,
.module-event .module_headline-link {
    letter-spacing: 0.4px;
    font-size: 2rem;
    font-weight: normal;
    text-transform: none;
    color: #425563;
}

.module-event-details .module_headline-link:hover,
.module-event .module_headline-link:hover {
    color: #00873E;
}

.module-event-details .module_link,
.module-event .module_link {
    letter-spacing: 0.4px;
    font-size: 2rem;
    font-weight: bold;
    text-transform: none;
}

.module-event-details .module_link .q4icons_icon:before,
.module-event .module_link .q4icons_icon:before {
    font-size: 2.4rem;
}

.module-event-details .module_date-time,
.module-event .module_date-time {
    letter-spacing: 0.36px;
    font-weight: 900;
    font-size: 1.8rem;
    text-transform: uppercase;
}

.module-event-details .module_speakers h4 {
    display: none;
}

.module-event-details .module_reminder-email.module_input {
    padding: 14px 20px;
}

@media only screen and (max-width: 768px) {
    .module-event-details .module_reminder .grid_col {
        margin-bottom: 20px;
    }
}

.module-event-latest .module_container--content {
    margin-bottom: 20px;
}

.module-event-latest .module_item {
    margin: 10px 0;
    border: none;
    text-align: left;
    padding-top: 0;
    padding-bottom: 0;
}

.module-event-latest .module_item.grid_col {
    padding-left: 20px;
}

.module-event-latest .module_item-wrap {
    height: 100%;
    padding: 30px;
    background-color: #DBE2E9;
}

.module-event-latest .module_date-time {
    margin-bottom: 15px;
    font-weight: normal;
}

.module-event-latest .module_headline {
    line-height: 150%;
}

.module-event-latest .module_links {
    margin: 0;
}

.module-event-latest.background--grey .module_item-wrap {
    background-color: #fff;
}

.module-event-latest.module-event-list .module_item {
    padding-left: 0;
    padding-top: 20px;
}

.module-event-latest.module-event-list .module_item+.module_item {
    border-top: 1px solid rgba(55, 55, 55, 0.25);
}

.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: #00873E;
    border-radius: 3px;
}

.module-event-calendar_legend li.module-event-calendar_legend-item--current:before {
    background-color: #F0CD3B;
}

.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: #DBE2E9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.module-event-calendar_splash [class*="q4-icon_"] {
    font-size: 4rem;
    line-height: 1;
    color: #00873E;
}

.module-event-calendar_splash p {
    font-size: 1.4rem;
    line-height: 1.2;
}

.module-event-calendar_controls {
    padding: 15px;
    background-color: #00873E;
    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(0, 111, 186, 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(0, 111, 186, 0.2);
    border-left: 1px solid rgba(0, 111, 186, 0.2);
}

.module-event-calendar_day.calendar-dow-6 {
    border-right: 1px solid rgba(0, 111, 186, 0.2);
}

.module-event-calendar_day--name {
    padding: 10px 0;
    border: none;
}

.module-event-calendar_day--today {
    background: #DBE2E9;
}

.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: #00873E;
}

.module-event-calendar_day--selected {
    background-color: #00873E;
    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;
}

@media only screen and (max-width: 480px) {
    .module-event-calendar_day {
        display: inline-block;
    }
}

.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-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;
    }
}

/*---------- FAQ Module ----------*/

.module-faq .module_header {
    display: none;
}

.module-faq .module_item {
    border-top: 1px solid rgba(66, 85, 99, .44);
    border-bottom: 1px solid rgba(66, 85, 99, .44);
}

.module-faq .module_item ~ .module_item {
    border-top: none;
}

.module-faq_question {
    margin: 0;
    cursor: pointer;
    padding: 30px 0;
    color: #00873E;
    font-size: 1.8rem;
    text-transform: none;
    font-weight: 900;
    letter-spacing: 0.36px;
}

.module-faq_question >* {
    vertical-align: middle;
}

.module-faq_question:after {
    font-family: 'q4icons' !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #00873E;
    content: "\edc2";
    margin-left: 10px;
    vertical-align: middle; 
}
.module-faq .module_item.js--active .module-faq_question:after {
    content: "\edba";
}

.module-faq_answer {
    padding: 0 0 30px;
}

.module-faq_answer p {
    font-weight: 2rem;
}

.module-faq_answer p:first-child {
    margin-top: 0;
}

.module-faq_answer p:last-child {
    margin-bottom: 0;
}

.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 #00873E;
}

.module-financial-year .module_item {
    padding: 0;
}

.module-financial-year .module_item~.module_item {
    border: none;
}

.module-financial-year .module_links {
    margin: 0;
}

.module-financial-year .module-financial_year {
    text-align: center;
}

.module-financial-quarter .module_item {
    padding: 0;
}

.module-financial-quarter .module_item~.module_item {
    border: none;
}

.module-financial-quarter .module_item.js--active h3:after {
    content: "\ed5e";
}

.module-financial-quarter .module_links {
    margin: 0;
    padding: 15px;
}

.module-financial-quarter .module_links>div {
    display: block;
}

.module-financial-quarter .module_link {
    margin-bottom: 0;
    font-size: 1.6rem;
    font-weight: normal;
    text-transform: none;
}

.module-financial-quarter .module-financial_year-text {
    padding: 20px 15px;
    margin-bottom: 10px;
    background-color: #00873E;
    color: #fff;
    font-size: 1.6rem;
    font-weight: bold;
    cursor: pointer;
}

.module-financial-quarter .module-financial_year-text:after {
    float: right;
    font-family: "q4icons";
    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";
}

.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: #f1f1f1;
    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.3;
}

.module-financial-table_header {
    display: flex;
    background-color: #00873E;
    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_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-financial-mashup_documents .module_links+h4 {
    margin-top: 30px;
}

.module-financial-mashup .module-financial-mashup_documents .module_links>div {
    background-color: #DBE2E9;
    padding: 15px;
    margin-bottom: 1px;
}

.module-financial-mashup .module-financial-mashup_documents .module_links .module_link {
    margin: 0;
}

.module-financial-mashup .q4-icon_chevron-right {
    font-size: 1rem;
    margin-left: 5px;
}

.module-financial-mashup .button {
    width: 100%;
}

.module-financial-mashup .button.js--selected {
    background: #00873E;
    color: #fff;
    outline-color: #00873E;
}

@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;
    }
}

/* Latest Quarterly Result Widget */
.module-latest-quarter .module_item {
    margin: 50px 0;
    padding: 0;
}

.module-latest-quarter .module_item~.module_item {
    border: none;
}

.module-latest-quarter .module_links {
    margin: 0;
    border-left: 2px solid rgba(255, 255, 255, 0.5);
    text-align: left;
}

.module-latest-quarter .module_links>div {
    display: inline-block;
    text-align: center;
}

.module-latest-quarter .module_link {
    margin: 0;
}

.module-latest-quarter .module_link .q4icons_icon:before {
    display: inline-block;
    font-size: 5.5rem;
    padding: 0;
}

.module-latest-quarter .module_link-text {
    display: block;
    margin: 15px 0 0;
    font-size: 1.6rem;
    text-transform: none;
    font-weight: normal;
}

.module-latest-quarter .module-financial_type-text,
.module-latest-quarter .module-financial_year-text {
    display: inline-block;
    width: 100%;
}

.module-latest-quarter .module-financial_type-text {
    font-size: 5.5rem;
    line-height: 1;
    font-weight: normal;
}

.module-latest-quarter .module-financial_year-text {
    margin-top: 15px;
    font-size: 2.4rem;
}

.module-latest-quarter .grid_col {
    vertical-align: bottom;
}

@media only screen and (max-width: 1024px) {
    .module-latest-quarter .module_links {
        border-left: 0;
    }

    .module-latest-quarter .module_link {
        margin: 0 0 15px;
    }

    .module-latest-quarter .grid_col {
        vertical-align: middle;
    }
}

@media only screen and (max-width: 768px) {
    .module-latest-quarter .module_item>div:first-child {
        margin-bottom: 30px;
    }
}

/*------ Formbuilder Module ------*/
.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>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 {
    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: #00873E;
    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: "q4icons";
    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: #425563;
}

.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: #425563;
}

.module-form--meeting .module_dropdown {
    color: #425563;
}

.module-form--meeting .module_input {
    color: #425563;
}

.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: "q4icons";
    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: #425563;
    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: #425563;
    font-weight: normal;
}

.module-glossary .module_header table a[href] {
    color: #00873E;
}

/*---------- 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: 25px;
}

.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-rss p+h2 {
    margin: 40px 0 30px;
}

/*------ 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 button.submenu-trigger {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    text-align: left;
    width: 100%;
}

/*
.nav a[tabindex="-1"]:focus {
    outline-width: 2px !important;
    outline-style: dotted !important;
    outline-color: inherit !important;
}
*/

.nav--main {
    text-align: right;
    padding-right: 50px;
}

.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;
}

.nav--main li {
    display: inline-block;
}

.nav--main li a {
    display: block;
    letter-spacing: 1.2px;
    color: #FFFFFF;
    padding: 12px;
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
}

.nav--main li.selected>a,
.nav--main li.expanded>a,
.nav--main li.selected>button>a,
.nav--main li.expanded>button>a,
.nav--main li a:hover,
.nav--main li a:focus {
    color: #79D97C;
}

.nav--main .level1 > li {
    margin-right: 0;
    transition: .5s ease;
    opacity: 1;
    visibility: visible;
}

.js--search .nav--main .level1 > li {
    margin-right: 10px;
    opacity: 0;
    visibility: hidden;
}

.nav--main .level2 {
    display: none;
    z-index: -1;
    padding-top: 100px;
    padding-bottom: 100px;
    text-align: left;
    width: 800px;
    margin: 0 auto;
    left: 0;
    right: 0;
    background-color: #425563;
    position: absolute;
    top: 0;
    background-image: url(../design/svg/shape.svg);
    background-repeat: no-repeat;
    background-position: 0 100px;
    padding-left: 30px;
    background-size: 17px 185px;
}

@media only screen and (max-width: 1024px) {
    .nav--main .level2 {
        width: 100%;
    }
}

.nav--main li.sfHover .level2 {
    display: block !important;
}

.nav--main .level2:before {
    content: '';
    position: absolute;
    top: 0;
    left: 100%;
    height: 100%;
    width: 1000%;
    background-color: #425563;
}

.nav--main .level2:after {
    content: '';
    position: absolute;
    top: 0;
    right: 100%;
    height: 100%;
    width: 1000%;
    background-color: #425563;
}

.nav--main .level2 li {
    position: relative;
    z-index: 1;
}

.nav--main .level2 li.js--nav-dropdown {
    width: 60%;
    float: left;
    clear: left;
}

.nav--main .level2 >li:not(.js--nav-dropdown) {
    float: right;
    width: 40%;
    clear: right;
}

.nav--main .level2 li.js--nav-dropdown h3 {
    color: #fff;
    font-family: "Rufina", sans-serif;
    font-weight: bold;
    font-size: 3.6rem;
    text-transform: none;
    margin-top: 0;
    margin-bottom: 10px;
}

.nav--main .level2 li.js--nav-dropdown p {
    margin: 0;
    font-size: 1.6rem;
    color: #fff;
    letter-spacing: 1.28px;
    max-width: 250px;
}

.nav--main .level2 li a {
    letter-spacing: 0.32px;
    text-transform: none;
    font-size: 1.6rem;
    font-weight: normal;
    padding: 15px 0;
}

.nav--main .level2 >li:nth-child(n + 3) a {
    border-top: 1px solid rgba(255, 255, 255, .3);
}

.nav--main .level3 {
    opacity: 1;
    display: block !important;
}
.nav--main .level3 li {
    display: block;
}

.nav--main .level3 li a {
    padding-left: 30px;
}

/**/

.nav--secondary {
    background: #00873E;
    text-align: center;
    font-weight: 400;
    letter-spacing: 1.6px;
}

@media only screen and (max-width: 1024px) {
    .nav--secondary {
        display: none;
    }
}

.nav--secondary .level1>li {
    display: none;
}

.nav--secondary .level1>li.selected,
.nav--secondary .level1>li.expanded {
    display: block;
}

.nav--secondary .level1>li.selected>a,
.nav--secondary .level1>li.expanded>a {
    display: none;
}

.nav--secondary .level2 {
    display: table;
    width: 100%;
}

.nav--secondary .level2>li {
    position: relative;
    display: table-cell;
}

.nav--secondary .level2>li:hover,
.nav--secondary .level2>li.selected,
.nav--secondary .level2>li.expanded {
    background: #005894;
}

.nav--secondary .level2>li a {
    display: block;
    padding: 15px 20px;
    font-size: 1.4rem;
}

.nav--secondary .level3 {
    position: absolute;
    z-index: 100;
    top: 100%;
    left: 0;
    display: none;
    width: 100%;
    min-width: 200px;
    border-top: 2px solid #fff;
}

.nav--secondary .level3>li {
    text-align: left;
}

.nav--secondary .level3>li a {
    background: #005894;
}

.nav--secondary .level3>li a:hover,
.nav--secondary .level3>li a:focus {
    background: #00873E;
}

.nav--secondary .level3>li.selected a {
    background: #00873E;
}

/**/

.nav--mobile {
    display: none;
}

.nav--mobile a:hover {
    text-decoration: none;
}

@media only screen and (max-width: 1024px) {
    .nav--mobile {
        display: block;
    }
}

.nav--mobile .level1 >li>a:before,
.nav--mobile .level1 >li >button>a:before {
    float: right;
    font-family: "q4icons";
    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;
    color: #79D97C;
    content: "\edbe";
    font-size: 2rem;
}

.nav--mobile .level1 >li.has-children >a:before,
.nav--mobile .level1 >li.has-children >button>a:before {
    content: "\edc2";
}

.nav--mobile li.has-children.js--expanded > a:before, 
.nav--mobile li.has-children.js--expanded > button > a:before {
    content: "\edba";
}

.nav--mobile a {
    display: block;
    text-transform: uppercase;
    font-weight: normal;
    letter-spacing: 1.6px;
    font-size: 1.6rem;
    color: #FFFFFF;
    padding: 20px 0;
}

.nav--mobile .level1>li {
    display: block;
    border-top: 1px solid rgba(255, 255, 255, .5);
}

.nav--mobile .level1>li.selected>a,
.nav--mobile .level1>li.expanded>a {
    display: block;
    color: #79D97C;
}

.nav--mobile .level1>li.js--expanded>a,
.nav--mobile .level1>li.js--expanded>button>a {
    display: block;
    color: #79D97C;
}

.nav--mobile .level1>li.js--expanded .level2 {
    display: block !important;
}

.nav--mobile .level2 {
    display: none;
    width: 100%;
    margin-bottom: 30px;
    max-width: calc(100% - 40px);    
}

.nav--mobile .level2>li {
    display: block;
}

.nav--mobile .level2>li~li {
    border-top: 1px solid rgba(255, 255, 255, .5);
}

.nav--mobile .level2>li.js--nav-dropdown + li {
    border-top: 0;
}

.nav--mobile .level2>li.js--expanded .level3 {
    display: block;
}

.nav--mobile .level2>li>a,
.nav--mobile .level2>li>button>a {
    letter-spacing: 0.32px;
    text-transform: none;
}

.nav--mobile .level2>li>a:focus+.level3,
.nav--mobile .level2>li>button>a:focus+.level3 {
    display: block;
}

.nav--mobile .level2>li.selected>a,
.nav--mobile .level2>li.expanded>a {
    color: #79D97C;
}

.nav--mobile .level3 {
    display: none;
    position: static;
    border: none;
    width: 100%;
}

.nav--mobile .level3>li {
    display: block;
}

.nav--mobile .level3>li>a {
    font-size: 1.6rem;
}

.nav--mobile h3 {
    display: none;
}

.nav--mobile p {
    letter-spacing: 1.28px;
    color: #FFFFFF;
    font-size: 1.6rem;
    margin: 0 0 15px;
}

/**/

.nav--sitemap {
    max-width: 1162px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 70px;
    padding-bottom: 70px;
}

.nav--sitemap a {
    display: inline-block;
}

.nav--sitemap .js--nav-dropdown {
    display: none;
}

.nav--sitemap .level2 {
    padding-left: 30px;
}

.nav--sitemap .level3 {
    padding-left: 30px;
}


/*-------- News Module CSS -------*/
.module-news .module_nav,
.module-news .module_thumbnail-link,
.module-news .module_more-link {
    display: none;
}

.module-news-latest {
    padding-top: 70px;
    padding-bottom: 70px;
}

.module-news-latest .slick-arrow {
    color: #79D97C;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.8rem;
}

.module-news-latest .slick-arrow.slick-prev {
    right: auto;
    left: 10px;
}

.module-news-latest .slick-arrow.slick-disabled {
    color: #fff;
    opacity: 1;
}

@media only screen and (max-width: 768px) {
    .module-news .module_options .grid_col {
        margin-bottom: 20px;
    }
}

/**/

.module-news-latest .slick-slider {
    max-width: 840px;
    margin: auto;
    padding: 0 60px;    
}

.module-news-latest .slick-dots {
    position: absolute;
    bottom: 60px;
    left: 0;
    right: 0;
}

.module-news-latest .module_item {
    padding: 20px 0 100px;
    position: relative;
    max-width: 548px;
    margin: auto;
}

.module-news-latest .module_links {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0;
}

.module-news-latest.dark .module_link {
    margin: 0;
    color: #79D97C;
    text-transform: uppercase;
    font-size: 1.5rem;
    letter-spacing: .3px;
    font-weight: 900;
}

/**/

.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: block;
    margin-bottom: 25px;
}

.module-news-details .module_view-all-link--bottom {
    margin-top: 25px;
    margin-bottom: 0;
}

.module-news-details .module-details_title {
    font-family: "Lato", sans-serif;
}

.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: ")";
}

@media only screen and (max-width: 1024px) {
    .module-news-details .module_multimedia-item {
        margin-bottom: 30px;
    }
}

/*---------- Pager ----------*/

.module_pager-container {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.module_pager {
    margin-right: 30px;
}

.pager_list-item {
    display: inline-block;
    vertical-align: top;
}

.pager_dots {
    margin-right: 5px;
    appearance: none;
    border: 1px solid #00873E;
    color: #00873E;
    background-color: #DBE2E9;
    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;
    cursor: pointer;
    letter-spacing: 0.36px;
    color: #00873E;
    font-size: 1.8rem;
    font-weight: bold;
    border: none;
    background: none;
    padding: 0;
    font-family: inherit;
    margin-right: 20px;
}

.pager_button:not(.js--disabled):hover {
    color: #425563;
}

.pager_button:not(.js--disabled):focus {
    color: #425563;
}

.pager_button.js--active {
    color: #425563;
}

.pager_button.js--disabled {
    display: none;
}

.pager_button [class^="q4-icon_"],
.pager_button [class*=" q4-icon_"] {
    color: inherit;
    font-size: 1rem;
    pointer-events: none;
}

/*------ Person List Module ------*/

.fancybox-inner {
    max-width: 1100px;
    margin: auto;
    position: relative;
}

.fancybox-inner >.fancybox-navigation  {
    display: none;
}

.fancybox-inner .fancybox-navigation  {
    position: absolute;
    bottom: 25px;
    right: 40px;
    z-index: 99999;
}

.fancybox-inner .fancybox-navigation .fancybox-button--arrow_left,
.fancybox-inner .fancybox-navigation .fancybox-button--arrow_right {
    color: #fff;
    background: #00873E;
    border-radius: 100%;
    position: static;
    padding: 0;
    height: 40px;
    width: 40px;
    opacity: 1;
    visibility: visible;
    margin: 0;
}

.fancybox-inner .fancybox-navigation .fancybox-button[disabled] {
    display: none; 
}

.fancybox-inner .fancybox-navigation .fancybox-button--arrow_left {
    margin-right: 10px;
}
.module-person--fancy.tab--content{
    margin-top: 20px;
}
.module-person-fancy_item {
    margin-top: 10px;
    margin-bottom: 40px;
    padding-right: 10%;
}
/*
.module-person.tab--content-first .module-person-fancy_item {
    vertical-align: bottom;
}*/

.module-person .module-person_name-container {
    display: block;
}

.module-person .module-person_name {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.module-person .module-person_title {
    display: inline-block;
    color: #425563;
    font-size: 1.5rem;
}

.module-person-fancy_popup {
    display: none;
}

.module-person-fancy_popup.fancybox-content {
    padding: 0;
    max-width: 1100px;
}

.module-person-fancy_popup .shape--left {
    margin: 40px 40px 40px 100px;
}

.module-person-fancy_popup img {
    width: 100%;
    vertical-align: middle;
}

.module-person-fancy_popup .module-person-fancy_name {
    margin-bottom: 10px;
    font-size: 3.8rem;
}

.module-person-fancy_popup .module-person-fancy_title {
    display: block;
    font-weight: normal;
    letter-spacing: 0.44px;
    font-size: 2.2rem;
}

.module-person-fancy_popup .module-person-fancy_popup-description {
    padding: 60px;
}

.fancybox-inner .fancybox-close-small {
    color: #fff !important;
    font-size: 2rem;
    top: 10px !important;
    right: 10px !important;
    background: #00873E;
    border-radius: 100%;
    width: 44px;
    height: 44px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fancybox-infobar {
    display: none;
}

@media (max-width: 768px) {
    .module-person-fancy_popup .shape--left {
        padding: 20px;
        margin: 0;
    }
    .module-person-fancy_popup .module-person-fancy_popup-description {
        padding: 20px 20px 60px;
    }
}

/*person accordion*/

.module-person-accordion .module-person_name-container {
    padding: 20px 15px;
    margin-bottom: 10px;
    background-color: #00873E;
    color: #fff;
    cursor: pointer;
}

.module-person-accordion .module-person_name-container h3 {
    font-size: 1.8rem;
    font-weight: bold;
    color: inherit;
    margin: 0;
}

.module-person-accordion .module-person_name-container h3:before {
    float: right;
    font-family: "q4icons";
    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";
}

.module-person-accordion .module_item {
    padding: 0;
    border: 0 none;
}

.module-person-accordion .module_item.js--active h3:before {
    content: "\ed5e";
}

.module-person-accordion .module-person_name {
    margin-right: 10px;
}

.module-person-accordion .module-person_title {
    font-size: 1.4rem;
}

.module-person-accordion .module_comma {
    display: none;
}

.module-person-accordion .module-person_description-container {
    padding: 15px;
}

.module-person-accordion .module-person_photo-container {
    float: left;
    margin: 0 25px 15px 0;
}

@media only screen and (max-width: 768px) {
    .module-person-accordion .module-person_photo-container {
        float: none;
        margin: 0 auto 15px auto;
        text-align: center;
    }
}

.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_res-photo-container>span {
    margin-right: 10px;
}

@media only screen and (max-width: 768px) {
    .module-person-accordion .module-person_res-photo-container>span {
        display: block;
        margin: 0 0 10px 0;
    }
}

.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;
}

@media only screen and (max-width: 768px) {
    .module-person-details_photo-container {
        margin-right: 15px;
        margin-bottom: 35px;
    }
}

@media only screen and (max-width: 480px) {
    .module-person-details_photo-container {
        margin-right: 0;
        max-width: none;
    }
}

.module-person-details_name {
    display: block;
    margin-bottom: 10px;
    font-size: 3.6rem;
    color: #00873E;
}

.module-person-details_title {
    display: block;
    font-size: 2.4rem;
}

.module-person-details_description-container {
    margin-top: 40px;
}

.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: #425563;
    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: #425563;
    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("../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: #00873E;
    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_input[type="text"] {
    display: inline-block;
    width: 100%;
    padding: 10px 15px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: #F5F5F5;
    font-size: 1.4rem;
    margin: 0;
    border-radius: 4px;
}

.module-search_button {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    padding: 0;
    border: 0;
    background: transparent url('../design/svg/search-green.svg');
    background-size: 100% 100%;
    font-size: 0;
    cursor: pointer;
    outline-color: #fff !important;
}

.module-search-results {
    max-width: 1180px;
    margin: 0 auto;
    padding-left: 25px;
    padding-right: 25px;
}

.module-search-results .form_fields-right input {
    width: 100%;
    border-color: #00873E;
    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: 40px;
    right: 15px;
    font-family: 'q4icons' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    color: #00873E;
    clear: both;
    display: table;
    font-size: 20px;
}

.module-search-results .form_field--search {
    margin-bottom: 35px;
}

.module-search-results .form_label {
    color: #545B62;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
    display: block;
    margin-bottom: 7px;
}

.module-search-results .form_select {
    color: #00873E;
    font-size: 14px;
    width: 100%;
    min-width: auto;
    border-color: #00873E;
    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%;
    padding: 15px;
    display: block;
    padding: 15px 20px;
    background-color: transparent;
    font-family: inherit;
    border: 1px solid #425563;
    border-radius: 5px;
    letter-spacing: 0.3px;
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
}

.module-search-results_link {
    font-weight: bold;
    margin-bottom: 10px;
    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_summary {
    font-size: 22px;
    margin: 0 0 30px;
}

.module-search-results_summary span {
    color: #00873E;
}

.module-search-results_pager {
    float: right;
    margin-top: 5px;
}

.module-search-results .pager_text {
    display: none;
}

@media only screen and (max-width: 768px) {
    .module-search-results .form-fields-right .grid_col {
        padding-left: 0;
    }

    .module-search-results .form-fields--pages {
        margin-top: 25px;
        display: block;
        width: 100%;
    }

    .module-search-results .form-fields--search {
        width: 100%;
    }
}
/*
@media only screen and (max-width: 500px) {
    .module-search-results .form_field.form_field--date {
        overflow: auto;
    }
}*/

/*-------- SEC Module CSS --------*/

.module-sec .module_options {
    margin-bottom: 20px;
}

.module-sec .module_options-select {
    margin-right: 0;
}

.module-sec .table {
    box-shadow: none;
}

.module-sec .table td ~ td, 
.module-sec .table th ~ th {
    border-left: none;
}

.module-sec .table thead {
    background: transparent;
    background-color: rgba(219, 226, 233, .5);
    border-top: 1px solid rgba(66, 85, 99, .44);
    border-bottom: 1px solid rgba(66, 85, 99, .44);
    position: relative;
}

.module-sec .table thead th {
    color: #425563;
}

.module-sec .table thead:after {
    content: '';
    background-color: rgba(219, 226, 233, .5);
    border-top: 1px solid rgba(66, 85, 99, .44);
    border-bottom: 1px solid rgba(66, 85, 99, .44);
    position: absolute;
    bottom: -1px;
    top: -1px;
    right: 100%;
    width: 1000%;
}

.module-sec .table thead:before {
    content: '';
    background-color: rgba(219, 226, 233, .5);
    border-top: 1px solid rgba(66, 85, 99, .44);
    border-bottom: 1px solid rgba(66, 85, 99, .44);
    position: absolute;
    bottom: -1px;
    top: -1px;
    left: 100%;
    width: 1000%;
}

.module-sec .module_header-text {
    padding: 15px;
    text-transform: uppercase;
    letter-spacing: 0.32px;
    font-size: 1.6rem;
    font-weight: normal;
}

.module-sec .module_header-text:not(.module-sec_download-item) {
    cursor: pointer;
}

.module-sec .module_header-text:not(.module-sec_download-item):after {
    font-family: 'q4icons' !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #00873E;
    content: "\edc2";
    margin-left: 10px;
    vertical-align: middle; 
}

.module-sec .module_item {
    border-bottom: 1px solid rgba(66, 85, 99, .44);
    border-top: 0;
}

.module-sec .module_item td {
    vertical-align: middle;
    padding: 15px;
    letter-spacing: .36px;
}

.module-sec .module_item .module-sec_filing {
    font-weight: 900;
}

.module-sec .module_item .module-sec_filing-link {
    color: #425563;
}

.module-sec .module_item .module-sec_filing-link:hover {
    color: #00873E;
}

.module-sec .module_options .grid_col {
    margin-bottom: 15px;
}

@media only screen and (max-width: 768px) {
    .module-sec .table thead {
        display: none;
    }

    .module-sec .module_item td {
        display: block;
        padding: 5px 0;
    }

    .module-sec .module_header+.module_item {
        border-top: 2px solid #00873E;
    }

    .module-sec .module_item {
        padding: 15px 0;
        display: block;
    }

    .module-sec .module_item:first-child {
        border-top: 2px solid #00873E;
    }

    .module-sec .module_item:last-child {
        border-bottom: 2px solid #00873E;
    }

    .module-sec .module_item .grid_col {
        padding: 0 5px;
    }

    .module-sec .module_item+.module_footer {
        border-bottom: 2px solid #00873E;
    }
}

.module-sec_download-list-item {
    display: inline-block;
}

.module-sec_download-list .module_link {
    margin: 0;
}

.module-sec_download-list .q4icons_icon:before {
    font-size: 2.4rem;
}

@media only screen and (max-width: 768px) {

    .module-sec_date,
    .module-sec_filer,
    .module-sec_filing,
    .module-sec_description {
        margin-bottom: 15px;
    }
}

.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 .module_link {
    margin: 0;
}

.module-sec-details_download-list .q4icons_icon:before {
    font-size: 2.4rem;
}

/*---- 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: #00873E;
    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: 'q4icons' !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 {
    border-bottom: 1px solid rgba(66, 85, 99, .44);
    padding-bottom: 70px;
    margin-bottom: 70px;
}

.module-stock-chart [data-highcharts-chart].js--hidden {
    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: #425563;
}

.module-stock-chart .highcharts-legend-item:first-child text {
    cursor: default !important;
    color: #425563 !important;
    fill: #425563 !important;
}

.module-stock-chart .highcharts-series-0 {
    stroke: #425563;
}

.module-stock-chart .highcharts-series-0 path:first-child {
    stroke: #425563;
}

.module-stock-chart .highcharts-series-group .highcharts-series-2 path {
    stroke: #425563;
    stroke-width: 2px;
}

.module-stock-chart .highcharts-navigator rect {
    fill: rgba(66, 85, 99, 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: #425563;
}

.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: #425563;
    stroke: #425563;
}

.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: #425563;
}

.module-stock-chart .highcharts-container>svg>.highcharts-button {
    display: none;
}

/*------ Stock Header Module -----*/

.module-stock-header .module_container--inner {
    border-top: 1px solid rgba(66, 85, 99, .44);
    border-bottom: 1px solid rgba(66, 85, 99, .44);
    padding: 20px 0;
}

.module-stock-header .module_container--inner >span {
    margin-right: 20px;
    vertical-align: middle;
    display: inline-block;
}

.module-stock-header_description1 {
    font-size: 2.2rem;
    letter-spacing: 0.44px;
}

.module-stock-header_stock-price {
    font-size: 3.2rem;
}

.module-stock-header_stock-price:before {
    content: '$';
}

.module-stock-header_change,
.module-stock-header_percent-change {
    font-size: 2.4rem;
    letter-spacing: 0.48px;
}

.module-stock-header_date-delay {
    text-align: left;
}

.module-stock-header_description3,
.module-stock-header_date {
   display: block;
   font-size: 1.2rem;
   letter-spacing: 0.24px;
}

.module-stock-header_up {
    color: #006341;
}

.module-stock-header_down {
    color: #b72121;
}

/*------ Stock Quote Module ------*/

.module-stock-quote .module_container--widget {
    padding-bottom: 70px;
}

.module-stock .module_container--border {
    border: 1px solid #647692;
    text-align: center;
}

.module-stock_lookup-title {
    padding: 20px;
    margin: 0;
    font-size: 2.2rem;
    font-weight: normal;
}

.module-stock_label>span,
.module-stock_value>span {
    display: block;
    padding: 10px;
    font-size: 1.6rem;
}

.module-stock_label {
    font-weight: bold;
    background: rgba(219, 226, 233, .5);
}

.module-stock-historical .button {
    min-width: 160px;
}

.module-stock-historical .module_options {
    margin-top: 15px;
    margin-bottom: 25px;
}

@media only screen and (max-width: 768px) {
    .module-stock.module-stock-historical .module-stock_empty {
        display: none;
    }
}

.module-stock-historical {
    border-bottom: 1px solid rgba(66, 85, 99, .44);
    padding-bottom: 70px;
    margin-bottom: 70px;
}

@media only screen and (max-width: 768px) {
    .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 .stock-historical-range .module_options>*:not(:last-of-type) {
    margin-bottom: 20px;
}

.module-stock_up {
    color: #23a217;
}

.module-stock_down {
    color: #b72121;
}

.module-stock_label {
    font-weight: normal;
}

.module-stock_date {
    font-size: 1.2rem;
    letter-spacing: 0.24px;
    margin-right: 20px;
    display: inline-block;
    margin-top: 12px;
}

.module-stock_delay {
    font-size: 1.2rem;
    letter-spacing: 0.24px;
    display: inline-block;
    margin-top: 12px;
}

/*- MailingList Subscribe Module -*/
.module-subscribe_unsubscribe {
    margin-top: 20px;
    display: none;
}

.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 {
    padding: 35px 0;
}

.layout--iframe .pane--content .module_container--outer {
    max-width: none;
}

/*==================================
 ------------ BLANK CSS -----------
==================================*/
/*-------- Layout Specific -------*/
.layout_footer {
    background: rgba(219, 226, 233, .5);
}

@media only screen and (max-width: 1024px) {
    .layout.js--mobile {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        overflow: hidden;
    }
}

.layout .layout_inner {
    position: relative;
    overflow-x: hidden;
}

/*--------- Pane Specific --------*/
.pane--header {
    position: fixed;
    z-index: 10;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 999;
    transition: all .3s ease-in-out;
    background: #425563;
}

.page--home .pane--header {
    background: transparent;
}

.js--scroll-down .pane--header {
    top: -86px;
}

.js--mobile .pane--header,
.js--scroll-up .pane--header {
    background: #425563;
}

.pane--header .pane_inner {
    padding: 20px 40px;
}

.pane--header .module,
.pane--header .nav {
    vertical-align: middle;
}

/*header search*/

.pane--header .module-search_toggle {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    color: #79D97C;
    cursor: pointer;
    z-index: 9;
}

.js--header-down .pane--header {
    background: #425563;
}

.js--search .pane--header .module-search_toggle .q4-icon_search:before {
    content: "\ed6d";
}

.pane--header .module-search .module_container--inner {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 30px;
    opacity: 0;
    visibility: hidden;
    transition: .4s ease;
    width: 0;
    max-width: 600px;
    padding-left: 35px;
}

.pane--header .module-search .module_container--inner.js--revealed {
    opacity: 1;
    visibility: visible;
    width: 100%;
}

.pane--header .module-search .module-search_input[type="text"]::-webkit-input-placeholder {
    color: #425563;
}

.pane--header .module-search .module-search_input[type="text"]::-moz-placeholder {
    color: #425563;
}

.pane--header .module-search .module-search_input[type="text"]:-ms-input-placeholder {
    color: #425563;
}

/*mobile hamburger*/

.pane--header .layout_toggle {
    display: none;
    text-align: right;
}

.pane--header .layout_toggle-button {
    font-size: 2.2rem;
    background: transparent;
    padding: 0;
    border: 0 none;
    color: #79D97C;
}

.pane--header .layout_toggle [class^="q4-icon_"]:focus {
    outline: none;
}

.js--mobile .pane--header .layout_toggle [class^="q4-icon_"]:before {
    content: "\e91a";
}

@media only screen and (max-width: 1024px) {
    .pane--header .pane_inner {
        padding: 20px;
    }

    .pane--header .module-logo img {
        max-width: 150px;
    }

    .pane--header .layout_toggle {
        display: inline-block;
    }

    .pane--header .nav,
    .pane--header .module-search {
        display: none;
    }
}

/*start banner*/

.pane--banner {
    background: rgba(255, 255, 255, 0.05) url("../design/banner/banner.jpg");
    color: #fff;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 396px;
    height: 1px;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 86px;
    overflow: hidden;
}

.page--no-banner .pane--banner {
    min-height: auto;
    background: transparent;
}

.page--who-we-are .pane--banner {
    background-image: url('../design/banner/banner-who-we-are.jpg');
    background-position: center;
}

.page--cns .pane--banner {
    background-image: url('../design/banner/banner-cns.jpg');
}

.page--ir-overview .pane--banner {
    background-image: url('../design/banner/banner-ir-overview.jpg');
}

.page--our-commitment .pane--banner {
    background-image: url('../design/banner/banner-our-commitment.jpg');
}

.page--careers .pane--banner {
    background-image: url('../design/banner/banner-careers.jpg');
}

@media screen and (max-width: 1024px) {
    .page--cns .pane--banner {
        background-position: right 15% bottom;
        align-items: flex-end;
        z-index: 1;
    }
    .page--cns .pane--banner:before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background-image: linear-gradient(45deg, #000, transparent);
        z-index: -1;
    }
    .page--who-we-are .pane--banner {
        background-position: right center;
    }
}

@media screen and (max-width: 768px) {
    .page--our-commitment .pane--banner {
        background-image: url('../design/banner/banner-our-commitment_mobile.jpg');
    }
}

.page--ir-overview .pane--banner:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: transparent linear-gradient(270deg, #343D4A00 0%, #282F394A 53%, #0A0C0F 100%) 0% 0% no-repeat padding-box;
}

.page--home .pane--banner {
    min-height: 800px;
    align-items: center;
    background-position: top;
    position: relative;
}

.page--home .pane--banner:before {
    content: '';
    background: transparent linear-gradient(90deg, #343D4A00 0%, #0A0C0F 100%) 0% 0% no-repeat padding-box;
    background: linear-gradient(rgb(0, 0, 0), 62%, rgba(0, 0, 0, 0));
    opacity: .32;
    width: 100%;
    height: 236px;
    top: 0;
    left: 0;
    position: absolute;
    z-index: 1;
}

.pane--banner .pane_inner {
    margin-left: auto;
    margin-right: auto;
    padding: 20px;
}

.pane--banner h1 {
    font-size: 9.1rem;
    margin: 0;
}

.pane--banner p {
    letter-spacing: 0.5px;
    font-size: 2.5rem;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.6);
    margin: 20px 0;
    max-width: 510px;
}

.page--home .pane--banner p {
    max-width: none;
}

.pane--banner .button {
    min-width: 254px;
    margin: 15px;
}

.module-page-title_subbanner {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 20px;
    box-shadow: 0px 3px 6px #00000029;
    z-index: 1;
}

.module-page-title_subbanner h2 {
    max-width: 1050px;
    font-size: 2.4rem;
    margin: 0 auto;
    line-height: normal;
    font-family: 'Rufina';
}

.module-page-title--home video {
    position: absolute;
    bottom: 0;
    top: 0;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    margin: auto;
    transform: translateX(-50%);
}

.module-page-title--custom .module-page-title_description {
    position: relative;
    z-index: 1;
}

.module-page-title--custom h1 {
    position: relative;
    display: inline-block;
}

.module-page-title--custom h1 span.left {
    position: absolute;
    top: 0;
    width: 500%;
    height: 97px;
    right: 500%;
    transition: all .75s ease-in;
    transition-delay: .75s;
    width: 0;
    overflow: hidden;
}

.module-page-title--custom h1 span.left.js--animate {
    width: 500%;
    right: 100%;
}

.module-page-title--custom h1 span.left:before {
    position: absolute;
    right: 0;
    top: 0;
    width: 5000px;
    background: url(../design/svg/dna-left.svg);
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right center;
    margin-right: 40px;
    content: '';
}

.module-page-title--custom h1 span.right {
    position: absolute;
    top: 0;
    width: 500%;
    height: 97px;
    left: 100%;
    transition: all .75s ease-in;
    transition-delay: 1.5s;
    width: 0;
    overflow: hidden;
}

.module-page-title--custom h1 span.right.js--animate {
    width: 500%;
}

.module-page-title--custom h1 span.right:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 5000px;
    background: url(../design/svg/dna-right.svg);
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left center;
    margin-left: 40px;
    content: '';
}

@media only screen and (max-width: 1024px) {
    .pane--banner {
        padding-top: 75px;
    }
    .pane--banner h1 {
        font-size: 5.3rem;
        margin-bottom: 50px;
    }
    .pane--banner p {
        font-size: 2rem;
        letter-spacing: 0.4px;
    }
    .module-page-title_subbanner h2 {
        font-size: 2.3rem;
    }
    .module-page-title--home video {
        display: none;
    }
    .module-page-title--custom h1 span.right,
    .module-page-title--custom h1 span.left {
        height: 70px;
    }
    .module-page-title--custom h1 span.left:before {
        margin-right: 15px;
    }
    .module-page-title--custom h1 span.right:before {
        margin-left: 15px;
    }
}

@media only screen and (max-width: 768px) {
    .module-page-title_subbanner h2 {
        font-size: 1.6rem;
    }
}
@media only screen and (max-width: 480px) {
    .module-page-title--home {
        padding-bottom: 50px;
    }
}

/*pane navigation*/

.pane--navigation {
    background: #425563;
}

.pane--navigation .module-search {
    display: none;
}

@media only screen and (max-width: 1024px) {
    .pane--navigation {
        position: fixed;
        top: -100%;
        left: 0;
        right: 0;
        bottom: 100%;
        transition: 0.5s ease-in-out;
        overflow-y: scroll;
        z-index: 120;
        padding: 100px 20px 20px;
    }

    .js--mobile .pane--navigation {
        top: 0;
        height: 100%;
    }

    .pane--navigation .pane_inner {
        padding: 0;
    }

    .pane--navigation .module-search {
        display: block;
        margin-bottom: 25px;
    }

    .pane--navigation .module-search .module_container--inner {
        position: relative;
        padding-left: 35px;
    }

    .pane--navigation .module-search_button {
        background-image: url(../design/svg/search-green.svg);
    }
    .pane--navigation .module-search_input[type="text"] {
        font-size: 1.6rem;
    }
}

.pane--breadcrumb {
    background: #00873E;
}

.pane--breadcrumb .pane_inner {
    max-width: 1162px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

@media only screen and (max-width: 1024px) {
    .pane--breadcrumb .pane_inner {
        max-width: none;
    }
}

.pane--content .module {
    padding-top: 70px;
    padding-bottom: 70px;
}

.pane--content .module_container--outer {
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.pane--content .module--first .module_container--outer {
    max-width: 1242px;
}

.pane--content .max--900 .module_container--inner {
    max-width: 900px;
}

.pane--content .max--650 .module_container--inner {
    max-width: 650px;
}

.pane--content .module--thin {
    padding-top: 35px;
    padding-bottom: 35px;
}

.pane--content .module--thin-top {
    padding-top: 35px;
}

.pane--content .module--thin-bottom {
    padding-bottom: 35px;
}

.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;
}

@media screen and (max-width: 768px) {
    .pane--content .module--thick {
        padding-top: 70px;
        padding-bottom: 70px;
    }
    .pane--content .module--thick-top {
        padding-top: 70px;
    }
    .pane--content .module--thick-bottom {
        padding-bottom: 70px;
    }
}

.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;
}

.module--border-bottom {
    position: relative;
}

.module--border-bottom:before {
    content: '';
    border-bottom: 1px solid rgba(66, 85, 99, 0.44);
    position: absolute;
    bottom: 0;
    display: block;
    max-width: calc(1180px - 40px);
    left: 0;
    right: 0;
    margin: auto;
}

/*footer*/

.pane--footer {
    font-size: 1.4rem;
}

.pane--footer .pane_inner {
    max-width: 1162px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.pane--footer .module_title {
    margin-bottom: 20px;
    font-size: 2rem;
    font-weight: normal;
    text-transform: uppercase;
}

.pane--footer .module_error-container {
    margin-bottom: 20px;
}

.pane--footer .module_error-container li {
    margin-bottom: 16px;
}

.pane--footer .module_introduction {
    display: none;
}

.pane--footer .module-links {
    text-transform: uppercase;
}

.pane--footer .module-links li {
    line-height: 1.4;
}

.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_mailing-list,
.pane--footer .module-subscribe .CaptchaContainer,
.pane--footer .module-subscribe .module_actions {
    display: none;
}

.pane--footer .module-subscribe_form tbody {
    display: block;
}

.pane--footer .module-subscribe_form tr {
    width: 100%;
    margin: 0;
}

.pane--footer .module-subscribe_mailing-list {
    margin: 20px 0 10px;
}

.pane--footer .module-subscribe_list>td {
    padding: 0;
}

.pane--footer .module-subscribe p {
    padding-right: 35px;
}

.pane--footer .module-subscribe input[type="checkbox"]+label:before {
    border-color: #fff;
}

.pane--footer .module-subscribe_mailing-list.js--revealed,
.pane--footer .module-subscribe .module_actions.js--revealed {
    display: block;
}

.pane--footer .module_input[type="text"],
.pane--footer .module_input[type="email"] {
    max-width: 300px;
}

.pane--footer .module:not(.module-embed) {
    padding-bottom: 60px;
}

/**/

.pane--footer2 .module {
    vertical-align: middle;
}

.pane--footer2 .pane_inner {
    padding: 20px 40px;
}

.pane--footer2 .module-logo img {
    max-width: 218px;
    padding-right: 20px;
    width: 100%;
}

.pane--footer2 .module-copyright_links {
    margin-bottom: 15px;
}

.pane--footer2 .module-copyright_links .module-copyright_separator {
    margin: 0 6px;
    font-size: 1.2rem;
    color: #00873E;
}

.pane--footer2 .module-copyright_links a {
    letter-spacing: 0.24px;
    color: #00873E;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 1.2rem;
}

.pane--footer2 .module-copyright_year p {
    letter-spacing: 0.24px;
    font-size: 1.2rem;
    margin: 7px 0;
}

.pane--footer2 .module-copyright_year p a {
    color: #FF00D1;
}

.pane--footer2 .module-socials {
    text-align: right;
}

.pane--footer2 .module-socials h2 {
    letter-spacing: 0.3px;
    color: #425563;
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-family: inherit;
}

.pane--footer2 .module-socials .module_container--outer {
    display: inline-block;
    text-align: center;
}

.pane--footer2 .module-socials li {
    display: inline-block;
}

.pane--footer2 .module-socials li:not(:last-child) {
    margin-right: 15px;
}

.pane--footer2 .module-socials li a {
    font-size: 3rem;
}

.pane--footer2 .module-socials li a:hover {
    text-decoration: none;
    opacity: .8;
}

.module-q4-credits {
    text-align: center;
    margin-top: 15px;
}

.module-q4-credits a {
    letter-spacing: 0.24px;
    font-size: 1.2rem;
}

@media only screen and (max-width: 1024px) {
    .pane--footer2 .pane_inner {
        padding: 20px;
    }
}

.mobile--only {
    display: none;
}

@media only screen and (max-width: 768px) {
    .mobile--only {
        display: block;
    }

    .desktop--only {
        display: none;
    }

    .pane--footer2 .module-logo {
        text-align: center;
    }

    .pane--footer2 .module-logo img {
        padding-right: 0;
    }

    .pane--footer2 .module-copyright {
        text-align: center;
    }

    .pane--footer2 .module-socials {
        text-align: center;
        margin-top: 20px;
    }

    .pane--footer2 .module-copyright_year {
        margin-top: 30px;
    }
}

/*--------- Page Specific --------*/
.page--no-alternating .pane--content {
    padding: 35px 0;
}

.page--no-alternating .module {
    padding-top: 35px;
    padding-bottom: 35px;
}

/*-------- Module Specific -------*/
.tab--nav-toggle {
    position: relative;
    font-family: 'Lato', sans-serif;
    padding: 20px 0;
    border: 0;
    background-color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    width: 100%;
    text-align: left;
    color: #425561;
    display: none;
    z-index: 2;
}
.tab--nav-toggle:before {
    content: "";
    position: absolute;
    top: 10px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-image: url(../design/svg/btn_filter_1.svg);
    background-position: center;
    background-repeat: no-repeat;
}
.js--show .tab--nav-toggle:before {
    background-image: url('../design/svg/btn_closefilter_1.svg');
}
.tab--nav {
    text-align: center;
    margin: 30px 0;
    border-bottom: 1px solid #707070;
}

.tab--link {
    color: #00873E;
    cursor: pointer;
    font-weight: bold;
    padding: 20px;
    display: inline-block;
}

.tab--link.js--selected {
    color: #425563;
}

.tab--content.js--hidden {
    position: absolute;
    opacity: 0;
    visibility: hidden;
    height: 0;
}

@media screen and (max-width: 1024px) {
    .module-tab-links {
        position: absolute;
        left: 0;
        right: 0;
        padding: 0;
        background-color: #fff;
        overflow: hidden;
        transition: height .5s ease-in-out;
        min-height: 60px;
        margin-top: -1px;
        z-index: 1;
    }
    .module-tab-links.js--sticky {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        box-shadow: 0 0 10px rgba(0, 0, 0, .2);
        z-index: 99999;
    }
    .tab--nav-toggle {
        display: block;
        border-bottom: 1px solid #DBE2E9;
        border-top:0;
    }
    .module-tab-links.js--sticky:not(.js--show) .tab--nav-toggle {
        border-color: transparent;
    }
    .tab--nav {
        margin: 0;
        background-color: #fff;
        border-bottom: 0;
        text-align: left;
        transform: translateY(-100%);
        transition: transform .5s ease-in-out;
    }
    .module-tab-links.js--show .tab--nav {
        transform: translateY(0);
    }
    .tab--link {
        display: block;
        font-weight: 700;
        padding: 15px 20px;
        font-size: 18px;
    }
    .tab--link.js--selected {
        font-weight: 700;
    }
    .pane--content .module.tab--content.tab--content {
        padding-top: 90px;
    }
/*        .js--secondary-sticky .pane--content .module.tab--content.tab--content {
        padding-top: 90px;
    }*/

}

.module-overview p {
    margin-bottom: 40px;
}

.module-overview_hidden {
    display: none;
}

.module-overview_hidden.js--revealed {
    display: block;
}

.module-overview_button:before {
    content: "Read More";
}

.module-overview_button.js--active:before {
    content: "Show Less";
}

.module-why-invest h3 {
    color: #425563;
}

.module-why-invest h4 {
    font-size: 6rem;
    color: #00873E;
    font-weight: 300;
    margin-top: 0;
}

.module-why-invest .grid {
    padding-top: 25px;
    padding-bottom: 25px;
}

.module-why-invest .grid_col {
    padding-bottom: 15px;
    padding-right: 20px;
}

@media (min-width: 480px) {
    .module-why-invest .grid_col+.grid_col {
        border-left: 1px solid rgba(55, 55, 55, 0.25);
    }
}

.module-why-invest .grid_col p {
    margin-bottom: 0;
}

.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;
}

/*HOMEPAGE: START*/

.module-fulfilling .module_title {
    max-width: 470px;
}

.module-fulfilling:before {
    background-image: url(../design/banner/banner-fulfilling.jpg);
}

.module-groundbreaking {
    background-image: url(../design/banner/banner-groundbreaking.jpg);
    background-position: center left;
}

.module-groundbreaking:before {
    background: transparent linear-gradient(90deg, #343D4A00 0%, #0A0C0F 25%) 0% 0% no-repeat padding-box;
    width: 60%;
}

.module-groundbreaking .grid_col-inner.shape--left {
    max-width: 450px;
    margin-left: auto;
    position: relative;
    z-index: 2;
}

.module-transforming .module_title {
    max-width: 400px;
}

.module-transforming:before {
    background-image: url(../design/banner/banner-transforming.jpg);
}

@media screen and (min-width: 769px) {
    .module-groundbreaking p,
    .module-groundbreaking .module_title {
        color: #fff;
    }
    .module-groundbreaking .button {
        color: #006341;
    }
    .module-groundbreaking .button:before {
        background: #fff;
    }
    .module-groundbreaking .button:hover {
        color: #006341;
    }
}

@media screen and (max-width: 768px) {
    .module-fulfilling .button-wrap,
    .module-groundbreaking .button-wrap,
    .module-transforming .button-wrap {
        text-align: center;
    }
    .module-groundbreaking {
        background-image: none;
    }
    .module-groundbreaking:before {
        display: none;
    }
    .module-groundbreaking:after {
        position: absolute;
        content: '';
        right: 0;
        z-index: -1;
        width: 100%;
        top: -230px;
        height: 230px;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        background-image: url(../design/banner/banner-groundbreaking.jpg);
    }
    .module-groundbreaking .grid_col-inner.shape--left {
        max-width: 100%;
        margin-left: auto;
    }
}

/*HOMEPAGE: END*/

/*who we are page: start*/

.module-green-banner {
    background: url(../design/svg/green-callout.svg) no-repeat center;
    background-size: cover;
}

.module-green-banner .module-green-banner_link {
    margin: 0;
    position: relative;
    display: inline-block;
    padding-right: 50px;
    font-size: 2.8rem;
    font-weight: bold;
    font-family: "Rufina", sans-serif;
    text-transform: none;
}

.module-green-banner .module-green-banner_link:after {
    font-family: 'q4icons' !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #79D97C;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3.2rem;
    content: "\e92f";
    transition: all .3s ease-in-out;
}

.module-green-banner .module-green-banner_link:hover:after {
    color: #fff;
    right: -5px;
}

.module-passage-items .module_item {
    padding: 30px 0;
    border-bottom: 1px solid #707070;
    border-top: 1px solid #707070
} 

.module-passage-items .module_item ~ .module_item {
    border-top: none;
}

.module-passage-items .button {
    min-width: 220px;
}

.module-who-we-are .grid {
    direction: rtl;
}
.module-who-we-are .grid_col {
    direction: ltr;
}

@media screen and (max-width: 768px) {
    .module-passage-items .module_item {
        text-align: center;       
    }
}

/*who we are page: end*/

/*Our team page: start*/

.module-our-team:before {
    background-image: url(../design/banner/banner-our-team.jpg);
        background-position: top center; 
}

.module-our-team p {
    max-width: 480px;
}

/*Our team page: end*/

/*community and collaboration page: start*/

.module-community-collaboration:before {
    background-image: url(../design/banner/banner-community-collaboration.jpg);
}

.module-key-collaborations_logos > div + div {
    margin-top: 40px;
}

.module-key-collaborations_logos img {
    max-width: 260px;
    vertical-align: top;
}

/*community and collaboration page: end*/

/* Page Gene Therapy Delivery: start */

.module-gene-therapy-intro .module_container--inner {
    max-width: 850px;
}

.module-gene-therapy:before {
    background-image: url(../design/banner/banner-gene-therapy.jpg);
}

.module-differentiated-path .module_container--inner {
    max-width: 812px;
    margin: auto;
}

.module-differentiated-path p.text-left {
    letter-spacing: 0.36px;
}

.module-icm-injection_top .icon img {
    max-width: none;
    margin-bottom: 20px;
}

.module-icm-injection_top .icon .background--grey {
    background-color: #DBE2E9;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    margin-bottom: -22px;
    margin-left: -30px;
    margin-right: -30px;
    padding: 10px 20px;
    min-height: 60px;
    line-height: 1;
}

.module-icm-injection_top .icon .background--alt-brand {
    display: block;
    margin-bottom: -22px;
    margin-left: -30px;
    margin-right: -30px;
    padding: 20px;
    line-height: 1;    
}

.module-icm-injection_top .table .location {
    vertical-align: bottom;
}

.module-icm-injection_top .background--brand {
    background-color: rgba(121, 217, 124, .09);
}

.module-icm-injection_top .table {
    margin: 0;
    box-shadow: none;
}

.module-icm-injection_top .table th,
.module-icm-injection_top .table td {
    vertical-align: middle;
    max-width: 200px;
}

.module-icm-injection_top .table-wrapper {
    box-shadow: 0px 3px 6px #00000029;
    margin: 40px 0 18px 0;
}

.module-icm-injection_bottom {
    margin-top: 40px;
}

.module-icm-injection_bottom .grid-container {
    margin-top: 70px;
    border-top: 1px solid rgba(66, 85, 99, .44);
    border-bottom: 1px solid rgba(66, 85, 99, .44);
    padding: 20px 0;
}

.module-icm-injection_bottom h3 {
    font-size: 2.5rem;
    margin: 0 0 15px;
}

/* Page Gene Therapy Delivery: end */

/* Penn GTP Partnership: START */

.module-penn-gtp:before {
    background-image: url(../design/banner/banner-penn-gtp.jpg);
}

.module-differentiated-path-clinical .grid_col {
    margin-top: 20px;
    position: relative;
}

.module-differentiated-path-clinical .grid_col:not(:last-child):after {
    content: "\e917";
    font-family: 'q4icons' !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; 
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -53px;
    font-size: 3.5rem;
} 

.module-differentiated-path-clinical .grid_col img {
    max-height: 62px;
}

.module-differentiated-path-clinical .grid_col-inner {
    box-shadow: 0px 3px 6px #00000029;
    padding: 20px;
    height: 100%;
}

.module-differentiated-path-clinical .grid_col-inner h3 {
    font-size: 1.8rem;
    margin: 10px 0 0;   
    letter-spacing: 0.18px;    
    line-height: 1.4;
}

.module-differentiated-path-clinical .grid_col-inner span {
    position: absolute;
    right: 10px;
    bottom: 10px;
}

@media screen and (max-width: 1024px) {
    .module-differentiated-path-clinical .grid_col-inner h3 br {
        display: none;
    }
    .module-differentiated-path-clinical .grid_col:not(:last-child):after {
        display: none;
    }
}

/* Penn GTP Partnership: END */

/*Pipeline Page: START*/

.module-pipeline:before {
    background-image: url(../design/banner/banner-pipeline.jpg);
}

.module-robust-pipeline_item .grid_col-inner {
    height: 109px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    padding: 0 10px;
    position: relative;
}

.module-robust-pipeline_item .grid_col-inner--icon {
    padding-left: 30px;
}

.module-robust-pipeline_item .grid_col-inner i {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #00873E;
}

.module-robust-pipeline_item.js--active .grid_col-inner i:before {
    content: "\ed5e";
}

.module-robust-pipeline_item--program {
    border-top: 1px solid rgba(66, 85, 99, .44);
    border-bottom: 1px solid rgba(66, 85, 99, .44);
}

.module-robust-pipeline_wrap {
    border-top: 1px solid rgba(66, 85, 99, .44);
    border-bottom: 1px solid rgba(66, 85, 99, .44);
    padding-left: 40px;
    position: relative;
}

.module-robust-pipeline_wrap .module-robust-pipeline_item ~ .module-robust-pipeline_item {
    border-top: 1px solid rgba(66, 85, 99, .44);
}

.module-robust-pipeline_category {
    position: absolute;
    left: -38px;
    transform: rotate(-90deg);
    top: 50%;
    font-weight: bold;
}

.module-robust-pipeline_category--adult {
    left: -20px;
}

.module-robust-pipeline_item .background--grey {
    background: #F9F9F9;
}

.module-robust-pipeline_item .background--green1 {
    background: #79D97C;
}

.module-robust-pipeline_item .background--green2 {
    background: #00B373;
}

.module-robust-pipeline_item .background--green3 {
    background: #00873E;
}

.module-robust-pipeline_item .background--green4 {
    background: #006341;   
}

.module-robust-pipeline_item .background--green5 {
    background: #124332;
}

.module-robust-pipeline_item .background--grey1 {
    background: #EAEAEA;
}

.module-robust-pipeline_labels >div.grid_col {
    height: 42px;
    display: flex !important;
    align-items: center;
    padding: 10px 10px 10px 14px;
    font-size: 1.2rem;
    letter-spacing: 0.24px;
    position: relative;
    font-weight: bold;
    text-align: center;
    justify-content: center;
}

.module-robust-pipeline_labels >div:before {
    content: '';
    position: absolute;
    width: 0px;
    height: 0px;
    border-top: 21px solid #79D97C;
    border-bottom: 21px solid #79D97C;
    border-left: 10px solid #fff;
    left: 0;
    top: 0;
}

.module-robust-pipeline_labels >div.background--green2:before {
    border-top-color: #00B373;
    border-bottom-color: #00B373;
    border-left-color: #79D97C;
}

.module-robust-pipeline_labels >div.background--green3:before {
    border-top-color: #00873E;
    border-bottom-color: #00873E;
    border-left-color: #79D97C;
}

.module-robust-pipeline_labels >div.background--green4:before {
    border-top-color: #006341;
    border-bottom-color: #006341;
    border-left-color: #00873E;
}

.module-robust-pipeline_labels >div.background--green5:before {
    border-top-color: #124332;
    border-bottom-color: #124332;
    border-left-color: #006341;
}

.module-robust-pipeline_labels > div.background--green5:after {
    content: '';
    position: absolute;
    width: 0px;
    height: 0px;
    border-top: 21px solid #fff;
    border-bottom: 21px solid #fff;
    border-left: 10px solid #124332;
    right: 0;
    top: 0;
}

.module-robust-pipeline_label >div {
    min-height: 14px;
    position: relative;
}

.module-robust-pipeline_label >div.background--green4-half:before {
    content: '';
    background: #006341;
    width: 50%;
    left: 0;
    top: 0;
    height: 100%;
    position: absolute;
}

.module-robust-pipeline_label >div.background--green3-half:before {
    content: '';
    background: #00873E;
    width: 50%;
    left: 0;
    top: 0;
    height: 100%;
    position: absolute;
}

.module-robust-pipeline_label >div.background--green2-quarter3:before {
    content: '';
    background: #00B373;
    width: 66.66%;
    left: 0;
    top: 0;
    height: 100%;
    position: absolute;    
}

.module-robust-pipeline_label >div.background--green1-quarter3:before {
    content: '';
    background: #79D97C;
    width: 50%;
    left: 0;
    top: 0;
    height: 100%;
    position: absolute;    
}

.module-robust-pipeline_label >div.background--green1-quarter1:before {
    content: '';
    background: #79D97C;
    width: 50%;
    left: 0;
    top: 0;
    height: 100%;
    position: absolute;    
}

.module-robust-pipeline_label > div.background--green1-quarter1:before,
.module-robust-pipeline_label > div.background--green1-quarter3:before,
.module-robust-pipeline_label >div:first-child {
    border-bottom-left-radius: 50px;
    border-top-left-radius: 50px;
}

.module-robust-pipeline_label >div:last-child {
    border-bottom-right-radius: 50px;
    border-top-right-radius: 50px;
}

.module-robust-pipeline_label >div:not(:last-child):after {
    content: '';
    height: 109px;
    border-left: 1px dotted #EAEAEA;
    position: absolute;
    top: -48px;
    right: 0;
}

.module-robust-pipeline_wrap .module-robust-pipeline_header {
    cursor: pointer;
}

.module-robust-pipeline_header.tab-lasttab,
.module-robust-pipeline_header.tab-firsttab {
    cursor: inherit;
}

.module-robust-pipeline_header.tab-firsttab strong sup {
    font-size: 1.5rem;
}

.module-robust-pipeline_details {
    display: none;
    padding: 20px 30px;
}

.module-robust-pipeline_details .button {
    min-width: auto;
}

.module-robust-pipeline .mobile--only {
    display: none;
}

.module-robust-pipeline_item--program .module-robust-pipeline_header {
    padding-left: 40px;
}

.js--pipeline-down .module-robust-pipeline_item--program {
    min-height: 119px;
}

.js--pipeline-down .module-robust-pipeline_item--program .module-robust-pipeline_header {
    position: fixed;
    top: 0;
    z-index: 9;
    max-width: 1140px;
    right: 20px;
    background: #fff;
    left: 20px;
    margin: auto;
    border-bottom: 1px solid rgba(66, 85, 99, .44);
    width: 100%;
}

.module-robust-pipeline .module_footnotes small > sup {
    font-size: 1.4rem;
}

@media screen and (max-width: 1024px) {
    .module-robust-pipeline_details .button-wrap {
        text-align: center;
    }
    .module-robust-pipeline .desktop--only {
        display: none;
    }
    .module-robust-pipeline .mobile--only {
        display: inline-block;
        padding-right: 3px;
    }
    .module-robust-pipeline_label > div:not(:last-child):after {
        height: 100%;
        top: 0;
    }
    .module-robust-pipeline_item {
        padding: 30px 0;
    }
    .module-robust-pipeline_item .background--grey {
        background: transparent;
        padding: 0;
    }
    .module-robust-pipeline_header .grid_col-inner {
        height: auto;
        padding: 10px 0;
    }
    .module-robust-pipeline_header .grid_col-inner--icon {
        padding-left: 30px;
    }
    .module-robust-pipeline_item--last .grid_col-inner--icon {
        padding-left: 0;
    }
    .module-robust-pipeline_header .grid_col-inner br {
        display: none;
    }
    .module-robust-pipeline_header p {
        margin: 0;
    }
    .module-robust-pipeline_header .grid_col:first-child .mobile--only {
        display: block;
    }
    .module-robust-pipeline_header .grid_col:nth-child(2) .grid_col-inner,
    .module-robust-pipeline_header .grid_col:nth-child(3) .grid_col-inner {
        font-size: 1.4rem;
        padding: 0;
    }
    .module-robust-pipeline_details {
        padding-left: 0;
        padding-right: 0;
    }
    .module-robust-pipeline_item--program {
        padding-top: 0;
        border-top: 0;
    }
}

@media screen and (max-width: 480px) {
    .module-robust-pipeline_labels > div.grid_col {
        font-size: .9rem;
        letter-spacing: 0.18px;
        padding: 10px 5px 10px 15px;
    }
}

.module-passage-bio-cns .button {
    min-width: 270px;
}

.module-passage-bio-cns .module_title {
    font-size: 3.2rem;
}

.module-passage-bio-cns_links p {
    display: inline-block;
    vertical-align: middle;
    margin: 10px 0;
}

.module-passage-bio-cns_links p:not(:last-of-type) {
    margin-right: 20px;
}

.module-passage-bio-cns_item {
    padding: 40px 0;
}

.module-passage-bio-cns_item ~ .module-passage-bio-cns_item {
    border-top: 1px solid rgba(66, 85, 99, .44);
}

@media screen and (max-width: 768px) {
    .module-passage-bio-cns_links p {
        display: block;
    }
    .module-passage-bio-cns_links {
        text-align: center;
    }
    .module-passage-bio-cns .image {
        text-align: center;
    }
    .module-passage-bio-cns_links p:not(:last-of-type) {
        margin-right: 0;
    }
}

/*Pipeline Page: END*/

/* Manufacturing Page: START */

.module-manufacturing:before {
    background-image: url(../design/banner/banner-manufacturing.jpg);
}

.module-manufacturing p {
    max-width: 450px;
}

.module-dedicated-manufacturing th {
    font-size: 2.5rem;
}

.module-dedicated-manufacturing .table {
    height: 100%;
    margin: 20px 0 0;
}

@media screen and (max-width: 1024px) {
    .module-dedicated-manufacturing .table {
        height: auto;
    } 
}

/* Manufacturing Page: END */

/*Our Commitment Page:START */

@media screen and (min-width: 769px) {
    .module-page-title--commitment h1 {
        font-size: 7.7rem;
    }
    .module-page-title--commitment p {
        font-size: 2.2rem;
    }
}

.module-our-commitment .shape--left {
    max-width: 580px;
}

/*Our Commitment Page:END */

/* GM1 Gangliosidosis Page:START */

.module-gangliosidosis:before {
    background-image: url(../design/banner/banner-gangliosidosis.jpg);
}

.module-gangliosidosis .module_title > span {
    font-size: 3.9rem;
}

.module-lysosomal-accumulation h3 {
    font-size: 2.3rem;
    line-height: 1.25;
    letter-spacing: 0.46px;
    margin: 0;
    text-transform: none;
}

.module-lysosomal-accumulation img {
    width: 100%;
}

.module-watch-video h2 {
    font-size: 3rem;
}

.module-watch-video .module_title > span {
    font-size: 2.7rem;
}

.module-watch-video .module_item {
    padding: 50px 0;
    border-top: 1px solid rgba(66, 85, 99, .44);
}

.module-watch-video .module_item:last-child {
    padding-bottom: 0;
}

.module-watch-video video {
    width: 100%;
    max-width: 640px;
    height: auto;
}

/* GM1 Gangliosidosis Page:END */

/* Frontotemporal Dementia PAGE:start */

.module-frontotemporal-dementia:before {
    background-image: url(../design/banner/banner-frontotemporal-dementia.jpg);
}

.module-frontotemporal-dementia .shape--left p {
    max-width: 600px;
}

.module-incidence h2 {
    font-family: inherit;
    font-size: 2.8rem
}

.module-incidence.max--650 .module_container--inner {
    margin: auto;
    max-width: 660px;
}

/* Frontotemporal Dementia PAGE:end */

/* Krabbe Disease page:start */

.module-krabbe-disease:before {
    background-image: url(../design/banner/banner-krabbe-disease.jpg);
} 

.module-early-infantile .table {
    height: 100%;
    margin: 0;
}

.module-early-infantile .table th {
    font-size: 1.8rem;
    text-align: center;
}

@media screen and (max-width: 1024px) {
    .module-early-infantile .table {
        height: auto;
        margin: 10px 0;
    } 
}

.module-krabbe-management .module_footnote {
    position: relative;
    padding-left: 10px;
}

.module-krabbe-management .module_footnote span {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 2rem;
}

/* Krabbe Disease:end */

/* patient and community resources page:start */

.module-patient-resources:before {
    background-image: url(../design/banner/banner-patient-and-community-resources.jpg);
}

.module-advocacy-organizations .module_item {
    padding: 0;
    border: 0;
}

.module-advocacy-organizations .module_item ~ .module_item {
    padding-top: 30px;
}

.module-key-collaboration_link img {
    margin-right: 20px;
}

/* patient and community resources page:end */

/* ir overview: start */

.module-news-ir .module_item {
    padding: 0;
    border: 0;
}

.module-news-ir .module_item ~ .module_item {
    margin-top: 30px;
}

.module-news-ir .module_date-time {
    letter-spacing: 0.36px;
    font-size: 1.8rem;
}

.module-news-ir .button {
    margin-top: 30px;
    min-width: 180px;
}

.module-presentation-annual .module_date-time {
    letter-spacing: 0.36px;
    font-size: 1.8rem;
}

.module-presentation-annual .module_item {
    padding: 0;
}

.module-presentation-annual .module_item ~ .module_item {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(66, 85, 99, 0.44);    
}

.module-presentation-annual .module_link {
    font-size: 2rem;
    text-transform: none;
    letter-spacing: 0.3px;    
    font-weight: bold;
}

.module-presentation-annual .module_link .q4icons_icon:before {
    font-size: 2.4rem;
    margin-right: 10px;
}

/* ir overview: end */

/* news page: start */

.module-press-statements:before {
    background-image: url(../design/banner/banner-press-statements.jpg);
}

.module-press-statements .shape--left {
    height: 165px;
    display: flex;
    align-items: center;
    flex-direction: row;
}

.module-press-statements .shape--left h1 {
    margin: 0;
}

@media screen and (max-width: 768px) {
    .module-press-statements .shape--left {
        height: auto;
    }
}

.module-news-archive .module_options {
    margin-bottom: 20px;
}

.module-news-archive .module_container--content {
    border-top: 1px solid rgba(66, 85, 99, .44);
    border-bottom: 1px solid rgba(66, 85, 99, .44);
    padding: 35px 0;
}

.module-news-archive .module_item {
    padding: 0;
    border: 0;
}

.module-news-archive .module_item ~ .module_item {
    margin-top: 30px;
}

.module-news-archive .module_date-time {
    letter-spacing: 0.36px;
    font-size: 1.8rem;
}

/* news page: end */

/* events page: start */

.module-events-presentations:before {
    background-image: url(../design/banner/banner-events-presentations.jpg);
}

.module-events-presentations .shape--left {
    height: 165px;
    display: flex;
    align-items: center;
    flex-direction: row;
    max-width: 400px;
}

.module-events-presentations .shape--left h1 {
    margin: 0;
}

@media screen and (max-width: 768px) {
    .module-events-presentations .shape--left {
        height: auto;
    }
}

.module-slideshow-quarterly .module-slideshow .module-slideshow_viewer:not(.grid_col) {
    max-width: 100%;
}

.module-slideshow-quarterly .module-quarterly .module_link {
    text-transform: none;
    font-weight: normal;
    font-size: 1.8rem;
    letter-spacing: 0.36px;
}

.module-slideshow-quarterly .module-quarterly .module_link .q4icons_icon:before {
    border: 1px solid #DBE2E9;
    padding: 0;
    font-size: 2.4rem;
    width: 66px;
    height: 66px;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    border-radius: 50%;
    line-height: 66px;
    text-align: center;
}

/* events page: end */

/*financials page:start*/

.module-stock-information:before,
.module-financials-filings:before {
    background-image: url(../design/banner/banner-financials-filings.jpg);
}

.module-stock-information .shape--left,
.module-financials-filings .shape--left {
    height: 165px;
    display: flex;
    align-items: center;
    flex-direction: row;
}

.module-stock-information .shape--left h1,
.module-financials-filings .shape--left h1 {
    margin: 0;
}

@media screen and (max-width: 768px) {
    .module-stock-information .shape--left,
    .module-financials-filings .shape--left {
        height: auto;
    }
}

.nav--stock {
    padding-top: 80px;
}

.js--nav-sticky-down .nav--stock { 
    padding-top: 20px;
}

.nav--stock a {
    padding: 15px 0;
    text-transform: uppercase;
    font-size: 1.5rem;
    font-weight: bold;
    display: block;
}

.nav--stock li {
    border-top: 1px solid rgba(66, 85, 99, .44);
    border-bottom: 1px solid rgba(66, 85, 99, .44);
}

.nav--stock li ~ li {
    border-top: none;
}

@media screen and (max-width: 1024px) {
    .module-nav-sticky-wrap {
        display: none;
    }
}

/*financials page:end*/

/*faq page:start*/

.module-ir-faq:before {
    background-image: url(../design/banner/banner-ir-faq.jpg);
}

.module-ir-faq .shape--left {
    height: 165px;
    display: flex;
    align-items: center;
    flex-direction: row;
}

.module-ir-faq .shape--left h1 {
    margin: 0;
}

@media screen and (max-width: 768px) {
    .module-ir-faq .shape--left {
        height: auto;
    }
}

/*faq page:end*/

/*resources page:start*/

.module-resources:before {
    background-image: url(../design/banner/banner-resources.jpg);
}

.module-resources .shape--left {
    height: 165px;
    display: flex;
    align-items: center;
    flex-direction: row;
}

.module-resources .shape--left h1 {
    margin: 0;
}

@media screen and (max-width: 768px) {
    .module-resources .shape--left {
        height: auto;
    }
}

.module-authors-publications .module_item {
    padding: 20px 0;
    border-top: 1px solid #DBE2E9;
    border-bottom: 1px solid #DBE2E9;   
}

.module-authors-publications .module_item ~ .module_item {
    border-top: none;
}

/*resources page:end*/

/*corporate governance page:start*/

.module-corporate-governace:before {
    background-image: url(../design/banner/banner-corporate-governace.jpg);
}

.module-corporate-governace .shape--left {
    height: 165px;
    display: flex;
    align-items: center;
    flex-direction: row;
}

.module-corporate-governace .shape--left h1 {
    margin: 0;
}

@media screen and (max-width: 768px) {
    .module-corporate-governace .shape--left {
        height: auto;
    }
}


/*corporate governance page:end*/

/*careers page:start*/

.module-critical-core .module_container--inner {
    padding-top: 20px;
}

.module-critical-core .grid--flex {
    justify-content: center;
}

.module-critical-core .grid_col:first-child {
    margin-top: -20px;
    position: relative;
}

.module-critical-core .slick-slider .slick-track {
    display: block;
}

.module-critical-core h3 {
    margin: 0 0 10px;
    line-height: 1;
    position: absolute;
    left: 20px;
    top: 0;
    white-space: nowrap;
}

.module-critical-core h1 {
    font-size: 12rem;
    margin: 0;
}

.module-critical-core_slider {
    letter-spacing: 0px;
    color: #006341;
    font-size: 1.6rem;
    font-weight: bold;
    padding-top: 15px;
}

.module-critical-core_slider > div {
    position: relative;
    padding-left: 10px;
    line-height: 1.6;
}

.module-critical-core_slider > div:before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #006341;
}

.module-valued-employees p {
    max-width: 300px;
}

.module-valued-employees video {
    width: 100%;
    height: auto;
}

.module-commitment-diversity p {
    max-width: 985px;
}

.module-critical-core .slick-slide > div:not([class]) {
    display: block;
    height: auto;
}

.module-outstanding-total .grid_col {
    padding-right: 20px;
}

@media screen and (max-width: 768px) {
    .module-critical-core .grid--flex {
        justify-content: flex-start;
    }
    .module-critical-core .text-right {
        text-align: left;
    }
    .module-outstanding-total .grid_col {
        padding-right: 0;
    }
}

@media screen and (max-width: 480px) {
    .module-critical-core .slick-slide > div:not([class]) {
        min-height: 190px;
    }
}

/*careers page:end*/

/*contact page: start*/

.page--contact .module-contact .shape--left {
    height: 80px;
    display: flex;
    align-items: center;
    flex-direction: row;
}

.module-contact:before {
    background-image: url(../design/banner/banner-contact.jpg);
}

.module-contact_details {
    padding-top: 20px;
}

.module-subscribe--contact .module_introduction {
    display: none;
}

/*contact page: end*/
.word-wrap{
    white-space: nowrap;
}
.module-twitter_container{
    max-height: 675px;
    overflow-y: auto;
}
.js--nav-sticky-down.js--scroll-up .module-nav-sticky-wrap{
    top: 87px !important;
} 

.fancybox-outer,
.fancybox-inner, 
.fancybox-bg,
.fancybox-stage{
    width: 100%;
}
.module-contact a {
    word-wrap: break-word;
}