/*==================================------------ RESET CSS -----------==================================*/

html,
body,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
blockquote,
pre,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
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; */
    font-size: 12px;
}

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,
b {
    font-weight: bold;
}

em {
    font-style: italic;
}


/*---------- Animations ----------*/

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}


/*==================================
--------- DEFAULT STYLES ---------
==================================*/

body {
    overflow-x: hidden;
    color: #003087;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1;
    /* -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;*/
    -webkit-text-size-adjust: none;
}


/*---------- TYPOGRAPHY ----------*/

h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 600;
    color: #003087;
    letter-spacing: -0.5px;
    padding-bottom: 20px;
    line-height: 51px;
}

h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 34px;
    font-size: 3.4rem;
    margin-bottom: 25px;
    color: #003087;
    font-weight: 700;
    margin-top: 0;
}

h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 34px;
    line-height: 40px;
    color: #003087;
    letter-spacing: -1px;
    font-weight: 600;
    margin: 24px 0 16px 0;
}

h4 {
    font-size: 28px;
    line-height: 37px;
    font-weight: 500;
    margin: 15px 0;
    color: #003087;
}

h5 {
    font-size: 22px;
    font-weight: bold;
    line-height: 26px;
    color: #003087;
}

@media only screen and (max-width: 1100px) {
    h2 {
        font-size: 28px;
        line-height: 35px;
    }
    .page-email-alerts h2 {
        font-size: 34px;
    }
    h3 {
        font-size: 28px;
        padding-top: 10px;
        margin: 20px 0;
    }
    h5 {
        font-size: 18px;
    }
    h4 {
        font-size: 22px;
    }
}

@media only screen and (max-width: 767px) {
    h1 {
        font-size: 40px;
        line-height: 42px;
    }
}

a {
    text-decoration: none;
    color: #003087;
    overflow-wrap: break-word;
}

p {
    line-height: 1.4;
    color: #1d1d1d;
    font-weight: 100;
    margin: 10px 0;
}

p a {
    text-decoration: underline;
}

i {
    display: inline-block;
}

strong {
    font-weight: bold;
}

em {
    font-style: italic;
}

sup {
    vertical-align: super;
    font-size: 75%;
}

sub {
    vertical-align: sub;
    font-size: 75%;
}

small {
    font-size: 12px;
    font-size: 1.2rem;
}


/*------------ COMMON ------------*/

img {
    max-width: 100%;
}

img.full-width {
    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="radio"]+label:after {
    border-radius: 100%;
}

input[type="checkbox"]+label,
input[type="radio"]+label {
    user-select: none;
    cursor: pointer;
    position: relative;
    padding-left: 28px;
    display: inline-block;
    font-size: 13px;
    line-height: 19px;
}

input[type="checkbox"]+label:before,
input[type="radio"]+label:before {
    content: "";
    display: inline-block;
    width: 19px;
    height: 19px;
    border: 1px solid #1d1d1d;
    margin-right: 8px;
    line-height: 1;
    position: absolute;
    left: 0;
    top: 0px;
}

input[type="checkbox"]+label:after,
input[type="radio"]+label:after {
    content: "";
    width: 11px;
    height: 11px;
    position: absolute;
    left: 4px;
    top: 4px;
}

input[type="checkbox"]:checked+label:after,
input[type="radio"]:checked+label:after {
    background-color: #003087;
}

input[type="radio"]+label:before {
    border-radius: 100%;
}

input::-ms-clear {
    display: none;
}

iframe {
    width: 100%;
}


/*------- HACKS AND FIXES -------*/

.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}

.clearfix:after {
    clear: both;
}


/*------------ LISTS ------------*/

.list {
    list-style-type: disc;
    padding-left: 30px;
    margin-top: 15px;
    margin-bottom: 15px;
    line-height: 1.5;
    color: #000;
}

.list--blue {
    color: #003087;
}

.list--blue li {
    padding: 10px 0;
    font-weight: 100;
}

.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;
}

.list--no-bullet {
    list-style-type: none;
}

.list li {
    font-weight: 100;
    padding: 10px 0;
}

.list--regular li {
    font-weight: 400;
}


/*------- BUTTONS / INPUTS -------*/

.input,
.textarea,
.dropdown,
.upload,
.submit,
.button {
    display: inline-block;
    max-width: 100%;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding: 12px 20px;
    background: transparent;
    border: 1px solid #003087;
    color: #A5A5A5;
    border-radius: 2px;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: normal;
}

.input::-ms-clear,
.textarea::-ms-clear,
.dropdown::-ms-clear,
.upload::-ms-clear,
.submit::-ms-clear,
.button::-ms-clear {
    display: none;
}

.submit,
.button,
.upload,
.dropdown {
    cursor: pointer;
}

.submit,
.button {
    color: #fff;
    font-weight: 700;
    /* background-color: #FCAF17; */
    background-color: #E6B012;
    border: 0;
    font-size: 14px;
    /* text-transform: capitalize; */
    padding: 11px 15px;
    text-decoration: none;
}

.button--blue {
    background: #003087;
    padding: 5px 20px;
    text-decoration: none;
    margin: 10px 0;
    display: inline-block;
    border-radius: 30px;
}

.button--blue.arrow-link {
    color: #fff;
}

.button--blue.arrow-link:after {
    margin-right: 0;
}

.module-item_email-alerts_input-button,
.module-email-alerts-popup_input-button {
    transition: 0.3s ease-in-out;
}


/*.module-item_email-alerts_input-button:hover,
.module-email-alerts-popup_input-button:hover {
    background: #f1ba02;
}*/

.textarea {
    width: 100%;
    resize: vertical;
}

.upload {
    line-height: 0;
}

.button {
    transition: 0.3s ease-in-out;
}

.button--arrow {
    position: relative;
    padding-right: 35px;
}

.button--arrow:after {
    content: "\e90e";
    font-family: 'q4-icons';
    position: absolute;
    right: 20px;
}

.button--inverted {
    background: #003087;
    color: #fff;
}

.button--inverted:hover {
    background: transparent;
    color: #003087;
}

.button--inverted.js--disabled {
    background: #fff;
    border-color: #003087;
    color: #003087;
}

.button--dark {
    border: 2px solid #fff;
    color: #fff;
}

.button--dark:hover {
    background: #fff;
    color: #003087;
}

.button--blue:hover {
    background: #003087;
}

.dropdown {
    padding: 8px 35px 8px 20px;
    background: transparent url(../design/svg/angle-down.svg) no-repeat right 7px center;
    background-size: 20px 20px;
    min-width: 130px;
    color: #003087;
    font-size: 18px;
    border-radius: 4px;
    font-weight: 500;
    letter-spacing: 0.18px;
}

.dropdown::-ms-expand {
    display: none;
}


/*------------ TABLES ------------*/

.table.table--analyst td {
    padding: 7px 8px 7px 0px;
}

.table.table--analyst th {
    padding: 10px 8px 10px 0px;
}

.table.table--analyst tbody tr:first-child td {
    padding-top: 25px;
}

.table.table--analyst tbody {
    font-size: 12px;
}

.table.table--analyst thead {
    border-top: 1px solid #CCCCCC;
    border-bottom: 1px solid #CCCCCC;
}

.table--analyst.table thead th {
    font-size: 13px;
}

.table {
    width: 100%;
    margin: 16px 0;
    table-layout: fixed;
}

.table thead th {
    text-align: left;
    font-weight: 700;
    color: #003087;
    font-size: 20px;
}

.table td,
.table tr>.grid_col {
    margin: 0;
    padding: 14px 8px 14px 0px;
}

.table:not(.table--analyst) tr {
    border-bottom: 1px solid #CCCCCC;
}

.table:not(.table--analyst) th {
    padding: 0px 8px 20px 0px;
    margin: 0;
}

.table:not(.table--analyst) thead th+th {
    padding-left: 60px;
}

.table:not(.table--analyst) th {
    border-right: 1px solid #CCCCCC;
}

.table:not(.table--analyst) tr th:last-child {
    border-right: none;
}

.table:not(.table--analyst) tbody {
    font-weight: 500;
}

.table:not(.table--analyst) tbody td+td {
    padding-left: 60px;
}

.table:not(.table--analyst) td {
    border-right: 1px solid #CCCCCC;
}

.table:not(.table--analyst) tr td:last-child {
    border-right: none;
}

.table--headless tr:nth-child(even) {
    background-color: transparent;
}

.table--headless tr:nth-child(odd) {
    background-color: #f6f6f6;
}

.table--headless tr:first-child {
    background-color: #003087;
    text-align: left;
}

.table--headless tr:first-child td {
    color: #fff;
}

.table-wrapper {
    overflow-x: auto;
    margin: 40px 0;
}

.table-wrapper--no-margin {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.table-wrapper>table {
    margin-top: 0;
    margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
    .table--responsive thead {
        display: none;
    }
    .table.table--analyst tbody tr:first-child td {
        padding-top: 7px;
    }
    .table:not(.table--analyst) td {
        border-right: none;
    }
    .table:not(.table--analyst) tbody td+td {
        padding-left: 0
    }
    .table--responsive tbody {
        border-top: 2px solid #003087;
        border-bottom: 2px solid #003087;
    }
    .table--responsive td {
        display: block;
    }
    .table--responsive td[data-heading]:before {
        content: attr(data-heading) ": ";
        font-weight: bold;
    }
}


/*--------- SPECIAL BOXES --------*/

.code {
    margin: 32px 0;
    padding: 20px 15px;
    background: #f6f6f6;
    border-left: 3px solid rgba(0, 111, 186, 0.5);
    font-family: monospace, serif;
    font-size: 14px;
    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: #f6f6f6;
    border-left: 3px solid rgba(241, 175, 15, 0.5);
    font-size: 14px;
    font-size: 1.4rem;
    font-style: italic;
}

.quote p:before {
    margin-right: 5px;
    font-family: "q4-icons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\eb1b";
}

.quote p:after {
    margin-left: 5px;
    font-family: "q4-icons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\eb1c";
}


/*==================================
-------- Q4 Modules Icons ---------
==================================*/

.module_q4-icon-links .module_link:before,
.module_q4-icon-links .module_rss-link:before {
    font-family: "q4-icons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\e9bb";
    font-size: 16px;
    vertical-align: middle;
    display: inline-block;
    padding-right: 5px;
}

.module_q4-icon-links .module_rss-link:before,
.module_q4-icon-links .module_link.module_link-rss:before {
    content: "\eefa";
}

.module_q4-icon-links .module_add-to-calendar-reveal:before {
    content: "\ea5f";
    padding-right: 5px;
}

.module_q4-icon-links .module_link[href$=".mp3"]:before,
.module_q4-icon-links .module_link[href$=".wmv"]:before,
.module_q4-icon-links .module_link[href$=".MP3"]:before,
.module_q4-icon-links .module_link[href$=".WMV"]:before {
    content: "\e952";
}

.module_q4-icon-links .module_link[href$=".xls"]:before,
.module_q4-icon-links .module_link[href$=".csv"]:before,
.module_q4-icon-links .module_link[href$=".XLS"]:before,
.module_q4-icon-links .module_link[href$=".CSV"]:before {
    content: "\eeae";
}

.module_q4-icon-links .module_link[href$=".mp4"]:before,
.module_q4-icon-links .module_link[href$=".flv"]:before,
.module_q4-icon-links .module_link[href$=".avi"]:before,
.module_q4-icon-links .module_link[href$=".MP4"]:before,
.module_q4-icon-links .module_link[href$=".FLV"]:before,
.module_q4-icon-links .module_link[href$=".AVI"]:before {
    content: "\e95e";
}

.module_q4-icon-links .module_link:not(.module_link-sec)[href$=".pdf"]:before,
.module_q4-icon-links .module_link:not(.module_link-sec)[href$=".PDF"]:before {
    content: "\ef3e";
    color: #DA291C;
}

.module_q4-icon-links .module_link:not(.module_link-sec)[href$=".docx"]:before {
    content: "\ef40";
    color: #DA291C;
}

.module_q4-icon-links .module_link:not(.module_link-sec)[href$=".zip"]:before {
    content: "\e9b9";
}

.module_q4-icon-links .module_link.module_link-webcast:before,
.module_q4-icon-links .module_webcast-link:before {
    content: "\e989";
}

.module_q4-icon-links .module_link.module_link-news:before,
.module_q4-icon-links .module_link.module_link-transcript:before {
    content: "\e99b";
}

.module_q4-icon-links .module_link.module_link-presentation:before {
    content: "\e95c";
}

.module_q4-icon-links .module_link.module_link-file:before {
    content: "\eb81";
}

.module_q4-icon-links .module_link.module_link-sec:before {
    content: "\e9bb";
}

.module_q4-icon-links .module_link.module_link-sec[href$=".pdf"]:before {
    content: "\ef3e";
}

.module_q4-icon-links .module_link.module_link-sec[href$=".rtf"]:before {
    content: "\ef40";
}

.module_q4-icon-links .module_link.module_link-sec[href$=".rtf"]:before {
    content: "\ef40";
}

.module_q4-icon-links .module_link.module_link-sec[href$=".xls"]:before {
    content: "\ef41";
}

.module_q4-icon-links .module_link.module_link-sec[href$=".zip"]:before {
    content: "\e9b9";
}


/*==================================
----------- 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.3333333333%;
}

.grid_col--2-of-3,
.grid_col--4-of-6,
.grid_col--8-of-12 {
    width: 66.6666666667%;
}

.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.3333333333%;
}

.grid_col--push-2-of-3,
.grid_col--push-4-of-6,
.grid_col--push-8-of-12 {
    margin-left: 66.6666666667%;
}

.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.3333333333%;
}

.grid_col--pull-2-of-3,
.grid_col--pull-4-of-6,
.grid_col--pull-8-of-12 {
    margin-left: -66.6666666667%;
}

.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_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_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_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_col--push-4-of-5 {
    margin-left: 80%;
}

.grid_col--pull-4-of-5 {
    margin-left: -80%;
}

.grid_col--1-of-6 {
    width: 16.6666666667%;
}

.grid_col--push-1-of-6 {
    margin-left: 16.6666666667%;
}

.grid_col--pull-1-of-6 {
    margin-left: -16.6666666667%;
}

.grid_col--5-of-6 {
    width: 83.3333333333%;
}

.grid_col--push-5-of-6 {
    margin-left: 83.3333333333%;
}

.grid_col--pull-5-of-6 {
    margin-left: -83.3333333333%;
}

.grid_col--1-of-7 {
    width: 14.2857142857%;
}

.grid_col--push-1-of-7 {
    margin-left: 14.2857142857%;
}

.grid_col--pull-1-of-7 {
    margin-left: -14.2857142857%;
}

.grid_col--2-of-7 {
    width: 28.5714285714%;
}

.grid_col--push-2-of-7 {
    margin-left: 28.5714285714%;
}

.grid_col--pull-2-of-7 {
    margin-left: -28.5714285714%;
}

.grid_col--3-of-7 {
    width: 42.8571428571%;
}

.grid_col--push-3-of-7 {
    margin-left: 42.8571428571%;
}

.grid_col--pull-3-of-7 {
    margin-left: -42.8571428571%;
}

.grid_col--4-of-7 {
    width: 57.1428571429%;
}

.grid_col--push-4-of-7 {
    margin-left: 57.1428571429%;
}

.grid_col--pull-4-of-7 {
    margin-left: -57.1428571429%;
}

.grid_col--5-of-7 {
    width: 71.4285714286%;
}

.grid_col--push-5-of-7 {
    margin-left: 71.4285714286%;
}

.grid_col--pull-5-of-7 {
    margin-left: -71.4285714286%;
}

.grid_col--6-of-7 {
    width: 85.7142857143%;
}

.grid_col--push-6-of-7 {
    margin-left: 85.7142857143%;
}

.grid_col--pull-6-of-7 {
    margin-left: -85.7142857143%;
}

.grid_col--1-of-8 {
    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_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_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_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.3333333333%;
}

.grid_col--push-1-of-12 {
    margin-left: 8.3333333333%;
}

.grid_col--pull-1-of-12 {
    margin-left: -8.3333333333%;
}

.grid_col--2-of-12 {
    width: 16.6666666667%;
}

.grid_col--push-2-of-12 {
    margin-left: 16.6666666667%;
}

.grid_col--pull-2-of-12 {
    margin-left: -16.6666666667%;
}

.grid_col--5-of-12 {
    width: 41.6666666667%;
}

.grid_col--push-5-of-12 {
    margin-left: 41.6666666667%;
}

.grid_col--pull-5-of-12 {
    margin-left: -41.6666666667%;
}

.grid_col--7-of-12 {
    width: 58.3333333333%;
}

.grid_col--push-7-of-12 {
    margin-left: 58.3333333333%;
}

.grid_col--pull-7-of-12 {
    margin-left: -58.3333333333%;
}

.grid_col--10-of-12 {
    width: 83.3333333333%;
}

.grid_col--push-10-of-12 {
    margin-left: 83.3333333333%;
}

.grid_col--pull-10-of-12 {
    margin-left: -83.3333333333%;
}

.grid_col--11-of-12 {
    width: 91.6666666667%;
}

.grid_col--push-11-of-12 {
    margin-left: 91.6666666667%;
}

.grid_col--pull-11-of-12 {
    margin-left: -91.6666666667%;
}

.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.3333333333%;
    }
    .grid_col.grid_col--lg-2-of-3 {
        width: 66.6666666667%;
    }
    .grid_col.grid_col--lg-1-of-4 {
        width: 25%;
    }
    .grid_col.grid_col--lg-3-of-4 {
        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.3333333333%;
    }
    .grid_col.grid_col--lc-2-of-3 {
        width: 66.6666666667%;
    }
    .grid_col.grid_col--lc-1-of-4 {
        width: 25%;
    }
    .grid_col.grid_col--lc-3-of-4 {
        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.3333333333%;
    }
    .grid_col.grid_col--md-2-of-3 {
        width: 66.6666666667%;
    }
    .grid_col.grid_col--md-1-of-4 {
        width: 25%;
    }
    .grid_col.grid_col--md-3-of-4 {
        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.3333333333%;
    }
    .grid_col.grid_col--sm-2-of-3 {
        width: 66.6666666667%;
    }
    .grid_col.grid_col--sm-1-of-4 {
        width: 25%;
    }
    .grid_col.grid_col--sm-3-of-4 {
        width: 75%;
    }
    .grid--flex .grid_col {
        width: auto;
        flex-basis: 100%;
        max-width: 100%;
    }
}

.grid_col--centered {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.grid_col--d-first {
    float: left;
}

.grid_col--d-last {
    float: right;
}

.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--no-space .grid_col {
    margin-right: 0;
}

.grid_col--ab {
    vertical-align: bottom;
}

.grid_col--am {
    vertical-align: middle;
}

.grid-flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}


/*==================================
--------- UTILITY CLASSES --------
==================================*/

.hidden:not([role=tabpanel]) {
    display: none !important;
}

.hidden[role=tabpanel] {
    display: none;
}

.disabled {
    opacity: 0.1;
    border-color: #333333;
    color: #333333;
    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;
}

.left--image {
    max-width: 500px;
    margin-right: 20px;
}

.left_title {
    color: #003087;
    font-size: 24px;
    display: block;
    width: 100%;
    text-align: center;
    line-height: 30px;
}

.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: #003087;
}

.background--alt-brand {
    background-color: #f1af0f;
}

.background--dark {
    background-color: #222;
}

.background--light {
    background-color: #fff;
}

.background--grey {
    background-color: #ebebeb;
}

.background--grey2 {
    background-color: #efefef;
}

.background--grey3 {
    background-color: #d8d8d8;
}

.background--grey4 {
    background-color: #f8f8f8;
}

.background--success {
    background-color: #23a217;
}

.background--error {
    background-color: #b72121;
}

.color--brand {
    color: #003087;
}

.color--dark {
    color: #222;
}

.color--grey {
    color: #f6f6f6;
}

.color--success {
    color: #23a217;
}

.color--error,
.color--red,
.color--icon-red:before {
    color: #e80000;
}

.dark {
    color: #fff;
}

.dark a {
    color: #fff;
}

.v-align-middle {
    vertical-align: middle;
}

.v-align-bottom {
    vertical-align: bottom;
}

.v-align-bottom>td,
.v-align-bottom>th {
    vertical-align: bottom !important;
}

.border-right {
    border-right: 1px solid #999;
}

.border-right--override {
    border-right: 1px solid #999 !important;
}

.no-margin-top {
    margin-top: 0;
}

.no-margin-top--override {
    margin-top: 0 !important;
}

.no-margin {
    margin: 0;
}

.no-margin-top--override {
    margin-top: 0 !important;
}

.no-margin--override {
    margin: 0 !important;
}

.no-padding-top--override {
    padding-top: 0 !important;
}

.font--thin {
    font-weight: 100;
}

.font--regular {
    font-weight: 400;
}

.gri-container {
    display: none;
}

.gri-index {
    background: #ccd5fa;
    padding: 2px 10px;
    position: relative;
    margin: 0 5px;
    display: inline-block;
}

.gri-index:after {
    content: "GRI";
    display: block;
    position: absolute;
    background: #ccd5fa;
    font-size: 8px;
    top: -9px;
    padding: 2px 4px;
    left: 0;
    line-height: 6px;
}

.js--gri-enabled .gri-container {
    display: block;
}

.no-underline {
    text-decoration: none;
}

.underline {
    text-decoration: underline;
}

.icon--large:before {
    font-size: 22px;
}

.icon--middle>*,
.icon--middle:before {
    vertical-align: middle;
}

.v-align-middle {
    vertical-align: middle;
}

.no-margin-left {
    margin-left: 0 !important;
}

.no-margin-bottom {
    margin-bottom: 0;
}

.smallish {
    font-size: 14px;
    font-size: 14px;
}

.break-word {
    word-break: break-all;
}

@media (max-width: 480px) {
    .break-word-xs {
        word-break: break-all;
    }
}


/*==================================
------ END UTILITY CLASSES --------
==================================*/


/*==================================
--------- ACCESSIBILITY ----------
==================================*/

*:focus {
    outline: none;
}

a:focus {
    text-decoration: underline !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;
}


/*---------- Javascript ----------*/

.js--loading:after {
    position: relative;
    left: 50%;
    display: inline-block;
    margin: 10px 0 10px -25px;
    font-family: "q4-icons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\eb27";
    font-size: 50px;
    font-size: 5rem;
    animation: spin 0.8s infinite linear;
}

.js--hidden:not([role=tabpanel]) {
    display: none !important;
}

.js--hidden[role=tabpanel] {
    display: none;
}

.js--visible {
    display: block;
}

.js--disabled {
    opacity: 0.1;
    border-color: #333333;
    color: #333333;
    transition: none;
    pointer-events: none;
}

.js--invalid input[type="text"],
.js--invalid select {
    border: 1px solid #b72121 !important;
}

.js--invalid input[type="checkbox"] {
    border-color: #b72121 !important;
}


/*==================================
----------- MODULE CSS -----------
==================================*/


/*-------- All Module CSS --------*/

.module_header,
.module_back-to-top,
.module_anchor-target,
.module_file-size,
.module_file-type,
.module_file-text {
    display: none;
}

.module_nav,
.module_headline,
.module_location,
.module_speakers,
.module_links,
.module_body,
.module_options {
    margin-bottom: 15px;
}

.module_not-found {
    padding: 0;
    border: 0;
    font-size: 16px;
    line-height: 22px;
    color: #1d1d1d;
    font-weight: 100;
    margin: 10px 0;
}

.module_error-container {
    margin-bottom: 30px;
    color: #b72121;
}

.border-top {
    border-top: 4px solid #003087;
    padding: 30px 30px 0;
}

.module-border-top .module_title {
    border-top: 4px solid #003087;
    padding: 20px 20px 0;
}

.module-border-top .module_container--inner {
    padding: 0 15px;
}

.module_add-to-calendar-reveal {
    cursor: pointer;
}

.module_add-to-calendar-reveal:focus {
    text-decoration: underline;
}

.module_add-to-calendar-list {
    display: none;
}

.module_add-to-calendar-list:after {
    content: "Select your Calendar";
    display: block;
    margin-top: 15px;
    font-size: 14px;
    font-size: 1.4rem;
    text-align: center;
}

.fancybox-container .module_add-to-calendar-list {
    padding: 70px;
}

.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: 24px;
    font-size: 2.4rem;
}

.module_add-to-calendar.js--hidden {
    display: none;
}

.module_actions,
.module_pager {
    margin-top: 20px;
}

.module-event-details .module_time-text:not(:empty) {
    display: block;
}

.module-event-details .module_date-text {
    margin-bottom: 5px;
}

.module-event-details .module_date-text:before {
    content: "\e914";
    font-family: 'q4-icons';
    margin-right: 6px;
    font-size: 18px;
    display: inline-block;
    vertical-align: middle;
}

.module_date-time--icons .module_time-text>span:not(:empty):before,
.module-event-details .module_time-text:not(:empty):before {
    content: "\e915";
    font-family: 'q4-icons';
    margin-right: 4px;
    font-size: 18px;
    display: inline-block;
    vertical-align: middle;
}

.module_date-time {
    margin-bottom: 5px;
    font-size: 17px;
    font-weight: 500;
    color: #003087;
    line-height: 1.2;
}

.module_date-time i {
    margin-right: 6px;
    font-size: 18px;
    display: inline-block;
    vertical-align: middle;
}

.module_date-time .q4-icon_clock {
    margin-right: 4px;
}

.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;
    padding-top: 0;
    padding-bottom: 0;
    font-weight: 400;
}

.module_error-container>br {
    display: none;
}

.module_error-container>span {
    display: block;
    line-height: 1.5;
}

.module_error-container>span:before {
    font-family: "q4-icons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\ec6b";
    margin-right: 5px;
}

.module_headline {
    font-weight: 500;
    color: #003087;
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 10px;
}

.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_item {
    padding: 30px 0 10px;
}

.module_item~.module_item {
    border-top: 1px solid #dddddd;
}

.module_item--reset {
    padding: 0;
    margin: 0;
    border: none;
}

.module_item~.module_item--reset {
    border: none;
}

.module_label {
    display: inline-block;
    margin-bottom: 5px;
    font-size: 14px;
    font-size: 1.4rem;
}

.module_label+.module_required {
    font-size: 14px;
    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: 16px;
    font-size: 1.6rem;
}

.module_link--general {
    text-decoration: underline;
    font-weight: 100;
}

.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_loader--stock-header {
    margin: 0;
}

.module_message {
    display: block;
    margin: 16px 0;
    font-weight: 400;
}

.module_message[style$="hidden;"],
.module_message:empty {
    display: none;
}

.module_message--success {
    color: #23a217;
}

.module_message--success:before {
    font-family: "q4-icons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\ed71";
    margin-right: 5px;
}

.module_message--error {
    color: #e80000;
}

.module_message--error:before {
    font-family: "q4-icons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\ed4f";
    margin-right: 5px;
}

.module_nav-link,
.module_nav .ModuleYearLink,
.module_nav-link:visited,
.module_nav .ModuleYearLink:visited {
    display: inline-block;
    margin-right: 5px;
    padding: 15px 20px;
    border: 2px solid #003087;
    color: #333333;
    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: #003087;
    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: 767px) {
    .module_options-label,
    .module_options-select,
    .module_options-submit,
    .module_options-filter {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }
}

.module_pager a {
    color: #003087;
    font-weight: 700;
}

.module_pager a[href] {
    color: #003087;
    font-weight: 400;
}

.module_reminder .module_input.module_reminder-period,
.module_reminder .module_input.module_reminder-email {
    margin-right: 10px;
}

.module_reminder.js--reminded {
    display: none;
}

.module_required {
    color: #333333;
}

.module_required-text {
    font-size: 13px;
    font-size: 1.3rem;
    color: #333333;
}

.module_rss {
    float: right;
}

.module_rss--top {
    margin-top: 2px
}

.module_speakers li {
    margin-bottom: 5px;
}

.module_view-all-link {
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: bold;
}

.module_input[type="text"],
.module_input[type="email"],
.module_input[type="file"],
.module_dropdown,
.module textarea.module_input {
    display: block;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    /* Text area demands width*/
    width: 100%;
    max-width: none;
    padding: 10px 20px;
    border-radius: 2px;
    color: #003087;
    border: 1px solid #979797;
    font-family: inherit;
    font-size: 13px;
    font-size: 1.3rem;
    font-weight: 500;
}

.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;
}

.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: 10px 20px;
    border: 1px solid #979797;
    background: transparent;
}

.module_dropdown {
    background: #f6f6f6 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;
}

.module-news-details .module_date-time {
    margin-bottom: 0;
    display: inline-block;
    vertical-align: top;
    line-height: 1.8;
}

.module-news-details .module_links {
    margin-top: 15px;
}

@media only screen and (max-width: 767px) {
    .module_reminder .module_reminder-period {
        display: block;
    }
    .module_reminder .module_input[type="text"],
    .module_reminder .dropdown,
    .module_reminder .button {
        width: 100%;
        margin-bottom: 15px;
    }
    .module_reminder {
        margin-top: 15px;
    }
}


/*------- Captcha Component ------*/

.CaptchaContainer {
    display: none;
}

.CaptchaContainer table tr:nth-child(1) {
    display: none;
}

.CaptchaContainer table tr:nth-child(2) td {
    padding-bottom: 20px;
}

.CaptchaContainer table tr:nth-child(3) td {
    padding-bottom: 5px;
    font-size: 14px;
    font-size: 1.4rem;
}

.CaptchaContainer table tr:nth-child(3) td span {
    display: none !important;
}

.CaptchaContainer table tr:nth-child(4) span {
    display: none !important;
}

.CaptchaContainer table tr td {
    padding-right: 10px;
}

@media only screen and (max-width: 768px) {
    .CaptchaContainer table tr td {
        padding-right: 0;
    }
}

.CaptchaContainer input[type="text"] {
    appearance: none;
    -webkit-appearance: none;
    display: block;
    max-width: none;
    padding: 10px 20px;
    border-radius: 2px;
    color: #003087;
    border: 1px solid #979797;
    font-family: inherit;
    font-size: 13px;
    font-size: 1.3rem;
    font-weight: 500;
}

.fancybox-container .CaptchaContainer table tr:nth-child(4) td {
    padding-bottom: 20px;
}

.fancybox-container .CaptchaContainer table tr td {
    padding-right: 0;
}


/*- Committee Composition Widget -*/

@media only screen and (max-width: 768px) {
    .module-committee .module_container--desktop {
        display: none;
    }
}

.module-committee .module_container--tablet {
    display: none;
}

@media only screen and (max-width: 768px) {
    .module-committee .module_container--tablet {
        display: block;
    }
}

.module-committee .module_header {
    display: block;
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
    font-weight: normal;
}

.module-committee .module_item {
    padding: 0;
}

.module-committee .module_item~.module_item {
    border: 0;
}

.module-committee .module_item:nth-child(even) {
    background: rgba(0, 0, 0, 0.05);
}

.module-committee .grid_col {
    padding: 20px 15px;
    text-align: center;
}

.module-committee .grid_col:first-child {
    text-align: left;
}

.module-committee_category.js--active .module_header i:before {
    content: "\edc2";
}

.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 i {
    margin-right: 5px;
}


/*----- Download List Module -----*/

.module-downloads .module_nav {
    display: none;
}

.module-downloads .module_item {
    padding: 0;
    border: none;
    margin-top: 20px;
}

.module-downloads_thumbnail,
.module-downloads_description,
.module-downloads_date {
    display: none;
}

.module-downloads_title {
    position: relative;
}

.module-downloads_title-link {
    margin: 0 20px 0 0;
}

.module-downloads_title-link:before {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
}


/*--------- Event Module ---------*/

.module-event .module_location,
.module-event .module_speakers h4,
.module-event .module_body {
    display: none;
}

.module-event .module_options {
    margin-bottom: 0;
    padding-bottom: 15px;
    border-bottom: 1px solid #dddddd;
}

.module-event-details .module_link {
    color: #fff;
    font-weight: 700;
    /* background-color: #FCAF17; */
    background-color: #E6B012;
    border: 0;
    border-radius: 2px;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-size: 1.6rem;
    padding: 12px 20px;
    transition: 0.3s ease-in-out;
}

.module-event-and-presentation .module_link,
.module-event-details .module_link {
    text-transform: capitalize;
}

.module-event-and-presentation .button {
    font-size: 16px;
    font-size: 1.6rem;
}

.module-event-details .module_speakers h4 {
    display: none;
}

.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;
}

@media only screen and (max-width: 768px) {
    .module-event-latest .module_item:first-child {
        width: 100%;
    }
}

.module-event-latest .module_item.grid_col {
    padding-left: 20px;
}

.module-event-latest .module_item-wrap {
    padding: 30px;
    background-color: #f6f6f6;
}

.module-event-latest .module_date-time {
    margin-bottom: 15px;
    font-weight: normal;
}

.module-event-latest .module_headline {
    line-height: 150%;
    font-weight: 200;
}

.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 #dddddd;
}

.module-event-upcoming .module_nav {
    display: none;
}

.module-event-upcoming .module_item {
    padding: 0 0 10px;
}

.module-event-upcoming .module_item~.module_item {
    padding: 30px 0 10px;
}

.module-event-calendar {
    display: table;
    width: 100%;
}

.module-event-calendar_calendar-container,
.module-event-calendar_event-container {
    display: table-cell;
    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: #f6f6f6;
}

.module-event-calendar_splash i {
    font-size: 40px;
    font-size: 4rem;
    color: #003087;
}

.module-event-calendar_splash p {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.2;
}

.module-event-calendar_controls {
    padding: 20px 15px;
    background-color: #003087;
    font-weight: bold;
    color: #fff;
}

.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);
}

.module-event-calendar_day {
    position: relative;
    width: 14.285%;
    margin: 0;
    padding: 8px 0 25px;
    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: 15px 0 10px;
    border: none;
}

.module-event-calendar_day--today {
    background: #f6f6f6;
}

.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: #003087;
}

.module-event-calendar_day--selected {
    background-color: #003087;
    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: 20px;
}

.module-event-calendar .module_add-to-calendar {
    margin: 0;
}

@media only screen and (max-width: 768px) {
    .module-event-calendar {
        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;
    }
}


/*--- Financial Report Modules ---*/

.module-financial-year .module_cover {
    margin-bottom: 15px;
}

.module-financial-year .module_cover img {
    display: inline-block;
    border: 1px solid #003087;
}

.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;
    background: #F4F4F4;
}

.module-financial-quarter .module_links>div {
    display: block;
}

.module-financial-quarter .module_link {
    margin-bottom: 10px;
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: normal;
    text-transform: none;
}

.module-financial-quarter .module-financial_year-text {
    padding: 20px 15px;
    margin-bottom: 0;
    background-color: #003087;
    color: #fff;
    font-size: 22px;
    font-size: 2.2rem;
    margin-top: 1px;
    font-weight: bold;
    cursor: pointer;
}

.module-financial-quarter .module-financial_year-text:after {
    float: right;
    font-family: "q4-icons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\ed5d";
}

.module-financial-table_header {
    font-size: 20px;
    border-bottom: 1px solid #D3D3D3;
    font-weight: 700;
}

.module-financial-table_header-year-container {
    text-align: center;
}

.module-financial-table_header-year,
.module-financial-table_header-category.grid_col {
    padding: 12px 15px;
}

.module-financial-table_body-row {
    border-bottom: 1px solid #D3D3D3;
    font-size: 16px;
    font-weight: 500;
    display: flex;
}

.module-financial-table_body-row .slick-list,
.module-financial-table_body-row .slick-track {
    height: 100%;
}

.module-financial-table_body-year {
    border-left: 1px solid #D3D3D3;
}

.module-financial-table_link {
    font-weight: 500;
    font-size: 16px;
}

.module-financial-table_body-year-container {
    text-align: center;
}

.module-financial-table_body-year,
.module-financial-table_body-category.grid_col {
    padding: 12px 15px;
}

.module-financial-table_body-category.grid_col:first-child {
    padding-left: 0;
}

.module-financial-table_item {
    display: inline-block;
    margin-right: 15px;
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: normal;
}

.module-financial-table_item~.module_item {
    margin-right: 5px;
}

.module-financial-table_item--empty {
    opacity: 0.1;
}

@media only screen and (max-width: 810px) {
    .module-financial-table_item {
        margin-right: 10px;
    }
}

@media only screen and (max-width: 480px) {
    .module-financial-table_item {
        margin: 5px;
    }
}

.module-financial-table .slick-slider {
    display: inline-block;
    padding: 0;
}

.module-financial-table .slick-slide:focus {
    outline: none;
}

.module-financial-table .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    cursor: pointer;
    z-index: 10;
}

.module-financial-table .slick-prev {
    left: 10px;
}

.module-financial-table .slick-next {
    right: 10px;
}

.module-financial-table .slick-disabled {
    opacity: 0.1;
    cursor: default;
}

.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 .module-financial-mashup_documents .module_links+h4 {
    margin-top: 30px;
}

.module-financial-mashup .module-financial-mashup_documents .module_links>div {
    background-color: #f6f6f6;
    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: 10px;
    font-size: 1rem;
    margin-left: 5px;
}


