/* ------------------------------------------------------------ *\
	Reset
\* ------------------------------------------------------------ */
*,
*:before,
*:after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
main {
  display: block;
}

html {
  tap-highlight-color: transparent;
}

body {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  text-size-adjust: none;
}

img,
iframe,
video,
audio,
object {
  max-width: 100%;
}

img,
iframe {
  border: 0 none;
}

img {
  height: auto;
  display: inline-block;
  vertical-align: middle;
}

b,
strong {
  font-weight: bold;
}

address {
  font-style: normal;
}

svg:not(:root) {
  overflow: hidden;
}

a,
button,
input[type="submit"],
input[type="button"],
input[type="reset"],
input[type="file"],
input[type="image"],
label[for] {
  cursor: pointer;
}

a[href^="tel"],
button[disabled],
input[disabled],
textarea[disabled],
select[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0;
  border: 0;
}

input[type="text"],
input[type="password"],
input[type="date"],
input[type="datetime"],
input[type="datetime-local"],
input[type="month"],
input[type="week"],
input[type="email"],
input[type="number"],
input[type="search"],
input[type="tel"],
input[type="time"],
input[type="url"],
input[type="color"],
textarea,
a[href^="tel"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

textarea {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}

button,
select {
  text-transform: none;
}

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

nav ul,
nav ol {
  list-style: none outside none;
}

/* ----- SASSY STUFF --------------------------------------------- */
/* ----- Variables ----- */
/* Navigation */
/* Easing / Transitions */
/* Colours */
/* Grid */
/* Media queries */
/* Fonts */
/* ----- Functions ----- */
/* ----- Mixins ----- */
/* ----- ANIMATIONS ---------------------------------------------- */
@keyframes pulse-in {
  0% {
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  30% {
    opacity: 1;
    -moz-transform: scale(0.85, 0.85);
    -ms-transform: scale(0.85, 0.85);
    -webkit-transform: scale(0.85, 0.85);
    transform: scale(0.85, 0.85);
  }
  65% {
    -moz-transform: scale(1.4, 1.4);
    -ms-transform: scale(1.4, 1.4);
    -webkit-transform: scale(1.4, 1.4);
    transform: scale(1.4, 1.4);
  }
  100% {
    opacity: 1;
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
/* ----- STYLES -------------------------------------------------- */
/* ----- Utilities ----- */
@media (min-width: 668px) {
  .mobile-only {
    display: none !important;
  }
}

@media (max-width: 667px) {
  .not-mobile {
    display: none !important;
  }
}

@media (max-width: 667px) {
  .mobile-overflow-hidden {
    overflow: hidden;
  }
  .mobile-overflow-hidden body {
    overflow: hidden;
  }
  .mobile-overflow-hidden.mobile-fixed-position {
    position: fixed;
    width: 100%;
    height: 100%;
  }
}
.disable-transitions * {
  -moz-transition: none !important;
  -o-transition: none !important;
  -webkit-transition: none !important;
  transition: none !important;
}

.expandable {
  height: 0;
  opacity: 0;
  overflow: hidden;
}

.ui-helper-hidden-accessible {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}

.dev:after {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: block;
  padding: 10px;
  z-index: 9999;
  color: white;
  font-size: 14px;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (min-width: 1025px) {
  .dev:after {
    background-color: rgba(20, 150, 40, 0.8);
    content: "Desktop";
  }
}
@media (min-width: 668px) and (max-width: 1024px) {
  .dev:after {
    background-color: rgba(20, 20, 200, 0.8);
    content: "Tablet";
  }
}
@media (max-width: 667px) {
  .dev:after {
    background-color: rgba(120, 20, 160, 0.8);
    content: "Mobile";
  }
}
.dev .constrained {
  outline: 1px dashed red;
}
.dev .column {
  outline: 1px dotted blue;
}

/* ----- Helpers for responsive JavaScript ----- */
/* Media query information settings for browsers that don't understand media queries. */
html {
  font-family: 'desktop';
}

* html {
  /* IE6 */
  font-family: 'desktop';
}

* + html {
  /* IE7 */
  font-family: 'desktop';
}

@media \0screen {
  html {
    /* IE8 */
    font-family: 'desktop';
  }
}
/* Setting fonts on html tag for media query change detection */
@media (min-width: 1025px) {
  html {
    font-family: "desktop";
  }
}
@media (min-width: 668px) and (max-width: 1024px) {
  html {
    font-family: "tablet";
  }
}
@media (max-width: 667px) {
  html {
    font-family: "mobile";
  }
}
/* ----- Grid System ----- */
.constrained {
  *zoom: 1;
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
}
.constrained:after {
  content: "";
  display: table;
  clear: both;
}

.grid {
  clear: both;
  font-size: 0;
}
.form-wrapper .grid {
  overflow: visible;
}
.grid > *:not(.row) {
  font-size: 16px;
}
.grid .row {
  margin-left: -10px;
  margin-right: -10px;
}
.grid .row .column {
  padding-left: 10px;
  padding-right: 10px;
  font-size: 16px;
}
@media (min-width: 668px) {
  .grid .column {
    display: inline-block;
    vertical-align: top;
  }
}
@media (min-width: 668px) {
  .grid.wide-gutters {
    overflow: hidden;
  }
}
.grid.wide-gutters .row {
            /*
            @include tablet {               
                margin-left: -20px; // half the gutter width either side
                margin-right: -20px; // half the gutter width either side
            }
*/
}
@media (min-width: 1025px) {
  .grid.wide-gutters .row {
    margin-left: -35px;
    margin-right: -35px;
  }
}
.grid.wide-gutters .row .column {
                /*
                @include tablet {
                    padding-left: 20px;
                    padding-right: 20px;
                }
*/
}
@media (min-width: 1025px) {
  .grid.wide-gutters .row .column {
    padding-left: 35px;
    padding-right: 35px;
  }
}

@media (max-width: 667px) {
  .constrained.shell .column {
    margin-bottom: 50px;
  }
}

.widget-wrapper > div[class*='col'],
.widget-wrapper .WebPartContent > div[class*='col'] {
  float: none;
  width: auto;
  margin-left: 0;
  padding-left: 0;
  padding-right: 0;
}
.widget-wrapper > .shell:not(.maintain-dimensions-when-nested),
.widget-wrapper > .section > .shell {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
        /*
        > .row-grid {
            margin-left: 0;
            margin-right: 0;

            > div[class*='col'] {
                float: none;
                width: auto;
                margin-left: 0;
                margin-right: 0;
                padding-left: 0;
                padding-right: 0;
            }
        } 
        */
}
.widget-wrapper p:last-child {
  margin-bottom: 0;
}
.widget-wrapper img.center {
  margin-top: 50px;
  margin-bottom: 30px;
}

@media (min-width: 1200px) {
  .section-container-heading .widget-wrapper .counteract-offsets {
    margin-left: calc(-8.33333333% - 20px);
    margin-right: calc(-8.33333333% - 20px);
  }
}

.grid + .grid > .row {
  margin-top: 40px;
}

@media (min-width: 1025px) {
  .grid.wide-gutters + .grid.wide-gutters > .row {
    margin-top: 60px;
  }
}

@media (max-width: 667px) {
  .column + .column > .widget-wrapper {
    margin-top: 40px;
  }
  .column + .column > .widget-wrapper > .grey-background {
    margin-top: -20px;
  }
}

@media (max-width: 667px) {
  .no-mobile-margins .column + .column > .widget-wrapper {
    margin-top: 0 !important;
  }
}

.no-desktop-margins > .row {
  margin-top: 0 !important;
}

@media (min-width: 668px) {
  .one-half {
    width: 50%;
  }
}

@media (min-width: 668px) {
  .one-third {
    width: 33.33333%;
  }
}

@media (min-width: 668px) {
  .two-thirds {
    width: 66.66667%;
  }
}

@media (min-width: 668px) {
  .one-quarter {
    width: 25%;
  }
}

@media (min-width: 668px) {
  .three-quarters {
    width: 75%;
  }
}

@media (min-width: 668px) {
  .three-fifths {
    width: 60%;
    width: 61%;
  }
}

@media (min-width: 668px) {
  .two-fifths {
    width: 40%;
    width: 39%;
  }
}

@media (min-width: 668px) {
  .one-fifth {
    width: 20%;
  }
}

@media (min-width: 668px) {
  .five-seventeenths {
    width: 29.41176%;
  }
}

@media (min-width: 668px) {
  .eight-seventeenths {
    width: 47.05882%;
  }
}

@media (min-width: 668px) {
  .four-seventeenths {
    width: 23.52941%;
  }
}

@media (min-width: 668px) {
  .four-twentieths {
    width: 20%;
    width: 23.97959%;
  }
}

@media (min-width: 668px) {
  .five-twentieths {
    width: 25%;
    width: 28.57143%;
  }
}

@media (min-width: 668px) {
  .nine-twentieths {
    width: 45%;
    width: 47.44898%;
  }
}

@media (min-width: 1025px) {
  .desktop-one-half {
    width: 50%;
  }
}

@media (min-width: 1025px) {
  .desktop-one-third {
    width: 33.33333%;
  }
}

@media (min-width: 668px) and (max-width: 1024px) {
  .tablet-one-quarter {
    width: 25%;
  }
}

@media (min-width: 668px) and (max-width: 1024px) {
  .tablet-one-third {
    width: 33.33333%;
  }
}

@media (min-width: 668px) and (max-width: 1024px) {
  .tablet-two-thirds {
    width: 66.66667%;
  }
}

.push-one {
  margin-left: 4.23729%;
}

.push-two {
  margin-left: 8.47458%;
}

@media (min-width: 668px) and (max-width: 1024px) {
  .tablet-push-one {
    margin-left: 4.23729%;
  }
}

@media (min-width: 668px) and (max-width: 1024px) {
  .tablet-push-two {
    margin-left: 8.47458%;
  }
}

@media (min-width: 668px) and (max-width: 1024px) {
  .tablet-push-four {
    margin-left: 16.94915%;
  }
}

@media (min-width: 1025px) {
  .desktop-push-one {
    margin-left: 4.23729%;
  }
}

@media (min-width: 1025px) {
  .desktop-push-two {
    margin-left: 8.47458%;
  }
}

@media (min-width: 1025px) {
  .desktop-push-four {
    margin-left: 16.94915%;
  }
}

.ignore-me {
  pointer-events: none;
}

.scrubber-scroll {
  /* Track */
  /* Handle */
}
.scrubber-scroll::-webkit-scrollbar {
  width: 35px;
  height: 35px;
}
.scrubber-scroll::-webkit-scrollbar-track {
  background: #373a36;
  border-top: 17px solid transparent;
  border-bottom: 17px solid transparent;
  background-clip: content-box;
  margin-left: 1px;
  margin-right: 1px;
}
.scrubber-scroll::-webkit-scrollbar-thumb {
  background: white;
  border: 1px solid #373a36;
  background-image: url("../images/scrubber-left.svg"), url("../images/scrubber-right.svg");
  background-position: left center, right center;
  background-repeat: no-repeat, no-repeat;
}

.columns-6 {
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.columns-10 {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 668px) {
  .columns-10 .columns-3 {
    width: 28.57143%;
  }
}

/* Below variables relate to position and width/height of icons on the spritesheets:  
- /content/images/icon-sprites-vector.svg  
- /content/images/icon-sprites-fallback.png
Identical icon positioning. This supports an PNG fallback for older browsers. See mixin below in utilities file.
- @mixin icons-svg-init
- @mixin icons-svg($icon-position-x, $icon-position-y, $icon-width, $icon-height)
- @mixin icons-svg-hover($icon-position-x, $icon-position-y)
*/
/* Icon References */
/* ROW 2 */
/* ROW 3 */
/* ROW 4 */
/* ROW 5 */
/* ROW 6 */
/* ROW 7 */
/*

    Investor Relations Redesign

*/
.cookie-message {
  z-index: 150;
}

.ir-page {
  background: #EBEBEB;
  overflow-x: hidden;
}
@media (max-width: 667px) {
  .ir-page {
    margin-top: -99px;
  }
}

.ir-header {
  margin-bottom: 20px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  z-index: 1000;
}
@media (max-width: 667px) {
  .ir-header {
    padding-left: 0;
    padding-right: 0;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 100;
    transition: all 0.4s ease;
  }
  .ir-header.nav-up {
    transform: translateY(-100%);
  }
}
.ir-header__wrapper {
  background: #fff;
}
.ir-header__top {
  display: flex;
  padding: 20px 17px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #D5D5D5;
  border-left: 1px solid #D5D5D5;
  border-right: 1px solid #D5D5D5;
}
.ir-header__top > a {
  text-decoration: none;
}
@media (max-width: 1024px) {
  .ir-header__top .ir-header__main-link {
    display: none;
  }
}
@media (max-width: 667px) {
  .ir-header__top {
    padding: 16px 17px;
    border-left: 0;
    border-right: 0;
  }
}
.ir-header__menu-toggle {
  width: 61px;
  height: 61px;
  position: absolute;
  top: 0;
  right: 0;
  background: transparent;
  display: none;
  border-left: 1px solid #D5D5D5;
}
@media (max-width: 1024px) {
  .ir-header__menu-toggle {
    display: block;
  }
}
.ir-header__menu-toggle:before {
  content: '';
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: -10px;
  margin-left: -13px;
  display: block;
  background: url(../images/icon-sprites-fallback.png);
  background-image: linear-gradient(transparent, transparent), url(../images/icon-sprites-vector.svg);
  background-size: 58em 28em;
  background-position: 1px 3px;
  width: 26px;
  height: 20px;
  font-size: 16px;
}
.ir-header__menu-toggle.active:before {
  background-position: -192px -256px;
  width: 17px;
  height: 17px;
  margin-top: -8px;
  margin-left: -8px;
}
.ir-header__logo {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ir-header__logo .logo {
  display: block;
  background: url(../images/icon-sprites-fallback.png);
  background-image: linear-gradient(transparent, transparent), url(../images/icon-sprites-vector.svg);
  background-size: 58em 28em;
  background-position: -704px 0;
  width: 146px;
  height: 20px;
  font-size: 16px;
}
.ir-header__logo p {
  display: inline-block;
  margin: 0 0 0 15px;
  font-size: 20px;
  line-height: 21px;
  font-weight: bold;
  letter-spacing: 0.3px;
  color: #373A36;
  text-transform: uppercase;
  padding-left: 10px;
  border-left: 2px solid #ce1141;
  font-family: "Nord-Con", "tv_nord", Arial, Helvetica, sans-serif;
}
@media (max-width: 667px) {
  .ir-header__logo p {
    font-size: 14px;
    max-width: 100px;
    line-height: 14px;
  }
}
.ir-header .ir_header-menu {
  border-bottom: 1px solid #D5D5D5;
  border-left: 1px solid #D5D5D5;
  border-right: 1px solid #D5D5D5;
}
@media (max-width: 1024px) {
  .ir-header .ir_header-menu {
    display: none;
    max-height: calc(100vh - 60px);
    overflow: auto;
  }
}
@media (min-width: 1025px) {
  .ir-header .ir_header-menu {
    display: block !important;
  }
}
@media (max-width: 667px) {
  .ir-header .ir_header-menu {
    border: 0;
  }
}
.ir-header .ir_header-menu .ir-header__main-link {
  display: none;
  border-top: 1px solid #D5D5D5;
  padding: 0;
}
.ir-header .ir_header-menu .ir-header__main-link a {
  display: block;
  padding: 17px 27px;
}
@media (max-width: 1024px) {
  .ir-header .ir_header-menu .ir-header__main-link {
    display: block;
  }
}
.ir-header #ir-header__menu {
  display: flex;
  align-items: stretch;
  flex-wrap: nowrap;
}
@media (max-width: 1024px) {
  .ir-header #ir-header__menu {
    display: block;
  }
}
.ir-header #ir-header__menu > li {
  flex: 1 1 0px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}
.ir-header #ir-header__menu > li:first-child {
  max-width: 120px;
}
@media (max-width: 1024px) {
  .ir-header #ir-header__menu > li:first-child {
    max-width: 100%;
  }
}
.ir-header #ir-header__menu > li > a {
  display: block;
  width: 100%;
  text-align: center;
  padding: 10px;
}
@media (max-width: 1024px) {
  .ir-header #ir-header__menu > li > a {
    padding: 17px 27px;
    text-align: left;
  }
}
.ir-header #ir-header__menu > li + li > a {
  border-left: 1px solid #D5D5D5;
}
@media (max-width: 1024px) {
  .ir-header #ir-header__menu > li + li > a {
    border-top: 1px solid #D5D5D5;
    border-left: 0;
  }
}
@media (max-width: 1024px) {
  .ir-header #ir-header__menu > li {
    display: block;
    min-height: 0;
    max-width: 100%;
  }
}
.ir-header #ir-header__menu > li > ul {
  position: absolute;
  display: none;
  left: 0;
  top: 100%;
  background: #fff;
  width: calc(100% + 1px);
  border: 1px solid #D5D5D5;
  box-sizing: border-box;
  padding: 7px 0;
  pointer-events: all;
}
.ir-header #ir-header__menu > li > ul a {
  padding: 7px 15px;
  display: block;
}
@media (max-width: 1024px) {
  .ir-header #ir-header__menu > li > ul {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    border: 0;
    padding: 12px 27px;
    background: #F2F2F2;
    border-top: 1px solid #D5D5D5;
  }
  .ir-header #ir-header__menu > li > ul.mobile-active {
    display: block;
  }
  .ir-header #ir-header__menu > li > ul a {
    padding: 5px 0;
    text-decoration: underline;
    font-weight: bold;
  }
}
.ir-header #ir-header__menu > li.dropdown-parent > a {
  pointer-events: none;
}
.ir-header #ir-header__menu > li.dropdown-parent > a:after {
  content: '';
  display: inline-block;
  width: 12px;
  height: 8px;
  background: transparent url(../images/select-arrow.png) center center no-repeat;
  background-size: 10px 7px;
  content: "";
  cursor: pointer;
  bottom: 1px;
  position: relative;
  left: 6px;
}
@media (min-width: 1025px) {
  .ir-header #ir-header__menu > li.dropdown-parent:hover > ul {
    display: block;
  }
}
.ir-header #ir-header__menu > li.link-no-wrap a {
  white-space: nowrap;
}
.ir-header #ir-header__menu > li.Highlighted > a {
  font-weight: bold;
}
.ir-header .link-external a {
  display: inline-block;
}
.ir-header .link-external a:after {
  content: '';
  display: inline-block;
  background: url(../images/icon-sprites-fallback.png);
  background-image: linear-gradient(transparent, transparent), url(../images/icon-sprites-vector.svg);
  background-size: 58em 28em;
  background-position: -448px -64px;
  width: 12px;
  height: 12px;
  font-size: 16px;
  margin-left: 6px;
}

