/*==================================
 ------------ 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;
  }
  
  nav ol, nav ul:not(.list), .list--reset ol, .list--reset ul:not(.list) {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  
  blockquote, q {
    quotes: none;
  }
  
  blockquote:before, blockquote:after, q:before, q:after {
    content: '';
    content: none;
  }
  
  table {
    border-collapse: collapse;
    border-spacing: 0;
  }
  
  strong {
    font-weight: bold;
  }
  
  em {
    font-style: italic;
  }
  
  sup {
    vertical-align: super;
    font-size: 55%;
  }
  
  small {
    font-size: 12px;
    line-height: 18px;
  }
  
  /*---------- Animations ----------*/
  
  @keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
  }
  
  /*==================================
  --------- DEFAULT STYLES ---------
  ==================================*/
  
  body {
    overflow-x: hidden;
    color: #1D252D;
    font-family: 'Ubuntu', sans-serif;
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 1.3125;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: none;
  }
  
  /*---------- TYPOGRAPHY ----------*/
  
  h1 {
    font-size: 21px;
    font-size: 3.6rem;
    margin-bottom: 48px;
    line-height: 1.125;
    text-transform: uppercase;
    letter-spacing: 0.015em;
    font-weight: 700;
  }
  
  @media only screen and (max-width: 480px) {
    h1 {
        font-size: 36px;
        font-size: 3.6rem;
    }
  }
  
  h2 {
    font-size: 21px;
    font-size: 2.1rem;
    margin-bottom: 30px;
    line-height: 1.125;
    text-transform: uppercase;
    letter-spacing: 0.015em;
    font-weight: 700;
    /* test */
    position: relative;
    padding-bottom: 24px;
    margin-bottom: 60px;
  }
  
  h2 small {
    font-size: 10.5px;
    font-size: 1.05rem;
    vertical-align: middle;
  }
  
  .module-panel-container h2 small {
    display: block;
  }
  
  /* test */
  
  h2:after {
    content: "";
    width: 40px;
    height: 1px;
    background-color: #D22630;
    position: absolute;
    bottom: 0;
    left: 0;
  }
  
  .black-header-border h2:after {
    background-color: #1D252D !important;
  }
  
  .layout--home h2 {
    color: #1D252D;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 60px;
    padding-bottom: 24px;
    line-height: 13px;
    letter-spacing: 0.12em;
  }
  
  @media (max-width: 1200px) {
    h2, .layout--home h2 {
        margin-bottom: 40px;
        margin-bottom: 4rem;
    }
  }
  
  @media (max-width: 768px) {
    .layout--home h2 {
        margin-bottom: 35px;
    }
  }
  
  .dark h2:after, .dark h4:after {
    background-color: #fff;
  }
  
  h3 {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.125;
    color: #D22630;
    font-weight: 700;
  }
  
  h3.h3 {
    font-size: 24px;
    font-size: 2.4rem;
    line-height: 1.375;
    font-weight: 500;
  }
  
  h4 {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.2;
    margin-bottom: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12px;
    /* test */
    position: relative;
    padding-bottom: 24px;
    margin-bottom: 40px;
  }
  
  h4:after {
    content: "";
    width: 40px;
    height: 1px;
    background-color: #1D252D;
    position: absolute;
    bottom: 0;
    left: 0;
  }
  
  .no-border-title h4, .no-border-title h2 {
    margin-bottom: 16px;
    padding-bottom: 0;
  }
  
  .no-border-title h2 {
    margin-bottom: 25px;
  }
  
  .no-border-title h4:after, .no-border-title h2:after {
    display: none;
  }
  
  h5 {
    font-size: 14px;
    font-size: 1.4rem;
    margin-bottom: 14px;
  }
  
  a {
    text-decoration: none;
    color: #1d252d;
    /* color: #D22630; */
  }
  
  a:hover {
    color: #D22630;
  }
  
  .module-html a, .q4default a {
    border-bottom: 1px solid #1d252d;
  }
  
  .module-html a:hover, .q4default a:hover {
    border-color: #a2aaad;
  }
  
  p {
    line-height: 1.75;
  }
  
  .intro-text {
    color: #D22630;
    font-size: 24px;
    font-weight: 500 !important;
    line-height: 33px;
  }
  
  .disp_cell .intro-text {
    margin-top: 0;
  }
  
  i {
    display: inline-block;
  }
  
  strong {
    font-weight: bold;
  }
  
  em {
    font-style: italic;
  }
  
  /*------------ COMMON ------------*/
  
  img {
    max-width: 100%;
  }
  
  input[type="checkbox"], input[type="radio"] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
  }
  
  input[type="checkbox"]+label, input[type="radio"]+label {
    user-select: none;
    cursor: pointer;
    position: relative;
  }
  
  input[type="checkbox"]+label:before, input[type="radio"]+label:before {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    border: 1px solid #1D252D;
    margin-right: 8px;
    line-height: 1;
    transition: all 300ms ease;
  }
  
  /* input[type="checkbox"] + label:after {
    content: "";
    width: 12px;
    height: 12px;
    border: 2px solid #1D252D;
    position: absolute;
    display: inline-block;
    left: 0px;
    top: 3px;
    opacity: 0;    
  } */
  
  input[type="checkbox"]+label:after {
    content: "";
    width: 8px;
    height: 8px;
    position: absolute;
    display: inline-block;
    left: 2px;
    font-size: 14px;
  }
  
  .pane--footer2 input[type="checkbox"]+label:after {
    font-size: 10px;
    top: -2px;
  }
  
  /* input[type="checkbox"]:checked + label:before {
    border-color: #fff; 
    transition-delay: 300ms;
  } */
  
  input[type="checkbox"]:checked+label:after {
    /* opacity: 1;
    transition: opacity 200m ease;
    animation: check 0.82s cubic-bezier(.36,.07,.19,.97); */
    content: "\2713";
  }
  
  input[type="radio"]+label:before {
    border-radius: 100%;
  }
  
  input::-ms-clear {
    display: none;
  }
  
  iframe {
    width: 100%;
  }
  
  /*------- HACKS AND FIXES -------*/
  
  .clearfix:before, .clearfix:after {
    content: " ";
    display: table;
  }
  
  .clearfix:after {
    clear: both;
  }
  
  /*------------ LISTS ------------*/
  
  .list {
    list-style-type: disc;
    padding-left: 30px;
    margin-top: 15px;
    margin-bottom: 15px;
    line-height: 1.5;
  }
  
  .list--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;
  }
  
  .pane--content .module-html ul {
    list-style: none;
    padding: 0;
    font-weight: 500;
  }
  
  .pane--content li {
    padding: 10px 0 10px 30px;
    position: relative;
  }
  .pane--content .module_links li {
    padding: 0;
  }
  .pane--content ul li:before {
    content: "";
    position: absolute;
    width: 7px;
    height: 7px;
    background-color: red;
    border-radius: 50%;
    top: 18px;
    left: 0;
  }
  
  .list--reset li:before {
    display: none;
  }
  
  .ol-counter {
    list-style: none;
    counter-reset: section;
    margin: 0;
    padding: 0;
  }
  
  .ol-counter li:before {
    counter-increment: section;
    content: counters(section, ".") ". ";
    font-weight: bold;
    color: red;
    position: absolute;
    left: 0;
  }
  
  /*------- BUTTONS / INPUTS -------*/
  
  .input, .textarea, .dropdown, .upload, .submit, .button, .module-news-details .module_view-all-link {
    display: inline-block;
    max-width: 100%;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-bottom: 5px;
    background: transparent;
    /* border: 2px solid #D22630; */
    color: #1D252D;
    border-radius: 0;
    font-family: 'Ubuntu', sans-serif;
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: 700;
    position: relative;
  }
  
  .button:after, .module-news-details .module_view-all-link:after {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #D22630;
    position: absolute;
    bottom: 0;
    left: 0;
  }
  
  .button:before, .module-news-details .module_view-all-link:before {
    content: "";
    position: absolute;
    bottom: 0;
    width: 0;
    height: 1px;
    background-color: #000;
    z-index: 2;
    transition: all 300ms ease;
  }
  
  .dark .button:before {
    background-color: #fff;
  }
  
  .dark .button:after {
    background-color: #1D252D;
  }
  
  .input::-ms-clear, .textarea::-ms-clear, .dropdown::-ms-clear, .upload::-ms-clear, .submit::-ms-clear, .button::-ms-clear {
    display: none;
  }
  
  .submit, .button, .upload, .dropdown {
    cursor: pointer;
  }
  
  .submit, .button {
    text-transform: uppercase;
  }
  
  .textarea {
    width: 100%;
    resize: vertical;
  }
  
  .upload {
    line-height: 0;
  }
  
  .button {
    transition: 0.3s ease-in-out;
    border: none !important;
  }
  
  .button:focus {
    text-decoration: none !important;
  }
  
  .button:hover {
    color: #1D252D;
    text-decoration: none !important;
  }
  
  .dark .button:hover {
    color: #fff;
  }
  
  .button:hover:before, .module-news-details .module_view-all-link:hover:before {
    width: 100%;
  }
  
  .button--inverted {
    background: #D22630;
    color: #fff;
  }
  
  .button--inverted:hover {
    background: transparent;
    color: #D22630;
  }
  
  .button--inverted.js--disabled {
    background: #fff;
    border-color: #D22630;
    color: #D22630;
  }
  
  .button--dark {
    border: 2px solid #fff;
    color: #fff;
  }
  
  .button--dark:hover {
    background: #fff;
    color: #D22630;
  }
  
  .module_options-submit {
    border: none;
    padding-left: 0;
    padding-right: 0;
    background-color: #d22630;
    padding: 15px 30px;
    color: #ffff;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
    cursor: pointer;
  }
  
  .module_options-submit:before, .module_options-submit:after {
    display: none;
  }
  
  .button-mod, .module_reminder-button {
    background-color: #d22630;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
    padding: 13px 15px;
    color: #fff;
    display: inline-block;
    position: relative;
    margin-bottom: 20px;
    border: none !important;
  }
  
  .module_reminder-button {
    min-width: auto;
    border: none;
  }
  
  .module-buttons-margin .button-mod {
    margin-right: 40px;
  }
  
  .button-mod:before {
    width: 0;
    background-color: #fff;
    bottom: 10px;
    left: 15px;
  }
  
  .button-mod:hover:before {
    width: calc(100% - 30px);
  }
  
  .button-mod:hover {
    color: #fff;
  }
  
  @media only screen and (max-width: 640px) {
    .module-buttons-mobile-full-width .button-mod {
        width: 100%;
        margin-right: 0;
    }
  }
  
  .dropdown {
    padding: 15px 0;
    background: transparent url(../design/svg/icon-Dropdown_Arrow-Red.svg) no-repeat right 0 center;
    background-size: 5px 3px;
    min-width: 130px;
    border: none;
    border-bottom: 2px solid #1d252d;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #d22630;
  }
  
  .dark .dropdown {
    background-image: url(../design/svg/icon-Dropdown_Arrow-White.svg);
  }
  
  .dropdown::-ms-expand {
    display: none;
  }
  
  /*------------ TABLES ------------*/
  
  .table {
    width: 100%;
    margin: 16px 0;
    border-bottom: 4px solid #1D252D;
  }
  
  .table thead th, .table tbody td {
    text-align: right;
  }
  
  .table th:first-child, .table td:first-child {
    text-align: left;
  }
  
  .table tbody tr {
    border-top: 1px solid #D0D3D4;
  }
  
  .table tbody tr.table_thick-border {
    border-top: 4px solid #1d252d;
  }
  
  .table th, .table td, .table tr>.grid_col {
    margin: 0;
    padding: 14px 0;
    color: #1f252c;
  }
  
  .table th:not(:first-child), .table td:not(:first-child) {
    padding-right: 5px;
    padding-left: 5px;
  }
  
  .table th {
    font-weight: 500;
    line-height: 24px;
    color: #1F252C;
  }
  
  td.table_indent {
    padding-left: 10px;
  }
  
  td.table_indent-plus {
    padding-left: 20px;
  }
  
  .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: #D22630;
    text-align: left;
  }
  
  .table--headless tr:first-child td {
    color: #fff;
  }
  
  tr.table-header {
    font-weight: 700;
  }
  
  .table-wrapper, .table--overflow {
    overflow: auto;
  }
  
  .table-legend p {
    margin: 0;
  }
  
  @media (max-width: 767px) {
    .table-wide-scroll {
        overflow: auto;
        position: relative;
        margin-right: -30px;
    }
    .table-wide-scroll .table {
        min-width: 1100px;
    }
    .table-wide-scroll:after {
        content: "";
        width: 60px;
        height: 60px;
        background-color: #edf1f2;
        position: absolute;
        top: 0;
        right: 0;
        background-image: url(../design/svg/table-scroll.svg);
        background-size: 75%;
        background-repeat: no-repeat;
        background-position: center;
        opacity: 1;
        transition: all 300ms ease;
        transform: translateX(0);
        animation: scroll 1s infinite alternate;
    }
    .table-wide-scroll.js--active:after {
        opacity: 0;
    }
  }
  
  @media only screen and (max-width: 480px) {
    .table--responsive thead {
        display: none;
    }
    .table--responsive tbody {
        border-top: 2px solid #D22630;
        border-bottom: 2px solid #D22630;
    }
    .table--responsive td {
        display: block;
    }
    .table--responsive td:before {
        content: attr(data-heading) ": ";
        font-weight: bold;
    }
    .table thead th, .table tbody td {
        text-align: left;
    }
    .table th:not(:first-child), .table td:not(:first-child) {
        padding-right: 0;
        padding-left: 0;
    }
       .PageInvestorsReservesandResources .table th:not(:first-child), .table td:not(:first-child) {
        padding-right: 0;
        padding-left: 6px;
    }
      .PageInvestorsReservesandResources .table thead th, .table tbody td {
        text-align: right;
    }
  }
  
  /*--------- 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[href$=".pdf"]:before, .module_q4-icon-links .module_link[href$=".PDF"]:before {
    content: "\ef3e";
    font-size: 16px;
  }
  
  .module_q4-icon-links .module_link indexes:before, .module_q4-icon-links .module_link[href$=".PDF"]:before {
    content: "\ef3e \ef3e";
    font-size: 16px;
  }
  
  .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$=".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_row-reverse {
    flex-direction: row-reverse;
  }
  .grid--flex-column {
    flex-direction: column;
  }
  .grid--flex_column-reverse {
    flex-direction: column-reverse;
    flex: 1 1 auto;
    flex-wrap: nowrap;
  }
  
  .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.3333333333%;
    max-width: 33.3333333333%;
  }
  
  .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.6666666667%;
    max-width: 66.6666666667%;
  }
  
  .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--flex .grid_col--1-of-5 {
    width: auto;
    flex-basis: 20%;
    max-width: 20%;
  }
  
  .grid_col--push-1-of-5 {
    margin-left: 20%;
  }
  
  .grid_col--pull-1-of-5 {
    margin-left: -20%;
  }
  
  .grid_col--2-of-5 {
    width: 40%;
  }
  
  .grid--flex .grid_col--2-of-5 {
    width: auto;
    flex-basis: 40%;
    max-width: 40%;
  }
  
  .grid_col--push-2-of-5 {
    margin-left: 40%;
  }
  
  .grid_col--pull-2-of-5 {
    margin-left: -40%;
  }
  
  .grid_col--3-of-5 {
    width: 60%;
  }
  
  .grid--flex .grid_col--3-of-5 {
    width: auto;
    flex-basis: 60%;
    max-width: 60%;
  }
  
  .grid_col--push-3-of-5 {
    margin-left: 60%;
  }
  
  .grid_col--pull-3-of-5 {
    margin-left: -60%;
  }
  
  .grid_col--4-of-5 {
    width: 80%;
  }
  
  .grid--flex .grid_col--4-of-5 {
    width: auto;
    flex-basis: 80%;
    max-width: 80%;
  }
  
  .grid_col--push-4-of-5 {
    margin-left: 80%;
  }
  
  .grid_col--pull-4-of-5 {
    margin-left: -80%;
  }
  
  .grid_col--1-of-6 {
    width: 16.6666666667%;
  }
  
  .grid--flex .grid_col--1-of-6 {
    width: auto;
    flex-basis: 16.6666666667%;
    max-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--flex .grid_col--5-of-6 {
    width: auto;
    flex-basis: 83.3333333333%;
    max-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--flex .grid_col--1-of-7 {
    width: auto;
    flex-basis: 14.2857142857%;
    max-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--flex .grid_col--2-of-7 {
    width: auto;
    flex-basis: 28.5714285714%;
    max-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--flex .grid_col--3-of-7 {
    width: auto;
    flex-basis: 42.8571428571%;
    max-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--flex .grid_col--4-of-7 {
    width: auto;
    flex-basis: 57.1428571429%;
    max-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--flex .grid_col--5-of-7 {
    width: auto;
    flex-basis: 71.4285714286%;
    max-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--flex .grid_col--6-of-7 {
    width: auto;
    flex-basis: 85.7142857143%;
    max-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--flex .grid_col--1-of-8 {
    width: auto;
    flex-basis: 12.5%;
    max-width: 12.5%;
  }
  
  .grid_col--push-1-of-8 {
    margin-left: 12.5%;
  }
  
  .grid_col--pull-1-of-8 {
    margin-left: -12.5%;
  }
  
  .grid_col--3-of-8 {
    width: 37.5%;
  }
  
  .grid--flex .grid_col--3-of-8 {
    width: auto;
    flex-basis: 37.5%;
    max-width: 37.5%;
  }
  
  .grid_col--push-3-of-8 {
    margin-left: 37.5%;
  }
  
  .grid_col--pull-3-of-8 {
    margin-left: -37.5%;
  }
  
  .grid_col--5-of-8 {
    width: 62.5%;
  }
  
  .grid--flex .grid_col--5-of-8 {
    width: auto;
    flex-basis: 62.5%;
    max-width: 62.5%;
  }
  
  .grid_col--push-5-of-8 {
    margin-left: 62.5%;
  }
  
  .grid_col--pull-5-of-8 {
    margin-left: -62.5%;
  }
  
  .grid_col--7-of-8 {
    width: 87.5%;
  }
  
  .grid--flex .grid_col--7-of-8 {
    width: auto;
    flex-basis: 87.5%;
    max-width: 87.5%;
  }
  
  .grid_col--push-7-of-8 {
    margin-left: 87.5%;
  }
  
  .grid_col--pull-7-of-8 {
    margin-left: -87.5%;
  }
  
  .grid_col--1-of-12 {
    width: 8.3333333333%;
  }
  
  .grid--flex .grid_col--1-of-12 {
    width: auto;
    flex-basis: 8.3333333333%;
    max-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--flex .grid_col--2-of-12 {
    width: auto;
    flex-basis: 16.6666666667%;
    max-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--flex .grid_col--5-of-12 {
    width: auto;
    flex-basis: 41.6666666667%;
    max-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--flex .grid_col--7-of-12 {
    width: auto;
    flex-basis: 58.3333333333%;
    max-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--flex .grid_col--10-of-12 {
    width: auto;
    flex-basis: 83.3333333333%;
    max-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--flex .grid_col--11-of-12 {
    width: auto;
    flex-basis: 91.6666666667%;
    max-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--flex .grid_col.grid_col--lg-1-of-3 {
        width: auto;
        flex-basis: 33.3333333333%;
        max-width: 33.3333333333%;
    }
    .grid_col.grid_col--lg-2-of-3 {
        width: 66.6666666667%;
    }
    .grid--flex .grid_col.grid_col--lg-2-of-3 {
        width: auto;
        flex-basis: 66.6666666667%;
        max-width: 66.6666666667%;
    }
    .grid_col.grid_col--lg-1-of-4 {
        width: 25%;
    }
    .grid--flex .grid_col.grid_col--lg-1-of-4 {
        width: auto;
        flex-basis: 25%;
        max-width: 25%;
    }
    .grid_col.grid_col--lg-3-of-4 {
        width: 75%;
    }
    .grid--flex .grid_col.grid_col--lg-3-of-4 {
        width: auto;
        flex-basis: 75%;
        max-width: 75%;
    }
  }
  
  @media (max-width: 1024px) and (min-width: 769px) {
    .grid_col[class*="grid_col--lc-"] {
        display: inline-block;
        margin-right: -.24em;
    }
    .grid--flex .grid_col[class*="grid_col--lc-"] {
        display: block;
        margin-right: 0;
    }
    .grid_col.grid_col--lc-1-of-1 {
        width: 100%;
    }
    .grid--flex .grid_col.grid_col--lc-1-of-1 {
        width: auto;
        flex-basis: 100%;
        max-width: 100%;
    }
    .grid_col.grid_col--lc-1-of-2, .grid_col.grid_col--lc-2-of-4 {
        width: 50%;
    }
    .grid--flex .grid_col.grid_col--lc-1-of-2, .grid--flex .grid_col.grid_col--lc-2-of-4 {
        width: auto;
        flex-basis: 50%;
        max-width: 50%;
    }
    .grid_col.grid_col--lc-1-of-3 {
        width: 33.3333333333%;
    }
    .grid--flex .grid_col.grid_col--lc-1-of-3 {
        width: auto;
        flex-basis: 33.3333333333%;
        max-width: 33.3333333333%;
    }
    .grid_col.grid_col--lc-2-of-3 {
        width: 66.6666666667%;
    }
    .grid--flex .grid_col.grid_col--lc-2-of-3 {
        width: auto;
        flex-basis: 66.6666666667%;
        max-width: 66.6666666667%;
    }
    .grid_col.grid_col--lc-1-of-4 {
        width: 25%;
    }
    .grid--flex .grid_col.grid_col--lc-1-of-4 {
        width: auto;
        flex-basis: 25%;
        max-width: 25%;
    }
    .grid_col.grid_col--lc-3-of-4 {
        width: 75%;
    }
    .grid--flex .grid_col.grid_col--lc-3-of-4 {
        width: auto;
        flex-basis: 75%;
        max-width: 75%;
    }
  }
  
  @media (max-width: 768px) and (min-width: 481px) {
    .grid_col[class*="grid_col--md-"] {
        display: inline-block;
        margin-right: -.24em;
    }
    .grid--flex .grid_col[class*="grid_col--md-"] {
        display: block;
        margin-right: 0;
    }
    .grid_col.grid_col--md-1-of-1 {
        width: 100%;
    }
    .grid--flex .grid_col.grid_col--md-1-of-1 {
        width: auto;
        flex-basis: 100%;
        max-width: 100%;
    }
    .grid_col.grid_col--md-1-of-2, .grid_col.grid_col--md-2-of-4 {
        width: 50%;
    }
    .grid--flex .grid_col.grid_col--md-1-of-2, .grid--flex .grid_col.grid_col--md-2-of-4 {
        width: auto;
        flex-basis: 50%;
        max-width: 50%;
    }
    .grid_col.grid_col--md-1-of-3 {
        width: 33.3333333333%;
    }
    .grid--flex .grid_col.grid_col--md-1-of-3 {
        width: auto;
        flex-basis: 33.3333333333%;
        max-width: 33.3333333333%;
    }
    .grid_col.grid_col--md-2-of-3 {
        width: 66.6666666667%;
    }
    .grid--flex .grid_col.grid_col--md-2-of-3 {
        width: auto;
        flex-basis: 66.6666666667%;
        max-width: 66.6666666667%;
    }
    .grid_col.grid_col--md-1-of-4 {
        width: 25%;
    }
    .grid--flex .grid_col.grid_col--md-1-of-4 {
        width: auto;
        flex-basis: 25%;
        max-width: 25%;
    }
    .grid_col.grid_col--md-3-of-4 {
        width: 75%;
    }
    .grid--flex .grid_col.grid_col--md-3-of-4 {
        width: auto;
        flex-basis: 75%;
        max-width: 75%;
    }
  }
  
  @media (max-width: 480px) {
    .grid_col[class*="grid_col--sm-"] {
        display: inline-block;
        margin-right: -.24em;
    }
    .grid--flex .grid_col[class*="grid_col--sm-"] {
        display: block;
        margin-right: 0;
    }
    .grid_col.grid_col--sm-1-of-2, .grid_col.grid_col--sm-2-of-4 {
        width: 50%;
    }
    .grid--flex .grid_col.grid_col--sm-1-of-2, .grid--flex .grid_col.grid_col--sm-2-of-4 {
        width: auto;
        flex-basis: 50%;
        max-width: 50%;
    }
    .grid_col.grid_col--sm-1-of-3 {
        width: 33.3333333333%;
    }
    .grid--flex .grid_col.grid_col--sm-1-of-3 {
        width: auto;
        flex-basis: 33.3333333333%;
        max-width: 33.3333333333%;
    }
    .grid_col.grid_col--sm-2-of-3 {
        width: 66.6666666667%;
    }
    .grid--flex .grid_col.grid_col--sm-2-of-3 {
        width: auto;
        flex-basis: 66.6666666667%;
        max-width: 66.6666666667%;
    }
    .grid_col.grid_col--sm-1-of-4 {
        width: 25%;
    }
    .grid--flex .grid_col.grid_col--sm-1-of-4 {
        width: auto;
        flex-basis: 25%;
        max-width: 25%;
    }
    .grid_col.grid_col--sm-3-of-4 {
        width: 75%;
    }
    .grid--flex .grid_col.grid_col--sm-3-of-4 {
        width: auto;
        flex-basis: 75%;
        max-width: 75%;
    }
  }
  
  @media (max-width: 480px) {
    .grid--flex {
        display: block;
    }
    .grid--flex .grid_col {
        flex-grow: 1;
        flex-basis: 0;
        width: auto;
        max-width: 100%;
    }
  }
  
  .grid_col--centered {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  
  .grid_col--d-first {
    float: left;
  }
  
  .grid--flex .grid_col--d-first {
    float: none;
    order: -1;
  }
  
  .grid_col--d-last {
    float: right;
  }
  
  .grid--flex .grid_col--d-last {
    float: none;
    order: 1;
  }
  
  .grid--no-gutter {
    margin-left: 0;
  }
  
  .grid--no-gutter .grid_col {
    padding-left: 0;
  }
  
  .grid--no-gutter .grid_col--span-all {
    margin-left: 0;
    width: 100%;
  }
  
  .grid--gutter {
    margin-left: 20px;
  }
  
  .grid--gutter .grid_col {
    padding-left: 20px;
  }
  
  .grid--gutter-40 {
    margin-left: -40px;
  }
  
  .grid--gutter-40 .grid_col {
    padding-left: 40px;
  }
  
  .grid--no-space .grid_col {
    margin-right: 0;
  }
  
  .grid_col--ab {
    vertical-align: bottom;
  }
  
  .grid_col--am {
    vertical-align: middle;
  }
  
  /*==================================
  --------- UTILITY CLASSES --------
  ==================================*/
  
  .hidden:not([role=tabpanel]) {
    display: none !important;
  }
  
  .hidden[role=tabpanel] {
    display: none;
  }
  
  .disabled {
    opacity: 0.1;
    border-color: #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;
  }
  
  .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: #D22630;
  }
  
  .background--alt-brand {
    background-color: #f1af0f;
  }
  
  .background--dark {
    background-color: #5b6770;
  }
  
  .background--light {
    background-color: #fff;
  }
  
  .background--grey {
    background-color: #EDF1F2;
  }
  
  .background--dark-grey {
    background-color: #a2aaad;
  }
  
  .background--success {
    background-color: #23a217;
  }
  
  .background--error {
    background-color: #b72121;
  }
  
  .color--brand {
    color: #D22630;
  }
  
  .color--dark {
    color: #222;
  }
  
  .color--grey {
    color: #f6f6f6;
  }
  
  .color--success {
    color: #23a217;
  }
  
  .color--error {
    color: #b72121;
  }
  
  .dark {
    color: #fff;
  }
  
  .dark a {
    color: #fff;
  }
  
  .dark h2 {
    color: #fff;
  }
  
  .disp_table {
    display: table;
    table-layout: fixed;
    width: 100%;
  }
  
  .disp_cell {
    display: table-cell;
    height: 100%;
  }
  
  .vertical-align-top .disp_cell {
    vertical-align: top;
  }
  
  @media (max-width: 1024px) {
    .disp_table.lc-disp_table, .lc-disp_table>.disp_cell {
        display: block;
        width: 100%;
    }
  }
  
  @media (max-width: 768px) {
    .disp_table.md-disp_table, .md-disp_table>.disp_cell {
        display: block;
        width: 100%;
    }
    .layout_header>.disp_table {
        display: block;
    }
    .layout--one-column .disp_cell {
        display: block;
        width: 100%;
    }
  }
  
  @media (max-width: 480px) {
    .disp_table, .disp_cell {
        display: block;
    }
  }
  
  .thick-padding {
    padding: 65px 55px;
  }
  
  @media (max-width: 1160px) {
    .thick-padding {
        padding: 65px 30px;
    }
  }
  
  @media (max-width: 1024px) {
    .thick-padding {
        padding: 40px 30px;
    }
  }
  
  .disp_flex {
    display: flex;
  }
  
  @media (max-width: 1024px) {
    .disp_flex {
        display: block;
    }
    .disp_flex>div {
        width: 100%;
    }
  }
  
  .narrow-container {
    max-width: 85%;
    margin: 0 auto;
  }
  
  @media (max-width: 1024px) {
    .narrow-container {
        max-width: none;
    }
  }
  
  .dir_rl {
    direction: rtl;
  }
  
  .dir_lr {
    direction: ltr;
  }
  
  /*==================================
  --------- 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;
  }
  .module_options-submit.js--disabled {
    color: #fff;
  }
  
  .js--invalid input[type="text"], .js--invalid select {
    border: 1px solid #b72121 !important;
  }
  
  .js--invalid input[type="checkbox"] {
    border-color: #b72121 !important;
  }
  
  /*==================================
  ----------- MODULE CSS -----------
  ==================================*/
  
  /*-------- All Module CSS --------*/
  
  .module_header, .module_back-to-top, .module_anchor-target, .module_file-size, .module_file-type, .module_file-text {
    display: none;
  }
  
  .module_nav, .module_headline, .module_location, .module_speakers, .module_links, .module_body, .module_options, .module_not-found {
    margin-bottom: 15px;
  }
  
  .module_error-container {
    margin-bottom: 30px;
    color: #b72121;
  }
  
  .module_add-to-calendar-reveal {
    color: #D22630;
    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-event-details .module_details-title {
    margin-bottom: 20px;
  }
  
  .module_actions, .module_pager {
    margin-top: 20px;
  }
  .module-form .module_actions {
    margin: 0;
  }
  
  .module_date-time {
    margin-bottom: 5px;
    font-size: 12px;
    font-size: 1.2rem;
    font-weight: 400;
  }
  
  .module_error-container {
    display: block;
  }
  
  .module_error-container ul {
    padding-left: 0;
    list-style-type: none;
  }
  
  .module_error-container ul>li {
    line-height: 1.5;
  }
  
  .module_error-container>br {
    display: none;
  }
  
  .module_error-container>span {
    display: block;
    line-height: 1.5;
  }
  
  .module_error-container>span:before {
    font-family: "q4-icons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\ec6b";
    margin-right: 5px;
  }
  
  .module_headline {
    font-weight: normal;
    position: relative;
  }
  
  .module_headline-link, .module_headline-link:visited {
    color: #D22630;
    font-size: 14px;
    font-weight: 400;
  }
  
  .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 {
    border-bottom: 1px solid #D0D3D4;
  }
  
  .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;
        padding: 0;
    }
  }
  
  .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: 12px;
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    color: #D22630;
    position: relative;
    padding-bottom: 3px;
    cursor: pointer;
    /* letter-spacing: .12em; */
    letter-spacing: 0;
  }
  
  .module_link:after {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #A2AAAD;
    position: absolute;
    bottom: 0;
    left: 0;
  }
  
  .module_link:hover {
    text-decoration: none !important;
  }
  
  .module_link>.module_link-text, .module_link>i, .module_link>span {
    vertical-align: middle;
  }
  
  .module_link>i:before {
    display: block;
  }
  
  .module_link[style="DISPLAY:block;"], .module_link[style="display: block;"] {
    display: inline-block !important;
  }
  
  .module_loader {
    display: inline-block;
    animation: spin 1s linear infinite;
  }
  
  .module_message {
    display: block;
    margin: 16px 0;
  }
  
  .module_message[style$="hidden;"], .module_message:empty {
    display: none;
  }
  
  .module_message--success {
    color: #23a217;
  }
  
  .module_message--success:before {
    font-family: "q4-icons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\ed71";
    margin-right: 5px;
  }
  
  .module_message--error {
    color: #b72121;
  }
  
  .module_message--error:before {
    font-family: "q4-icons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\ed4f";
    margin-right: 5px;
  }
  
  .module_nav-link, .module_nav .ModuleYearLink, .module_nav-link:visited, .module_nav .ModuleYearLink:visited {
    display: inline-block;
    margin-right: 5px;
    padding: 15px 20px;
    border: 2px solid #D22630;
    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: #D22630;
    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: 8px;
  }
  
  @media only screen and (max-width: 480px) {
    .module_options-label, .module_options-select, .module_options-submit {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }
  }
  
  .module_pager a {
    color: #D22630;
    padding: 0 8px;
    font-weight: 700;
    font-size: 13px;
  }
  
  .module_pager a[href] {
    color: #1d252d;
  }
  
  .module_pager a[href]:hover {
    color: #D22630;
  }
  
  .module_reminder .module_input.module_reminder-period, .module_reminder .module_input.module_reminder-email {
    margin-right: 10px;
    margin-bottom: 10px;
  }
  
  .module_reminder.js--reminded {
    display: none;
  }
  
  .module_required {
    color: #d22630;
  }
  
  .module_required-text {
    font-size: 13px;
    font-size: 1.3rem;
    color: #333333;
  }
  
  .module_rss {
    float: right;
  }
  
  .module_speakers li {
    margin-bottom: 5px;
    padding-left: 0;
  }
  
  .module_title {
    text-transform: uppercase;
  }
  
  .module_view-all-link {
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: bold;
    text-transform: uppercase;
  }
  
  .module_input[type="text"], .module_input[type="email"], .module_input[type="file"], .module_dropdown, .module textarea.module_input {
    display: block;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    max-width: none;
    padding: 10px 20px;
    border: 1px solid #a4aaad;
    border-radius: 0;
    background-color: #fff;
    font-family: inherit;
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: 400;
  }
  
  .module_input[type="text"]::-ms-clear, .module_input[type="email"]::-ms-clear, .module_input[type="file"]::-ms-clear, .module_dropdown::-ms-clear, .module textarea.module_input::-ms-clear {
    display: none;
  }
  
  .module textarea.module_input {
    resize: vertical;
    height: 150px;
    padding-right: 130px;
  }
  .module-form .module_container--inner {
    position: relative;
  }
  .module-form--custom .button {
    height: 149px;
    width: 115px;
    border: none;
    background-color: #d22630;
    color: #fff;
    position: absolute;
    /* bottom: 252px; */
    bottom: 164px;
    right: 0;
  }
  @media (max-width: 710px) {
    .module-form--custom .button {
        position: static;
        height: auto;
        padding: 20px;
        margin-top: 40px;
    }
  }
  .module_input[type="file"], .module_dropdown {
    cursor: pointer;
  }
  
  .module_input[type="file"] {
    line-height: 1;
  }
  
  .module_input--brand[type="text"] {
    display: inline-block;
    width: auto;
  }
  
  .module_dropdown {
    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;
  }
  
  @media (max-width: 1160px) {
    .module-form--custom .button {
        /* right: 30px; */
        right: 0;
    }
  }
  
  /*------- 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: 15px;
    font-size: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
  }
  
  .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: 1px solid #a4aaad;
    border-radius: 0;
    background-color: #fff;
    font-family: inherit;
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: 400;
  }
  
  .fancybox-container .CaptchaContainer table tr:nth-child(4) td {
    padding-bottom: 20px;
  }
  
  .fancybox-container .CaptchaContainer table tr td {
    padding-right: 0;
  }
  
  /*- Investment Calculator Widget -*/
  
  .module-calculator_input:not(:last-of-type) {
    margin-bottom: 20px;
  }
  
  .module-calculator_input h4 {
    margin-bottom: 12px;
  }
  
  .module-calculator_input label {
    display: inline-block;
    font-size: 16px;
    font-size: 1.6rem;
    margin-bottom: 5px;
  }
  
  .module-calculator_input input[type="text"] {
    border: 2px solid #D22630;
  }
  
  .module-calculator_input input[type="checkbox"]+label {
    margin: 0;
  }
  
  .module-calculator_input-row {
    padding-bottom: 10px;
  }
  
  .module-calculator_input-row input[type="text"] {
    margin-top: 10px;
    max-width: 300px;
  }
  
  .module-calculator_input-row--other input[type="text"] {
    display: none;
  }
  
  .module-calculator_input-row--other input[type="text"].js--revealed {
    display: block;
  }
  
  @media screen and (min-width: 1024px) {
    .module-calculator_popup-container {
        min-width: 920px;
    }
  }
  
  @media screen and (min-width: 481px) and (max-width: 768px) {
    .module-calculator_popup-container .table thead {
        display: none;
    }
    .module-calculator_popup-container .table tbody {
        border-top: 2px solid #D22630;
        border-bottom: 2px solid #D22630;
    }
    .module-calculator_popup-container .table td {
        display: block;
    }
    .module-calculator_popup-container .table td:before {
        content: attr(data-heading) ": ";
        font-weight: bold;
    }
  }
  
  .module-calculator_info td:first-child:before {
    content: none;
  }
  
  /*- Committee Composition Widget -*/
  
  @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: 15px 0;
  }
  
  .module-downloads_thumbnail, .module-downloads_description, .module-downloads_date {
    display: none;
  }
  
  .module-downloads_title {
    position: relative;
  }
  
  .module-downloads_title-link {
    margin: 0 25px 0 0;
  }
  
  .module-downloads_title-link:before {
    position: absolute;
    top: 6px;
    right: 0;
  }
  
  .module-downloads .module_link {
    position: static;
    text-transform: none;
    font-weight: 400;
    font-size: 14px;
    color: #1d252d;
  }
  
  .module-downloads .module_link:before {
    color: #d32933;
  }
  
  .module-downloads .module_link:after {
    content: none;
  }
  
  .module-downloads .module_link:hover span {
    color: #1d252d;
  }
  
  .module-downloads.module-download-footer .module_link {
    letter-spacing: 0;
    color: #D22630;
  }
  
  .module-downloads.module-download-footer .module_link:hover {
    color: #1d252d;
  }
  
  
  /*--------- Event Module ---------*/
  
  .module-event .module_speakers h4, .module-event .module_body {
    display: none;
  }
  
  .module-event .module_location-text {
    font-size:12px;
  }
  
  .module-event .module_options {
    margin-bottom: 0;
    padding-bottom: 15px;
    border-bottom: 1px solid #dddddd;
  }
  
  .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;
    border: none;
  }
  
  .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: #D22630;
  }
  
  .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: #D22630;
    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: #D22630;
  }
  
  .module-event-calendar_day--selected {
    background-color: #D22630;
    color: #fff;
  }
  
  .module-event-calendar_day--selected:after {
    background-color: #fff;
  }
  
  .module-event-calendar_day--adjacent-month {
    color: rgba(51, 51, 51, 0.1);
    pointer-events: none;
  }
  
  .module-event-calendar_day--adjacent-month:after {
    content: none;
  }
  
  .module-event-archive .module_item {
    border: none;
  }
  
  .module-event-archive li.module_attachment {
    padding: 0;
  }
  
  @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;
    }
  }
  
  /*---------- FAQ Module ----------*/
  
  .module-faq:not(.module-faq--disclosure) .module_item, .module-faq--disclosure .module_container--inner>.module_item {
    padding: 0;
  }
  
  .module-faq--disclosure .module_container--inner>.module_item:first-child {
    border-bottom: none;
  }
  
  .module-faq:not(.module-faq--disclosure) .module_container--content .module_item:first-child, .module-faq--disclosure>.module_container--inner .module_item:first-child {
    border-top: 1px solid #D0D3D4;
  }
  
  .module-faq_question {
    margin-top: 0;
    cursor: pointer;
    text-transform: none;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.5;
    margin: 0;
    padding: 22px 0;
    color: #d22630;
    position: relative;
    letter-spacing: 0;
  }
  
  .module-faq_question:after {
    display: none;
  }
  
  .module-faq_question:before {
    content: "\e912";
    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;
    right: 25px;
    top: 50%;
    margin-top: -12px;
    font-size: 22px;
    font-size: 2.2rem;
  }
  
  .module-faq:not(.module-faq--disclosure) .module_item.js--active .module-faq_question:before, .module-faq--disclosure .module_container--inner>.module_item.js--active .module-faq_question:before {
    content: "\e911";
  }
  
  .module-faq_answer p {
    margin: 0;
    padding: 0 0 10px;
  }
  
  .module-faq .toggle-all a:before {
    content: "Show all";
  }
  
  .module-faq .toggle-all.js--active a:before {
    content: "Hide all";
  }
  
  /*--- Financial Report Modules ---*/
  
  .module-financial-year .module_cover {
    margin-bottom: 15px;
  }
  
  .module-financial-year .module_cover img {
    display: inline-block;
    border: 1px solid #D22630;
  }
  
  .module-financial-year .module_item {
    padding: 0;
  }
  
  .module-financial-year .module_item~.module_item {
    border: none;
  }
  
  .module-financial-year .module_links {
    margin: 0;
  }
  
  .module-financial-year .module-financial_year {
    text-align: center;
  }
  
  .module-financial-quarter .module_item {
    padding: 0;
  }
  
  .module-financial-quarter .module_item~.module_item {
    border: none;
  }
  
  .module-financial-quarter .module_item.js--active h3:after {
    content: "\ed5e";
  }
  
  .module-financial-quarter .module_links {
    margin: 0;
    padding: 15px;
  }
  
  .module-financial-quarter .module_links>div {
    display: block;
  }
  
  .module-financial-quarter .module_link {
    margin-bottom: 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: 10px;
    background-color: #D22630;
    color: #fff;
    font-size: 16px;
    font-size: 1.6rem;
    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 {
    color: #fff;
    border-bottom: 1px solid #d0d3d4;
    border-right: 1px solid #d0d3d4;
  }
  
  .module-financial-table_header-year-container {
    background-color: #5b6770;
    border-left: 1px solid #d0d3d4;
    border-right: 1px solid #d0d3d4;
    text-align: center;
  }
  
  .module-financial-table_header-year {
    font-size: 16px;
    font-weight: 500;
    border-right: 1px solid #d0d3d4;
  }
  
  .module-financial-table_header-year, .module-financial-table_header-category.grid_col {
    padding: 15px;
  }
  
  .module-financial-table_body-row {
    border-bottom: 1px solid #d0d3d4;
    height: 100%;
    min-height: 100%;
    display: flex;
  }
  
  .module-financial-table_body-row>* {
    display: flex !important;
  }
  
  .module-financial-table_body-year-container .slick-track {
    height: 100%;
    min-height: 100%;
    display: flex;
  }
  
  .module-financial-table_body-year-container {
    text-align: center;
    border-left: 1px solid #d0d3d4;
  }
  
  .module-financial-table_body-year {
    border-right: 1px solid #d0d3d4;
  }
  
  .module-financial-table_body-year, .module-financial-table_body-category.grid_col {
    padding: 15px 0;
  }
  
  .module-financial-table_body-category {
    font-size: 14px;
    font-weight: 700;
  }
  
  .module-financial-table_item {
    display: inline-block;
    margin-right: 5px;
    font-size: 12px;
    font-size: 1.2rem;
    font-weight: normal;
    color: #d22630;
    font-weight: 700;
    margin-left: 5px;
  }
  
  .module-financial-table_link {
    color: #d22630;
    text-transform: uppercase;
  }
  
  .module-financial-table_link:hover {
    color: #1d252d;
  }
  
  .module-financial-table_item~.module_item {
    margin-right: 5px;
  }
  
  .module-financial-table_item--empty {
    opacity: 0.1;
  }
  
  @media only screen and (max-width: 1200px) {
    .module-financial-table_header-year, .module-financial-table_header-category.grid_col {
        padding-left: 0;
        padding-right: 30px;
        padding-right: 3.0rem;
    }
  }
  
  @media only screen and (max-width: 768px) {
    .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;
    padding: 17.5px 8px;
    background-color: #d22630;
  }
  
  .module-financial-table .slick-prev {
    left: 0;
    transform: rotate(180deg);
    top: 0px;
  }
  
  @media only screen and (max-width: 480px) {
    .module-financial-table .slick-prev {
        left: -37px;
    }
  }
  
  .module-financial-table .slick-next {
    right: -1px;
  }
  
  .module-financial-table .slick-disabled {
    opacity: 0.1;
    cursor: default;
    background-color: #d0d3d4;
    color: #000;
  }
  
  .module-financial-table .grid_col {
    margin-right: 0;
  }
  
  .module-financial-table .slick-list {
    width: 100%;
  }
  
  .module-financial-table_body {
    border-right: 1px solid #d0d3d4;
  }
  
  .module-financial-mashup .module_body {
    max-height: 300px;
    overflow: hidden;
    position: relative;
  }
  
  .module-financial-mashup_news {
    padding-right: 20px;
  }
  
  @media (max-width: 768px) {
    .module-financial-mashup_news {
        padding-right: 0;
    }
  }
  
  .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, .module-annual-filings .module_links>div {
    position: relative;
    padding: 15px 25px 15px 0;
    margin-bottom: 1px;
    border-bottom: 1px solid #fff;
  }
  
  .module-financial-mashup .module-financial-mashup_documents .module_links .module_link, .module-annual-filings .module_links .module_link {
    margin: 0;
    font-size: 14px;
    text-transform: unset;
    font-weight: 400;
    position: static;
    line-height: 21px;
  }
  
  .module-financial-mashup .module-financial-mashup_documents .module_links .module_link:after, .module-annual-filings .module_links .module_link:after {
    display: none;
  }
  
  .module-financial-mashup .module-financial-mashup_documents .module_links .module_link:before, .module-annual-filings .module_links .module_link:before {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  
  .module-financial-mashup .q4-icon_chevron-right {
    font-size: 10px;
    font-size: 1rem;
    margin-left: 5px;
  }
  
  .module-annual-filings .module_links {
    margin-bottom: 0;
  }
  
  .module-financial-mashup_event .module_headline-link {
    font-size: 16px;
    font-weight: 700;
  }
  
  .module-financial-mashup_event {
    margin-bottom: 35px;
  }
  
  /* 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: 420px) {
    .module-form .module_container--content {
        margin-left: 0;
    }
  }
  
  .module-form .module_error-container li[style="visibility: hidden;"] {
    display: none;
  }
  
  .module-form .module_required {
    margin-left: 3px;
  }
  
  .module-form .module_container--captcha>div {
    margin: 0;
    padding: 0;
  }
  
  .module-form .module_container--captcha>div .ErrorMessage {
    display: block;
    margin-top: 10px;
    font-size: 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--message {
    display: block;
    width: 100%;
  }
  
  .module-form_item>label, .module-form_item legend {
    display: inline-block;
    margin-bottom: 15px;
    font-size: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
  }
  
  .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: 420px) {
    .module-form_item {
        width: 100%;
        padding-left: 0;
    }
  }
  
  .module-form_error-text {
    color: #b72121;
  }
  
  .module-form_error-text[style="visibility:hidden;"] {
    display: none;
  }
  
  .module-form .CaptchaContainer {
    display: block;
  }
  
  .module-form .CaptchaContainer input[type="text"] {
    width: 100%;
    margin: 0;
  }
  
  .module-form--custom .module_container--captcha>div .ErrorMessage[style="visibility:hidden;"] {
    height: 0;
    margin: 0;
  }
  
  .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: #D22630;
  }
  
  /*---------- 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: 'Ubuntu', 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_viewer:not(.grid_col):not(:last-child) {
    margin-bottom: 25px;
  }
  
  .module-slideshow_title {
    margin-bottom: 10px;
    display: none;
  }
  
  .module-slideshow .module_links>*+* {
    margin-top: 15px;
  }
  
  .module-slideshow_link {
    font-size: 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;
    transition: width 300ms ease;
  }
  
  .js--header-small .nav--main {
    width: 65%;
  }
  
  .nav--main li {
    display: inline-block;
  }
  
  .nav--main li a {
    display: block;
    padding: 50px 10px;
    color: #1D252D;
    font-weight: normal;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    transition: padding 300ms ease;
  }
  @media (max-width: 1290px) {
    .nav--main li a {
        padding: 50px 5px;
    }
  }
  .js--header-small .nav--main li a {
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 12px;
    padding-left: 8px;
    padding-right: 8px;
  }
  
  .nav--main li a:focus, .module-top-links li a:focus {
    text-decoration: none !important;
  }
  
  .nav--main .level1>li:nth-child(-n+5)>a {
    color: #D22630;
  }
  
  .nav--main .level1>li:nth-child(5)>a {
    margin-right: 10px;
  }
  
  .nav--main .level1>li:nth-child(6)>a {
    margin-left: 10px;
  }
  
  .nav--main .level1>li:nth-child(5):after {
    content: "";
    background-color: #D0D3D4;
    width: 1px;
    height: 24px;
    position: absolute;
    bottom: 46px;
  }
  
  .js--header-small .nav--main .level1>li:nth-child(5):after {
    bottom: 16px;
  }
  
  .nav--main li a:after {
    content: "";
    height: 2px;
    width: calc(100% - 20px);
    position: absolute;
    bottom: 45px;
    background-color: #5B6770;
    left: calc(0% + 10px);
    transition: all .3s cubic-bezier(0.23, 1.04, 0.24, 1.03);
    opacity: 0;
    transform: scaleY(0);
    transform-origin: 0 -2px;
  }
  
  .js--header-small .nav--main li a:after {
    bottom: 15px;
  }
  
  .nav--main .level2 li.selected a:after, .nav--main .level2 li a:after {
    background-color: #fff;
    bottom: 12px;
  }
  
  .nav--main li a:before {
    content: "";
    height: 2px;
    width: calc(100% - 20px);
    position: absolute;
    bottom: 45px;
    background-color: #D22630;
    left: calc(0% + 10px);
    transition: all .3s cubic-bezier(0.23, 1.04, 0.24, 1.03);
    opacity: 0;
    transform: scaleY(0);
    transform-origin: 0 -2px;
  }
  
  .js--header-small .nav--main li a:before {
    bottom: 15px;
  }
  
  .nav--main .level2 li a:before, .nav--main .level2 li a:before {
    background-color: #1d252d;
    bottom: 12px;
  }
  
  .nav--main li a:hover:before, .nav--main li a:focus:before {
    opacity: 1;
    transform: scaleY(1);
    z-index: 2;
  }
  
  .nav--main li.selected>a:after, .nav--main li.expanded>a:after {
    width: calc(100% - 20px);
    background-color: #d0d3d4;
    opacity: 1;
    transform: scale(1);
  }
  
  .nav--main .level2 {
    display: none !important;
    position: absolute;
    background-color: #D22630;
    width: 100%;
    left: 0;
    padding: 0 40px 0 55px;
  }
  
  .nav--main li.selected.has-children>.level2, .nav--main li.expanded.has-children>.level2
  /*.nav--main li.sfHover.has-children > .level2*/
  
    {
    display: block !important;
    opacity: 1 !important;
  }
  
  .nav--main li.sfHover.has-children>.level2 {
    z-index: 4;
  }
  
  .nav--main .level2 li a {
    padding: 15px 10px;
    color: #fff;
  }
  
  .nav--main .level1>li>a:hover {
    color: #1d252d !important;
  }
  @media (max-width: 1320px) {
    .js--header-small .nav--main li a {
        padding-left: 5px;
        padding-right: 5px;
    }
  }
  @media (max-width: 1300px) {
    .js--header-small .nav--main li a {
        font-size: 12px;
    }
    .js--header-small .nav--main {
        width: 67%;
    }
  }
  
  .nav--secondary {
    background: #fff;
    text-align: center;
    font-weight: 400;
    letter-spacing: 1.6px;
  }
  
  .nav--secondary .level1>li {
    display: none;
  }
  
  .nav--secondary .level1>li.selected, .nav--secondary .level1>li.expanded {
    display: block;
  }
  
  .nav--secondary .level1>li.selected>a, .nav--secondary .level1>li.expanded>a {
    display: none;
  }
  
  .nav--secondary .level2 {
    display: table;
    width: 100%;
  }
  
  .nav--secondary .level2>li {
    position: relative;
    display: table-cell;
  }
  
  .nav--secondary .level2>li a {
    display: block;
    padding: 20px;
    font-size: 14px;
    font-size: 1.4rem;
  }
  
  .nav--secondary .level2>li a:focus {
    outline: none;
  }
  
  .nav--secondary .level3 {
    position: absolute;
    z-index: 100;
    top: 100%;
    left: 0;
    display: none;
    width: 100%;
    min-width: 200px;
    border-top: 2px solid #fff;
  }
  
  .nav--secondary .level3>li {
    text-align: left;
  }
  
  .nav--secondary .level3>li a {
    background: #005894;
  }
  
  .nav--secondary .level3>li a:hover, .nav--secondary .level3>li a:focus {
    outline: none;
    background: #D22630;
  }
  
  .nav--secondary .level3>li.selected a {
    background: #D22630;
  }
  
  @media only screen and (max-width: 1200px) {
    .nav--secondary {
        text-align: left;
    }
    .nav--secondary li.has-children>a: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: "\edc2";
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 15px;
        color: #D22630;
    }
    .nav--secondary li.js--expanded>a:before {
        content: "\edba";
    }
    .nav--secondary a {
        display: block;
        font-weight: normal;
    }
    .nav--secondary .level1>li {
        display: block;
    }
    .nav--secondary .level1>li.selected a, .nav--secondary .level1>li.expanded a {
        display: block;
    }
    .nav--secondary .level1>li.js--expanded, .nav--secondary .level1>li.expanded {
        background: #EDF1F2;
    }
    .nav--secondary .level1>li.js--expanded a, .nav--secondary .level1>li.expanded a {
        display: block;
    }
    .nav--secondary .level1>li.js--expanded .level2, .nav--secondary .level1>li.expanded .level2 {
        display: block;
        background-color: #D22630;
    }
    .nav--secondary .level1>li>a {
        padding: 15px;
        color: #1D252D;
        font-size: 24px;
        text-align: center;
        font-weight: 500;
        position: relative;
    }
    .nav--secondary .level1>li>a:focus {
        text-decoration: none !important;
    }
    .nav--secondary .level1>li:nth-child(-n+5)>a {
        font-size: 24px;
        color: #D22630;
        font-weight: 500;
        text-align: center;
    }
    .nav--secondary .level2 {
        display: none;
    }
    .nav--secondary .level2>li {
        display: block;
    }
    .nav--secondary .level2>li+li {
        border-top: 1px solid #fff;
    }
    .nav--secondary .level2>li.js--expanded .level3 {
        display: block;
    }
    .nav--secondary .level2>li>a {
        padding: 15px 30px;
        font-size: 16px;
        font-size: 1.6rem;
    }
    .nav--secondary .level3 {
        position: static;
        border: none;
    }
    .nav--secondary .level3>li {
        display: block;
    }
    .nav--secondary .level3>li>a {
        padding: 20px 20px 20px 72px;
        font-size: 16px;
        font-size: 1.6rem;
    }
  }
  
  @media screen and (max-width: 765px) and (orientation: landscape) {
    .nav--secondary {
        padding-bottom: 85px;
    }
  }
  
  .nav--sitemap {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 70px;
    padding-top: 55px;
  }
  
  @media only screen and (max-width: 1160px) {
    .nav--sitemap {
        max-width: none;
        padding-left: 30px;
        padding-right: 30px;
    }
  }
  
  .nav--sitemap a {
    display: inline-block;
  }
  
  .nav--sitemap .level1>li>a, .nav--sitemap .level1>li>a:visited {
    margin-bottom: 15px;
    font-size: 24px;
    font-size: 2.4rem;
    color: #222;
    text-transform: uppercase;
  }
  
  .nav--sitemap .level1>li>a:hover {
    color: #D22630;
  }
  
  .nav--sitemap .level1>li:before {
    top: 22px;
  }
  
  .nav--sitemap .level2>li>a, .nav--sitemap .level3>li>a {
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: bold;
    text-transform: uppercase;
  }
  
  .nav--sitemap .level2>li>a {
    margin-bottom: 5px;
  }
  
  .nav--sitemap .level3>li {
    padding-left: 15px;
  }
  
  .module-top-links {
    padding-top: 30px;
    text-align: right;
    position: fixed;
    top: 0;
    width: 100%;
    left: 0;
    padding: 30px 39px 0;
    transition: padding 300ms ease;
  }
  
  @media (min-width: 1301px) {
    .js--header-small .module-top-links {
        padding-top: 16px;
    }
  }
  
  @media (min-width: 1201px) {
    .js--header-small .module-top-links {
        padding-top: 14px;
    }
  }
  
  .module-top-links li {
    display: inline-block;
    padding: 0 15px;
  }
  
  .module-top-links li a {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.2px;
    color: #1D252D;
    text-transform: uppercase;
    border-bottom: none;
    padding-bottom: 2px;
    position: relative;
  }
  
  @media (min-width: 1201px) {
    .module-top-links li a:before {
        content: "";
        height: 2px;
        width: 100%;
        position: absolute;
        bottom: -4px;
        background-color: #D22630;
        left: 0;
    
        transition: all .3s cubic-bezier(0.23, 1.04, 0.24, 1.03);
        opacity: 0;
        transform: scaleY(0);
        transform-origin: 0 -2px;
    }
    
    .module-top-links li a:after {
        content: "";
        height: 2px;
        width: 100%;
        position: absolute;
        bottom: -4px;
        background-color: #5B6770;
        left: 0;
        transition: all .3s cubic-bezier(0.23, 1.04, 0.24, 1.03);
        opacity: 0;
        transform: scaleY(0);
        transform-origin: 0 -2px;
    }
    
    .module-top-links li a:hover:before {
        opacity: 1;
        transform: scaleY(1);
        z-index: 2;
    }
    
    .module-top-links li a.js--active:after {
        opacity: 1;
        transform: scaleY(1);
        background-color: #d0d3d4;
    }
  }
  
  .module-top-links li a i {
    color: #D22630;
    font-size: 9px;
  }
  
  .js--header-small .module-top-links li a {
    font-size: 10px;
  }
  
  @media (min-width: 1301px) {
    .js--header-small .module-top-links li {
        padding: 0 8px;
    }
  }
  
  @media (min-width: 1201px) and (max-width: 1300px) {
    .js--header-small .module-top-links li {
        padding: 0 5px;
    }
    .js--header-small .module-top-links li a {
        font-size: 9px;
    }
  }
  
  @media (max-width: 1200px) {
    .module-top-links .no-mobile {
        display: none;
    }
    .module-top-links {
        padding-top: 0;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        z-index: 0;
        padding-right: 0;
    }
    .module-top-links li a i {
        font-size: 14px;
    }
  }
  
  .module-top-links-mobile, .nav--secondary > ul:last-child {
    background-color: #d0d3d4;
  }
  
  .module-top-links-mobile ul, .nav--secondary > ul:last-child {
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
  }
  .nav--secondary > ul:last-child li:last-child {
    display: none;
  }
  .module-top-links-mobile a, .nav--secondary > ul:last-child a {
    color: #1f252c;
    font-size: 16px;
    font-weight: bold;
    border-bottom: none;
    text-decoration: none;
    padding: 20px;
    display: inline-block;
    text-transform: uppercase;
  }
  
  /* inner navigation */
  
  .module-inner-navigation {
    padding-bottom: 30px;
    border-bottom: 1px solid #d0d3d4;
    margin-bottom: 60px;
  }
  
  .module-inner-navigation a {
    display: none;
  }
  
  .module-inner-navigation .level2 li.selected a, .module-inner-navigation .level2 li.expanded a {
    display: inline-block;
    color: #a4aaad;
    font-size: 12px;
    font-weight: 700;
    padding: 10px 15px;
    text-transform: uppercase;
  }
  
  .module-inner-navigation .level2>li.selected>a, .module-inner-navigation .level2>li.expanded>a {
    color: #D22630;
    padding-left: 0;
    position: relative;
  }
  
  .module-inner-navigation .level2 li.selected a:hover, .module-inner-navigation .level2 li.expanded a:hover {
    color: #D22630;
  }
  
  .module-inner-navigation .level2>li.selected>a:after, .module-inner-navigation .level2>li.expanded>a:after {
    content: ">";
    position: absolute;
    right: 0;
    color: #1d252d;
  }
  
  .module-inner-navigation .level3 {
    display: inline-block;
  }
  
  .module-inner-navigation .level3 li {
    display: inline-block;
    position: relative;
  }
  
  .module-inner-navigation .level3 li+li:before {
    content: "|";
    vertical-align: middle;
    color: #1d252d;
  }
  
  .module-inner-navigation .level3 li.selected a {
    color: #D22630;
  }
  
  /*-------- News Module CSS -------*/
  
  .module-news .module_nav {
    display: none;
  }
  
  .module-news-latest {
    /* padding: 65px 55px; */
    background-color: #EDF1F2;
    height: 100%;
  }
  
  .module-news-latest .module_container--content {
    margin-bottom: 20px;
  }
  
  .module-news-latest .module_item {
    margin: 10px 0 20px;
    padding: 0 0 0 20px;
    border: none;
    text-align: left;
  }
  
  .module-news-listing .module_headline {
    padding-right: 25px;
  }
  
  .module-news-listing .module_headline-link:after {
    content: "\e90c";
    position: absolute;
    right: 0;
    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;
    top: 10px;
    font-size: 8px;
  }
  
  .module-news-listing .module_item {
    border-bottom: none;
  }
  
  @media only screen and (max-width: 768px) {
    .module-news-latest .module_item:first-child {
        width: 100%;
    }
    .module-news-latest {
        padding: 40px 30px;
    }
  }
  
  .module-news-latest .module_item-wrap {
    padding: 30px;
    background: #fff;
  }
  
  .module-news-latest .module_date-time {
    color: #1D252D;
    font-size: 12px;
  }
  
  .module-news-latest .module_headline {
    line-height: 1.5;
    position: relative;
    padding-right: 20px;
  }
  
  .module-news-latest .module_headline-link, .module-news-latest .module_headline-link:visited {
    color: #D22630;
    font-size: 15px;
  }
  
  .module-news-latest .module_headline-link:hover {
    color: #1d252d;
  }
  
  .module-news-latest .module_headline-link:after {
    content: "\e90c";
    position: absolute;
    right: 0;
    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;
    top: 10px;
    font-size: 8px;
    color: #D22630;
  }
  
  .module-news-latest .module_links {
    margin: 0;
  }
  
  .module-news-latest .module_link {
    color: #D22630;
  }
  
  .module-news-list .module_item {
    padding-left: 0;
    padding-top: 20px;
  }
  
  .module-news-list .module_item+.module_item {
    border-top: 1px solid #dddddd;
  }
  
  .module-details_title {
    margin-bottom: 20px;
  }
  
  .module-news-details .module_view-all-link {
    margin-bottom: 25px;
  }
  
  .module-news-details .module_view-all-link--bottom {
    margin-top: 25px;
    margin-bottom: 0;
  }
  
  .module-news-details_category {
    display: none;
  }
  
  .module-news-details ul, .module-financial-mashup_news ul {
    margin: 0;
    list-style: none !important;
    padding: 0;
    font-weight: 500;
  }
  
  .module-news-details ul li {
    line-height: 1.5;
  }
  
  .module-news-details .module_body:after, .module-news-details .module_body:before {
    content: "";
    display: table;
  }
  
  @media only screen and (max-width: 768px) {
    .module-news-details .module_body a {
        word-break: break-all;
    }
  }
  
  .module-news-details img {
    float: none!important;
  }
  
  /*------ Person List Module ------*/
  
  .module-person .module-person_description, .module-person .module-person_res-photo-container, .module-person .module_comma {
    display: none;
  }
  
  .module-person-fancy .module_container--outer {
    padding: 0 55px;
  }
  
  @media (max-width: 1160px) {
    .module-person-fancy .module_container--outer {
        padding: 0 30px;
    }
  }
  
  .module-person .module_item {
    position: relative;
    padding: 0 0 20px 20px;
    border: none;
  }
  
  .module-person .module_item:hover .module-person_name-container {
    opacity: 1;
    visibility: visible;
  }
  
  .module-person .module-person_photo-container img {
    width: 100%;
    display: block;
  }
  
  .module-person .module-person_name-container a {
    color: #fff;
  }
  
  .module-person-fancy .module-person_description {
    display: none;
  }
  
  .module-person .module-person_name {
    display: block;
    font-size: 18px;
    font-size: 1.8rem;
    text-transform: uppercase;
  }
  
  .module-person .module-person_suffix, .module-person_title {
    font-size: 14px;
    font-size: 1.4rem;
    color: #1D252D;
    font-weight: 500;
  }
  
  .fancybox-container .module-person .module_item {
    max-width: 1310px;
    padding: 70px;
  }
  
  .fancybox-container .module-person_photo-container, .fancybox-container .module-person_name-container {
    display: inline-block;
    vertical-align: middle;
  }
  .fancybox-container  .module-person_photo-container img {
    width: auto;
    display: block;
    float: right;
    margin-right: 65px;
  }
  .fancybox-container .module-person_name-container {
    position: absolute;
    background: transparent;
    text-align: left;
    opacity: 1;
    visibility: visible;
    cursor: initial;
    float: left;
    clear: left;
    top: 70px;
  }
  
  .fancybox-container .module-person_name-container h3 {
    position: static;
    transform: none;
  }
  
  .fancybox-container .module-person_name-container a {
    color: #333333;
  }
  
  .fancybox-container .module-person_photo-container {
    position: static;
    background: none !important;
    width: 100%;
    border-bottom: 1px solid #d0d3d4;
    clear: left;
  }
  
  .module-person-fancy .module-person-fancy_person {
    margin-bottom: 60px;
  }
  
  .module-person-fancy_person-inner {
    padding: 60px 40px;
    background-color: #EDF1F2;
    position: relative;
    border-bottom: 4px solid #D22630;
    height: 100%;
  }
  .fancybox-container .module-person-fancy_person-inner {
    padding: 20px 40px 60px;
    background-color: #fff;
  }
  .module-person-fancy .module-person_name {
    font-size: 36px;
    line-height: 1;
  }
  .fancybox-slide .module-person {
    margin: 20px;
  }
  .module-person-fancy .module-person_name span {
    display: block;
    font-size: 16px;
    color: #1D252D;
    padding-top: 5px;
  }
  
  .module-person_photo-container {
    position: absolute;
    top: 10px;
    bottom: 0;
    right: 0;
    text-align: right;
    width: 245px;
    background-repeat: no-repeat;
    background-position: bottom right;
  }
  .module-person_photo-container.for-fancy {
    display: none;
  }
  .module-person_photo-container img {
    height: 100%;
    display: none;
  }
  
  .module-person_link {
    color: #d22630;
    font-size: 12px;
    margin-top: 15px;
  }
  
  .module-person_link:after {
    background-color: #d0d3d4;
  }
  
  .module-person .module-person-fancy_person {
    max-width: 1100px;
  }
  
  .module-person .module-person_link {
    display: none;
  }
  
  .module-person-fancy .grid {
    display: flex;
    flex-wrap: wrap;
    margin-left: -40px;
  }
  
  .module-person-fancy .grid_col {
    padding-left: 40px;
  }
  
  .module-person_photo-container-mobile {
    display: none;
    text-align: center
  }
  .fancybox-container .module-person_photo-container {
    display: none;
  }
  .fancybox-container .module-person_photo-container.for-fancy {
    display: inline-block;
  }
  @media (max-width: 1160px) {
    .module-person-fancy .grid {
        margin-left: -20px;
    }
    .module-person-fancy .grid_col {
        padding-left: 20px;
    }
    .module-person-fancy .module-person-fancy_person {
        margin-bottom: 30px;
    }
  }
  
  @media only screen and (max-width: 768px) {
    .fancybox-container .module-person_photo-container {
        margin-right: 0;
        margin-bottom: 0;
    }
    .fancybox-container .module-person_photo-container img {
        float: none;
        margin: auto;
    }
    .fancybox-container .module-person_name-container {
        position: static;
        width: 100%;
        float: none;
        max-width: none;
    }
    .fancybox-container .module-person-fancy_person-inner {
        padding: 50px 40px;
    }
  }
  @media (max-width: 560px) {
    .fancybox-container .module-person_photo-container img {
        width: fit-content;
    }
  }
  @media only screen and (max-width: 480px) {
    .fancybox-container .module-person_photo-container {
        margin-right: 0;
        max-width: none;
    }
    .module-person_photo-container {
        width: 160px;
    }
    .module-person-fancy_person-inner {
        padding: 40px 20px;
    }
    .module-person_photo-container {
        background-size: contain;
    }
  }
  
  .fancybox-container .module-person_name {
    display: block;
    margin-bottom: 10px;
    font-size: 36px;
    font-size: 3.6rem;
    line-height: 1.45;
  }
  
  @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;
  }
  
  @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;
  }
  
  .module-person_name-container {
    max-width: 55%;
  }
  @media (max-width: 860px) {
    .module-person_name-container {
        max-width: 50%;
    }
  }
  .module-person-accordion .module-person_name-container {
    padding: 20px 15px;
    margin-bottom: 10px;
    background-color: #D22630;
    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: #D22630;
  }
  
  .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: #222;
    font-size: 0;
    text-align: left;
    color: #fff;
    z-index: 100;
  }
  
  body.PreviewBody .PreviewToolBar.js--open {
    top: auto;
    bottom: 0;
  }
  
  body.PreviewBody .PreviewToolBar .PreviewTrigger {
    position: absolute;
    top: 0;
    left: 10px;
    padding: 20px;
    background: #222;
    transform: translate(0, -100%);
    font-size: 24px;
    font-size: 2.4rem;
    cursor: pointer;
  }
  
  body.PreviewBody .PreviewToolBar .PreviewTrigger.js--active i:before {
    content: "\ed6d";
  }
  
  body.PreviewBody .PreviewToolBar .PreviewFloatLeft, body.PreviewBody .PreviewToolBar .PreviewDateControls {
    display: inline-block;
    vertical-align: middle;
  }
  
  body.PreviewBody .PreviewToolBar .PreviewFloatLeft:before, body.PreviewBody .PreviewToolBar .PreviewDateControls:before {
    font-size: 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: #D22630;
    color: #fff !important;
  }
  
  @media only screen and (max-width: 1024px) {
    body.PreviewBody .PreviewToolBar .PreviewFloatLeft, body.PreviewBody .PreviewToolBar .PreviewDateControls {
        display: block;
        float: none;
        margin-bottom: 15px;
    }
    body.PreviewBody .PreviewToolBar .PreviewFloatLeft:before, body.PreviewBody .PreviewToolBar .PreviewDateControls:before {
        display: block;
    }
  }
  
  @media only screen and (max-width: 768px) {
    body.PreviewBody .PreviewToolBar input[type="radio"], body.PreviewBody .PreviewToolBar label, body.PreviewBody .PreviewToolBar input[type="text"], body.PreviewBody .PreviewToolBar select, body.PreviewBody .PreviewToolBar input[type="submit"] {
        margin-bottom: 5px;
    }
  }
  
  /*-------- Search Modules --------*/
  
  .module-search {
    position: absolute;
    text-align: right;
    top: 170px;
    background-color: #D22630;
    left: 0;
    right: 0;
    width: 0;
    transition: height 0.5s ease, width 0.5s ease 0.5s;
    height: 5px;
    overflow: hidden;
  }
  
  .js--header-small .module-search {
    top: 55px;
  }
  
  .module-search .module_container--outer {
    margin: 0 55px;
    position: relative;
    height: 100%;
  }
  
  .module-search .module_container--inner {
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
  }
  
  .module-search.js--revealed {
    width: 100%;
    height: calc( 100% - 60px);
    z-index: 1000;
    transition: width 0.5s ease, height 0.5s ease 0.5s;
  }
  
  .js--header-small .module-search.js--revealed {
    height: 60px;
  }
  
  .module-search.js--revealed .module_container--inner {
    opacity: 1;
    visibility: visible;
    transition: all 300ms 0.6s;
  }
  
  .module-search_input[type="text"] {
    display: inline-block;
    padding: 7px 55px;
    background: none;
    font-size: 3.6rem;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    border: none;
    font-weight: 300;
  }
  
  .module-search_input[type="text"]::placeholder {
    color: #fff;
  }
  
  .module-search_button {
    position: absolute;
    top: 50%;
    left: 0;
    width: 36px;
    height: 36px;
    padding: 0;
    border: 0;
    background: transparent url(../design/svg/q4-icon_search-white.svg);
    background-size: 100%;
    font-size: 0;
    cursor: pointer;
    transform: translateY(-50%);
  }
  
  @media (max-width: 1200px) {
    .module-search {
        top: 55px;
    }
    .module-search.js--revealed {
        height: 60px;
    }
    .module-search .module_container--outer {
        margin: 0 15px;
        max-width: none;
    }
  }
  @media (max-width: 480px) {
    .module-search, .js--header-small .module-search {
        top: 50px;
    }
  }
  .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-result_link:after {
    display: none;
  }
  
  /*-------- SEC Module CSS --------*/
  
  .module-sec .module_header {
    display: block;
    background-color: #D22630;
  }
  
  .module-sec .module_header-text {
    padding: 15px 8px;
    color: #fff;
  }
  
  .module-sec .module_item {
    padding: 0;
  }
  
  .module-sec .module_item~.module_item {
    border: 0;
  }
  
  .module-sec .module_item:nth-child(odd) {
    background-color: rgba(0, 0, 0, 0.05);
  }
  
  .module-sec .module_item .grid_col {
    vertical-align: middle;
    padding: 15px 8px;
  }
  
  .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 #D22630;
    }
    .module-sec .module_item {
        padding: 15px 0;
    }
    .module-sec .module_item:first-child {
        border-top: 2px solid #D22630;
    }
    .module-sec .module_item:last-child {
        border-bottom: 2px solid #D22630;
    }
    .module-sec .module_item .grid_col {
        padding: 0 5px;
    }
    .module-sec .module_item+.module_footer {
        border-bottom: 2px solid #D22630;
    }
  }
  
  .module-sec_download-list-item {
    display: inline-block;
  }
  
  .module-sec_download-list .module_link {
    margin: 0;
  }
  
  .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: #D22630;
    outline: 0;
  }
  
  .module-skip_link:visited {
    color: #fff;
  }
  
  .module-slider .module_container--outer {
    display: table;
    width: 100%;
    table-layout: fixed;
  }
  
  .module-slider .module_container--inner {
    display: table-cell;
    vertical-align: middle;
    height: 390px;
  }
  
  .module-slider .slick-slider {
    padding: 0 40px;
  }
  
  .module-slider .slick-slider .slick-slide {
    float: none;
    display: inline-block;
    vertical-align: middle;
    padding: 0 5px;
  }
  
  .module-slider .slick-arrow:before {
    font-size: 30px;
  }
  
  .module-slider .module_add-to-calendar-reveal {
    color: #fff;
  }
  
  .module-slider .module-slider_title h1 {
    margin: 0;
  }
  
  .module-slider .module_loader {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  
  .module-slider_description {
    font-size: 24px;
    font-size: 2.4rem;
    margin-top: 10px;
  }
  
  .module-slider_description .module_date-time {
    font-size: inherit;
  }
  
  .module-slider_description p {
    margin: 10px 0;
    line-height: 1.125;
  }
  
  .module-slider_description p:first-child {
    margin-top: 0;
    margin-bottom: 10px;
  }
  .module-slider-why-hudbay p, .module-slider-why-hudbay .module-slider_description {
    margin: 0 !important;
  }
  .module-slider_description .module_links {
    margin-top: 10px;
    margin-bottom: 0;
  }
  @media (max-width: 1200px) {
    .module-slider-why-hudbay p {
        font-size: 30px;
        line-height: 1.125;
    }
  }
  
  /*------ Stock Chart Widget ------*/
  
  .module-stock-chart .module_container--content1 .highcharts-series-4 path:first-child, .module-stock-chart .module_container--content2 .highcharts-series-5 path:first-child {
    stroke: #D22630;
  }
  
  .module-stock-chart .highcharts-legend-item:first-child text {
    cursor: default !important;
  }
  
  .module-stock-chart .highcharts-series-0 {
    stroke: #D22630;
  }
  
  .module-stock-chart .highcharts-series-0 path:first-child {
    stroke: #D22630;
  }
  
  .module-stock-chart .highcharts-navigator rect {
    fill: rgba(208, 38, 48, 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: #D22630;
  }
  
  .module-stock-chart .highcharts-navigator-handle-right path, .module-stock-chart .highcharts-navigator-handle-left path {
    stroke: #fff;
  }
  
  .module-stock-chart .highcharts-highcharts-scrollbar g:first-of-type rect {
    fill: #D22630;
    stroke: #D22630;
  }
  
  .module-stock-chart .highcharts-range-selector {
    box-sizing: content-box;
  }
  
  .module-stock-chart .highcharts-range-input rect {
    stroke: #cccccc;
    fill: #f2f2f2;
  }
  
  .module-stock-chart .highcharts-button rect, .module-stock-chart .highcharts-input-group rect {
    stroke-width: 0;
    fill: rgba(0, 0, 0, 0.05);
  }
  
  .module-stock-chart .highcharts-button text, .module-stock-chart .highcharts-input-group text {
    fill: #333333;
  }
  
  .module-stock-chart .highcharts-container>svg>.highcharts-button {
    display: none;
  }
  
  /*------ 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;
  }
  
  .module-stock .module_container--content {
    border-bottom: 4px solid #1d252d;
  }
  
  @media (max-width: 1024px) {
    .module-stock-historical .module_options-label, .module-stock-historical .module_options-select, .module-stock-historical .module_options-submit {
        margin-bottom: 10px;
    }
  }
  
  @media only screen and (max-width: 768px) {
    .module-stock.module-stock-historical .module-stock_empty {
        display: none;
    }
    .module-stock-quote .module_container--wrap+.module_container--wrap, .module-stock-historical .module_container--wrap+.module_container--wrap {
        margin-top: 35px;
    }
  }
  
  .module-stock .stock-historical-range .module_options>*:not(:last-of-type) {
    margin-bottom: 20px;
  }
  
  .module-stock_label, .module-stock_value {
    border-top: 1px solid #d0d3d4;
  }
  
  .module-stock_value {
    text-align: right;
  }
  
  .module-stock_label>span, .module-stock_value>span {
    display: block;
    padding: 12px 0;
    font-weight: 300;
  }
  
  .module-stock_price {
    font-size: 48px;
    font-weight: 300;
    margin-right: 30px;
  }
  
  .module-stock_change {
    font-size: 36px;
    font-weight: 300;
  }
  
  @media only screen and (max-width: 768px) {
    .module-stock_label>span, .module-stock_value>span {
        padding: 15px 10px;
    }
  }
  
  @media only screen and (max-width: 480px) {
    .module-stock_label>span, .module-stock_value>span {
        padding: 15px 0 15px 5px;
    }
  }
  
  .module-stock_up {
    color: #23a217;
  }
  
  .module-stock_down {
    color: #b72121;
  }
  
  .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_date {
    margin-top: 20px;
    font-size: 12px;
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
  
  .module-stock_delay {
    margin-top: 25px;
    font-size: 14px;
    font-size: 1.4rem;
    font-style: italic;
    text-align: right;
  }
  
  .module-stock_delay-text {
    margin-right: 20px;
  }
  
  .module-stock-historical .module_options-label {
    display: none;
  }
  
  .double-grid .grid {
    margin-left: -40px;
  }
  
  .double-grid .grid>.grid_col {
    padding-left: 40px;
  }
  
  /*- 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;
  }
  
  .pane--footer2 .module-subscribe_form tr:nth-child(even) {
    padding-left: 0;
  }
  
  .module-subscribe_form tr:nth-child(odd) {
    padding-right: 10px;
  }
  
  .pane--footer2 .module-subscribe_form tr:nth-child(odd) {
    padding-right: 0;
  }
  
  .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%;
  }
  
  .module-subscribe_submit-button, .module-unsubscribe_submit-button {
    background-color: #d22630;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
    padding: 13px 15px;
    color: #fff;
    min-width: 230px;
    display: inline-block;
    position: relative;
    border: none;
  }
  
  @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;
  }
  
  /*==================================
  ------------ BLANK CSS -----------
  ==================================*/
  
  /*-------- Layout Specific -------*/
  
  .layout_header {
    padding-top: 170px;
    transition: padding-top 600ms ease;
  }
  /* .js--header-small .layout_header {
    padding-top: 57px;
  } */
  
  .layout_footer {
    background: #1d252d;
    padding-left: 55px;
    padding-right: 55px;
    padding-top: 60px;
  }
  
  .layout_footer .grid--no-gutter {
    position: relative;
  }
  
  @media(max-width: 1160px) {
    .layout_footer {
        padding-left: 30px;
        padding-right: 30px;
    }
  }
  
  @media (max-width: 768px) {
    .layout_footer {
        padding: 45px 30px;
    }
  }
  
  @media (max-width: 520px) {
    .layout_footer {
        padding: 20px 30px 45px;
    }
  }
  
  @media (max-width: 1200px) {
    .layout_header {
        padding-top: 55px;
    }
  }
  
  @media (max-width: 480px) {
    .layout_header {
        padding-top: 49px;
    }
  }
  
  @media only screen and (max-width: 1200px) {
    .layout.js--mobile {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        overflow: hidden;
    }
  }
  
  /*--------- Pane Specific --------*/
  
  .pane--header {
    position: fixed;
    background-color: #fff;
    z-index: 130;
    border-bottom: 2px solid #D22630;
    width: 100%;
    top: 0;
    padding-top: 50px;
    transition: padding 600ms ease;
  }
  
  .js--header-small .pane--header {
    padding-top: 0;
    transition-delay: 300ms;
  }
  
  .pane--header .pane_inner {
    /* max-width: 1310px; */
    margin-left: auto;
    margin-right: auto;
    padding-left: 55px;
    padding-right: 40px;
  }
  
  .pane--header .module-logo img {
    margin-bottom: -10px;
    vertical-align: top;
    height: 28px;
    transition: all 300ms ease;
  }
  
  @media (min-width: 1201px) {
    .js--header-small .pane--header .module-logo img {
        height: 20px;
    }
  }
  
  .js--header-small .pane--header .module-logo a {
    position: relative;
    z-index: 2;
  }
  
  .js--header-small .pane--header .module-logo {
    width: 12%;
  }
  
  .pane--header .module, .pane--header .nav {
    vertical-align: baseline;
  }
  
  .pane--header .layout_toggle {
    display: none;
    font-size: 36px;
    font-size: 3.6rem;
    text-align: right;
  }
  
  .pane--header .layout_toggle i:focus {
    outline: none;
  }
  
  .js--mobile .pane--header .layout_toggle i:before {
    content: "\ed6d";
  }
  
  .pane--header .layout_toggle-line {
    width: 17px;
    height: 0px;
    background-color: #D22630;
    display: inline-block;
    vertical-align: top;
    transition: all 600ms ease;
    margin-top: 5px;
  }
  
  .pane--header .layout_toggle-line:before {
    content: "";
    width: 17px;
    height: 1px;
    position: absolute;
    background-color: #D22630;
    top: 0;
    left: 0;
    transition: all 400ms ease;
  }
  
  .pane--header .layout_toggle-line:after {
    content: "";
    width: 17px;
    height: 1px;
    position: absolute;
    background-color: #D22630;
    bottom: 0;
    left: 0;
    transition: all 400ms ease;
  }
  
  .js--mobile .pane--header .layout_toggle-line:before {
    transform: rotate(45deg);
    top: 4px;
  }
  
  .js--mobile .pane--header .layout_toggle-line:after {
    transform: rotate(-45deg);
    bottom: 5px;
  }
  
  @media only screen and (max-width: 1200px) {
    .pane--header {
        padding-top: 0;
    }
    .pane--header .pane_inner {
        padding-top: 17px;
        padding-bottom: 17px;
    }
    .pane--header .module {
        vertical-align: middle;
    }
    .pane--header .module-logo img {
        margin-bottom: 0;
        height: 14px;
    }
    .pane--header .layout_toggle {
        display: inline-block;
        width: auto;
    }
    .pane--header .nav {
        display: none;
    }
    .pane--header .layout_toggle {
        position: absolute;
        left: 5px;
        top: 50%;
        transform: translateY(-50%);
        padding: 10px;
    }
    .pane--header .layout_toggle .module_container--inner {
        width: 17px;
        height: 10px;
        position: relative;
    }
    .pane--header .module-logo {
        width: 100%;
        text-align: center;
        line-height: 14px;
    }
    .pane--header .module-logo a {
        position: relative;
        z-index: 1;
    }
    .js--header-small .pane--header .module-logo {
        width: 100%;
    }
  }
  
  .pane--banner .pane_inner {
    position: relative;
    margin-left: auto;
    margin-right: auto;
  }
  
  .pane--banner h1 {
    margin: 0;
  }
  
  @media only screen and (max-width: 768px) {
    .pane--banner h1 {
        margin-bottom: 32px;
    }
  }
  
  .pane--navigation {
    background: #fff;
    display: none;
  }
  
  .pane--navigation .pane_inner {
    max-width: 1310px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .pane--navigation .module-search {
    display: none;
  }
  
  @media only screen and (max-width: 1200px) {
    .pane--navigation {
        position: absolute;
        top: -100%;
        left: 0;
        right: 0;
        bottom: 100%;
        transition: 0.5s ease-in-out;
        overflow-y: scroll;
        z-index: 120;
        display: block;
        padding-top: 70px;
    }
    .js--mobile .pane--navigation {
        top: 55px;
        bottom: 0;
    }
    .pane--navigation .pane_inner {
        padding: 0;
    }
    .pane--navigation .module-search {
        display: block;
    }
    .pane--navigation .module-search_input {
        width: 100%;
        max-width: none;
        padding: 20px;
        border: none;
        background-color: #005894;
        color: #fff;
        text-transform: uppercase;
    }
    .pane--navigation .module-search_input::-webkit-input-placeholder {
        color: white;
    }
    .pane--navigation .module-search_input::-moz-placeholder {
        color: white;
    }
    .pane--navigation .module-search_input::-ms-input-placeholder {
        color: white;
    }
    .pane--navigation .module-search_button {
        top: 20px;
        right: 20px;
        background-position: 0 -100%;
    }
  }
  
  @media (max-width: 480px) {
    .js--mobile .pane--navigation {
        top: 49px;
    }
  }
  
  .pane--content .module {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  
  .page-container .module-header-intro {
    padding-bottom: 0;
  }
  
  .page-container .pane--content .module {
    padding-top: 55px;
    padding-bottom: 0;
  }
  
  .pane--content .module_container--outer {
    /* max-width: 1310px; */
    margin-left: auto;
    margin-right: auto;
  }
  
  .page-container .pane--content .module_container--outer, .PagePageNotFound .pane--content .module_container--outer {
    max-width: 1100px;
    padding-bottom: 85px;
    border-bottom: 1px solid #d0d3d4;
  }
  
  .module-border-bottom {
    padding-bottom: 0 !important;
  }
  
  .module-border-bottom .module_container--outer {
    padding-bottom: 85px;
    border-bottom: 1px solid #d0d3d4;
  }
  
  .page-container .pane--content .module-no-border .module_container--outer {
    border-bottom: none;
  }
  
  .layout--home .pane--content .module_container--outer {
    max-width: none;
  }
  
  @media only screen and (max-width: 1160px) {
    .page-container .pane--content .module_container--outer, .PagePageNotFound .pane--content .module_container--outer {
        max-width: none;
        padding-left: 30px;
        padding-right: 30px;
    }
  }
  
  .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 !important;
  }
  
  .pane--content .module--no-padding-bottom {
    padding-bottom: 0;
  }
  
  .pane--content .module-sitemap {
    padding-bottom: 35px;
  }
  
  .pane--footer {
    font-size: 14px;
    font-size: 1.4rem;
  }
  
  .pane--footer .pane_inner {
    margin-left: auto;
    margin-right: auto;
  }
  
  .pane--footer2 {
    padding-bottom: 75px;
    border-left: 1px solid #5B6770;
    margin-left: -1px;
  }
  
  .pane--footer2 .module_title {
    margin-bottom: 20px;
    font-size: 20px;
    font-size: 2rem;
    font-weight: normal;
    text-transform: uppercase;
  }
  
  .pane--footer2 .module_error-container {
    margin-bottom: 20px;
  }
  
  .pane--footer2 .module_error-container p {
    display: none;
  }
  
  .pane--footer2 .module_error-container li {
    margin-bottom: 3px;
    text-transform: none;
  }
  
  .pane--footer2 .module_introduction {
    display: none;
  }
  
  .pane--footer2 .module-links {
    text-transform: uppercase;
  }
  
  .pane--footer2 .module-links li {
    line-height: 1.4;
  }
  
  .pane--footer2 .module-subscribe_list-header, .pane--footer2 .module-subscribe .CaptchaContainer {
    display: none;
  }
  
  .pane--footer2 .module-subscribe_form tbody {
    display: block;
  }
  
  .pane--footer2 .module-subscribe_form tr {
    width: 100%;
    margin: 0;
  }
  
  .pane--footer2 .module-subscribe_form tr~tr {
    margin-top: 18px;
  }
  
  .pane--footer2 .module-subscribe_mailing-list {
    margin: 20px 0 10px;
  }
  
  .pane--footer2 .module-subscribe_list>td {
    padding: 0;
  }
  
  .pane--footer2 .module-subscribe p {
    padding-right: 35px;
    line-height: 1.5;
  }
  
  .pane--footer2 .module-subscribe input[type="checkbox"]+label:before {
    border-color: #fff;
  }
  
  .pane--footer2 .module-subscribe_mailing-list.js--revealed, .pane--footer2 .module-subscribe .module_actions.js--revealed {
    display: block;
  }
  
  .pane--footer2 .module_input[type="text"] {
    max-width: 300px;
    background: no-repeat;
    border-color: #5b6770;
    color: #fff;
  }
  
  .pane--footer2 .module-subscribe_table label {
    font-size: 12px;
    text-transform: uppercase;
    color: #d0d3d4;
    margin-bottom: 15px;
  }
  
  .pane--footer2 .module-subscribe_email label span {
    color: #d22630;
    font-size: 14px;
  }
  
  .pane--footer2 .module-subscribe_submit-button {
    min-width: auto;
    width: 100%;
    max-width: 300px;
  }
  
  .pane--footer2 .module-subscribe {
    color: #fff;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    padding-left: 40px;
    margin-top: 30px;
  }
  
  .pane--footer2 .module-subscribe .module_title {
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    padding: 0;
  }
  
  .pane--footer2 .module-subscribe .module_title:after {
    display: none;
  }
  
  .pane--footer2 .button {
    color: #fff;
    border: none;
    background-color: #D22630;
  }
  
  @media (max-width: 1024px) {
    .pane--footer2 .module-subscribe {
        padding-left: 0;
    }
    .pane--footer2 {
        border-left: none;
        margin-left: 0;
    }
  }
  
  @media (max-width: 520px) {
    .pane--footer2 {
        padding-bottom: 30px;
    }
  }
  
  @media (max-width: 480px) {
    .pane--footer2 .module_input[type="text"] {
        max-width: none;
    }
    .pane--footer2 .module-subscribe_submit-button {
        max-width: none;
    }
  }
  
  .pane--credits {
    padding-bottom: 20px;
    text-align: center;
    color: #f6f6f6;
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.5;
    margin-top: 30px;
  }
  
  .pane--credits a {
    color: #f6f6f6;
  }
  
  .pane--credits .pane_inner {
    max-width: 1310px;
    margin-left: auto;
    margin-right: auto;
  }
  
  @media only screen and (max-width: 1024px) {
    .pane--credits .pane_inner {
        max-width: none;
        padding-left: 20px;
        padding-right: 20px;
    }
  }
  
  /*--------- Page Specific --------*/
  
  .page--no-alternating .pane--content {
    padding: 35px 0;
  }
  
  .page--no-alternating .module {
    padding-top: 35px;
    padding-bottom: 35px;
  }
  
  /*-------- 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-why-invest h3 {
    color: #333333;
  }
  
  .module-why-invest h4 {
    font-size: 60px;
    font-size: 6rem;
    color: #D22630;
    font-weight: 300;
    margin-top: 0;
  }
  
  .module-why-invest .grid {
    padding-top: 25px;
    padding-bottom: 25px;
  }
  
  .module-why-invest .grid_col {
    padding-bottom: 15px;
    padding-right: 20px;
  }
  
  @media (min-width: 480px) {
    .module-why-invest .grid_col+.grid_col {
        border-left: 1px solid #dddddd;
    }
  }
  
  .module-why-invest .grid_col p {
    margin-bottom: 0;
  }
  
  .module-social .module_tabs {
    margin-bottom: 10px;
  }
  
  .module-social .module_tabs .button {
    display: block;
  }
  
  .module-social .module_tabs .button.js--selected {
    background: #D22630;
    color: #fff;
  }
  
  .module-social .module_tab {
    display: inline-block;
    padding-right: 5px;
    padding-bottom: 5px;
  }
  
  @media (max-width: 640px) {
    .module-social .module_tab {
        width: 50%;
    }
  }
  
  .module-social .module_container--content {
    padding: 0;
    display: flex;
    justify-content: stretch;
    align-items: stretch;
  }
  
  @media (max-width: 767px) {
    .module-social .module_container--content {
        padding: 0 20px;
        margin: 0;
    }
  }
  
  .module-social .module_container--content .slick-track {
    display: flex;
    justify-content: stretch;
    align-items: stretch;
  }
  
  .module-social .module_container--content .slick-list {
    width: 100%;
  }
  
  .module-social .module_container--content .slick-arrow {
    color: #D22630;
  }
  
  .module-social .module_headline-link {
    color: #D22630;
  }
  
  .module-social .module_item {
    height: auto;
  }
  
  .module-social .module_item.grid_col {
    padding: 0 0 0 20px;
    margin: 15px 0;
  }
  
  @media (max-width: 767px) {
    .module-social .module_item.grid_col {
        padding-left: 0;
    }
  }
  
  .module-social .module_item-wrap {
    padding: 30px;
    background-color: #f6f6f6;
    height: 100%;
  }
  
  .module-social .module_item+.module_item {
    border-top: none;
  }
  
  .module-social .module_date {
    text-align: left;
    margin-bottom: 15px;
  }
  
  .module-social .module_headline {
    text-align: left;
    margin: 0;
    line-height: 1.5;
  }
  
  .module-social .module_icon {
    float: right;
    margin-left: 5px;
    margin-bottom: 5px;
    font-size: 20px;
    font-size: 2rem;
  }
  
  .module-social .module_icon .q4-icon_twitter {
    color: #1da1f2;
  }
  
  .module-social .module_icon .q4-icon_facebook {
    color: #365899;
  }
  
  .module-social .module_icon .q4-icon_youtube {
    color: #cc181e;
  }
  
  /* footer navigation */
  
  .module-footer-navigation {
    border-right: 1px solid #5B6770;
  }
  
  .module-footer-navigation .level1>li {
    width: 20%;
    display: inline-block;
    vertical-align: top;
  }
  
  /* .module-footer-navigation .level1>li:nth-child(4) {
    width: 40%;
  } */
  
  .module-footer-navigation .level1>li:nth-child(-n+4) {
    padding-bottom: 60px;
  }
  
  .module-footer-navigation .level1>li:nth-child(n+6) {
    padding-top: 60px;
    border-top: 1px solid #5B6770;
  }
  
  .module-footer-navigation li a {
    font-size: 14px;
    color: #fff;
    line-height: 1.5;
    font-weight: 300;
  }
  
  .module-footer-navigation .level1>li>a {
    border-bottom: 1px solid #5B6770;
    padding-bottom: 2px;
    margin-bottom: 10px;
    display: inline-block;
    font-weight: 500;
    transition: all 300ms ease;
  }
  
  .module-footer-navigation .level1>li>a:hover {
    /* color: #a2aaad; */
    border-color: #a2aaad;
  }
  
  .module-footer-navigation .level2 li {
    margin: 5px 0;
  }
  
  .module-footer-navigation .level3 {
    border-left: 1px solid #5B6770;
    padding-left: 15px;
  }
  
  @media (max-width: 1024px) {
    .module-footer-navigation {
        border-right: none;
        width: 100%;
    }
  }
  
  @media (max-width: 768px) {
    .module-footer-navigation .level1>li {
        width: 50%;
        margin-bottom: 30px;
    }
    .module-footer-navigation .level1>li:nth-child(5) {
        width: 100%;
    }
    .module-footer-navigation .level1>li:nth-child(-n+5) {
        padding-bottom: 0;
    }
    .module-footer-navigation .level1>li:nth-child(n+6) {
        padding-top: 0;
        border-top: none;
    }
    .module-footer-navigation .level1>li:nth-child(6), .module-footer-navigation .level1>li:nth-child(7) {
        padding-top: 30px;
        border-top: 1px solid #5B6770;
    }
  }
  
  @media (max-width: 520px) {
    .module-footer-navigation .level1>li {
        width: 100%;
    }
    .module-footer-navigation .level1>li:nth-child(7) {
        border-top: none;
        padding-top: 0;
    }
  }
  
  .module-co-links .module_container--inner {
    padding-left: 40px;
  }
  
  .module-co-links p {
    margin-top: 0;
    color: #D0D3D4;
    font-weight: 300;
  }
  
  .module-co-links li a {
    color: #FF4242;
    font-weight: 700;
    border-bottom: 1px solid #5B6770;
    padding-bottom: 2px;
    margin-bottom: 8px;
    display: inline-block;
    text-transform: uppercase;
    font-size: 12px;
    position: relative;
    z-index: 1000;
  }
  
  @media (max-width: 1024px) {
    .module-co-links {
        border-top: 1px solid #5B6770;
        padding-top: 40px;
        margin-top: 40px;
        width: 100%;
    }
    .module-co-links .module_container--inner {
        padding-left: 0;
    }
  }
  
  @media (max-width: 768px) {
    .module-co-links {
        margin-top: 0;
        padding-top: 30px;
    }
  }
  
  .module-back-to-top {
    position: absolute;
    bottom: 0;
    right: 0;
    padding-bottom: 0 !important;
    color: #fff;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1.2px;
    font-weight: 700;
    width: 25%;
    padding-left: 40px;
  }
  
  .module-back-to-top a {
    color: #fff;
    display: inline-block;
    text-align: center;
  }
  
  .module-back-to-top a span {
    display: block;
    margin-top: 10px;
  }
  
  .module-back-to-top a i {
    font-size: 25px;
    color: #A2AAAD;
    transition: all 0.3s ease;
  }
  
  .module-back-to-top a:hover i {
    transform: translateY(-10px);
  }
  
  @media (max-width: 1024px) {
    .module-back-to-top {
        bottom: 10px;
    }
  }
  
  @media (max-width: 520px) {
    .module-back-to-top {
        position: static;
        padding-left: 0;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #5B6770;
        padding-bottom: 20px !important;
        margin-bottom: 30px;
    }
  }
  
  /* home page*/
  
  .module-slider-content {
    position: relative;
  }
  
  .module-slider-content .slick-slider {
    padding: 0;
  }
  
  .module-slider-content .module_item-wrap {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 30px;
  }
  
  .module-slider-content .module_item {
    padding: 50px 0;
    background-size: cover;
    height: 600px;
    border-bottom: none;
  }
  
  .module-slider-content .module_item-wrap-content {
    background-color: #fff;
    max-width: 400px;
    padding: 65px 55px;
  }
  
  .module-slider-content .module-slider_title {
    font-size: 21px;
    font-weight: 700;
    line-height: 30px;
    color: #1D252D;
    letter-spacing: 0.15px;
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 50px;
    text-transform: uppercase;
  }
  
  .module-slider-content .module-slider_description {
    font-size: 32px;
    line-height: 35px;
    font-weight: 300;
    color: #1D252D;
    margin-bottom: 30px;
  }
  
  .module-slider_title:after {
    content: "";
    width: 40px;
    height: 1px;
    background-color: #D22630;
    position: absolute;
    bottom: 0;
    left: 0;
  }
  
  .slick-dots li button {
    font-size: 0;
    background: none;
    padding: 0;
    margin: 0;
    border: none;
  }
  
  .module-slider-content-dots {
    list-style: none;
    position: absolute;
    bottom: 60px;
    width: 100%;
  }
  
  .module-slider-content-dots .slick-dots {
    display: inline-block;
    text-align: right;
    position: relative;
    width: 100%;
    padding: 0 55px;
    margin: 0;
  }
  
  .slick-dots li {
    display: inline-block;
    height: 17px;
    width: 17px;
    background-color: #fff;
    margin: 0 10px;
    border-radius: 50%;
    border: 1px solid #fff;
    cursor: pointer;
    padding: 0;
  }
  
  .slick-dots li:before {
    display: none;
  }
  
  .slick-dots li.slick-active {
    background: none;
    cursor: default;
  }
  
  .module_loader {
    text-align: center;
    width: 100%;
  }
  
  @media only screen and (max-width: 1200px) {
    .module-slider-content .module_item-wrap-content {
        padding: 40px 30px;
    }
  }
  
  @media (max-width: 768px) {
    .module-slider-content .module_item-wrap {
        padding: 0 30px;
    }
    .module-slider-content-dots {
        bottom: 25px;
    }
    .pane--banner .module-slider-content-dots .slick-dots {
        text-align: center;
    }
    .module-slider-content .module_item-wrap-content {
        max-width: none;
    }
    .module-slider-content .module_item {
        height: auto;
        padding-top: 240px;
        padding-bottom: 80px;
        background-position: center;
    }
  }
  
  /* video */
  
  .module-home-video .module_container--inner {
    position: relative;
  }
  
  .module-home-video .video-iframe-container {
    padding-bottom: 50%;
    position: relative;
    max-height: 900px;
    overflow: hidden;
  }
  
  .module-home-video .module_container--inner iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  
  .module-home-video_container {
    position: absolute;
    top: 55px;
    right: 0;
  }
  
  .module-home-video_inner {
    margin: 0 55px;
    text-align: right;
  }
  
  .module-home-video_container h2 {
    font-size: 21px;
    font-size: 2.1rem;
    margin-bottom: 30px;
    line-height: 1.125;
    text-transform: uppercase;
    letter-spacing: 0.015px;
    font-weight: 700;
    position: relative;
    padding-bottom: 24px;
    margin-bottom: 60px;
  }
  
  .module-home-video_inner .module-panel-container {
    text-align: left;
    background-color: #EDF1F2;
  }
  
  .home-vido-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../design/home-video-background.jpg);
    background-size: cover;
    cursor: pointer;
  }
  
  .video-play {
    background-image: url(../design/Icon-Play.png);
    height: 50px;
    width: 70px;
    background-size: cover;
    position: absolute;
    left: calc(50% - 35px);
    top: calc(50% - 25px);
  }
  
  @media (max-width: 768px) {
    .module-home-video_container {
        position: relative;
        top: 300px;
    }
    .module-home-video_inner {
        text-align: center;
    }
    .module-home-video_inner .module-panel-container {
        position: relative;
        display: block;
        max-width: none;
    }
    .module-home-video {
        margin-bottom: 320px;
    }
  }
  
  .module-our-values p {
    font-size: 32px;
    font-size: 3.2rem;
    line-height: 1.125;
    color: #5B6770;
    font-weight: 300;
    margin-top: 12px;
  }
  
  .module-our-values p .color-brand {
    color: #D22630;
    border-bottom: 1px solid #D22630;
    font-weight: 500;
  }
  
  .home-our-values-image {
    background-image: url(../design/home-our-values_background.jpg);
  }
  
  @media (max-width: 1200px) {
    .module-our-values p {
        font-size: 30px;
    }
  }
  
  @media (max-width: 1024px) {
    .module-our-values p {
        font-size: 24px;
        line-height: 40px;
    }
  }
  
  .module-why-invest_image {
    background-image: url(../design/why-invest-homepage.jpg);
    background-size: cover;
    background-position: center;
  }
  
  .module-why-invest_background {
    background-color: #D22630;
    padding: 65px 55px;
  }
  
  .module-why-invest_background p {
    font-size: 32px;
    line-height: 35px;
    font-weight: 300;
  }
  
  @media (max-width: 768px) {
    .module-why-invest_background {
        padding: 40px 30px;
    }
    .module-why-invest_background p {
        font-size: 24px;
        line-height: 26px;
    }
  }
  
  @media (max-width: 480px) {
    .module-why-invest_image {
        width: 100%;
        padding-bottom: 375px;
    }
    .module-why-invest_background {
        width: 100%;
    }
  }
  
  .module-stocks-body_description1 {
    font-size: 12px;
    font-weight: 700;
    display: block;
    letter-spacing: 1.2px;
    margin-bottom: 45px;
  }
  
  .module-stocks-body_stock-price {
    font-size: 36px;
    font-size: 3.6rem;
    line-height: 1;
  }
  
  .module-stocks-body_change {
    font-size: 24px;
    font-size: 2.4rem;
    line-height: 1;
  }
  
  .module-stock-investors .module-stocks-body_stock-price {
    font-size: 48px;
    padding-right: 20px;
  }
  
  .module-stock-investors .module-stocks-body_change {
    padding-left: 0;
    display: inline-block;
  }
  
  .module-stock-investors .module_container--content+.module_container--content {
    margin-top: 60px;
  }
  
  .module-stocks-body_change {
    padding-left: 20px;
  }
  
  .module-stock-header_down {
    color: #D22630;
  }
  
  .module-stock-header_up {
    color: #1d9f2c;
  }
  
  .module-stock-header_indicator {
    font-size: 12px;
    line-height: 25px;
    display: inline-block;
    vertical-align: middle;
  }
  
  .module-stocks-body_date, .module-stocks-body_description3 {
    display: block;
    font-size: 12px;
    line-height: 1.3;
    color: #333333;
  }
  
  .module-stocks-body_date {
    margin-top: 20px;
  }
  
  @media (max-width: 480px) {
    .module-stocks-body .module_container--content {
        width: 100%;
    }
    .module-stocks-body .module_container--content+.module_container--content {
        margin-top: 60px;
    }
  }
  
  .module-annual-home {
    height: 100%;
  }
  
  .module-annual-home_image {
    background-image: url(../design/financial-homepage.jpg);
    background-size: cover;
    background-position: center;
  }
  
  .module-annual-home-container {
    padding: 65px 55px;
    background-color: #EDF1F2;
  }
  
  .module-annual-home-container .button {
    margin-bottom: 30px;
  }
  
  .module-annual-home .module_title {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    line-height: 24px;
    /* margin-top: 40px; */
    margin-top: 20px;
    margin-bottom: 15px;
    text-transform: none;
  }
  .module-presentation-home + .module-annual-home-widget {
    margin-top: 40px;
  }
  .module-annual-home-widget .module_cover, .module-presentation-home .module_cover {
    max-width: 300px;
  }
  
  @media (max-width: 768px) {
    .module-annual-home-container {
        padding: 40px 30px;
    }
    .module-annual-home-container .button {
        margin-bottom: 45px;
    }
  }
  
  @media (max-width: 480px) {
    .module-annual-home_image {
        width: 100%;
        padding-bottom: 375px;
        background-position: center 10%;
    }
    .module-annual-home-container {
        width: 100%;
    }
    .module-annual-home .module_links>* {
        display: inline;
    }
  }
  
  /* layout two column */
  
  .layout--two-column .pane--banner {
    padding-top: 46px;
    background: none;
  }
  
  .banner--no-padding .layout--two-column .pane--banner {
    padding-top: 0;
  }
  
  .PageWhyCopper .layout--two-column .pane--banner, .PagePeru .layout--two-column .pane--banner {
    padding-top: 0;
  }
  
  .layout--two-column .module-page-title .module_container--inner {
    padding: 70px 55px;
  }
  
  @media (max-width: 768px) {
    .layout--two-column .module-page-title .module_container--inner {
        padding-left: 30px;
    }
  }
  
  .layout--two-column .module-page-title {
    position: absolute;
    color: #fff;
    z-index: 100;
  }
  
  .layout--two-column .module-page-title h1 {
    position: relative;
    padding-bottom: 30px;
  }
  
  .layout--two-column .module-page-title h1:after {
    content: "";
    width: 40px;
    height: 1px;
    background-color: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
  }
  
  @media (max-width: 1200px) {
    .layout--two-column .pane--banner {
        padding: 0;
    }
  }
  
  @media (max-width: 900px) {
    .layout--two-column .module-page-title {
        width: 100%;
    }
  }
  
  .LayoutTwoColumnLayout .header-image {
    background-color: #5b6770;
  }
  
  .PageCanada .header-image {
    background-image: url(../design/banner/canada-banner.jpg);
    background-size: cover;
    background-position: center top;
  }
  
  .PageUnitedStates .header-image {
    background-image: url(../design/banner/us-banner.jpg);
    background-size: cover;
    background-position: 50% 20%;
  }
  
  .PagePeru .header-image {
    background-image: url(../design/banner/peru-en-banner.jpg);
    background-size: cover;
    background-position: center top;
  }
  .PageWhyHudbay .pane--banner {
    background-image: url(../design/banner/why-hudbay-banner.jpg);
    background-size: cover;
    background-position: 40% 10%;
  }
  @media (max-width: 767px) {
  .PageWhyHudbay .pane--banner {
        background-position: 20% 0%;
        background-size:160%;
    }
  }
  @media (max-width: 660px) {
  .PageWhyHudbay .pane--banner {
        background-size: cover;
    }
  }
  @media (max-width: 550px) {
  .PageWhyHudbay .pane--banner {
        background-size:250%;
        background-position: 50% 50%;
  
    }
  }
  @media (max-width: 490px) {
  .PageWhyHudbay .pane--banner {
        background-position: 50% 60%;
        background-size:280%;
    }
  }
  @media (max-width: 440px) {
  .PageWhyHudbay .pane--banner {
        background-position: 50% 50%;
        background-size:320%;
    }
  }
  @media (max-width: 414px) {
  .PageWhyHudbay .pane--banner {
        background-position: 45% 50%;
        background-size:360%;
    }
  }
  @media (max-width: 375px) {
  .PageWhyHudbay .pane--banner {
        background-position: 42% 50%;
        background-size:410%;
    }
  }
  .module-mine-summary .header-image {
    padding-top: 25%;
  }
  
  .pane--banner .module-mine-summary .disp_table {
    min-height: 505px;
  }
  
  .module-mine-summary-intro.disp_cell {
    vertical-align: top;
  }
  
  .module-mine-summary-description {
    font-size: 24px;
    font-weight: 300;
    line-height: 1.3;
  }
  
  .module-mine-summary-description span {
    font-size: 12px;
    font-size: 1.2rem;
  }
  
  .module-mine-summary-description span+span {
    font-size: 14px;
    font-size: 1.4rem;
    display: block;
  }
  
  .module-mine-summary-intro .module-mine-summary-description {
    font-size: 48px;
  }
  
  .module-mine-summary-intro h5 {
    font-weight: 500;
  }
  
  .module-mine-summary-item+.module-mine-summary-item {
    margin-top: 45px;
  }
  
  .module-mine-summary-item--no-margin {
    margin-top: 20px !important;
  }
  
  .module-mine-summary-item h2 {
    padding-bottom: 20px;
    margin-bottom: 30px;
  }
  
  .module-mine-summary-item h2:after {
    background-color: #1D252D;
  }
  
  .module-mine-summary-alt {
    font-size: 24px;
    font-weight: 300;
  }
  
  .module-mine-summary-box {
    border: 1px solid #d22630;
    background: url(../design/peru-en-mine-summary-box.jpg) no-repeat center left transparent;
    padding: 7% 5% 7% calc(210px + 5%);
    margin-top: 50px;
    min-height: 240px;
  }
  
  .module-mine-summary-box h2 {
    font-size: 36px;
    font-size: 3.6rem;
    line-height: 1.125;
    margin: 0;
  }
  
  @media (max-width: 900px) {
    .pane--banner .module-mine-summary .disp_table {
        display: block;
    }
    .pane--banner .module-mine-summary .disp_table .disp_cell {
        display: block;
        width: 100%;
    }
    .pane--banner .module-mine-summary .header-image {
        min-height: 375px;
    }
  }
  
  @media (max-width: 480px) {
    .module-mine-summary-box {
        padding-left: 0;
        background-position: center 20px;
        padding: 280px 20px 20px 20px;
    }
  }
  
  .box-image {
    background-size: cover;
    background-color: #d0d3d4;
  }
  
  .box-image-height {
    min-height: 600px;
  }
  .continued-growth-image .box-image-height {
    min-height: 730px;
  }
  .ethics-and-human-rights {
    padding-top: 480px;
  }
  
  .environment-image {
    background-image: url(../images/canada/canada-environment.jpg);
  }
  
  .environment-image-2 {
    background-image: url(../images/us/envirionment-v2.jpg);
  }
  
  .environment-image-3 {
    background-image: url(../images/peru/envirionment-v3.jpg);
  }
  
  .community-image {
    background-image: url(../design/community.jpg);
  }
  
  .community-image-2 {
    background-image: url(../images/us/community-v2.jpg);
  }
  
  .community-image-3 {
    background-image: url(../images/peru/community-v3.jpg);
  }
  
  .people-image {
    background-image: url(../images/canada/canada-people.jpg);
  }
  
  .people-image-2 {
    background-image: url(../images/us/2019AZ-JavierToro_016.jpg);
  }
  
  .people-image-3 {
    background-image: url(../images/peru/people-v3.jpg);
    background-position: center;
  }
  
  .sustainability-image {
    background-image: url(../design/sustainabilty-image.jpg);
  }
  
  .sustainability-environment-image {
    background-image: url(../images/sustainability/sustainability-environment.jpg);
    background-position: right center;
    position: relative;
  }
  
  .sustainability-communities {
    /* background-image: url(../images/sustainability/sustainability-communities.jpg); */
    background-position: center;
    height: 600px;
  }
  
  .box-image-text {
    padding: 20px 40px;
    font-size: 14px;
    color: #fff;
    text-align: right;
    background-color: rgba(29, 37, 45, 0.65);
    border-top: 1px solid #fff;
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
  }
  
  .sustainability-communities .grid_col {
    background-size: cover;
    background-position: 50% 50%;
  }
  .sustainability-communities .grid_col.peru {
    background-position: top;
  }
  
  .box-image-cell {
    height: 100%;
    position: relative;
  }
  
  .box-image-cell h4 {
    display: block;
    height: 100%;
    width: 100%;
    margin: 0;
    position: relative;
    background-position: 50% 50%;
    background-size: cover;
  }
  
  .box-image-cell h4:after {
    display: none;
  }
  
  .box-image-cell h4 span {
    position: absolute;
    bottom: 0;
    margin: 65px 55px;
    color: #fff;
    text-transform: uppercase;
    font-family: ubuntu;
    font-weight: 700;
    letter-spacing: .12em;
    font-size: 12px;
  }
  
  .box-image-cell h4 span:after {
    content: "";
    width: 40px;
    height: 1px;
    background-color: #fff;
    bottom: -25px;
    position: absolute;
    left: 0
  }
  
  .manitoba {
    background-image: url(../images/sustainability/manitoba-box-cell.jpg);
  }
  
  .peru {
    background-image: url(../images/sustainability/peru-box-cell.jpg);
  }
  
  .arizona {
    background-image: url(../images/sustainability/arizona-box-cell.jpg);
  }
  
  @media (max-width: 480px) {
    .box-image-cell.grid--flex {
        display: flex;
        flex-direction: column;
    }
  }
  
  .continued-growth-image {
    background-image: url('../images/2020/MAP-for-Website.jpg');
    background-position: 50%;
    background-size: contain;
    background-repeat: no-repeat;
    background-color: #fff;
  }
  
  .values-driven-image {
    background-image: url(../images/investor/values-driven-strategy.jpg);
    background-position: center;
  }
  
  .proven-commitment-image {
    background-image: url(../images/investor/proven-commitment.jpg);
  }
  
  .proven-management {
    background-image: url(../images/investor/proven-management.jpg);
  }
  
  .hudbay_values-image {
    background-image: url(../images/careers/values-and-culture.jpg);
  }
  
  .ethics-and-human-rights-1 {
    background-image: url('../images/sustainability/ethics-and-human-rights-1.jpg');
  }
  
  .ethics-and-human-rights-2 {
    background-image: url('../images/sustainability/ethics-and-human-rights-2.jpg');
  }
  
  .ethics-and-human-rights-3 {
    background-image: url('../images/sustainability/ethics-and-human-rights-3.jpg');
  }
  
  .about_our-people {
    background-image: url(../images/about_us/about-people.jpg);
  }
  
  .about_our-strategy {
    background-image: url(../images/about_us/about-strategy.jpg);
  }
  
  .about_our-values {
    background-image: url(../images/about_us/about-values.jpg);
  }
  
  .border-bottom {
    border-bottom: 1px solid #A2AAAD;
    padding-bottom: 15px;
    margin-top: 30px;
  }
  
  .module-boxes-number {
    font-size: 48px;
    font-weight: 300;
    line-height: 1;
  }
  
  .module-boxes-number span {
    font-size: 24px;
    font-size: 2.4rem;
    padding-left: 4px;
  }
  
  .module-boxes-description {
    font-size: 14px;
    font-weight: 500;
    line-height: 21px;
  }
  
  .module-boxes-description h3 {
    margin-bottom: 10px;
  }
  
  @media (max-width: 1200px) {
    .box-image-height {
        min-height: 400px;
    }
    .box-image-height-mobile {
        min-height: 300px;
    }
    .continued-growth-image .box-image-height {
        min-height: 550px;
    }
  }
  
  /* layout three columns */
  
  .layout--three-column .pane--banner {
    padding-top: 120px;
  }
  
  @media (max-width: 768px) {
    .layout--three-column .pane--banner {
        padding-top: 80px;
    }
  }
  
  .layout--three-column .pane--banner .pane_inner {
    max-width: 1100px;
  }
  
  @media (max-width: 1160px) {
    .layout--three-column .pane--banner .pane_inner {
        max-width: none;
        padding-left: 30px;
        padding-right: 30px;
    }
  }
  
  .layout--three-column .module-page-title {
    width: 100%;
  }
  
  .layout--three-column .pane--banner h1 {
    position: relative;
    padding-bottom: 30px;
    margin-bottom: 60px;
  }
  
  .layout--three-column .pane--banner h1:after {
    content: "";
    position: absolute;
    width: 40px;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: #D22630;
  }
  
  .module-header-intro {
    padding-bottom: 85px;
  }
  
  .module-header-intro p {
    font-weight: 300;
  }
  
  .module-header-intro p:not(.intro-text) {
    line-height: 28px;
  }
  
  .module-header-spacing p:first-child {
    margin-top: -5px;
  }
  
  .module-header-spacing {
    padding-bottom: 25px !important;
  }
  
  .module-summary-fion .module-summary-image {
    background-image: url(../images/flinfion/flinflon1.jpg);
    background-size: cover;
    background-position: center;
  }
  
  .module-panel-full {
    background-size: cover;
    background-position: center;
  }
  
  .module-panel-full-filler {
    background-color: #d0d3d4;
  }
  
  .pane--content .module-panel-full .module_container--outer {
    max-width: 1100px;
  }
  
  .module-panel-container {
    background-color: #fff;
    padding: 50px 40px;
    display: inline-block;
    max-width: 430px;
  }
  
  .module-panel-stat span.number-stat {
    font-size: 48px;
    font-size: 4.8rem;
    font-weight: 300;
    line-height: 1;
  }
  
  .module-panel-stat span {
    font-size: 24px;
    font-size: 2.4rem;
  }
  
  .module-panel-stat strong {
    display: block;
    font-size: 14px;
    font-size: 1.4rem;
    margin-top: 5px;
  }
  
  .module-panel-text {
    font-size: 24px;
    line-height: 1;
    font-weight: 300;
    margin-bottom: 30px;
  }

  .module-panel-text.why-copper {
    font-size: 30px;
    line-height: 1;
    font-weight: 300;
    margin-bottom: 55px;
  }
  
  .module-panel-item+.module-panel-item {
    border-top: 1px solid #D0D3D4;
    padding-top: 15px;
    margin-top: 20px;
  }
  
  .module-boxes-investor .module-panel-item+.module-panel-item {
    border-top: none;
  }
  
  .pannel-right {
    text-align: right;
  }
  
  .pannel-right .module-panel-container {
    text-align: left;
  }
  
  @media (max-width: 1160px) {
    .pane--content .module-panel-full .module_container--outer {
        max-width: none;
        padding-left: 30px;
        padding-right: 30px;
    }
  }
  
  @media (max-width: 640px) {
    .pane--content .module-panel-mobile_padding {
        padding-top: 270px;
    }
  }
  
  @media (max-width: 768px) {
    .pane--content .module-panel-mobile {
        padding-top: 200px;
        padding-bottom: 0;
        background-size: contain;
        background-position: top;
        background-repeat: no-repeat;
    }
    .pane--content .module-panel-mobile .module_container--outer {
        padding: 0;
    }
    .module-panel-mobile .module-panel-container {
        max-width: none;
        display: block;
    }
  }
  
  .module-panel-fion-1 {
    background-image: url(../images/canada/flon-panel-1.jpg);
    background-position: center top;
  }
  
  .module-panel-fion-2 {
    background-image: url(../images/canada/flon-panel-2.jpg);
  }
  
  .module-panel-fion-3 {
    background-image: url(../images/peru/fion-panel-3.jpg);
  }
  
  .module-panel-fion-4 {
    background-image: url(../images/peru/flon-panel-4.jpg);
  }
  
  .module-panel-careers {
    background-image: url(../images/careers/careers-inner-banner.jpg);
  }
  
  .module-panel-careers .module-quicklinks-footer a {
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: .12em;
    font-weight: 700;
  }
  
  .module-panel-rosemont-1 {
    background-color: #a2aaad;
  }
  
  .module-panel-rosemont-2 {
    background-image: url('../images/us/us-key-production-metrics-panel.jpg');
  }
  
  /* layout one column */
  
  .layout--one-column .pane--banner {
    padding-top: 46px;
  }
  
  .layout--one-column .pane--banner .pane_inner {
    padding: 70px 0;
    max-width: 80%;
  }
  
  .layout--one-column .module-page-title {
    width: 100%;
  }
  
  .layout--one-column .pane--banner h1 {
    position: relative;
    padding-bottom: 30px;
    margin-bottom: 60px;
  }
  
  .layout--one-column .pane--banner h1:after {
    width: 40px;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #D22630;
    content: "";
  }
  
  .layout--one-column .pane--breadcrumb {
    background-size: cover;
    background-color: #edf1f2;
    vertical-align: top;
  }
  
  .PageDisclosureCentre .pane--breadcrumb {
    background-color: #D0D3D4;
    background-image: url(../design/banner/disclosure-centre-banner.jpg);
    background-position: center;
  }
  
  .layout--one-column .pane--breadcrumb .pane_inner {
    padding-top: 46px;
  }
  
  @media (max-width: 1160px) {
    .layout--one-column .pane--banner .pane_inner {
        max-width: none;
        padding-left: 30px;
        padding-right: 30px;
    }
  }
  
  @media (max-width: 1024px) {
    .layout--one-column .pane--breadcrumb {
        width: 33.3333333333%;
    }
    .layout--one-column .pane--banner {
        width: 66.6666666667%;
    }
  }
  
  @media (max-width: 768px) {
    .layout--one-column .pane--breadcrumb {
        min-height: 400px;
        width: 100%;
    }
    .layout--one-column .pane--banner {
        padding-top: 0;
        width: 100%;
    }
    .module-header-intro {
        padding-bottom: 0;
    }
  }
  
  .PageAboutUs .pane--breadcrumb {
    background-image: url(../design/banner/about-us-banner.jpg);
    background-position: 60% top;
  }
  
  .module-panel-about {
    background-image: url(../images/about_us/about-us-inner-pannel.jpg);
  }
  
  .PageSustainability .pane--breadcrumb {
    background-image: url(../design/banner/sustatinability-banner.jpg);
    background-position: center top;
  }
  
  .PageContactus .pane--breadcrumb {
    background-image: url(../design/banner/contact-us-banner.jpg);
    background-position: 50% 50%;
  }
  
  .PageCareers .pane--breadcrumb {
    background-image: url(../design/banner/careers-banner.jpg);
    /* background-position: 100% 50%; */
    background-position: center;
  }
  
  .PageNewsMedia .pane--breadcrumb {
    background-image: url(../design/banner/news-and-media-centre-banner.jpg);
    background-position: 50% 50%;
  }
  
  /* pane right */
  
  .module-bottom-boxes {
    padding: 0 55px;
    margin: 80px 0 120px;
  }
  
  .layout--two-column .module-bottom-boxes {
    margin-top: 0;
  }
  
  .page-container .module-bottom-boxes {
    margin-top: 0;
  }
  
  .module-bottom-boxes .module_container--inner {
    margin-left: -20px;
    margin-right: -20px;
  }
  
  .module-bottom-boxes .module_container--outer {
    padding: 60px 0 0;
    border-top: 1px solid #D0D3D4;
  }
  
  .module-bottom-boxes-row {
    display: flex;
  }
  
  .module-bottom-boxes-row+.module-bottom-boxes-row {
    margin-top: 40px;
  }
  
  .module-bottom-boxes-item {
    flex: 1 1;
  }
  
  .module-bottom-boxes-item.double {
    flex: 2;
  }
  
  .module-bottom-boxes-item.double .disp_flex {
    height: 100%;
    display: flex;
  }
  
  .module-bottom-boxes-item.double .disp_flex>div:first-child {
    width: calc(50% - 20px);
  }
  
  .module-bottom-boxes-item.double .disp_flex>div:last-child {
    width: calc(50% + 20px);
  }
  
  @media (max-width: 768px) {
    .module-bottom-boxes-item.double .disp_flex {
        display: block;
    }
    .module-bottom-boxes-item.double .disp_flex>div {
        width: 100% !important;
    }
    .module-bottom-boxes-item.double .disp_flex>div:last-child {
        height: 300px;
    }
  }
  
  .module-bottom-boxes h2 {
    font-size: 12px;
    font-weight: 700;
    position: relative;
    padding-bottom: 24px;
    margin-bottom: 40px;
    letter-spacing: 0.12em;
  }
  
  .module-bottom-boxes .module-panel-footer-container h2 {
    font-size: 21px;
  }
  
  .module-bottom-boxes-item>div {
    height: 100%;
    margin: 0 20px;
  }
  
  .module-bottom-boxes-item>div .disp_table {
    height: 100%;
  }
  
  .module-bottom-boxes-item .border-and-padding {
    padding: 60px 55px;
    border: 1px solid #D22630;
  }
  
  .module-bottom-boxes h2:after {
    content: "";
    width: 40px;
    height: 1px;
    background-color: #1D252D;
    position: absolute;
    bottom: 0;
    left: 0;
  }
  
  .module-bottom-boxes .module-panel-footer-container h2:after {
    background-color: #fff;
  }
  
  .module-panel-footer-item+.module-panel-footer-item {
    margin-top: 60px;
  }
  
  .module-bottom-boxes-item .button {
    margin-top: 60px;
  }
  
  @media (max-width: 1160px) {
    .module-bottom-boxes {
        padding: 0 30px;
    }
  }
  
  @media (max-width: 1024px) {
    .module-bottom-boxes-item .border-and-padding {
        padding: 40px 30px;
    }
  }
  
  @media (max-width: 1023px) {
    .module-bottom-boxes-row {
        display: block;
    }
    .module-bottom-boxes-item+.module-bottom-boxes-item {
        margin-left: 0;
        margin-top: 40px;
    }
  }
  
  .module-annual-footer .module_title {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    line-height: 24px;
    margin-top: 40px;
    margin-bottom: 15px;
    text-transform: none;
  }
  
  .module-annual-footer .module_cover img, .module-annual-home .module_cover img {
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.4);
  }
  
  .module-quarterly-footer .module_links>div {
    position: relative;
    padding: 20px 0;
    border-bottom: 1px solid #D0D3D4;
  }
  
  .module-quarterly-footer .module_links .module_link {
    position: static;
    margin-bottom: 0;
    font-weight: 400;
    text-transform: none;
    font-size: 14px;
    letter-spacing: 0;
  }
  
  .module-quarterly-footer .module_links .module_link:after {
    display: none;
  }
  
  .module-quarterly-footer .module_links .module_link:before {
    position: absolute;
    top: 23px;
    right: 0;
  }
  
  .module-quarterly-footer .module_link:before, .module-financial-mashup_documents .module_link:before {
    content: "\e90c";
    font-size: 8px;
  }
  
  .module-quicklinks-footer li {
    border-bottom: 1px solid #D0D3D4;
  }
  
  .module-quicklinks-footer li {
    padding: 19px 20px 19px 0;
    position: relative;
  }
  
  .module-quicklinks-footer li a {
    color: #D22630;
    font-size: 14px;
    line-height: 1;
    border: none;
    font-weight: 400;
  }
  
  .module-quicklinks-footer li a:after {
    content: "\e90c";
    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;
    right: 0;
    top: 25px;
    font-size: 8px;
  }
  
  .module-quicklinks-footer li a[href$=".pdf"]:after {
    content: "\ef3e";
    font-size: 14px;
  }
  
  .module-quicklinks-footer li a:hover {
    color: #1d252d;
  }
  
  .module-quicklinks-footer li a:hover:after {
    color: #D22630;
  }
  
  .module-news-footer .module_headline {
    padding-right: 20px;
  }
  
  .module-news-footer .module_headline-link:after, .module-presentation-footer .module_headline-link:after {
    content: "\e90c";
    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;
    right: 0;
    top: 10px;
    font-size: 8px;
  }
  
  .module-presentation-footer .module_headline {
    padding-right: 20px;
  }
  
  .module-contact-footer .module_headline {
    padding: 19px 20px 19px 0;
    position: relative;
    border-bottom: 1px solid #d0d3d4;
  }
  
  .module-contact-footer .module_headline-link:after {
    content: "\e90c";
    position: absolute;
    right: 0;
    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;
    top: 25px;
    font-size: 8px;
  }
  
  .module-contact-footer h3 {
    color: #1d252d;
  }
  
  .module-contact-footer p {
    margin-top: 0;
  }
  
  .module-pannel-footer {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 30px 25px;
    min-height: 600px;
    background-color: #d0d3d4;
  }
  
  .module-pannel-footer.about_us {
    background-image: url(../images/about_us/cta-history.jpg);
  }
  
  .module-pannel-footer.investors {
    background-image: url(../images/diclosure_centre/cta-investors.jpg);
    background-repeat: no-repeat;
  }
  
  @media (max-width: 1260px) {
    .module-pannel-footer.investors {
        background-position: 50% 100%;
        background-size: 125%;
    }
  }
  
  @media (max-width: 1140px) {
    .module-pannel-footer.investors {
        background-size: 145%;
    }
  }
  
  @media (max-width: 1023px) {
    .module-pannel-footer.investors {
        background-size: cover;
        background-position: 50% 25%
    }
  }
  
  @media (max-width: 480px) {
    .module-pannel-footer.investors {
        background-size: 120%;
        background-position: 50% 75%
    }
  }
  
  @media (max-width: 430px) {
    .module-pannel-footer.investors {
        background-size: 130%;
    }
  }
  
  @media (max-width: 385px) {
    .module-pannel-footer.investors {
        background-size: 145%;
        background-position: 50% 100%
    }
  }
  
  .module-pannel-footer.sustainability {
    background-image: url(../images/diclosure_centre/cta-sustainability.jpg);
  }
  
  @media (max-width: 768px) {
    .module-pannel-footer.sustainability {
        background-position: 50% 35%;
    }
  }
  
  @media (max-width: 1023px) {
    .module-pannel-footer.sustainability {
        background-position: 50% 25%;
    }
  }
  
  .module-pannel-footer.case_study {
    background-image: url(../images/careers/careers_case-study.jpg);
  }
  
  .module-pannel-footer.disclosure_centre {
    background-image: url(../images/investor/cta-disclosure-centre.jpg);
    background-position-y: top;
  }
  
  .module-pannel-footer.optimize-performance {
    background-image: url(../images/sustainability/cta-cs-optimize-performance.jpg);
  }
  
  .module-bottom-boxes-item.double .background-box-1 {
    background-image: url(../images/sustainability/sustainability_Lalor_Jumbo.jpg);
    background-size: cover;
    background-position: center;
  }
  
  .module-pannel-footer.why_copper {
    background-image: url(../images/careers/cta-why-copper.jpg);
  }
  
  .module-pannel-footer.careers-case_study {
    background-image: url(../images/careers/cta-cs-all-female-mine-rescue-team.jpg);
  }
  
  .module-pannel-footer.governance {
    background-image: url(../images/diclosure_centre/cta-governance.jpg);
  }
  .module-pannel-footer.careers {
    background-image: url(../images/why_hudbay/careers-footer-cta.jpg);
  }
  @media (max-width: 1430px) {
    .module-pannel-footer.careers {
        background-position: 30% 100%;
        background-size: 140%;
    }
  }
  @media (max-width: 1280px) {
    .module-pannel-footer.careers {
        background-size: 160%;
    }
  }
  @media (max-width: 1115px) {
    .module-pannel-footer.careers {
        background-size: 180%;
    }
  }
  @media (max-width: 1023px) {
    .module-pannel-footer.careers {
        background-position: 30% 45%;
        background-size: cover;
    }
  }
  @media (max-width: 525px) {
    .module-pannel-footer.careers {
        background-position: 30% 100%;
    }
  }
  @media (max-width: 480px) {
    .module-pannel-footer.careers {
        background-size:130%;
    }
  }
  @media (max-width: 426px) {
    .module-pannel-footer.careers {
        background-size:150%;
    }
  }
  @media (max-width: 400px) {
    .module-pannel-footer.careers {
        background-size:165%;
    }
  }
  @media (max-width: 375px) {
    .module-pannel-footer.careers {
        background-size:183%;
    }
  }
  @media (max-width: 375px) {
    .module-pannel-footer.careers {
        background-size:183%;
    }
  }
  
  @media (max-width: 1140px) {
    .module-pannel-footer.governance {
        background-position: 30% 100%;
        background-size: 140%;
    }
  }
  
  @media (max-width: 1090px) {
    .module-pannel-footer.governance {
        background-position: 30% 100%;
        background-size: 155%;
    }
  }
  
  @media (max-width: 1023px) {
    .module-pannel-footer.governance {
        background-position: 30% 25%;
        background-size: cover;
    }
  }
  
  @media (max-width: 480px) {
    .module-pannel-footer.governance {
        background-position: 30% 75%;
        background-size: 125%;
    }
  }
  
  @media (max-width: 430px) {
    .module-pannel-footer.governance {
        background-position: 30% 45%;
        background-size: 165%;
    }
  }
  
  @media (max-width: 385px) {
    .module-pannel-footer.governance {
        background-position: 30% 65%;
        background-size: 175%;
    }
  }
  
  .module-pannel-footer.ethics-and-human-rights {
    background-image: url(../images/sustainability/cta-ethics-and-human-rights.jpg);
    background-position: 50% 30%;
  }
  
  @media (max-width: 1225px) and (min-width: 1044px) {
    .module-pannel-footer.ethics-and-human-rights {
        background-position: 50% 50%;
        background-size: 190%;
    }
  }
  
  @media (max-width: 1043px) and (min-width: 1024px) {
    .module-pannel-footer.ethics-and-human-rights {
        background-position: 50% 70%;
        background-size: 190%;
    }
  }
  
  @media (max-width: 480px) {
    .module-pannel-footer.ethics-and-human-rights {
        background-position: 50% 50%;
        background-size: 130%;
    }
  }
  
  @media (max-width: 413px) {
    .module-pannel-footer.ethics-and-human-rights {
        background-position: 50% 100%;
        background-size: 150%;
    }
  }
  
  .module-pannel-footer-container {
    background-color: #fff;
    padding: 40px;
    position: absolute;
    bottom: 30px;
    left: 25px;
    right: 25px;
  }
  
  .module-pannel-footer h2 {
    font-size: 21px;
    letter-spacing: 0.015em;
  }
  
  .module-pannel-footer h2:after {
    background-color: #D22630;
  }
  
  .module-pannel-footer p {
    margin-bottom: 0;
  }
  
  .module-pannel-footer .button {
    margin-top: 30px;
  }
  
  @media (max-width: 1220px) and (min-width: 1024px) {
    .module-pannel-footer p {
        font-size: 1.5rem;
    }
  }
  
  .PageContactus .pane--banner {
    background-color: #edf1f2;
  }
  
  .module-corporate-information .module_container--inner {
    padding-top: 40px;
    border-top: 1px solid #d0d3d4;
  }
  
  .module-corporate-information h4 {
    color: #d22630;
  }
  
  .module-corporate-information h3 {
    color: #1d252d;
  }
  
  .module-corporate-information p {
    margin-top: 0;
    font-weight: 300;
    line-height: 28px;
  }
  
  .module-corporate-information_footer p {
    margin-bottom: 0;
  }
  
  .module-corporate-information_footer a {
    border: none;
  }
  
  .module-corporate-information .q4-icon_phone-square, .module-corporate-information .q4-icon_envelope-square {
    color: #d22630;
  }
  
  @media (max-width: 768px) {
    .mobile-margin-top {
        margin-top: 40px;
    }
  }
  
  @media (max-width: 480px) {
    .module-corporate-information .grid_col--2-of-3 h4 {
        margin-top: 40px;
    }
  }
  
  .module-gallery .module_container--widget {
    position: relative;
  }
  
  .module-gallery .module_container--inner {
    position: relative;
  }
  
  .module-gallery-photo_container {
    margin: 0 auto;
    text-align: center;
  }
  
  .module-gallery-photo_container .module-gallery-photo {
    display: none;
  }
  
  .module-gallery-item>div>div {
    vertical-align: top;
  }
  
  .module-gallery-description {
    background-color: #5b6770;
    color: #fff;
    display: none;
  }
  
  .module-gallery-photo-fancy {
    padding-bottom: 620px;
    background-size: cover;
    background-position: center;
    position: relative;
    margin-bottom: 108px;
  }
  
  .module-gallery-photo-fancy img {
    display: none;
  }
  
  .module-gallery-title {
    /* background-color: rgba(29, 37, 45, 0.5); */
    color: #fff;
    padding: 24px 40px;
    text-align: right;
    /* position: absolute; */
    bottom: 0;
    width: 100%;
    border-top: 1px solid #fff;
    left: 0;
  }
  
  .button-expand-container a {
    color: #D22630;
    text-transform: uppercase;
  }
  
  .button-expand-container {
    position: absolute;
    top: 620px;
    right: 0;
    padding: 45px 55px;
    z-index: 3;
  }
  
  .button-expand-container a span {
    font-size: 12px;
    font-weight: bold;
    vertical-align: middle;
    display: inline-block;
    color: #a2aaad;
    padding-bottom: 4px;
    padding-right: 10px;
  }
  
  .module-pager {
    padding: 45px 55px;
    font-size: 12px;
    font-weight: 700;
    color: #d22630;
    position: relative;
  }
  
  .module-gallery .module-pager {
    position: absolute;
    top: 620px;
    /* width: 100%; */
    left: 0;
  }
  
  .module-gallery-item {
    position: relative;
  }
  
  .module-gallery .slick-slider {
    padding: 0;
  }
  
  /* .module-gallery .slick-slide {
    opacity: 0;
  }
  .module-gallery .slick-slide.slick-last {
    opacity: 1;
  } */
  
  .module-gallery button.slick-prev {
    transform: rotate(180deg);
    top: -8px;
  }
  
  .module-gallery .slick-arrow.slick-disabled {
    color: #a2aaad;
    opacity: 1;
  }
  
  .module-gallery .slick-arrow:before {
    font-size: 18px;
  }
  
  .module-gallery .slick-dots li {
    display: none;
  }
  
  .module-gallery .slick-dots li.slick-active {
    display: inline-block;
  }
  
  .module-pager span {
    display: inline-block;
  }
  
  .module-pager-mesage ul.slick-dots {
    padding: 0;
    margin: 0;
  }
  
  span.module-pager-mesage-content {
    min-width: 100px;
  }
  
  span.module-pager-separator {
    color: #1d252d;
    padding: 0 5px;
  }
  
  .module-gallery .module_view-more {
    display: inline-block;
    padding: 0 35px;
    font-size: 0;
    vertical-align: middle;
    position: relative;
    margin-left: 50px;
  }
  
  .module-gallery .module_view-more span {
    cursor: pointer;
  }
  
  .module-gallery .pager-next:after, .module-gallery .pager-prev:after {
    content: "\e90c";
    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;
    font-size: 18px;
    display: inline-block;
    cursor: pointer;
  }
  
  .module-gallery-title-pop {
    padding: 20px;
    text-align: center;
    background-color: #212121;
    color: #fff;
  }
  
  .module-gallery .pager-prev:after {
    transform: rotate(180deg);
    top: -1px;
    position: relative;
    padding-left: 20px;
  }
  
  .module-gallery .pager-disabled:after {
    /* opacity: 0.4; */
    cursor: default;
    color: #a2aaad;
  }
  
  @media (max-width: 768px) {
    .module-gallery-photo-fancy {
        padding-bottom: 420px;
    }
    .module-gallery .module-pager {
        top: 420px;
    }
    .button-expand-container {
        top: 420px;
    }
  }
  
  @media (max-width: 640px) {
    .module-pager {
        padding: 30px 0;
    }
    span.button-expand-container {
        padding: 30px 0;
    }
    .module-gallery-photo-fancy {
        margin-bottom: 78px;
    }
  }
  
  .module-gallery-caption {
    position: absolute;
    bottom: 0;
    background-color: rgba(29, 37, 45, 0.8);
    color: #fff;
    width: 100%;
    left: 0;
  }
  
  .module-gallery-description-inner p {
    margin-top: 0;
    text-align: left;
  }
  
  @media (max-width: 1023px) {
    .module-gallery-description-inner {
        display: none;
    }
    .module-gallery-description {
        display: block;
    }
  }
  
  /* why copper */
  
  .module-why-copper p {
    font-size: 32px;
    font-size: 3.2rem;
    line-height: 1.125;
    font-weight: 300;
  }
  .module-why-hudbay p {
    margin-top: 0;
  }
  .module-why-hudbay h4, .module-mine-summary-intro-why-hudbay h4 {
    font-size: 21px;
    line-height: 1;
  }
  .module-why-hudbay h4:after {
    background-color: #D22630;
  }
  .module-why-hudbay a {
    font-weight: 700;
  }
  
  .module-why-copper-image-bg {
    background-size: cover;
  }
  
  .module-why-copper-image-bg.bg-1 {
    background-image: url(../images/why-copper/why-copper-1.jpg);
  }
  
  .module-why-copper-image-bg.bg-2 {
    background-image: url(../images/why-copper/why-copper-2.jpg);
  }
  
  .module-why-copper-image-bg.bg-3 {
    background-image: url(../images/why-copper/why-copper-3.jpg);
  }
  
  .module-why-copper-image-bg.bg-4 {
    background-image: url(../images/why-copper/why-copper-5.jpg);
  }
  
  .module-why-zinc-image-bg {
    background-image: url(../images/why-copper/why-copper-4.jpg);
  }
  
  .module-why-copper-table {
    font-size: 32px;
    font-weight: 700;
  }
  
  .module-why-copper-table .grid_col {
    border-bottom: 1px solid #d0d3d4;
    padding-bottom: 20px;
    padding-top: 20px;
    line-height: 1;
  }
  
  .module-why-copper .oversize {
    font-size: 104px;
    font-weight: 700;
    display: inline-block;
    vertical-align: middle;
  }
  
  .module-slider-why-copper .module_item {
    position: relative;
  }
  
  .module-slider-why-copper video {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateY(-20%);
  }
  
  .module-slider-reversed .module_item-wrap {
    position: relative;
    z-index: 10;
    direction: rtl;
  }
  
  .module-slider-reversed .module_item-wrap-content {
    direction: ltr;
  }
  
  .module-slider-reversed .slick-dots {
    text-align: left;
  }
  
  .module-slider-why-copper p {
    font-size: 32px;
    line-height: 1.125;
    margin: 0 !important;
  }
  
  @media (max-width: 1200px) {
    .module-slider-why-copper p {
        font-size: 30px;
        line-height: 1.125;
    }
  }
  
  @media (max-width: 480px) {
    .module-slider-why-copper video {
        transform: translateY(0);
    }
  }
  
  /* media centre  */
  
  .module-news-grid .module_container--outer {
    padding: 0 55px;
  }
  
  .module-news-grid .module_container--inner {
    position: relative;
  }
  
  .module-news-grid .module_options {
    position: absolute;
    top: 0;
    right: 0;
  }
  
  @media only screen and (max-width: 480px) {
    .module-news-grid .module_options {
        top: 45px;
    }
  }
  
  .module-news-grid .module_options .dropdown {
    color: #fff;
  }
  
  .module-news-grid .module_options .dropdown option {
    color: #D22630;
  }
  
  .module-news-grid .module_options .module_options-label {
    display: none;
  }
  
  .module-news-grid .module-item {
    margin-bottom: 50px;
  }
  
  .module-news-grid .module_thumbnail {
    padding-bottom: 60%;
    background-color: #d0d3d4;
    margin-bottom: 30px;
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.4);
    background-size: cover;
    background-position: center;
  }
  
  .module-news-grid .module_headline-link {
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    color: #fff;
  }
  
  .module-news-grid .module_view-more {
    display: block;
    padding: 25px 55px;
    font-size: 0;
    text-align: center;
    border-top: 1px solid;
    border-bottom: 1px solid;
  }
  
  .module-news-grid .module_view-more span {
    cursor: pointer;
  }
  
  .module-page-accordion.module-news-grid .module_view-more {
    padding-right: 0;
    padding-left: 0;
  }
  
  .module-news-grid .pager-disabled {
    display: none;
  }
  
  .module-news-grid .pager-prev:before {
    content: "View Less";
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
    cursor: pointer;
    vertical-align: middle;
  }
  
  .module-news-grid .pager-prev:after {
    padding: 10px;
    content: "\e911";
    right: 0;
    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;
    font-size: 24px;
    display: inline-block;
    cursor: pointer;
    vertical-align: middle;
  }
  
  .module-news-grid .pager-next:before {
    content: "View More";
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
    cursor: pointer;
    vertical-align: middle;
  }
  
  .module-news-grid .pager-next:after {
    padding: 10px;
    content: "\e912";
    right: 0;
    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;
    font-size: 24px;
    display: inline-block;
    cursor: pointer;
    vertical-align: middle;
  }
  
  .module-news-grid .pager-next {
    margin-left: 30px;
  }
  
  .module-news-grid .module_shortBody {
    margin-bottom: 20px;
  }
  
  .module-news-grid .module_tags span {
    display: inline-block;
    margin-right: 14px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
  }
  
  .module-news-grid .module_tags span:after {
    content: "";
    position: absolute;
    height: 1px;
    width: 100%;
    background-color: #1d252d;
    left: 0;
    bottom: -3px;
  }
  
  .module-news-grid .module_item-pop {
    display: none;
  }
  
  .module.module-news-fancy {
    max-width: 96%;
    width: 1100px;
  }
  
  .module-news-fancy .module_thumbnail {
    padding-bottom: 400px;
    background-color: #d0d3d4;
    background-position: center;
  }
  
  @media (max-width: 1160px) {
    .module-news-grid .module_container--outer {
        padding: 0 30px;
    }
  }
  
  .module-news-widget .module_container--outer {
    padding: 0 55px;
  }
  
  .module-news .module_container--inner {
    position: relative;
  }
  
  .module-news-widget .module_options {
    position: absolute;
    top: 0;
    right: 0;
  }
  
  .module-news-widget .module-news-container {
    border: 1px solid #d1d3d4;
    display: flex;
  }
  
  .module-news-widget .module_item .module_item-inner {
    cursor: pointer;
    border-top: none;
    padding: 40px;
  }
  
  .module-news .module-news-items .module_headline {
    padding-right: 20px;
    font-size: 14px;
    color: #d22630;
    line-height: 21px;
  }
  
  .module-news .module-news-items .module_headline:after {
    content: "\e90c";
    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;
    right: 0;
    top: 10px;
    font-size: 8px;
  }
  
  .module-news-widget .module_body {
    display: none;
  }
  
  .module-news_body .module_headline {
    font-size: 32px;
  }
  
  .module-news_body .module_view-all-link {
    display: block;
    margin-bottom: 25px;
  }
  
  .module-news_body .module_view-all-link--bottom {
    margin-top: 25px;
    margin-bottom: 0;
  }
  
  .module-news.module.module--title-borders.module--thin .module_container--inner {
    padding-top: 0;
  }
  
  .module-news-widget .module-news_fullbody-wrapper {
    width: 75%;
  }
  
  .module-news-widget .clearfix {
    position: relative;
  }
  
  .module-news-widget .module-news-items {
    position: relative;
    width: 25%;
    overflow-x: hidden;
    overflow-y: auto;
    border-right: 1px solid #d1d3d4;
    padding-bottom: 116px;
  }
  
  .module-news-widget .module-news_fullbody, .module-news-widget .module-news_fullbody-wrapper {
    position: relative;
  }
  
  .module-news_fullbody .module_headline {
    font-weight: 700;
  }
  
  .module-news-widget ul {
    list-style: none !important;
    padding: 0;
    margin: 0;
  }
  
  .module-news-widget .module-news-items:before {
    left: 100%;
  }
  
  .module-news-widget .module-news_fullbody-wrapper:before {
    left: 0%;
  }
  
  .module-news-details_category {
    display: none;
  }
  
  .module-news-widget .module_date-time {
    margin-bottom: 0;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
  }
  
  .module-news-widget .module_item {
    padding: 0;
    margin-top: -2px;
  }
  
  .module-news-widget .module_item[style="display: none;"]+.js--active {
    margin-top: 0;
  }
  
  .module-news-widget .module_item:first-child {
    margin-top: 0;
  }
  
  .module-news-widget .module_item.js--active .module_item-inner, .module-news-widget .module_item .module_item-inner:hover {
    background-color: #edf1f2;
    box-shadow: inset 0px 0px 0px 1px #d22630;
  }
  
  .module-news-widget .module-news_fullbody .module_date-time {
    color: #d22630;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 55px;
  }
  
  @media (max-width: 1160px) {
    .module-news-widget .module_container--outer {
        padding: 0 30px;
    }
    .module-news-widget .module_item .module_item-inner {
        padding: 30px 20px;
    }
  }
  
  .module-news-details .module_view-all-link--bottom {
    margin-top: 30px;
  }
  
  .module-news-details .module_view-all-link--top {
    margin-bottom: 30px;
  }
  
  .module-news-widget .module-pager {
    background-color: #edf1f2;
    position: absolute;
  /*   bottom: 0; */
    bottom: auto;
    width: 100%;
    padding: 45px 10px;
    text-align: center;
  }
  
  .module-news .pager-prev, .module-news .pager-next {
    font-size: 0;
  }
  
  .module-news .module-pager>span {
    vertical-align: middle;
    display: inline-block;
    cursor: pointer;
  }
  
  .module-news .pager-page {
    color: #1d252d;
    padding: 0 8px;
  }
  
  .module-news .pager-page.pager-active {
    color: #d22630;
  }
  
  .module-news .pager-next {
    padding-left: 20px;
  }
  
  .module-news .pager-disabled {
    color: #acb3b6;
  }
  
  @media screen and (max-width: 768px) {
    .module-news .module-news-items, .module-news .module-news_fullbody-wrapper {
        width: 100%;
    }
    .module-news .module-news-items {
        position: static;
    }
    .module-news-widget .clearfix {
        border-right: none;
    }
    .module-news .module-news_fullbody-wrapper {
        display: none !important;
    }
    .module-news-widget .js--active .module_body {
        display: block;
        padding: 30px 20px;
    }
    .module-news-widget .module_item .module_body .module_headline {
        font-size: 2.1rem;
        margin-bottom: 30px;
        line-height: 1.125;
        text-transform: uppercase;
        letter-spacing: 0.015px;
        font-weight: 700;
        color: #1D252D;
        position: relative;
        padding-bottom: 0;
        margin: 0;
        padding-right: 0;
    }
    .module-news .module_item .module_body .module_headline:after {
        display: none;
    }
    .module-news-widget .module_item .module_body .module_date-time {
        color: #d22630;
        margin-bottom: 30px;
    }
  }
  
  .module-case-study-details .module_view-all-link, .module-case-study-details .module_date-time {
    display: none;
  }
  .module-news-fancy .case-studies-detail-banner {
    display: none;
  }
  .module-case-study-details .module-details_title {
    font-size: 36px;
  }
  
  .q4default .gnw_news_media_box {
    display: inline-block;
    width: 23%;
  }
  
  .q4default .gnw_news_media_box~br {
    display: none;
  }
  
  @media (max-width: 1023px) {
    .q4default .gnw_news_media_box {
        width: 47%;
    }
  }
  
  @media (max-width: 620px) {
    .q4default .gnw_news_media_box {
        width: auto;
    }
  }
  
  .module-flickr-gallery .module_container--outer {
    padding: 0 55px;
  }
  
  .flickr_item-album-title {
    position: relative;
    font-size: 16px;
    color: #d22630;
    font-weight: 700;
    padding: 25px 40px 25px 0;
    border-bottom: 1px solid #d0d3d4;
    cursor: pointer;
  }
  
  .flickr_item-album-images {
    padding: 20px 0;
  }
  
  .flickr_title {
    padding: 10px 0;
    font-weight: 700;
    text-transform: uppercase;
    color: #d22630;
    font-size: 12px;
  }
  
  .flickr_item-album-images {
    padding: 40px 0 0 0;
    display: none;
  }
  
  .flickr_item-album-images.grid.js--revealed {
    display: block;
  }
  
  .flickr_item-album-title:after {
    content: "\e912";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    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;
    font-size: 25px;
    display: inline-block;
    cursor: pointer;
  }
  
  .flickr_item-album-title.js--active:after {
    content: "\e911";
  }
  
  .flickr_item {
    margin-bottom: 40px;
  }
  
  .flickr_image {
    padding-bottom: 60%;
    background-color: #d0d3d4;
    margin-bottom: 15px;
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.4);
    background-size: cover;
    background-position: center;
  }
  
  .flickr_link {
    cursor: pointer;
  }
  
  .flickr_item-inner {
    padding: 10px;
  }
  
  .flickr_item:hover .flickr_item-inner {
    padding: 9px;
    border: 1px solid #d22630;
  }
  
  .flickr_item-pop {
    display: none;
  }
  
  .flickr_item-pop {
    padding: 0 !important;
  }
  
  .flickr_item-pop_container {
    max-width: 1100px;
    padding: 0 !important;
  }
  
  .flickr_item-pop_container .flickr_image {
    padding: 0;
    /* margin: 0; */
    max-height: 800px;
    margin: 0 auto;
    display: block;
  }
  
  .flickr_item-pop_container .flickr_title {
    padding: 40px 60px;
  }
  
  @media (max-width: 1160px) {
    .module-flickr-gallery .module_container--outer {
        padding: 0 30px;
    }
  }
  
  .module-video-title {
    font-size: 12px;
    font-weight: 700;
    color: #d22630;
    text-transform: uppercase;
    padding: 35px 0;
    border-bottom: 1px solid #d0d3d4;
  }
  
  .module_body .module-video-large {
    padding: 30px 60px;
  }
  
  .module-video-gallery .module_container--outer {
    padding-left: 55px;
    padding-right: 55px;
  }
  
  .module-video-gallery .module-thumbnail {
    padding-bottom: 240px;
    background-size: cover;
    background-position: center;
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.4);
  }
  
  .module-video-gallery .module-video-details {
    padding-top: 35px;
  }
  
  .module-video-gallery .module_headline {
    font-size: 16px;
    font-weight: 700;
    color: #d22630;
  }
  
  .module-video-gallery .module_item-wrap {
    margin-bottom: 30px;
  }
  
  .module-video-iframe-container {
    position: relative;
    padding-bottom: 65%;
  }
  
  .module-video-iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  
  @media (max-width: 768px) {
    .module_body .module-video-large {
        padding: 20px 0;
    }
  }
  
  .module-governance-documents h3, .module-faq--disclosure h3 {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #1d252d;
    margin-bottom: 20px;
    letter-spacing: 0.12em;
  }
  
  .module-governance-documents .module_link {
    font-size: 14px;
    color: #1d252d;
    position: static;
    text-transform: none;
    font-weight: 400;
    letter-spacing: 0;
  }
  
  .module-governance-documents .module_item {
    border: none;
    padding: 10px 0;
  }
  
  .module-governance-documents+.module-governance-documents {
    padding-top: 30px;
    border-top: 1px solid #1d252d;
    margin-top: 30px;
  }
  
  .module-financial-current {
    padding-bottom: 50px;
    margin-bottom: 50px;
    border-bottom: 1px solid #d0d3d4;
  }
  
  .module-financial-current .module_title {
    color: #333333;
    margin-bottom: 20px;
    text-transform: none;
  }
  
  .module-financial-current-thumb {
    margin-bottom: 40px;
  }
  
  .module-financial-current-item:first-child img {
    /*box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.4);*/
    /*width: 305px;*/
  }
  
  .module-financial-current-list .module_links>div {
    padding: 20px 0;
    border-bottom: 1px solid #d0d3d4;
    position: relative;
  }
  
  .module-financial-current-list .module_link:after {
    display: none;
  }
  
  .module-financial-current-list .module_link {
    position: static;
    margin-bottom: 0;
    margin-right: 30px;
    color: #1d252d;
    text-transform: none;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0;
  }
  
  .module-financial-current-list .module_links {
    margin: 0;
  }
  
  .module-financial-current-list .module_link:before {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #D22630;
  }
  .module-annual-information {
    margin-top: 50px;
    
  }
  .module-annual-information h2{
    margin-bottom: 20px;
  }
  
  .module-guatemala-information {
    margin-top: 50px;
  }
  
  .module-guatemala-information h2 {
    margin-bottom: 20px;
  }
  @media (max-width: 1024px) and (min-width: 769px) {
    .module-financial-current-item ~ .module-financial-current-item {
        margin-top: 40px;
    }
  }
  @media (max-width: 480px) {
    .module-financial-current-item+.module-financial-current-item {
        margin-top: 50px;
    }
  }
  
  .module-quotes {
    width: 50%;
    float: right;
    padding: 30px;
    font-size: 32px;
  }
  
  .module-quotes-text {
    display: block;
  }
  
  @media (max-width: 640px) {
    .module-quotes {
        width: 100%;
        float: none;
    }
  }
  
  .module-page-accordion-trigger {
    display: none;
    padding: 20px 30px;
    color: #1d252d;
    font-weight: 700;
    text-transform: uppercase;
    background-color: #edf1f2;
    cursor: pointer;
    margin-left: -30px;
    margin-right: -30px;
  }
  
  .module-news-grid .module-page-accordion-trigger {
    background-color: #5b6770;
    color: #fff;
  }
  
  @media (max-width: 768px) {
    .module-page-accordion-trigger {
        display: block;
        position: relative;
        font-size: 0;
    }
    .module-page-accordion-trigger:before {
        content: "View More";
        font-size: 16px;
    }
    .module-page-accordion-trigger:after {
        content: "\e912";
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 30px;
        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;
        font-size: 25px;
        display: inline-block;
        cursor: pointer;
    }
    .module-page-accordion-trigger.js--active:before {
        content: "View Less";
    }
    .module-page-accordion-trigger.js--active:after {
        content: "\e911";
    }
    .module-page-accordion-panel {
        display: none;
    }
    .module-page-accordion-panel.js--revealed {
        display: block;
        padding-top: 40px;
        padding-bottom: 70px;
    }
    .module-page-accordion {
        padding-bottom: 0 !important;
    }
    .module-flickr-gallery.module-page-accordion {
        padding-bottom: 50px !important;
    }
  }
  
  /* .module-faq--disclosure .module-financial-table_body-row:nth-child(2) .module-financial-table_item--annual .module-financial-table_link {
    font-size: 18px;
  } */
  
  @media(max-width: 1160px) {
    .module-archive .module_container--outer {
        padding: 0 30px;
    }
  }
  
  .module-panel-communities, .module-panel-environment, .module-panel-air, .module-panel-water, .module-panel-health-safety, .module-panel-covid {
    max-height: 480px;
    overflow: hidden;
    position: relative;
  }
  
  .module-panel-communities {
    background-image: url('../images/sustainability/communities-panel.jpg');
    background-position: top center;
  }
  
  .module-panel-environment {
    background-image: url('../images/sustainability/environment-panel.jpg');
  }
  
  .module-panel-air {
    background-image: url('../images/sustainability/air-panel.jpg');
    background-position: 50% 50%;
  }
  
  .module-panel-water {
    background-image: url('../images/sustainability/water-panel.jpg');
    background-position: 50% 50%;
  }
  
  .module-panel-health-safety {
    background-image: url('../images/sustainability/health-safety-panel.jpg');
    background-position: 50% 50%;
  }
  
  .module-panel-communities .module_container--outer, .module-panel-environment .module_container--outer, .module-panel-air .module_container--outer, .module-panel-water .module_container--outer, .module-panel-health-safety .module_container--outer,  .module-panel-covid  .module_container--outer {
    padding-top: 33%;
  }
  
  .module-panel-caption {
    background-color: rgba(29, 37, 45, .65);
    border-top: 1px solid #fff;
    position: absolute;
    z-index: 2;
    left: 0;
    right: 0;
    bottom: 0;
    color: #fff;
    text-align: right;
    font-size: 14px;
    font-size: 1.4rem;
    padding: 21px 40px;
  }
  
  .module-inner-banner {
    background-size: cover;
  }
  
  .module-panel-governance {
    background-image: url(../images/about_us/panel-governance.jpg);
    background-position: 50%;
  }
  
  .module-panel-community {
    background-image: url(../images/us/panel-us-community.jpg);
  }
  
  .module-panel-us-water {
    background-image: url(../images/us/panel-us-water.jpg);
  }
  
  .module-panel-us-environment {
    background-image: url(../images/us/panel-us-environment.jpg);
  }
  
  .module-panel-economic-impact {
    background-image: url(../images/us/panel-us-economic-impact.jpg);
    background-position: 50% 50%;
  }
  
  .module-inner-banner .module_container--outer {
    padding-bottom: 30% !important;
  }
  
  .module-downloads-accordion-item {
    border-bottom: 1px solid #d0d3d4;
  }
  
  .module-downloads-accordion-title {
    position: relative;
    font-size: 16px;
    color: #d22630;
    font-weight: 700;
    padding: 25px 55px 25px 0;
    cursor: pointer;
  }
  
  .module-downloads-accordion-title:after {
    content: "\e912";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 25px;
    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;
    font-size: 25px;
    display: inline-block;
    cursor: pointer;
  }
  
  .module-downloads-accordion-item.js--active .module-downloads-accordion-title:after {
    content: "\e911";
  }
  
  .module-downloads-accordion-item .module_container--content {
    padding-bottom: 30px;
  }
  
  .module-inner-video .module_container--inner {
    position: relative;
    padding-bottom: 35%;
  }
  
  .module-inner-video video {
    position: absolute;
    top: 0;
    left: 0;
    /* min-width: 100%; */
    /* min-height: 100%; */
    /* width: auto; */
    /* height: auto; */
    object-fit: contain;
    width: 100%;
    height: 100%;
  }
  
  .no-page-title .module-page-title {
    display: none;
  }
  
  .page-history .pane--banner {
    padding-top: 45px;
  }
  
  .page-history .pane--banner .pane_inner {
    max-width: none;
    padding: 0;
  }
  
  .page-history .module-inner-video {
    overflow: hidden;
  }
  
  .page-history .module-inner-video video {
    object-fit: cover;
  }
  
  .module-border-top {
    border-top: 2px solid #d0d3d4;
  }
  
  /* history page */
  
  .disp_flex-history {
    display: flex;
  }
  
  @media (max-width: 768px) {
    .disp_flex-history {
        display: block;
    }
    .disp_flex-history>div {
        width: 100%;
    }
  }
  
  .item-text {
    padding: 65px 55px !important;
  }
  
  .bc-red {
    background-color: #d22630;
    color: #fff;
  }
  
  .bc-light-grey {
    background-color: #edf1f2;
  }
  
  .bc-medium-grey {
    background-color: #a2aaad;
  }
  
  .bc-dark-grey {
    background-color: #5b6770;
    color: #fff;
  }
  
  .item-text p {
    font-size: 14px;
  }
  
  .item-full-height {
    height: 100%;
    overflow: hidden;
  }
  .bc-red h4:after, .bc-medium-grey h4:after, .bc-dark-grey h4:after {
    background-color: #fff;
  }
  /* .item-photo.placeholder {
    background-color: #ed0088;
  } */
  
  .fix-height-2008 {
    height: 350px;
  }
  
  .fix-height-2003 {
    height: 275px;
  }
  
  .fix-height-1982 {
    height: 320px;
  }
  
  .fix-height-1974 {
    height: 335px;
  }
  
  .fix-height-1964 {
    height: 330px;
  }
  
  .fix-height-1955 {
    height: 320px;
  }
  
  .fix-height-1938 {
    height: 250px;
  }
  .fix-height-1942 {
    height: 230px;
  }
  
  @media (min-width: 1025px) {
    .fix-height-1925 {
        height: 310px;
    }
  }
  
  .item-photo {
    background-size: cover;
    background-position: center;
  }
  
  .img1--2018 {
    background-image: url(../images/history/img1-2018.jpg);
  }
  
  .img2--2018 {
    background-image: url(../images/history/img2-2018.jpg);
  }
  
  .img1--2015 {
    background-image: url(../images/history/img1-2015.jpg);
  }
  
  .img1--2014 {
    background-image: url(../images/history/img1-2014.jpg);
  }
  
  .img2--2014 {
    background-image: url(../images/history/img2-2014.jpg);
  }
  
  .img3--2014 {
    background-image: url(../images/history/img3-2014.jpg);
  }
  
  .img4--2014 {
    background-image: url(../images/history/img4-2014.jpg);
  }
  
  .img1--2011 {
    background-image: url(../images/history/img1-2011.jpg);
  }
  
  .img2--2011 {
    background-image: url(../images/history/img2-2011.jpg);
  }
  
  .img3--2011 {
    background-image: url(../images/history/img3-2011.jpg);
  }
  
  .img1--2010 {
    background-image: url(../images/history/img1-2010.jpg);
  }
  
  .img2--2008 {
    background-image: url(../images/history/img2-2008.jpg);
  }
  
  .img1--2009 {
    background-image: url(../images/history/img1-2009.jpg);
  }
  
  .img1--2008 {
    background-image: url(../images/history/img1-2008.png);
    background-size: 75%;
    background-repeat: no-repeat;
    background-color: #d0d3d4;
  }
  
  .img1--2007 {
    background-image: url(../images/history/img1-2007.jpg);
  }
  
  .img1--2004 {
    background-image: url(../images/history/img1-2004.jpg);
  }
  
  .img2--2004 {
    background-image: url(../images/history/img2-2004.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    background-color: #d0d3d4;
  }
  
  .img3--2004 {
    background-image: url(../images/history/img3-2004.jpg);
  }
  
  .img4--2004 {
    background-image: url(../images/history/img4-2004.jpg);
  }
  
  .img1--2003 {
    background-image: url(../images/history/img1-2003.jpg);
  }
  
  .img1--2001 {
    background-image: url(../images/history/img1-2001.jpg);
  }
  
  .img1--1999 {
    background-image: url(../images/history/img1-1999.jpg);
  }
  
  .img1--1993 {
    background-image: url(../images/history/img1-1993.jpg);
  }
  
  .img1--1992 {
    background-image: url(../images/history/img1-1992.jpg);
  }
  
  .img2--1992 {
    background-image: url(../images/history/img2-1992.jpg);
  }
  
  .img1--1987 {
    background-image: url(../images/history/img1-1987.jpg);
  }
  
  .img1--1982 {
    background-image: url(../images/history/img1-1982.jpg);
  }
  
  .img1--1979 {
    background-image: url(../images/history/img1-1979.jpg);
  }
  
  .img1--1974 {
    background-image: url(../images/history/img1-1974.jpg);
  }
  
  .img1--1970 {
    background-image: url(../images/history/img1-1970.jpg);
  }
  
  .img1--1968 {
    background-image: url(../images/history/img1-1968.jpg);
  }
  
  .img1--1964 {
    background-image: url(../images/history/img1-1964.jpg);
  }
  
  .img1--1961 {
    background-color: #edf1f2;
    background-image: url(../images/history/img1-1961.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
  
  .img1--1958 {
    background-image: url(../images/history/img1-1958.jpg);
  }
  
  .img1--1955 {
    background-image: url(../images/history/img1-1955.jpg);
  }
  
  .img1--1947 {
    background-image: url(../images/history/img1-1947.png);
    background-color: #edf1f2;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center; 
  }
  .img1--194- {
    background-image: url(../images/history/img1-194.png);
    background-color: #d0d3d4;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center; 
  }
  .img1--1942 {
    background-image: url(../images/history/img1-1942.jpg);
  }
  .img2--1942 {
    background-image: url(../images/history/img2-1942.jpg);
  }
  
  .img1--1939 {
    background-image: url(../images/history/img1-1939.jpg);
  }
  
  .img1--1938 {
    background-image: url(../images/history/img1-1938.jpg);
  }
  
  .img1--1930 {
    background-image: url(../images/history/img1-1930.jpg);
  }
  
  .img1--1927 {
    background-image: url(../images/history/img1-1927.jpg);
  }
  
  .img1--1925 {
    background-image: url(../images/history/img1-1925.jpg);
  }
  
  .img1--1915 {
    background-image: url(../images/history/img1-1915.jpg);
  }
  
  @media (max-width: 1024px) {
    .lc-height {
        height: 350px !important;
    }
    .item-text {
        padding: 35px 25px !important;
    }
  }
  
  @media (max-width: 768px) {
    .item-photo {
        height: 350px !important;
        background-position: center;
    }
  }
  
  .module-history-item .module_container--inner {
    display: none;
  }
  
  .module-history-item .module_container--inner.js--revealed {
    display: block;
  }
  
  .module-history-item .module_title:after {
    display: none;
  }
  
  .module-history-item .module_title {
    padding: 0;
    margin: 0;
    color: #d22630;
    font-size: 16px;
    font-weight: 700;
    padding: 25px 0;
    border-bottom: 1px solid #d0d3d4;
    text-transform: none;
    cursor: pointer;
  }
  
  .module-history-item .module_title:before {
    content: "\e912";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    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;
    font-size: 25px;
    display: inline-block;
    cursor: pointer;
  }
  
  .module-history-item .module_title.js--active:before {
    content: "\e911";
  }
  
  @media (max-width: 768px) {
    .module-history-item .grid--flex_column-reverse {
        flex-direction: column;
    }
  }
  
  /* career video */
  
  .module-inner-video-careers {
    height: 600px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  
  .module-inner-video-careers video {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    width: 100%;
  }
  
  @media (max-width: 1750px) {
    .module-inner-video-careers {
        height: auto;
        padding-bottom: 35% !important;
    }
  }
  
  .module-pop-up-spanish {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.85);
    top: 0;
    left: 0;
    overflow: auto;
  }
  
  .module-pop-up-spanish .module_container--outer {
    padding-top: 12%;
  }
  
  .module-pop-up-spanish .module_container--inner {
    max-width: 1300px;
    width: 90%;
    background-color: #fff;
    margin: 0 auto;
  }
  
  .module-pop-up_container {
    padding: 70px 80px 60px;
    position: relative;
  }
  
  .module-pop-up_close {
    position: absolute;
    top: 25px;
    right: 25px;
    cursor: pointer;
  }
  
  .module-pop-up_close .q4-icon_icon-close {
    font-size: 27px;
    color: #D22630;
  }
  
  .module-pop-up_image {
    background-image: url(../images/peru/Hudbay_Peru-popup.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    height: 130px;
    margin-bottom: 60px;
  }
  
  .module-pop-up_container h2 {
    font-size: 36px;
    max-width: 800px;
    margin: 0 auto 50px;
  }
  
  .module-pop-up_container h2:after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .module-pop-up_container a {
    font-size: 21px;
    color: #d22630;
    border: none;
    font-weight: bold;
    text-transform: uppercase;
  }
  
  .module-pop-up_continue {
    padding: 15px;
    background-color: #d22630;
    text-align: center;
  }
  
  .module-pop-up_continue a {
    color: #fff;
    border: none;
    font-size: 21px;
    text-transform: uppercase;
    font-weight: bold;
    display: inline-block;
    padding: 10px;
    letter-spacing: 0;
  }
  @media  (max-width: 600px) { 
  .module-pop-up_container { 
    padding:65px 35px; 
  } 
  .module-pop-up_image { 
    margin-bottom:35px; 
    height:60px; 
  } 
  .module-pop-up_container h2 { 
    font-size:24px; 
    margin: 0 auto 35px; 
  } 
  .module-pop-up_container a { 
    font-size:18px; 
  } 
  }
  
  .peru-page {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  
  .investors-inner-banner {
    padding: 60px 15px;
    text-align: center;
    background-color: #d0d3d4;
  }
  
  .module-slider-content .slick-arrow {
    background-color: #fff;
    color: #d5343e;
    padding: 20px 15px;
    transition: all .2s ease-in-out;
  }
  
  .module-slider-content .slick-arrow:hover {
    background-color: #d5343e;
    color: #fff;
  }
  
  .module-slider-content .slick-arrow:before {
    font-size: 20px;
  }
  
  .module-slider-content .slick-prev:before {
    transform: rotate(180deg);
    position: relative;
    display: inline-block;
  }
  
  .module-slider-content .slick-next {
    right: -60px;
  }
  
  .module-slider-content .slick-prev {
    left: -60px;
  }
  
  .module-slider-content:hover .slick-next {
    right: 0;
  }
  
  .module-slider-content:hover .slick-prev {
    left: 0;
  }
  
  .pane--content .module-subpage_inner-video .module_container.module_container--outer {
    padding-bottom: 0;
    border-bottom: none;
  }
  
  .module-home-slider iframe, .module-home-slider {
    height: 591px;
  }
  
  @media screen and (max-width: 767px) {
    .module-home-slider iframe, .module-home-slider {
        height: calc(100vh - 50px);
    }
  }
  
  .module-proximamente {
    border: 1px solid #d22630;
    padding: 45px 55px;
    margin-top: 20px;
    background-color: #fff;
  }
  
  .module-proximamente .module-pop-up_image {
    margin-bottom: 0px;
  }
  
  .module-proximamente h2 {
    font-size: 21px;
    margin-bottom: 0;
  }
  
  .module-proximamente h2:after {
    display: none;
  }
  
  .module-proximamente a {
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    color: #d22630;
    border: none;
  }
  @media (max-width: 900px) {
    .module-proximamente {
        padding: 40px 30px;
    }
  }
  
  /* contact us tabs */
  .module-tabs-container {
    border-bottom: 1px solid #d0d3d4;
  }
  span.module-tabs-trigger {
    font-size: 16px;
    font-weight: bold;
    padding: 10px 20px;
    display: inline-block;
    border-bottom: 1px solid #d0d3d4;
    border-right: 1px solid #d0d3d4;
    position: relative;
    bottom: -1px;
    cursor: pointer;
  }
  span.module-tabs-trigger ~ span.module-tabs-trigger {
    margin-left: -4px;
  }
  span.module-tabs-trigger.js--active {
    border-bottom: 1px solid #edf1f2;
    cursor: default;
    color: #d22630;
  }
  .tab {
    display: none;
  }
  .tab.js--active {
    display: block;
  }
  .tab iframe {
    height: 670px;
  }
  @media (max-width: 900px) {
    span.module-tabs-trigger {
        padding: 10px;
        font-size: 14px;
    }
  }
  @media (max-width: 480px) {
    .tab iframe {
        height: 854px;
    }
    span.module-tabs-trigger {
        display: block;
        border-right: none;
        margin: 0 !important;    
    }
  }
  
  /* why hudbay */
  .why-hudbay-small-bg {
    background-size: cover;
    background-position: center;
  }
  .why-hudbay-small-bg.bg-1 {
    background-image: url(../images/why_hudbay/why-hudbay-small-bg1.jpg);
  }
  .why-hudbay-small-bg.bg-2 {
    background-image: url(../images/why_hudbay/why-hudbay-small-bg2.jpg);
  }
  .why-hudbay-small-bg.bg-3 {
    background-image: url(../images/why_hudbay/why-hudbay-small-bg3.jpg);
  }
  .why-hudbay-small-bg.bg-4 {
    background-image: url(../images/why_hudbay/why-hudbay-small-bg4.jpg);
  }
  @media (max-width: 768px) {
    .why-hudbay-small-bg.bg-4 {
        background-position: 50% 25%;
    }
  }
  .why-hudbay-small-bg.bg-5 {
    background-image: url(../images/why_hudbay/why-hudbay-small-bg5.jpg);
  }
  .module-annual-footer-why-hudbay {
    margin-top: 20px;
  }
  .module-annual-footer-why-hudbay .module_cover {
    max-width: 260px;
  }
  .module-annual-footer-why-hudbay .module_title {
    margin-top: 20px;
  }
  .module-mine-summary-intro-why-hudbay .module-mine-summary-description {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 30px;
    display: block;
  }
  .module-mine-summary-intro-why-hudbay .button {
    margin-top: 25px;
  }
  .module-pannel-footer.careers a {
    font-weight: bold;
    border-bottom: 1px solid;
  }
  @media (max-width: 768px) {
    .why-hudbay-small-bg.bg-3 {
        min-height: 300px;
    }
  }
  
  /* modules animation*/
  
  .module-stock-quote, .module-slider-content {
    min-height: 450px;
  }
  
  .module-person-fancy {
    min-height: 700px;
  }
  
  .to-animate {
    visibility: hidden;
  }
  
  .to-animate.visible {
    visibility: visible;
  }
  
  @media (min-width: 769px) {
    .module-person-fancy .module-person-fancy_person:nth-child(2n-1) {
        animation-delay: 0.6s;
    }
    .module-person-fancy .module-person-fancy_person:nth-child(2n) {
        animation-delay: 0.8s;
    }
    .module-person-fancy .module-person-fancy_person:nth-child(3) {
        animation-delay: 1s;
    }
    .module-person-fancy .module-person-fancy_person:nth-child(4) {
        animation-delay: 1.2s;
    }
  }
  
  @media (min-width: 1201px) {
    .module-person-fancy .module-person-fancy_person:nth-child(3n-2) {
        animation-delay: 0.6s;
    }
    .module-person-fancy .module-person-fancy_person:nth-child(3n-1) {
        animation-delay: 0.8s;
    }
    .module-person-fancy .module-person-fancy_person:nth-child(3n) {
        animation-delay: 1s;
    }
    .module-person-fancy .module-person-fancy_person:nth-child(4) {
        animation-delay: 1.2s;
    }
    .module-person-fancy .module-person-fancy_person:nth-child(5) {
        animation-delay: 1.4s;
    }
    .module-person-fancy .module-person-fancy_person:nth-child(6) {
        animation-delay: 1.6s;
    }
  }
  
  .visible {
    -webkit-animation-duration: .6s;
    animation-duration: .6s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
    -webkit-animation-delay: .4s;
    animation-delay: .4s;
    -webkit-animation-timing-function: cubic-bezier(0, 0, .19, 1);
    animation-timing-function: cubic-bezier(0, 0, .19, 1);
  }
  
  @media (min-width: 769px) {
    .anim-delay {
        animation-delay: 0.6s;
    }
    .anim-delay2 {
        animation-delay: .8s;
    }
    .anim-delay3 {
        animation-delay: 1s;
    }
  }
  
  @keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 50px, 0);
        transform: translate3d(0, 50px, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
  }
  
  /* end modules animation*/
  
  /*# sourceMappingURL=global.css.map */
  
  @keyframes shake {
    /* 10%, 90% {
        transform: translate3d(-1px, 0, 0);
    }
  
    20%, 80% {
        transform: translate3d(2px, 0, 0);
    }
  
    30%, 50%, 70% {
        transform: translate3d(-4px, 0, 0);
    }
  
    40%, 60% {
        transform: translate3d(4px, 0, 0);
    } */
  }
  
  @keyframes scrolll {
    from {
        transform: translateX(0px);
    }
    to {
        transform: translateX(-20px);
    }
  }
  
  @-webkit-keyframes scroll {
    from {
        transform: translateX(-20px);
    }
    to {
        transform: translateX(0px);
    }
  }
  
  @keyframes check {
    10% {
        transform: scale(1.4);
    }
    20% {
        transform: scale(1.5);
    }
    30% {
        transform: scale(1.6);
    }
    40% {
        transform: scale(1.7);
    }
    50% {
        transform: scale(1.8);
    }
    60% {
        transform: scale(1.7);
    }
    70% {
        transform: scale(1.6);
    }
    80% {
        transform: scale(1.5);
    }
    90% {
        transform: scale(1.4);
    }
    100% {
        transform: scale(1.1);
    }
  }
  
  
  .module-faq--disclosure .module-financial-table_body-row:nth-child(2) .module-financial-table_item--annual .module-financial-table_link.CSR-link {
    font-size: 13px;
  }
  
  /* .module-faq--disclosure .module-financial-table_body-row .module-financial-table_item--estma .module-financial-table_link {
    font-size: 18px;
  } */
  .module-news.module-news-widget .module_container--outer {
      padding: 0;
  }
  .module-news.module-news-widget .module_container--inner .module_red-bar {
      background-color: #D22630;
      margin-bottom: 0px;
      position: relative;
  }
  .module-news.module-news-widget .module_container--inner .module_red-bar h2 {
      color: #fff;
      margin: 0;
      padding: 50px 0px 50px 18px;
  }
  .module-news.module-news-widget .module_container--inner .module_red-bar h2:after {
      display: none;
  }
  .module-news.module-news-widget select {
      color: #fff;
      border-bottom-color: #fff;
      background-color: #D22630;
      background: transparent url('../design/svg/icon-Dropdown_Arrow-white-sm.svg') no-repeat right 0 center;
      margin-top: 25px;
  }
  .module-news.module-news-widget select option {
      background-color: #D22630;
  }
  @media screen and (max-width: 768px) {
      .module-news.module-news-widget .module_container--inner .module_red-bar h2 {
          padding: 20px 1px;
      } 
      .module-news.module-news-widget select {
          margin-top: 5px;
      }
  }
  
  .module-panel-covid {
    background-image: url('../images/covid/covid-business-update-image.jpg');
    background-position: 50% 36%;
  }
  
  /* Ticket #289435 */
  
  .pane--content .module--thin-top .rosemont-chart{
    padding-top: 0px;
  }
  /*292271*/
  .module-event-details .ModuleLocation{
    font-size: 1.6rem;
    line-height: 1.125;
    color: #D22630;
    font-weight: 700;
  }
  .module-event-upcoming .module_location-text{
    color: #D22630;
    font-size: 14px;
    font-weight: 400;
  }
  
  .indexes {
      text-transform: none;
      font-size: 15px;
      font-weight: 400;
      letter-spacing: 0;
      color: #1d252d;
  }
  .link-container {
      float:right;
  }
  
   .indexes--pdf:before{
      font-family: "q4-icons";
        color:#D22630;
      padding:2px;
    content: "\ef3e";
  }
  
   .indexes--xls:before{
       font-family: "q4-icons";
      color:#D22630;
      padding:2px;
      content: "\ef41";
  }
  
  .fin-container {
      margin:5px;
  }
  .index-link {
      display: inline-block;
      vertical-align: middle;
      margin: 0 5px 5px 0px;  
      font-size: 1.2rem;
      font-weight: bold;
      text-transform: uppercase;
      color: #D22630;
      position: relative;
      padding-bottom: 3px;
      cursor: pointer;
      /* letter-spacing: .12em; */
      letter-spacing: 0;
  }
  
  .index-link:after{
      content: "";
      width: 100%;
      height: 1px;
      background-color: #A2AAAD;
      position: absolute;
      bottom: 0;
      left: 0;
  }
  .module-annual-filings_annual div[data-category="performance"] {
      display: none;
  }
  
  
  /*-- ROSEMONT Page --*/
  
  .rosemont-page .pane--content h3:not(.h3) {
      font-size: 38px;
      font-size: 3.8rem;
      font-weight: 300;
      line-height: 1.42;
  }
  
  .rosemont-image-2 {
        background-image: url(../images/us/rosemont1.jpg);
  }
  
  .rosemont2-image-2 {
        background-image: url(../images/us/rosemont2.jpeg);
  }
  
  .rosemont-page .module-mine-summary-intro .module-mine-summary-description {
      font-size: 38px;
      font-size: 3.8rem;
  }
  
  .module.module-rosemont-opportunity {
      background-color: #000;
      padding: 55px;
      font-size: 25px;
      font-size: 2.5rem;
  }
  
  .module-rosemont-opportunity .module_container--outer {
      padding: 60px 20px 20px 20px;
      border: 8px solid #D22630;
  }
  
  .module-rosemont-opportunity .module_title {
      font-size: 48px;
      font-size: 4.8rem;
      padding: 0 12%;
  }
  
  .module-rosemont-opportunity .module_title:after {
      display: none;
  }
  
  .prosperity-image-2 {
      background-image: url(../images/us/prosperity.jpg);
  }
  
  .module-rosemont-prosperity .module_title,
  .module-rosemont-water .module_title {
      text-transform: none;
      padding: 0;
      font-size: 48px;
      font-size: 4.8rem;
      font-weight: 300;
      line-height: 1.125;
      margin-bottom: 30px;
  }
  
  .module-rosemont-prosperity .module_title:after,
  .module-rosemont-water .module_title:after {
      display: none;
  }
  
  .module-rosemont-prosperity .h3 {
      color: #1D242C;
      font-weight: 300;
      margin-bottom: 10px;
  }
  
  .module-rosemont-prosperity_box {
      margin-bottom: 25px;
      font-size: 36px;
      font-size: 3.6rem;
  }
  
  .module-rosemont-prosperity_box span {
      display: inline-block;
      vertical-align: middle;
  }
  
  .module-rosemont-prosperity_box span:first-child {
      text-align: right;
      width: 215px;
      padding: 0 20px;
  }
  
  .module-rosemont-prosperity_box span:last-child {
      font-weight: 700;
  }
  
  .module-rosemont-prosperity_legend {
      margin-right: 60px;
  }
  
  .module.module-panel-rosemont {
      background-image: url('../images/us/panel-rosemont.jpg');
      padding-top: 0;
      background-size: cover;
  }
  
  .module-panel-full.module-panel-rosemont .module_container--outer {
      max-width: none;
      padding-right: 60px;
      padding-left: 60px;
  }
  
  .module-panel-rosemont .module-panel-container {
      max-width: 530px;
      padding-right: 50px;
  }
  
  .module-panel-rosemont .module-panel-container h2 {
      font-size: 36px;
      font-size: 3.6rem;
      margin-bottom: 40px;
  }
  
  .module-panel-rosemont .module-panel-stat span {
      font-size: 36px;
      font-size: 3.6rem;
  }
  
  .water-image-2 {
      background-image: url(../images/us/water-v2.jpg);
  }
  
  .environmental-image-2 {
      background-image: url(../images/us/environmental.jpg);
  }
  
  .module-rosemont-chart_legend {
      text-align: left;
  }
  
  .text-larger {
      font-size: 21px;
      font-size: 2.1rem;
  }
  
  @media (max-width: 768px){
      .rosemont-page .pane--content h3 {
          font-size: 24px;
          font-size: 2.4rem;
      }
  
      .rosemont-page .module-mine-summary-intro .module-mine-summary-description {
          font-size: 18px;
          font-size: 1.8rem;
          font-weight: 700;
      }
  
      .rosemont-page .module-mine-summary-intro .module-mine-summary-description strong {
          font-size: 48px;
          font-size: 4.8rem;
      }
  
      .module-rosemont-opportunity .module_container--outer {
          padding-top: 20px;
      }
  
      .module-rosemont-opportunity .module_title {
          font-size: 24px;
          font-size: 2.4rem;
          padding: 0;
      }
  
      .module.module-rosemont-opportunity {
          font-size: 16px;
          font-size: 1.6rem;
      }
  
      .module-rosemont-prosperity .module_title,
      .module-rosemont-water .module_title {
          font-size: 24px;
          font-size: 2.4rem;
          font-weight: 500;
      }
  
      .rosemont-page .module-rosemont-prosperity .h3,
      .module-rosemont-prosperity_box {
          font-size: 16px;
          font-size: 1.6rem;
      }
  
      .module-rosemont-prosperity_box span:first-child {
          width: 100px;
          padding: 5px 10px;
      }
  
      .module-panel-full.module-panel-rosemont .module_container--outer {
          padding-top: 340px;
          padding-bottom: 60px;
      }
  
      .module-panel-rosemont .module-panel-container h2,
      .module-panel-rosemont .module-panel-stat span {
          font-size: 21px;
          font-size: 2.1rem;
      }
  }
  
  @media (min-width: 1400px){
      .module-rosemont-chart_legend {
          position: absolute;
          right: 0;
          top: 80px;
          font-size: 24px;
          font-size: 2.4rem;
          line-height: 1.5;
          width: 180px;
      }
  }
  
  /*00053936*/
  input.button.module-subscribe_submit-button.module-subscribe_submit-button--fancy {
      display: none !important;
  }
  
  .module-subscribe_submit-button--fancy {
      display: none;
  }
  
  .environmental-image-2new{
  background-image:url('../images/us/Engineers-on-a-solar-power-plant-1188930630_2122x1416.jpeg');
  }
  
  .snow-lake .table th:not(:first-child), .snow-lake .table td:not(:first-child) {
    padding-right: 5px;
    padding-left: 5px; 
  width: 12%;
    }