/* 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:before {
    display: inline-block;
    font-size: 55px;
    font-size: 5.5rem;
    padding: 0;
}

.module-latest-quarter .module_link-text {
    display: block;
    margin: 15px 0 0;
    font-size: 16px;
    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: 55px;
    font-size: 5.5rem;
    font-weight: normal;
}

.module-latest-quarter .module-financial_year-text {
    margin-top: 15px;
    font-size: 24px;
    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;
    color: #e80000;
}

.module-form .module_container--captcha>div {
    margin: 0;
    padding: 0;
}

.module-form .module_container--captcha>div .ErrorMessage {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    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: 16px;
    font-weight: 700;
}

.module-form_item legend {
    float: left;
    margin-bottom: 15px;
    font-size: 16px;
    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,
.module-form_error-text span {
    color: #e80000;
}

.module-form_error-text[style="visibility:hidden;"] {
    display: none;
}

.module-form .CaptchaContainer {
    display: block;
}

.module-form .CaptchaContainer input[type="text"] {
    width: 100%;
}

.module-glossary .module_header {
    display: block;
}

.module-glossary .module_header table {
    width: 100%;
    table-layout: fixed;
}

.module-glossary .module_header table a {
    color: #333333;
    font-weight: normal;
}

.module-glossary .module_header table a[href] {
    color: #003087;
}


/*---------- Job Modules ---------*/

.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: "Open Sans", sans-serif;
    font-size: 16px;
    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: 16px;
    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: 14px;
    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: 14px;
    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_title {
    margin-bottom: 10px;
}

.module-slideshow .module_links>*+* {
    margin-top: 15px;
}

.module-slideshow_link {
    font-size: 14px;
    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--main {
    text-align: right;
}

.nav--main li {
    display: inline-block;
}

.nav--main li a {
    display: block;
    padding: 50px 15px 30px;
    color: #333333;
    font-weight: normal;
}

.nav--main li.selected>a,
.nav--main li.expanded>a,
.nav--main li a:hover,
.nav--main li a:focus {
    padding: 50px 15px 28px;
    border-bottom: 2px solid #003087;
    color: #003087;
    outline: none;
}

.nav--sitemap {
    max-width: 1114px;
    margin-left: auto;
    margin-right: auto;
    padding: 0px 15px;
    padding-bottom: 50px;
}

.nav--sitemap a {
    display: inline-block;
}

.nav--sitemap .level1>li:not(:last-of-type) {
    margin-bottom: 0;
}

.nav--sitemap .level1>li>a,
.nav--sitemap .level1>li>a:visited {
    margin-bottom: 10px;
    font-size: 22px;
    font-weight: bold;
    line-height: 26px;
    color: #003087;
    ;
}

.nav--sitemap .level2>li,
.nav--sitemap .level3>li,
.nav--sitemap .level4>li,
.nav--sitemap .level5>li {
    padding: 3px 0;
}

.nav--sitemap .level2>li>a,
.nav--sitemap .level3>li>a,
.nav--sitemap .level4>li>a,
.nav--sitemap .level5>li>a {
    font-size: 16px;
    font-size: 1.6rem;
    text-decoration: underline;
}

.nav--sitemap .level2>li>a {
    margin-bottom: 0;
}

.nav--sitemap .level3>li>a:before {}


/*-------- News Module CSS -------*/

.module_thumb--border-top img {
    border-top: 3px solid #BA8F00;
}

.module-news .module_nav {
    display: none;
}

.module-news .module_links {
    margin-bottom: 0;
    margin-top: 10px;
}

.module-news .module_headline {
    font-weight: 100;
    margin: 0;
    font-size: 16px;
    line-height: 22px;
}

.module-news .module_headline-link {
    border-bottom: 1px solid #979797;
    padding-bottom: 5px;
    margin-bottom: 5px;
    letter-spacing: -0.5px;
    font-size: 20px;
    line-height: 24px;
    display: block;
}

.module-news-latest .module_container--content {
    margin-bottom: 20px;
}

.module-news .module_item {
    padding: 20px 20px 20px 30px;
}

.module-news .module_item-wrap {
    display: flex;
}

.module-news .module_tags {
    display: block;
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
}

.module-news .module_item~.module_item {
    border: 0;
}

.module-news .module_date-time {
    color: #003087;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.37px;
    display: block;
    min-width: 150px;
    position: relative;
    padding-left: 23px;
    line-height: 1;
    margin: 0;
}

.module-news .module_date-time .module_date-text span {
    font-size: 16px;
    display: block;
    font-weight: 400;
    padding-top: 5px;
}

.module-news .module_date-time:before {
    content: "";
    display: inline-block;
    width: 12px;
    margin-right: 10px;
    background: #003087;
    height: 45px;
    position: absolute;
    left: 0;
}

.module-news-latest .module_item {
    border: none;
    text-align: left;
}

.module-news-latest .module_item:nth-child(odd) {
    background: #e8e8e8;
}

@media only screen and (max-width: 480px) {
    .module_date-time--news {
        margin-bottom: 15px;
    }
}

@media only screen and (max-width: 768px) {
    .module-news-latest .module_item:first-child {
        width: 100%;
    }
}

.module-news-latest .module_links {
    margin: 0;
}

.module-news-latest .module_link {
    color: #003087;
}

.module-news-list .module_item {
    padding-left: 0;
    padding-top: 20px;
}

.module-news-list .module_item+.module_item {
    border-top: 1px solid #dddddd;
}

.module-news-details a {
    word-break: break-all;
}
.page-inv-news-details .module-news-details .post-tumbnail img {
    height:100% !important;
}

.module-news-details .q4-icon_file-pdf-line {
    color: #DA291C;
}

.module-news-details .module_view-all-link {
    margin-bottom: 25px;
    margin-left: 15px;
    display: inline-block;
    text-transform:capitalize;
}

.module-news-details .module_view-all-link .button {
    padding-top:14px;
}

.module-news-details table .bwcellparagraphmargin, 
.module-news-details table .bwcellpmargin {
    font-size:16px;
}

.module-news-details .module_view-all-link--bottom {
    margin-top: 25px;
    margin-bottom: 0;
}

.module-news-details .module_view-all-link--top {
    margin-top: 40px;
}

.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;
}


/*------ Person List Module ------*/

.module-person .module-person_description,
.module-person .module-person_res-photo-container,
.module-person .module_comma {
    display: none;
}

.module-person .module_item {
    position: relative;
    padding: 0 70px;
    border: none;
}

.module-person .module_item-wrap {
    cursor: pointer;
    text-align: center;
    margin-bottom: 30px;
    max-width: 225px;
    margin: 0 auto 30px auto;
}

.module-person .module_item:hover .module-person_name-container {
    opacity: 1;
    visibility: visible;
}

.module-person .module-person_photo-container img {
    width: 100%;
}

.module-person .module-person_name-container a {
    color: #fff;
}

.module-person h3 {
    margin: 0;
    padding-top: 20px;
    line-height: 1;
    padding-left: 5px;
    padding-right: 5px;
}

.module-person .module-person_title-text {
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: normal;
}

.module-person .module-person_name {
    display: block;
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: 700;
}

.module-person .module-person_suffix,
.module-person_title {
    font-size: 13px;
    font-size: 1.3rem;
}

.module-person_title {
    display: block;
    padding-top: 20px;
}

.module-person--senior-officers .module_item-wrap {
    border: 1px solid #003087;
    height: 100%;
    padding: 10px 15px 15px 15px;
    margin-bottom: 0;
    max-width: 257px;
    margin: 0 auto;
}

.fancybox-container .module-person--senior-officers .module_item-wrap {
    border: none;
    max-width: 100%;
}

.fancybox-container .module-person--senior-officers .module-person_wrap {
    max-width: 100%;
}

.module-person--senior-officers .module_container--inner {
    display: flex;
    flex-wrap: wrap;
}

.module-person--senior-officers .module_item {
    padding: 0 60px;
    margin-bottom: 35px;
}

.fancybox-container .module-person .module_item {
    max-width: 1030px;
    padding: 40px;
}

.fancybox-container .module-person_photo-container,
.fancybox-container .module-person_name-container {
    display: inline-block;
    vertical-align: middle;
}

.fancybox-container .module-person_name-container {
    position: static;
    background: transparent;
    text-align: left;
    opacity: 1;
    visibility: visible;
    cursor: initial;
}

.fancybox-container .module-person_name-container h3 {
    position: static;
    transform: none;
    font-weight: 400;
    padding-top: 0;
}

.fancybox-container .module-person_name-container a {
    color: #333333;
}

.fancybox-container .module-person_photo-container {
    max-width: 29%;
    display: inline-block;
    vertical-align: top;
    padding-right: 70px;
}

.fancybox-container .module-person_wrap {
    max-width: 70%;
    display: inline-block;
    vertical-align: top;
}

.fancybox-container .module_item-wrap {
    text-align: left;
    cursor: default;
    max-width: 100%;
}

.fancybox-slide--person .fancybox-close-small {
    font-size: 45px;
    color: #003087;
}

.fancybox-slide--person .fancybox-close-small:hover {
    background: none;
    color: #003087;
}

@media only screen and (max-width: 1030px) {
    .fancybox-container .module-person {
        margin: 50px 10px 0 10px;
    }
    .fancybox-container .module-person_photo-container {
        padding-right: 15px;
    }
}

@media only screen and (max-width: 768px) {
    .fancybox-container .module-person_photo-container {
        margin-bottom: 35px;
    }
}

@media only screen and (max-width: 720px) {
    .module-person .module_item {
        width: 100%;
    }
    .fancybox-container .module-person_photo-container,
    .fancybox-container .module-person_wrap {
        max-width: 100%;
    }
}

@media only screen and (max-width: 480px) {
    .fancybox-container .module-person_photo-container {
        margin-right: 0;
        max-width: none;
    }
}

.fancybox-container .module-person_name {
    display: block;
    margin-bottom: 0;
    font-size: 28px;
    font-size: 2.8rem;
    line-height: 1.45;
    color: #003087;
}

.fancybox-container .module-person_title-text {
    color: #000;
    font-size: 16px;
}

@media only screen and (max-width: 480px) {
    .fancybox-container .module-person_name {
        font-size: 24px;
        font-size: 2.4rem;
        line-height: 1.2;
    }
}

.fancybox-container .module-person_title {
    font-size: 24px;
    font-size: 2.4rem;
    color: #003087;
    padding-top: 0;
}

@media only screen and (max-width: 480px) {
    .fancybox-container .module-person_title {
        font-size: 18px;
        font-size: 1.8rem;
        line-height: 1.125;
    }
}

.fancybox-container .module-person_description-container {
    margin-top: 40px;
}

.fancybox-container .module-person_description {
    display: block;
}

.fancybox-container .module-person_description p {
    line-height: 28px;
    color: #000;
}

.module-person-accordion .module-person_name-container {
    padding: 20px 15px;
    margin-bottom: 10px;
    background-color: #003087;
    color: #fff;
    cursor: pointer;
}

.module-person-accordion .module-person_name-container h3 {
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: bold;
    color: inherit;
    margin: 0;
}

.module-person-accordion .module-person_name-container h3:before {
    float: right;
    font-family: "q4-icons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\ed5d";
}

.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: 14px;
    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;
}

.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: 36px;
    font-size: 3.6rem;
    color: #003087;
}

.module-person-details_title {
    display: block;
    font-size: 24px;
    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: #003087;
    font-size: 0;
    text-align: left;
    color: #fff;
    z-index: 100;
}

body.PreviewBody .PreviewToolBar.js--open {
    top: auto;
    bottom: 0;
}

body.PreviewBody .PreviewToolBar .PreviewTrigger {
    position: absolute;
    top: 0;
    left: 10px;
    padding: 20px;
    background: #222;
    transform: translate(0, -100%);
    font-size: 24px;
    font-size: 2.4rem;
    cursor: pointer;
    height: 70px;
    color: #fff;
}

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: 16px;
    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: "Open Sans", sans-serif !important;
    font-weight: 300;
    font-size: 14px;
    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: #003087;
    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;
    }
}

.PreviewToolBar input[type="radio"]:checked+label:after {
    background-color: #fff;
}

/*-------- SEC Module CSS --------*/

.module-sec .module_header {
    display: block;
    font-size: 20px;
    border-bottom: 1px solid #D3D3D3;
    font-weight: 700;
}

.module-sec .module_options-select {
    margin-bottom:10px;
}

.module-sec .module_header-text {
    padding: 12px 15px;
    border-right: 1px solid #D3D3D3;
}

.module-sec .module_header-text:last-child {
    border-right: 0;
}

.module-sec .module_header-text:first-child {
    padding-left: 0;
}

.module-sec .module_item {
    padding: 0;
    border-bottom: 1px solid #D3D3D3;
    display: flex;
}

.module-sec .module_item .grid_col:first-child {
    padding-left: 0;
}

.module-sec .module_item>div {
    border-right: 1px solid #D3D3D3;
}

.module-sec .module_item~.module_item {
    border-top: 0;
}

.module-sec .module_item .grid_col {
    vertical-align: middle;
    padding: 15px 20px;
}

.module-sec .module_item .module-sec_filing {
    font-weight: bold;
}

@media only screen and (max-width: 768px) {
    .module-sec .module_header {
        display: none;
    }
    .module-sec .module_header+.module_item {
        border-top: 2px solid #003087;
    }
    .module-sec .module_item {
        padding: 15px 0;
        display: block;
    }
    .module-sec .module_item>div {
        border-right: 0;
    }
    .module-sec .module_item:first-child {
        border-top: 2px solid #003087;
    }
    .module-sec .module_item:last-child {
        border-bottom: 2px solid #003087;
    }
    .module-sec .module_item .grid_col {
        padding: 0 5px;
    }
    .module-sec .module_item+.module_footer {
        border-bottom: 2px solid #003087;
    }
}

.module-sec_download-list-item {
    display: inline-block;
    margin-bottom:5px;
}

.module-sec_download-list .module_link {
    margin: 0;
    color: #003087;
}

.module-sec_download-list .module_link:before {
    font-size: 24px;
    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 .module_link:before {
    font-size: 24px;
    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: #003087;
    outline: 0;
}

.module-skip_link:visited {
    color: #fff;
}


/*------ Stock Header Module -----*/

.module-stock-header {
    text-align: right;
}

@media only screen and (max-width: 1024px) {
    .module-stock-header {
        text-align: center;
    }
}

.module-stock-header .module_container--outer {
    display: inline-block;
    padding: 40px 55px;
    background: rgba(0, 0, 0, 0.6);
    text-align: center;
}

.module-stock-header_description1 {
    display: block;
    font-weight: bold;
    margin-bottom: 16px;
}

.module-stock-header_stock-price {
    display: block;
    margin-bottom: 8px;
    font-size: 45px;
    font-size: 4.5rem;
    color: #fff;
}

.module-stock-header_stock-price:before {
    content: '$';
}

.module-stock-header_change,
.module-stock-header_percent-change {
    display: inline-block;
    margin-bottom: 24px;
    font-size: 20px;
    font-size: 2rem;
}

.module-stock-header_percent-change:before {
    content: '(';
}

.module-stock-header_percent-change .module-stock-header_indicator {
    display: none;
}

.module-stock-header_percent-change:after {
    content: ')';
}

.module-stock-header_volume {
    display: block;
    margin-bottom: 32px;
}

.module-stock-header_volume:before {
    content: 'Volume ';
    font-weight: bold;
}

.module-stock-header_description3,
.module-stock-header_date {
    display: block;
    font-size: 12px;
    font-size: 1.2rem;
}

.module-stock-header_volume-text {
    display: none;
}


/*------ Stock Quote Module ------*/

.module-stock .module_options {
    margin-bottom: 30px;
}

@media only screen and (max-width: 768px) {
    .module-stock.module-stock-historical .module-stock_empty {
        display: none;
    }
}

@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;
}


/*- MailingList Subscribe Module -*/

.module-subscribe_table {
    display: block;
    width: 100%;
    margin-bottom: 10px;
}

.module-subscribe_table tbody {
    width: 100%;
    display: block;
}

.module-subscribe_form {
    font-size: 0;
}

.module-subscribe_form tr {
    display: inline-block;
    width: 50%;
    margin-bottom: 20px;
    vertical-align: top;
    font-size: 16px;
    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: 14px;
    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: 10px;
}

.module-subscribe_mailing-list tr table tr:last-child td {
    padding-bottom: 0;
}

.module-subscribe .module_required {
    font-size: 14px;
    font-size: 1.4rem;
}

.module-subscribe .CaptchaContainer {
    width: 50%;
}

@media only screen and (max-width: 768px) {
    .module-subscribe .CaptchaContainer {
        width: 100%;
    }
}


/* 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: 14px;
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.module-unsubscribe_table .module_input[type="text"] {
    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;
    width: 100%;
    padding: 0;
}

.layout .layout_inner {
    position: relative;
    overflow-x: hidden;
}


/*==================================
------------ BLANK CSS -----------
==================================*/


/*-------- Layout Specific -------*/

.layout_footer {
    background-color: #003087;
    margin-top: 30px;
}

.layout--home .layout_footer {
    margin-top: 85px;
}

.layout:not(.layout--home) .pane--content span>span:first-child>div.module {
    padding-top: 0;
}

@media only screen and (max-width: 1100px) {
    .layout_footer {
        margin-top: 0;
    }
    .layout--home .layout_footer {
        margin-top: 85px;
    }
}


/*--------- Pane Specific --------*/

.pane--navigation {
    background: #003087;
}

.pane--navigation .pane_inner {
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 15px;
}

.module-navigation-mobile,
.module-links-mobile,
.module-search-mobile {
    display: none;
}

.module-links--overview a {}

@media only screen and (max-width: 720px) {
    .module-navigation-mobile,
    .module-links-mobile,
    .module-search-mobile {
        display: block;
    }
    .module-search-mobile {
        padding: 0 10px;
        margin-bottom: 15px;
    }
    .module-search-mobile .module-search_input[type="text"] {
        padding: 0 10px;
        height: 40px;
        width: 80%;
        box-shadow: none;
    }
    .module-search-mobile .module-links-appended {
        display: none;
    }
    .module-search-mobile .module-search_button {
        right: 20px;
        top:0;
        width: 40px;
        height: 40px;
        background-size: 40%;
    }
    .pane--navigation {
        position: fixed;
        top: 85px;
        bottom: 0;
        left: 0;
        transform: translateX(-100%);
        width: 100%;
        margin: 0;
        overflow: scroll;
        transition: 0.3s all ease;
        z-index: 222;
    }
    .layout--home .pane--navigation {
        position: fixed;
        top: 0px;
        padding-top: 85px;
        z-index: 22;
    }
    .js--mobile .pane--navigation {
        transform: translateX(0);
    }
    .pane--navigation .pane_inner {
        padding: 0;
    }
    .module-navigation-mobile .level2 {
        display: none;
    }
    .module-navigation-mobile .level2>li {
        padding-left: 20px;
        position: relative;
    }
    .module-navigation-mobile .level1>li.has-children:after {
        content: "+";
        font-family: 'q4-icons';
        font-size: 21px;
        position: absolute;
        right: 48px;
        top: 8px;
        transition: 0.35s ease all;
        z-index: 2;
        color: #fff;
        font-weight: 400;
        font-family: 'Roboto';
    }
    .module-navigation-mobile .level3 {
        padding: 0 25px;
    }
    .module-navigation-mobile .bullet-level>li {
        position: relative;
        padding-left: 20px
    }
    .module-navigation-mobile .bullet-level {
        padding-left: 21px;
        list-style: none;
        padding-top: 10px;
    }
    .module-navigation-mobile .bullet-level a {
        font-size: 15px;
        font-weight: 300;
    }
    .module-navigation-mobile .bullet-level>li:before {
        content: "";
        width: 5px;
        height: 5px;
        background: #bd8f00;
        border-radius: 100%;
        position: absolute;
        left: 0;
        top: 13px;
        display: none;
    }
    .module-navigation-mobile .level1>li.has-children.js--expanded:after {
        transform: rotate(135deg);
    }
    .module-navigation-mobile .level1>li>a {
        padding-right: 70px;
        line-height: 17px;
        font-size: 21px;
    }
    .module-navigation-mobile .level1>li {
        border-top: 1px solid #999;
        margin: 5px 0 5px 0;
        position: relative;
    }
    .module-navigation-mobile .level1>li.js--expanded .level2 {
        display: block;
        padding-top: 3px;
    }
    .module-navigation-mobile a {
        color: #fff;
        font-size: 13px;
        font-weight: normal;
        padding: 10px 20px 5px 10px;
        display: block;
    }
    .module-navigation-mobile .level2>li>a {
        font-size: 15px;
        font-weight: 500;
    }
    .module-links-mobile li {
        display: block;
        border-top: 1px solid #999;
        margin: 5px 0 5px 0;
    }
    .module-links-mobile a {
        color: #fff;
        padding: 10px 20px 5px 10px;
        line-height: 17px;
        font-size: 21px;
        display: block;
    }
    .module-links-mobile .module-links_mobile {
        display: block;
    }
    .module-links-mobile .module-links_mobile+span {
        display: none;
    }
}

@media(min-width: 480px) and (max-width: 720px) {
    .module-navigation-mobile .level1>li.has-children:after {
        right: 35px;
    }
}

@media(max-width: 480px) {
    .module-navigation-mobile .level1>li.has-children:after {
        right: 24px;
    }
}

.pane--content .module {
    padding-top: 70px;
    padding-bottom: 70px;
}

.pane--content .module_container--outer {
    max-width: 1135px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 15px;
}

.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: 105px;
    padding-bottom: 105px;
}

.pane--content .module--thick-top {
    padding-top: 105px;
}

.pane--content .module--thick-bottom {
    padding-bottom: 105px;
}

.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;
}

.pane--content .module-sitemap .module_title {
    font-size: 28px;
    line-height: 37px;
    font-weight: 500;
    border-bottom: 1px solid #1d1d1d;
    padding-bottom: 15px;
    margin-bottom: 0;
}

.pane--content .module-sitemap .module_container--outer {
    max-width: 1114px;
}

.pane--footer .pane_inner {
    max-width: 1135px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 15px 0 18px;
    position: relative;
}

.pane--footer .module_title {
    margin-top: 0;
    color: #fff;
    font-size: 14px;
    line-height: 17px;
    font-weight: 700;
    margin-bottom: 20px;
}

.pane--footer2 .pane_inner {
    max-width: 1135px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 15px;
}

.pane--credits {
    padding-bottom: 40px;
    text-align: center;
    color: #f6f6f6;
    font-size: 12px;
    font-weight: 400;
    line-height: 22px;
}

.pane--credits a {
    color: #fff;
}

.pane--credits .pane_inner {
    max-width: 1135px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 15px;
    position: relative;
}


/*--------- Page Specific --------*/

.page--no-alternating .pane--content {
    padding: 35px 0;
}

.page--no-alternating .module {
    padding-top: 35px;
    padding-bottom: 35px;
}

.PageInvestors .module-boxes_left h2 {
    font-size: 28px;
}


/*-------- Module Specific -------*/

.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-back-to-top button:after {
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    width: 8px;
    height: 8px;
    transform: rotate(-135deg);
    content: '';
    display: block;
}

.module-back-to-top {
    display: none;
}

.module-back-to-top button {
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: #003087;
    color: white;
    cursor: pointer;
    padding: 12px 10px 8px 10px;
    opacity: 0.8;
    cursor: pointer;
}

.module-back-to-top.js--show {
    display: block;
}

.module-ceo-message small {
    font-size: 11px;
}

.module-life-cycle-slider b {
    font-weight: 600 !important;
}

.module-entry-content {
    font-weight: 100;
}

.module-entry-content:last-child {
    padding-bottom: 45px;
}

.module-entry-content .module_title {
    margin-bottom: 50px;
}

.module-entry-content h3 {
    font-size: 29px;
    margin: 10px 0 30px;
    padding-top: 10px;
}

.module-entry-content .module_title {
    line-height: 40px;
    font-weight: 600;
}

.module-entry-content .list {
    margin: 30px 0 30px 30px;
    padding-left: 0;
    color: #1d1d1d;
}

.module-entry-content .list li {
    padding: 12px 0;
    font-weight: inherit;
}

.module-charts--ethics .table.table--bg .table_title th {
    color: white;
    width: 100%;
    font-size: 18px;
    line-height: 50px;
    font-weight: bold;
    vertical-align: middle;
    font-size: 18px;
}

.module-analyst-coverage small {
    font-weight: 400;
    font-size: 13.33px;
    line-height: 24px;
    color: #003087;
}


/*==============================Header Section========================================*/

.Sectioninvestors .layout:not(.layout--home) .layout_header,
.page-headerblue .layout_header,
.page-no-banner .layout_header,
.page-inv-news-details .layout:not(.layout--home) .layout_header,
.PagePageNotFound .layout_header,
.Sectionevents-and-presentations .layout:not(.layout--home) .layout_header {
    padding-top: 140px;
}

.pane--header:before {
    content: "";
    background-color: #003087;
    width: 100%;
    min-height: 140px;
    position: absolute;
    top: 0;
    z-index: 4;
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#e6000000', endColorstr='#00000000', Gra dientType=0);
}

.Sectioninvestors .layout:not(.layout--home) .pane--header:before,
.Sectionevents-and-presentations .layout:not(.layout--home) .pane--header:before,
.page-inv-news-details .layout:not(.layout--home) .pane--header:before,
.page-headerblue .pane--header:before,
.page-no-banner .pane--header:before,
.PagePageNotFound .pane--header:before {
    content: "";
    background-color: #003087;
    width: 100%;
    min-height: 140px;
    position: absolute;
    top: 0;
    z-index: 1;
}

.page-headerblue .pane--header:before,
.PagePageNotFound .pane--header:before {
    min-height: 160px;
}

.pane--header .pane_inner {
    background-color: transparent;
    position: absolute;
    color: #fff;
    z-index: 111;
    top: 0;
    left: 50%;
    margin-left: -570px;
    /*transform: translateX(-50%);*/
    font-size: 0;
    transition: 0.5s ease all;
    max-width: 1140px;
    padding: 16px 20px 0;
    width: 100%;
}

.pane--header .module-logo {
    max-width: 200px;
    float: left;
    padding-top: 9px;
    padding-left: 10px;
}

@media (max-width: 1023px) {
    .pane--header .module-logo img {
        width: 190px;
        max-width: 100%;
    }
}

.js--header-fixed .pane--header .module-logo {
    padding-top: 0;
    padding-left: 0;
}

.layout.js--header-fixed .pane--header {
    position: fixed;
    width: 100%;
    background-color: #003087;
    margin: 0 auto;
    z-index: 4;
    top: 0;
    min-height: 86px;
}

.layout.js--header-fixed .pane--header:before,
.Sectioninvestors .layout.js--header-fixed .pane--header:before,
.Sectionevents-and-presentations .layout.js--header-fixed .pane--header:before,
.page-inv-news-details .layout.js--header-fixed .pane--header:before,
.page-headerblue .layout.js--header-fixed .pane--header:before,
.page-no-banner .layout.js--header-fixed .pane--header:before,
.PagePageNotFound .layout.js--header-fixed .pane--header:before {
    content: none;
}

.layout.js--header-fixed .pane--header .pane_inner {
    position: relative;
    margin: 0 auto;
    left: 0;
    transform: none;
    padding-top: 10px;
}

.layout.js--header-fixed .pane--header .module-logo img {
    max-width: 115px;
}

.pane--header .module,
.pane--header .nav {
    vertical-align: baseline;
}

.module-toggle_button span {
    display: block;
    width: 33px;
    height: 4px;
    margin-bottom: 5px;
    position: relative;
    background: #cdcdcd;
    border-radius: 3px;
    z-index: 1;
    transform-origin: 4px 0px;
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
}

.js--mobile .module-toggle_button span {
    opacity: 1;
    transform: rotate(45deg) translate(-4px, -13px);
}


/* .module-toggle_button .module-toggle_button-top-line {
} */

.js--mobile .pane--header .module-toggle_button .module-toggle_button-top-line {
    transform: rotate(45deg) translate(15px, 15px);
    /*     width: 5px;
    height: 4px; */
    opacity: 0;
}


/* .js--mobile .module-toggle_button .module-toggle_button-bottom-line {
    opacity: 1;
    transform: rotate(45deg) translate(-4px, -13px);
} */

.pane--header .module-toggle--mobile {
    display: none;
}

.module-toggle_button {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none;
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
    width: 30px;
    height: 30px;
    position: relative;
}

.js--mobile .pane--header .module-toggle_button-top-line {
    opacity: 1;
    transform: rotate(45deg) translate(6px, -2px);
}

.js--mobile .pane--header .module-toggle_button-middle-line {
    transform: rotate(-45deg) translate(-9px, 13px);
}

.module-links-appended {
    display: inline-block;
    margin-right: 14px;
    font-size: 0;
    vertical-align: middle;
}

.module-links-appended li {
    display: inline-block;
    vertical-align: top;
    padding-right: 35px;
    font-family: "Open Sans", sans-serif;
}

.module-links-appended li:last-child {
    padding-right: 0;
}

.module-links-appended a {
    color: #fff;
    font-size: 17px;
    line-height: 15px;
    letter-spacing: -0.4px;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.50);
    text-transform: uppercase;
    font-weight: 600;
}

.module-links-appended .module-links_mobile {
    display: none;
}

@media only screen and (max-width: 1150px) {
    .pane--header .pane_inner {
        margin-left: 0;
        transform: translateX(-50%);
    }
}


/*-------- Search Modules --------*/

.module-search {
    position: relative;
}

.module-search--desktop {
    text-align: right;
    width: calc(100% - 200px);
    float: right;
    margin-top: 12px;
}

.module-search--desktop .module-search_container {
    max-width: 216px;
    text-align: right;
    display: inline-block;
    position: relative;
    padding-right: 31px;
    vertical-align: middle;
    width: 100%;
}

.module-search_input[type="text"] {
    display: inline-block;
    background: #fff;
    border-radius: 2px;
    font-size: 12px;
    background-color: #FFFFFF;
    width: 100%;
    border: 0;
    padding: 5px;
    height: 29px;
    box-shadow: inset 0px 3px 7px -4px #000;
    font-size: 14px;
    color: #003087;
    font-weight: 400;
}

.module-search_input[type="text"]:focus {
    outline: -webkit-focus-ring-color auto 1px;
}

.module-search_input::-webkit-input-placeholder {
    color: white;
}

.module-search_input::-moz-placeholder {
    color: white;
}

.module-search_input::-ms-input-placeholder {
    color: white;
}

.module-search_button {
    border: 0;
    background: transparent url("../design/svg/search-icon-white.svg");
    background-size: 51%;
    font-size: 0;
    cursor: pointer;
    display: inline-block;
    border: 0px solid #979797;
    border-radius: 2px;
    /* background-color: #FCAF17; */
    background-color: #E6B012;
    background-repeat: no-repeat;
    padding: 5px;
    vertical-align: top;
    width: 30px;
    height: 30px;
    background-position: center;
    position: absolute;
    right: 0;
    transition: background-color 0.3s ease-in-out;
}

.layout.js--header-fixed .module-search_button {
    background-color: #00b74e;
    right: -5px;
}

.layout.js--header-fixed .module-search_button:hover {
    background-color: #00b74e;
}

.module-search-result_link {
    margin-bottom: 15px;
}

.module-search-result_description {
    display: block;
    margin-bottom: 15px;
}

.module-search-result_description:after {
    content: "...";
}

.module-search-result_url {
    display: none;
}

.module-corporate-nav {
    float: right;
    font-size: 0;
    width: calc(100% - 200px);
    text-align: right;
    display: inline-block;
    padding-top: 12px;
    padding-right: 16px;
}

.module-corporate-nav nav {
    display: inline-block;
}

.module-corporate-nav li {
    display: inline-block;
    vertical-align: top;
    position: relative;
}

.module-corporate-nav .level1>li>a {
    display: inline-block;
    padding: 22px 20px 2px;
    font-size: 16px;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.50);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: "Open Sans", sans-serif;
}

.module-corporate-nav .level1>li:after {
    content: "|";
    text-shadow: none;
    color: #d8d8d8;
    opacity: 0.5;
    font-weight: 100;
    display: inline-block;
    width: 1px;
    overflow: hidden;
    background: #d8d8d8;
    font-size: 16px;
}

.module-corporate-nav .level1>li:last-child:after {
    display: none;
}

.module-corporate-nav .level2 {
    display: none;
    text-align: left;
    padding-top: 10px;
    white-space: nowrap;
    position: absolute;
    z-index: 200;
    top: 100%;
    left: 0;
    min-width: 245px;
    // background-color: rgba(0, 48, 135, 0.85);
    background-color: #003087;
    opacity: 0.85;
    padding: 20px 0;
}

.module-corporate-nav .level1>li.has-children:hover {
    border-top: 2px solid #BA8F00;
     // background-color: rgba(0, 48, 135, 0.85);
    background-color: #003087;
    opacity: 0.85;
}

.module-corporate-nav .level1>li.has-children:hover>a {
    padding-top: 20px;
}

.module-corporate-nav li:last-child .level2 {
    right: 0;
    left: auto;
}

.module-corporate-nav .level2 li {
    display: block;
    padding: 0 25px;
    margin-bottom: 5px;
}

.module-corporate-nav .level2 li a {
    font-size: 17px;
    line-height: 25px;
    font-weight: 500;
}