.ir-mobile-overflow {
  position: fixed;
  top: 0;
  background: rgba(0, 0, 0, 0.5);
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 50;
  display: none;
  cursor: pointer;
}
@media (min-width: 1025px) {
  .ir-mobile-overflow {
    display: none !important;
  }
}
@media (min-width: 668px) and (max-width: 1024px) {
  .ir-mobile-overflow {
    display: none !important;
  }
}

@media (max-width: 667px) {
  .ir-landing, .ir-content {
    padding-top: 80px !important;
  }
}

.ir-landing {
  padding-bottom: 40px;
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 667px) {
  .ir-landing {
    padding-left: 0;
    padding-right: 0;
  }
}
.ir-landing .row {
  margin: 0 -10px;
  display: flex;
}
@media (min-width: 668px) and (max-width: 1024px) {
  .ir-landing .row {
    display: block;
  }
}
@media (max-width: 667px) {
  .ir-landing .row {
    display: block;
  }
}
.ir-landing__box {
  background: #fff;
  padding: 30px;
  height: 100%;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
.ir-landing__box > div {
  width: 100%;
}
@media (min-width: 668px) and (max-width: 1024px) {
  .ir-landing__box {
    margin-bottom: 20px;
  }
}
@media (max-width: 667px) {
  .ir-landing__box {
    padding: 20px;
    margin-bottom: 20px;
  }
}
.ir-landing__box .ir-content__header {
  margin-bottom: 30px;
  width: 100%;
}
.ir-landing__box .ir-content__header .row > div {
  width: 100%;
}
.ir-landing__box .ir-content__header .row > div:last-child {
  display: none;
}
.ir-landing__box .ir-content__header h2 {
  text-align: left;
  font-size: 20px;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  font-weight: bold;
  opacity: 1;
  margin-bottom: 0;
}
.ir-landing__box .ir-content__header h2 a {
  color: #CE1141;
}
.ir-landing__box .shell {
  padding: 0 10px;
}
.ir-landing__box .ir-content__item {
  border-bottom: 1px solid #D5D5D5;
  padding-bottom: 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.ir-landing__box .ir-content__item:last-child {
  margin-bottom: 0;
}
.ir-landing__box .ir-content__item--single {
  border: 0;
  margin: 0;
  padding: 0;
  height: 100%;
}
.ir-landing__box .ir-content__item *:last-child {
  margin-bottom: 0;
}
.ir-landing__box .ir-content__item-title-header {
  font-size: 20px;
  letter-spacing: 0.6px;
  color: #373A36;
  text-transform: uppercase;
  font-weight: bold;
  opacity: 1;
  margin-bottom: 15px;
}
.ir-landing__box .ir-content__item-body {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}
.ir-landing__box .ir-content__item-body > .link {
  margin-top: 15px;
}
.ir-landing__box .ir-content__item-header {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  max-width: 100%;
}
.ir-landing__box .ir-content__item-header > h6 {
  font-size: 80px;
  line-height: 70px;
  letter-spacing: 0.4px;
  color: #373A36;
  font-weight: 300;
  text-transform: uppercase;
  font-family: "Nord-Con", "tv_nord", Arial, Helvetica, sans-serif;
  margin-right: 20px;
}
.ir-landing__box .ir-content__item-header-meta h6 {
  font-family: Roboto;
  font-size: 16px;
  margin: 0;
}
.ir-landing__box .ir-content__item-title h6 {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 21px;
  font-family: Roboto;
  font-weight: bold;
}
.ir-landing__box .ir-content__item-title h6 a {
  text-decoration: underline;
}

.ir-content {
  margin-bottom: 40px;
  padding: 0 15px;
}
@media (max-width: 667px) {
  .ir-content {
    padding-left: 0;
    padding-right: 0;
  }
}
.ir-content__wrapper {
  background: #fff;
  padding: 40px 60px;
}
@media (max-width: 667px) {
  .ir-content__wrapper {
    padding: 20px;
  }
}
@media (max-width: 667px) {
  .ir-content .table-events {
    margin-top: 30px;
  }
}
.ir-content__header {
  margin-bottom: 15px;
}
.ir-content__header .row {
  margin: 0 -10px;
}
.ir-content__header h2,
.ir-content .ir-content__wrapper > div > section.ir-content__header h2 {
  text-align: left;
  font-family: "Nord-Con", "tv_nord", Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 30px;
  line-height: 26px;
  letter-spacing: 0.15px;
  text-transform: uppercase;
  opacity: 1;
  color: #373A36;
}
@media (max-width: 1024px) {
  .ir-content__header h2 {
    margin-bottom: 15px;
  }
}
.ir-content__header h2 a {
  text-decoration: underline;
}
.ir-content__header p a {
  text-decoration: underline;
}
.ir-content .ir-content__wrapper > div > .ir-content__header:first-child {
  margin-bottom: 40px;
}
@media (max-width: 667px) {
  .ir-content .ir-content__wrapper > div >.ir-content__header:first-child {
    margin-bottom: 15px;
  }
}
.ir-content .ir-content__wrapper div .ir-content__header .col-md-8, .ir-content .ir-content__wrapper div .ir-content__header .col-md-16 {
  width: 100%;
}
.ir-content .ir-content__wrapper div .ir-content__header h2 {
  text-align: left;
  font-size: 20px;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  font-weight: bold;
  opacity: 1;
}
.ir-content .ir-content__header:nth-child(n+2) .col-md-8, .ir-content .ir-content__header:nth-child(n+2) .col-md-16 {
  width: 100%;
}
.ir-content .ir-content__header:nth-child(n+2) h2 {
  text-align: left;
  font-size: 20px;
  letter-spacing: 0.2px;
  color: #CE1141;
  text-transform: uppercase;
  font-weight: bold;
  opacity: 1;
}
.ir-content .grid {
  margin-bottom: 40px;
}
.ir-content .ir-page-analyst-coverage .row-grid > div {
  width: 100% !important;
  margin: 0;
}
.ir-content .ir-page-analyst-coverage .row-grid > div table {
  margin: 0;
}

.ir-search__header {
  border-top: 1px solid #373A36;
  padding: 2px 0;
  position: relative;
  cursor: pointer;
}
.ir-search__header:before {
  content: '';
  display: block;
  width: 32px;
  height: 32px;
  border: 1px solid #373A36;
  position: absolute;
  right: 0;
  top: -1px;
}
.ir-search__header:after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 34px;
  line-height: 30px;
  color: #373A36;
  display: block;
  width: 32px;
  text-align: center;
}
.ir-search__header.active:after {
  content: '';
  width: 16px;
  height: 2px;
  background: #373A36;
  top: 50%;
  margin-top: -2px;
  right: 8px;
}
.ir-search__header span {
  text-align: left;
  font-family: "Nord-Con", "tv_nord", Arial, Helvetica, sans-serif;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.2px;
  color: #373A36;
  text-transform: uppercase;
  opacity: 1;
}
.ir-search .search-form-wrapper, .ir-search .search-filter-form-wrapper {
  margin-top: 0;
}
.ir-search__form {
  display: block;
  position: relative;
  z-index: 30;
}
.ir-search__form .filter-form-wrapper .form-row {
  margin-bottom: 15px;
}
.ir-search__form .filter-form-wrapper .form-row:last-child {
  margin-bottom: 0;
}
.ir-search .form-wrapper {
  display: flex;
  max-width: 880px;
  align-items: flex-start;
}
@media (max-width: 667px) {
  .ir-search .form-wrapper {
    display: block;
  }
}
.ir-search .form-wrapper .form-right {
  flex-shrink: 0;
  padding-left: 15px;
}
@media (max-width: 667px) {
  .ir-search .form-wrapper .form-right {
    padding-left: 0;
  }
}
.ir-search .form-wrapper .form-left {
  width: 100%;
}
.ir-search .form-wrapper .form-left-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ir-search .form-wrapper .clear-filters {
  min-width: 95px;
  padding-right: 0;
}
.ir-search .form-wrapper--sec .form-left {
  display: flex;
  margin: 0 -10px;
  width: 100%;
}
.ir-search .form-wrapper--sec .form-left .column {
  padding: 0 10px;
}
.ir-search .form-wrapper--sec #view-groupings-btn, .ir-search .form-wrapper--sec #section-16-btn {
  display: none;
}
.ir-search .form-wrapper--sec .clear-filters {
  margin-top: 24px;
}
.ir-search .form-wrapper--sec #searchSubmitButton {
  margin-top: 24px;
}
.ir-search .searchDialog, .ir-search .search-dialog {
  margin-bottom: 0;
}
.ir-search .search-filter-form-wrapper .search-input-wrapper {
  margin-bottom: 0;
}
.ir-search .filter-form-wrapper label {
  padding-top: 4px;
}
.ir-search table {
  max-width: 300px;
}

/*

IR GOVERNANCE AND SUSTAINABILITY

*/
.ir-section-icons .section {
  padding: 0;
}
.ir-section-icons .section-title-default {
  color: #ce1141;
  border: 0;
  padding: 0;
  margin-bottom: 35px;
}
.ir-section-icons .section-title-default:after {
  display: none;
}
.ir-section-icons .widget-wrapper img {
  margin-bottom: 35px;
}
@media (max-width: 667px) {
  .ir-section-icons .widget-wrapper img {
    height: 100px;
  }
}
.ir-section-icons .widget-wrapper .ir-content__header {
  margin-bottom: 25px;
}
.ir-section-icons .widget-wrapper .ir-content__header .row > div {
  width: 100%;
}
.ir-section-icons .widget-wrapper .ir-content__header .row > div:last-child {
  display: none;
}
.ir-section-icons .widget-wrapper .ir-content__header h2 a {
  color: #ce1141;
  text-decoration: underline;
}
.ir-section-icons .widget-wrapper .ir-content__header .row > div {
  width: 100% !important;
}
@media (min-width: 668px) and (max-width: 1024px) {
  .ir-section-icons .one-quarter {
    width: 50%;
    margin-bottom: 40px;
  }
}

    /* 
    
IR SLIDER 

*/
.ir-slider {
  margin-bottom: 20px;
  min-height: 475px;
  position: relative;
}
@media (max-width: 667px) {
  .ir-slider {
    min-height: 400px;
  }
}
.ir-slider .swiper-container {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 667px) {
  .ir-slider .swiper-container {
    position: relative;
  }
}
.ir-slider .swiper-container,
.ir-slider .swiper-wrapper,
.ir-slider .swiper-slide {
  height: 100%;
}
.ir-slider .swiper-slide {
  position: relative;
}
@media (max-width: 667px) {
  .ir-slider .swiper-slide {
    min-height: 400px;
  }
}
.ir-slider__background, .ir-slider__background--mobile {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.ir-slider__background--mobile {
  display: none;
}
@media (max-width: 667px) {
  .ir-slider .ir-slider__background--mobile[visible="True"] {
    display: block;
  }
  .ir-slider .ir-slider__background--mobile[visible="True"] + .ir-slider__background {
    display: none;
  }
}
.ir-slider__content {
  position: relative;
  z-index: 10;
  width: 50%;
  padding: 40px 60px;
}
@media (min-width: 668px) and (max-width: 1024px) {
  .ir-slider__content {
    width: calc(100% - 300px);
    padding: 30px 30px 60px;
  }
}
@media (max-width: 667px) {
  .ir-slider__content {
    width: 100%;
    padding: 20px 20px 60px;
  }
}
.ir-slider__content [visible="False"] {
  display: none !important;
}
.ir-slider__content h3 {
  text-align: left;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.42px;
  color: #FFFFFF;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.ir-slider__content h2 {
  font-size: 40px;
  letter-spacing: 1px;
  color: #fff;
  font-weight: bold;
  margin-bottom: 15px;
}
@media (max-width: 667px) {
  .ir-slider__content h2 {
    font-size: 30px;
  }
}
.ir-slider__content .ir-slider__date {
  font-size: 16px;
  letter-spacing: 0.24px;
  color: #fff;
  display: block;
  margin-bottom: 30px;
}
.ir-slider__content .link {
  display: inline-flex;
  align-items: center;
  background: #fff;
  padding: 13px 15px 13px 50px;
}
.ir-slider__content .link:before {
  top: 10px;
  left: 15px;
}
.ir-slider .ir-slider__content--black h3, .ir-slider .ir-slider__content--black h2, .ir-slider .ir-slider__content--black .ir-slider__date {
  color: #363636;
}
.ir-slider .ir-slider__content {
  transition: all 0.5s ease 0.3s;
}
.ir-slider .swiper-slide-next .ir-slider__content, .ir-slider .swiper-slide-prev .ir-slider__content, .ir-slider .swiper-slide-duplicate-next .ir-slider__content, .ir-slider .swiper-slide-duplicate-prev .ir-slider__content {
  transform: translateY(30px);
  opacity: 0;
}
.ir-slider .swiper-slide-active .ir-slider__content {
  transform: translateY(0px);
  opacity: 1;
}
.ir-slider .swiper-pagination {
  width: 50%;
  bottom: 37px;
}
@media (min-width: 668px) and (max-width: 1024px) {
  .ir-slider .swiper-pagination {
    width: 100%;
  }
}
@media (max-width: 667px) {
  .ir-slider .swiper-pagination {
    width: 100%;
    bottom: 19px;
  }
}
.ir-slider .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  opacity: 1;
  background: #fff;
  border-radius: 0;
}
.ir-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #ce1141;
}