.module-corporate-nav .level3 {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.module-corporate-nav .level3 li {
    display: list-item;
    list-style: inside;
    color: #ba8f00;
    font-size: 16px;
    padding: 0
}

.module-corporate-nav .level3 li a {
    font-weight: 100;
}

.module-corporate-nav .bullet-level {
    padding-left: 30px;
}

.module-corporate-nav .bullet-level>li {
    position: relative;
}

.module-corporate-nav .level2 .bullet-level a {
    font-weight: 100;
}

.module-corporate-nav .bullet-level>li:before {
    content: "";
    width: 5px;
    height: 5px;
    background: #bd8f00;
    border-radius: 100%;
    position: absolute;
    left: 0;
    top: 6px;
}

.layout.js--header-fixed .module-corporate-nav .level2 li {
    margin-bottom: 0;
}

.layout.js--header-fixed .module-corporate-nav .level2 li a {
    font-weight: normal;
}

.module-corporate-nav a {
    color: #fff;
    line-height: 19px;
}

.module-corporate-nav li.sfHover>.level2 {
    display: block;
}

.module_reveal-button span {
    height: 3px;
    width: 3px;
    display: block;
    margin-bottom: 3px;
    background: #fff;
}

@media(max-width: 1100px) {
    .module-links-appended {
        margin-right: 4px;
    }
    .module-links-appended li {
        padding-right: 11px;
    }
    .module-links-appended a {
        font-size: 11px;
    }
    .pane--header .pane_inner {
        padding: 16px 15px 0;
    }
    .module-corporate-nav .level1>li>a {
        padding: 22px 6px 2px;
        font-size: 15px;
    }
    .module-corporate-nav {
        padding-right: 0;
    }
    .pane--header .module-logo {
        padding-left: 0;
    }
}

@media only screen and (max-width: 1024px) {
    .module-corporate-nav .level1>li.has-children:nth-child(3) .level2 {
        right: 0;
        left: auto;
    }
}

@media(max-width: 740px) {
    .module-corporate-nav .level1>li>a {
        padding: 22px 4px 2px;
    }
}

.module_reveal-button {
    display: none;
    padding: 10px 14px;
    vertical-align: top;
    background-color: #003087;
    cursor: pointer;
    position: absolute;
    right: -2px;
    top: 50%;
    transform: translateY(-50%);
    margin-top: 4px;
}

.layout.js--header-fixed .module_reveal-button {
    display: inline-block;
}

.layout.js--header-fixed .module-corporate-nav {
    padding-top: 10px;
    padding-right: 0;
    margin-right: 35px;
}

.layout.js--header-fixed .module-corporate-nav .nav--corporate {
    margin-right: 35px;
}

.layout.js--header-fixed .module-corporate-nav .level1>li>a {
    padding: 12px 24px 2px;
    font-size: 15px;
}

.layout.js--header-fixed .module-corporate-nav .level1>li.has-children:hover {
    border-top: 1px solid transparent;
}

.layout.js--header-fixed .module-corporate-nav .level1>li.has-children:hover>a {
    padding-top: 11px;
}

.layout.js--header-fixed .module-search--desktop {
    right: -120%;
    position: absolute;
    transition: right 0.25s ease;
    float: none;
    top: 100%;
    width: auto;
    background: #003087;
    padding: 0 10px 10px;
    text-align: left;
    max-width: 240px;
    font-size: 0;
}

.layout.js--header-fixed .module-search--desktop .module-search_input[type="text"] {
    max-width: 130px;
}

.layout.js--header-fixed .module-search--desktop .module_container--inner {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.layout.js--header-fixed .module-search--desktop .module-search_container {
    order: 1;
    text-align: left;
}

.layout.js--header-fixed .module-links-appended {
    order: 2
}

.layout.js--header-fixed .js--revealed.module-search--desktop {
    right: calc(50% - 1144px / 2);
}

.layout.js--header-fixed .module-links-appended {
    margin-right: 0;
    display: block;
    margin-top: 20px;
    padding-left: 12px;
}

.layout.js--header-fixed .module-links-appended li {
    padding-right: 0;
    display: block;
    margin-bottom: 5px;
}

@media only screen and (max-width: 1140px) {
    .layout.js--header-fixed .js--revealed.module-search--desktop {
        right: 20px;
    }
}

@media only screen and (max-width: 900px) {
    .layout.js--header-fixed .module-corporate-nav .level1>li>a {
        padding: 12px 9px 2px;
    }
}

@media only screen and (max-width: 720px) {
    .pane--header {
        position: absolute;
        right: 0;
        top: 0;
        left: 0;
        z-index: 111;
    }
    .js--mobile .pane--header {
        position: fixed;
    }
    .layout--home .pane--header .pane_inner {
        padding-top: 10px;
        padding-bottom: 13px;
        transition: none;
        background-color: #003087;
        width: 100%;
        height: 140px;
        position: absolute;
        z-index: 10;
        background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
        background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
        filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#e6000000', endColorstr='#00000000', Gra dientType=0);
    }
    .layout.js--mobile .pane--header .pane_inner {
        background: #003087;
        height: 85px;
    }
    .pane--header:before {
        min-height: 80px;
    }
    .pane--header .module-logo img {
        max-width: 130px;
    }
    .module-corporate-nav {
        display: none;
    }
    .js--mobile .pane--header {
        background: #003087;
    }
    .pane--header .pane_inner {
        position: relative;
        padding-top: 20px;
        padding-bottom: 20px;
        transform: none;
        left: 0;
        right: 0;
    }
    .pane--header .module-toggle--mobile {
        display: inline-block;
        position: absolute;
        right: 12px;
        top: 23px;
    }
    .pane--header .module {
        vertical-align: middle;
    }
    .pane--header .module-logo {
        display: inline-block;
        position: relative;
        z-index: 2;
        padding-top: 0;
        top: -10px;
        padding-left: 0;
    }
    .layout--home .pane--header .module-logo {
        top: 0;
    }
    .pane--header .nav,
    .pane--header .module-search {
        display: none;
    }
}


/*===========================End Header Section========================================*/


/*============================== Banner Section========================================*/

.pane--banner {
    position: relative;
    z-index: 3;
}

.pane--banner .pane_inner {
    width: 100%;
}

.slick-dots button {
    font-size: 0;
    margin: 0;
    padding: 0;
    border-radius: 100%;
    background-color: #D8D8D8;
    width: 17px;
    height: 17px;
    opacity: 0.5;
    cursor: pointer;
    display: block;
    border: 1px solid #DDDDDD;
}

.slick-dots {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.slick-dots li {
    display: inline-block;
    vertical-align: middle;
}

.slick-dots li.slick-active button {
    opacity: 1;
    border: 1px solid #BA8F00;
    background-color: #BA8F00;
}

.slick-dots li:not(:last-child) {
    margin-right: 11px;
}

.module-slider-banner_arrow .slick-arrow {
    position: static;
    top: auto;
    transform: none;
}

.module-slider-banner_arrow .slick-prev:before {
    content: '\e923';
    font-size: 30px;
    color: #BA8F00;
    margin-right: 10px;
}

.module-slider-banner_arrow .slick-next:before {
    content: '\e924';
    font-size: 30px;
    color: #BA8F00;
}

.module-slider-banner .module-slider-banner_buttons {
    text-align: right;
    position: absolute;
    right: 0;
    bottom: 0;
}

.module-slider-banner_dots {
    display: inline-block;
    vertical-align: middle;
    margin-right: 15px;
}

.module-slider-banner_arrow {
    display: inline-block;
    vertical-align: middle;
}

.module-slider-banner .module_container--outer {
    position: relative;
    max-width: 1135px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 15px;
}

.module-slider-banner .module_container--inner {
    max-width: 800px;
    position: relative;
}

.module-slider-banner .slick-slider {
    padding: 0;
}

.module-slider-banner_title h1 {
    margin: 0;
    background-color: rgba(9, 24, 88, 0.85);
    padding: 8px 22px;
    display: inline-block;
    margin: 0;
}

.module-slider-banner_description {
    margin-top: 10px;
}

.module-slider-banner_description-text {
    margin-bottom: 40px;
}

.module-slider-banner_description p {
    margin: 10px 0;
}

.module-slider-banner .module_item {
    padding: 0;
}

.module-slider-banner_description p:first-child {
    margin-top: 0;
    margin-bottom: 10px;
}

.module-slider-banner_description-text {
    display: inline-block;
    background-color: rgba(9, 24, 88, 0.85);
    padding: 15px 20px 5px;
}

.layout--home .module-stock-banner,
.page-investors .module-stock-banner {
    /*display: none;*/
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 4;
}

.module-stock-banner .module_container--outer {
    position: absolute;
    bottom: 0;
    z-index: 111;
    background-color: #003087;
    width: 100%;
    padding: 16px 0;
    z-index: 3;
    min-height: 50px;
}

.layout--home .module-stock-banner .module_container--outer,
.page-investors .module-stock-banner .module_container--outer {
    position: absolute;
}

.layout--home.js--sticky .module-stock-banner .module_container--outer,
.js--header-fixed.js--sticky .module-stock-banner .module_container--outer,
.page-investors .layout.js--sticky .module-stock-banner .module_container--outer,
.page-investors .js--header-fixed.js--sticky .module-stock-banner .module_container--outer {
    top: 0 !important;
}

.module-stock-banner_container {
    display: flex;
    justify-content: space-around;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 15px;
    text-align: center;
    color: #fff;
    font-size: 18px;
}

.module-stock-banner_nyse {
    display: inline-block;
    margin: 0 17px;
}

.module-stock-banner_gold {
    display: inline-block;
    margin: 0 17px;
}

.module-stock-banner_tse {
    display: inline-block;
    margin: 0 17px;
}

.module-stock-banner_description {
    font-weight: 500;
}

.module-stock-banner_description-exchange {
    font-weight: 100;
}

.module-stock-banner_per-change {
    padding-right: 20px;
    position: relative;
}

.module-stock-banner_stock-price {
    font-weight: 500;
    margin: 0 5px;
}

.module-stock-banner_up {
    color: #00B74F;
}

.module-stock-banner_up:after,
.module-stock-banner_down:after {
    content: "";
    display: inline-block;
    width: 22px;
    height: 12px;
    margin-left: 10px;
}

.module-stock-banner_up:after {
    background: url("../design/up.png") no-repeat;
}

.module-stock-banner_down:after {
    background: url("../design/down.png") no-repeat;
}

.module-stock-banner_down {
    color: #DA291C;
}

@media only screen and (max-width: 1024px) {
    .module-stock-banner {
        width: 100%;
    }
    .layout:not(.layout--home) .module-stock-banner .module_container--outer {
        position: static;
        top: auto !important;
    }
    .module-stock-banner .module_container--outer {
        position: static;
    }
}

@media only screen and (max-width: 1023px) {
    .module-stock-banner .module_container--outer {
        padding-left: 0;
        padding-right: 0;
    }
    .module-stock-banner_nyse,
    .module-stock-banner_gold,
    .module-stock-banner_tse {
        margin: 0 5px;
    }
    .module-stock-banner_container {
        padding: 0;
    }
    .module-stock-banner_up:after,
    .module-stock-banner_down:after {
        margin-left: 5px;
    }
    .module-stock-banner_per-change {
        padding-right: 5px;
    }
}

@media only screen and (max-width: 767px) {
    .module-stock-banner_per-change {
        display: block;
        text-align: center;
        margin-top: 5px;
    }
    .module-stock-banner_down:after {
        position: static;
    }
}

@media only screen and (max-width: 580px) {
    .module-stock-banner_container {
        font-size: 14px;
    }
}

@media only screen and (max-width: 480px) {
    .module-stock-banner_nyse,
    .module-stock-banner_gold,
    .module-stock-banner_tse {
        display: block;
    }
    .module-stock-banner_per-change {
        display: inline-block;
    }
}


/*===========================End Banner Section========================================*/


/*============================== pane-left Section========================================*/

.pane--left .pane_inner {
    max-width: 1135px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 15px;
}

.module-links--back-to-home {
    padding: 35px 0;
}

.module-links--back-to-home a {
    font-size: 14px;
    font-weight: 500;
    line-height: 17px;
    color: #000A12;
}

.module-links--back-to-home i {
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
}

.module-links--back-to-home i:before {
    font-weight: 700;
}


/*===========================End pane-left Section========================================*/


/*===========================Pane-right Section========================================*/

.pane--right .pane_inner {
    max-width: 1135px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 15px;
}

.pane--right .module-email-alerts-popup {
    padding-bottom: 100px;
}

.pane--right .module-email-alerts-popup--home {
    padding-bottom: 60px;
}

.pane--right .module-email-alerts-popup p {
    color: #fff;
    font-size: 15px;
    padding-right: 10px;
}

.pane--right .module-email-alerts-popup .module_container--outer {
    background-color: #003087;
    color: #fff;
    border-radius: 2px;
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.2);
    padding: 25px;
}

.module-email-alerts-popup_text {
    width: 60%;
}

.module-email-alerts-popup--home .module-email-alerts-popup_text {
    width: auto;
}

.module-email-alerts-popup_container {
    align-items: center;
}

.module-email-alerts-popup--home .module-email-alerts-popup_container {
    justify-content: space-around;
    flex-wrap: inherit;
}

.module-email-alerts-popup h3 {
    font-weight: 700;
    font-size: 22px;
    margin-top: 0;
    margin-bottom: 10px;
    color: #fff;
    line-height: 1;
}

.module-email-alerts-popup_intro {
    font-size: 12px;
    color: #FFFFFF;
}

.module-email-alerts-popup_intro p {
    line-height: 18px;
    margin-top: 10px;
}

.module-email-alerts-popup_input {
    width: 40%;
    position: relative;
    padding-right: 40px;
}

.module-email-alerts-popup--home .module-email-alerts-popup_input {
    width: auto;
    padding-right: 0;
    display: inline-block;
    justify-self: right;
    text-align: center;
}

.module-email-alerts-popup_input-button {
    border: 0;
    /* background-color: #FCAF17; */
    background-color: #E6B012;
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 2px;
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
}

.module-email-alerts-popup--home .module-email-alerts-popup_input-button {
    padding: 10px 15px;
    line-height: 16px;
    text-decoration: none;
    font-size: 17px;
    min-width: 130px;
    width: 130px;
    height: 36px;
    position: static;
}

.module-email-alerts-popup_input .module_input {
    font-size: 12px;
    font-weight: 400;
    padding: 8px 20px;
    height: 30px;
}

.module-email-alerts-popup_input .module_input::-webkit-input-placeholder,
.module-item_email-alerts_input .module_input::-webkit-input-placeholder,
.module-subscribe .module_input::-webkit-input-placeholder,
.module-unsubscribe .module_input::-webkit-input-placeholder {
    font-style: italic;
}

.module-email-alerts-popup_input .module_input::-moz-placeholder,
.module-item_email-alerts_input .module_input::-moz-placeholder,
.module-subscribe .module_input::-moz-placeholder,
.module-unsubscribe .module_input::-moz-placeholder {
    font-style: italic;
}

.module-email-alerts-popup_input .module_input:-ms-input-placeholder,
.module-item_email-alerts_input .module_input:-ms-input-placeholder,
.module-subscribe .module_input:-ms-input-placeholder,
.module-unsubscribe .module_input:-ms-input-placeholder {
    font-style: italic;
}

.fancybox-slide--email-alerts .fancybox-close-small {
    top: 30px;
    right: 35px;
    font-size: 0;
}

.fancybox-slide--email-alerts .fancybox-close-small:before {
    content: "\ed6d";
    font-family: 'q4-icons';
    font-size: 34px;
    color: #003087;
    font-weight: 700;
}

.fancybox-slide--email-alerts .fancybox-close-small:hover {
    background: transparent;
    color: #003087;
}

.section-email-alerts .layout--iframe .pane--content .pane_inner {
    padding: 50px 60px;
}

.section-email-alerts .layout--iframe .pane--content .module_container--outer {
    padding: 0;
}

.fancybox-slide--email-alerts .fancybox-content {
    width: 80% !important;
    max-width: 1100px;
}

@media only screen and (max-width: 767px) {
    .module-email-alerts-popup_text {
        width: 100%;
    }
    .section-email-alerts .layout--iframe .pane--content .pane_inner {
        padding: 50px 20px;
    }
    .module-email-alerts-popup_input {
        width: 100%;
    }
    .fancybox-slide--email-alerts .fancybox-close-small {
        right: 20px;
        top: 25px
    }
    .fancybox-slide--email-alerts .fancybox-close-small:before {
        font-size: 26px;
    }
}


/*===========================End Pane-right Section========================================*/


/*============================== Footer Section========================================*/

.module-item_logo {
    vertical-align: middle;
    width: 50%;
    text-align: left;
}

.module-item_social {
    text-align: right;
    width: 50%;
    vertical-align: middle;
    padding-top: 39px;
}

.module-item_social ul {
    font-size: 0;
}

.module-item_social a {
    color: #fff;
    font-size: 20px;
    display: inline-block;
}

.module-item_social li {
    display: inline-block;
    vertical-align: top;
    margin-left: 10px
}

.module-item_social img {
    width: 18px;
    height: 18px;
}

.module-item_footer-links {
    font-size: 0;
    width: 66.66%;
    padding-right: 80px;
    padding-bottom: 15px;
    /*padding-left: 40px;*/
    margin: 12px 0;
}

.module-item_footer-links-container li {
    padding-right: 15px;
}

.module-item_footer-links a {
    font-size: 15px;
    font-weight: 100;
    line-height: 20px;
}

.module-item_footer-links li {
    margin-bottom: 13px;
}

.module-item_footer-links-container ul {
    column-count: 4;
}

.module-item_footer-links-container.grid--no-gutter .grid_col {
    padding-right: 20px;
}

.module-item_email-alerts {
    width: 33.33%;
}

.module-item_row--top {
    padding: 30px 0 15px 0;
}

.module-item_row--bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(151, 151, 151, 0.25);
}

.module-item_email-alerts h3 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 600;
    padding: 0px 0 10px 0;
    color: #fff;
    margin: 0;
    line-height: 18px;
    letter-spacing: 0;
}

.module-item_email-alerts-intro {
    font-weight: 100;
    margin-bottom: 20px;
    display: block;
    color: white;
    font-size: 16px;
}

.module-item_email-alerts-intro p {
    line-height: 20px;
    color: #fff;
}

.module-item_email-alerts_input {
    position: relative;
    padding-right: 40px;
}

.module-item_email-alerts_input-button {
    border: 0;
    /* background-color: #FCAF17; */
    background-color: #E6B012;
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 2px;
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
}

.module-item_email-alerts_input .module_input {
    font-size: 12px;
    font-weight: 400;
    padding: 8px 20px;
    height: 30px;
}

@media only screen and (max-width: 1023px) {
    .module-item_footer-links {
        width: 66%;
    }
    .module-item_footer-links-container li {
        padding-right: 13px;
    }
}

@media only screen and (max-width: 768px) {
    .module-item_email-alerts {
        width: 100%;
        order: 1;
        padding-bottom: 30px;
    }
    .module-item_footer-links {
        width: 100%;
        order: 2;
        padding-top: 30px;
        border-top: 1px solid rgba(151, 151, 151, 0.25);
    }
}

@media only screen and (max-width: 767px) {
    /*.module-item_footer-links-container ul {
        column-count: 4;
    }*/
    .module-item_footer-links {
        padding-right: 0;
        padding-top: 20px;
    }
}

@media only screen and (max-width: 720px) {
    .module-item_footer-links-container ul {
        column-count: 3;
    }
}

@media only screen and (max-width: 480px) {
    .module-item_footer-links-container ul {
        column-count: 2;
    }
    .module-item_footer-links {
        padding-right: 0;
        padding-top: 20px;
    }
}

/*CR Footer https://app.asana.com/0/1198304929135125/1199893144446131/f*/
.module-item_link {
    width: 66.66%;
    padding-right: 80px;
}
.module-item_link p {
    font-size: 22px;
    color: #1191cf;
    font-weight: 600;
}.module-item_link a {
    text-decoration: none;
}
.module-item_logo-wrap {
    width: 33.33%;
    display: flex;
}
.module-item_social li .q4-icon_rss-square:before {
    font-size: 18px !important;
    top: 0 !important;
}
@media (max-width: 1024px) {
    .module-item_logo-wrap {
        flex-wrap: wrap;
    }.module-item_logo {
        width: 100%;
    }
    .module-item_social {
        width: 100%;
        text-align: left;
        padding-top: 20px;
    } .module-item_social li:first-child {
        margin-left: 0;
    }
}
@media (max-width: 767px) {
    .module-item_link {
        width: 100%;
        padding-right: 0;
    }.module-item_logo-wrap {
        width: 100%;
    }
}
/*End CR Footer https://app.asana.com/0/1198304929135125/1199893144446131/f*/
/*===========================End Footer Section========================================*/

.module-stock-content {
    color: #003087;
    font-size: 18px;
    font-weight: 300;
}

.module-stock-content_description {
    font-size: 28px;
    margin-bottom: 5px;
}

.module-stock-content_description-exchange {
    font-weight: 700;
}

.module-stock-content_nyse .module-stock-content_description-symbol:after {
    content: ")";
}

.module-stock-content_nyse .module-stock-content_description-symbol:before {
    content: "(";
}

.module-stock-content_up {
    color: #38B449;
}

.module-stock-content_up:before {
    content: '+';
}

.module-stock-content_down {
    color: #DA291C
}

.module-stock-content_stock-price {
    font-size: 38px;
    font-weight: 700;
    padding-left: 13px;
    position: relative;
}

.module-stock-content_stock-price:before {
    content: '$';
    vertical-align: top;
    font-size: 22px;
    margin-top: 5px;
    display: inline-block;
    position: absolute;
    left: 0;
}

.module-stock-content_date {
    margin-top: 5px;
    margin-bottom: 5px;
}

.module-stock-content_per-change {
    font-size: 22px;
    font-weight: 700;
    margin-left: 5px;
}

.module-stock-content_nyse {
    padding: 20px 25px;
}

.module-stock-content_tse {
    padding: 20px 25px;
    border-top: 1px solid #979797;
}

.module-stock-content_gold {
    padding: 20px 25px;
    border-top: 1px solid #979797;
}


/*===========================Landing Page========================================*/

.pane--content .module-box-left {
    padding: 25px 25px 30px;
    border-top: 1px solid #979797;
}

.module-boxes_left {
    width: calc(33.33% - 35px);
}

.module-boxes_right {
    width: calc(66.66% - 35px);
}

.module-download-link .module_item {
    padding: 0;
    border: 0;
    width: calc(50% - 15px);
    margin: 20px 0;
}

.module-download_thumb {
    position: relative;
    height: 100%;
}
.module-download_thumb--button {
    padding: 30px;
}
.module-download_thumb-desktop {
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center !important;
    min-height: 268px;
    width: 100%;
    height: 100%;
}

.module-download_thumb-mobile {
    display: none;
}