.ir-slider-stock {
  position: relative;
}
.ir-slider-stock .corp-stock h5 {
  display: block;
  font-size: 14px;
  line-height: 1.29em;
  font-family: "Nord-Con", sans-serif;
  font-weight: 700;
}
.ir-slider-stock .corp-stock .corp-stock-meta {
  display: none;
}
.ir-slider-stock .corp-stock-price {
  border-color: black;
}
.ir-slider-stock .corp-stock-meta {
  display: none;
}
.ir-slider-stock__box {
  position: absolute;
  right: 0;
  top: 0;
  width: 360px;
  max-height: 100%;
  overflow: auto;
  display: flex;
  padding: 40px 60px;
  z-index: 20;
  background: transparent;
}
@media (min-width: 668px) and (max-width: 1024px) {
  .ir-slider-stock__box {
    width: 300px;
    padding: 30px;
  }
}
@media (max-width: 667px) {
  .ir-slider-stock__box {
    width: 100%;
    position: relative;
    width: 100%;
    margin-top: 20px;
    padding: 0;
    background: #fff;
    margin-bottom: 20px;
  }
}
.ir-slider-stock__box-wrapper {
  width: 100%;
  padding: 15px;
  background: rgba(255, 255, 255, 0.6);
  opacity: 1;
  backdrop-filter: blur(27px);
  -webkit-backdrop-filter: blur(27px);
}
@media (max-width: 667px) {
  .ir-slider-stock__box-wrapper {
    padding: 20px;
  }
}
.ir-slider-stock__box .custom-container-investor-home {
  padding: 0;
  width: 100%;
  margin: 0;
}
.ir-slider-stock__box .corp-stock-chart {
  padding: 0;
  height: 225px !important;
  background: transparent;
}
.ir-slider-stock__box .corp-stock-small {
  padding: 0;
  background: transparent;
}

    /*

    Contact

*/
.ir-content--contact .ir-contact-map {
  margin-bottom: 60px;
}
.ir-content--contact .ir-contact-map .row {
  margin-left: -10px;
  margin-right: -10px;
}
.ir-content--contact .ir-contact-map h2, .ir-content--contact .ir-contact-map h3, .ir-content--contact .ir-contact-map h4, .ir-content--contact .ir-contact-form h2, .ir-content--contact .ir-contact-form h3, .ir-content--contact .ir-contact-form h4 {
  text-align: left;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.ir-content--contact .ir-contact-map-container {
  width: 100%;
  height: 334px;
}
.ir-content--contact .ir-contact-form {
  max-width: 590px;
}

    /*

    Reports and Proxies

*/
.reports-and-proxies-row {
  display: flex;
  align-items: center;
  min-height: 180px;
  flex-wrap: wrap;
  border-top: 1px solid #D5D5D5;
  padding: 15px 0;
  padding-left: 240px;
  position: relative;
}
@media (max-width: 667px) {
  .reports-and-proxies-row {
    flex-wrap: wrap;
    padding-left: 0;
    min-height: 0;
  }
}
.reports-and-proxies-row > h3 {
  text-align: left;
  font-size: 80px;
  line-height: 1;
  letter-spacing: 0.4px;
  color: #373A36;
  text-transform: uppercase;
  width: 240px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -40px;
}
@media (max-width: 667px) {
  .reports-and-proxies-row > h3 {
    position: relative;
    top: auto;
    margin-top: 0;
    width: 100%;
    margin-bottom: 15px;
    font-size: 50px;
  }
}
.reports-and-proxies-item {
  min-width: 270px;
}
@media (min-width: 668px) and (max-width: 1024px) {
  .reports-and-proxies-item {
    width: 50%;
    min-width: 0;
  }
}
@media (max-width: 667px) {
  .reports-and-proxies-item {
    width: 50%;
    min-width: 0;
  }
}
.reports-and-proxies-item + .reports-and-proxies-item {
  padding-left: 15px;
  border-left: 1px solid #D5D5D5;
}
.reports-and-proxies-item .report-header h3 {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.reports-and-proxies-item .report-header h2 {
  display: none;
}
.reports-and-proxies-item .report-actions {
  padding-top: 0;
}
.reports-and-proxies-item .report-actions strong {
  display: none;
}
.reports-and-proxies-item .report-actions .list-actions {
  display: flex;
  align-items: center;
}
@media (min-width: 668px) and (max-width: 1024px) {
  .reports-and-proxies-item .report-actions .list-actions li {
    flex: 0 0 33.333333%;
  }
}
.reports-and-proxies-item .report-actions .list-actions li + li {
  margin-top: 0;
}
.reports-and-proxies-item .report-date {
  margin-bottom: 0;
}

.ir-listing .event-actions {
  min-width: 206px;
}
@media (min-width: 668px) and (max-width: 1024px) {
  .ir-listing .event-actions {
    min-width: 122px;
  }
}
.ir-listing .event-actions li strong {
  display: none;
}
.ir-listing .ir-table-news .event-content {
  padding-right: 0;
}
.ir-listing .ir-table-news .event-content h6 a {
  text-decoration: underline;
}
.ir-listing h2 a, .ir-listing h3 a {
  text-decoration: underline;
}
.ir-listing .list-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
@media (min-width: 668px) and (max-width: 1024px) {
  .ir-listing .list-actions li {
    flex: 0 0 33.33333%;
    margin: 10px 0;
  }
}
.ir-listing .list-actions li + li {
  margin-top: 0;
}
@media (min-width: 668px) and (max-width: 1024px) {
  .ir-listing .list-actions li + li {
    margin: 10px 0;
  }
}
.ir-listing .hide-duplicate-heading {
  display: none;
}
.ir-listing table td {
  min-height: 75px;
  vertical-align: middle;
}
@media (max-width: 667px) {
  .ir-listing table td {
    min-height: 0;
  }
}
.ir-listing .event-date br {
  display: none;
}
.ir-listing .event-date > span > span {
  display: block;
}
.ir-listing .event-date .daterange {
  display: flex;
}
.ir-listing .event-date .daterange .datestart {
  margin-right: 5px;
  white-space: nowrap;
}
.ir-listing .event-date .daterange .datestart span {
  display: block;
}
.ir-listing .event-date .daterange .dateend {
  margin-left: 5px;
  white-space: nowrap;
}
.ir-listing .event-date .daterange .dateend span {
  display: block;
}
.ir-listing .event-date .event-date-info {
  display: block;
  font-size: 14px;
  margin-top: 5px;
}

.ir-listing .table-events table td {
  vertical-align: top;
}

.table-events--past .event-date-info {
  display: none !important;
}

/* JS Pagination */
.easyPaginateNav {
  text-align: center;
  padding: 30px 0 30px 0;
}
.easyPaginateNav a {
  display: inline-block;
  font-size: 24px;
  line-height: 28px;
  font-weight: 700;
  font-family: "Nord-Con", "tv_nord", Arial, Helvetica, sans-serif;
  color: #373a36;
  letter-spacing: 0.02em;
  padding: 0 5px;
}
.easyPaginateNav a:hover {
  color: #ce1141;
}
.easyPaginateNav a.disabled {
  pointer-events: none;
  text-decoration: none;
  opacity: .2;
}
.easyPaginateNav a.current {
  color: #ce1141;
}
.easyPaginateNav a.prev {
  position: relative;
  color: transparent;
  padding: 0 10px;
}
.easyPaginateNav a.prev:before {
  position: absolute;
  top: 50%;
  left: 7px;
  content: "";
  background: url(../images/icon-sprites-fallback.png);
  background-image: linear-gradient(transparent, transparent), url(../images/icon-sprites-vector.svg);
  background-size: 58em 28em;
  background-position: -28em -16em;
  width: 0.5em;
  height: 0.75em;
  font-size: 16px;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.easyPaginateNav a.prev:hover:before {
  background-position: -32em -16em;
}
.easyPaginateNav a.next {
  position: relative;
  color: transparent;
  padding: 0 10px;
}
.easyPaginateNav a.next:before {
  position: absolute;
  top: 50%;
  right: 7px;
  content: "";
  background: url(../images/icon-sprites-fallback.png);
  background-image: linear-gradient(transparent, transparent), url(../images/icon-sprites-vector.svg);
  background-size: 58em 28em;
  background-position: -38em -16em;
  width: 0.5em;
  height: 0.75em;
  font-size: 16px;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.easyPaginateNav a.next:hover:before {
  background-position: -34em -16em;
}

.paging .disabled {
  pointer-events: none;
  text-decoration: none;
}

/* IR January 2020 Adjustments */
.ir-search-news {
  display: flex;
  align-items: flex-end;
  margin-left: -10px;
  margin-right: -10px;
}
.ir-search-news > div {
  padding: 0 10px;
}
.ir-search-news .ir-search-news-sort,
.ir-search-news .ir-search-news-filter {
  display: none;
}
.ir-search-news .ir-search-news-dialog {
  width: 400px;
}
.ir-search-news .ir-search-news-dialog input[type="submit"] {
  display: none;
}
.ir-search-news .ir-search-news-dialog .searchDialog {
  width: 100%;
  margin: 0;
}
.ir-search-news .ir-search-news-dialog .searchDialog .search-dialog {
  width: 100%;
  margin: 0;
}
.ir-search-news .ir-search-news-dialog .searchDialog .search-input-wrapper {
  width: 100%;
  padding: 0;
}
.ir-search-news .ir-search-news-date {
  width: 100px;
}

.section-contact-book {
  max-width: 860px;
}
.section-contact-book .table-contacts thead th {
  border-color: #d5d5d5;
}
.section-contact-book thead th:first-child, .section-contact-book thead td:first-child, .section-contact-book tbody th:first-child, .section-contact-book tbody td:first-child {
  width: 40%;
}
.section-contact-book thead th:nth-child(2), .section-contact-book thead td:nth-child(2), .section-contact-book tbody th:nth-child(2), .section-contact-book tbody td:nth-child(2) {
  width: 30%;
}
.section-contact-book thead th:nth-child(3), .section-contact-book thead td:nth-child(3), .section-contact-book tbody th:nth-child(3), .section-contact-book tbody td:nth-child(3) {
  width: 30%;
}
@media (max-width: 667px) {
  .section-contact-book thead th, .section-contact-book thead td, .section-contact-book tbody th, .section-contact-book tbody td {
    width: 100% !important;
  }
}
.section-contact-book tbody tr:first-child td {
  padding-top: 25px;
}
@media (max-width: 667px) {
  .section-contact-book tbody tr:first-child td {
    padding-top: 0;
  }
}
.section-contact-book tbody tr:nth-child(even) td {
  background: rgba(213, 213, 213, 0.3);
}
@media (max-width: 667px) {
  .section-contact-book tbody tr:nth-child(even) td {
    background: none;
  }
}
.section-contact-book tbody a {
  font-weight: 300;
  color: #363636;
}

.ir-listing .table-presentations .report-date {
  padding-right: 30px;
}

.ir-search .filter-form-wrapper label {
  padding-left: 0;
}

.form-wrapper--sec .column {
  width: auto;
  flex-basis: auto;
}
.form-wrapper--sec .column:first-child {
  min-width: 220px;
  flex-grow: 1;
}
.form-wrapper--sec .column:nth-child(2),
.form-wrapper--sec .column:nth-child(3) {
  min-width: 160px;
  max-width: 160px;
  flex-grow: 1;
}
.form-wrapper--sec .clear-filters {
  margin-left: 0;
}

.form-wrapper--news .form-left {
  width: auto !important;
  min-width: 655px;
}
.form-wrapper--news .column:first-child {
  min-width: 220px;
  max-width: 400px;
}
.form-wrapper--news .column:nth-child(2) {
  max-width: 100px;
}

.widget-wrapper img {
  margin-bottom: 35px;
}
@media (max-width: 667px) {
  .widget-wrapper img {
    height: 100px;
  }
}
.widget-wrapper .ir-content__header {
  margin-bottom: 25px;
}
.widget-wrapper .ir-content__header .row {
  margin-left: -10px;
  margin-right: -10px;
}
.widget-wrapper .ir-content__header .row > div {
  width: 100%;
}
.widget-wrapper .ir-content__header .row > div:last-child {
  display: none;
}

.ir-page .corp-stock-lookup .row-grid > div {
  width: 100%;
}

.ir-page .corp-stock-large {
  padding-top: 0;
}
.ir-page .corp-stock-large .corp-stock-meta {
  display: block;
  font-weight: 300;
}
.ir-page .corp-stock-large .corp-stock-meta br {
  display: none;
}
.ir-page .corp-stock-large .corp-stock-price {
  margin-left: 0;
}
.ir-page .corp-stock-large .corp-stock-taxes {
  display: inline-flex;
  align-items: flex-end;
  top: -21px;
  position: relative;
}
@media (max-width: 667px) {
  .ir-page .corp-stock-large .corp-stock-taxes {
    top: 0px;
  }
}
.ir-page .corp-stock-large .corp-stock-taxes span {
  color: #363636;
  margin-right: 20px;
}
.ir-page .corp-stock-large .corp-stock-taxes i {
  font-style: normal;
  color: #26a742;
}
.ir-page .corp-stock-large .corp-stock-taxes i.red {
  color: #CE1141;
}
.ir-page .corp-stock-large .corp-stock-taxes small {
  max-width: 160px;
}

.fancybox-slide--iframe .fancybox-content {
  width: 500px !important;
  height: 600px !important;
  max-width: 90%;
  max-height: 90%;
  margin: 0;
  padding: 10px 30px;
}

.alert-popup-trigger {
  display: none;
}

/* Single IR Pages Styles */
.ir-page .rich-text {
  max-width: 100%;
}
.ir-page .shell {
  padding: 0;
}
.ir-page .shell > .row-grid {
  margin: 0;
}
.ir-page .shell > .row-grid > .col-lg-20 {
  margin-left: 0 !important;
  width: 100%;
  padding: 0;
}
@media (min-width: 1200px) {
  .ir-page .member .member-image {
    width: 33%;
  }
}
@media (max-width: 1023px) {
  .ir-page .member {
    padding-left: 0;
    padding-right: 0;
  }
}
.ir-page .table-members, .ir-page .tabs-members {
  margin-top: 60px;
}
.ir-page .member-extra-content > .row-grid > div {
  width: 100%;
}
.ir-page .release-content > p:first-child {
  margin-bottom: 30px !important;
}

@media (min-width: 668px) {
  .ir-columns .three-quarters {
    width: 83.333333%;
  }
  .ir-columns .one-quarter {
    width: 16.66666%;
  }
}

.event-content h6 a {
  text-decoration: underline;
}

.ir-page #stockDetails .table-result table {
  width: 100%;
}
.ir-page #stockDetails .table-result colgroup {
  display: none;
}
.ir-page #stockDetails .table-result td, .ir-page #stockDetails .table-result th {
  width: 50%;
}
.ir-page #stockDetails .table-result td:nth-child(2), .ir-page #stockDetails .table-result th:nth-child(2) {
  text-align: right;
}
.ir-page #stockDetails .table-result td:last-child, .ir-page #stockDetails .table-result th:last-child {
  display: none;
}
.ir-page #stockDetails .table-result td {
  border-bottom: 0;
  padding-bottom: 0;
}

.ir-listing__header {
  text-align: left;
  font-size: 30px;
  letter-spacing: 0.15px;
  color: #373A36;
  text-transform: uppercase;
  opacity: 1;
}
.ir-listing__header + .table-events {
  margin-top: 25px;
}

.form-wrapper--header {
  max-width: 100% !important;
  justify-content: space-between;
}
@media (min-width: 668px) and (max-width: 1024px) {
  .form-wrapper--header {
    display: block !important;
  }
}
.form-wrapper--header .ir-listing__header {
  min-width: 33.3333%;
  margin-top: 29px;
}
@media (min-width: 668px) and (max-width: 1024px) {
  .form-wrapper--header .ir-listing__header {
    width: 100%;
  }
}
.form-wrapper--header .form-content {
  display: flex;
  width: 100%;
}

.ir-listing + div {
  margin-top: 45px;
}

.ir-search--events {
  border-top: 1px solid #D5D5D5;
  padding-top: 15px;
}

@media (min-width: 668px) and (max-width: 1024px) {
  .ir-search .form-wrapper--sec .form-left {
    flex-wrap: wrap;
  }
  .ir-search .form-wrapper--sec .column:last-child {
    width: 100%;
  }
}
@media (max-width: 667px) {
  .ir-search .form-wrapper--sec .form-left {
    display: block;
    margin: 0;
    min-width: 0;
  }
  .ir-search .form-wrapper--sec .form-left .column {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    padding: 0;
  }
  .ir-search .form-wrapper--sec .form-left label {
    margin-top: 5px;
  }
  .ir-search .form-wrapper--sec .column:last-child {
    width: 100%;
  }
  .ir-search .form-wrapper--sec .clear-filters, .ir-search .form-wrapper--sec #searchSubmitButton {
    margin-top: 15px;
  }
}