.module-download_thumb-link {
    padding: 30px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.module-download_thumb-link-text {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
}

.module-download_thumb--button .module-download_thumb-desktop,
.module-download_thumb--button .module-download_thumb-mobile {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;z-index: 1;
}
.module-download_button-wrap,
.module-download_title {
    position: relative;
    z-index: 2;
}.module-download_title {
    color: #1191cf;
    font-size: 25px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
}
.module_container--download .module_item-inner {
    height: 100%;
}
@media only screen and (max-width: 1023px) {
    .module-boxes_left {
        width: 100%;
        order: 2;
    }
    .module-boxes_right {
        width: 100%;
        order: 1;
    }
    .module-boxes_left {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        padding-top: 30px;
    }
    .module-stock-content {
        width: 100%;
    }
    .module-stock-content_container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .module-stock-content_nyse {
        width: calc(50% - 10px);
        display: inline-block;
        vertical-align: top;
    }
    .module-stock-content_gold {
        width: calc(50% - 10px);
        display: inline-block;
        vertical-align: top;
    }
    .module-stock-content_tse {
        width: calc(50% - 10px);
        display: inline-block;
        border-top: none;
        vertical-align: top;
        border-bottom: 1px solid #979797;
    }
    .module-event--upcoming {
        width: calc(50% - 10px);
        display: inline-block;
        vertical-align: top;
    }
    .module-recent-reports {
        width: calc(50% - 10px);
        display: inline-block;
        vertical-align: top;
        border-bottom: 1px solid #979797;
    }
    .module-sec-landing {
        width: calc(50% - 10px);
    }
}

@media only screen and (max-width: 768px) {
    .module-download-link .grid-flex {
        justify-content: center;
    }
    .module-download-link .module_item {
        width: 100%;
    }
    .module-download_thumb-desktop {
        display: none;
    }
    .module-download_thumb {
        max-width: 615px;
        margin: 0 auto;
    }
    .module-download_thumb-mobile {
        display: block;
        background-repeat: no-repeat !important;
        background-size: cover !important;
        background-position: center !important;
        min-height: 203px;
        width: 100%;
    }
}

@media only screen and (max-width: 640px) {
    .module-stock-content_stock-price {
        font-size: 32px;
    }
    .module-stock-content_per-change {
        font-size: 18px;
    }
}

@media only screen and (max-width: 480px) {
    .module-stock-content_nyse {
        width: 100%;
    }
    .module-stock-content_tse {
        border-bottom: none;
        border-top: 1px solid #979797;
        width: 100%;
    }
    .module-stock-content_gold {
        width: 100%;
    }
    .module-event--upcoming {
        width: 100%;
        display: block;
    }
    .module-recent-reports {
        display: block;
        width: 100%;
        border-bottom: none;
    }
    .module-sec-landing {
        width: 100%;
        display: block;
    }
}


/*----------------------------------Upcoming Event------------------------------------*/

.module-event .module_date-text {
    margin-bottom: 5px;
}

.module-event--upcoming .module_item-wrap {
    margin-bottom: 20px;
}

.module-event--upcoming .module_item {
    padding: 0;
    border: 0;
}

.module-box-left .module_item {
    padding: 0;
    border: 0;
}


/*------------------------------End Upcoming Event------------------------------------*/


/*===========================End Landing Page========================================*/


/*===========================Investor center Page========================================*/

.module-latest_news-title {
    color: #fff;
    background: #003087;
    padding: 18px 30px;
    margin: 0;
    border-top: 4px solid #BA8F00;
}

.module-latest_news-title-link {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
}

.module-latest_news-title-link .q4-icon_arrow-right-solid:before {
    background-color: #fff;
    color: #003087;
    font-size: 13px;
    border-radius: 100%;
    width: 20px;
    text-align: center;
    height: 20px;
    line-height: 20px;
    vertical-align: middle;
    display: inline-block;
    font-weight: 700;
}

.module_date-time--news .module_date-text {
    font-size: 22px;
    display: inline-block;
    font-weight: 700;
}

.module_date-time--news.module_date-time i {
    display: block;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
}

.module-latest_news .module_item-wrap {
    padding: 20px 30px;
}

.module-latest_news .module_item {
    padding: 0;
    border: 0;
}

.module-latest_news .module_item:nth-child(odd) {
    background-color: #DBDBDB;
}

.module_headline--news {
    color: #1D1D1D;
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 0;
}

.module_headline--news .module_headline-link {
    color: #1D1D1D;
    font-weight: 400;
}

.module-presentation-latest .module_item {
    padding: 20px 30px;
    border: 0;
}

.module-presentation-latest .module_item:nth-child(odd) {
    background-color: #DBDBDB;
}

.module-latest_news {
    width: calc(66.66% - 20px);
    position: relative;
    padding-bottom: 70px;
}

.module-latest_event {
    width: calc(33.33% - 20px);
    position: relative;
    padding-bottom: 70px;
}

.module-latest_event .module_item {
    padding: 0;
    border: 0;
}

.module-latest_event .module_headline {
    font-weight: 700;
    margin-top: 15px;
    margin-bottom: 15px;
}

.module-latest_event .module_date-text {
    margin-bottom: 5px;
}

.module-latest_event .module_links,
.module-latest_news-button {
    position: absolute;
    bottom: 0;
    left: 30px
}

.module-latest_event .module_link {
    margin: 0;
}

.module-presentation_latest-button,
.module-fact-sheet_button {
    position: absolute;
    bottom: 0;
    left: 30px;
}

.module-presentation-archived .module_item~.module_item {
    border-top: 0;
}

.module-presentation-archived .module_item {
    padding: 15px 0;
}


/*-------------------------Investor Presentations-----------------------------------*/

.module-presentation_latest {
    width: calc(66.66% - 20px);
    position: relative;
    padding-bottom: 70px;
}

.module-fact-sheet {
    width: calc(33.33% - 20px);
    position: relative;
    padding-bottom: 50px;
}

.module-fact-sheet .module_item {
    border: 0;
    padding: 0;
}

.module-presentation_latest-intro {
    padding-bottom: 10px
}

.module-presentation_latest .module_item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.module-presentation_latest .module_link {
    margin: 0;
}

.module-presentation_latest .module_link:before {
    font-size: 30px;
}

.module_date-and-size {
    font-size: 14px;
    color: #003087;
}

.module_date-text {
    padding-right: 5px;
}

.module_size-text {
    padding-left: 7px;
    position: relative;
}

.module_size-text:not(:empty):before {
    content: "|";
    position: absolute;
    left: 0;
}

.module-presentation_latest .module_headline {
    margin-bottom: 5px;
    font-weight: 700;
}

.module_icon-button {
    background-color: #BA8F00;
    color: #fff;
    border-radius: 2px;
    font-size: 15px;
    margin-right: 5px;
    display: inline-block;
    height: 30px;
    width: 37px;
    line-height: 33px;
    vertical-align: middle;
    cursor: pointer;
    transition: 0.3s ease-in-out;
    text-align: center;
}

.module_icon-button:hover {
    background: #f1ba02;
}

.module-presentation_latest-icons {
    text-align: center;
}

.module-presentation_latest .module_item {
    border: 0;
    padding: 20px 30px;
}

.module-presentation_latest .module_item:nth-child(odd) {
    background-color: #DBDBDB;
}

.module-documents_reports {
    width: calc(66.66% - 20px);
    position: relative;
}

.module-documents_reports-intro p {
    color: #1D1D1D;
}

.module-documents_materials {
    width: calc(33.33% - 20px);
    position: relative;
}

.module-documents_reports .module_item-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.module-documents_reports .module_links,
.module-presentation_latest .module_links {
    width: 100%;
    max-width: 40px;
    padding-right: 10px;
    margin-bottom: 0;
}

.module-documents_reports-info,
.module-presentation_latest-info {
    width: calc(100% - 140px);
    padding-right: 10px;
}

.module-documents_reports-icons,
.module-presentation_latest-icons {
    width: 100%;
    max-width: 100px;
}

.module-documents .module_item {
    padding: 0;
    border: 0;
}

.module-documents_reports .module_item-wrap {
    padding: 20px 30px
}

.module-documents_reports .module_item:nth-child(odd) {
    background-color: #DBDBDB;
}

.module-documents_reports .module_headline {
    font-size: 16px;
    margin-bottom: 2px;
    font-weight: 700;
}

.module-documents_reports .module_link:before {
    font-size: 30px;
}

.module-documents .module_links {
    margin-bottom: 0;
}

.module-documents_materials h4 {
    font-size: 18px;
    text-transform: capitalize;
    margin-top: 0;
}

.module-documents_materials .module_headline {
    font-size: 14px;
    line-height: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.module-documents_materials .module_item {
    margin-bottom: 20px;
}

.module-documents_materials .module_link {
    font-weight: 500;
    font-size: 12px;
}

.module-documents_materials-transfer-phones span {
    display: block;
    font-size: 12px;
    font-weight: 500;
    margin-top: 10px
}

.module-documents_materials-transfer-phones i {
    transform: rotate(90deg);
    display: inline-block;
    font-size: 20px;
    vertical-align: middle;
    margin-right: 5px;
}

.module-documents_materials-transfer {
    padding-top: 30px;
    border-top: 1px solid #003087;
    margin-top: 30px;
    font-size: 14px;
    line-height: 22px;
}

.module-documents_reports-button {
    margin-top: 50px;
    padding-left: 30px;
}

@media only screen and (max-width: 1023px) {
    .module-latest_news {
        width: 100%;
        padding-bottom: 50px;
    }
    .module-latest_news-button {
        position: static;
        padding-top: 30px
    }
    .module-latest_event {
        width: 100%;
        padding-bottom: 0;
    }
    .module-latest_event .module_links,
    .module-latest_news-button {
        position: static;
    }
    .module-documents_reports {
        width: 100%;
        padding-bottom: 50px;
    }
    .module-documents_materials {
        width: 100%;
    }
    .module-presentation_latest {
        width: 100%;
        padding-bottom: 0;
        padding-bottom: 50px;
    }
    .module-fact-sheet {
        width: 100%;
        padding-bottom: 0;
    }
    .module-latest_event .module_item,
    .module-fact-sheet .module_item {
        display: flex;
        flex-wrap: wrap;
    }
    .module-latest_event .module_thumb,
    .module-fact-sheet_thumb {
        width: 50%;
        order: 2;
        padding-left: 20px;
    }
    .module-latest_event .module_item-wrap,
    .module-fact-sheet_container {
        order: 1;
        width: 50%;
    }
    .module-latest_event .module_links,
    .module-fact-sheet_button {
        order: 3;
        margin-top: 30px;
        margin-bottom: 0;
    }
    .module-documents_materials-widget {
        display: inline-block;
        width: 48%;
        padding-right: 20px;
    }
    .module-documents_materials-transfer {
        width: 49%;
        display: inline-block;
        vertical-align: top;
        padding-left: 20px;
        border-top: 0;
        margin-top: 0;
        padding-top: 0;
    }
    .module-presentation_latest-button,
    .module-fact-sheet_button {
        position: static;
        margin-top: 35px;
    }
}

@media screen and (max-width: 550px) {
    .module-latest_event .module_thumb,
    .module-latest_event .module_thumb,
    .module-fact-sheet_thumb {
        width: 100%;
        margin-bottom: 15px;
        padding-left: 0;
    }
    .module-latest_event .module_item-wrap,
    .module-latest_event .module_item-wrap,
    .module-fact-sheet_container {
        width: 100%;
    }
    .module-latest_event .module_item,
    .module-latest_event .module_item,
    .module-fact-sheet .module_item {
        display: block;
    }
    .module-event-and-presentation .module-presentation-past .module_item,
    .module-fact-sheet_button {
        display: block;
        width: 100%;
    }
    .module-documents_materials-widget {
        display: block;
        width: 100%;
        padding-right: 0
    }
    .module-documents_materials-transfer {
        width: 100%;
        display: block;
        vertical-align: top;
        padding: 0;
    }
}

@media only screen and (max-width: 480px) {
    .module-documents_reports-info,
    .module-presentation_latest-info {
        width: calc(100% - 40px);
    }
    .module-documents_reports-icons,
    .module-presentation_latest-icons {
        max-width: 100%;
        text-align: left;
        margin-top: 15px;
    }
}


/*---------------------End Investor Presentations-----------------------------------*/


/*===========================End Investor centerPage========================================*/


/*========================================Stock Information Page===================================*/

.module-stock_label {
    font-weight: normal;
}

.module-stock_value .module-stock_price:before,
.module-stock_value .module-stock_high:before,
.module-stock_value .module-stock_low:before,
.module-stock_value .module-stock_open:before,
.module-stock_value .module-stock_close:before,
.module-stock_value .module-stock_week-low:before,
.module-stock_value .module-stock_week-high:before,
.module-stock_value .module-stock_previous-close:before {
    content: "$";
}

.module-stock-quote {
    font-size: 18px;
    color: #003087;
}

.module-stock_indice,
.module-stock_label,
.module-stock_date-text {
    font-weight: 700;
}

.module-stock-quote .module-stock_value {
    color: #003087;
}

.module-stock-quote_item>div {
    margin-bottom: 5px;
    line-height: 24px;
}

.module-stock-quote_item .module-stock_down,
.module-stock-quote_item .module-stock_up {
    position: relative;
    padding-right: 15px;
}

.module-stock-quote_item .module-stock_up:after {
    content: "\e921";
    font-family: 'q4-icons';
    position: absolute;
    right: 0;
    top: 0;
    color: #44B454;
    font-size: 12px;
    font-weight: 700;
}

.module-stock-quote_item .module-stock_down:after {
    content: "\e91e";
    font-family: 'q4-icons';
    position: absolute;
    right: 0;
    color: #DA291C;
    font-size: 12px;
    font-weight: 700;
}

.module-stock-quote_item .module-stock_outstanding {
    padding-right: 10px;
    margin-bottom: 15px
}

.module-stock-chart .highcharts-legend-item:first-child path {
    stroke: #003087;
}

.module-stock-chart .highcharts-legend-item:first-child text {
    cursor: default !important;
}

.module-stock-chart .highcharts-series-0 {
    stroke: #003087;
}

.module-stock-chart .highcharts-series-0 path:first-child {
    stroke: #003087;
}

.module-stock-chart .highcharts-navigator rect {
    fill: rgba(9, 24, 88, 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: #003087;
}

.module-stock-chart .highcharts-navigator-handle-right path,
.module-stock-chart .highcharts-navigator-handle-left path {
    stroke: #ffffff;
}

.module-stock-chart .highcharts-highcharts-scrollbar g:first-of-type rect {
    fill: #003087;
    stroke: #003087;
}

.module-stock-quote_item {
    width: 25%;
    padding-right: 60px;
    position: relative;
}

.module-stock-quote_item:last-child {
    padding-right: 0;
}

.module-stock-quote_item:before {
    content: "";
    position: absolute;
    right: 40px;
    border: 1px solid #979797;
    top: 0;
    bottom: 0;
    opacity: 0.38;
}

.module-stock-quote_item:last-child:before {
    content: none;
}

@media (max-width: 1100px) {
    .module-stock-quote_item {
        padding-right: 30px
    }
    .module-stock-quote_item:before {
        right: 20px;
    }
}

@media (max-width: 1023px) {
    .module-stock-quote_item {
        padding-right: 60px
    }
    .module-stock-quote_item:before {
        right: 40px;
    }
}


/*- Investment Calculator Widget -*/

.module-calculator-and-analyst .module-calculator,
.module-calculator-and-analyst .module-calculator-tsx,
.module-calculator-and-analyst .module-analyst-coverage {
    width: calc(50% - 20px);
    position: relative;
    padding-bottom: 75px;
}

.module-calculator-and-analyst .module-analyst-coverage,
.fancybox-slide .module-analyst-coverage_disclaimer-container {
    font-family: "Open Sans", "Roboto", sans-serif;
}

.module-calculator_input:not(:last-of-type) {
    margin-bottom: 20px;
}

.module-calculator_start-date .module_label,
.module-calculator_end-date .module_label {
    font-size: 13px;
    font-weight: bold;
}

.module-calculator_input h4 {
    font-size: 13px;
    text-transform: capitalize;
    margin-top: 40px;
    margin-bottom: 25px;
}

.module-calculator_input label {
    display: inline-block;
    margin-bottom: 5px;
}

.module-calculator_input input[type="text"] {
    border: 1px solid #979797;
}

.module-calculator_input input[type="checkbox"]+label {
    margin: 0;
}

.module-calculator_input-row {
    padding-bottom: 10px;
    width: 28%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: 0;
    display: flex;
}

.module-calculator_input-row--other {
    width: 42%;
}

.module-calculator_input-row input[type="text"] {
    max-width: 120px;
}

.module-calculator_input-row--other .module_label {
    margin-right: 7px;
}

.module-calculator_input-row-wrap {
    display: flex;
    margin: 0;
    flex-wrap: wrap;
    padding-left: 15px;
}

.module-calculator-and-analyst .module-calculator_button,
.module-calculator-and-analyst .module-analyst-coverage_disclaimer-link {
    position: absolute;
    bottom: 0;
    left: 30px
}

.fancybox-slide .module-analyst-coverage_disclaimer-container {
    max-width: 1135px;
    padding: 50px 60px;
}

.module-analyst-coverage_disclaimer-container .fancybox-close-small {
    top: 30px;
    right: 35px;
    font-size: 0;
}

.module-analyst-coverage_disclaimer-container .fancybox-close-small:before {
    content: "\ed6d";
    font-family: 'q4-icons';
    font-size: 34px;
    color: #003087;
    font-weight: 700;
}

.module-analyst-coverage_disclaimer-container .module_title {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 50px;
}

.module-analyst-coverage_disclaimer-container .fancybox-close-small:hover {
    background: transparent;
    color: #003087;
}

@media screen and (min-width: 1024px) {
    .module-calculator_popup-container {
        max-width: 920px;
        width: 100%;
    }
}

@media only screen and (max-width: 600px) {
    .module-calculator_input-row {
        width: 100%;
    }
    .module-calculator_input-row--other {
        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 #003087;
        border-bottom: 2px solid #003087;
    }
    .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;
}

@media screen and (max-width: 1023px) {
    .module-calculator-and-analyst .module-calculator,
    .module-calculator-and-analyst .module-analyst-coverage,
    .module-calculator-and-analyst .module-calculator-tsx {
        width: 100%;
        padding-bottom: 30px;
    }
    .module-calculator-and-analyst .module-calculator_button,
    .module-calculator-and-analyst .module-analyst-coverage_disclaimer-link {
        position: static;
        margin: 30px 0;
    }
    .module-stock-quote_item {
        width: 50%;
        margin-bottom: 20px;
    }
    .module-stock-quote_item:nth-child(even) {
        padding-right: 0;
    }
    .module-stock-quote_item:nth-child(even):before {
        content: none;
    }
    .module-stock-quote_container {
        padding-bottom: 0;
    }
}

@media screen and (max-width: 580px) {
    .module-stock-quote_item {
        width: 100%;
    }
    .module-stock-quote_item:before {
        content: none;
    }
    .module-stock-quote_item {
        padding-right: 0
    }
}


/*=====================================End Stock Information Page===================================*/


/*==============================Shareholder FAQs=======================================*/

.section-shareholder .pane--content .pane_inner {
    max-width: 1135px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 15px;
}

.section-shareholder .module-faq {
    width: calc(50% - 20px);
    margin-left: 20px;
    display: inline-block;
    vertical-align: top;
}

.module-shareholder-image {
    width: calc(50% - 20px);
    margin-left: 20px;
    display: inline-block;
    vertical-align: top;
}

.module-shareholder-image .module_container--inner {
    border-top: 4px solid #003087;
    padding: 30px 0 0;
}

.module-proxy_item {
    width: calc(50% - 20px);
    display: inline-block;
    vertical-align: top;
}

.module-proxy_item h5 {
    font-size: 14px;
    font-size: 1.4rem;
    color: #003087;
    line-height: 22px;
}

.section-shareholder .pane--content .module_container--outer {
    padding: 0;
    max-width: 100%;
}

@media screen and (max-width: 1024px) {
    .module-shareholder {
        width: 100%;
        padding-top: 30px;
    }
}


/*---------- FAQ Module ----------*/

.module-faq_question {
    margin: 0;
    padding-left: 22px;
    font-size: 22px;
    background: #003087;
    font-weight: bold;
    color: #fff;
    position: relative;
    line-height: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    line-height: 28px;
}

.module-faq_plus {
    transition: 0.35s ease all;
    width: 25px;
    height: 25px;
    transform: rotate(180deg);
    position: relative;
    margin: 20px;
}

.module-faq_plus:before {
    content: '';
    display: block;
    width: 25px;
    height: 0px;
    border-bottom: solid 4px white;
    position: absolute;
    bottom: 11px;
    transform: rotate(90deg);
    transition: 0.35s ease all;
}

.module-faq_plus:after {
    content: '';
    display: block;
    width: 25px;
    height: 0px;
    border-bottom: solid 4px white;
    position: absolute;
    bottom: 11px;
}

.module-faq .js--active > .module-faq_question > .module-faq_plus {
    transform: rotate(0deg);
}

.module-faq .js--active > .module-faq_question > .module-faq_plus:before {
    width: 0px;
}

.module-faq .module_item {
    padding: 0;
    border: none;
    margin-bottom: 20px;
    margin-top: 20px;
}

.module-faq .module_item:last-child {
    margin-bottom: 0;
}

.module-faq_answer p {
    line-height: 22px;
}

.module-faq .toggle-all a:before {
    content: "Show all";
}

.module-faq .toggle-all.js--active a:before {
    content: "Hide all";
}

.module-faq_answer {
    background: #f4f4f4;
    padding: 25px 30px;
}

.module-faq_answer h5 {
    margin: 0;
    padding: 30px 0 10px;
}

.module-faq_answer .list {
    margin: 0 0 0 30px;
    padding: 0;
}

.module-faq--awards .module-faq_answer h5 {
    color: #003087;
    font-weight: 600;
    font-size: 18px;
    padding: 15px 0;
}

.module-proxy-shareholder {
    font-size: 14px;
}

.module-proxy_shareholder p {
    line-height: 22px;
}

.module-proxy_materials-link {
    padding-right: 20px;
}

.module-proxy_transfer-adress p,
.module-proxy_shareholder-adress p {
    margin: 0;
}

.module-proxy_transfer-intro a {
    font-weight: 500;
}

.module-proxy_shareholder-links .module_item {
    padding: 0;
    border: 0;
}

.module-proxy_shareholder-links .module_headline {
    font-size: 18px;
    font-weight: 700;
    line-height: 23px;
}

.module-proxy_shareholder-links-wrap {
    padding-bottom: 20px;
}

.module-proxy_shareholder-links-wrap p a {
    font-weight: 700;
}

.module-proxy_shareholder-links li {
    line-height: 22px;
    margin-bottom: 5px;
}

.module-proxy_transfer-adress {
    padding-top: 20px;
}

.module-proxy_transfer-holders {
    padding-top: 15px;
}

.module-proxy_shareholder-adress-email {
    padding-right: 20px;
}

.module-proxy_shareholder-adress-delivery,
.module-proxy_transfer-investor-services {
    padding-left: 40px;
    border-left: 1px solid rgba(151, 151, 151, .39);
}

.module-proxy_materials-link a {
    font-size: 18px;
    font-weight: 700;
    line-height: 23px;
}

.module-proxy_materials {
    margin-bottom: 50px;
}

.module-proxy_materials-button {
    margin-top: 30px;
    margin-bottom: 50px;
}

.module-proxy_transfer-investor {
    padding-right: 20px;
}

@media screen and (max-width: 1024px) {
    .module-faq {
        width: 100%;
        display: block;
        margin: 0;
    }
    .module-faq--contact-us {
        z-index: 3;
        position: relative;
    }
    .module-proxy_item {
        width: 100%;
        display: block;
    }
    .module-shareholder-image {
        width: 100%;
        display: block;
        margin: 0;
        text-align: center;
    }
    .module-proxy_transfer-investor-services {
        padding-left: 20px;
    }
    .module-proxy_materials-button {
        margin-bottom: 20px;
    }
    .module-proxy_shareholder-adress-delivery {
        padding-left: 20px;
    }
}

@media screen and (max-width: 480px) {
    .module-proxy_transfer-investor-services,
    .module-proxy_shareholder-adress-delivery {
        border-left: 0;
    }
    .module-proxy_transfer-investor,
    .module-proxy_shareholder-adress-email {
        margin-bottom: 10px;
    }
}


/*===========================End Shareholder FAQs=======================================*/

.module-event-and-presentation .module_item {
    padding: 0;
    border: 0;
}

.module-latest-presentation {
    width: calc(66.66% - 20px);
    position: relative;
    padding-bottom: 110px;
}

.module-presentation-past {
    width: calc(33.33% - 20px);
    position: relative;
    padding-bottom: 110px;
}

.module-event-recent {
    width: calc(66.66% - 20px);
}

.module-event-recent .module_container--content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.module-event-recent .module_item {
    width: calc(50% - 20px);
    position: relative;
    padding-bottom: 135px;
}

.page-event .module-event-recent .module_item {
    padding-bottom: 0px;
}

.module-event-upcoming .module_item {
    padding-bottom: 100px;
    position: relative;
}

.module-event-upcoming {
    width: calc(33.33% - 20px);
}

.module-presentation-past .module_link {
    font-size: 15px;
    font-weight: 500;
}

.module-event-and-presentation .module_headline {
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 13px;
}

.module-event-and-presentation .module_q4-icon-links .module_link:before {
    font-size: 20px;
}

.module-event-and-presentation .module-presentation-past .module_headline {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 22px;
}

.module-latest-presentation .module_date-text {
    padding-right: 15px;
}

.module-event-upcoming .module_date-time {
    margin-bottom: 15px;
}

.module-event-upcoming .module_date-text {
    padding-right: 15px;
}

.module-presentation-button {
    position: absolute;
    bottom: 50px;
    left: 30px;
}

.module-event-recent .module_date-time {
    margin-top: 20px;
}

.module-event-recent .module_date-text {
    margin-bottom: 5px;
}

.module-event-upcoming {
    position: relative;
}

.module-event-recent .module_links {
    position: absolute;
    bottom: 0;
    left: 0;
    margin-bottom: 0;
}

.page-event .module-event-recent .module_links {
    position: static;
}

.module-event-upcoming .module_links {
    /*position: absolute;*/
    bottom: 0;
    left: 0;
    margin-bottom: 0;
}

@media screen and (max-width: 1023px) {
    .module-event-recent .module_item {
        width: 100%;
    }
    .module-event-upcoming .module_item,
    .module-event-recent .module_item {
        padding-bottom: 30px;
    }
    .module-latest-presentation {
        order: 1;
        width: 100%;
        padding-bottom: 40px
    }
    .module-presentation-past {
        order: 4;
        width: 100%;
        padding-bottom: 0;
    }
    .module-event-upcoming {
        order: 2;
        width: 100%;
        padding-bottom: 40px
    }
    .module-event-recent {
        order: 3;
        width: 100%;
        padding-bottom: 40px
    }
    .module-event-and-presentation .module_item {
        display: flex;
        flex-wrap: wrap;
    }
    .module-event-and-presentation .module_thumb {
        width: 50%;
        order: 2;
        padding-left: 20px;
    }
    .module-event-and-presentation .module_item-wrap {
        order: 1;
        width: 50%;
    }
    .module-event-and-presentation .module-presentation-button {
        position: static;
        margin-top: 20px;
    }
    .module-event-and-presentation .module_date-text {
        display: block;
        margin-bottom: 5px;
    }
    .module-event-and-presentation .module_time-text {
        display: block;
    }
    .module-event-upcoming .module_links,
    .module-event-recent .module_links {
        position: static;
        margin-top: 20px;
        order: 3;
        width: 100%;
    }
    .module-event-and-presentation .module_headline {
        margin-top: 0;
    }
    .module-event-and-presentation .module-presentation-past .module_item {
        display: inline-block;
        vertical-align: top;
        width: 50%;
        padding-right: 15px;
    }
}

@media screen and (max-width: 550px) {
    .module-event-and-presentation .module_thumb {
        width: 100%;
        margin-bottom: 15px;
        padding-left: 0;
    }
    .module-event-and-presentation .module_item-wrap {
        width: 100%;
    }
    .module-event-and-presentation .module_item {
        display: block;
    }
    .module-event-and-presentation .module-presentation-past .module_item {
        display: block;
        width: 100%;
    }
}


/*/*=======================Slider Revolution css Client=============================*/

.hephaistos.tparrows {
    cursor: pointer;
    background: rgba(186, 143, 0, 0.5);
    width: 50px;
    height: 50px;
    position: absolute;
    display: block;
    z-index: 100;
    border-radius: 50%
}

.hephaistos.tparrows:hover {
    background: rgba(9, 24, 88, 0.95)
}

.hephaistos.tparrows:before {
    font-size: 18px;
    color: rgb(255, 255, 255);
    display: block;
    line-height: 50px;
    text-align: center
}

.hephaistos.tparrows.tp-leftarrow:before {
    content: "\e82c";
    font-family: "q4-icons";
    margin-left: -2px
}

.hephaistos.tparrows.tp-rightarrow:before {
    content: "\e82d";
    font-family: "q4-icons";
    margin-right: -2px
}

#debungcontrolls {
    z-index: 100000;
    position: fixed;
    bottom: 0px;
    width: 100%;
    height: auto;
    background: rgba(0, 0, 0, 0.6);
    padding: 10px;
    box-sizing: border-box;
}

.debugtimeline {
    width: 100%;
    height: 10px;
    position: relative;
    display: block;
    margin-bottom: 3px;
    display: none;
    white-space: nowrap;
    box-sizing: border-box;
}

.debugtimeline:hover {
    height: 15px;
}

.the_timeline_tester {
    background: #e74c3c;
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 0;
}

.rs-go-fullscreen {
    position: fixed !important;
    width: 100% !important;
    height: 100% !important;
    top: 0px !important;
    left: 0px !important;
    z-index: 9999999 !important;
    background: #ffffff !important;
}

.debugtimeline.tl_slide .the_timeline_tester {
    background: #f39c12;
}

.debugtimeline.tl_frame .the_timeline_tester {
    background: #3498db;
}

.debugtimline_txt {
    color: #fff;
    font-weight: 400;
    font-size: 7px;
    position: absolute;
    left: 10px;
    top: 0px;
    white-space: nowrap;
    line-height: 10px;
}

.rtl {
    direction: rtl;
}

@media (max-width: 850px) {
    .hephaistos.tparrows {
        width: 30px;
        height: 30px;
    }
    .hephaistos.tparrows:before {
        line-height: 30px;
    }
    .tp-leftarrow {
        left: -15px !important;
    }
    .tp-rightarrow {
        transform: matrix(1, 0, 0, 1, -42, -15) !important;
    }
}


/******************************
    -   BASIC STYLES        -
******************************/

.rev_slider_wrapper {
    position: relative;
    z-index: 0;
    width: 100%;
}

.rev_slider {
    position: relative;
    overflow: visible;
}

.rev_slider--single-slide .tparrows {
    display: none;
}

.entry-content .rev_slider a,
.rev_slider a {
    box-shadow: none;
}

.tp-overflow-hidden {
    overflow: hidden !important;
}

.group_ov_hidden {
    overflow: hidden
}

.tp-simpleresponsive img,
.rev_slider img {
    max-width: none !important;
    transition: none;
    margin: 0px;
    padding: 0px;
    border: none;
}

.rev_slider .no-slides-text {
    font-weight: bold;
    text-align: center;
    padding-top: 80px;
}

.rev_slider>ul,
.rev_slider_wrapper>ul,
.tp-revslider-mainul>li,
.rev_slider>ul>li,
.rev_slider>ul>li:before,
.tp-revslider-mainul>li:before,
.tp-simpleresponsive>ul,
.tp-simpleresponsive>ul>li,
.tp-simpleresponsive>ul>li:before,
.tp-revslider-mainul>li,
.tp-simpleresponsive>ul>li {
    list-style: none !important;
    position: absolute;
    margin: 0px !important;
    padding: 0px !important;
    overflow-x: visible;
    overflow-y: visible;
    list-style-type: none !important;
    background-image: none;
    background-position: 0px 0px;
    text-indent: 0em;
    top: 0px;
    left: 0px;
}

.tp-revslider-mainul>li,
.rev_slider>ul>li,
.rev_slider>ul>li:before,
.tp-revslider-mainul>li:before,
.tp-simpleresponsive>ul>li,
.tp-simpleresponsive>ul>li:before,
.tp-revslider-mainul>li,
.tp-simpleresponsive>ul>li {
    visibility: hidden;
}

.tp-revslider-slidesli,
.tp-revslider-mainul {
    padding: 0 !important;
    margin: 0 !important;
    list-style: none !important;
}

.rev_slider li.tp-revslider-slidesli {
    position: absolute !important;
}

.tp-caption .rs-untoggled-content {
    display: block;
}

.tp-caption .rs-toggled-content {
    display: none;
}

.rs-toggle-content-active.tp-caption .rs-toggled-content {
    display: block;
}

.rs-toggle-content-active.tp-caption .rs-untoggled-content {
    display: none;
}

.rev_slider .tp-caption,
.rev_slider .caption {
    position: relative;
    visibility: hidden;
    white-space: nowrap;
    display: block;
    -webkit-font-smoothing: antialiased !important;
    z-index: 1;
}

.rev_slider .tp-caption,
.rev_slider .caption,
.tp-simpleresponsive img {
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
}

.rev_slider .tp-mask-wrap .tp-caption,
.rev_slider .tp-mask-wrap *:last-child,
.wpb_text_column .rev_slider .tp-mask-wrap .tp-caption,
.wpb_text_column .rev_slider .tp-mask-wrap *:last-child {
    margin-bottom: 0;
}

.tp-svg-layer svg {
    width: 100%;
    height: 100%;
    position: relative;
    vertical-align: top
}


/* CAROUSEL FUNCTIONS */

.tp-carousel-wrapper {
    cursor: url(openhand.cur), move;
}

.tp-carousel-wrapper.dragged {
    cursor: url(closedhand.cur), move;
}


/* ADDED FOR SLIDELINK MANAGEMENT */

.tp_inner_padding {
    box-sizing: border-box;
    max-height: none !important;
}

.tp-caption.tp-layer-selectable {
    -moz-user-select: all;
    -khtml-user-select: all;
    -webkit-user-select: all;
    -o-user-select: all;
}

.tp-forcenotvisible,
.tp-hide-revslider,
.tp-caption.tp-hidden-caption,
.tp-parallax-wrap.tp-hidden-caption {
    visibility: hidden !important;
    display: none !important
}

.rev_slider embed,
.rev_slider iframe,
.rev_slider object,
.rev_slider audio,
.rev_slider video {
    max-width: none !important
}

.tp-element-background {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.tp-blockmask,
.tp-blockmask_in,
.tp-blockmask_out {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 1000;
    transform: scaleX(0) scaleY(0);
}

.tp-parallax-wrap {
    transform-style: preserve-3d
}

.lifecycle-slide .slides {
    padding: 0;
    width: 360px;
    height: 355px;
    display: block;
    margin: 0 auto;
    position: relative;
}

.lifecycle-slide .slides * {
    user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
}

.lifecycle-slide .slide {
    top: 0;
    opacity: 0;
    width: 360px;
    height: 355px;
    display: block;
    position: absolute;
    transform: scale(0);
    transition: all 0.7s ease-in-out;
}

.lifecycle-slide input:checked+.slide-container .slide {
    opacity: 1;
    transform: scale(1);
    transition: opacity 1s ease-in-out;
}

.lifecycle-slide .nav label {
    width: 200px;
    height: 100%;
    display: none;
    position: absolute;
    opacity: 0;
    z-index: 9;
    cursor: pointer;
    transition: opacity 0.2s;
    color: #fff;
    font-size: 156pt;
    text-align: center;
    line-height: 380px;
    background-color: rgba(255, 255, 255, .3);
    text-shadow: 0px 0px 15px #777;
}

.lifecycle-slide .nav label:hover {
    opacity: 1;
}

.lifecycle-slide input:checked+.slide-container .nav label {
    display: block;
}

.lifecycle-slide .nav .next {
    right: 0;
}


/***********************************************************
    -   ZONES / GOUP / ROW / COLUMN LAYERS AND HELPERS  -
***********************************************************/

.rev_row_zone {
    position: absolute;
    width: 100%;
    left: 0px;
    box-sizing: border-box;
    min-height: 50px;
    font-size: 0px;
}

.rev_row_zone_top {
    top: 0px;
}

.rev_row_zone_middle {
    top: 50%;
    transform: translateY(-50%);
}

.rev_row_zone_bottom {
    bottom: 0px;
}

.rev_column .tp-parallax-wrap {
    vertical-align: top
}

.rev_slider .tp-caption.rev_row {
    display: table;
    position: relative;
    width: 100% !important;
    table-layout: fixed;
    box-sizing: border-box;
    vertical-align: top;
    height: auto !important;
    font-size: 0px;
}

.rev_column {
    display: table-cell;
    position: relative;
    vertical-align: top;
    height: auto;
    box-sizing: border-box;
    font-size: 0px;
}

.rev_column_inner {
    box-sizing: border-box;
    display: block;
    position: relative;
    width: 100% !important;
    height: auto !important;
    white-space: normal !important;
}

.rev_column_bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 0;
    box-sizing: border-box;
    background-clip: content-box;
    border: 0px solid transparent;
}

.rev_column_inner .tp-parallax-wrap,
.rev_column_inner .tp-loop-wrap,
.rev_column_inner .tp-mask-wrap {
    text-align: inherit;
}

.rev_column_inner .tp-mask-wrap {
    display: inline-block;
}

.rev_column_inner .tp-parallax-wrap .tp-loop-wrap,
.rev_column_inner .tp-parallax-wrap .tp-mask-wrap,
.rev_column_inner .tp-parallax-wrap {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    line-height: 0px;
}

.rev_column_inner .tp-parallax-wrap .tp-loop-wrap,
.rev_column_inner .tp-parallax-wrap .tp-mask-wrap,
.rev_column_inner .tp-parallax-wrap,
.rev_column_inner .rev_layer_in_column {
    vertical-align: top;
}

.rev_break_columns {
    display: block !important
}

.rev_break_columns .tp-parallax-wrap.rev_column {
    display: block !important;
    width: 100% !important;
}


/**********************************************
    -   FULLSCREEN AND FULLWIDHT CONTAINERS -
**********************************************/

.fullscreen-container {
    position: relative;
    padding: 0;
}

.fullwidthbanner-container {
    position: relative;
    padding: 0;
    overflow: hidden;
}

.fullwidthbanner-container .fullwidthabanner {
    width: 100%;
    position: relative;
}


/*********************************
    -   SPECIAL TP CAPTIONS -
**********************************/

.tp-static-layers {
    position: absolute;
    z-index: 101;
    top: 0px;
    left: 0px;
    /*pointer-events:none;*/
}


/* new static layers position option */

.tp-static-layers-back {
    z-index: 0;
}

.tp-caption .frontcorner {
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 0px solid transparent;
    border-top: 40px solid #00A8FF;
    position: absolute;
    left: -40px;
    top: 0px;
}

.tp-caption .backcorner {
    width: 0;
    height: 0;
    border-left: 0px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 40px solid #00A8FF;
    position: absolute;
    right: 0px;
    top: 0px;
}

.tp-caption .frontcornertop {
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 0px solid transparent;
    border-bottom: 40px solid #00A8FF;
    position: absolute;
    left: -40px;
    top: 0px;
}

.tp-caption .backcornertop {
    width: 0;
    height: 0;
    border-left: 0px solid transparent;
    border-right: 40px solid transparent;
    border-top: 40px solid #00A8FF;
    position: absolute;
    right: 0px;
    top: 0px;
}

.tp-layer-inner-rotation {
    position: relative !important;
}


/***********************************************
    -   SPECIAL ALTERNATIVE IMAGE SETTINGS  -
***********************************************/

img.tp-slider-alternative-image {
    width: 100%;
    height: auto;
}


/******************************
    -   IE8 HACKS   -
*******************************/

.noFilterClass {
    filter: none !important;
}


/********************************
    -   FULLSCREEN VIDEO    -
*********************************/

.rs-background-video-layer {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    visibility: hidden;
    z-index: 0;
}

.tp-caption.coverscreenvideo {
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    position: absolute;
}

.caption.fullscreenvideo,
.tp-caption.fullscreenvideo {
    left: 0px;
    top: 0px;
    position: absolute;
    width: 100%;
    height: 100%
}

.caption.fullscreenvideo iframe,
.caption.fullscreenvideo audio,
.caption.fullscreenvideo video,
.tp-caption.fullscreenvideo iframe,
.tp-caption.fullscreenvideo iframe audio,
.tp-caption.fullscreenvideo iframe video {
    width: 100% !important;
    height: 100% !important;
    display: none
}

.fullcoveredvideo audio,
.fullscreenvideo audio .fullcoveredvideo video,
.fullscreenvideo video {
    background: #000
}

.fullcoveredvideo .tp-poster {
    background-position: center center;
    background-size: cover;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px
}

.videoisplaying .html5vid .tp-poster {
    display: none
}

.tp-video-play-button {
    background: #000;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    position: absolute;
    top: 50%;
    left: 50%;
    color: #FFF;
    z-index: 3;
    margin-top: -25px;
    margin-left: -25px;
    line-height: 50px !important;
    text-align: center;
    cursor: pointer;
    width: 50px;
    height: 50px;
    box-sizing: border-box;
    display: inline-block;
    vertical-align: top;
    z-index: 4;
    opacity: 0;
    transition: opacity 300ms ease-out !important;
}

.tp-hiddenaudio,
.tp-audio-html5 .tp-video-play-button {
    display: none !important;
}

.tp-caption .html5vid {
    width: 100% !important;
    height: 100% !important;
}

.tp-video-play-button i {
    width: 50px;
    height: 50px;
    display: inline-block;
    text-align: center;
    vertical-align: top;
    line-height: 50px !important;
    font-size: 40px !important;
}

.tp-caption:hover .tp-video-play-button {
    opacity: 1;
    display: block;
}

.tp-caption .tp-revstop {
    display: none;
    border-left: 5px solid #fff !important;
    border-right: 5px solid #fff !important;
    margin-top: 15px !important;
    line-height: 20px !important;
    vertical-align: top;
    font-size: 25px !important;
}

.videoisplaying .revicon-right-dir {
    display: none
}

.videoisplaying .tp-revstop {
    display: inline-block
}

.videoisplaying .tp-video-play-button {
    display: none
}

.fullcoveredvideo .tp-video-play-button {
    display: none !important
}

.fullscreenvideo .fullscreenvideo audio {
    object-fit: contain !important;
}

.fullscreenvideo .fullscreenvideo video {
    object-fit: contain !important;
}

.fullscreenvideo .fullcoveredvideo audio {
    object-fit: cover !important;
}

.fullscreenvideo .fullcoveredvideo video {
    object-fit: cover !important;
}

.tp-video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 5px;
    opacity: 0;
    transition: opacity .3s;
    background-image: linear-gradient(to bottom, rgb(0, 0, 0) 13%, rgb(50, 50, 50) 100%);
    display: table;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.tp-caption:hover .tp-video-controls {
    opacity: .9;
}

.tp-video-button {
    background: rgba(0, 0, 0, .5);
    border: 0;
    color: #EEE;
    border-radius: 3px;
    cursor: pointer;
    line-height: 12px;
    font-size: 12px;
    color: #fff;
    padding: 0px;
    margin: 0px;
    outline: none;
}

.tp-video-button:hover {
    cursor: pointer;
}

.tp-video-button-wrap,
.tp-video-seek-bar-wrap,
.tp-video-vol-bar-wrap {
    padding: 0px 5px;
    display: table-cell;
    vertical-align: middle;
}

.tp-video-seek-bar-wrap {
    width: 80%
}

.tp-video-vol-bar-wrap {
    width: 20%
}

.tp-volume-bar,
.tp-seek-bar {
    width: 100%;
    cursor: pointer;
    outline: none;
    line-height: 12px;
    margin: 0;
    padding: 0;
}

.rs-fullvideo-cover {
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    position: absolute;
    background: transparent;
    z-index: 5;
}

.disabled_lc .tp-video-play-button,
.rs-background-video-layer video::-webkit-media-controls-start-playback-button,
.rs-background-video-layer video::-webkit-media-controls,
.rs-background-video-layer audio::-webkit-media-controls {
    display: none !important;
}

.tp-audio-html5 .tp-video-controls {
    opacity: 1 !important;
    visibility: visible !important
}


/********************************
    -   DOTTED OVERLAYS -
*********************************/

.tp-dottedoverlay {
    background-repeat: repeat;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 3
}

.tp-dottedoverlay.twoxtwo {
    background: url(../assets/gridtile.png)
}

.tp-dottedoverlay.twoxtwowhite {
    background: url(../assets/gridtile_white.png)
}

.tp-dottedoverlay.threexthree {
    background: url(../assets/gridtile_3x3.png)
}

.tp-dottedoverlay.threexthreewhite {
    background: url(../assets/gridtile_3x3_white.png)
}


/******************************
    -   SHADOWS     -
******************************/

.tp-shadowcover {
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    background: #fff;
    position: absolute;
    z-index: -1;
}

.tp-shadow1 {
    box-shadow: 0 10px 6px -6px rgba(0, 0, 0, 0.8);
}

.tp-shadow2:before,
.tp-shadow2:after,
.tp-shadow3:before,
.tp-shadow4:after {
    z-index: -2;
    position: absolute;
    content: "";
    bottom: 10px;
    left: 10px;
    width: 50%;
    top: 85%;
    max-width: 300px;
    background: transparent;
    box-shadow: 0 15px 10px rgba(0, 0, 0, 0.8);
    transform: rotate(-3deg);
}

.tp-shadow2:after,
.tp-shadow4:after {
    transform: rotate(3deg);
    right: 10px;
    left: auto;
}

.tp-shadow5 {
    position: relative;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
}

.tp-shadow5:before,
.tp-shadow5:after {
    content: "";
    position: absolute;
    z-index: -2;
    box-shadow: 0 0 25px 0px rgba(0, 0, 0, 0.6);
    top: 30%;
    bottom: 0;
    left: 20px;
    right: 20px;
    border-radius: 100px / 20px;
}


/******************************
    -   BUTTONS -
*******************************/

.tp-button {
    padding: 6px 13px 5px;
    border-radius: 3px;
    height: 30px;
    cursor: pointer;
    color: #fff !important;
    text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.6) !important;
    font-size: 15px;
    line-height: 45px !important;
    font-family: arial, sans-serif;
    font-weight: bold;
    letter-spacing: -1px;
    text-decoration: none;
}

.tp-button.big {
    color: #fff;
    text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.6);
    font-weight: bold;
    padding: 9px 20px;
    font-size: 19px;
    line-height: 57px !important;
}

.purchase:hover,
.tp-button:hover,
.tp-button.big:hover {
    background-position: bottom, 15px 11px
}


/*  BUTTON COLORS   */

.tp-button.green,
.tp-button:hover.green,
.purchase.green,
.purchase:hover.green {
    background-color: #21a117;
    box-shadow: 0px 3px 0px 0px #104d0b;
}

.tp-button.blue,
.tp-button:hover.blue,
.purchase.blue,
.purchase:hover.blue {
    background-color: #1d78cb;
    box-shadow: 0px 3px 0px 0px #0f3e68
}

.tp-button.red,
.tp-button:hover.red,
.purchase.red,
.purchase:hover.red {
    background-color: #cb1d1d;
    box-shadow: 0px 3px 0px 0px #7c1212
}

.tp-button.orange,
.tp-button:hover.orange,
.purchase.orange,
.purchase:hover.orange {
    background-color: #ff7700;
    box-shadow: 0px 3px 0px 0px #a34c00
}

.tp-button.darkgrey,
.tp-button.grey,
.tp-button:hover.darkgrey,
.tp-button:hover.grey,
.purchase.darkgrey,
.purchase:hover.darkgrey {
    background-color: #555;
    box-shadow: 0px 3px 0px 0px #222
}

.tp-button.lightgrey,
.tp-button:hover.lightgrey,
.purchase.lightgrey,
.purchase:hover.lightgrey {
    background-color: #888;
    box-shadow: 0px 3px 0px 0px #555
}


/* TP BUTTONS DESKTOP SIZE */

.rev-btn,
.rev-btn:visited {
    outline: none !important;
    box-shadow: none !important;
    text-decoration: none !important;
    line-height: 44px;
    font-size: 17px;
    font-weight: 500;
    padding: 12px 35px;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
    cursor: pointer;
}

.rev-btn.rev-uppercase,
.rev-btn.rev-uppercase:visited {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 15px;
    font-weight: 900;
}

.rev-btn.rev-withicon i {
    font-size: 15px;
    font-weight: normal;
    position: relative;
    top: 0px;
    transition: all 0.2s ease-out !important;
    margin-left: 10px !important;
}

.rev-btn.rev-hiddenicon i {
    font-size: 15px;
    font-weight: normal;
    position: relative;
    top: 0px;
    transition: all 0.2s ease-out !important;
    opacity: 0;
    margin-left: 0px !important;
    width: 0px !important;
}

.rev-btn.rev-hiddenicon:hover i {
    opacity: 1 !important;
    margin-left: 10px !important;
    width: auto !important;
}


/* REV BUTTONS MEDIUM */

.rev-btn.rev-medium,
.rev-btn.rev-medium:visited {
    line-height: 36px;
    font-size: 14px;
    padding: 10px 30px;
}

.rev-btn.rev-medium.rev-withicon i {
    font-size: 14px;
    top: 0px;
}

.rev-btn.rev-medium.rev-hiddenicon i {
    font-size: 14px;
    top: 0px;
}


/* REV BUTTONS SMALL */

.rev-btn.rev-small,
.rev-btn.rev-small:visited {
    line-height: 28px;
    font-size: 12px;
    padding: 7px 20px;
}

.rev-btn.rev-small.rev-withicon i {
    font-size: 12px;
    top: 0px;
}

.rev-btn.rev-small.rev-hiddenicon i {
    font-size: 12px;
    top: 0px;
}


/* ROUNDING OPTIONS */

.rev-maxround {
    border-radius: 30px;
}

.rev-minround {
    border-radius: 3px;
}


/* BURGER BUTTON */

.rev-burger {
    position: relative;
    width: 60px;
    height: 60px;
    box-sizing: border-box;
    padding: 22px 0 0 14px;
    border-radius: 50%;
    border: 1px solid rgba(51, 51, 51, 0.25);
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
}

.rev-burger span {
    display: block;
    width: 30px;
    height: 3px;
    background: #333;
    transition: .7s;
    pointer-events: none;
    transform-style: flat !important;
}

.rev-burger span:nth-child(2) {
    margin: 3px 0;
}

#dialog_addbutton .rev-burger:hover :first-child,
.open .rev-burger :first-child,
.open.rev-burger :first-child {
    transform: translateY(6px) rotate(-45deg);
}

#dialog_addbutton .rev-burger:hover :nth-child(2),
.open .rev-burger :nth-child(2),
.open.rev-burger :nth-child(2) {
    transform: rotate(-45deg);
    opacity: 0;
}

#dialog_addbutton .rev-burger:hover :last-child,
.open .rev-burger :last-child,
.open.rev-burger :last-child {
    transform: translateY(-6px) rotate(-135deg);
}