.ir-listing .sort {
  display: inline-block;
  margin-left: 5px;
  height: 14px;
  width: 14px;
  position: relative;
  z-index: 10;
}
.ir-listing .sort > span {
  display: block;
  width: 12px;
  height: 8px;
  background: transparent url(../images/select-arrow.png) center center no-repeat;
  background-size: 10px 7px;
  content: "";
  cursor: pointer;
  position: absolute;
  bottom: -1px;
  left: 0;
}
.ir-listing .sort > span.asc {
  transform: rotate(180deg);
  bottom: auto;
  top: -1px;
}
.ir-listing thead th.active .sort > span.active {
  opacity: 0;
  pointer-events: none;
}

.form-wrapper textarea {
  height: 150px;
  font-size: 16px;
}

/*

    Quaterly Results

*/
.quaterly-results-row {
  display: flex;
  min-height: 180px;
  flex-wrap: wrap;
  border-top: 1px solid #D5D5D5;
  padding: 40px 0;
  padding-left: 240px;
  position: relative;
}
@media (max-width: 667px) {
  .quaterly-results-row {
    flex-wrap: wrap;
    padding-left: 0;
    min-height: 0;
  }
}
.quaterly-results-row > h3 {
  text-align: left;
  font-size: 80px;
  line-height: 1;
  letter-spacing: 0.4px;
  color: #373A36;
  text-transform: uppercase;
  width: 240px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -40px;
}
@media (max-width: 667px) {
  .quaterly-results-row > h3 {
    position: relative;
    top: auto;
    margin-top: 0;
    width: 100%;
    margin-bottom: 15px;
    font-size: 50px;
  }
}
.quaterly-results-item {
  width: 25%;
}
@media (min-width: 668px) and (max-width: 1024px) {
  .quaterly-results-item {
    width: 50%;
    min-width: 0;
  }
}
@media (max-width: 667px) {
  .quaterly-results-item {
    width: 50%;
    min-width: 0;
  }
}
.quaterly-results-item + .quaterly-results-item {
  padding-left: 15px;
  border-left: 1px solid #D5D5D5;
}
.quaterly-results-item .quaterly-results-item-header {
  margin-bottom: 20px;
}
.quaterly-results-item .quaterly-results-item-header h4 {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.2px;
  text-transform: uppercase;
}
.quaterly-results-item .quaterly-results-item-header h2 {
  display: none;
}
.quaterly-results-item .quaterly-results-item-actions {
  padding-top: 0;
}
.quaterly-results-item .quaterly-results-item-actions .list-actions {
  display: block;
}
.quaterly-results-item .quaterly-results-item-actions .list-actions li {
  margin-bottom: 15px;
}
.quaterly-results-item .quaterly-results-item-actions .list-actions li a span {
  top: -3px;
  position: relative;
}
.quaterly-results-item .quaterly-results-item-actions .list-actions li strong {
  display: inline-block;
}
@media (min-width: 668px) and (max-width: 1024px) {
  .quaterly-results-item .quaterly-results-item-actions .list-actions li {
    flex: 0 0 33.333333%;
  }
}
.quaterly-results-item .quaterly-results-item-actions .list-actions li + li {
  margin-top: 0;
}
.quaterly-results-item .report-date {
  margin-bottom: 0;
}

.ir-landing__box #latestConferenceCalls > div {
  width: 100% !important;
  margin: 0 !important;
  padding: 0;
}
.ir-landing__box #latestConferenceCalls .corp-box {
  background: none;
}
.ir-landing__box #latestConferenceCalls .corp-box-body {
  padding: 0;
}
.ir-landing__box .corp-box-body .list-actions strong {
  display: inline-block !important;
}

.ir-slider-stock__box .corp-stock-chart {
  margin-left: -15px;
}

/* 
   
    Post Launch Fixes 

*/
.ir-content {
  width: 100%;
  left: auto;
  float: none;
  color: #373A36;
}

.ir-content__header {
  padding-right: 0;
}

.ir-content__header p {
  font-weight: 300;
}

.easyPaginateNav {
  width: 100% !important;
}

.ir-landing__box .shell {
  margin: 0;
  max-width: 100%;
}

.ir-content__item .ico-microphone {
  background-position: -36em -8em !important;
}

.ir-content__item .list-actions a:hover {
  color: #ce1141 !important;
}

.ir-content__item .list-actions a:hover .ico-microphone {
  background-position: -38em -8em !important;
}

.ir-content .corp-stock-large .corp-stock-meta {
  color: #373a36;
}

.ir-content .corp-stock-large .corp-stock-price {
  color: #373a36;
  font-size: 72px;
}