.rev-burger.revb-white {
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.rev-burger.revb-white span {
    background: #fff;
}

.rev-burger.revb-whitenoborder {
    border: 0;
}

.rev-burger.revb-whitenoborder span {
    background: #fff;
}

.rev-burger.revb-darknoborder {
    border: 0;
}

.rev-burger.revb-darknoborder span {
    background: #333;
}

.rev-burger.revb-whitefull {
    background: #fff;
    border: none;
}

.rev-burger.revb-whitefull span {
    background: #333;
}

.rev-burger.revb-darkfull {
    background: #333;
    border: none;
}

.rev-burger.revb-darkfull span {
    background: #fff;
}


/* SCROLL DOWN BUTTON */

@keyframes rev-ani-mouse {
    0% {
        opacity: 1;
        top: 29%;
    }
    15% {
        opacity: 1;
        top: 50%;
    }
    50% {
        opacity: 0;
        top: 50%;
    }
    100% {
        opacity: 0;
        top: 29%;
    }
}

.rev-scroll-btn {
    display: inline-block;
    position: relative;
    left: 0;
    right: 0;
    text-align: center;
    cursor: pointer;
    width: 35px;
    height: 55px;
    box-sizing: border-box;
    border: 3px solid white;
    border-radius: 23px;
}

.rev-scroll-btn>* {
    display: inline-block;
    line-height: 18px;
    font-size: 13px;
    font-weight: normal;
    color: #7f8c8d;
    color: #ffffff;
    font-family: "proxima-nova", "Helvetica Neue", Helvetica, Arial, sans-serif;
    letter-spacing: 2px;
}

.rev-scroll-btn>*:hover,
.rev-scroll-btn>*:focus,
.rev-scroll-btn>*.active {
    color: #ffffff;
}

.rev-scroll-btn>*:hover,
.rev-scroll-btn>*:focus,
.rev-scroll-btn>*:active,
.rev-scroll-btn>*.active {
    opacity: 0.8;
}

.rev-scroll-btn.revs-fullwhite {
    background: #fff;
}

.rev-scroll-btn.revs-fullwhite span {
    background: #333;
}

.rev-scroll-btn.revs-fulldark {
    background: #333;
    border: none;
}

.rev-scroll-btn.revs-fulldark span {
    background: #fff;
}

.rev-scroll-btn span {
    position: absolute;
    display: block;
    top: 29%;
    left: 50%;
    width: 8px;
    height: 8px;
    margin: -4px 0 0 -4px;
    background: white;
    border-radius: 50%;
    animation: rev-ani-mouse 2.5s linear infinite;
}

.rev-scroll-btn.revs-dark {
    border-color: #333;
}

.rev-scroll-btn.revs-dark span {
    background: #333;
}

.rev-control-btn {
    position: relative;
    display: inline-block;
    z-index: 5;
    color: #FFF;
    font-size: 20px;
    line-height: 60px;
    font-weight: 400;
    font-style: normal;
    font-family: Raleway;
    text-decoration: none;
    text-align: center;
    background-color: #000;
    border-radius: 50px;
    text-shadow: none;
    background-color: rgba(0, 0, 0, 0.50);
    width: 60px;
    height: 60px;
    box-sizing: border-box;
    cursor: pointer;
}

.rev-cbutton-dark-sr {
    border-radius: 3px;
}

.rev-cbutton-light {
    color: #333;
    background-color: rgba(255, 255, 255, 0.75);
}

.rev-cbutton-light-sr {
    color: #333;
    border-radius: 3px;
    background-color: rgba(255, 255, 255, 0.75);
}

.rev-sbutton {
    line-height: 37px;
    width: 37px;
    height: 37px;
}

.rev-sbutton-blue {
    background-color: #3B5998
}

.rev-sbutton-lightblue {
    background-color: #00A0D1;
}

.rev-sbutton-red {
    background-color: #DD4B39;
}


/************************************
-   TP BANNER TIMER     -
*************************************/

.tp-bannertimer {
    visibility: hidden;
    width: 100%;
    height: 5px;
    background: #000;
    background: rgba(0, 0, 0, 0.15);
    position: absolute;
    z-index: 200;
    top: 0px
}

.tp-bannertimer.tp-bottom {
    top: auto;
    bottom: 0px !important;
    height: 5px
}


/*********************************************
-   BASIC SETTINGS FOR THE BANNER   -
***********************************************/

.tp-caption img {
    background: transparent;
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF,endColorstr=#00FFFFFF)";
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF, endColorstr=#00FFFFFF);
    zoom: 1;
}

.tp-caption img {}

.caption.slidelink a div,
.tp-caption.slidelink a div {
    width: 3000px;
    height: 1500px;
    background: url(../assets/coloredbg.png) repeat
}

.tp-caption.slidelink a span {
    background: url(../assets/coloredbg.png) repeat
}

.tp-shape {
    width: 100%;
    height: 100%;
}


/*********************************************
-   WOOCOMMERCE STYLES  -
***********************************************/

.tp-caption .rs-starring {
    display: inline-block
}

.tp-caption .rs-starring .star-rating {
    float: none;
    display: inline-block;
    vertical-align: top;
    color: #FFC321 !important;
}

.tp-caption .rs-starring .star-rating,
.tp-caption .rs-starring-page .star-rating {
    position: relative;
    height: 1em;
    width: 5.4em;
    font-family: star;
    font-size: 1em !important;
}

.tp-caption .rs-starring .star-rating:before,
.tp-caption .rs-starring-page .star-rating:before {
    content: "\73\73\73\73\73";
    color: #E0DADF;
    float: left;
    top: 0;
    left: 0;
    position: absolute;
}

.tp-caption .rs-starring .star-rating span {
    overflow: hidden;
    float: left;
    top: 0;
    left: 0;
    position: absolute;
    padding-top: 1.5em;
    font-size: 1em !important;
}

.tp-caption .rs-starring .star-rating span:before,
.tp-caption .rs-starring .star-rating span:before {
    content: "\53\53\53\53\53";
    top: 0;
    position: absolute;
    left: 0;
}


/******************************
    -   LOADER FORMS    -
********************************/

.tp-loader {
    top: 50%;
    left: 50%;
    z-index: 10000;
    position: absolute;
}

.tp-loader.spinner0 {
    width: 40px;
    height: 40px;
    background-color: #fff;
    background-image: url(../assets/loader.gif);
    background-repeat: no-repeat;
    background-position: center center;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
    margin-top: -20px;
    margin-left: -20px;
    animation: tp-rotateplane 1.2s infinite ease-in-out;
    border-radius: 3px;
}

.tp-loader.spinner1 {
    width: 40px;
    height: 40px;
    background-color: #fff;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
    margin-top: -20px;
    margin-left: -20px;
    animation: tp-rotateplane 1.2s infinite ease-in-out;
    border-radius: 3px;
}

.tp-loader.spinner5 {
    background-image: url(../assets/loader.gif);
    background-repeat: no-repeat;
    background-position: 10px 10px;
    background-color: #fff;
    margin: -22px -22px;
    width: 44px;
    height: 44px;
    border-radius: 3px;
}

@keyframes tp-rotateplane {
    0% {
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    }
    50% {
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    }
    100% {
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}

.tp-loader.spinner2 {
    width: 40px;
    height: 40px;
    margin-top: -20px;
    margin-left: -20px;
    background-color: #ff0000;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
    border-radius: 100%;
    animation: tp-scaleout 1.0s infinite ease-in-out;
}

@keyframes tp-scaleout {
    0% {
        transform: scale(0.0);
    }
    100% {
        transform: scale(1.0);
        opacity: 0;
    }
}

.tp-loader.spinner3 {
    margin: -9px 0px 0px -35px;
    width: 70px;
    text-align: center;
}

.tp-loader.spinner3 .bounce1,
.tp-loader.spinner3 .bounce2,
.tp-loader.spinner3 .bounce3 {
    width: 18px;
    height: 18px;
    background-color: #fff;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
    border-radius: 100%;
    display: inline-block;
    animation: tp-bouncedelay 1.4s infinite ease-in-out;
    /* Prevent first frame from flickering when animation starts */
    animation-fill-mode: both;
}

.tp-loader.spinner3 .bounce1 {
    animation-delay: -0.32s;
}

.tp-loader.spinner3 .bounce2 {
    animation-delay: -0.16s;
}

@keyframes tp-bouncedelay {
    0%,
    80%,
    100% {
        transform: scale(0.0);
    }
    40% {
        transform: scale(1.0);
    }
}

.tp-loader.spinner4 {
    margin: -20px 0px 0px -20px;
    width: 40px;
    height: 40px;
    text-align: center;
    animation: tp-rotate 2.0s infinite linear;
}

.tp-loader.spinner4 .dot1,
.tp-loader.spinner4 .dot2 {
    width: 60%;
    height: 60%;
    display: inline-block;
    position: absolute;
    top: 0;
    background-color: #fff;
    border-radius: 100%;
    animation: tp-bounce 2.0s infinite ease-in-out;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
}

.tp-loader.spinner4 .dot2 {
    top: auto;
    bottom: 0px;
    animation-delay: -1.0s;
}

@keyframes tp-rotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes tp-bounce {
    0%,
    100% {
        transform: scale(0.0);
    }
    50% {
        transform: scale(1.0);
    }
}


/***********************************************
    -  STANDARD NAVIGATION SETTINGS 
***********************************************/

.tp-thumbs.navbar,
.tp-bullets.navbar,
.tp-tabs.navbar {
    border: none;
    min-height: 0;
    margin: 0;
    border-radius: 0;
}

.tp-tabs,
.tp-thumbs,
.tp-bullets {
    position: absolute;
    display: block;
    z-index: 1000;
    top: 0px;
    left: 0px;
}

.tp-tab,
.tp-thumb {
    cursor: pointer;
    position: absolute;
    opacity: 0.5;
    box-sizing: border-box;
}

.tp-arr-imgholder,
.tp-videoposter,
.tp-thumb-image,
.tp-tab-image {
    background-position: center center;
    background-size: cover;
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0px;
    left: 0px;
}

.tp-tab:hover,
.tp-tab.selected,
.tp-thumb:hover,
.tp-thumb.selected {
    opacity: 1;
}

.tp-tab-mask,
.tp-thumb-mask {
    box-sizing: border-box !important;
}

.tp-tabs,
.tp-thumbs {
    box-sizing: content-box !important;
}

.tp-bullet {
    width: 15px;
    height: 15px;
    position: absolute;
    background: #fff;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
}

.tp-bullet.selected,
.tp-bullet:hover {
    background: #fff;
}

.tparrows {
    cursor: pointer;
    background: #000;
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    position: absolute;
    display: block;
    z-index: 1000;
}

.tparrows:hover {
    background: #000;
}

.tparrows:before {
    font-family: "revicons";
    font-size: 15px;
    color: #fff;
    display: block;
    line-height: 40px;
    text-align: center;
}

.tparrows.tp-leftarrow:before {
    content: '\e824';
}

.tparrows.tp-rightarrow:before {
    content: '\e825';
}


/***************************
    - KEN BURNS FIXES -
***************************/

body.rtl .tp-kbimg {
    left: 0 !important
}


/***************************
    - 3D SHADOW MODE -
***************************/

.dddwrappershadow {
    box-shadow: 0 45px 100px rgba(0, 0, 0, 0.4);
}


/*******************
    - DEBUG MODE -
*******************/

.hglayerinfo {
    position: fixed;
    bottom: 0px;
    left: 0px;
    color: #FFF;
    font-size: 12px;
    line-height: 20px;
    font-weight: 600;
    background: rgba(0, 0, 0, 0.75);
    padding: 5px 10px;
    z-index: 2000;
    white-space: normal;
}

.hginfo {
    position: absolute;
    top: -2px;
    left: -2px;
    color: #e74c3c;
    font-size: 12px;
    font-weight: 600;
    background: #000;
    padding: 2px 5px;
}

.indebugmode .tp-caption:hover {
    border: 1px dashed #c0392b !important;
}

.helpgrid {
    border: 2px dashed #c0392b;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 0
}

#revsliderlogloglog {
    padding: 15px;
    color: #fff;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 200px;
    height: 150px;
    background: rgba(0, 0, 0, 0.7);
    z-index: 100000;
    font-size: 10px;
    overflow: scroll;
}


/** 
INSTAGRAM FILTERS BY UNA 
https://una.im/CSSgram/
**/

.aden {
    filter: hue-rotate(-20deg) contrast(.9) saturate(.85) brightness(1.2)
}

.aden::after {
    background: linear-gradient(to right, rgba(66, 10, 14, .2), transparent);
    mix-blend-mode: darken
}

.perpetua::after,
.reyes::after {
    mix-blend-mode: soft-light;
    opacity: .5
}

.inkwell {
    filter: sepia(.3) contrast(1.1) brightness(1.1) grayscale(1)
}

.perpetua::after {
    background: linear-gradient(to bottom, #005b9a, #e6c13d)
}

.reyes {
    filter: sepia(.22) brightness(1.1) contrast(.85) saturate(.75)
}

.reyes::after {
    background: #efcdad
}

.gingham {
    filter: brightness(1.05) hue-rotate(-10deg)
}

.gingham::after {
    background: linear-gradient(to right, rgba(66, 10, 14, .2), transparent);
    mix-blend-mode: darken
}

.toaster {
    filter: contrast(1.5) brightness(.9)
}

.toaster::after {
    background: radial-gradient(circle, #804e0f, #3b003b);
    mix-blend-mode: screen
}

.walden {
    filter: brightness(1.1) hue-rotate(-10deg) sepia(.3) saturate(1.6)
}

.walden::after {
    background: #04c;
    mix-blend-mode: screen;
    opacity: .3
}

.hudson {
    filter: brightness(1.2) contrast(.9) saturate(1.1)
}

.hudson::after {
    background: radial-gradient(circle, #a6b1ff 50%, #342134);
    mix-blend-mode: multiply;
    opacity: .5
}

.earlybird {
    filter: contrast(.9) sepia(.2)
}

.earlybird::after {
    background: radial-gradient(circle, #d0ba8e 20%, #360309 85%, #1d0210 100%);
    mix-blend-mode: overlay
}

.mayfair {
    filter: contrast(1.1) saturate(1.1)
}

.mayfair::after {
    background: radial-gradient(circle at 40% 40%, rgba(255, 255, 255, .8), rgba(255, 200, 200, .6), #111 60%);
    mix-blend-mode: overlay;
    opacity: .4
}

.lofi {
    filter: saturate(1.1) contrast(1.5)
}

.lofi::after {
    background: radial-gradient(circle, transparent 70%, #222 150%);
    mix-blend-mode: multiply
}

._1977 {
    filter: contrast(1.1) brightness(1.1) saturate(1.3)
}

._1977:after {
    background: rgba(243, 106, 188, .3);
    mix-blend-mode: screen
}

.brooklyn {
    filter: contrast(.9) brightness(1.1)
}

.brooklyn::after {
    background: radial-gradient(circle, rgba(168, 223, 193, .4) 70%, #c4b7c8);
    mix-blend-mode: overlay
}

.xpro2 {
    filter: sepia(.3)
}

.xpro2::after {
    background: radial-gradient(circle, #e6e7e0 40%, rgba(43, 42, 161, .6) 110%);
    mix-blend-mode: color-burn
}

.nashville {
    filter: sepia(.2) contrast(1.2) brightness(1.05) saturate(1.2)
}

.nashville::after {
    background: rgba(0, 70, 150, .4);
    mix-blend-mode: lighten
}

.nashville::before {
    background: rgba(247, 176, 153, .56);
    mix-blend-mode: darken
}

.lark {
    filter: contrast(.9)
}

.lark::after {
    background: rgba(242, 242, 242, .8);
    mix-blend-mode: darken
}

.lark::before {
    background: #22253f;
    mix-blend-mode: color-dodge
}

.moon {
    filter: grayscale(1) contrast(1.1) brightness(1.1)
}

.moon::before {
    background: #a0a0a0;
    mix-blend-mode: soft-light
}

.moon::after {
    background: #383838;
    mix-blend-mode: lighten
}

.clarendon {
    filter: contrast(1.2) saturate(1.35)
}

.clarendon:before {
    background: rgba(127, 187, 227, .2);
    mix-blend-mode: overlay
}

.willow {
    filter: grayscale(.5) contrast(.95) brightness(.9)
}

.willow::before {
    background-color: radial-gradient(40%, circle, #d4a9af 55%, #000 150%);
    mix-blend-mode: overlay
}

.willow::after {
    background-color: #d8cdcb;
    mix-blend-mode: color
}

.rise {
    filter: brightness(1.05) sepia(.2) contrast(.9) saturate(.9)
}

.rise::after {
    background: radial-gradient(circle, rgba(232, 197, 152, .8), transparent 90%);
    mix-blend-mode: overlay;
    opacity: .6
}

.rise::before {
    background: radial-gradient(circle, rgba(236, 205, 169, .15) 55%, rgba(50, 30, 7, .4));
    mix-blend-mode: multiply
}

._1977:after,
._1977:before,
.aden:after,
.aden:before,
.brooklyn:after,
.brooklyn:before,
.clarendon:after,
.clarendon:before,
.earlybird:after,
.earlybird:before,
.gingham:after,
.gingham:before,
.hudson:after,
.hudson:before,
.inkwell:after,
.inkwell:before,
.lark:after,
.lark:before,
.lofi:after,
.lofi:before,
.mayfair:after,
.mayfair:before,
.moon:after,
.moon:before,
.nashville:after,
.nashville:before,
.perpetua:after,
.perpetua:before,
.reyes:after,
.reyes:before,
.rise:after,
.rise:before,
.slumber:after,
.slumber:before,
.toaster:after,
.toaster:before,
.walden:after,
.walden:before,
.willow:after,
.willow:before,
.xpro2:after,
.xpro2:before {
    content: '';
    display: block;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none
}

._1977,
.aden,
.brooklyn,
.clarendon,
.earlybird,
.gingham,
.hudson,
.inkwell,
.lark,
.lofi,
.mayfair,
.moon,
.nashville,
.perpetua,
.reyes,
.rise,
.slumber,
.toaster,
.walden,
.willow,
.xpro2 {
    position: relative
}

._1977 img,
.aden img,
.brooklyn img,
.clarendon img,
.earlybird img,
.gingham img,
.hudson img,
.inkwell img,
.lark img,
.lofi img,
.mayfair img,
.moon img,
.nashville img,
.perpetua img,
.reyes img,
.rise img,
.slumber img,
.toaster img,
.walden img,
.willow img,
.xpro2 img {
    width: 100%;
    z-index: 1
}

._1977:before,
.aden:before,
.brooklyn:before,
.clarendon:before,
.earlybird:before,
.gingham:before,
.hudson:before,
.inkwell:before,
.lark:before,
.lofi:before,
.mayfair:before,
.moon:before,
.nashville:before,
.perpetua:before,
.reyes:before,
.rise:before,
.slumber:before,
.toaster:before,
.walden:before,
.willow:before,
.xpro2:before {
    z-index: 2
}

._1977:after,
.aden:after,
.brooklyn:after,
.clarendon:after,
.earlybird:after,
.gingham:after,
.hudson:after,
.inkwell:after,
.lark:after,
.lofi:after,
.mayfair:after,
.moon:after,
.nashville:after,
.perpetua:after,
.reyes:after,
.rise:after,
.slumber:after,
.toaster:after,
.walden:after,
.willow:after,
.xpro2:after {
    z-index: 3
}

.slumber {
    filter: saturate(.66) brightness(1.05)
}

.slumber::after {
    background: rgba(125, 105, 24, .5);
    mix-blend-mode: soft-light
}

.slumber::before {
    background: rgba(69, 41, 12, .4);
    mix-blend-mode: lighten
}

.tp-kbimg-wrap:before,
.tp-kbimg-wrap:after {
    height: 500%;
    width: 500%
}

.rs-background-video-layer iframe {
    visibility: inherit !important;
}

.module-slider-banner_video {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.module-slider-banner {
    overflow: hidden;
}

.tv {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.tv .screen.active {
    opacity: 1;
}

.tv .screen {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    margin: auto;
    opacity: 0;
    transition: opacity .5s;
}


/*===================End Slider Revolution css Client=============================*/


/*======================Iframe client====================================*/

.module-subscribe--client .module-subscribe_email label,
.module-subscribe--client .module-subscribe_list-header,
.module-subscribe--client .module-subscribe_email .module_required,
.module-subscribe--client .module-subscribe_mailing-list,
.module-subscribe--client .module-subscribe .CaptchaContainer,
.module-subscribe--client .module-subscribe .module_actions,
.module-subscribe--client .module_introduction {
    display: none;
}

.module-subscribe--client .module-subscribe_mailing-list.js--revealed,
.module-subscribe--client .module-subscribe .module_actions.js--revealed {
    display: block;
}

.module-subscribe--client .module-subscribe_submit-button {
    /*background: url(../design/svg/arrow-right-solid-white.svg) no-repeat;
    font-size: 0;
    padding: 10px;*/
    background: #ba8f00;
    border-radius: 2px;
    color: white;
    padding: 10px 15px;
    font-size: 14px;
    font-weight: bold;
}

.module-subscribe--client .module-subscribe_table-wrap {
    position: relative;
}

.module-subscribe--client .module-subscribe_form tr:nth-child(odd) {
    padding-right: 40px;
}

.module-subscribe--client .module-subscribe_form tr {
    width: 100%;
}

.module-subscribe--client .module_actions {
    /*border: 0;
    background-color: #BA8F00;
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 2px;
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
    margin: 0;
    padding: 2px 6px;*/
}

.page-email-alerts-client {
    /*background-color: #003087;*/
    color: #003087;
}

.module-subscribe--client .module_input[type="text"] {
    font-size: 12px;
    font-weight: 400;
    padding: 8px 20px;
    height: 30px;
    max-width: 600px;
    width: 100%;
}

.module-email-alerts-iframe h3 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 600;
    padding: 0px 0 10px 0;
    color: #003087;
    margin: 0;
    line-height: 18px;
    letter-spacing: 0;
}

.module-email-alerts-iframe_intro {
    font-weight: 100;
    margin-bottom: 20px;
    display: block;
    color: #003087;
    font-size: 16px;
}

.page-email-alerts-client .layout--iframe .pane--content .module {
    padding: 0;
}

.page-email-alerts-client .pane--content .module_container--outer {
    padding: 0;
}

.module-subscribe--client input[type="checkbox"]+label:before,
.module-subscribe--client input[type="radio"]+label:before {
    border: 1px solid #1d1d1d;
}

.module-subscribe--client input[type="checkbox"]:checked+label:after,
.module-subscribe--client input[type="radio"]:checked+label:after {
    background-color: #1d1d1d;
}

.page-email-alerts-client h2 {
    color: #003087;
}


/*===================End Iframe client====================================*/


/*# sourceMappingURL=global.css.map*/

.tp-mask-wrap a {
    color: #fff;
}

.tp-caption.tp-shape.tp-shapewrapper.tp-resizeme.rev_layer_in_group {
    font-size: 16px !important;
}

.module-calculator-tsx {
    position: relative;
    /*    margin-top: 30px;*/
    padding-bottom: 50px;
}

.module-stock-quote-tsx {
    margin-top: 30px;
}

.module-calculator-and-analyst .module-analyst-coverage {
    margin-top: 30px;
}

.tp-caption.tp-shape.tp-shapewrapper.tp-resizeme.rev_layer_in_group {
    max-height: auto !important;
}

.imgRightAlign {
    max-width: 32.5%;
    float: right;
    margin: 10px 0 15px 15px;
}

.imgRightAlign>img,
.imgLeftAlign>img {
    display: block;
    width: 100%;
}

@media screen and (min-width: 1025px) {
    .module-slider-banner--inv {
        height: 100vh;
    }
}


/* wkar: prevent slide arrows overlap with button on specific viewports */


/* @media (max-width: 375px),
(min-width: 795px) and (max-width: 910px),
(min-width: 1024px) and (max-width: 1085px) {
    .module-slider-banner--landing .tp-parallax-wrap:nth-last-child(-n+2) {
        padding-top: 10px !important;
    }
} */

.layout--home .module-stock-banner {
    bottom: -50px;
}

@media only screen and (max-width: 767px) {
    .layout--home .pane--content {
        padding-top: 75px;
    }
    .layout--home .module-stock-banner {
        bottom: -75px;
    }
}

@media only screen and (max-width: 480px) {
    .layout--home .module-stock-banner {
        bottom: -80px;
    }
}

.pane--content {
    margin-top: 100px;
}

.Sectioninvestors .pane--content,
.Sectionpage-investors .pane--content {
    margin-top: 0;
}

@media only screen and (max-width: 1100px) {
    .pane--content {
        margin-top: 60px;
    }
}

.module-intro {
    border-bottom: 1px solid #003087;
}

.module-intro_content {
    display: flex;
    align-items: center;
}

.module-intro_block {
    width: 65%;
}

.module-intro_image {
    width: 39%;
    text-align: right;
}

.module-intro_vertalign p {
    font-weight: 100;
    line-height: 22px;
    padding: 30px 0px;
    margin-top: 0;
}

.layout--home .module-intro_vertalign p {
    padding: 0;
    margin-top: 0;
}

.pane--content .module.module-home-content {
    padding-top: 85px;
    padding-bottom: 30px;
}

.module-block_container {
    display: flex;
}

.module-home-content .module_title {
    border-top: 4px solid #003087;
    margin-bottom: 30px;
    padding-top: 30px;
    line-height: 40px;
    letter-spacing: -1px;
    font-weight: 600;
}

.module-primary-block {
    width: 65%;
}

.module-sidebar-block {
    width: 39%;
    padding-left: 60px;
}

.module-news_subtitle {
    font-size: 24px;
    line-height: 28px;
    letter-spacing: -0.5px;
    color: white;
    background: #003087;
    padding: 12px 0;
    font-weight: 500;
}

.module-news_subtitle:before {
    font-family: 'q4-icons' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\e920";
    display: inline-block;
    margin: 0 10px 0 30px;
    background: white;
    border-radius: 10px;
    color: #003087;
    position: relative;
    top: -3px;
    font-size: 12px;
    padding: 4px 0 4px 5.5px;
    line-height: 12px;
    width: 20px;
    height: 20px;
}

.module-sidebar-block_downloads .module_item {
    padding: 0;
    border: none;
}

.module-sidebar-block p:not(.module_loader) {
    padding-bottom: 15px;
    margin: 10px 0;
}

.module-sidebar-block .button {
    margin: 30px 0px 45px;
}

.module-sidebar-block_downloads .module-downloads_title-link {
    display: block;
    color: #003896;
    padding-bottom: 8px;
    font-weight: 400;
    letter-spacing: -0.6px;
    text-decoration: none;
    line-height: 22px;
}

.module-sidebar-block_downloads .module_item-container {
    padding-bottom: 15px;
    margin: 10px 0;
}

.module-bottom-content .module_container--inner {
    display: flex;
    flex-wrap: wrap;
}

.module-bottom-content {
    margin-top: -50px;
}

.module-bottom-content_block {
    width: 33.33%;
    padding-top: 70px;
}

.module-bottom-content_block-wrap {
    height: 100%;
    position: relative;
    padding: 0 23px 20px 23px;
}

.module-bottom-content .module_title {
    border-top: 3px solid #003087;
    min-height: 113px;
    margin-bottom: 30px;
    padding-top: 30px;
    line-height: 40px;
}

.module-bottom-content_copy {
    margin-bottom: 36px;
}

.module-bottom-content .button {
    position: absolute;
    bottom: 0;
}

@media only screen and (max-width: 1100px) {
    .module-bottom-content .module_title {
        line-height: 35px;
    }
    .pane--content .module_container--outer {
        width: calc(100% - 40px);
        padding: 0;
    }
    .layout--home .pane--content .module_container--outer,
    .page-main-content .pane--content .module_container--outer {
        width: 85%;
    }
    .module-intro_content,
    .module-bottom-content .module_container--inner,
    .module-block_container {
        display: block;
    }
    .module-intro_block,
    .module-intro_image,
    .module-primary-block,
    .module-sidebar-block,
    .module-bottom-content_block {
        width: 100%;
    }
    .module-bottom-content .button {
        position:static;
    }
    .module-intro_image {
        text-align: left;
    }
    .module-sidebar-block {
        padding-left: 0;
    }
    .module-home-content .module_title {
        padding-top: 10px;
        margin-bottom: 20px;
    }
    .module-bottom-content .module_container--outer {
        width: 85%;
        margin: 0 auto;
        padding: 0;
    }
    .module-bottom-content_block-wrap {
        padding: 0;
    }
}

@media only screen and (max-width: 767px) {
    .pane--content .module.module-intro {
        padding-top: 0;
    }
    .module-email-alerts-popup_container {
        display: block;
        text-align: center;
    }
}


/*About Us*/

.module-html--copy-block p {
    padding-bottom: 15px;
}

.module-strategy-intro .list--custom li {
    font-weight: 400;
    line-height: 1;
}

.module-history_card {
    display: none;
}

.module-history_card.js--active {
    display: block;
}

.module-history_tab {
    display: inline-block;
    padding-bottom: 20px;
}

.module-history_tab .module-history_legend {
    display: inline-block;
    padding-right: 40px;
    font-size: 16px;
    font-weight: 100;
    color: #003087;
    cursor: pointer;
}

.module-history_tab .module-history_legend .module-history_timeline-span {
    font-size: 11px;
    display: block;
    font-weight: 600;
    margin-top: 7px;
}

.module-history_tab.js--active .module-history_legend .module-history_timeline-span {
    padding-bottom: 10px;
    border-bottom: 2px solid #ba8f00;
}

.module-history_items {
    display: flex;
    border-bottom: 1px solid grey;
    padding-bottom: 30px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 40px;
    overflow-x: auto;
    white-space: nowrap;
    width: 100%;
    display: -webkit-flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    padding-top: 30px;
}

.module-history_item-title span {
    display: block;
    font-size: 14px;
    font-weight: bold;
    color: #ba8f00;
    padding-bottom: 10px;
}

.module-history_item-title {
    font-size: 18px;
    font-weight: bold;
    padding-bottom: 10px;
    margin-bottom: 0;
}

.module-history_item-description span {
    display: block;
    margin: 10px 0;
}

.module-history_item-description p {
    color: #003087;
    font-size: 12px;
    line-height: 18px;
}

@media only screen and (max-width: 1023px) {
    .module-history_tab .module-history_legend {
        padding-right: 19px;
    }
}

@media only screen and (max-width: 767px) { 
    .module-history_tab {
        width:49%;
    }
}


/*mCustomScrollbar*/

.mCustomScrollBox {
    position: relative;
    overflow: hidden;
    height: 100%;
    max-width: 100%;
    outline: 0;
    direction: ltr;
}

.mCSB_container {
    overflow: hidden;
    width: auto;
    height: auto;
}

.mCSB_inside>.mCSB_container {
    margin-right: 30px;
}

.mCSB_horizontal.mCSB_inside>.mCSB_container {
    margin-right: 0;
    margin-bottom: 30px;
}

.module-history_items .mCSB_container {
    display: -webkit-flex;
    display: flex;
}

.module-history_items .module-history_item {
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    margin-right: 20px;
    white-space: normal;
}

.module-history_items .module-history_item .module-history_item-inner {
    width: 330px;
    background: white;
    border-radius: 5px;
    height: 205px;
    display: inline-block;
    padding: 10px;
    box-shadow: 0 2px 4px 0 #979797;
    overflow-y: scroll;
}

.mCSB_scrollTools {
    position: absolute;
    width: 16px;
    height: auto;
    left: auto;
    top: 0;
    right: 0;
    bottom: 0;
    opacity: .75;
    filter: "alpha(opacity=75)";
    -ms-filter: "alpha(opacity=75)";
}

.mCSB_scrollTools,
.mCSB_scrollTools .mCSB_buttonDown,
.mCSB_scrollTools .mCSB_buttonLeft,
.mCSB_scrollTools .mCSB_buttonRight,
.mCSB_scrollTools .mCSB_buttonUp,
.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    -webkit-transition: opacity .2s ease-in-out, background-color .2s ease-in-out;
    -moz-transition: opacity .2s ease-in-out, background-color .2s ease-in-out;
    -o-transition: opacity .2s ease-in-out, background-color .2s ease-in-out;
    transition: opacity .2s ease-in-out, background-color .2s ease-in-out;
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal {
    width: auto;
    height: 16px;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal {
    height: 20px;
}

.mCSB_scrollTools .mCSB_draggerContainer {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    height: auto;
}

.mCSB_scrollTools .mCSB_dragger {
    cursor: pointer;
    width: 100%;
    height: 30px;
    z-index: 1;
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_dragger {
    width: 30px;
    height: 100%;
    left: 0;
}

.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    position: relative;
    width: 4px;
    height: 100%;
    margin: 0 auto;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    border-radius: 16px;
    text-align: center;
}

.mCSB_scrollTools,
.mCSB_scrollTools .mCSB_buttonDown,
.mCSB_scrollTools .mCSB_buttonLeft,
.mCSB_scrollTools .mCSB_buttonRight,
.mCSB_scrollTools .mCSB_buttonUp,
.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    -webkit-transition: opacity .2s ease-in-out, background-color .2s ease-in-out;
    -moz-transition: opacity .2s ease-in-out, background-color .2s ease-in-out;
    -o-transition: opacity .2s ease-in-out, background-color .2s ease-in-out;
    transition: opacity .2s ease-in-out, background-color .2s ease-in-out;
}

.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: #fff;
    background-color: rgba(255, 255, 255, .75);
    filter: "alpha(opacity=75)";
    -ms-filter: "alpha(opacity=75)";
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
    width: 100%;
    height: 4px;
    margin: 6px auto;
}

.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    width: 6px;
    margin: 3px 5px;
    position: absolute;
    height: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.mCS-inset-2-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-2.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-3-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-3.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
    height: 6px;
    margin: 5px 3px;
    position: absolute;
    width: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0, 0, 0, .75);
}

.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: #fff;
    background-color: rgba(255, 255, 255, .75);
}

.mCS-inset-2-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-2.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-3-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-3.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
    height: 9px;
}

.mCSB_scrollTools .mCSB_draggerRail {
    width: 2px;
    height: 100%;
    margin: 0 auto;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    border-radius: 16px;
}

.mCSB_scrollTools .mCSB_draggerRail {
    background-color: #000;
    background-color: rgba(0, 0, 0, .4);
    filter: "alpha(opacity=40)";
    -ms-filter: "alpha(opacity=40)";
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_draggerRail {
    width: 100%;
    height: 2px;
    margin: 7px 0;
}

.mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail,
.mCS-inset-2.mCSB_scrollTools .mCSB_draggerRail,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_draggerRail,
.mCS-inset-3.mCSB_scrollTools .mCSB_draggerRail,
.mCS-inset-dark.mCSB_scrollTools .mCSB_draggerRail,
.mCS-inset.mCSB_scrollTools .mCSB_draggerRail {
    width: 12px;
    background-color: #000;
    background-color: rgba(0, 0, 0, .2);
}

.mCS-inset-2-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-inset-2.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-inset-3-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-inset-3.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-inset-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-inset.mCSB_scrollTools_horizontal .mCSB_draggerRail {
    width: 100%;
    height: 12px;
    margin: 2px 0;
}

.mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_draggerRail,
.mCS-inset-dark.mCSB_scrollTools .mCSB_draggerRail {
    background-color: #000;
    background-color: rgba(0, 0, 0, .1);
}

.mCS-inset-3-dark.mCSB_scrollTools .mCSB_draggerRail {
    background-color: #000;
    background-color: rgba(0, 0, 0, .6);
}

.mCS-inset-2-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-inset-2.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-inset-3-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-inset-3.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-inset-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-inset.mCSB_scrollTools_horizontal .mCSB_draggerRail {
    height: 15px;
}


/*END mCustomScrollbar*/


/*Strategy*/

.module-faq .module_container--inner {
    border-top: 1px solid #003087;
    padding-top: 22px;
    margin-top: 15px;
}

.module-mission-strategy {
    margin-top: 10px;
}

.module-mission-strategy h2 {
    margin: 30px 0;
    padding-top: 30px;
}

@media (max-width: 1100px) {
    .module-faq .module_container--inner {
        border-top: none;
    }
}


/*Board of Directors*/

.module-intro--bod p a {
    text-decoration: underline;
}

.pane--content .module.module-intro--bod {
    padding-bottom: 100px;
}

.module-intro--bod .module_title {
    font-size: 48px;
    font-weight: 600;
    color: #003087;
    letter-spacing: -0.5px;
    padding-bottom: 20px;
    line-height: 51px;
}

@media screen and (max-width: 767px) {
    .module-intro--bod .module_title {
        font-size: 40px;
        line-height: 42px;
    }
}


/*Governance and Ethics*/

.module-tab a[data-tab=".module_tab--virtual-tours"],
.module-tab a[data-tab=".module_tab--tours"] {
    display: none;
}

.module-tab_cards {
    display: flex;
    position: relative;
    margin-bottom: 55px;
}

.module-tab_cards .module-tab_line {
    border-bottom: 1px solid #003087;
    width: 100%;
    height: 1px;
    top: 50px;
    position: absolute;
}

.module-tab_cards .tabs_link {
    padding-right: 10px;
    width: 165px;
    height: 52px;
}

.module-tab_cards .tabs_link:first-child {
    padding-left: 0;
}

.module-tab_cards .tabs_link span {
    background-color: #ebebeb;
    padding: 6px 10px;
    display: inline-block;
    width: 100%;
    text-align: center;
    cursor: pointer;
    font-size: 13px;
    letter-spacing: -0.5px;
    line-height: 14px;
    color: #003087;
    height: 100%;
    border-top: 4px solid transparent;
}

.module-tab_cards .tabs_link.js--selected span {
    background-color: white;
    border-top: 4px solid #003087;
    border-right: 1px solid #979797;
    border-left: 1px solid #979797;
    font-weight: bold;
    cursor: auto;
    position: relative;
    bottom: 1px;
}

.module-governance-ethics_downloads .module-downloads_date {
    display: block;
}

.module-governance-ethics_downloads .module_item {
    border: none;
    padding: 20px;
}

.module-governance-ethics_downloads .module_item:nth-child(odd) {
    background: #e8e8e8;
}

.module-primary-block h3,
.module-sidebar-block h3 {
    border-top: 4px solid #003087;
    margin-bottom: 30px;
    padding-top: 30px;
    line-height: 40px;
    letter-spacing: -1px;
}

.module-downloads_doc .module-downloads_title-link {
    /* background: #FCAF17; */
    background: #E6B012;
    display: inline-block;
    margin-left: 10px;
    padding: 0px 6px;
    width: 49px;
    border-radius: 3px;
    margin-right: 5px;
}

.module-governance-ethics_downloads .module_item-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.module-governance-ethics_downloads .module-downloads_title {
    position: relative;
    padding-left: 43px;
}

.module-governance-ethics_downloads .module-downloads_title:before {
    content: "\ef3e";
    font-family: 'q4-icons' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: absolute;
    left: 0;
    font-size: 35px;
    color: #F00201;
    top: 50%;
    transform: translateY(-50%);
}

.module-governance-ethics_downloads .module-downloads_title-text {
    display: block;
    font-size: 16px;
    font-weight: 500;
    line-height: 19px;
    word-break: break-word;
}

.module-governance-ethics_downloads .module-downloads_date {
    display: block;
    font-weight: 100;
    font-size: 14px;
    padding-top: 5px;
}

.module-downloads--accordion .module_item {
    padding: 0;
    border: none;
    margin-top: 20px;
}

.module-downloads--accordion .module_item:first-child {
    margin-top: 0;
}

.module-downloads--accordion .module-downloads_item {
    margin-bottom: 23px;
}

.module-downloads--accordion h4 {
    margin: 0;
    padding-left: 22px;
    font-size: 22px;
    background: #003087;
    font-weight: bold;
    color: #fff;
    position: relative;
    line-height: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    line-height: 28px;
    padding-top: 5px;
    padding-bottom: 5px;
}

.module-downloads--accordion .module_container--content {
    background: #f4f4f4;
    padding: 25px 30px;
}

.module-downloads--accordion_plus {
    transition: 0.35s ease all;
    width: 25px;
    height: 25px;
    transform: rotate(180deg);
    position: relative;
    margin: 15px 20px;
}

.module-downloads--accordion_plus:before {
    content: '';
    display: block;
    width: 25px;
    height: 0px;
    border-bottom: solid 4px white;
    position: absolute;
    bottom: 11px;
    transform: rotate(90deg);
    transition: 0.35s ease all;
}

.module-downloads--accordion_plus:after {
    content: '';
    display: block;
    width: 25px;
    height: 0px;
    border-bottom: solid 4px white;
    position: absolute;
    bottom: 11px;
}

.module-downloads--accordion .js--active .module-downloads--accordion_plus {
    transform: rotate(0deg);
}

.module-downloads--accordion .js--active .module-downloads--accordion_plus:before {
    width: 0px;
}

.module-qa-dl .module_title {
    padding-bottom: 70px;
    border-bottom: 1px solid #003087;
}

@media (max-width: 1100px) {
    .module-qa-dl .module_title {
        padding-bottom: 0;
        border-bottom: 0;
    }
}

.module-downloads .module-downloads_title-link {
    position: relative;
    padding-left: 27px;
}

.module-downloads .module_link-underline {
    text-decoration: underline;
    padding-left: 0;
    font-weight: 100;
}

.module-downloads .module-downloads_title-link:before {
    position: absolute;
    left: 0;
    font-size: 18px;
    color: #F00201;
    top: 50%;
    transform: translateY(-50%);
}

.module-downloads--accordion .module-downloads_title-link:before {
    font-family: 'q4-icons' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: absolute;
    left: 0;
    font-size: 18px;
    color: #F00201;
    top: 50%;
    transform: translateY(-50%);
}

.module-policies-and-standards {
    padding-top: 10px;
}

.module-tab h3 {
    padding-top: 30px;
}

.module-tab_title {
    display: none;
    border-top: none;
    line-height: 38px;
}

.module-primary-block .module-tab_title {
    border-top: none;
}

.module_tab--board-committee-governance h3 {
    margin-bottom: 27px;
}

.module-downloads--board-committee-governance {
    padding-top: 10px;
}

.module_tab--supplier-code-of-conduct .list li {
    line-height: 20px;
    padding: 10px 0;
    color: #003087;
    font-weight: 100;
}

.module-governance-ethics .module_title {
    margin-bottom: 60px;
}

.module_tab-footer {
    padding-top: 40px;
}

@media only screen and (max-width: 1100px) {
    .module-tab_title {
        display: block;
        font-size: 28px;
        line-height: 35px;
    }
    .module-tab_cards,
    .module-tab--global {
        display: none;
    }
    .module_tab.js--hidden {
        display: block !important;
    }
    .module-tab h3,
    .module-primary-block h3,
    .module-sidebar-block h3 {
        padding-top: 10px;
    }
    .module-tab .module-sidebar-block {
        padding-top: 25px;
    }
    .module_tab--political-contributions,
    .module_tab--supplier-code-of-conduct {
        padding-top: 40px;
    }
    .pane--content .module.module-governance-ethics {
        padding-bottom: 40px;
    }
}


/*Life Cycle of a Mine*/

.module-intro--life-cycle {
    border-bottom: none;
}

.page-life-cycle-of-a-mine .layout_footer {
    margin-top: 0;
}

.mobile-version {
    display: none;
}

@media only screen and (max-width: 1024px) {
    .mobile-version {
        display: block;
    }
    .module-life-cycle-slider {
        display: none;
    }
    .pane--content .mobile-version .module_container--outer {
        padding: 0;
        width: 100%;
    }
    .mobile-version .mobile-version_lifecyclemine {
        padding: 10px;
        background-size: cover;
        background-repeat: no-repeat;
    }
    .mobile-version .mobile-version_slide1 {
        background-image: url("../design/lifecycle-exporation-hero1.jpg");
    }
    .mobile-version .mobile-version_slide2 {
        background-image: url("../design/lifecycle-development-hero1.jpg");
    }
    .mobile-version .mobile-version_slide3 {
        background-image: url("../design/lifecycle-development-hero1.jpg");
    }
    .mobile-version .mobile-version_slide3-1 {
        background-image: url("../design/construction-2.jpg");
    }
    .mobile-version .mobile-version_slide4 {
        background-image: url("../design/lifecycle-production-hero1.jpg");
    }
    .mobile-version .mobile-version_slide5 {
        background-image: url("../design/lifecycle-production-hero1.jpg");
    }
    .mobile-version .mobile-version_slide5-1 {
        background-image: url("../design/closure-2.jpg");
    }
    .mobile-version .mobile-version_slide5-2 {
        background-image: url("../design/closure-3.jpg");
    }
    .mobile-version .mobile-version_slide6 {
        background-image: url("../design/reclaimbefore.jpg");
    }
    .mobile-version .mobile-version_slide6-1 {
        background-image: url("../design/reclaimafter.jpg");
    }
    .mobile-version h1,
    .mobile-version h2 {
        color: #003896;
    }
    .mobile-version .mobile-version_lifecyclemine h3,
    .mobile-version .mobile-version_lifecyclemine h4,
    .mobile-version .mobile-version_lifecyclemine p {
        color: #fff;
    }
    .mobile-version h1 {
        font-size: 90px;
        float: left;
        padding: 20px;
    }
    .mobile-version_lifecyclemine h3 {
        margin: 5px 0 10px;
        font-size: 24px;
        line-height: 30px;
    }
    .mobile-version_lifecyclemine h2 {
        font-size: 34px;
        line-height: 38px;
        margin-bottom: 0;
    }
    .mobile-version_image-block {
        text-align: center;
        width: 85%;
        margin: 0px auto;
        background: rgba(255, 255, 255, .3);
        padding: 2%;
    }
    .mobile-version_image-block img {
        width: 100%;
    }
    .mobile-version_lifecyclemine ul.list {
        color: #fff;
    }
    .mobile-version_lifecyclemine ul.list li {
        padding: 10px 0;
    }
    .mobile-version .mobile-version_lifecyclemine.mobile-version_nobg h3,
    .mobile-version .mobile-version_lifecyclemine.mobile-version_nobg h4,
    .mobile-version .mobile-version_lifecyclemine.mobile-version_nobg p {
        color: #000;
    }
}


/*What We Mine*/

.module-gold-copper-silver .module_container--inner {
    border-top: 1px solid #003087;
    padding-top: 3px;
    margin-top: 80px;
}

.module-faq--what-we-mine .module_container--inner {
    border-top: none;
}

@media (max-width: 1100px) {
    .module-gold-copper-silver .module_container--inner {
        border-top: none;
        padding-top: 0;
        margin-top: 0;
    }
    .module-faq--what-we-mine .module_container--inner {
        padding-top: 0;
    }
}


/*Glossary*/

.module-glossary .module_anchor-target {
    display: block;
    font-size: 34px;
    line-height: 40px;
    color: #003087;
    font-weight: 600;
    padding-top: 30px;
    margin-bottom: 30px;
}

.module-glossary_title {
    font-size: 22px;
    font-weight: bold;
    line-height: 26px;
    color: #003087;
    margin-bottom: 0;
}

.module-glossary_details p {
    margin-bottom: 0;
}

.module-glossary_list li {
    padding: 0;
}

.module-glossary .module_item {
    border: none;
}


/*Contact Us*/

.module-faq--contact-us .module_container--inner {
    border-top: none;
}

.arrow-link {
    color: #ba8f00;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    display: inline-block;
}

.arrow-link:after {
    font-family: 'q4-icons' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\e920";
    display: inline-block;
    margin: 0 10px 0 10px;
    background: rgb(186, 143, 0);
    border-radius: 10px;
    color: #fff;
    font-size: 10px;
    line-height: 16px;
    width: 16px;
    height: 16px;
    vertical-align: middle;
    text-align: center;
}

.module-form-faq .module-form_item {
    width: 100%;
    padding-left: 0;
}

.module-form-faq .module_input {
    width: 207px;
    padding: 4px 5px;
    font-size: 16px;
    font-weight: 400;
}

.module-form-faq textarea.module_input {
    height: 200px;
}

.module-form-faq .CaptchaContainer input[type="text"] {
    width: auto;
}

.layout--iframe .pane--content {
    margin-top: 0;
}

.module-faq--contact-us .module_required-text {
    font-size: 16px;
}

.module-faq--contact-us .module_required-text span {
    color: #e80000;
}

.layout--iframe .pane--content .MessageSent .module_container--outer {
    width: 100%;
}

.module-form-faq .module_container--content {
    margin-left: 0;
}


/*Operations & Projects*/

.module-operations {
    height: 960px;
}

.module-operations_googlemap {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0px;
}

.maps-custom-marker:before {
    content: '';
    display: none;
    border: 6px solid #003087;
    border-radius: 30px;
    height: 10px;
    width: 10px;
    top: -1px;
    left: -2px;
    position: absolute;
    animation: pulsate 1s ease-out;
    animation-iteration-count: infinite;
    animation-delay: 1s;
    opacity: 0;
    box-sizing: content-box;
}

.maps-custom-marker.js--active:before {
    display: block;
}

@-webkit-keyframes pulsate {
    0% {
        -webkit-transform: scale(1, 1);
        opacity: 0.0;
    }
    25% {
        opacity: 0.5;
    }
    50% {
        -webkit-transform: scale(1.6, 1.6);
        opacity: 0.0;
    }
}

@keyframes pulsate {
    0% {
        -webkit-transform: scale(1, 1);
        opacity: 0.0;
    }
    25% {
        opacity: 0.5;
    }
    50% {
        -webkit-transform: scale(1.6, 1.6);
        opacity: 0.0;
    }
}

.module-operations_container {
    width: 350px;
    padding: 0px;
    left: 50%;
    top: 140px;
    position: absolute;
    margin-left: 200px;
    z-index: 2;
    top: 230px;
}

.module-operations_location {
    color: #003087;
    border-left: 2px solid transparent;
    display: block;
    font-size: 18px;
    letter-spacing: -0.5px;
    padding: 13px 20px 13px 25px;
    background: rgba(255, 255, 255, .8);
    margin-bottom: 1px;
    font-weight: bold;
}

.modulemodule-operations_continents-content {
    display: none;
    background: #fff;
    padding: 5px 0;
}

.modulemodule-operations_continent.js--open .modulemodule-operations_continents-content {
    display: block;
}

.module-operations_wrap {
    background-color: transparent;
    border-bottom: 1px solid #003087;
    position: relative;
}

.module-operations_title {
    display: block;
    color: #003087;
    font-size: 20px;
    letter-spacing: -0.5px;
    padding: 10px 15px;
    line-height: 26px;
    border-bottom: 3px solid #ba8f00;
    background: rgba(255, 255, 255, .9);
    font-weight: 600;
}

.module-operations_location-choice {
    display: block;
    color: #003087;
    font-size: 16px;
    padding: 8px 20px 8px 25px;
    font-weight: normal;
    background: white;
    cursor: pointer;
}

.module-operations_location-choice.js--active {
    border: 1px solid #003087;
    margin: 10px 14px;
    padding: 10px;
}

.module-operations_location-choice:before {
    display: inline-block;
    width: 17px;
    height: 17px;
    content: "";
    background: #ba8f00;
    border-radius: 15px;
    border: 3px solid #003087;
    margin-right: 10px;
    vertical-align: middle;
}

.module-operations_location:after {
    content: '';
    background: url("../design/operationarrow.svg") no-repeat;
    width: 21px;
    height: 20px;
    background-size: contain;
    float: right;
    transition: 0.3s ease all;
    transform: rotate(180deg);
}

.page-map:not(.page-no-map) .pane--content {
    margin-top: 0;
}

.page-map:not(.page-no-map) .pane--banner {
    border-bottom: 11px solid #003087;
}

.module-operations-content .module-sidebar-block_latest-blog .module_date-time:before {
    content: "";
    display: inline-block;
    width: 15px;
    height: 15px;
    background-image: url("../design/svg/calendar.svg");
    background-size: contain;
    margin-right: 10px;
    position: relative;
    top: 2px;
}

.module-operations-content .module-sidebar-block_latest-blog .module_date-time .module_date-text {
    display: inline-block;
}

.module-operations-content .module-sidebar-block_latest-blog .module_link-text {
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
    padding: 0 7px;
    font-weight: 500;
}

.module-operations-content .module-sidebar-block_latest-blog .module_headline-link {
    font-weight: 400;
    margin-top: 20px;
    display: block;
}

.module_latest-blog-image {
    border-top: 4px solid #ba8f00;
    height: 120px;
    overflow: hidden;
    box-shadow: 0px 4px 8px -2px #ccc;
    margin-bottom: 20px;
}

.module_latest-blog-image img {
    width: 100%;
    height: auto;
}

.module-operations-content {
    padding-top: 25px;
}

.module-operations-content .module-sidebar-block_latest-blog .module_item {
    padding: 0;
    border: none;
}

.module-operations-content .module-primary-block h3,
.module-operations-content .module-sidebar-block h3 {
    margin-bottom: 20px;
}

.module-blog .module_item {
    padding: 0;
    border: none;
}

.module-blog .module_item-wrap {
    height: 100%;
    position: relative;
    padding-bottom: 20px;
}

.module-blog-image {
    height: 206px;
    overflow: hidden;
    box-shadow: 0px 4px 8px -2px #ccc;
    margin-bottom: 20px;
    background-color: #081958;
}

.module-blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.module-blog .module_date-time .module_date-text {
    display: inline-block;
}

.module-blog .module_headline-link {
    font-weight: 400;
    margin-top: 20px;
    display: block;
}

.module-blog .module_link-text {
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
    padding: 0 7px;
    font-weight: 500;
}

.module-blog .module_tags {
    position: absolute;
    bottom: 0;
    left: 0;
    font-size: 12px;
}

.module-blog .grid {
    margin-left: -50px;
}

.module-blog .module_item {
    padding-left: 50px;
}

.module-blog--case-studies .button {
    margin-top: 50px;
}

.module-blog--newmont .module_item:first-child {
    width: 100%;
    display: block;
}

.module-blog--newmont .module_item:first-child .module-blog-image {
    height: 456px;
}

@media (max-width: 480px){
    .module-blog--newmont .module_item:first-child .module-blog-image {
        height: 256px;
    }
}

.module-blog--newmont .module_item:first-child .module_item-content {
    border-bottom: 1px solid #091859;
    padding-bottom: 20px;
}

.module-blog--newmont .module_link {
    margin-right: 0;
    position: relative;
    top: 1px;
}

.module-blog--newmont .module_link span {
    padding: 0;
}

.module-blog .module_item:first-child .module_date-time {
    font-size: 20px;
}

.module-blog .module_item:first-child .module_headline {
    font-size: 32px;
    line-height: 1;
}

.module-blog .module_item:first-child .module_body,
.module-blog .module_item:first-child .module_link-text {
    font-size: 18px;
}

.module-blog .module_item:first-child .module_category {
    font-size: 14px;
}

.module-blog .module_date-time img {
    width: 25px;
    float: right;
    margin-top: 4px;
}

.module-border .module_title {
    border-top: 4px solid #003087;
    padding-top: 30px;
}

.page-operations-projects .pane--content .pane_inner {
    max-width: 1135px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 15px;
}

.page-operations-projects .pane--content .module_container--outer {
    max-width: none;
    padding: 0;
}

.module-links--operations .module_title {
    font-size: 18px;
    line-height:1;
    font-weight: 500;
    letter-spacing: -0.5px;
    padding-bottom: 20px;
    margin: 0;
}

.pane--content .module.module-links--operations .module_container--outer {
    max-width: none;
    padding: 0;
}

.module-links--operations .module_title:before {
    font-family: 'q4-icons' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\e920";
    display: inline-block;
    margin: 0 20px 0 0;
    background: rgb(9, 24, 88);
    border-radius: 10px;
    color: #fff;
    font-size: 10px;
    padding: 3px 4px;
    width: 16px;
    height: 16px;
    vertical-align: top;
}

.module-links--operations a {
    color: #003896;
    font-weight: 100;
}

.pane--content .module-links--operations ul li {
    padding: 7px 0;
}

.pane--content .module-links--operations {
    padding-left: 0;
}

.page-operations-projects .pane--content .module-links--operations {
    padding-bottom: 90px;
}

.module-map-tooltip {
    display: none;
}

@media only screen and (max-width: 1280px) {
    .module-operations {
        height: 740px;
    }
}

@media only screen and (max-width: 1024px) {
    .module-operations {
        height: 745px;
    }
}


/*TAG PAGE*/

.layout:not(.layout--home) .pane--content span>span:first-child>div.module-blog-category {
    padding-top: 40px;
}

.module-blog-category h1 {
    text-transform: capitalize;
}

.module-blog-category .module_item {
    border: none;
    padding: 0;
}

.module-blog-category .module_date-time {
    font-weight: 400;
    color: #000;
}

.module-blog-category .module_date-time:before {
    content: "";
    display: inline-block;
    width: 15px;
    height: 15px;
    background-image: url("../design/svg/calendar.svg");
    background-size: contain;
    margin-right: 10px;
    position: relative;
    top: 2px;
}

.module-blog-category .module_date-time .module_date-text {
    display: inline-block;
}

.module-blog-category .module_headline {
    margin: 20px 0;
}

.module-blog-category .module_headline-link {
    font-weight: 400;
}

.module-blog-category .module_link-text {
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
    padding: 0 7px;
    font-weight: 500;
}

@media (max-width: 1100px) {
    .module-operations_container {
        left: initial;
        width: 250px;
        margin-right: 10px;
        right: 2%;
    }
    .page-operations-projects .pane--left .pane_inner,
    .page-operations-projects .pane--content .pane_inner,
    .page-operations-projects .pane--right .pane_inner {
        padding: 0 10px;
        width: 85%;
    }
    .pane--content .module-links--operations {
        width: 50%;
        padding-bottom: 10px;
    }
    .module-blog--case-studies {
        padding-top: 80px;
        padding-bottom: 50px;
    }
    .page-operations-projects .pane--content .module_container--outer {
        width: auto;
    }
    .module-blog--case-studies .module_item {
        padding-left: 7px;
    }
    .module-blog--case-studies .grid {
        margin-left: -7px;
    }
    .module-border .module_title {
        font-size: 34px;
    }
    .module-blog--case-studies .module_title {
        font-size: 28px;
    }
    .module-blog-image {
        height: auto;
    }
}

@media (max-width: 900px) {
    .module_latest-blog-image {
        height: auto;
    }
    .module-operations-content .module-sidebar-block {
        margin-top: 50px;
        padding-bottom: 50px;
    }
    .module-blog .module_item-wrap {
        padding-bottom: 0;
    }
    .module-blog .module_tags {
        bottom: -10px;
    }
}

@media (max-width: 767px) {
    .pane--content .module-links--operations {
        width: 100%;
        display: block;
    }
    .module-blog--case-studies .module_item {
        width: 100%;
        display: block;
        margin-bottom: 50px;
    }
    .module-blog .module_tags {
        position: static;
    }
    .module-blog--case-studies .button {
        margin-top: 0;
    }
    .module-operations {
        display: none;
    }
}


/*Reserves & Resources*/

.module-reserves-resources .module_container--inner {
    border-top: 1px solid #003087;
    padding-top: 23px;
}

@media (max-width: 1100px) {
    .module-reserves-resources .module_container--inner {
        border-top: none;
        padding-top: 0;
    }
    .pane--content .module.module-reserves-resources {
        padding-top: 0;
    }
}


/*Africa*/

.module-africa-content .module-sidebar-block_ql {
    padding-bottom: 25px;
}

.module-sidebar-block_ql .module-links--operations ul li {
    padding: 0 0 8px 0;
    margin-bottom: 0;
}

.module-sidebar-block_ql .module-links--operations ul li a {
    font-weight: 400;
    line-height: 22px;
}

.module-sidebar-block_ql .module-links--operations ul li a span {
    display: none;
}

.module-continent-content .module_container--inner {
    padding-top: 30px;
}

.module-sidebar-block_ql .module-links--operations .module_container--inner {
    padding-top: 0;
}

.module-africa-content .module-primary-block h3,
.module-africa-content .module-sidebar-block h3 {
    margin-bottom: 20px;
}

@media only screen and (max-width: 1100px) {
    .page-main-content .pane--content .module-links--operations .module_container--outer {
        width: 100%;
    }
}


/*Ahafo, Ghana */

.module-sidebar-block_links-downloads .module_item {
    border: none;
    padding: 0;
}

.module-sidebar-block_links-downloads a {
    font-weight: 100;
    text-decoration: underline;
    line-height: 22px;
    font-size: 17px;
}

.page-map .module-sidebar-block .button {
    margin: 0;
}

.module-ahafo_newmont-jobs p {
    margin: 0;
}

.module-sidebar-block_links-downloads {
    margin-top: 45px;
}

.module-block_key-facts {
    padding-top: 20px;
}

.module_tab small {
    font-size: 12px;
}

.module_tab---documents .module-downloads {
    padding-top: 30px;
}

.module_tab---documents .module-downloads--ahafo_environmental {
    padding-top: 0;
}

.module-tab--global .module_container--inner {
    padding-top: 50px;
}

.module-tab--global .module-tab_cards {
    margin-bottom: 50px;
}

.module_tab--overview {
    margin-top: 80px;
}

@media only screen and (max-width: 1100px) {
    .module_tab--overview {
        margin-top: 0;
    }
}


/* Ahafo Mill Expansion */

.layout:not(.layout--home) .pane--content span>span:first-child>div.module-ahafo-mill-expansion {
    padding-top: 70px;
}

.module-ahafo-mill-expansion .back-link {
    text-decoration: none;
    font-weight: 400;
    margin-bottom: 22px;
    display: inline-block;
}


/*Subika, Ghana */

.layout:not(.layout--home) .pane--content span>span:first-child>div.module-subica {
    padding-top: 70px;
}

.module-subica .back-link {
    text-decoration: none;
    font-weight: 400;
    margin-bottom: 22px;
    display: inline-block;
}


/*Australia*/

.module-sidebar-block_ql .module-links-australia ul li {
    padding: 7px 0;
    margin-bottom: 0;
}


/*Tanami Australia  */

.module-tanami .module_tab---documents .module-downloads {
    padding-top: 0;
}


/*Cripple Creek & Victor */

.page-cripple .module-tab a[data-tab=".module_tab--tours"] {
    display: inline-block;
}

.page-cripple .module-tab a[data-tab=".module_tab---documents"] {
    display: none;
}

.module-cripple_form h3 {
    border-top: 4px solid #003087;
    margin-top: 50px;
    margin-bottom: 20px;
    padding-top: 30px;
}

.module-form-tour .module-form_item {
    width: 100%;
    padding-left: 0;
}

.module-form-tour .module_input {
    width: 207px;
    padding: 4px 5px;
}

.layout--iframe .module-form .module_container--content {
    margin-left: 0;
}

.module-form-tour .module-form_error-text {
    color: #003087;
    font-weight: 400;
    line-height: 16px;
}

.module-form-tour .module_error-container .module-form_error-text {
    color: #e80000;
    font-weight: 400;
}

.module-form-tour .module_dropdown {
    max-width: 419px;
}

.module-form-tour .module_input[type="text"],
.module-form-tour textarea.module_input {
    font-size: 14px;
    font-weight: 400;
}

.module-form-tour textarea.module_input {
    height: 200px;
}

.module-form-tour .CaptchaContainer input[type="text"] {
    width: auto;
}

.module-form-tour .module-form_item>label:after,
.module-form-tour .module-form_item--are-of-interest-or-study .module_required:before {
    content: ":";
    color: #003087;
    padding-right: 3px;
}

.module-form-tour .module-form_item--are-of-interest-or-study>label:after {
    content: none;
}

.module-form .module_required {
    margin-left: 0;
}

.PageTourFormCripple .layout--iframe .pane--content .module {
    padding: 0;
}


/*Australia Procurement */

.page-map.page-local-procurement .pane--banner {
    border-bottom: none;
}

.page-map.page-local-procurement .pane--content {
    margin-top: 100px;
}

.module-local-procurement img {
    margin: 20px 0;
}

.page-eleonore .module-tab a[data-tab=".module_tab---documents"] {
    display: none;
}

.page-eleonore .module-tab a[data-tab=".module_tab--virtual-tours"] {
    display: inline-block;
}


/*Musselwhite */

.page-musselwhite .module-tab a[data-tab=".module_tab---documents"] {
    display: none;
}

.module-musselwhite .module-sidebar-block_links-downloads a {
 font-weight: 100;
    text-decoration: underline;
    line-height: 22px;
}

.module-musselwhite_newmont-jobs p:not(.module_loader) {
    padding-bottom: 0;
}

.module-musselwhite .module-sidebar-block_links-downloads {
    margin-top: 55px;
}

.module-musselwhite .module_tab:not(.module_tab--overview) h3:not(.module-tab_title) {
    border-top: 4px solid #003087;
    margin-top: 50px;
    margin-bottom: 20px;
    padding-top: 30px;
}

.module-musselwhite .module_tab {
    margin-top: 80px;
}

@media only screen and (max-width: 1100px) {
    .module-musselwhite .module_tab:not(.module_tab--overview) h3:not(.module-tab_title) {
        padding-top: 10px;
        margin-top: 40px;
    }
    .module-musselwhite .module_tab {
        margin-top: 50px;
    }
}


/*Nevada U.S. */

.module_tab---documents .module-downloads--nevada {
    padding-top: 0;
}

.page-penasquito .module-tab a[data-tab=".module_tab--virtual-tours"] {
    display: inline-block;
}

.page-penasquito .module-tab a[data-tab=".module_tab---documents"] {
    display: none;
}

.module-penasquito .module_tab:not(.module_tab--overview) h3:not(.module-tab_title) {
    border-top: 4px solid #003087;
    margin-top: 50px;
    margin-bottom: 20px;
    padding-top: 30px;
}

.module-penasquito .module_tab {
    margin-top: 80px;
}

.module-penasquito .module_tab--virtual-tours {
    margin-top: 60px;
}

@media only screen and (max-width: 1100px) {
    .module-penasquito .module_tab:not(.module_tab--overview) h3:not(.module-tab_title) {
        padding-top: 10px;
        margin-top: 40px;
    }
    .module-penasquito .module_tab,
    .module-penasquito .module_tab--virtual-tours {
        margin-top: 50px;
    }
}


/*Porcupine*/

.page-porcupine .module-tab a[data-tab=".module_tab---documents"] {
    display: none;
}
.module-porcupine .module_tab:not(.module_tab--overview) h3:not(.module-tab_title) {
    border-top: 4px solid #003087;
    margin-top: 50px;
    margin-bottom: 20px;
    padding-top: 30px;
}

.module-porcupine .module_tab {
    margin-top: 80px;
}

.module-porcupine .module_tab--virtual-tours {
    margin-top: 60px;
}

.module-porcupine .module-porcupine_alerts-popup button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin: 0;
    font-weight: 100;
    text-decoration: underline;
    line-height: 22px;
    color: #003087;
    font-size: 17px;
    font-family: Roboto, sans-serif;
}

.fancybox-slide--porcupine-email-alerts .fancybox-content {
    padding: 70px 55px;
}

.module-subscribe-porcupine .module_introduction,
.module-unsubscribe-porcupine .module_introduction {
    display: none;
}

.module-subscribe-porcupine .module-subscribe_form tr {
    width: 100%;
}

.module-subscribe-porcupine .module-subscribe_form tr:nth-child(even) {
    padding-left: 0;
}

.module-subscribe-porcupine .module_input[type="text"],
.module-unsubscribe-porcupine .module_input[type="text"] {
    max-width: 490px;
}

.module-subscribe-porcupine .module_input::-webkit-input-placeholder {
    color: transparent;
}

.module-subscribe-porcupine .module_input::-moz-placeholder {
    color: transparent;
}

.module-subscribe-porcupine .module_input:-ms-input-placeholder {
    color: transparent;
}

.module-unsubscribe-porcupine .module_input::-webkit-input-placeholder {
    color: transparent;
}

.module-unsubscribe-porcupine .module_input::-moz-placeholder {
    color: transparent;
}

.module-unsubscribe-porcupine .module_input:-ms-input-placeholder {
    color: transparent;
}

.fancybox-slide--porcupine-email-alerts .fancybox-iframe {
    position: absolute;
    left: 0;
    right: 0;
    padding: 0 55px;
}

@media only screen and (max-width: 1100px) {
    .module-porcupine .module_tab:not(.module_tab--overview) h3:not(.module-tab_title) {
        padding-top: 10px;
        margin-top: 40px;
    }
    .module-porcupine .module_tab,
    .module-porcupine .module_tab--virtual-tours {
        margin-top: 50px;
    }
    .fancybox-slide--porcupine-email-alerts .fancybox-content {
        width: 91% !important;
    }
    .fancybox-slide--porcupine-email-alerts .fancybox-iframe {
        padding: 0 25px;
    }
}


/*Rangeland and Ranches  */

.page-rangeland-ranches .module-tab a[data-tab=".module_tab---documents"] {
    display: none;
}


/*Red Lake */

.page-red-lake .module-tab a[data-tab=".module_tab--virtual-tours"] {
    display: inline-block;
}

.page-red-lake .module-tab a[data-tab=".module_tab---documents"] {
    display: none;
}

.module-red-lake .module_tab:not(.module_tab--overview) h3:not(.module-tab_title) {
    border-top: 4px solid #003087;
    margin-top: 50px;
    margin-bottom: 20px;
    padding-top: 30px;
}

.module-red-lake .module_tab {
    margin-top: 80px;
}

@media only screen and (max-width: 1100px) {
    .module-red-lake .module_tab {
        margin-top: 50px;
    }
    .module-red-lake .module_tab:not(.module_tab--overview) h3:not(.module-tab_title) {
        padding-top: 10px;
        margin-top: 40px;
    }
}


/*South America*/

.module-south-america-content .module-sidebar-block_ql .module-links--operations ul li {
    padding: 7px 0;
    margin-bottom: 0;
}

.page-map .module-south-america-content .module-sidebar-block .button {
    margin-top: 60px;
}


/*Cerro Negro, Argentina */

.page-cerro-negro .module-tab a[data-tab=".module_tab--health-and-safety"],
.page-cerro-negro .module-tab a[data-tab=".module_tab--environment"],
.page-cerro-negro .module-tab a[data-tab=".module_tab---community"],
.page-cerro-negro .module-tab a[data-tab=".module_tab---documents"] {
    display: none;
}

.page-cerro-negro .module-tab--global .module-tab_cards {
    max-width: 450px;
}


/*Merian, Suriname */

.page-merian .module-tab a[data-tab=".module_tab--health-and-safety"] {
    display: none;
}

.module_tab---documents .module-downloads--merian_screening {
    padding-top: 0;
}

.layout:not(.layout--home) .pane--content span>span:first-child>div.module-surgold {
    padding-top: 70px;
}

.module-surgold_our-core-values {
    padding-top: 40px;
}


/*Pueblo Viejo, DO */

.page-pueblo-viejo .module-tab a[data-tab=".module_tab--health-and-safety"],
.page-pueblo-viejo .module-tab a[data-tab=".module_tab--environment"],
.page-pueblo-viejo .module-tab a[data-tab=".module_tab---community"],
.page-pueblo-viejo .module-tab a[data-tab=".module_tab---documents"] {
    display: none;
}

.module-pueblo-viejo .module_tab--contact:not(.module_tab--overview) h3:not(.module-tab_title) {
    border-top: 4px solid #003087;
    margin-top: 50px;
    margin-bottom: 20px;
    padding-top: 30px;
}

.module-pueblo-viejo .module_tab--contact {
    margin-top: 80px;
}

@media only screen and (max-width: 1100px) {
    .module-pueblo-viejo .module_tab--contact:not(.module_tab--overview) h3:not(.module-tab_title) {
        padding-top: 10px;
        margin-top: 40px;
    }
    .module-pueblo-viejo .module_tab--contact {
        margin-top: 50px;
    }
}


/*Yanacocha, Peru */

.page-yanacocha .module-tab a[data-tab=".module_tab---documents"] {
    display: none;
}

.module-yanacocha .module_tab---community h3:not(.module-tab_title) {
    border-top: 4px solid #003087;
    margin-top: 50px;
    margin-bottom: 20px;
    padding-top: 30px;
}

.module-yanacocha .module_tab---community {
    margin-top: 80px;
}

.module-yanacocha .module_tab--contact .module-sidebar-block_links-downloads {
    margin-top: 0;
}

@media only screen and (max-width: 1100px) {
    .module-yanacocha .module_tab---community {
        margin-top: 50px;
    }
    .module-yanacocha .module_tab---community h3:not(.module-tab_title) {
        padding-top: 10px;
        margin-top: 40px;
    }
}


/*Yanacocha*/

.module-download--compania .module_link,
.module-download--operaciones .module_link,
.module-downloads--proyecto .module_link,
.module-downloads--proyecto-documentos .module_link,
.module-downloads--proyecto-participacion .module_link {
    text-decoration: underline;
    font-weight: 100;
}

.module-download--operaciones .module_link,
.module-downloads--proyecto .module_link,
.module-downloads--proyecto-documentos .module_link,
.module-downloads--proyecto-participacion .module_link {
    padding-left: 0;
}

.table-datos .table-datos_bg {
    background-color: #ffff99;
}

.table-datos td {
    padding: 10px 0;
}

.table-datos p {
    margin: 0;
    text-align: center;
}

.table-datos_indicadores {
    margin-top: 40px;
}

.table-datos_indicadores .table-datos_black {
    color: #000;
}

.module_item--desarrollo img {
    width: 150px;
}

h3.module-faq_question {
    letter-spacing: normal;
}

.table-scroll {
    overflow-x: auto;
}

.module-yanacocha a {
    word-break: break-word;
}

.module-yanacocha .table-datos td:nth-child(2) {
    padding-left: 100px;
}

@media only screen and (max-width: 1100px) {
    .pane--content .module-yanacocha {
        padding-top: 0;
        margin-top: -40px;
    }
    h3.module-faq_question {
        margin: 0;
        padding-top: 0;
    }
    .module-yanacocha .module_tab {
        margin-top: 40px;
    }
    .module-yanacocha .module_tab--compania {
        margin-top: 0;
    }
    .module-yanacocha .table-datos td:nth-child(2) {
        padding-left: 40px;
    }
}


/*Sustainable Mining */

.layout:not(.layout--home) .pane--content span>span:first-child>div.module-intro-sustainability {
    padding-top: 35px;
}

.module-intro-sustainability .module_title {
    font-size: 48px;
    font-weight: 600;
    letter-spacing: -0.5px;
    line-height: 51px;
}

.module-intro-sustainability .button {
    margin-top: 30px;
}

@media only screen and (max-width: 767px) {
    .module-intro-sustainability .module_title {
        font-size: 40px;
        line-height: 42px;
    }
}


/*Policies & Standards */

.layout:not(.layout--home) .pane--content span>span:first-child>div.module-policies-standards {
    padding-top: 35px;
}

.module-policies-standards_img {
    padding: 45px 0;
}

.module-policies-standards .button {
    margin-top: 55px;
}


/*Environmental Responsibility*/

.module-popup_full {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.module-popup_full-greybg {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    left: 0;
    background-color: rgba(40, 40, 40, .7);
    cursor: pointer;
}

.module-popup_full-window {
    top: calc(170px - 5%);
    left: 100%;
    right: 5%;
    bottom: 5%;
    background: white;
    border: 1px solid #333;
    padding: 0;
    overflow-y: scroll;
    transition: 0.35s ease all;
}

.module-popup_full-content {
    height: 70%;
    width: 1110px;
    top: 140px;
    position: fixed;
    background: white;
    margin-left: -550px;
    left: 50%;
    padding: 40px;
    z-index: 1;
    overflow-y: scroll;
    overflow-x: hidden;
    overscroll-behavior: none;
    -ms-scroll-chaining: none;
}

.module-environmental-responsibility {
    background-image: url("../design/sustainability-envi-hero1.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}

.module-popup_full-center {
    margin: 0 auto;
    overflow-y: hidden;
}

.close-x {
    width: 35px;
    text-align: right;
    transform: rotate(45deg);
    height: 35px;
    margin-right: 0px;
    margin-top: 0px;
    font-size: 60px;
    overflow: hidden;
    line-height: 30px;
    position: absolute;
    right: 20px;
    top: 20px;
    color: #003087;
    cursor: pointer;
}

.module-popup .module_container--inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.module-popup_block-main {
    width: calc(65% - 40px);
    margin-right: 40px;
}

@media (max-width: 720px) {
    .module-popup_block-main {
        align-self: flex-start;
        width: auto;
        margin-right: 0;
    }
}

.module-popup_block-main h2 {
    font-size: 40px;
    background: rgba(9, 24, 88, .8);
    line-height: 50px;
    padding: 11px 15px;
    color: white;
    margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
    .module-popup_block-main h2 {
        font-size: 35px;
        line-height: 37px;
    }
}

.module-popup_links {
    background: white;
    border-radius: 5px;
    border: 1px solid #ba8f00;
    border-top-width: 4px;
    padding: 15px 35px;
    margin: 30px 0;
}

.module-popup_links a {
    color: #003087;
    cursor: pointer;
    line-height: 22px;
    letter-spacing: -0.5px;
    margin: 20px 0;
    display: block;
}

.module-popup_full.js--active {
    display: block;
}

.module-popup_full-blocks {
    display: flex;
    flex-wrap: wrap;
}

.module-popup_full-blocks-first {
    width: 50%;
}

.module-popup_full-blocks-second {
    width: 50%;
    padding-left: 30px;
}

.module-popup_full-blocks-first img {
    width: 100%;
    height: auto;
    border-radius: 3px;
    border-top: 3px solid #ba8f00;
}

.module-popup_full-center a {
    letter-spacing: -0.5px;
    margin: 20px 0;
    display: block;
    line-height: 22px;
}

.module-bottom-content--environmental {
    margin-top: -30px;
}

@media only screen and (max-width: 1110px) {
    .module-popup_full-content {
        top: 120px;
        width: 91%;
        left: 4.5%;
        margin: 0px auto;
        height: 77%;
    }
}

@media only screen and (max-width: 720px) {
    .module-popup_full-blocks {
        display: block;
    }
    .module-popup .module_container--inner {
        flex-direction: column;
        align-items: stretch;
    }
    .module-popup_full-blocks-first,
    .module-popup_full-blocks-second {
        width: 100%;
        padding-left: 0;
    }
}


/*Social Responsibility */

.module-social-responsibility {
    background-image: url("../design/sustainability-social-responsibility2.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}

.module-bottom-content--social-responsibility {
    margin-top: -30px;
}


/*Sustainability Reporting*/

.module-nav-sustainability .level1>li,
.module-nav-sustainability .level2>li,
.module-nav-sustainability .level2>li.selected>a,
.module-nav-sustainability .level2>li.expanded>a,
.module-nav-sustainability .level1>li.expanded>a {
    display: none;
}

.module-nav-sustainability .level1>li.expanded,
.module-nav-sustainability .level2>li.selected,
.module-nav-sustainability .level2>li.expanded {
    display: block;
}

.module-nav-sustainability .level4 {
    display: none;
    width: 342px;
    position: absolute;
    margin-left: -120px;
    display: none;
    font-size: 16px;
    font-weight: 400;
    background: white;
    color: #003087;
    border: 1px solid #003087;
    box-shadow: 0px 0px 3px 0px #666;
    margin-top: 4px;
    padding: 0px 20px;
    z-index: 1;
}

.module-nav-sustainability .level4:before {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border-top: 30px solid transparent;
    border-bottom: 30px solid transparent;
    border-left: 30px solid white;
    background: none;
    position: absolute;
    top: -175px;
    transform: rotate(-90deg);
    left: calc(50% - 15px);
    margin: 140px 0;
}

.module-nav-sustainability .level4 li a {
    padding: 20px 0;
    display: flex;
    cursor: pointer;
    justify-content: space-between;
    vertical-align: baseline;
    text-decoration: none;
    color: #003087;
    font-size: 17px;
    line-height: 1;
    border-bottom: 1px solid #ccc;
    width: 100%;
}

.module-nav-sustainability .level4>li.has-children>a:after {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid #003087;
}

.module-nav-sustainability .level3 {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: space-evenly;
    justify-content: space-evenly;
    width: 1000px;
}

.module-nav-sustainability .level3 li {
    display: inline-block;
}

.module-nav-sustainability {
    background: #003087;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.module-nav-sustainability:before,
.module-nav-sustainability:after {
    content: "";
    background: #003087;
    position: absolute;
    top: 0;
    bottom: 0;
}

.module-nav-sustainability:before {
    left: -1000%;
    width: 1000%;
}

.module-nav-sustainability:after {
    right: -1000%;
    width: 1000%;
}

.module-nav-sustainability li a,
.module-nav-sustainability li span {
    color: white;
    font-size: 18px;
    font-weight: 500;
    padding: 16px 0;
    display: block;
}

.module-nav-sustainability .js--utilities+.level4 li a {
    font-weight: 200;
}

.module-nav-sustainability .level3 span.js--menu:before {
    display: inline-block;
    content: "";
    margin-right: 10px;
    background: url("../design/svg/bars-solid-white.svg") no-repeat;
    width: 15px;
    height: 15px;
    position: relative;
}

.module-nav-sustainability .level3 li a.js--downloads:before {
    display: inline-block;
    content: "";
    margin-right: 10px;
    background: url("../design/svg/download-solid-white.svg") no-repeat;
    width: 15px;
    height: 15px;
    position: relative;
}

.module-nav-sustainability .level3 li span.js--utilities:before {
    display: inline-block;
    content: "";
    margin-right: 10px;
    background: url("../design/svg/cog-solid.svg") no-repeat;
    width: 15px;
    height: 15px;
    position: relative;
}

.module-nav-sustainability .level3 li span.js--utilities:after {
    display: inline-block;
    content: "";
    margin-right: 10px;
    background: url("../design/svg/angle-down-regular-white.svg") no-repeat;
    width: 15px;
    height: 15px;
    position: relative;
    top: 7px;
    margin-left: 15px;
}

.module-nav-sustainability .level5 {
    display: none;
    column-count: 2;
}

.module-nav-sustainability .level4 li {
    display: block;
}

.module-nav-sustainability .level3 li.has-children:hover .level4 {
    display: block;
}

.module-nav-sustainability .level4 li.js--expanded .level5 {
    display: block;
}

.module-nav-sustainability .level4 li.js--expanded a:after {
    transform: rotate(90deg);
}

.module-nav-sustainability .level5 li {
    padding: 0;
}

.module-nav-sustainability .level5 li a {
    font-weight: 100;
    font-size: 12px;
    padding: 5px 0;
    cursor: pointer;
    border-bottom: none;
    line-height: 14px;
}

.module-nav-sustainability .level5 li a:after {
    content: none;
}

.page-no-margin .pane--content {
    margin-top: 0;
}

.module-sustainability-reporting_main {
    padding: 0 50px 0 30px;
}

.module-sustainability-reporting--overview {
    background-image: url("../design/sustainability-reporting-overview.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}

.module-sustainability-reporting--ethics {
    background-image: url("../design/sustainability-reporting-ethics.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}

.module-sustainability-reporting--people {
    background-image: url("../design/sustianability-our-people.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}

.module-sustainability-reporting--economic {
    background-image: url("../design/economic-and-social-performance.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}

.module-sustainability-reporting--environmental {
    background-image: url("../design/sustainability-reporting-envi-stewardship.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}

.module-sustainability-reporting .module_container--inner {
    display: flex;
    align-items: center;
}

.module-sustainability-reporting .module-links li a {
    letter-spacing: -0.5px;
    display: block;
    line-height: 22px;
    font-weight: 400;
    letter-spacing: -0.5px;
    margin: 20px 0;
    line-height: 22px;
}

.module-sustainability-reporting_main h2 {
    font-size: 40px;
    background-color: rgba(255, 255, 255, 0.8);
    line-height: 50px;
    padding: 11px 15px;
    color: rgb(9, 24, 88);
}

.module-sustainability-reporting_main p {
    color: rgb(9, 24, 88);
    background-color: rgba(255, 255, 255, 0.8);
    padding: 10px 15px;
    margin-top: 22px;
}

.module-sustainability-reporting_icon {
    margin: 10px 0px;
}

.module-sustainability-reporting .module-links .module_container--inner {
    background: white;
    border-radius: 5px;
    border: 1px solid #ba8f00;
    border-top-width: 4px;
    padding: 15px 35px;
    margin: 30px 0;
    width: 350px;
}

.module-image-banner--sustainability-reporting {
    border-bottom: none;
}

.module-nav-sustainability .level4 li a.js--gridindex:before,
.module-nav-level-sustainability .level4 li a.js--gridindex:before {
    background: url("../design/svg/list-solid-blue.svg");
    background-repeat: no-repeat;
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    margin: 0 10px 0;
}

.module-nav-sustainability .level4 li a.js--unguiding:before,
.module-nav-level-sustainability .level4 li a.js--unguiding:before {
    background: url("../design/svg/location-arrow-solid-blue.svg");
    background-repeat: no-repeat;
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    margin: 0 10px 0;
}

.module-nav-sustainability .level4 li a.js--data:before,
.module-nav-level-sustainability .level4 li a.js--data:before {
    background: url("../design/svg/chart-bar-solid-blue.svg");
    background-repeat: no-repeat;
    content: '';
    display: inline-block;
    width: 18px;
    height: 12px;
    margin: 0 10px 0;
}

.module-nav-sustainability .level4 li a.js--share:before,
.module-nav-level-sustainability .level4 li a.js--share:before {
    background: url("../design/svg/share-alt-solid-blue.svg");
    background-repeat: no-repeat;
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    margin: 0 10px 0;
}

.module-nav-sustainability .level4 li a.js--share:after,
.module-nav-level-sustainability .level4 li a.js--share:after {
    content: '';
    background: url("../design/sharelinks.png");
    background-repeat: no-repeat;
    content: '';
    display: inline-block;
    width: 64px;
    height: 16px;
    margin: 0 0 0 60px;
    background-size: contain;
}

.module-nav-sustainability .level4 li a.js--gri-toggle:before,
.module-nav-level-sustainability .level4 li a.js--gri-toggle:before {
    background: url("../design/svg/check-double-regular-blue.svg");
    background-repeat: no-repeat;
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    margin: 0 10px 0;
}

.module-nav-sustainability .level4 li a.js--gri-toggle:after,
.module-nav-level-sustainability .level4 li a.js--gri-toggle:after {
    background: url("../design/svg/toggle-off-blue.svg");
    background-repeat: no-repeat;
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    width: 28px;
    height: 24px;
    margin: 0 0 0 30px;
}

.module-nav-sustainability .level4 li a.js--gri-toggle.js--gri-enabled:after,
.module-nav-level-sustainability .level4 li a.js--gri-toggle.js--gri-enabled:after {
    background-image: url("../design/svg/toggle-on-blue.svg");
}

.module-nav-level-sustainability .level4 li a.js--gri-toggle:after {
    margin: 0 0 0 10px;
}

.module-nav-level-sustainability .level4 li a.js--share:after {
    margin: 0 0 0 10px;
}

.module-nav-sustainability .level3 li:last-child .level4 li a {
    justify-content: flex-start;
    align-items: center;
}

.module-nav-sustainability .level3 li:last-child .level4 {
    width: 235px;
    padding: 0px 15px;
    margin-left: -60px;
}

.page-sustainability-reporting .pane--breadcrumb {
    display: none;
}

.page-sustainability-reporting .layout_footer {
    margin-top: 0;
}

.module-sustainability-toggle-menu {
    display: none;
    margin: 0 -15px;
    text-align: center;
    padding: 15px;
    font-weight: 500;
    background: #003087;
    color: white;
    cursor: pointer;
}

.module-sustainability-toggle-menu_button:before {
    display: inline-block;
    content: "";
    margin-right: 10px;
    background: url("../design/svg/bars-solid-white.svg") no-repeat;
    width: 15px;
    height: 15px;
    position: relative;
}

.page-sustainability-reporting .module-breadcrumb {
    display: none;
}

@media (max-width: 1100px) {
    .module-nav-sustainability {
        max-width: none;
        width: 100%;
    }
    .module-nav-sustainability .level3 {
        width: 100%;
    }
    .module-nav-sustainability .level3 li.has-children:first-child:hover .level4:before {
        left: initial;
    }
    .module-nav-sustainability .level4 {
        margin-left: 0;
    }
    .module-nav-sustainability .level4:before {
        left: initial;
    }
    .module-nav-sustainability .level3 li.has-children:hover .level4:before {
        left: calc(50% - 15px);
    }
}

@media (max-width: 850px) {
    .module-nav-sustainability .level3>li {
        position: relative;
    }
    .module-nav-sustainability .level4 {
        height: 200px;
        overflow-y: scroll;
        overflow-x: hidden;
    }
    .module-nav-sustainability .level3>li.has-children:hover:before {
        content: "";
        display: inline-block;
        width: 0;
        height: 0;
        border-top: 30px solid transparent;
        border-bottom: 30px solid transparent;
        border-left: 30px solid white;
        background: none;
        position: absolute;
        top: -124px;
        transform: rotate(-90deg);
        left: calc(50% - 15px);
        margin: 140px 0;
        z-index: 1000;
    }
}

@media (max-width: 720px) {
    .page-headerblue .pane--header:before,
    .PagePageNotFound .pane--header:before {
        min-height: 120px;
    }
    .page-headerblue .layout_header,
    .PagePageNotFound .layout_header {
        padding-top: 120px;
    }
    .module-sustainability-toggle-menu {
        display: block;
        border-top: 4px solid #ba8f00;
    }
    .page-sustainability-reporting .module-sustainability-toggle-menu {
        border-top: none;
    }
    .module-nav-sustainability {
        display: none;
    }
}


/*Message from the Chief Executive Officer*/

.page-headerblue .pane--content,
.PagePageNotFound .pane--content {
    margin-top: 40px;
}

.page-headerblue .pane--breadcrumb {
    padding-bottom: 20px;
    border-bottom: 1px solid #999;
    box-shadow: 0px 7px 8px -6px #333;
}

.page-headerblue--no-subnav .pane--breadcrumb,
.PagePageNotFound .pane--breadcrumb {
    display: none;
}

.page-headerblue--no-subnav .pane--content,
.PagePageNotFound .pane--content {
    min-height: 280px;
}

.page-headerblue .pane--breadcrumb .pane_inner {
    max-width: 1140px;
    padding: 0 20px;
    margin: 0 auto;
    position: relative;
    padding-top: 103px;
}

.page-headerblue .module-nav-sustainability {
    border-top: 4px solid #ba8f00;
    margin-top: 20px;
}

.page-headerblue .module-nav-sustainability:before,
.page-headerblue .module-nav-sustainability:after {
    border-top: 4px solid #ba8f00;
    top: -4px;
}

.page-headerblue .layout.js--header-fixed .module-nav-sustainability {
    position: fixed;
    top: 56px;
    z-index: 1;
}

.module-nav-level-sustainability .level1 li,
.module-nav-level-sustainability .level1>li.expanded>a,
.module-nav-level-sustainability .level2>li.selected>a,
.module-nav-level-sustainability .level2>li.expanded>a,
.module-nav-level-sustainability .level3>li.expanded>span {
    display: none;
}

.module-nav-level-sustainability .level1>li.expanded,
.module-nav-level-sustainability .level2>li.expanded,
.module-nav-level-sustainability .level2>li.selected,
.module-nav-level-sustainability .level2>li.selected .level3 li,
.module-nav-level-sustainability .level3>li.expanded,
.module-nav-level-sustainability .level4>li.expanded,
.module-nav-level-sustainability .level4>li.expanded .level5 li {
    display: block;
}

.page-headerblue .module-breadcrumb .module-breadcrumb_home-link,
.page-headerblue .module-breadcrumb span {
    display: none;
}

.page-headerblue .module-breadcrumb .module-breadcrumb_separator:nth-child(4),
.page-headerblue .module-breadcrumb .module-breadcrumb_separator:nth-child(6) {
    display: inline-block;
}

.page-headerblue .module-breadcrumb {
    margin-top: 60px;
}

.page-headerblue .module-breadcrumb,
.module-nav-level-sustainability {
    padding-left: 95px;
}

.page-headerblue .module-breadcrumb {
    font-size: 13px;
    letter-spacing: -0.5px;
    text-decoration: none;
    font-weight: 100;
    margin-bottom: 15px;
    position: absolute;
    top: 0;
    padding-top: 15px;
}

.Sectionoverview .module-breadcrumb:before,
.Sectionenvironmental-stewardship .module-breadcrumb:before,
.Sectionethics-integrity-and-human-rights .module-breadcrumb:before,
.Sectionour-people .module-breadcrumb:before {
    content: "";
    background-image: url("../design/icon-case-overview-gold1.png");
    display: inline-block;
    width: 75px;
    height: 75px;
    content: "";
    background-size: cover;
    position: absolute;
    left: 0;
    top: 0;
}

.Sectionenvironmental-stewardship .module-breadcrumb:before {
    background-image: url("../design/icon-case-environmental-gold.png");
}

.Sectionethics-integrity-and-human-rights .module-breadcrumb:before {
    background-image: url("../design/icon-case-ethics-gold.png");
}

.Sectionour-people .module-breadcrumb:before {
    background-image: url("../design/icon-case-people-gold.png");
}

.module-nav-level-sustainability .level4>li.expanded>a {
    font-size: 34px;
    font-weight: bold;
    color: #003087;
    line-height: 38px;
}

.module-nav-level-sustainability .level5 {
    border-top: 1px solid grey;
    margin-top: 30px;
    padding-top: 30px;
    column-count: 2;
}

.module-nav-level-sustainability .level5.js--shrunk,
.layout.js--header-fixed .module-nav-level-sustainability .level5 {
    height: 0px;
    overflow: hidden;
    transition: 0.35s ease all;
}

.module-nav-level-sustainability .level5 li a {
    padding: 10px 0;
    display: block;
    font-weight: 100;
    font-size: 13px;
    line-height: 16px;
}

.module-arrow-nav {
    width: 100%;
    text-align: center;
    margin-top: 30px;
    padding-left: 95px;
}

.module-arrow-nav_dropdown {
    border-right: 3px solid #003087;
    border-bottom: 3px solid #003087;
    width: 15px;
    height: 15px;
    transform: rotate(-135deg);
    display: block;
    margin: 0px auto;
    transition: 0.35s ease all;
}

.module-arrow-nav_dropdown.js--rotated,
.layout.js--header-fixed .module-arrow-nav_dropdown {
    transform: rotate(45deg);
    transition: 0.35s ease all;
}

@media (max-width: 1100px) {
    .page-sustainability-reporting .pane--breadcrumb {
        display: block;
    }
    .module-arrow-nav {
        display: none;
    }
    .module-nav-level-sustainability {
        display: none;
        padding-left: 0;
    }
    .module-nav-level-sustainability.js--active {
        display: block;
    }
    .module-nav-level-sustainability .level2>li.selected .level4,
    .module-nav-level-sustainability .level3>li.expanded .level4 li,
    .module-nav-level-sustainability .level2>li.selected .level3>li:first-child,
    .module-nav-level-sustainability .level2>li.expanded .level3 li:last-child>span {
        display: none;
    }
    .module-nav-level-sustainability .level2>li.selected .level3 li:last-child .level4,
    .module-nav-level-sustainability .level2>li.expanded .level3>li,
    .module-nav-level-sustainability .level3>li.expanded .level4 li.expanded,
    .module-nav-level-sustainability .level3>li.expanded .level5 li,
    .module-nav-level-sustainability .level2>li.expanded .level3 li:last-child .level4 li {
        display: block;
    }
    .module-nav-level-sustainability .level2>li.expanded .level3>li:nth-child(3) {
        /*         float: left; */
    }
    .module-nav-level-sustainability .level2>li.expanded .level3 li:last-child .level4 {
        /*         float: left;
        margin-top: -35px; */
    }
    .page-sustainability-reporting .module-nav-level-sustainability .level1>li.expanded>a {
        display: block;
        font-size: 34px;
        font-weight: bold;
        color: #003087;
        line-height: 38px;
        border-bottom: 1px solid grey;
        padding-bottom: 10px;
    }
    .module-nav-level-sustainability .level2>li.selected .level3 li:last-child>span {
        display: none;
    }
    .page-sustainability-reporting .module-nav-level-sustainability {
        padding-bottom: 15px;
    }
    .page-sustainability-reporting .module-nav-level-sustainability .level3 {
        display: inline-block;
        position: relative;
    }
    .page-sustainability-reporting .module-nav-level-sustainability .level4 {
        position: absolute;
        left: 100%;
        top: 0;
        width: 300px;
    }
    .page-sustainability-reporting .module-nav-level-sustainability {
        padding: 0 20px 15px 20px;
        height: 240px;
    }
    .module-nav-level-sustainability .level3 li a {
        padding: 5px 0 5px 0px;
        font-size: 18px;
        margin: 5px 0;
        display: block;
    }
    .module-nav-level-sustainability .level4 li a {
        font-size: 12px;
        padding: 10px 0;
        margin: 0;
    }
    .page-headerblue .pane--breadcrumb .pane_inner {
        padding-top: 0;
    }
    .page-headerblue .module-breadcrumb {
        position: static;
        padding-left: 0;
        margin-top: 0;
        margin-left: -20px;
        margin-right: -20px;
        padding: 0 20px;
        border-top: 1px solid #999;
        padding-top: 15px;
        clear: left;
    }
    .page-headerblue .module-breadcrumb:before,
    .page-headerblue.page-headerblue .module-breadcrumb:before {
        content: none;
    }
    .page-headerblue .pane--breadcrumb {
        padding-bottom: 0;
        box-shadow: none;
    }
    .module-nav-level-sustainability .level5 {
        column-count: 3;
        padding-top: 0;
        margin-top: 0;
    }
    .module-sustainability-reporting .module_container--inner {
        display: block;
    }
    .module-sustainability-reporting .module-links .module_container--inner {
        width: 100%;
    }
    .layout:not(.layout--home) .pane--content span>span:first-child>div.module.module-sustainability-reporting--overview {
        padding-top: 12px;
    }
    .pane--content .module-sustainability-reporting {
        padding-bottom: 30px;
        padding-top: 12px;
    }
    .pane--content .module.module-links {
        padding-top: 10px;
        padding-bottom: 0;
    }
    .module-sustainability-reporting_main {
        padding: 0;
    }
    .pane--content .module-sustainability-reporting .module-links .module_container--outer {
        width: 100%;
    }
}

@media (max-width: 512px) {
    .module-nav-level-sustainability .level5 {
        column-count: 2;
    }
}


/*Blog*/

.pane--content .module-blog_filter-select li {
    position: relative;
    padding-left: 30px;
    cursor: pointer;
}

.module-blog_filter-select li:before {
    content: "";
    width: 18px;
    height: 18px;
    border: 2px solid #003087;
    border-radius: 3px;
    left: 0;
    top: 50%;
    position: absolute;
    transform: translateY(-50%);
}

.module-blog_filter-select li.js--selected:before {
    background: #003087;
}

.module-blog_filter h4 {
    font-size: 20px;
    letter-spacing: -0.5px;
    padding: 10px 0px;
}

.page-blog-details .pane--banner {
    height: 400px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.page-blog-details .module-stock-banner {
    display: none;
}


/*Our Business*/

.module-our-business {
    position: relative;
    height: 700px;
}

.module-our-business_googlemap {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.module-newmont-locations h4 {
    font-size: 17px;
    letter-spacing: 0.3px;
}

.footnotes {
    font-size: 11px;
    font-style: italic;
    font-weight: 100;
}

.module-newmont-locations .footnotes {
    padding-top: 5px;
    margin-bottom: 25px;
}

.module-newmont-locations .footnotes a {
    font-weight: bold;
}

.module-newmont-locations h5 {
    margin: 30px 0 0px;
}

.gm-style {
    font-family: 'Open Sans', sans-serif;
}

.gm-fullscreen-control {
    top: auto !important;
    bottom: 110px;
}

@media (max-width: 767px) {
    .module-our-business {
        height: 280px;
    }
    .module-our-business .module-map-tooltip_description p {
        line-height: 17px;
        margin-top: 0;
    }
    .module-our-business .module-map-tooltip_title {
        font-size: 15px;
    }
    .module-our-business .gm-style .gm-style-iw-c {
        padding: 10px;
    }
    .gm-bundled-control .gmnoprint {
        left: -20px !important;
        top: 30px !important;
    }
    .gm-bundled-control .gmnoprint>div {
        width: 28px !important;
        height: 60px !important;
    }
    .gm-bundled-control .gmnoprint>div>div {
        width: 20px !important;
    }
    .gm-bundled-control .gmnoprint>div button {
        width: 30px !important;
        height: 30px !important;
    }
    .gm-bundled-control .gmnoprint>div button img {
        height: 14px !important;
        width: 14px !important;
    }
}


/*Our Approach to Sustainability*/

.module-approach-sustainability_split-screen {
    display: flex;
}

.module-approach-sustainability_split-screen-item {
    width: 50%;
}

.module-approach-sustainability h4 {
    font-size: 17px;
    letter-spacing: 0.3px;
}

.table.table--bg {
    table-layout: auto;
    border: 1px solid #003087;
}

.table--bg tr:nth-child(even) {
    background-color: #d8d8d8;
}

.table--bg tr:nth-child(odd) {
    background-color: #f8f8f8;
}

.table--bg.table--grey,
.table--bg tr.row--grey,
.table--bg td.cell--grey {
    background-color: #f8f8f8;
}

.table.table--bg tr {
    border: none;
}

.table.table--bg thead th {
    font-size: 16px;
    vertical-align: middle;
    padding: 5px;
    border: none;
    line-height: 22px;
}

.table.table--bg thead th+th,
.table.table--bg tbody td+td {
    padding-left: 10px
}

.table--bg tr.table_title {
    border: 1px solid #003087;
    background-color: #003087;
}

.table--bg .table_title--bigger td,
.table--bg .table_title--bigger th {
    height: 50px;
}

.table.table--bg td {
    padding: 10px;
    border: none;
    color: #1d1d1d;
    line-height: 22px;
    font-weight: 100;
}

.table td.horizontal-heading,
.table th.horizontal-heading {
    vertical-align: middle;
    text-align: center;
}

.table td.horizontal-heading--border-right,
.table th.horizontal-heading--border-right {
    border-right: 1px solid #999;
}

.table.table--bg .table_title th {
    color: #fff;
    font-size: 22px;
    line-height: 50px;
    font-weight: bold;
    text-align: left;
    padding: 0 10px;
    border: none;
}

.table.table--bg .table_title--middle th {
    vertical-align: middle;
}

.table .table_title th img {
    height: 50px;
    padding: 5px;
    float: left;
    margin-right: 20px;
}

.table .table_subhead-blue {
    display: block;
    border: 1px solid #dceaf2;
    background: #dceaf2;
    font-weight: bold;
    padding: 10px;
    margin: 0px 0;
}

.table .table_green {
    color: green;
    font-weight: bold;
}

.table .table_red {
    color: red;
    font-weight: bold;
}

.table .table_brown {
    color: #ba8f00;
    font-weight: bold;
}

.target--in-progress {
    color: #003087;
}

.left--table {
    margin-right: 25px;
    width: 50%;
}

.left--table .table {
    margin-top: 0;
}

.table-margin-top {
    margin-top: 40px;
}

@media (max-width: 720px) {
    .table-wrapper .table--bg {
        min-width: 1000px;
        margin-bottom: 0;
        margin-top: 0;
    }
    .table-wrapper {
        overflow-x: auto;
        border: 2px solid #003087;
        margin-bottom: 40px;
    }
    .table-wrapper:after {
        content: "swipe right to view more \27F6";
        font-size: 11px;
        display: block;
        color: rgb(255, 255, 255);
        font-weight: bold;
        padding: 6px 10px;
        background: linear-gradient(to right, rgb(133, 131, 133) 0%, rgb(255, 255, 255) 100%);
    }
    .left--table {
        width: 100%;
    }
}

@media (max-width: 1100px) {
    .module-approach-sustainability_split-screen {
        display: block;
    }
    .module-approach-sustainability_split-screen-item {
        width: 100%;
    }
}


/*Environmental Stewardship*/

p a.no-underline {
    text-decoration: none;
}

.module-table-small .table.table--bg .table_title th {
    line-height: 23px;
    font-size: 18px;
    height: 40px;
}

.module-table-small .table.table--bg .table_title th.table-heading--border-bottom {
    border-bottom: 1px solid #fff;
}

.module-table-small h4 {
    font-size: 17px;
    letter-spacing: 0.3px;
}

.module-table-small h3 {
    margin: 10px 0 30px;
    padding-top: 10px;
    font-size: 29px;
    letter-spacing: 0.5px;
}

.module-table-small h4+.table-wrapper {
    margin-top: 0;
}

.table_footnote {
    font-size: 11px;
    font-style: italic;
}

.table.table--bg .table_large-cell {
    vertical-align: middle;
    text-align: center;
    border-right: 1px solid #999;
}

.table.table--bg .table_grey-cell {
    background-color: #d8d8d8;
}

.table.table--bg .table_total-cell {
    border-top: 1px solid #999;
}

.module-performance_chart text.highcharts-title {
    display: none;
}

@media (max-width: 1100px) {
    .module-water .module-water_images>.grid_col,
    .module-charts .grid_col {
        width: 100%;
    }
}


/*Blog Stories*/

.module-blog--newmont .module_body p {
    word-break: break-word;
}

.module-blog--newmont .module_pager-numbers ul li {
    display: inline-block;
    padding: 5px;
    cursor: pointer;
}

.module_pager {
    text-align: right;
}

.module_pager .pager-prev,
.module_pager .pager-next {
    border-right: 2px solid #003087;
    border-bottom: 2px solid #003087;
    width: 0px;
    height: 0px;
    transform: rotate(-45deg);
    position: relative;
    top: 8px;
    display: inline-block;
    padding: 5px;
    cursor: pointer;
    text-indent: -9999px;
    text-align: left;
}

.module_pager .pager-prev {
    transform: rotate(135deg);
    margin-right: 10px;
}

.module_pager .pager-page {
    width: 18px;
    cursor: pointer;
    display: none;
    margin: 0 12px;
}

.module_pager .pager-pager--visible,
.module_pager .pager-active {
    display: inline-block;
}

.module_pager .pager-active {
    font-weight: 700;
}

.module_pager .pager-next {
    margin-left: 10px;
}

.module_pager .pager-disabled {
    opacity: 0.2;
}

.module_flipper-switch {
    float: right;
}

.module_flipper-switch .module_toggle-grid {
    display: block;
}

.module_flipper-switch .module_toggle-grid .module_grid {
    background: #d8d8d8;
    display: inline-block;
    width: 24px;
    height: 24px;
    border-radius: 3px;
    position: relative;
    cursor: pointer;
    margin-top: 7px;
}

.module_flipper-switch .module_toggle-grid .module_grid:before {
    display: block;
    position: absolute;
    border-left: 4px solid white;
    width: 1px;
    top: 0px;
    left: 10px;
    content: "";
    height: 30px;
}

.module_flipper-switch .module_toggle-grid span.js--active {
    background: #003087;
}

.module_flipper-switch .module_toggle-grid .module_grid:after {
    display: block;
    position: absolute;
    border-bottom: 4px solid white;
    width: 24px;
    top: 10px;
    right: 0;
    content: "";
    height: 4px;
}

.module_flipper-switch .module_toggle-grid .module_list {
    background: #d8d8d8;
    display: inline-block;
    width: 24px;
    height: 24px;
    border-radius: 2px;
    position: relative;
    margin-left: 15px;
    cursor: auto;
}

.module_flipper-switch .module_toggle-grid .module_list:before {
    display: block;
    position: absolute;
    border-left: 3px solid white;
    width: 1px;
    top: 0px;
    left: 6px;
    content: "";
    height: 24px;
}

.module_flipper-switch .module_toggle-grid .module_list span {
    display: block;
    border-top: 2px solid white;
    border-bottom: 2px solid white;
    height: 8px;
    width: 30px;
    position: relative;
    top: 7px;
}

.module-blog--newmont .module_date-text {
    color: #000;
    font-weight: 400;
}

.module-blog--newmont .module_body {
    margin-bottom: 10px;
    font-size: 16px;
}

.module-blog--newmont .module_category {
    font-size: 12px;
    font-weight: 500;
    margin: 10px 0;
    color: #000;
    text-transform: capitalize;
}

.module-blog--newmont .grid {
    margin-left: -40px;
}

.module-blog--newmont .module_item {
    margin: 25px 0;
    padding-left: 40px;
}

.module-blog--newmont .module-blog_wrap {
    margin-left: -20px;
}

.module-blog--newmont .module_category span:before {
    content: ",";
    padding-right: 4px;
}

.module-blog--newmont .module_category span:first-child:before {
    content: none;
}

.module-blog--newmont .module-blog_loading {
    padding-left: 40px;
}

.module-blog--newmont .module_items-container.js--list .module_item {
    width: 100%;
}

.module-blog--newmont .module_items-container.js--list .module-blog-image {
    display: none;
}

.module-blog_filter li:not(.no-tag) {
    position: relative;
    padding: 10px 0px 10px 30px;
    cursor: pointer;
    text-transform: capitalize;
    font-size: 20px;
    font-weight: 500;
}

.module-blog_filter li:not(.no-tag):before {
    content: "";
    width: 22px;
    height: 22px;
    border: 2px solid #003087;
    border-radius: 3px;
    left: 0;
    top: 50%;
    position: absolute;
    transform: translateY(-50%);
}

.module-blog_filter li.js--selected:before {
    background: #003087;
}

.module-blog_filter li.no-tag {
    font-size: 20px;
    letter-spacing: -0.5px;
    font-weight: 500;
    padding-bottom: 15px;
}

.module-blog_filter .module-blog_archive li {
    padding-left: 0;
}

.module-blog_filter .module-blog_archive li:before {
    content: none;
}

.module-blog_results-title {
    background: #003087;
    color: white;
    font-size: 18px;
    padding: 20px;
    letter-spacing: -0.5px;
    font-weight: 500;
}

.module-blog_results-title-by:before {
    content: '';
    width: 10px;
    height: 21px;
    display: inline-block;
    padding: 0 30px 0 0;
    background: url("../design/blogarrow.png");
    background-size: contain;
    background-repeat: no-repeat;
    position: relative;
    top: 5px;
}

.module-blog_results-title-clear {
    float: right;
}

.module-blog_categories {
    border: 1px solid #003087;
    text-transform: capitalize;
}

.module-blog_categories option[data-tag="esg"] {
    text-transform: uppercase;
}

.list--reset ul.module-blog_case,
.list--reset ul.module-blog_theme {
    padding: 20px;
    border-bottom: 1px solid #003087;
}

.list--reset ul.module-blog_regions {
    padding: 20px;
}

.module-blog_archive {
    border-bottom: 1px solid #003087;
    border-left: 1px solid #003087;
    border-right: 1px solid #003087;
}

.module-blog_filter {
    padding-right: 65px;
}

.module-blog_videos {
    padding-right: 65px;
    margin-top: 45px;
}

.module-blog_videos h3 {
    margin-top: 0;
}

.module-blog_videos-wrap {
    border: 1px solid #003087;
    padding: 20px;
}

.module-blog_videos-content ul li {
    padding: 0 0 20px 45px;
    font-size: 14px;
    font-weight: 600;
    line-height: 21px;
    position: relative;
}

.module-blog_videos-content ul li a:before {
    content: "";
    background-image: url("../design/svg/video-solid-blue.svg");
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    left: 0px;
    display: block;
    width: 30px;
    height: 30px;
    top: 7px
}

.module-blog_videos-content ul li span {
    font-size: 12px;
    font-weight: 100;
    color: #000;
    display: block;
}

.module-blog_videos-subhead p {
    color: #003087;
    font-weight: 400;
    font-size: 14px;
    line-height: 19px;
    margin-top: 0;
    margin-bottom: 20px;
}

.module-blog_button {
    margin-bottom: 15px;
    margin-top: 10px;
}

.module-blog--newmont .module_headline-link {
    margin-top: 15px;
}

.module-blog--newmont .module_items-container.js--list .module_headline-link {
    margin-top: 10px;
}

.module-blog--newmont .module_items-container.js--list .module_body {
    margin-top: 30px;
}

.module-blog--newmont .module_items-container.js--list .module_item {
    margin-bottom: 30px;
}

.module-blog_filter-mobile-toggle,
.module-blog_apply-filters {
    display: none;
}

.module-blog_filter-mobile-toggle-background {
    opacity: 0;
    display: none;
}

@media (max-width: 1100px) {
    .module-blog_left {
        padding: 0;
        margin-bottom: 85px
    }
    .module-blog_filter,
    .module-blog_videos {
        padding-right: 10px;
    }
    .module-blog--newmont .module-blog_wrap {
        margin-left: 0;
    }
    .module-blog--newmont .grid {
        margin-left: -20px;
    }
    .module-blog--newmont .module_item {
        padding-left: 20px;
    }
    .module-blog--newmont .module-blog_loading {
        padding-left: 20px;
    }
}

@media (max-width: 900px) {
    .module-blog--newmont .module_items-container .module-blog-image img {
        display: none;
    }
    .module-blog--newmont .module-blog-image {
        height: auto;
    }
}

@media (max-width: 720px) {
    .module-blog_filter {
        padding-right: 0;
    }
    .module-blog_left {
        position: absolute;
        background: white;
        z-index: 1001;
        left: -280px;
        transition: 0.35s ease all;
        width: 265px;
    }
    .module-blog_left.js--active {
        left: 10px;
        transition: 0.35s ease all;
    }
    .module-blog_wrap.grid_col {
        width: 100%;
    }
    .module-blog_filter-mobile-toggle {
        font-weight: 500;
        font-size: 21px;
        border: 1px solid #003087;
        color: #003087;
        border-radius: 3px;
        position: relative;
        top: -50px;
        width: 90%;
        background: white;
        height: 50px;
        align-items: center;
        display: flex;
        justify-content: center;
    }
    .module-blog_filter-mobile-toggle-background.js--active {
        display: block;
        width: 100%;
        position: fixed;
        z-index: 1000;
        bottom: 0;
        top: 0px;
        left: 0;
        right: 0;
        background-color: rgba(150, 150, 150, 0.7);
        opacity: 1;
    }
    .module_flipper-switch {
        display: none;
    }
    .module-blog--newmont .module_items-container.js--list .module-blog-image {
        display: block;
    }
    .module-blog--newmont .module_items-container.js--list .module_item {
        margin-bottom: 10px;
    }
    .module-blog_apply-filters {
        display: block;
        margin: 0px 10px 10px 10px;
        text-align: center;
        border: 1px solid #003087;
        padding: 10px 0;
        background: #003087;
        box-shadow: 0 0 0px 10px white, 0 0 0px 11px #003087;
        color: white;
    }
}

.module-scroll {
    padding: 50px 0;
}


/*Blog Stories Details*/

.page-blog-details .pane--content {
    margin-top: 0;
}

.module-backtoblog {
    margin-top: 30px;
}

.module-backtoblog_link {
    font-size: 14px;
    font-weight: 700;
}

.module-backtoblog_link:before {
    border-right: 3px solid #003087;
    border-bottom: 3px solid #003087;
    width: 9px;
    height: 9px;
    transform: rotate(135deg);
    display: inline-block;
    content: "";
}

.module-blog-details .module_view-all-link {
    margin-left: 0;
}

.module-blog-details .module_container--inner + .module_view-all {
    text-align: center;
}

.module-sharebuttons {
    color: #081958;
    font-size: 18px;
    line-height: 24px !important;
    position: relative;
    margin: 20px 0;
}

.module_view-all-link--bottom + .module-sharebuttons {
    margin-left: 15px;
}

.page-blog-details .module_view-all + .module-sharebuttons {
    display: none;
}

.module-sharebuttons:before {
    content: 'Share This Story:';
    display: inline-block;
    vertical-align: middle;
}

.page-inv-news-details .module-details .module_date-time + .module-sharebuttons {
    display: none;
}

.module-sharebuttons a {
    width: 19px;
    height: 19px;
    display: inline-block;
    vertical-align: middle;
    background-size: contain;
    background-repeat: no-repeat;
    margin-left: 10px;
}

.module-sharebuttons a.twitter {
    background-image: url("../design/twitter-v2.png");
}

.module-sharebuttons a.facebook {
    background-image: url("../design/facebook-v2.png");
}

.module-sharebuttons a.youtube {
    background-image: url("../design/youtube.png");
    background-color: #081958;
    border-radius: 5px;
    background-size: 12px;
    background-position: center center;
}

.module-sharebuttons a.linkedin {
    background-image: url("../design/linkedin-v2.png");
}

.a2a_default_style a {
    float: none !important;
    display: inline-block;
    vertical-align: middle;
}

.a2a_svg {
    width: 19px !important;
    height: 19px !important;
    background-color: #081958 !important;
}

.module-downloadable-esg h5 {
    margin-bottom: 20px;
}

.module-downloadable-esg a {
    text-decoration: underline;
}

.module-blog-details .module_body .post-tumbnail {
    display: none;
}

.module-blog-details .module-news-details_category,
.module-blog-details .module_category {
    display: inline-block;
    vertical-align: top;
}

.module-blog-details .module-news-details_category {
    padding-right: 5px;
}

.module-blog-details .module-news-details_category-name {
    font-size: 16px;
    padding-left: 3px;
    font-weight: 400;
}

.module-blog-details .module_category>span,
.module-blog-details .module_category ul {
    display: inline-block;
    vertical-align: baseline;
    text-transform: capitalize;
}

.module-blog-details .module_category ul li {
    display: inline-block;
    padding: 0 5px 0 0;
    line-height: 30px;
}

.module-blog-details .module_category ul li a {
    font-size: 16px;
    font-weight: 400;
}

.module-blog-details .module-news-details_category-text,
.module-blog-details .module_category-text {
    font-size: 21px;
    line-height: 30px;
    color: #000;
}

.module-blog-details .module_category ul li:before {
    content: ",";
    padding-right: 4px;
    color: #000;
    font-size: 20px;
    font-weight: 400;
}

.module-blog-details .module_category ul li:first-child:before {
    content: none;
}

.module-blog-details .module-details_title {
    display: block;
    line-height: 1.2;
    margin: 15px 0;
    font-weight: 700;
    letter-spacing: 0.4px;
    color: #081958;
}

@media only screen and (min-width: 1101px) {
    .module-blog-details .module-details_title {
        font-size: 40px;
    }
}

.module-blog-details .module_date-time {
    display: inline-block;
    vertical-align: top;
    color: #081958;
    font-size: 18px;
    line-height: 1.66;
    margin-bottom: 0px;
    letter-spacing: -0.36px;
}

.module-blog-details .module_date-time:before {
    content: "Newmont Blog |";
}

.module-blog-details .module_body {
    border-top: 1px solid #091859;
    margin-top: 20px;
    padding-top: 20px;
    font-size: 16px;
}

.module-blog-details .module_body h5 {
    font-family: 'Montserrat', sans-serif;
}

@media (min-width: 1101px) {
    .module-blog-details .module_body h5 {
        font-size: 24px;
    }
}

@media (max-width: 720px) {
    .page-blog-details .pane--banner {
        height: 250px;
    }
    .page-blog-details .wp-video {
        width: 340px !important;
        margin-top: -100px;
    }
    .page-blog-details .wp-video video {
        width: 100% !important;
    }
}

@media (min-width: 481px) {
    .module-sharebuttons {
        display: inline-block;
        vertical-align: middle;
        margin: 0;
    }
    
    .module_view-all-link--bottom + .module-sharebuttons {
        float: right;
        margin-top: 30px;
    }
    
    .module-sharebuttons:before {
        content: '| Share This Story:';
    }
    
    .module_view-all-link--bottom + .module-sharebuttons:before {
        content: 'Share This Story:';
    }
}

.module-downloads-archive-sust .module_container--inner {
    border-top: 1px solid #003087;
    padding-top: 22px;
    margin-top: 100px;
}

.module-downloads-downloadable .module_container--inner {
    border-top: 1px solid #003087;
    padding-top: 22px;
    margin-top: 100px;
}


/*CDP, CRR & Other Reports */

.module-downloads-community h5 {
    margin-bottom: 20px;
}

.module-downloads-community .module_container--content>div {
    padding-top: 20px;
}

.module-downloads-regional .module-downloads_title-link {
    font-weight: 100;
    padding-left: 0;
}

.module-downloads-regional .module-downloads_title-link:before {
    content: none;
}

.module-beyond-the-mine {
    border-top: 1px solid #003087;
}


/*Newmont Goldcorp Grad Programs*/

.module-triple-block {
    padding-right: 25px;
    margin-top: 60px;
}

.module-triple-block>div {
    background: #003087;
    color: white;
    margin-right: -20px;
}

.module-triple-block img {
    width: 100%;
}

.module-triple-block h4,
.module-triple-block p {
    color: #fff;
}

.module-triple-block h4 {
    font-size: 18px;
    padding: 0 20px;
}

.module-triple-block h4+p {
    padding: 0 20px;
}

@media (max-width: 720px) {
    .module-triple-block>div {
        width: 100%;
        margin-bottom: 7px;
    }
    .module-our-locations {
        display: none;
    }
}


/*Legal*/

.module-faq_answer .list-legal-definitions li {
    padding-left: 0;
    font-size: 16px;
    font-weight: 100;
    padding: 10px 0;
}

.module-faq_answer .list-legal-definitions li:before {
    content: none;
}

.PageSearchResults .pane--content {
    margin-top: 60px;
}


/*SEARCH RESULTS*/

.module-search-result_link {
    margin-bottom: 15px;
}

.module-search-result_description {
    display: block;
    margin-bottom: 15px;
}

.module-search-result_description:after {
    content: "...";
}

.module-search-result_url {
    display: none;
}

.module-search-results {
    max-width: 1140px;
    margin: 0 auto;
    padding-left: 25px;
    padding-right: 25px;
}

.module-search-results .form_fields-right input {
    width: 100%;
    border-color: #003087;
    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: 34px;
    right: 15px;
    font-family: 'q4-icons' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    color: #003087;
    clear: both;
    display: table;
    font-size: 16px;
}

.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: #003087;
    font-size: 14px;
    width: 100%;
    border-color: #003087;
    display: block !important;
}

.module-search-results .form_select+.sbHolder {
    display: none;
}

.module-search-results .form_input {
    width: 100%;
    border: 1px solid #003087;
    color: #003087;
    padding: 13px 20px;
    display: block;
    font-family: "Lato", sans-serif;
    font-size: 1.4rem;
    border-radius: 0;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.module-search-results_link {
    color: #003087;
    margin-bottom: 20px;
    display: inline-block;
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
}

.module-search-results_item {
    box-shadow: inset 0 1px 0 0 rgba(204, 201, 196, 0.3), inset 0 -1px 0 0 rgba(204, 201, 196, 0.3);
    padding: 30px 0;
}

.module-search-results_url,
.module-search-results_result a {
    word-wrap: break-word;
}

.module-search-results_url {
    display: none;
}

.module-search-results_result:after {
    content: '';
    display: table;
    clear: both;
}

.module-search-results_description {
    color: #1d1d1d;
    font-size: 14px;
    text-shadow: 0 1px 0 #FFFFFF;
    line-height: 1.5;
    font-weight: 400;
}

.module-search-results_summary {
    color: #003087;
    font-size: 20px;
    line-height: 21px;
    text-shadow: 1px 1px #FFFFFF;
    font-weight: 400;
    margin: 0 0 30px;
}

.module-search-results_summary span {
    color: #003087;
}

.module-search-results_pager {
    float: right;
}

.module-search-results .pager_list {
    margin: 20px 0 0 0;
    padding: 0;
    list-style: none;
    text-align: right;
    display: flex;
    flex-wrap: wrap;
}

.module-search-results .pager_list-item {
    margin: 1px 0;
    font-weight: 400;
    color: #1d1d1d;
    font-size: 13px;
    line-height: 17px;
    cursor: pointer;
    position: relative;
}

.module-search-results .pager_list-item a {
    display: block;
    color: #1d1d1d;
    transition: .3s ease-in-out;
    padding: 11px 6px;
}

.module-search-results .pager_list-item a.active,
.module-search-results .pager_list-item a:hover {
    color: #003087;
}

.module-search-results .pager_list-item--previous,
.module-search-results .pager_list-item--next {
    position: relative;
    border-right: 1px solid #fff;
    border-left: 1px solid #fff;
}

.module-search-results .pager_list-item--previous>a,
.module-search-results .pager_list-item--next>a {
    position: absolute;
    left: 0;
    width: 29px;
    height: 39px;
    text-align: center;
}

.module-search-results .pager_list-item--previous>a:after,
.module-search-results .pager_list-item--next>a:after {
    content: "\e90e";
    font-family: 'q4-icons' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    color: #003087;
    vertical-align: top;
}

.module-search-results .pager_list-item--previous {
    transform: rotate(180deg);
}

.module-search-results .pager_list-item--next {
    margin-right: 25px;
}

.module-search-results .pager_text {
    display: none;
}

.module-search-results .daterangepicker .calendar-table .prev span {
    top: 5px;
}

.module-search-results .daterangepicker .calendar-table .prev span:before {
    content: '\e90d';
    font-size: 16px;
}

.module-search-results .daterangepicker .calendar-table .next span {
    top: 5px;
}

.module-search-results .daterangepicker .calendar-table .next span:before {
    content: '\e90e';
    font-size: 16px;
}

@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;
    }
}


/*Newmont Goldcorp Transaction Archive*/

.Sectioninvestors.page-transaction-archive .layout .layout_header {
    padding-top: 0;
}

.Sectioninvestors.page-transaction-archive .layout .pane--header:before {
    content: "";
    background-color: #003087;
    width: 100%;
    min-height: 140px;
    position: absolute;
    top: 0;
    z-index: 4;
    background: -moz-linear-gradient(top, rgba(9, 24, 88, 0.9) 0%, rgba(9, 24, 88, 0) 100%);
    background: -webkit-linear-gradient(top, rgba(9, 24, 88, 0.9) 0%, rgba(9, 24, 88, 0) 100%);
    background: linear-gradient(to bottom, rgba(9, 24, 88, 0.9) 0%, rgba(9, 24, 88, 0) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#e6091858', endColorstr='#00091858', GradientType=0);
}

.Sectioninvestors.page-transaction-archive .layout.js--header-fixed .pane--header:before {
    content: none;
}

.module-additional-information {
    margin-top: 100px;
}

.module-transaction-archive {
    margin-top: 100px;
    border-top: 1px solid #003087;
    padding-top: 22px;
}

.module-transaction-archive_sec .module_date-time,
.module-transaction-archive_press .module_date-time {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 400;
    margin: 0;
}

.module-transaction-archive_sec .module_headline,
.module-transaction-archive_press .module_headline {
    padding: 30px 0 10px;
    margin: 0;
}

.module-transaction-archive_sec .module_headline-link,
.module-transaction-archive_press .module_headline-link {
    font-size: 22px;
    font-weight: bold;
    line-height: 26px;
}

.module-transaction-archive_sec .module_link-text,
.module-transaction-archive_press .module_link-text {
    text-decoration: underline;
    font-weight: 100;
}

.module-transaction-archive_sec .module_item~.module_item,
.module-transaction-archive_press .module_item~.module_item {
    border-top: 1px solid rgb(9, 24, 88);
    padding-top: 7px;
}

.module-transaction-archive_sec .module_link {
    margin: 0;
}

.module-transaction-archive_tax-forms .module-downloads_title-link {
    text-decoration: underline;
    font-weight: 100;
}

.page-transaction-archive .layout .layout_inner {
    position: static;
}

.module-additional-information .module-downloads .module_date-time {
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 400;
}

.module-additional-information .module-downloads .module_item~.module_item {
    border-top: 1px solid rgb(9, 24, 88);
    padding-top: 7px;
}

.module-transaction-archive_tax-forms.module-downloads .module_item~.module_item {
    border: none;
}

.module-map-tooltip_title {
    color: #333;
    display: inline-block;
    font-size: 16px;
    font-weight: bold;
    line-height: 20px;
    margin: 0 12px 0 0;
    font-family: 'Montserrat', sans-serif;
}

.module-map-tooltip_description {
    max-height: 160px;
    margin-bottom: 6px;
    overflow-y: auto;
}

.module-map-tooltip_link {
    background-color: rgb(52, 63, 75);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    float: right;
    margin-top: 4px;
    padding: 4px 8px;
}

.module-map-tooltip_description p {
    color: #000;
    font-size: 13px;
    line-height: 20px;
    margin-bottom: 0;
}

.module-map-tooltip_description a {
    text-decoration: none;
    color: #003087;
}

.module-map-tooltip_description p:last-child {
    margin: 0;
}

.gm-style-iw-c button {
    top: 3px !important;
    right: 0px !important;
}

.gm-style .gm-style-iw-c {
    max-width: 300px !important;
    border-radius: 0;
    background-color: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
    padding: 16px;
}

@media (max-width: 1024px) {
    .module-map-tooltip_description {
        max-height: 110px;
    }
}

@media (max-width: 767px) {
    .module-our-business .module-map-tooltip_description {
        max-height: 45px;
    }
    .module-our-business .gm-style .gm-style-iw-d {
        overflow: hidden !important;
    }
    .module-our-business .module-map-tooltip_link {
        margin-bottom: 5px;
        margin-right: 5px;
    }
}

@media (max-width: 1100px) {
    .gm-style .gm-style-iw-c {
        max-width: 200px !important;
    }
}


/*Downloads */

.page-downloads .module-breadcrumb,
.page-downloads .module-arrow-nav {
    display: none;
}

@media (min-width: 1101px) {
    .page-downloads .pane--content {
        margin-top: 55px;
    }
}

.module-downloads--global-policies .module_title,
.module-downloads--cyanide .module_title {
    font-size: 22px;
    font-weight: bold;
    line-height: 26px;
    margin: 0;
    padding: 30px 0 10px;
}


/*GRI Index*/

.page-gri-index .module-table-small .table.table--bg .table_title th {
    line-height: 18px;
    font-size: 14px;
}

.page-email-alerts .module_introduction p {
    line-height: 1.5;
    color: #003087;
    font-size: 16px;
    font-weight: 400;
}

.page-email-alerts p.module_required-text {
    font-size: 13px;
    font-size: 1.3rem;
    color: #333333;
}

.page-email-alerts .button {
    font-size: 14px;
}

.CaptchaContainer strong {
    font-weight: 400;
}

.page-email-alerts a {
    text-decoration: none;
}

.page-email-alerts p.module_message--error {
    color: #b72121;
}

.module-slider-banner--inv li[data-index="rs-75"] {
    background-image: url("../design/banner/Musselwhite-Underground-Interaction.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.module-slider-banner--inv li[data-index="rs-82"] {
    background-image: url("../design/banner/Safety_Musselwhite-Underground-Maclean-Bolter.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.module-slider-banner--inv .rs-background-video-layer>iframe,
.module-slider-banner--inv .tp-revslider-mainul li .slotholder>* {
    display: none !important;
}


/*Document Library*/

.doc-lib-widget .module_container--results.js--list .module_document--container {
    background-image: none;
}

.module_document--container {
    background-image: url("../document_library/doc-library.jpg");
    position: relative;
}

.module_document--container:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(-7.29deg, #fff 35%, rgba(255, 255, 255, 0.5) 100%);
}

.module-document-library .js--list .module_document--container:before {
    content: none;
}

.module-image-banner .tp-caption.tp-shape,
.Sectionpage-operations-projects .tp-caption.tp-shape,
.page-operations-projects .tp-caption.tp-shape {
    background-color: rgba(255, 255, 255, 0.8) !important;
}

.module-image-banner .tp-caption,
.Sectionpage-operations-projects .tp-caption,
.page-operations-projects .tp-caption {
    color: rgb(9, 24, 88) !important;
}

.module-image-banner .tp-caption.rev-btn,
.page-operations-projects .tp-caption.rev-btn,
.Sectionpage-operations-projects .tp-caption.rev-btn {
    color: #fff !important;
}

.module-image-banner .rev-btn:not(.rev-btn--no-bg),
.Sectionpage-operations-projects .rev-btn:not(.rev-btn--no-bg),
.module-slider-banner--inv .rev-btn,
.page-operations-projects .rev-btn:not(.rev-btn--no-bg) {
    background-color: #E6B012 !important;
}

.Sectionpage-operations-projects .rev-btn:hover:not(.rev-btn--no-bg),
.page-operations-projects .rev-btn:hover:not(.rev-btn--no-bg) {
    background-color: #fff !important;
    color: #000 !important;
}

.module-privacy .table {
    width: 873px;
    color: #1d1d1d;
}

.module-privacy .table tr {
    border-bottom: none;
}

.module-privacy .table td {
    border-right: none;
    line-height: 22px;
    font-weight: 100;
}

.page-pueblo-viejo .module-tab a[data-tab=".module_tab--contact"] {
    display: none;
}

#map iframe+div>a {
    display: none !important;
}

.module-yellow-box {
    margin: 10px 0;
}

.module-yellow-box_wrap {
    display: flex;
    position: relative;
}

.module-yellow-box_text {
    display: flex;
    align-items: center;
    /* background: #FCAF17; */
    background: #E6B012;
    width: 30%;
}

.module-yellow-box_img {
    width: 70%;
}

.module-yellow-box_text-wrap {
    width: 100%;
    text-align: center;
}

.module-yellow-box_wrap a {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 40px;
}

.module-yellow-box_wrap img {
    height: 100%;
}

.module-yellow-box_text-wrap h3,
.module-yellow-box_text-wrap span {
    color: #fff;
}

.module-yellow-box_text-wrap .q4-icon_chevron-right:before {
    content: "\edbe";
    font-weight: 700;
    font-size: 12px;
}
@media (max-width: 1024px) {
    .module-yellow-box_wrap img {
        width:100%;
    }
    .module-yellow-box_text-wrap h3 {
        margin:0;
        line-height: 30px;
    }
}

@media (max-width: 767px) {
    .module-yellow-box_text-wrap h3 {
        font-size: 13px;
        line-height: 17px;
        margin: 0;
    }
    .module-yellow-box_text-wrap span {
        font-size: 12px;
    }
    .module-yellow-box_wrap img {
        width: 100%;
    }
    .module-yellow-box_text-wrap .q4-icon_chevron-right:before {
        font-size: 8px;
    }
}

.module-health-safety .module-health-safety_title {
    margin: 30px 0;
    padding-top: 50px;
}


/*page-health-and-safety */

.page-health-and-safety .module-operations {
    height: 768px;
}

.module-block .module_video {
    width: 100%;
    height: 201px;
    border: 1px solid;
    margin-top: 20px;
    position: relative;
}

.module-block .module_video video {
    width: 100%;
}

.module-block .module_video iframe {
    height: 100%;
}

.module-block .module_video-icon {
    width: 50px;
    height: 50px;
    border: 1px solid #003087;
    border-radius: 100%;
    display: inline-block;
    text-align: center;
    line-height: 50px;
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 auto;
}

.module-regions-safety .module-primary-block,
.module-regions-safety .module-sidebar-block_videos {
    border-top: 4px solid #003087;
    padding-top: 30px;
}

.module-regions-safety .module-primary-block h3,
.module-regions-safety .module-sidebar-block h3 {
    border-top: none;
}

.module-regions-safety .table thead th {
    padding: 10px 8px;
    font-size: 16px;
}

.module-regions-safety .table td {
    font-size: 15px;
    vertical-align: middle;
    line-height: 18px;
}

.module-regions-safety .table tbody td {
    padding: 10px 8px;
}

.module-regions-safety .table tbody td+td {
    padding-left: 8px;
}

.module-regions-safety .table thead th+th {
    padding-left: 8px;
}

.module-together .module_container--inner {
    border-top: 4px solid #003087;
    padding-top: 30px;
}

.module-faq.module_tab--global-community .module_container--inner {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
}

.page-health-and-safety .module-operations_container {
    display: none;
}

.page-health-and-safety .module-operations_container.module-operations_container--health {
    display: block;
}

.module_tab-hidden {
    display: none;
}

.module_tab-hidden.js--visible {
    display: block;
}

@media (max-width: 1100px) {
    .module-block .module_video {
        height: auto;
        width: 60%;
    }
    .module-block .module_video iframe {
        height: 244px;
    }
}

@media (max-width: 767px) {
    .module-block .module_video iframe {
        height: auto;
    }
    .page-health-and-safety .module-operations_container.module-operations_container--health {
        display: none;
    }
    .page-health-and-safety .pane--banner {
        padding-bottom: 60%;
        background-image: url("../design/health-and-safety-bg.jpg");
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center;
    }
    .module-block .module_video {
        width: 100%;
    }
}

.PageOperationsampProjectsHealthandSafety .module-map-tooltip_link {}


/* START 2019 sustainability report  */

.module-view-our-sustainability_link {
    height: 100%;
    display: block;
}

.module-view-our-sustainability .button {
    margin-top: 20px;
}

.module-view-our-sustainability_background {
    height: 100%;
 /*   background-image: url(../images/2019-sustainability/Report.jpg); */
    background-size: cover;
    position: relative;
}

.module-view-our-sustainability_background img {
    padding-top: 11px;
}

.module-view-our-sustainability_background:after {
    content: "";
    background-image: url(../images/2019-sustainability/download.png);
    width: 71px;
    height: 71px;
    position: absolute;
    bottom: 42px;
    right: 35px;
    opacity: 0.5;
}
.PageSustainabilitySustainabilityReporting .module-message-from-ceo-video {
    height: 100%;
    background-image: url(../images/2019-sustainability/TomPalmer-SR.jpg);
    background-size: cover;
    position: relative;
    background-position: center;
}
.PageIndigenousCommunityRelations .module-message-from-ceo-video {
    height: 100%;
    background-image: url(../images/our-purpose-and-vision_video.jpg);
    background-size: cover;
    position: relative;
    background-position: center;
}
.PageIndigenousCommunityRelations .module-message-from-ceo-video:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.3);
    z-index: 1;
}

.PageIndigenousCommunityRelations .module-message-from-ceo-video:after {
    content: "\ed85";
    font-family: 'q4-icons' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #fff;
    border: 1px solid;
    border-radius: 100%;
    padding: 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

/* .module-message-from-ceo-video:after {
    content: "";
    position: absolute;
    bottom: 28px;
    right: 28px;
    background-image: url(../images/2019-sustainability/Newmont-Monogram.png);
    width: 31px;
    height: 31px;
} */


/* .module-message-from-ceo-video:before {
    content: "";
    position: absolute;
    background-image: url(../images/2019-sustainability/play-icon.png);
    width: 79px;
    height: 79px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
} */

.module-message-from-ceo-text {
    border-top: 3px solid #071758;
    padding-top: 30px;
}

.module-message-from-ceo-quote {
    position: relative;
    padding-left: 15px;
    margin-bottom: 28px;
    font-family: "Roboto", sans-serif;
}

.module-message-from-ceo-quote p:last-child {
    margin-left: -15px;
}

.module-message-from-ceo-quote:before {
    content: " “";
    position: absolute;
    left: 0;
    top: -9px;
    font-size: 34px;
}

.ceo-quote-mark {
    font-size: 34px;
}

.module-message-from-ceo-quote p {
    font-weight: 700;
}

.module-title-border .module_title,
.module-title-border .alternative-border {
    border-top: 3px solid #071758;
    padding-top: 35px;
}

.module-public-targets-faq .module_container--inner {
    padding: 0;
    margin: 0;
    border: none;
}

.module-public-targets-faq td {
    font-size: 16px;
}

.module-public-targets-faq .tr-header td {
    font-weight: 700;
    text-transform: uppercase;
}

.module-public-targets-faq .table tbody td+td,
.module-public-targets-faq .table thead th+th {
    padding-left: 14px;
}

.module-case-studies .module_headline {
    padding-top: 28px;
    font-weight: 700;
}

.module-2019-sustainability-downloads_group+.module-2019-sustainability-downloads_group {
    margin-top: 20px;
}

.module-2019-sustainability-downloads_group-title {
    margin: 0;
    padding-left: 22px;
    font-size: 22px;
    background: #003087;
    font-weight: bold;
    color: #fff;
    position: relative;
    line-height: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    line-height: 28px;
    font-weight: 500;
}

.module-2019-sustainability-downloads_container .js--active .module-faq_plus {
    transform: rotate(0deg);
}

.module-2019-sustainability-downloads_container .js--active .module-faq_plus:before {
    width: 0px;
}

.module-2019-sustainability-downloads_group-inner {
    background-color: #F4F4F4;
    padding: 15px;
}

.module-2019-sustainability-downloads_group-item .module_link {
    padding-left:25px;
    position:relative;
}

.module-2019-sustainability-downloads_group-item .module_link:before {
    position:absolute;
    left:0;
    top:2px;
}

@media (min-width: 1201px) {
    .grid--wide {
        margin-left: -45px;
    }
    .grid--wide>.grid_col {
        padding-left: 45px;
    }
}

@media (max-width: 1023px) {
    .module-view-our-sustainability_background {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .module-view-our-sustainability_background {
        min-height: 400px;
        margin-top: 40px;
        height:100%;
    }
    .module-message-from-ceo-video {
        min-height: 400px;
    }
    .module-message-from-ceo-text {
        margin-top: 40px;
    }
    .module-case-studies .module_headline {
        padding-top: 15px;
        margin-bottom: 40px;
    }
}

@media (max-width: 464px) {
    .module-image-banner--sustainability-reporting .rev_slider .tp-kbimg-wrap img {
        padding-right: 150px;
    }
    
    .module-view-our-sustainability_background {
        min-height: 225px;
    }

    .module-view-our-sustainability_background:after {
        background-size: contain;
        height: 45px;
        width: 45px;
    }

    .module-public-targets-faq .module-faq_question {
        padding: 10px 10px 10px 22px;
    }
}

@media (max-width: 767px) {
    .module-public-targets-faq .table tbody td:empty {
        padding: 0;
    }
    .module-public-targets-faq .table tbody td+td {
        padding-left: 0;
    }
}

@media (min-width: 768px) {
    .module-public-targets-faq .table thead th:nth-child(2) {
        width: 22%;
    }
}

@media (min-width: 1040px) {
    .module-public-targets-faq .table thead th:nth-child(2) {
        width: 16%;
    }
}
    @media screen and (max-width: 768px) {
        .module-bottom-content.module-bottom-content .module_title {
            min-height: auto;
        }
        .module-bottom-content.module-home-content .module-bottom-content_copy {
            margin: 0;
            padding-bottom: 35px;
        }
        .module-bottom-content.module-home-content .button {
            position: static;
        }
    }
/* END 2019 sustainability report  */

/*PP*/
/*1291*/
.module-post-closure .tp-caption img:hover {
    cursor:pointer;
}
/*1336*/
.ui-datepicker {
    width:305px !important;
}
/*1333*/
.PageReportsampFilings .pager-next {
    left: 6rem !important;
}
/*1240*/
.module-document-library .daterangepicker .calendar-table th.month {
    width:155px;
}
.PageMatchingGifts .pane--content {
    margin-top:0;
}
.module-form_item--disclaimer legend {
    display:none;
}
.gifts .module_container--captcha .module-form_label {
    margin-bottom: 5px;
    font-size: 16px;
    font-weight: 700;
}
.module-qa-dl,
.module-additional-information,
.module-document-library,
.module-downloads--accordion {
    position: relative;
    z-index: 3;
}
.layout:not(.layout--home) .pane--content span>span:first-child> div.module-gifts-intro {
    padding-top:70px;
}
.fancybox_container--doc .button {
    margin-bottom: 15px;
}
.fancybox_container--doc h2 {
    padding-right: 20px;
}
@media screen and (max-width: 1100px) { 
    .PageSustainabilityEnvironmentalResponsibility .module-bottom-content_block {
        width:100% !important;
    }
}
@media screen and (max-width: 1024px) { 
    .module-stock-chart .highcharts-button {
        display: none;
    }
    .module-stock-chart .highcharts-range-selector-buttons .highcharts-button {
        display:inline-block;
    }
    .fancybox_container--doc {
        overflow-x: hidden;
    }
    .fancybox_container--doc iframe {
        left: 0;
        right: 0;
        padding: 0 20px;
    }
}
@media screen and (max-width: 1023px) { 
    .module-search-results .form_input {
        padding: 13px 10px;
        font-size: 14px;
    }
    .module-search-results .form_field--date:after {
        right:7px;
    }
    .module-search-results .form_select {
        padding-left:10px;
    }
}
@media screen and (max-width: 768px) { 
    .module-calculator_popup-container {
        max-width: 500px;
        width: 100%;
    }
    .module-calculator_popup-container .table tbody td {
        border-right:none;
    }
    .module-calculator_popup-container .table tbody td+td {
        padding-left:0;
    }
    .module-search-results .form_select {
        height:44px;
    }
    .module-search-results .form-fields-right .grid_col {
        display: block;
        width: 100%;
    }
}
/* 00015969 */
/* .module_document--container .module_background--document-library[href$=".xlsx"]:before {
   background-image: url('../design/excel.png');
} */

.excel {
    
    display: block;
    width: 36px !important;
    height: 41px !important;
    margin-bottom: 20px !important;
    background-repeat: no-repeat !important;
    background-size: auto !important;
    position: relative !important;
   background-image: url('../design/excelv2.png') !important;
    
}

.module_q4-icon-links .module_link[href$=".xlsx"]::before {
    font-family: "q4-icons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\ef41";
    font-size: 16px;
    vertical-align: middle;
    display: inline-block;
    padding-right: 5px;
}

.page--responding-to-shareholders .module-tab_cards .tabs_link {
    width: 170px;
}

.module-human-rights .module_container--inner {
    border-top: 1px solid #003087;
    padding-top: 22px;
    margin-top: 15px;
}

.module-human-rights .module_item {
    padding: 0;
    border: none;
    margin-bottom: 20px;
    margin-top: 20px;
}

.module-human-rights_link {
    text-decoration: underline;
    font-weight: 100;
    line-height: 26px;
    box-sizing: inherit;
    color: #003087;
    overflow-wrap: break-word;
    text-decoration: underline;
}

/* 00029611 */
#_ctrl0_ctl72_divModuleContainer li {
    color: #000 !important;
    line-height: 2;
}
/* 00029611 end */

/*start cr 658*/

.module-blocks_item-blog .module_title,
.module-blocks_item-sustainability .module_title {
    margin-bottom: 30px;
    line-height: 40px;
    letter-spacing: -1px;
    font-weight: 600;
}

.module-blocks_item-sustainability .button {
    margin: 30px 0px 45px;
}

.module-blocks_item-news .module_title,
.module-blocks_item-blog .module_title {
    border-top: 4px solid #003087;
    padding-top: 30px;
}

.module-blocks_item-blog .module_item {
    padding: 0;
}

.module-blocks_item-news .button {
    margin: 30px 0px 0;
} 

/*end cr 658*/

.module-blog .pager_list-item {
    display: inline-block;
    vertical-align: middle;
}

.module-blog .pager_page {
    width: 18px;
    cursor: pointer;
    margin: 0 12px;
    border: none;
    background: none;
    padding: 0;
    font-size: 19.2px;
    color: #003087;
    font-family: 'Open Sans', sans-serif;
}

.module-blog .pager_page.js--active {
    font-weight: 700;
}

.module-blog .pager_button--prev,
.module-blog .pager_button--next {
    border: none;
    padding: 0;
    margin: 0;
    font-size: 20px;
    background: none;
    color: #003087;
    font-family: 'Open Sans', sans-serif;
}

.module-blog .pager_button.js--disabled {
    opacity: 0.2;
}

.js--hidden-month{
    display:none !important;
}

.pane--content .module-blog-details iframe {
    width: 100%;
    height: 625px;
}

@media screen and (max-width: 1024px) {
    .pane--content .module-blog-details iframe {
        height: 550px;
    }
}

@media screen and (max-width: 768px) {
    .pane--content .module-blog-details iframe {
        height: 400px;
    }
}

@media screen and (max-width: 480px) {
    .pane--content .module-blog-details iframe {
        height: 200px;
    }
}

.module-blog .module_options-label {
    font-weight: 700;
}
.module-document-library .document_title[data-tags="Estma"] > span {
        text-transform: uppercase;
}
.module-porcupine > div > div > div.module-block_container.module_tab.module_tab--overview > div.module-sidebar-block.module-sidebar-block--porcupine > div.module-sidebar-block_links-downloads > div.disclaimer > p {
    font-size: 1.2rem;
}
.module_centered{
    text-align:center;
}
.PageAboutUsLeadership .module-person h2.module_title{
        text-align: left!important;
}



.module-slider-banner--inv li[data-index="rs-80"] {
    background-image: url(../design/banner/DSC_5348.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

/*00210657 */
/* Adjusting tab spacing to accommodate for extra tabs */
.PageSustainabilityNewmontResponses .module-tab_cards .module-tab_line {
    height:6px;
}

.PageSustainabilityNewmontResponses .module-tab_cards .tabs_link {
    height: 55px;
}

.PageSustainabilityNewmontResponses .module-tab_cards .tabs_link span {
    padding: 6px 9px;
}
.PageSustainabilityNewmontResponses .module-primary-block li {
    line-height: 1.4;
    font-weight: 100;
}
/*00210657 end*/
/* @media only screen and (min-width: 1025px) {
    .module-person--senior-officers .module_container--inner > :last-child {
        width: 100%;
    }
} */
/* 00221549*/


/*-- 00234155 --*/

.pane--content .module.module-economic-impact {
    padding-bottom: 0px;
}


/*-- 00250679 --*/
.PageInvestorsNewsReleasesNewsDetails ul li {
    color: #1d1d1d;
    font-weight: 100;
}

/* 00267285 */

.module-sustainable-finance h2 span {
    font-size: 48px;
}

.module-sustainable-finance h2 {
    padding-top: 100px;
}

.module-sustainable-finance .ceo-quote {
    color:#0C2B82;
    font-weight: 400;
}

/* 00316997 */
.module-leadership-insights {
	    padding-bottom: 0px !important;
}

.module-leadership-insights .grid_col {
    margin-top: 40px;
}

.module-leadership-insights .button a {
    color: #fff;
}

.bold {
    font-weight: bold;
}

.italic {
    font-style: italic;
}

.module-climate-change {
    padding-top: 0px !important;
}

.section-person-quote {
    margin-bottom: 40px;
}

.leadership-insight-quote {
        padding: 30px 30px 0 0;
    margin: 0;
    border-top: 3px solid #003087;
    font-size: 22px;
}

.name-title {
    text-transform: uppercase;
}

.tp-fullwidth-forcer {
    height: 0px !important;
}

.insights-back-btn {
    margin-bottom: 40px;
}

.insights-management-photos {
    display: flex;
    justify-content: space-between;
}

.insights-management-photos div {
    width: 48%;
}

.module-innovation-slider #slide-35-layer-4 {
    font-size: 54px !important;
}

.sustainable-financing-slider #slide-35-layer-4 {
    font-size: 48px !important;
}

.sustainable-financing-slider .tp-parallax-wrap {
    top: 20px !important;
}

.leadership-insights-button {
    text-decoration: none !important;
    font-weight: bold !important;
}

.leadership-insights-button span {
    color: #E6B012;
}

@media screen and (max-width: 768px) {
    .annual-report-flex-child {
        width: 100% !important;
    }
    .annual-report-flex {
       margin-top: 540px;
        flex-direction: column;
    }
}

@media screen and (max-width: 480px) {
    .annual-report-flex {
       margin-top: 400px;
    }
}
/*00316997 - mobile banner image fix */
@media (max-width: 476px) and (min-width:389px) {
    .module-view-our-sustainability_background img {
        margin-top:150px;
    }
}
/* 00316997 end */