.ir-page .corp-stock-large .corp-stock-taxes {
  margin-left: 30px;
}

.ir-page .corp-stock-large .corp-stock-taxes span {
  color: #373a36 !important;
}

@media (min-width: 1200px) {
  .ir-page .member .member-image {
    width: 45%;
  }
}
.ir-page .list-actions strong {
  display: none;
}

/* Corpo Stock Small */
.corp-stock-small .corp-stock-price .corp-stock-price-aside {
  text-align: right;
}
.corp-stock-small .corp-stock-price .corp-stock-price-aside span:first-child {
  color: #26a742;
}
.corp-stock-small .corp-stock-price .corp-stock-price-aside span:first-child.red {
  color: #CE1141;
}

/* Quick Fixes */
.ir-landing__box #latestConferenceCalls .list-actions strong {
  display: inline-block !important;
}

@media (max-width: 1024px) {
  .quaterly-results-item {
    padding-left: 15px;
    border-left: 1px solid #d5d5d5;
    margin: 7.5px 0;
  }
}
.corp-stock-header h5 {
  display: block;
  font-size: 14px;
  line-height: 1.29em;
  font-family: "Nord-Con", sans-serif;
  font-weight: 700;
}

.ir-content .corp-stock-large .corp-stock-header {
  margin-top: 10px;
}
.ir-content .corp-stock-large .corp-stock-header h5 {
  font-size: 16px;
}
.ir-content .corp-stock-large .corp-stock-price {
  line-height: 1;
}
