/* ------------------------------------------------------------ *\
	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;
    }
    .grid .column.single {
        display: block;
    }
}


.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: 1025px) {
    .one-sixth-stacked,
    .one-fifth-stacked {
        width: 16.66%;
    }
}

@media (min-width: 668px) and (max-width: 1024px) {
    .one-sixth-stacked,
    .one-fifth-stacked {
        width: 33.33%;
        padding-bottom: 10px;
        padding-top: 10px;
    }
}

@media (max-width: 667px) {
    .one-sixth-stacked,
    .one-fifth-stacked {
        width: 50%;
        padding-bottom: 10px;
        padding-top: 10px;
    }
}

@media (max-width: 668px) {
    .grid .column.one-sixth-stacked {
        display: inline-block;
        vertical-align: top;
    }
}

@media (max-width: 668px) {
    .grid .column.one-fifth-stacked {
        display: inline-block;
        vertical-align: top;
    }
}

@media (max-width: 667px) {
    .column.one-sixth-stacked + .column.one-sixth-stacked > .widget-wrapper {
        margin-top: 0px;
    }

        .column.one-sixth-stacked + .column.one-sixth-stacked > .widget-wrapper > .grey-background {
            margin-top: -0px;
        }
}

@media (max-width: 667px) {
    .column.one-fifth-stacked + .column.one-fifth-stacked > .widget-wrapper {
        margin-top: 0px;
    }

        .column.one-fifth-stacked + .column.one-fifth-stacked > .widget-wrapper > .grey-background {
            margin-top: -0px;
        }
}

@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,
#corporateTableCanvas {
    /* Track */
    /* Handle */
}

    .scrubber-scroll::-webkit-scrollbar,
    #corporateTableCanvas::-webkit-scrollbar {
        width: 35px;
        height: 35px;
    }

    .scrubber-scroll::-webkit-scrollbar-track,
    #corporateTableCanvas::-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,
    #corporateTableCanvas::-webkit-scrollbar-thumb {
        background: white;
        border: 1px solid #373a36;
        background-image: url("/Weatherford.com/content/images/scrubber-left.svg"), url("/Weatherford.com/content/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 */


/* ------------------------------------------------------------ *\
	Variables
\* ------------------------------------------------------------ */


/* Font Sizes */


/* ------------------------------------------------------------ *\
	Mixins
\* ------------------------------------------------------------ */

[class^="ico-"] {
    font-size: 16px;
    display: inline-block;
    vertical-align: middle;
}

.ico-arrow-down-grey {
    background: url(../images/sprite/ico-arrow-down-grey.png) no-repeat 0 0;
    background-size: 100% 100%;
    width: 15px;
    height: 18px;
    display: inline-block;
    vertical-align: middle;
    font-size: 0;
}

.ico-arrow-down-red {
    background: url(../images/sprite/ico-arrow-down-red.png) no-repeat 0 0;
    background-size: 100% 100%;
    width: 15px;
    height: 18px;
    display: inline-block;
    vertical-align: middle;
    font-size: 0;
}

.ico-arrow-down {
    background: url(../images/sprite/ico-arrow-down.png) no-repeat 0 0;
    background-size: 100% 100%;
    width: 15px;
    height: 18px;
    display: inline-block;
    vertical-align: middle;
    font-size: 0;
}

.ico-chairman {
    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: -2em -16em;
    width: 2.125em;
    height: 1.5625em;
}

@media screen and (min-width: 0\0) {
    .ico-chairman {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .ico-chairman {
    background-image: url(../images/icon-sprites-vector.svg);
}

.ico-close-large {
    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: -12em -16em;
    width: 1.0625em;
    height: 1.0625em;
}

@media screen and (min-width: 0\0) {
    .ico-close-large {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .ico-close-large {
    background-image: url(../images/icon-sprites-vector.svg);
}

.ico-close-small,
.form-wrapper .clear-filters:after {
    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: -6em -12em;
    width: 0.5625em;
    height: 0.5625em;
}

@media screen and (min-width: 0\0) {
    .ico-close-small,
    .form-wrapper .clear-filters:after {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .ico-close-small,
:root .form-wrapper .clear-filters:after {
    background-image: url(../images/icon-sprites-vector.svg);
}

.ico-close-small-red,
.form-wrapper .clear-filters:hover:after {
    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: -8em -12em;
    width: 0.5625em;
    height: 0.5625em;
}

@media screen and (min-width: 0\0) {
    .ico-close-small-red,
    .form-wrapper .clear-filters:hover:after {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .ico-close-small-red,
:root .form-wrapper .clear-filters:hover:after {
    background-image: url(../images/icon-sprites-vector.svg);
}

.ico-doc-alt {
    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 -8em;
    width: 1.625em;
    height: 1.875em;
}

@media screen and (min-width: 0\0) {
    .ico-doc-alt {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .ico-doc-alt {
    background-image: url(../images/icon-sprites-vector.svg);
}

.ico-doc-alt-white {
    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: -12em -24em;
    width: 1.625em;
    height: 1.875em;
}

@media screen and (min-width: 0\0) {
    .ico-doc-alt-white {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .ico-doc-alt-white {
    background-image: url(../images/icon-sprites-vector.svg);
}

.ico-doc-alt-yellow {
    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: -14em -24em;
    width: 1.625em;
    height: 1.875em;
}

@media screen and (min-width: 0\0) {
    .ico-doc-alt-yellow {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .ico-doc-alt-yellow {
    background-image: url(../images/icon-sprites-vector.svg);
}

.ico-doc {
    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: -24em -8em;
    width: 1.6875em;
    height: 1.875em;
}

@media screen and (min-width: 0\0) {
    .ico-doc {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .ico-doc {
    background-image: url(../images/icon-sprites-vector.svg);
}

.ico-doc-white {
    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: -6em -24em;
    width: 1.625em;
    height: 1.875em;
}

@media screen and (min-width: 0\0) {
    .ico-doc-white {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .ico-doc-white {
    background-image: url(../images/icon-sprites-vector.svg);
}

.ico-doc-yellow {
    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: -8em -24em;
    width: 1.625em;
    height: 1.875em;
}

@media screen and (min-width: 0\0) {
    .ico-doc-yellow {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .ico-doc-yellow {
    background-image: url(../images/icon-sprites-vector.svg);
}

.ico-document-outline-white {
    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: -22em -12em;
    width: 1.5625em;
    height: 1.5em;
}

@media screen and (min-width: 0\0) {
    .ico-document-outline-white {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .ico-document-outline-white {
    background-image: url(../images/icon-sprites-vector.svg);
}

.ico-document-outline-yellow,
.list-actions-white a:hover .ico-document-outline-white {
    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: -26em -12em;
    width: 1.5625em;
    height: 1.5em;
}

@media screen and (min-width: 0\0) {
    .ico-document-outline-yellow,
    .list-actions-white a:hover .ico-document-outline-white {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .ico-document-outline-yellow,
:root .list-actions-white a:hover .ico-document-outline-white {
    background-image: url(../images/icon-sprites-vector.svg);
}

.ico-document-outline {
    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: -40em -4em;
    width: 1.5em;
    height: 1.5em;
}

@media screen and (min-width: 0\0) {
    .ico-document-outline {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .ico-document-outline {
    background-image: url(../images/icon-sprites-vector.svg);
}

.ico-document-outline-red,
.link:hover .ico-document-outline,
.list-actions a:hover .ico-document-outline,
.links-document .links-document-actions a:hover .ico-document-outline,
#press-release a[href*="http://phx.corporate-ir.net/External.File"]:hover .ico-document-outline {
    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: -44em -4em;
    width: 1.5em;
    height: 1.5em;
}

@media screen and (min-width: 0\0) {
    .ico-document-outline-red,
    .link:hover .ico-document-outline,
    .list-actions a:hover .ico-document-outline,
    .links-document .links-document-actions a:hover .ico-document-outline,
    #press-release a[href*="http://phx.corporate-ir.net/External.File"]:hover .ico-document-outline {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .ico-document-outline-red,
:root .link:hover .ico-document-outline,
:root .list-actions a:hover .ico-document-outline,
:root .links-document .links-document-actions a:hover .ico-document-outline,
:root #press-release a[href*="http://phx.corporate-ir.net/External.File"]:hover .ico-document-outline {
    background-image: url(../images/icon-sprites-vector.svg);
}

.ico-excel {
    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: -32em -8em;
    width: 1.625em;
    height: 1.875em;
}

@media screen and (min-width: 0\0) {
    .ico-excel {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .ico-excel {
    background-image: url(../images/icon-sprites-vector.svg);
}

.ico-excel-white {
    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: -18em -24em;
    width: 1.625em;
    height: 1.875em;
}

@media screen and (min-width: 0\0) {
    .ico-excel-white {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .ico-excel-white {
    background-image: url(../images/icon-sprites-vector.svg);
}

.ico-excel-yellow {
    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: -20em -24em;
    width: 1.625em;
    height: 1.875em;
}

@media screen and (min-width: 0\0) {
    .ico-excel-yellow {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .ico-excel-yellow {
    background-image: url(../images/icon-sprites-vector.svg);
}

.ico-tick-yellow {
    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: -4em -20em;
    width: 0.625em;
    height: 0.5em;
}

@media screen and (min-width: 0\0) {
    .ico-tick-yellow {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .ico-tick-yellow {
    background-image: url(../images/icon-sprites-vector.svg);
}

.ico-link {
    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: -32em -4em;
    width: 1.5625em;
    height: 1.5625em;
}

@media screen and (min-width: 0\0) {
    .ico-link {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .ico-link {
    background-image: url(../images/icon-sprites-vector.svg);
}

.ico-link-white {
    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: -18em -12em;
    width: 1.5em;
    height: 1.5em;
}

@media screen and (min-width: 0\0) {
    .ico-link-white {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .ico-link-white {
    background-image: url(../images/icon-sprites-vector.svg);
}

.ico-link-yellow,
.list-actions-white a:hover .ico-link-white {
    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: -24em -12em;
    width: 1.5em;
    height: 1.5em;
}

@media screen and (min-width: 0\0) {
    .ico-link-yellow,
    .list-actions-white a:hover .ico-link-white {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .ico-link-yellow,
:root .list-actions-white a:hover .ico-link-white {
    background-image: url(../images/icon-sprites-vector.svg);
}

.ico-link-red,
.link:hover .ico-link,
.list-actions a:hover .ico-link,
.links-document .links-document-actions a:hover .ico-link,
#press-release a[href*="http://phx.corporate-ir.net/External.File"]:hover .ico-link {
    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: -34em -4em;
    width: 1.5625em;
    height: 1.5625em;
}

@media screen and (min-width: 0\0) {
    .ico-link-red,
    .link:hover .ico-link,
    .list-actions a:hover .ico-link,
    .links-document .links-document-actions a:hover .ico-link,
    #press-release a[href*="http://phx.corporate-ir.net/External.File"]:hover .ico-link {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .ico-link-red,
:root .link:hover .ico-link,
:root .list-actions a:hover .ico-link,
:root .links-document .links-document-actions a:hover .ico-link,
:root #press-release a[href*="http://phx.corporate-ir.net/External.File"]:hover .ico-link {
    background-image: url(../images/icon-sprites-vector.svg);
}

.ico-magnifier {
    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: -16em 0em;
    width: 1.5em;
    height: 1.5em;
}

@media screen and (min-width: 0\0) {
    .ico-magnifier {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .ico-magnifier {
    background-image: url(../images/icon-sprites-vector.svg);
}

.ico-marker {
    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: -6em -16em;
    width: 1.25em;
    height: 2em;
    margin-right: 5px;
}

@media screen and (min-width: 0\0) {
    .ico-marker {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .ico-marker {
    background-image: url(../images/icon-sprites-vector.svg);
}

.ico-member {
    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: 0em -16em;
    width: 1.125em;
    height: 1.5625em;
}

@media screen and (min-width: 0\0) {
    .ico-member {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .ico-member {
    background-image: url(../images/icon-sprites-vector.svg);
}

.ico-microphone {
    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: -36em -8em;
    width: 1.875em;
    height: 1.875em;
}

@media screen and (min-width: 0\0) {
    .ico-microphone {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .ico-microphone {
    background-image: url(../images/icon-sprites-vector.svg);
}

.ico-microphone-red,
.link:hover .ico-microphone,
.list-actions a:hover .ico-microphone,
.links-document .links-document-actions a:hover .ico-microphone,
#press-release a[href*="http://phx.corporate-ir.net/External.File"]:hover .ico-microphone {
    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 -8em;
    width: 1.875em;
    height: 1.875em;
}

@media screen and (min-width: 0\0) {
    .ico-microphone-red,
    .link:hover .ico-microphone,
    .list-actions a:hover .ico-microphone,
    .links-document .links-document-actions a:hover .ico-microphone,
    #press-release a[href*="http://phx.corporate-ir.net/External.File"]:hover .ico-microphone {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .ico-microphone-red,
:root .link:hover .ico-microphone,
:root .list-actions a:hover .ico-microphone,
:root .links-document .links-document-actions a:hover .ico-microphone,
:root #press-release a[href*="http://phx.corporate-ir.net/External.File"]:hover .ico-microphone {
    background-image: url(../images/icon-sprites-vector.svg);
}

.ico-microphone-white {
    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: -24em -24em;
    width: 1.875em;
    height: 1.875em;
}

@media screen and (min-width: 0\0) {
    .ico-microphone-white {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .ico-microphone-white {
    background-image: url(../images/icon-sprites-vector.svg);
}

.ico-microphone-yellow {
    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: -26em -24em;
    width: 1.875em;
    height: 1.875em;
}

@media screen and (min-width: 0\0) {
    .ico-microphone-yellow {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .ico-microphone-yellow {
    background-image: url(../images/icon-sprites-vector.svg);
}

.ico-minus-symbol {
    background: url(../images/sprite/ico-minus-symbol.png) no-repeat 0 0;
    background-size: 100% 100%;
    width: 16px;
    height: 16px;
    display: inline-block;
    vertical-align: middle;
    font-size: 0;
}

.ico-pdf-white {
    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: 0em -24em;
    width: 1.625em;
    height: 1.875em;
}

@media screen and (min-width: 0\0) {
    .ico-pdf-white {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .ico-pdf-white {
    background-image: url(../images/icon-sprites-vector.svg);
}

.ico-pdf-yellow,
.list-actions-white a:hover .ico-pdf-white {
    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: -2em -24em;
    width: 1.625em;
    height: 1.875em;
}

@media screen and (min-width: 0\0) {
    .ico-pdf-yellow,
    .list-actions-white a:hover .ico-pdf-white {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .ico-pdf-yellow,
:root .list-actions-white a:hover .ico-pdf-white {
    background-image: url(../images/icon-sprites-vector.svg);
}

.ico-pdf {
    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: -20em -8em;
    width: 1.625em;
    height: 1.875em;
}

@media screen and (min-width: 0\0) {
    .ico-pdf {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .ico-pdf {
    background-image: url(../images/icon-sprites-vector.svg);
}

.ico-pdf-red,
.link:hover .ico-pdf,
.list-actions a:hover .ico-pdf,
.links-document .links-document-actions a:hover .ico-pdf,
#press-release a[href*="http://phx.corporate-ir.net/External.File"]:hover .ico-pdf {
    background: transparent url(../images/sprite/ico-pdf-red.png) center center no-repeat;
    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: -22em -8em;
    width: 1.625em;
    height: 1.875em;
}

@media screen and (min-width: 0\0) {
    .ico-pdf-red,
    .link:hover .ico-pdf,
    .list-actions a:hover .ico-pdf,
    .links-document .links-document-actions a:hover .ico-pdf,
    #press-release a[href*="http://phx.corporate-ir.net/External.File"]:hover .ico-pdf {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .ico-pdf-red,
:root .link:hover .ico-pdf,
:root .list-actions a:hover .ico-pdf,
:root .links-document .links-document-actions a:hover .ico-pdf,
:root #press-release a[href*="http://phx.corporate-ir.net/External.File"]:hover .ico-pdf {
    background-image: url(../images/icon-sprites-vector.svg);
}

.ico-pin {
    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: -46em -4em;
    width: 2.5em;
    height: 1.625em;
    font-size: 12px;
}

@media screen and (min-width: 0\0) {
    .ico-pin {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .ico-pin {
    background-image: url(../images/icon-sprites-vector.svg);
}

.ico-play-large {
    background: url(../images/sprite/ico-play-large.png) no-repeat 0 0;
    background-size: 100% 100%;
    width: 72px;
    height: 50px;
    display: inline-block;
    vertical-align: middle;
    font-size: 0;
}

.ico-plus-symbol {
    background: url(../images/sprite/ico-plus-symbol.png) no-repeat 0 0;
    background-size: 100% 100%;
    width: 16px;
    height: 16px;
    display: inline-block;
    vertical-align: middle;
    font-size: 0;
}

.ico-rotate {
    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: -36em -4em;
    width: 1.5em;
    height: 1.5625em;
}

@media screen and (min-width: 0\0) {
    .ico-rotate {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .ico-rotate {
    background-image: url(../images/icon-sprites-vector.svg);
}

.ico-rotate-hover,
a:hover .ico-rotate,
button:hover .ico-rotate,
a.hover .ico-rotate,
button.hover .ico-rotate,
.ico-rotate.hover {
    background: url(../images/sprite/ico-rotate_hover.png) no-repeat 0 0;
    background-size: 100% 100%;
    width: 25px;
    height: 24px;
    display: inline-block;
    vertical-align: middle;
    font-size: 0;
}

.ico-song {
    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: -40em -8em;
    width: 1.5625em;
    height: 1.875em;
}

@media screen and (min-width: 0\0) {
    .ico-song {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .ico-song {
    background-image: url(../images/icon-sprites-vector.svg);
}

.ico-song-red,
.link:hover .ico-song,
.list-actions a:hover .ico-song,
.links-document .links-document-actions a:hover .ico-song,
#press-release a[href*="http://phx.corporate-ir.net/External.File"]:hover .ico-song {
    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: -42em -8em;
    width: 1.5625em;
    height: 1.875em;
}

@media screen and (min-width: 0\0) {
    .ico-song-red,
    .link:hover .ico-song,
    .list-actions a:hover .ico-song,
    .links-document .links-document-actions a:hover .ico-song,
    #press-release a[href*="http://phx.corporate-ir.net/External.File"]:hover .ico-song {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .ico-song-red,
:root .link:hover .ico-song,
:root .list-actions a:hover .ico-song,
:root .links-document .links-document-actions a:hover .ico-song,
:root #press-release a[href*="http://phx.corporate-ir.net/External.File"]:hover .ico-song {
    background-image: url(../images/icon-sprites-vector.svg);
}

.ico-song-white {
    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: -30em -24em;
    width: 1.5em;
    height: 1.875em;
}

@media screen and (min-width: 0\0) {
    .ico-song-white {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .ico-song-white {
    background-image: url(../images/icon-sprites-vector.svg);
}

.ico-song-yellow {
    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: -32em -24em;
    width: 1.5em;
    height: 1.875em;
}

@media screen and (min-width: 0\0) {
    .ico-song-yellow {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .ico-song-yellow {
    background-image: url(../images/icon-sprites-vector.svg);
}


/* NOT REQUIRED ? */

.ico-stop-sign {
    background: url(../images/sprite/ico-stop-sign.png) no-repeat 0 0;
    background-size: 100% 100%;
    width: 81px;
    height: 81px;
    display: inline-block;
    vertical-align: middle;
    font-size: 0;
}

.ico-hands {
    background: url(../images/sprite/ico-hands.png) no-repeat 0 0;
    background-size: 100% 100%;
    width: 74px;
    height: 80px;
    font-size: 0;
}

.ico-crowd {
    background: url(../images/sprite/ico-crowd.png) no-repeat 0 0;
    background-size: 100% 100%;
    width: 79px;
    height: 69px;
    font-size: 0;
}


/*@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
	.ico-arrow-down-grey { background: url(../images/sprite/ico-arrow-down-grey@2x.png) no-repeat 0 0; width: 15px; height: 18px; background-size: 100% 100%; display: inline-block; vertical-align: middle; font-size: 0; }
	.ico-arrow-down-red { background: url(../images/sprite/ico-arrow-down-red@2x.png) no-repeat 0 0; width: 15px; height: 18px; background-size: 100% 100%; display: inline-block; vertical-align: middle; font-size: 0; }
	.ico-arrow-down { background: url(../images/sprite/ico-arrow-down@2x.png) no-repeat 0 0; width: 15px; height: 18px; background-size: 100% 100%; display: inline-block; vertical-align: middle; font-size: 0; }
	.ico-chairman { background: url(../images/sprite/ico-chairman@2x.png) no-repeat 0 0; width: 34px; height: 24px; background-size: 100% 100%; display: inline-block; vertical-align: middle; font-size: 0; }
	.ico-close-large { background: url(../images/sprite/ico-close-large@2x.png) no-repeat 0 0; width: 17px; height: 17px; background-size: 100% 100%; display: inline-block; vertical-align: middle; font-size: 0; }
	.ico-crowd { background: url(../images/sprite/ico-crowd@2x.png) no-repeat 0 0; width: 79px; height: 69px; background-size: 100% 100%; display: inline-block; vertical-align: middle; font-size: 0; }
	.ico-doc-alt { background: url(../images/sprite/ico-doc-alt@2x.png) no-repeat 0 0; width: 26px; height: 30px; background-size: 100% 100%; display: inline-block; vertical-align: middle; font-size: 0; }
	.ico-doc { background: url(../images/sprite/ico-doc@2x.png) no-repeat 0 0; width: 26px; height: 30px; background-size: 100% 100%; display: inline-block; vertical-align: middle; font-size: 0; }
	.ico-document-outline-white { background: url(../images/sprite/ico-document-outline-white@2x.png) no-repeat 0 0; width: 24px; height: 24px; background-size: 100% 100%; display: inline-block; vertical-align: middle; font-size: 0; }
	.ico-document-outline { background: url(../images/sprite/ico-document-outline@2x.png) no-repeat 0 0; width: 24px; height: 24px; background-size: 100% 100%; display: inline-block; vertical-align: middle; font-size: 0; }
	.ico-excel { background: url(../images/sprite/ico-excel@2x.png) no-repeat 0 0; width: 26px; height: 30px; background-size: 100% 100%; display: inline-block; vertical-align: middle; font-size: 0; }
	.ico-hands { background: url(../images/sprite/ico-hands@2x.png) no-repeat 0 0; width: 74px; height: 80px; background-size: 100% 100%; display: inline-block; vertical-align: middle; font-size: 0; }
	.ico-link-white { background: url(../images/sprite/ico-link-white@2x.png) no-repeat 0 0; width: 24px; height: 24px; background-size: 100% 100%; display: inline-block; vertical-align: middle; font-size: 0; }
	.ico-link { background: url(../images/sprite/ico-link@2x.png) no-repeat 0 0; width: 24px; height: 24px; background-size: 100% 100%; display: inline-block; vertical-align: middle; font-size: 0; }
	.ico-link-red { background: url(../images/sprite/ico-link-red@2x.png) no-repeat 0 0; width: 24px; height: 24px; background-size: 100% 100%; display: inline-block; vertical-align: middle; font-size: 0; }
    .ico-magnifier { background: url(../images/sprite/ico-magnifier@2x.png) no-repeat 0 0; width: 24px; height: 24px; background-size: 100% 100%; display: inline-block; vertical-align: middle; font-size: 0; }
	.ico-marker { background: url(../images/sprite/ico-marker@2x.png) no-repeat 0 0; width: 20px; height: 30px; background-size: 100% 100%; display: inline-block; vertical-align: middle; font-size: 0; }
	.ico-member { background: url(../images/sprite/ico-member@2x.png) no-repeat 0 0; width: 26px; height: 26px; background-size: 100% 100%; display: inline-block; vertical-align: middle; font-size: 0; }
	.ico-microphone { background: url(../images/sprite/ico-microphone@2x.png) no-repeat 0 0; width: 32px; height: 30px; background-size: 100% 100%; display: inline-block; vertical-align: middle; font-size: 0; }
	.ico-minus-symbol { background: url(../images/sprite/ico-minus-symbol@2x.png) no-repeat 0 0; width: 16px; height: 16px; background-size: 100% 100%; display: inline-block; vertical-align: middle; font-size: 0; }
	.ico-pdf-white { background: url(../images/sprite/ico-pdf-white@2x.png) no-repeat 0 0; width: 26px; height: 30px; background-size: 100% 100%; display: inline-block; vertical-align: middle; font-size: 0; }
	.ico-pdf { background: url(../images/sprite/ico-pdf@2x.png) no-repeat 0 0; width: 26px; height: 30px; background-size: 100% 100%; display: inline-block; vertical-align: middle; font-size: 0; }
	.ico-pdf-red { background: url(../images/sprite/ico-pdf-red@2x.png) no-repeat 0 0; width: 26px; height: 30px; background-size: 100% 100%; display: inline-block; vertical-align: middle; font-size: 0; }
    .ico-pin { background: url(../images/sprite/ico-pin@2x.png) no-repeat 0 0; width: 30px; height: 20px; background-size: 100% 100%; display: inline-block; vertical-align: middle; font-size: 0; }
	.ico-play-large { background: url(../images/sprite/ico-play-large@2x.png) no-repeat 0 0; width: 72px; height: 50px; background-size: 100% 100%; display: inline-block; vertical-align: middle; font-size: 0; }
	.ico-plus-symbol { background: url(../images/sprite/ico-plus-symbol@2x.png) no-repeat 0 0; width: 16px; height: 16px; background-size: 100% 100%; display: inline-block; vertical-align: middle; font-size: 0; }
	.ico-rotate { background: url(../images/sprite/ico-rotate@2x.png) no-repeat 0 0; width: 25px; height: 24px; background-size: 100% 100%; display: inline-block; vertical-align: middle; font-size: 0; }
	.ico-rotate-hover, a:hover .ico-rotate, button:hover .ico-rotate, a.hover .ico-rotate, button.hover .ico-rotate, .ico-rotate.hover { background: url(../images/sprite/ico-rotate_hover@2x.png) no-repeat 0 0; width: 25px; height: 24px; background-size: 100% 100%; display: inline-block; vertical-align: middle; font-size: 0; }
	.ico-song { background: url(../images/sprite/ico-song@2x.png) no-repeat 0 0; width: 24px; height: 30px; background-size: 100% 100%; display: inline-block; vertical-align: middle; font-size: 0; }
	.ico-stop-sign { background: url(../images/sprite/ico-stop-sign@2x.png) no-repeat 0 0; width: 81px; height: 81px; background-size: 100% 100%; display: inline-block; vertical-align: middle; font-size: 0; }}*/


/* ------------------------------------------------------------ *\
	Base
\* ------------------------------------------------------------ */

*,
*:before,
*:after {
    padding: 0;
    margin: 0;
    outline: 0;
    box-sizing: border-box;
}

body {
    min-width: 320px;
    background: #fff;
    font-size: 16px;
    font-family: "Roboto", sans-serif;
    line-height: 1.38;
    color: #373a36;
    margin: 0;
}

img {
    border: 0;
    border: none;
    max-width: 100%;
    height: auto;
}

    img.circle {
        border-radius: 50%;
    }

html.fixed {
    overflow-y: hidden;
}

ul,
ol {
    list-style: none;
    padding-left: 0;
}


/*
a {
	& {
		text-decoration: none;
		color: inherit;
	}

	&:hover {
		text-decoration: none;
		color: #000;
	}
}
a[href^="tel"] { text-decoration: none; }
*/

a:hover {
    color: #ce1141;
    text-decoration: underline;
}

ul {
    list-style-type: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: calc($base-line-height / 2);
}

h1 {
    font-size: 48px;
}

h2 {
    font-size: 42px;
}

h4 {
    font-size: 28px;
}

h5 {
    font-size: 24px;
}

h6 {
    font-size: 18px;
}

p,
ul,
ol,
dl,
table,
blockquote {
    margin-bottom: 1.38;
}


/* ------------------------------------------------------------ *\
	Helpers
\* ------------------------------------------------------------ */

.alignright {
    float: right;
}

.alignleft {
    float: left;
}

.hidden {
    display: none !important;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}


/*  Grid  */

.cols {
    margin: 0 -10px;
}

    .cols:after {
        content: '';
        line-height: 0;
        display: table;
        clear: both;
    }

.col {
    float: left;
    width: 100%;
    padding: 0 15px;
}

.col-alt {
    padding: 0 35px;
}

@media (max-width: 1250px) {
    .col-alt {
        padding: 0 15px;
    }
}

.col-right {
    float: right;
}

.col-1of2 {
    width: 50%;
}

@media (max-width: 667px) {
    .col-1of2 {
        width: 100%;
    }
}

.col-1of3 {
    width: 33.33%;
}

@media (max-width: 667px) {
    .col-1of3 {
        width: 100%;
    }
}

.col-1of4 {
    width: 25%;
}

.row {
    margin: 0 -15px;
}

    .row:after {
        content: '';
        line-height: 0;
        display: table;
        clear: both;
    }

.row-alt {
    margin: 0 -35px;
}

@media (max-width: 1250px) {
    .row-alt {
        margin: 0 -15px;
    }
}

@media (max-width: 1200px) {
    .pull-gutter-right {
        margin-right: -310px;
    }
}

@media (max-width: 667px) {
    .pull-gutter-right {
        margin-right: 0;
    }
}

.visible-xs-block {
    display: none !important;
}

@media (max-width: 667px) {
    .hidden-xs {
        display: none !important;
    }

    .visible-xs-block {
        display: block !important;
    }

    .visible-xs-inline {
        display: inline !important;
    }

    .visible-xs-inline-block {
        display: inline-block !important;
    }

    .col-mobile-12 {
        width: 100% !important;
    }
}

@media (min-width: calc($mobile+1px)) and (max-width: 1023px) {
    .hidden-sm {
        display: none !important;
    }

    .visible-sm-block {
        display: block !important;
    }

    .visible-sm-inline {
        display: inline !important;
    }

    .visible-sm-inline-block {
        display: inline-block !important;
    }
}

@media (min-width: 1024px) and (max-width: 1200px) {
    .hidden-md {
        display: none !important;
    }

    .visible-md-block {
        display: block !important;
    }

    .visible-md-inline {
        display: inline !important;
    }

    .visible-md-inline-block {
        display: inline-block !important;
    }
}

@media (min-width: 1200px) {
    .hidden-lg {
        display: none !important;
    }

    .visible-lg-block {
        display: block !important;
    }

    .visible-lg-inline {
        display: inline !important;
    }

    .visible-lg-inline-block {
        display: inline-block !important;
    }
}


/* ------------------------------------------------------------ *\
	Section
\* ------------------------------------------------------------ */

.section {
    background: #f8f8f8;
    padding: 50px 0 60px;
}

@media (max-width: 667px) {
    .section {
        padding: 60px 0 56px;
    }
}

.column .section {
    padding: 30px 30px 40px;
}

@media (max-width: 667px) {
    .column .section {
        padding: 30px 15px 30px;
    }
}

.section-content-default {
    padding-top: 30px;
}

@media (max-width: 1023px) {
    .section-content-default {
        padding-top: 0;
    }
}

.section-content-default h2 {
    font-size: 50px;
    line-height: 0.84;
    color: #ce1141;
    font-weight: 400;
    font-family: "Nord-Con", sans-serif;
    text-transform: uppercase;
    margin: 0 0 30px;
}

    .section-content-default h2 strong {
        font-weight: 700;
        display: block;
    }

@media (max-width: 667px) {
    .section-content-default h2 {
        font-size: 40px;
        line-height: 0.9;
    }
}

.section-content-default h5 {
    font-size: 20px;
    line-height: 1.3;
    color: #373a36;
    margin: 0 0 30px;
    font-weight: 300;
}

.section-content-default p {
    font-size: 16px;
    line-height: 1.38;
    color: #373a36;
    margin: 0 0 30px;
    font-weight: 300;
}

.section-title-default {
    margin-bottom: 60px;
    margin-top: 0;
    line-height: .9;
    font-size: 20px;
}

@media (max-width: 767px) {
    .section-title-default {
        line-height: 1.1;
    }
}

h3.section-title-default {
    font-size: 20px;
    line-height: 1;
    margin-bottom: 40px;
}


/* ------------------------------------------------------------ *\
	CORP_GENERAL
\* ------------------------------------------------------------ */

.section-corp-general {
    background: white;
    padding: 85px 0 55px;
}

    .section-corp-general.grey-background {
        background-color: #f8f8f8;
    }

    .section-corp-general .section-image,
    .section-corp-general .section-content-default {
        margin-bottom: 30px;
    }

    .section-corp-general .section-instructions {
        margin-top: 30px;
        font-weight: 500;
    }

    .section-corp-general .section-image img {
        width: 100%;
        height: auto;
    }

    .section-corp-general .section-content-default {
        padding-top: 0;
    }

        .section-corp-general .section-content-default .section-title-default {
            font-family: "Nord-Con", sans-serif;
            font-size: 20px;
            line-height: 1.1;
            color: #373a36;
            font-weight: 700;
        }

        .section-corp-general .section-content-default .title-with-border:after {
            width: 40px;
        }

@media (max-width: 667px) {
    .section-corp-general {
        padding: 65px 0;
    }

        .section-corp-general .pull-right {
            float: none !important;
        }
}


/* ------------------------------------------------------------ *\
	CORP_CONTAINER_JUMPTO
\* ------------------------------------------------------------ */

@media (min-width: 668px) {
    .section-corp-container-jumpto .widget-wrapper {
        padding-top: 85px;
    }
}

@media (max-width: 667px) {
    .section-corp-container-jumpto .widget-wrapper {
        padding-top: 65px;
    }
}


/* ------------------------------------------------------------ *\
	Section Article
\* ------------------------------------------------------------ */

.section-article {
    padding: 50px;
}

    .section-article.white {
        background: white;
    }

    .section-article h2 {
        margin-bottom: 34px;
        font-family: "Nord-Con", sans-serif, sans-serif;
        font-size: 40px;
        line-height: .95;
        color: #363636;
        font-weight: 300;
        letter-spacing: -.01em;
    }

    .section-article p {
        margin-bottom: 21px;
        font-size: 16px;
        line-height: 1.38;
        font-weight: 300;
        color: #373a36;
    }

    .section-article a {
        font-size: 14px;
        line-height: 1.7;
        font-weight: 500;
        color: #363636;
        -moz-transition: opacity 0.3s ease;
        -o-transition: opacity 0.3s ease;
        -webkit-transition: opacity 0.3s ease;
        transition: opacity 0.3s ease;
    }

    .section-article h4.title-with-border:after {
        width: 40px;
    }

    .section-article .section-image img {
        width: 100%;
        height: auto;
    }

    .section-article .section-content {
        padding-bottom: 28px;
    }

@media (max-width: 1023px) {
    .section-article {
        padding: 20px;
    }
}

@media (max-width: 667px) {
    .section-article {
        padding: 37px 20px;
    }
}


/* ------------------------------------------------------------ *\
	Section-Contact-Book
\* ------------------------------------------------------------ */

.section-contact-book {
    padding-left: 50px;
    text-align: left;
}

@media (max-width: 1200px) {
    .section-contact-book .list-alphabet ul {
        text-align: left;
    }
}

@media (max-width: 1023px) {
    .section-contact-book {
        padding-left: 30px;
    }
}

@media (max-width: 667px) {
    .section-contact-book {
        padding-left: 0;
    }
}


/* ------------------------------------------------------------ *\
	Section-Result
\* ------------------------------------------------------------ */

.section-result .section-title {
    padding-top: 20px;
}

@media (max-width: 667px) {
    .section-result .section-title {
        margin-bottom: 20px;
    }
}


/* ------------------------------------------------------------ *\
	Section-L1-Mod
\* ------------------------------------------------------------ */

.section-l1-mod {
    padding: 58px 0 61px;
    background-image: linear-gradient(267deg, #F8F8F8 -13%, #F8F8F8 28.68%, #BABABA 80.76%, #BABABA 113%);
}

@media (max-width: 667px) {
    .section-l1-mod {
        overflow: hidden;
    }
}

.section-l1-mod:not(:last-of-type) {
    margin-bottom: 30px;
}

.section-l1-mod .shell > .row {
    transform: translateX(-310px);
}

.section-l1-mod h3 {
    font-size: 40px;
    line-height: 0.85;
    font-family: "Nord-Con", sans-serif;
    font-weight: 300;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    margin: 0 0 30px;
}

    .section-l1-mod h3 strong {
        font-weight: 700;
    }

        .section-l1-mod h3 strong.red {
            color: #ce1141;
        }

        .section-l1-mod h3 strong.white {
            color: #fff;
        }

.section-l1-mod .rich-text p {
    margin: 0 0 20px;
    font-size: 20px;
    line-height: 1.3;
    color: #373a36;
    font-weight: 300;
    font-family: "Roboto", sans-serif;
}

.section-l1-mod .section-image {
    height: 308px;
    padding: 32px 0;
    border-right: 1px solid #373a36;
    -moz-transform: skewX(7deg);
    -ms-transform: skewX(7deg);
    -webkit-transform: skewX(7deg);
    transform: skewX(7deg);
    overflow: hidden;
}

    .section-l1-mod .section-image img {
        max-height: 244px;
    }

    .section-l1-mod .section-image:hover .section-image-inner {
        -moz-transform: skewX(-7deg) translate(20px, -50%);
        -ms-transform: skewX(-7deg) translate(20px, -50%);
        -webkit-transform: skewX(-7deg) translate(20px, -50%);
        transform: skewX(-7deg) translate(20px, -50%);
    }

.section-l1-mod .section-image-inner {
    position: relative;
    top: 50%;
    -moz-transform: skewX(-7deg) translate(70px, -50%);
    -ms-transform: skewX(-7deg) translate(70px, -50%);
    -webkit-transform: skewX(-7deg) translate(70px, -50%);
    transform: skewX(-7deg) translate(70px, -50%);
    float: right;
    -moz-transition: -moz-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: -o-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-l1-mod.section-l1-mod-dark {
    background-color: #000;
    background-image: linear-gradient(267deg, #3A3A3A 5%, #000 80%);
}

    .section-l1-mod.section-l1-mod-dark p,
    .section-l1-mod.section-l1-mod-dark h3 {
        color: #b0b0b0;
    }

    .section-l1-mod.section-l1-mod-dark strong.red {
        color: white;
    }

    .section-l1-mod.section-l1-mod-dark .section-image {
        border-color: white;
        backface-visibility: hidden;
    }

    .section-l1-mod.section-l1-mod-dark .title-with-border {
        color: white;
    }

        .section-l1-mod.section-l1-mod-dark .title-with-border:after {
            background-color: white;
        }

    .section-l1-mod.section-l1-mod-dark .link,
    .section-l1-mod.section-l1-mod-dark .list-actions a,
    .list-actions .section-l1-mod.section-l1-mod-dark a,
    .section-l1-mod.section-l1-mod-dark .links-document .links-document-actions a,
    .links-document .links-document-actions .section-l1-mod.section-l1-mod-dark a,
    .section-l1-mod.section-l1-mod-dark #press-release a[href*="http://phx.corporate-ir.net/External.File"],
    #press-release .section-l1-mod.section-l1-mod-dark a[href*="http://phx.corporate-ir.net/External.File"] {
        color: white;
        text-decoration: none;
    }

        .section-l1-mod.section-l1-mod-dark .link:before,
        .section-l1-mod.section-l1-mod-dark .list-actions a:before,
        .list-actions .section-l1-mod.section-l1-mod-dark a:before,
        .section-l1-mod.section-l1-mod-dark .links-document .links-document-actions a:before,
        .links-document .links-document-actions .section-l1-mod.section-l1-mod-dark a:before,
        .section-l1-mod.section-l1-mod-dark #press-release a[href*="http://phx.corporate-ir.net/External.File"]:before,
        #press-release .section-l1-mod.section-l1-mod-dark a[href*="http://phx.corporate-ir.net/External.File"]:before {
            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: -22em -12em;
            width: 1.5625em;
            height: 1.5em;
        }

@media screen and (min-width: 0\0) {
    .section-l1-mod.section-l1-mod-dark .link:before,
    .section-l1-mod.section-l1-mod-dark .list-actions a:before,
    .list-actions .section-l1-mod.section-l1-mod-dark a:before,
    .section-l1-mod.section-l1-mod-dark .links-document .links-document-actions a:before,
    .links-document .links-document-actions .section-l1-mod.section-l1-mod-dark a:before,
    .section-l1-mod.section-l1-mod-dark #press-release a[href*="http://phx.corporate-ir.net/External.File"]:before,
    #press-release .section-l1-mod.section-l1-mod-dark a[href*="http://phx.corporate-ir.net/External.File"]:before {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .section-l1-mod.section-l1-mod-dark .link:before,
.section-l1-mod.section-l1-mod-dark :root .list-actions a:before,
:root .list-actions .section-l1-mod.section-l1-mod-dark a:before,
.section-l1-mod.section-l1-mod-dark :root .links-document .links-document-actions a:before,
:root .links-document .links-document-actions .section-l1-mod.section-l1-mod-dark a:before,
.section-l1-mod.section-l1-mod-dark :root #press-release a[href*="http://phx.corporate-ir.net/External.File"]:before,
:root #press-release .section-l1-mod.section-l1-mod-dark a[href*="http://phx.corporate-ir.net/External.File"]:before {
    background-image: url(../images/icon-sprites-vector.svg);
}

.section-l1-mod.section-l1-mod-dark .link:hover,
.section-l1-mod.section-l1-mod-dark .list-actions a:hover,
.list-actions .section-l1-mod.section-l1-mod-dark a:hover,
.section-l1-mod.section-l1-mod-dark .links-document .links-document-actions a:hover,
.links-document .links-document-actions .section-l1-mod.section-l1-mod-dark a:hover,
.section-l1-mod.section-l1-mod-dark #press-release a[href*="http://phx.corporate-ir.net/External.File"]:hover,
#press-release .section-l1-mod.section-l1-mod-dark a[href*="http://phx.corporate-ir.net/External.File"]:hover {
    color: #efdf00;
}

    .section-l1-mod.section-l1-mod-dark .link:hover:before,
    .section-l1-mod.section-l1-mod-dark .list-actions a:hover:before,
    .list-actions .section-l1-mod.section-l1-mod-dark a:hover:before,
    .section-l1-mod.section-l1-mod-dark .links-document .links-document-actions a:hover:before,
    .links-document .links-document-actions .section-l1-mod.section-l1-mod-dark a:hover:before,
    .section-l1-mod.section-l1-mod-dark #press-release a[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    #press-release .section-l1-mod.section-l1-mod-dark a[href*="http://phx.corporate-ir.net/External.File"]:hover:before {
        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: -26em -12em;
        width: 1.5625em;
        height: 1.5em;
    }

@media screen and (min-width: 0\0) {
    .section-l1-mod.section-l1-mod-dark .link:hover:before,
    .section-l1-mod.section-l1-mod-dark .list-actions a:hover:before,
    .list-actions .section-l1-mod.section-l1-mod-dark a:hover:before,
    .section-l1-mod.section-l1-mod-dark .links-document .links-document-actions a:hover:before,
    .links-document .links-document-actions .section-l1-mod.section-l1-mod-dark a:hover:before,
    .section-l1-mod.section-l1-mod-dark #press-release a[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    #press-release .section-l1-mod.section-l1-mod-dark a[href*="http://phx.corporate-ir.net/External.File"]:hover:before {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .section-l1-mod.section-l1-mod-dark .link:hover:before,
.section-l1-mod.section-l1-mod-dark :root .list-actions a:hover:before,
:root .list-actions .section-l1-mod.section-l1-mod-dark a:hover:before,
.section-l1-mod.section-l1-mod-dark :root .links-document .links-document-actions a:hover:before,
:root .links-document .links-document-actions .section-l1-mod.section-l1-mod-dark a:hover:before,
.section-l1-mod.section-l1-mod-dark :root #press-release a[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
:root #press-release .section-l1-mod.section-l1-mod-dark a[href*="http://phx.corporate-ir.net/External.File"]:hover:before {
    background-image: url(../images/icon-sprites-vector.svg);
}

@media (max-width: 667px) {
    .section-l1-mod {
        padding: 27px 0;
    }

        .section-l1-mod h3 {
            font-size: 22px;
            letter-spacing: -0.01em;
            padding-right: 20px;
        }

        .section-l1-mod .section-image {
            height: 140px;
            padding: 15px 0;
        }

            .section-l1-mod .section-image img {
                max-height: 120px;
                width: auto;
            }

        .section-l1-mod .section-image-inner {
            -moz-transform: skewX(-7deg) translate(20px, -50%);
            -ms-transform: skewX(-7deg) translate(20px, -50%);
            -webkit-transform: skewX(-7deg) translate(20px, -50%);
            transform: skewX(-7deg) translate(20px, -50%);
        }

        .section-l1-mod .section-image:hover .section-image-inner {
            -moz-transform: skewX(-7deg) translate(0px, -50%);
            -ms-transform: skewX(-7deg) translate(0px, -50%);
            -webkit-transform: skewX(-7deg) translate(0px, -50%);
            transform: skewX(-7deg) translate(0px, -50%);
        }

        .section-l1-mod .row.side-by-side {
            display: -webkit-flex;
            display: flex;
        }

            .section-l1-mod .row.side-by-side > div[class^="col"] {
                display: -webkit-flex;
                display: flex;
                -webkit-align-items: center;
                align-items: center;
                float: none;
            }

                .section-l1-mod .row.side-by-side > div[class^="col"] h3 {
                    margin-bottom: 0;
                }
}


/* ------------------------------------------------------------ *\
	Section Investor
\* ------------------------------------------------------------ */

.section-investor {
    background: #f8f8f8;
    padding-bottom: 100px;
}

    .section-investor .shell:after {
        content: '';
        line-height: 0;
        display: table;
        clear: both;
    }

    .section-investor .section-inner {
        position: relative;
        width: 679px;
        background-size: cover;
        background-position: center center;
        padding: 243px 0 100px;
        text-align: right;
        float: left;
    }

        .section-investor .section-inner:before {
            position: absolute;
            top: 0;
            right: 0;
            content: '';
            width: 100px;
            height: 243px;
            background: #f8f8f8;
        }

        .section-investor .section-inner:after {
            position: absolute;
            bottom: 0;
            right: 0;
            content: '';
            width: 100px;
            height: 100px;
            background: #f8f8f8;
        }

@media (max-width: 1200px) {
    .section-investor .section-inner {
        width: 95%;
        padding: 150px 0;
    }

        .section-investor .section-inner:before,
        .section-investor .section-inner:after {
            height: 150px;
        }
}

@media (max-width: 1023px) {
    .section-investor .section-inner {
        width: 95%;
        margin-bottom: 30px;
    }

        .section-investor .section-inner:before,
        .section-investor .section-inner:after {
            width: 60px;
        }
}

@media (max-width: 667px) {
    .section-investor .section-inner {
        width: 100%;
        padding: 0;
        height: 600px;
        margin-bottom: 15px;
    }

        .section-investor .section-inner:before,
        .section-investor .section-inner:after {
            display: none;
        }
}

.section-investor .section-inner-content {
    background: rgba(0, 0, 0, 0.5);
    max-width: 381px;
    width: 100%;
    padding: 24px 50px 29px;
    display: inline-block;
    color: #fff;
    text-align: left;
}

    .section-investor .section-inner-content h3 {
        font-size: 20px;
        line-height: 18px;
        font-family: "Nord-Con", sans-serif;
        text-transform: uppercase;
        font-weight: 700;
        margin: 0 0 40px 0;
        position: relative;
    }

        .section-investor .section-inner-content h3:before {
            display: block;
            position: absolute;
            bottom: -15px;
            left: 0;
            width: 40px;
            height: 2px;
            border-top: 2px solid;
            border-color: inherit;
            content: "";
        }

    .section-investor .section-inner-content p {
        font-size: 16px;
        line-height: 22px;
        font-weight: 300;
    }

@media (max-width: 1023px) {
    .section-investor .section-inner-content {
        padding: 20px;
        max-width: 310px;
    }
}

@media (max-width: 667px) {
    .section-investor .section-inner-content {
        max-width: 100%;
        position: absolute;
        bottom: 0;
        left: 0;
    }
}

@media (max-width: 1200px) {
    .section-investor {
        padding-bottom: 60px;
    }
}

@media (max-width: 667px) {
    .section-investor {
        padding: 0 0 30px;
    }
}


/* ----- Section Header Link ----- */

.section-title-link-container .section-title-link {
    text-decoration: none;
}

    .section-title-link-container .section-title-link .section-title-default {
        color: #ce1141;
        display: inline-block;
        text-decoration: none;
    }

        .section-title-link-container .section-title-link .section-title-default:after {
            background: #ce1141;
        }

.remove-top-spacing-50, .shell.remove-top-spacing-50 {
    margin-top: -50px;
}

/* ------------------------------------------------------------ *\
	Shell
\* ------------------------------------------------------------ */

.shell {
    max-width: calc(1180px + 30px);
    padding-left: 15px;
    padding-right: 15px;
    margin: auto;
}

    .shell:after {
        content: '';
        clear: both;
        display: table;
        font-size: 0;
    }

.shell-small {
    max-width: calc(480px + 30px);
}

.shell-580 {
    max-width: calc(580px + 30px);
}

.shell-xsmall {
    max-width: calc(780px + 30px);
}

.shell-medium {
    max-width: calc(980px + 30px);
}

.shell-large {
    max-width: calc(1080px + 30px);
}

.shell-fluid {
    max-width: none;
}

.shell-alt {
    padding-left: 20px;
    padding-right: 20px;
}

.shell + .link,
.list-actions .shell + a,
.links-document .links-document-actions .shell + a,
#press-release .shell + a[href*="http://phx.corporate-ir.net/External.File"] {
    margin-top: 60px;
}

@media (max-width: 667px) {
    .shell {
        padding: 0 20px;
    }

        .shell .shell {
            padding-left: 0;
            padding-right: 0;
        }

    .shell-alt {
        padding-left: 20px;
        padding-right: 20px;
    }
}


/* ------------------------------------------------------------ *\
	Article
\* ------------------------------------------------------------ */

.article-excerpt-alt {
    background: #fff;
    margin-bottom: 30px;
    padding: 30px 15px;
}

    .article-excerpt-alt .article-title {
        margin: 0 0 50px;
        font-size: 20px;
        line-height: 1.1;
    }

    .article-excerpt-alt .article__head {
        padding: 0 16px;
    }

    .article-excerpt-alt .article-image {
        margin-bottom: 25px;
        padding: 0;
        text-align: center;
        min-height: 173px;
        display: table;
        width: 100%;
    }

        .article-excerpt-alt .article-image a {
            display: block;
            height: 100%;
            display: table-cell;
            vertical-align: middle;
            text-align: center;
        }

@media (max-width: 1023px) {
    .article-excerpt-alt .article-image {
        /*min-height: 0;*/
    }
}

.article-excerpt-alt .article-entry {
    min-height: 72px;
    padding: 0 15px 15px;
}

    .article-excerpt-alt .article-entry a {
        display: block;
    }

    .article-excerpt-alt .article-entry span,
    .article-excerpt-alt .article-entry strong {
        display: block;
        font-size: 16px;
        line-height: 1.38;
        font-weight: 700;
        color: #373a36;
        margin-bottom: 5px;
    }

    .article-excerpt-alt .article-entry span {
        font-size: 14px;
        line-height: 1.71;
        font-weight: 300;
        margin: 0;
    }

.article-excerpt-alt .article-actions {
    min-height: 140px;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

    .article-excerpt-alt .article-actions .list-actions {
        margin: 0;
    }

        .article-excerpt-alt .article-actions .list-actions + .list-actions {
            margin-top: 10px;
        }


/* ------------------------------------------------------------ *\
	Article-Award
\* ------------------------------------------------------------ */

.article-award {
    border: 1px solid #e6e6e6;
    overflow: hidden;
    position: relative;
    height: 310px;
}

    .article-award .overlay-content,
    .article-award .article-image {
        height: 238px;
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
    }

    .article-award .article-image {
        border-bottom: 1px solid #e6e6e6;
    }

    .article-award .overlay {
        overflow: hidden;
        position: absolute;
        bottom: 100%;
        left: 0;
        width: 100%;
        height: 100%;
        background: #373a36;
        transition: bottom .3s;
    }

    .article-award:hover .overlay {
        bottom: 0;
    }

    .article-award .overlay-content {
        background: #373a36;
        color: #fff;
        padding: 30px;
    }

        .article-award .overlay-content h3 {
            font-size: 30px;
            line-height: 1;
            font-family: "Nord-Con", sans-serif;
            font-weight: 700;
            text-transform: uppercase;
            margin: 0 0 20px;
        }

        .article-award .overlay-content h2 {
            font-size: 40px;
            font-weight: 300;
            line-height: 1;
            letter-spacing: -0.01em;
            margin: 0 0 20px;
            font-family: "Nord-Con", sans-serif;
        }

            .article-award .overlay-content h2 strong {
                font-weight: 700;
            }

        .article-award .overlay-content h5 {
            font-size: 24px;
            line-height: 1;
            font-weight: 300;
            font-family: "Nord-Con", sans-serif;
            text-transform: uppercase;
        }

        .article-award .overlay-content h6 {
            margin: 0 0 10px;
            padding: 0 0 10px;
            font-family: "Nord-Con", sans-serif;
            font-size: 20px;
            line-height: 1.1;
            color: #f9f8f8;
            font-weight: 700;
            text-transform: uppercase;
            position: relative;
        }

            .article-award .overlay-content h6:after {
                position: absolute;
                bottom: 0;
                left: 0;
                content: '';
                width: 40px;
                height: 2px;
                background: #fff;
            }

        .article-award .overlay-content > span {
            display: block;
            margin-bottom: 10px;
            font-family: "Nord-Con", sans-serif;
            font-size: 28px;
            line-height: 1.13;
            color: #f9f8f8;
            font-weight: 300;
            letter-spacing: -.01em;
        }

            .article-award .overlay-content > span.overlay-content-title {
                font-size: 22px;
                line-height: 20px;
                line-height: 1.1;
                margin-bottom: 5px;
            }

@media (min-width: 668px) {
    .article-award .overlay-content > span.overlay-content-title {
        font-size: 28px;
        line-height: 26px;
    }
}

.article-award .overlay-content > span.overlay-content-description {
    font-family: "Roboto", sans-serif;
    font-size: 15px;
    line-height: 20px;
    font-weight: 300;
    margin-bottom: 5px;
}

@media (min-width: 668px) {
    .article-award .overlay-content > span.overlay-content-description {
        font-size: 16px;
        line-height: 22px;
    }
}

.article-award .overlay-content > span.overlay-content-result {
    text-transform: uppercase;
    font-size: 18px;
    line-height: 16px;
    font-weight: 300;
    margin-top: 8px;
}

@media (min-width: 668px) {
    .article-award .overlay-content > span.overlay-content-result {
        font-size: 24px;
        line-height: 22px;
    }
}

.article-award .overlay-content > address {
    font-size: 16px;
    line-height: 1.38;
    color: #f9f8f8;
    font-weight: 300;
}

.article-award .article-title,
.article-award .overlay-actions {
    height: 71px;
    display: table;
    width: 100%;
}

    .article-award .article-title .list-actions,
    .article-award .article-title .article-title-inner,
    .article-award .overlay-actions .list-actions,
    .article-award .overlay-actions .article-title-inner {
        display: table-cell;
        vertical-align: middle;
        padding: 0 30px;
    }

    .article-award .article-title .article-title-inner,
    .article-award .overlay-actions .article-title-inner {
        background-color: white;
    }

    .article-award .article-title .article-title-inner,
    .article-award .overlay-actions .article-title-inner {
        vertical-align: top;
        padding: 13px 22px 0;
    }

    .article-award .article-title h6,
    .article-award .overlay-actions h6 {
        font-size: 16px;
        font-weight: 700;
        line-height: 1.38;
        margin: 0;
        color: #373a36;
    }

    .article-award .article-title .article-result,
    .article-award .overlay-actions .article-result {
        font-size: 18px;
        line-height: 16px;
        font-family: "Nord-Con", sans-serif;
        font-weight: 300;
        text-transform: uppercase;
        margin: 0;
        white-space: nowrap;
    }

@media (min-width: 668px) {
    .article-award .article-title .article-result,
    .article-award .overlay-actions .article-result {
        font-size: 24px;
        line-height: 22px;
    }
}

.article-award .article-title {
    display: block;
    background: white;
}

    .article-award .article-title .article-title-inner {
        display: block;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .article-award .article-title h6 {
        display: block;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

.article-award .overlay-content {
    height: 218px;
}

.article-award .overlay-actions {
    background: #373a36;
    height: auto;
    padding-bottom: 30px;
    min-height: 92px;
    height: 92px;
    display: table;
}

    .article-award .overlay-actions strong {
        font-weight: 500;
    }

    .article-award .overlay-actions .list-actions {
        display: table-cell;
        vertical-align: bottom;
        width: 100%;
    }

@media (max-width: 767px) {
    .article-award .overlay-content h3 {
        font-size: 20px;
    }

    .article-award .overlay-content h2 {
        font-size: 30px;
    }
}

@media (max-width: 1360px) {
    .article-award .article-title .article-title-inner {
        padding: 10px 16px 0;
    }

    .article-award .overlay-content {
        padding: 20px;
    }

    .article-award .overlay-actions .list-actions {
        padding: 0 20px;
    }
}

@media (max-width: 667px) {
    .article-award {
        height: 246px;
    }

        .article-award .article-image {
            height: 188px;
        }

        .article-award .article-title {
            height: 55px;
        }

            .article-award .article-title h6 {
                font-size: 12px;
            }

        .article-award .overlay-content {
            height: 152px;
        }

            .article-award .overlay-content h6 {
                font-size: 16px;
            }

            .article-award .overlay-content span {
                font-size: 22px;
            }

            .article-award .overlay-content > address {
                font-size: 13px;
            }

        .article-award .overlay-actions {
            padding-bottom: 20px;
        }
}


/* ------------------------------------------------------------ *\
	Article-News
\* ------------------------------------------------------------ */

.article-news {
    overflow: hidden;
    position: relative;
    height: 310px;
}

    .article-news h4 {
        font-size: 28px;
        line-height: 1;
        font-family: "Nord-Con", sans-serif;
        font-weight: 300;
        margin: 0 0 10px;
    }

    .article-news .article-content {
        padding: 15px 27px;
        background: #fff;
        min-height: 200px;
        border-right: 1px solid #e7e6e6;
        border-bottom: 1px solid #e7e6e6;
        border-left: 1px solid #e7e6e6;
    }

    .article-news .article-image {
        height: 106px;
        background-size: cover;
        background-position: center center;
        border: 1px solid #e7e6e6;
    }

    .article-news .article-meta {
        font-family: "Nord-Con", sans-serif;
        font-weight: 700;
        font-size: 16px;
        line-height: 1.13;
        text-transform: uppercase;
    }

    .article-news .overlay {
        overflow-y: auto;
        position: absolute;
        bottom: 100%;
        left: 0;
        width: 100%;
        min-height: 100%;
        background-color: #373a36;
        transition: bottom .3s;
        color: #fff;
        padding: 25px 30px;
    }

    .article-news:hover .overlay {
        bottom: 0;
    }

    .article-news .overlay h6 {
        margin: 0 0 20px;
        padding: 0 0 10px;
        font-family: "Nord-Con", sans-serif;
        font-size: 20px;
        line-height: 1.1;
        color: #f9f8f8;
        font-weight: 700;
        text-transform: uppercase;
        position: relative;
    }

        .article-news .overlay h6:after {
            position: absolute;
            bottom: 0;
            left: 0;
            content: '';
            width: 40px;
            height: 2px;
            background: #fff;
        }

@media (max-width: 667px) {
    .article-news {
        height: auto;
        min-height: 245px;
    }

        .article-news h4 {
            font-size: 22px;
            line-height: 1.09;
            margin: 0 0 5px;
        }

        .article-news .article-meta {
            font-size: 16px;
        }

        .article-news .article-content {
            min-height: 158px;
            padding: 15px 10px 10px 20px;
        }

        .article-news .article-image {
            height: 85px;
        }
}


/*

    Article News Adjustments 202007

*/

.article-news .overlay {
    bottom: 0;
    background: transparent;
    pointer-events: none;
}

    .article-news .overlay .overlay-content {
        display: none;
    }

    .article-news .overlay .overlay-actions {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
    }

        .article-news .overlay .overlay-actions .list-actions {
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            margin: 0 !important;
        }

            .article-news .overlay .overlay-actions .list-actions li {
                display: none;
                margin: 0 !important;
            }

                .article-news .overlay .overlay-actions .list-actions li:last-child {
                    display: block;
                    position: absolute;
                    left: 0;
                    top: 0;
                    width: 100%;
                    height: 100%;
                }

                    .article-news .overlay .overlay-actions .list-actions li:last-child a {
                        display: block;
                        position: absolute;
                        left: 0;
                        top: 0;
                        width: 100%;
                        height: 100%;
                        pointer-events: all;
                        opacity: 0;
                    }

.article-news:hover h4,
.article-news:hover .article-meta {
    color: #ce1141;
}


/* ------------------------------------------------------------ *\
	List
\* ------------------------------------------------------------ */


/* ------------------------------------------------------------ *\
	List Actions
\* ------------------------------------------------------------ */

.list-actions li {
    /*font-size: 0;*/
    /*Removed as stops Icons appearing*/
}

    .list-actions li + li {
        margin-top: 16px;
    }

.list-actions a {
    padding-left: 0 !important;
    display: flex !important;
    align-items: center;
    white-space: nowrap;
}

.list-actions span,
.list-actions strong {
    display: inline-block;
    vertical-align: middle;
}

.list-actions span {
    min-width: 40px;
    vertical-align: top;
}

.list-actions i {
    margin-right: 5px;
}

.list-actions strong {
    font-size: 14px;
    font-weight: 500;
    white-space: normal;
    max-width: calc(100% - 49px);
    margin-top: -4px;
}

    .list-actions strong.alt {
        font-weight: 700;
    }

@media (max-width: 667px) {
    .list-actions strong {
        display: inline-block;
        margin-top: 5px;
        margin-top: 0;
    }

    .list-actions i.ico-dropdown-arrow {
        margin-left: 5px;
        transition: transform 0.6s;
    }

    .list-actions i.ico-document-outline-small {
        width: 14px;
        height: 14px;
    }
}

.list-actions-white {
    color: #fff;
}

    .list-actions-white a:hover {
        color: #efdf00 !important;
    }


/* ------------------------------------------------------------ *\
	List
\* ------------------------------------------------------------ */

.list-offices {
    font-size: 0 !important;
}

    .list-offices li {
        width: 100%;
        padding-left: 0;
        margin-bottom: 45px;
    }

    .list-offices h6 {
        margin: 0;
        font-size: 16px;
        line-height: 1.5;
        color: #ce1141;
    }

    .list-offices p {
        margin-bottom: 15px;
        font-size: 16px;
        line-height: 1.5;
        color: #373a36;
    }

    .list-offices address {
        font-size: 16px;
        line-height: 1.5;
        color: #373a36;
        font-style: normal;
        font-weight: 300;
    }

        .list-offices address a {
            display: block;
        }

    .list-offices a {
        display: inline-block;
        font-family: "Roboto", sans-serif;
        font-size: 16px;
        line-height: 1.5;
        font-weight: 500;
        color: #373a36;
    }

    .list-offices .view-on-map {
        margin-top: 20px;
    }

    .list-offices .ico-pin {
        margin-left: 10px;
        margin-top: -8px;
    }

.list-offices-columns {
    overflow: hidden;
    *zoom: 1;
}

    .list-offices-columns li {
        display: inline-block;
        width: 33.33%;
        /*width: 35.71429%;*/
        vertical-align: top;
        padding-right: 50px;
    }

@media (min-width: 668px) {
    .list-offices-columns li:nth-child(3n) {
        width: 33.33%;
        /*width: 28.57143%;*/
    }
}

.list-offices.list-offices-columns li p {
    margin-bottom: 0;
    font-size: 16px;
    color: #373a36;
    font-weight: 300;
}

.list-offices-columns a {
    font-size: 14px;
}

    .list-offices-columns a.view-on-map .ico-marker {
        margin-right: 10px;
        vertical-align: top;
    }

@media (max-width: 667px) {
    .list-offices-columns a.view-on-map {
        display: none;
    }
}

.list-offices-columns a.view-on-map:hover {
    color: #ce1141;
}

    .list-offices-columns a.view-on-map:hover .ico-marker {
        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: -8em -16em;
        width: 1.25em;
        height: 2em;
    }

@media screen and (min-width: 0\0) {
    .list-offices-columns a.view-on-map:hover .ico-marker {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .list-offices-columns a.view-on-map:hover .ico-marker {
    background-image: url(../images/icon-sprites-vector.svg);
}

.list-offices-columns [href^="tel"] {
    font-size: 16px;
}

@media (max-width: 667px) {
    .list-offices-columns li {
        display: block;
        width: 100%;
    }
}


/* ------------------------------------------------------------ *\
	List Alphabet
\* ------------------------------------------------------------ */

.list-alphabet ul {
    font-size: 0;
    padding-left: 0;
    margin-bottom: 37px;
}

.list-alphabet li {
    display: inline-block;
    vertical-align: middle;
    margin: 0 3px;
}

.list-alphabet a {
    display: block;
    font-family: "Nord-Con", sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.1;
    min-width: 21px;
    text-align: center;
    border-bottom: 2px solid transparent;
}

    .list-alphabet a.disabled {
        opacity: .2;
        pointer-events: none;
    }

    .list-alphabet a:hover {
        text-decoration: none;
    }

    .list-alphabet a:hover,
    .list-alphabet a.current {
        border-color: #ce1141;
        color: #ce1141;
    }

    .list-alphabet a.disabled:hover {
        border-color: transparent;
        cursor: default;
        opacity: .2;
    }

@media (max-width: 1200px) {
    .list-alphabet ul {
        padding-top: 20px;
        padding-left: 0;
        text-align: center;
    }

    .list-alphabet li {
        margin: 0 5px 5px;
    }
}

@media (max-width: 1023px) {
    .list-alphabet a {
        min-width: 13px;
    }
}

@media (max-width: 667px) {
    .list-alphabet {
        overflow-x: scroll;
        background: #fdfcfc;
        border-bottom: 1px solid #e7e6e6;
        padding-top: 10px;
        margin-left: -15px;
        margin-right: -15px;
        margin-bottom: 24px;
    }

        .list-alphabet ul {
            padding-top: 0;
            width: 790px;
            margin-bottom: 7px;
        }

            .list-alphabet ul:after {
                content: '';
                line-height: 0;
                display: table;
                clear: both;
            }

        .list-alphabet li {
            width: 20px;
            float: left;
        }
}


/* ------------------------------------------------------------ *\
	List-Leaders
\* ------------------------------------------------------------ */

.list-leaders {
    text-align: center;
}

    .list-leaders li {
        padding: 0 6px;
        display: inline-block;
        vertical-align: middle;
    }

    .list-leaders a {
        color: #373a36;
        font-size: 14px;
        line-height: 1.29;
        line-height: 1;
        transition: color .3s;
    }

        .list-leaders a:hover {
            color: #ce1141;
        }

@media (max-width: 1200px) {
    .list-leaders {
        line-height: 1;
    }

        .list-leaders li {
            padding: 0 2px;
        }

        .list-leaders a {
            line-height: 1;
            display: block;
        }
}

@media (max-width: 1023px) {
    .list-leaders a {
        font-size: 12px;
    }
}


/* ------------------------------------------------------------ *\
	List Dash
\* ------------------------------------------------------------ */

.list-dash {
    font-size: 16px;
    line-height: 1.38em;
    margin-bottom: 10px;
    font-weight: 300;
}

    .list-dash li {
        position: relative;
        padding-left: 14px;
    }

        .list-dash li:before {
            position: absolute;
            top: 0;
            left: 0;
            content: '-';
            line-height: 1.38em;
            font-size: 16px;
            font-weight: 300;
        }

.list-dash-alt li + li {
    margin-top: 15px;
}

.list-dash-primary li:before {
    font-weight: 700;
}

.list-dash-primary li + li {
    margin-top: 15px;
}


/* ------------------------------------------------------------ *\
    Fonts
\* ------------------------------------------------------------ */

.container {
    margin-right: auto;
    margin-left: auto;
    padding-left: 10px;
    padding-right: 10px;
}

@media (min-width: 668px) {
    .container {
        width: 740px;
    }
}

@media (min-width: 1024px) {
    .container {
        width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        width: 1160px;
    }
}

.container-fluid {
    margin-right: auto;
    margin-left: auto;
    padding-left: 10px;
    padding-right: 10px;
}

.row-grid {
    margin-left: -10px;
    margin-right: -10px;
}

    .row-grid:after {
        content: '';
        line-height: 0;
        display: table;
        clear: both;
    }

.col-xs-1,
.col-sm-1,
.col-md-1,
.col-lg-1,
.col-xs-2,
.col-sm-2,
.col-md-2,
.col-lg-2,
.col-xs-3,
.col-sm-3,
.col-md-3,
.col-lg-3,
.col-xs-4,
.col-sm-4,
.col-md-4,
.col-lg-4,
.col-xs-5,
.col-sm-5,
.col-md-5,
.col-lg-5,
.col-xs-6,
.col-sm-6,
.col-md-6,
.col-lg-6,
.col-xs-7,
.col-sm-7,
.col-md-7,
.col-lg-7,
.col-xs-8,
.col-sm-8,
.col-md-8,
.col-lg-8,
.col-xs-9,
.col-sm-9,
.col-md-9,
.col-lg-9,
.col-xs-10,
.col-sm-10,
.col-md-10,
.col-lg-10,
.col-xs-11,
.col-sm-11,
.col-md-11,
.col-lg-11,
.col-xs-12,
.col-sm-12,
.col-md-12,
.col-lg-12,
.col-xs-13,
.col-sm-13,
.col-md-13,
.col-lg-13,
.col-xs-14,
.col-sm-14,
.col-md-14,
.col-lg-14,
.col-xs-15,
.col-sm-15,
.col-md-15,
.col-lg-15,
.col-xs-16,
.col-sm-16,
.col-md-16,
.col-lg-16,
.col-xs-17,
.col-sm-17,
.col-md-17,
.col-lg-17,
.col-xs-18,
.col-sm-18,
.col-md-18,
.col-lg-18,
.col-xs-19,
.col-sm-19,
.col-md-19,
.col-lg-19,
.col-xs-20,
.col-sm-20,
.col-md-20,
.col-lg-20,
.col-xs-21,
.col-sm-21,
.col-md-21,
.col-lg-21,
.col-xs-22,
.col-sm-22,
.col-md-22,
.col-lg-22,
.col-xs-23,
.col-sm-23,
.col-md-23,
.col-lg-23,
.col-xs-24,
.col-sm-24,
.col-md-24,
.col-lg-24 {
    position: relative;
    min-height: 1px;
    padding-left: 10px;
    padding-right: 10px;
}

.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12,
.col-xs-13,
.col-xs-14,
.col-xs-15,
.col-xs-16,
.col-xs-17,
.col-xs-18,
.col-xs-19,
.col-xs-20,
.col-xs-21,
.col-xs-22,
.col-xs-23,
.col-xs-24 {
    float: left;
}

.col-xs-24 {
    width: 100%;
}

.col-xs-23 {
    width: 95.83333333%;
}

.col-xs-22 {
    width: 91.66666667%;
}

.col-xs-21 {
    width: 87.5%;
}

.col-xs-20 {
    width: 83.33333333%;
}

.col-xs-19 {
    width: 79.16666667%;
}

.col-xs-18 {
    width: 75%;
}

.col-xs-17 {
    width: 70.83333333%;
}

.col-xs-16 {
    width: 66.66666667%;
}

.col-xs-15 {
    width: 62.5%;
}

.col-xs-14 {
    width: 58.33333333%;
}

.col-xs-13 {
    width: 54.16666667%;
}

.col-xs-12 {
    width: 50%;
}

.col-xs-11 {
    width: 45.83333333%;
}

.col-xs-10 {
    width: 41.66666667%;
}

.col-xs-9 {
    width: 37.5%;
}

.col-xs-8 {
    width: 33.33333333%;
}

.col-xs-7 {
    width: 29.16666667%;
}

.col-xs-6 {
    width: 25%;
}

.col-xs-5 {
    width: 20.83333333%;
}

.col-xs-4 {
    width: 16.66666667%;
}

.col-xs-3 {
    width: 12.5%;
}

.col-xs-2 {
    width: 8.33333333%;
}

.col-xs-1 {
    width: 4.16666667%;
}

.col-xs-pull-24 {
    right: 100%;
}

.col-xs-pull-23 {
    right: 95.83333333%;
}

.col-xs-pull-22 {
    right: 91.66666667%;
}

.col-xs-pull-21 {
    right: 87.5%;
}

.col-xs-pull-20 {
    right: 83.33333333%;
}

.col-xs-pull-19 {
    right: 79.16666667%;
}

.col-xs-pull-18 {
    right: 75%;
}

.col-xs-pull-17 {
    right: 70.83333333%;
}

.col-xs-pull-16 {
    right: 66.66666667%;
}

.col-xs-pull-15 {
    right: 62.5%;
}

.col-xs-pull-14 {
    right: 58.33333333%;
}

.col-xs-pull-13 {
    right: 54.16666667%;
}

.col-xs-pull-12 {
    right: 50%;
}

.col-xs-pull-11 {
    right: 45.83333333%;
}

.col-xs-pull-10 {
    right: 41.66666667%;
}

.col-xs-pull-9 {
    right: 37.5%;
}

.col-xs-pull-8 {
    right: 33.33333333%;
}

.col-xs-pull-7 {
    right: 29.16666667%;
}

.col-xs-pull-6 {
    right: 25%;
}

.col-xs-pull-5 {
    right: 20.83333333%;
}

.col-xs-pull-4 {
    right: 16.66666667%;
}

.col-xs-pull-3 {
    right: 12.5%;
}

.col-xs-pull-2 {
    right: 8.33333333%;
}

.col-xs-pull-1 {
    right: 4.16666667%;
}

.col-xs-pull-0 {
    right: auto;
}

.col-xs-push-24 {
    left: 100%;
}

.col-xs-push-23 {
    left: 95.83333333%;
}

.col-xs-push-22 {
    left: 91.66666667%;
}

.col-xs-push-21 {
    left: 87.5%;
}

.col-xs-push-20 {
    left: 83.33333333%;
}

.col-xs-push-19 {
    left: 79.16666667%;
}

.col-xs-push-18 {
    left: 75%;
}

.col-xs-push-17 {
    left: 70.83333333%;
}

.col-xs-push-16 {
    left: 66.66666667%;
}

.col-xs-push-15 {
    left: 62.5%;
}

.col-xs-push-14 {
    left: 58.33333333%;
}

.col-xs-push-13 {
    left: 54.16666667%;
}

.col-xs-push-12 {
    left: 50%;
}

.col-xs-push-11 {
    left: 45.83333333%;
}

.col-xs-push-10 {
    left: 41.66666667%;
}

.col-xs-push-9 {
    left: 37.5%;
}

.col-xs-push-8 {
    left: 33.33333333%;
}

.col-xs-push-7 {
    left: 29.16666667%;
}

.col-xs-push-6 {
    left: 25%;
}

.col-xs-push-5 {
    left: 20.83333333%;
}

.col-xs-push-4 {
    left: 16.66666667%;
}

.col-xs-push-3 {
    left: 12.5%;
}

.col-xs-push-2 {
    left: 8.33333333%;
}

.col-xs-push-1 {
    left: 4.16666667%;
}

.col-xs-push-0 {
    left: auto;
}

.col-xs-offset-24 {
    margin-left: 100%;
}

.col-xs-offset-23 {
    margin-left: 95.83333333%;
}

.col-xs-offset-22 {
    margin-left: 91.66666667%;
}

.col-xs-offset-21 {
    margin-left: 87.5%;
}

.col-xs-offset-20 {
    margin-left: 83.33333333%;
}

.col-xs-offset-19 {
    margin-left: 79.16666667%;
}

.col-xs-offset-18 {
    margin-left: 75%;
}

.col-xs-offset-17 {
    margin-left: 70.83333333%;
}

.col-xs-offset-16 {
    margin-left: 66.66666667%;
}

.col-xs-offset-15 {
    margin-left: 62.5%;
}

.col-xs-offset-14 {
    margin-left: 58.33333333%;
}

.col-xs-offset-13 {
    margin-left: 54.16666667%;
}

.col-xs-offset-12 {
    margin-left: 50%;
}

.col-xs-offset-11 {
    margin-left: 45.83333333%;
}

.col-xs-offset-10 {
    margin-left: 41.66666667%;
}

.col-xs-offset-9 {
    margin-left: 37.5%;
}

.col-xs-offset-8 {
    margin-left: 33.33333333%;
}

.col-xs-offset-7 {
    margin-left: 29.16666667%;
}

.col-xs-offset-6 {
    margin-left: 25%;
}

.col-xs-offset-5 {
    margin-left: 20.83333333%;
}

.col-xs-offset-4 {
    margin-left: 16.66666667%;
}

.col-xs-offset-3 {
    margin-left: 12.5%;
}

.col-xs-offset-2 {
    margin-left: 8.33333333%;
}

.col-xs-offset-1 {
    margin-left: 4.16666667%;
}

.col-xs-offset-0 {
    margin-left: 0%;
}

@media (min-width: 668px) {
    .col-sm-1,
    .col-sm-2,
    .col-sm-3,
    .col-sm-4,
    .col-sm-5,
    .col-sm-6,
    .col-sm-7,
    .col-sm-8,
    .col-sm-9,
    .col-sm-10,
    .col-sm-11,
    .col-sm-12,
    .col-sm-13,
    .col-sm-14,
    .col-sm-15,
    .col-sm-16,
    .col-sm-17,
    .col-sm-18,
    .col-sm-19,
    .col-sm-20,
    .col-sm-21,
    .col-sm-22,
    .col-sm-23,
    .col-sm-24 {
        float: left;
    }

    .col-sm-24 {
        width: 100%;
    }

    .col-sm-23 {
        width: 95.83333333%;
    }

    .col-sm-22 {
        width: 91.66666667%;
    }

    .col-sm-21 {
        width: 87.5%;
    }

    .col-sm-20 {
        width: 83.33333333%;
    }

    .col-sm-19 {
        width: 79.16666667%;
    }

    .col-sm-18 {
        width: 75%;
    }

    .col-sm-17 {
        width: 70.83333333%;
    }

    .col-sm-16 {
        width: 66.66666667%;
    }

    .col-sm-15 {
        width: 62.5%;
    }

    .col-sm-14 {
        width: 58.33333333%;
    }

    .col-sm-13 {
        width: 54.16666667%;
    }

    .col-sm-12 {
        width: 50%;
    }

    .col-sm-11 {
        width: 45.83333333%;
    }

    .col-sm-10 {
        width: 41.66666667%;
    }

    .col-sm-9 {
        width: 37.5%;
    }

    .col-sm-8 {
        width: 33.33333333%;
    }

    .col-sm-7 {
        width: 29.16666667%;
    }

    .col-sm-6 {
        width: 25%;
    }

    .col-sm-5 {
        width: 20.83333333%;
    }

    .col-sm-4 {
        width: 16.66666667%;
    }

    .col-sm-3 {
        width: 12.5%;
    }

    .col-sm-2 {
        width: 8.33333333%;
    }

    .col-sm-1 {
        width: 4.16666667%;
    }

    .col-sm-pull-24 {
        right: 100%;
    }

    .col-sm-pull-23 {
        right: 95.83333333%;
    }

    .col-sm-pull-22 {
        right: 91.66666667%;
    }

    .col-sm-pull-21 {
        right: 87.5%;
    }

    .col-sm-pull-20 {
        right: 83.33333333%;
    }

    .col-sm-pull-19 {
        right: 79.16666667%;
    }

    .col-sm-pull-18 {
        right: 75%;
    }

    .col-sm-pull-17 {
        right: 70.83333333%;
    }

    .col-sm-pull-16 {
        right: 66.66666667%;
    }

    .col-sm-pull-15 {
        right: 62.5%;
    }

    .col-sm-pull-14 {
        right: 58.33333333%;
    }

    .col-sm-pull-13 {
        right: 54.16666667%;
    }

    .col-sm-pull-12 {
        right: 50%;
    }

    .col-sm-pull-11 {
        right: 45.83333333%;
    }

    .col-sm-pull-10 {
        right: 41.66666667%;
    }

    .col-sm-pull-9 {
        right: 37.5%;
    }

    .col-sm-pull-8 {
        right: 33.33333333%;
    }

    .col-sm-pull-7 {
        right: 29.16666667%;
    }

    .col-sm-pull-6 {
        right: 25%;
    }

    .col-sm-pull-5 {
        right: 20.83333333%;
    }

    .col-sm-pull-4 {
        right: 16.66666667%;
    }

    .col-sm-pull-3 {
        right: 12.5%;
    }

    .col-sm-pull-2 {
        right: 8.33333333%;
    }

    .col-sm-pull-1 {
        right: 4.16666667%;
    }

    .col-sm-pull-0 {
        right: auto;
    }

    .col-sm-push-24 {
        left: 100%;
    }

    .col-sm-push-23 {
        left: 95.83333333%;
    }

    .col-sm-push-22 {
        left: 91.66666667%;
    }

    .col-sm-push-21 {
        left: 87.5%;
    }

    .col-sm-push-20 {
        left: 83.33333333%;
    }

    .col-sm-push-19 {
        left: 79.16666667%;
    }

    .col-sm-push-18 {
        left: 75%;
    }

    .col-sm-push-17 {
        left: 70.83333333%;
    }

    .col-sm-push-16 {
        left: 66.66666667%;
    }

    .col-sm-push-15 {
        left: 62.5%;
    }

    .col-sm-push-14 {
        left: 58.33333333%;
    }

    .col-sm-push-13 {
        left: 54.16666667%;
    }

    .col-sm-push-12 {
        left: 50%;
    }

    .col-sm-push-11 {
        left: 45.83333333%;
    }

    .col-sm-push-10 {
        left: 41.66666667%;
    }

    .col-sm-push-9 {
        left: 37.5%;
    }

    .col-sm-push-8 {
        left: 33.33333333%;
    }

    .col-sm-push-7 {
        left: 29.16666667%;
    }

    .col-sm-push-6 {
        left: 25%;
    }

    .col-sm-push-5 {
        left: 20.83333333%;
    }

    .col-sm-push-4 {
        left: 16.66666667%;
    }

    .col-sm-push-3 {
        left: 12.5%;
    }

    .col-sm-push-2 {
        left: 8.33333333%;
    }

    .col-sm-push-1 {
        left: 4.16666667%;
    }

    .col-sm-push-0 {
        left: auto;
    }

    .col-sm-offset-24 {
        margin-left: 100%;
    }

    .col-sm-offset-23 {
        margin-left: 95.83333333%;
    }

    .col-sm-offset-22 {
        margin-left: 91.66666667%;
    }

    .col-sm-offset-21 {
        margin-left: 87.5%;
    }

    .col-sm-offset-20 {
        margin-left: 83.33333333%;
    }

    .col-sm-offset-19 {
        margin-left: 79.16666667%;
    }

    .col-sm-offset-18 {
        margin-left: 75%;
    }

    .col-sm-offset-17 {
        margin-left: 70.83333333%;
    }

    .col-sm-offset-16 {
        margin-left: 66.66666667%;
    }

    .col-sm-offset-15 {
        margin-left: 62.5%;
    }

    .col-sm-offset-14 {
        margin-left: 58.33333333%;
    }

    .col-sm-offset-13 {
        margin-left: 54.16666667%;
    }

    .col-sm-offset-12 {
        margin-left: 50%;
    }

    .col-sm-offset-11 {
        margin-left: 45.83333333%;
    }

    .col-sm-offset-10 {
        margin-left: 41.66666667%;
    }

    .col-sm-offset-9 {
        margin-left: 37.5%;
    }

    .col-sm-offset-8 {
        margin-left: 33.33333333%;
    }

    .col-sm-offset-7 {
        margin-left: 29.16666667%;
    }

    .col-sm-offset-6 {
        margin-left: 25%;
    }

    .col-sm-offset-5 {
        margin-left: 20.83333333%;
    }

    .col-sm-offset-4 {
        margin-left: 16.66666667%;
    }

    .col-sm-offset-3 {
        margin-left: 12.5%;
    }

    .col-sm-offset-2 {
        margin-left: 8.33333333%;
    }

    .col-sm-offset-1 {
        margin-left: 4.16666667%;
    }

    .col-sm-offset-0 {
        margin-left: 0%;
    }
}

@media (min-width: 1024px) {
    .col-md-1,
    .col-md-2,
    .col-md-3,
    .col-md-4,
    .col-md-5,
    .col-md-6,
    .col-md-7,
    .col-md-8,
    .col-md-9,
    .col-md-10,
    .col-md-11,
    .col-md-12,
    .col-md-13,
    .col-md-14,
    .col-md-15,
    .col-md-16,
    .col-md-17,
    .col-md-18,
    .col-md-19,
    .col-md-20,
    .col-md-21,
    .col-md-22,
    .col-md-23,
    .col-md-24 {
        float: left;
    }

    .col-md-24 {
        width: 100%;
    }

    .col-md-23 {
        width: 95.83333333%;
    }

    .col-md-22 {
        width: 91.66666667%;
    }

    .col-md-21 {
        width: 87.5%;
    }

    .col-md-20 {
        width: 83.33333333%;
    }

    .col-md-19 {
        width: 79.16666667%;
    }

    .col-md-18 {
        width: 75%;
    }

    .col-md-17 {
        width: 70.83333333%;
    }

    .col-md-16 {
        width: 66.66666667%;
    }

    .col-md-15 {
        width: 62.5%;
    }

    .col-md-14 {
        width: 58.33333333%;
    }

    .col-md-13 {
        width: 54.16666667%;
    }

    .col-md-12 {
        width: 50%;
    }

    .col-md-11 {
        width: 45.83333333%;
    }

    .col-md-10 {
        width: 41.66666667%;
    }

    .col-md-9 {
        width: 37.5%;
    }

    .col-md-8 {
        width: 33.33333333%;
    }

    .col-md-7 {
        width: 29.16666667%;
    }

    .col-md-6 {
        width: 25%;
    }

    .col-md-5 {
        width: 20.83333333%;
    }

    .col-md-4 {
        width: 16.66666667%;
    }

    .col-md-3 {
        width: 12.5%;
    }

    .col-md-2 {
        width: 8.33333333%;
    }

    .col-md-1 {
        width: 4.16666667%;
    }

    .col-md-pull-24 {
        right: 100%;
    }

    .col-md-pull-23 {
        right: 95.83333333%;
    }

    .col-md-pull-22 {
        right: 91.66666667%;
    }

    .col-md-pull-21 {
        right: 87.5%;
    }

    .col-md-pull-20 {
        right: 83.33333333%;
    }

    .col-md-pull-19 {
        right: 79.16666667%;
    }

    .col-md-pull-18 {
        right: 75%;
    }

    .col-md-pull-17 {
        right: 70.83333333%;
    }

    .col-md-pull-16 {
        right: 66.66666667%;
    }

    .col-md-pull-15 {
        right: 62.5%;
    }

    .col-md-pull-14 {
        right: 58.33333333%;
    }

    .col-md-pull-13 {
        right: 54.16666667%;
    }

    .col-md-pull-12 {
        right: 50%;
    }

    .col-md-pull-11 {
        right: 45.83333333%;
    }

    .col-md-pull-10 {
        right: 41.66666667%;
    }

    .col-md-pull-9 {
        right: 37.5%;
    }

    .col-md-pull-8 {
        right: 33.33333333%;
    }

    .col-md-pull-7 {
        right: 29.16666667%;
    }

    .col-md-pull-6 {
        right: 25%;
    }

    .col-md-pull-5 {
        right: 20.83333333%;
    }

    .col-md-pull-4 {
        right: 16.66666667%;
    }

    .col-md-pull-3 {
        right: 12.5%;
    }

    .col-md-pull-2 {
        right: 8.33333333%;
    }

    .col-md-pull-1 {
        right: 4.16666667%;
    }

    .col-md-pull-0 {
        right: auto;
    }

    .col-md-push-24 {
        left: 100%;
    }

    .col-md-push-23 {
        left: 95.83333333%;
    }

    .col-md-push-22 {
        left: 91.66666667%;
    }

    .col-md-push-21 {
        left: 87.5%;
    }

    .col-md-push-20 {
        left: 83.33333333%;
    }

    .col-md-push-19 {
        left: 79.16666667%;
    }

    .col-md-push-18 {
        left: 75%;
    }

    .col-md-push-17 {
        left: 70.83333333%;
    }

    .col-md-push-16 {
        left: 66.66666667%;
    }

    .col-md-push-15 {
        left: 62.5%;
    }

    .col-md-push-14 {
        left: 58.33333333%;
    }

    .col-md-push-13 {
        left: 54.16666667%;
    }

    .col-md-push-12 {
        left: 50%;
    }

    .col-md-push-11 {
        left: 45.83333333%;
    }

    .col-md-push-10 {
        left: 41.66666667%;
    }

    .col-md-push-9 {
        left: 37.5%;
    }

    .col-md-push-8 {
        left: 33.33333333%;
    }

    .col-md-push-7 {
        left: 29.16666667%;
    }

    .col-md-push-6 {
        left: 25%;
    }

    .col-md-push-5 {
        left: 20.83333333%;
    }

    .col-md-push-4 {
        left: 16.66666667%;
    }

    .col-md-push-3 {
        left: 12.5%;
    }

    .col-md-push-2 {
        left: 8.33333333%;
    }

    .col-md-push-1 {
        left: 4.16666667%;
    }

    .col-md-push-0 {
        left: auto;
    }

    .col-md-offset-24 {
        margin-left: 100%;
    }

    .col-md-offset-23 {
        margin-left: 95.83333333%;
    }

    .col-md-offset-22 {
        margin-left: 91.66666667%;
    }

    .col-md-offset-21 {
        margin-left: 87.5%;
    }

    .col-md-offset-20 {
        margin-left: 83.33333333%;
    }

    .col-md-offset-19 {
        margin-left: 79.16666667%;
    }

    .col-md-offset-18 {
        margin-left: 75%;
    }

    .col-md-offset-17 {
        margin-left: 70.83333333%;
    }

    .col-md-offset-16 {
        margin-left: 66.66666667%;
    }

    .col-md-offset-15 {
        margin-left: 62.5%;
    }

    .col-md-offset-14 {
        margin-left: 58.33333333%;
    }

    .col-md-offset-13 {
        margin-left: 54.16666667%;
    }

    .col-md-offset-12 {
        margin-left: 50%;
    }

    .col-md-offset-11 {
        margin-left: 45.83333333%;
    }

    .col-md-offset-10 {
        margin-left: 41.66666667%;
    }

    .col-md-offset-9 {
        margin-left: 37.5%;
    }

    .col-md-offset-8 {
        margin-left: 33.33333333%;
    }

    .col-md-offset-7 {
        margin-left: 29.16666667%;
    }

    .col-md-offset-6 {
        margin-left: 25%;
    }

    .col-md-offset-5 {
        margin-left: 20.83333333%;
    }

    .col-md-offset-4 {
        margin-left: 16.66666667%;
    }

    .col-md-offset-3 {
        margin-left: 12.5%;
    }

    .col-md-offset-2 {
        margin-left: 8.33333333%;
    }

    .col-md-offset-1 {
        margin-left: 4.16666667%;
    }

    .col-md-offset-0 {
        margin-left: 0%;
    }
}

@media (min-width: 1200px) {
    .col-lg-1,
    .col-lg-2,
    .col-lg-3,
    .col-lg-4,
    .col-lg-5,
    .col-lg-6,
    .col-lg-7,
    .col-lg-8,
    .col-lg-9,
    .col-lg-10,
    .col-lg-11,
    .col-lg-12,
    .col-lg-13,
    .col-lg-14,
    .col-lg-15,
    .col-lg-16,
    .col-lg-17,
    .col-lg-18,
    .col-lg-19,
    .col-lg-20,
    .col-lg-21,
    .col-lg-22,
    .col-lg-23,
    .col-lg-24 {
        float: left;
    }

    .col-lg-24 {
        width: 100%;
    }

    .col-lg-23 {
        width: 95.83333333%;
    }

    .col-lg-22 {
        width: 91.66666667%;
    }

    .col-lg-21 {
        width: 87.5%;
    }

    .col-lg-20 {
        width: 83.33333333%;
    }

    .col-lg-19 {
        width: 79.16666667%;
    }

    .col-lg-18 {
        width: 75%;
    }

    .col-lg-17 {
        width: 70.83333333%;
    }

    .col-lg-16 {
        width: 66.66666667%;
    }

    .col-lg-15 {
        width: 62.5%;
    }

    .col-lg-14 {
        width: 58.33333333%;
    }

    .col-lg-13 {
        width: 54.16666667%;
    }

    .col-lg-12 {
        width: 50%;
    }

    .col-lg-11 {
        width: 45.83333333%;
    }

    .col-lg-10 {
        width: 41.66666667%;
    }

    .col-lg-9 {
        width: 37.5%;
    }

    .col-lg-8 {
        width: 33.33333333%;
    }

    .col-lg-7 {
        width: 29.16666667%;
    }

    .col-lg-6 {
        width: 25%;
    }

    .col-lg-5 {
        width: 20.83333333%;
    }

    .col-lg-4 {
        width: 16.66666667%;
    }

    .col-lg-3 {
        width: 12.5%;
    }

    .col-lg-2 {
        width: 8.33333333%;
    }

    .col-lg-1 {
        width: 4.16666667%;
    }

    .col-lg-pull-24 {
        right: 100%;
    }

    .col-lg-pull-23 {
        right: 95.83333333%;
    }

    .col-lg-pull-22 {
        right: 91.66666667%;
    }

    .col-lg-pull-21 {
        right: 87.5%;
    }

    .col-lg-pull-20 {
        right: 83.33333333%;
    }

    .col-lg-pull-19 {
        right: 79.16666667%;
    }

    .col-lg-pull-18 {
        right: 75%;
    }

    .col-lg-pull-17 {
        right: 70.83333333%;
    }

    .col-lg-pull-16 {
        right: 66.66666667%;
    }

    .col-lg-pull-15 {
        right: 62.5%;
    }

    .col-lg-pull-14 {
        right: 58.33333333%;
    }

    .col-lg-pull-13 {
        right: 54.16666667%;
    }

    .col-lg-pull-12 {
        right: 50%;
    }

    .col-lg-pull-11 {
        right: 45.83333333%;
    }

    .col-lg-pull-10 {
        right: 41.66666667%;
    }

    .col-lg-pull-9 {
        right: 37.5%;
    }

    .col-lg-pull-8 {
        right: 33.33333333%;
    }

    .col-lg-pull-7 {
        right: 29.16666667%;
    }

    .col-lg-pull-6 {
        right: 25%;
    }

    .col-lg-pull-5 {
        right: 20.83333333%;
    }

    .col-lg-pull-4 {
        right: 16.66666667%;
    }

    .col-lg-pull-3 {
        right: 12.5%;
    }

    .col-lg-pull-2 {
        right: 8.33333333%;
    }

    .col-lg-pull-1 {
        right: 4.16666667%;
    }

    .col-lg-pull-0 {
        right: auto;
    }

    .col-lg-push-24 {
        left: 100%;
    }

    .col-lg-push-23 {
        left: 95.83333333%;
    }

    .col-lg-push-22 {
        left: 91.66666667%;
    }

    .col-lg-push-21 {
        left: 87.5%;
    }

    .col-lg-push-20 {
        left: 83.33333333%;
    }

    .col-lg-push-19 {
        left: 79.16666667%;
    }

    .col-lg-push-18 {
        left: 75%;
    }

    .col-lg-push-17 {
        left: 70.83333333%;
    }

    .col-lg-push-16 {
        left: 66.66666667%;
    }

    .col-lg-push-15 {
        left: 62.5%;
    }

    .col-lg-push-14 {
        left: 58.33333333%;
    }

    .col-lg-push-13 {
        left: 54.16666667%;
    }

    .col-lg-push-12 {
        left: 50%;
    }

    .col-lg-push-11 {
        left: 45.83333333%;
    }

    .col-lg-push-10 {
        left: 41.66666667%;
    }

    .col-lg-push-9 {
        left: 37.5%;
    }

    .col-lg-push-8 {
        left: 33.33333333%;
    }

    .col-lg-push-7 {
        left: 29.16666667%;
    }

    .col-lg-push-6 {
        left: 25%;
    }

    .col-lg-push-5 {
        left: 20.83333333%;
    }

    .col-lg-push-4 {
        left: 16.66666667%;
    }

    .col-lg-push-3 {
        left: 12.5%;
    }

    .col-lg-push-2 {
        left: 8.33333333%;
    }

    .col-lg-push-1 {
        left: 4.16666667%;
    }

    .col-lg-push-0 {
        left: auto;
    }

    .col-lg-offset-24 {
        margin-left: 100%;
    }

    .col-lg-offset-23 {
        margin-left: 95.83333333%;
    }

    .col-lg-offset-22 {
        margin-left: 91.66666667%;
    }

    .col-lg-offset-21 {
        margin-left: 87.5%;
    }

    .col-lg-offset-20 {
        margin-left: 83.33333333%;
    }

    .col-lg-offset-19 {
        margin-left: 79.16666667%;
    }

    .col-lg-offset-18 {
        margin-left: 75%;
    }

    .col-lg-offset-17 {
        margin-left: 70.83333333%;
    }

    .col-lg-offset-16 {
        margin-left: 66.66666667%;
    }

    .col-lg-offset-15 {
        margin-left: 62.5%;
    }

    .col-lg-offset-14 {
        margin-left: 58.33333333%;
    }

    .col-lg-offset-13 {
        margin-left: 54.16666667%;
    }

    .col-lg-offset-12 {
        margin-left: 50%;
    }

    .col-lg-offset-11 {
        margin-left: 45.83333333%;
    }

    .col-lg-offset-10 {
        margin-left: 41.66666667%;
    }

    .col-lg-offset-9 {
        margin-left: 37.5%;
    }

    .col-lg-offset-8 {
        margin-left: 33.33333333%;
    }

    .col-lg-offset-7 {
        margin-left: 29.16666667%;
    }

    .col-lg-offset-6 {
        margin-left: 25%;
    }

    .col-lg-offset-5 {
        margin-left: 20.83333333%;
    }

    .col-lg-offset-4 {
        margin-left: 16.66666667%;
    }

    .col-lg-offset-3 {
        margin-left: 12.5%;
    }

    .col-lg-offset-2 {
        margin-left: 8.33333333%;
    }

    .col-lg-offset-1 {
        margin-left: 4.16666667%;
    }

    .col-lg-offset-0 {
        margin-left: 0%;
    }
}

@-ms-viewport {
    width: device-width;
}

.visible-xs,
.visible-sm,
.visible-md,
.visible-lg {
    display: none !important;
}

.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
    display: none !important;
}

@media (max-width: 667px) {
    .visible-xs {
        display: block !important;
    }
}

@media (max-width: 667px) {
    .visible-xs-block {
        display: block !important;
    }
}

@media (max-width: 667px) {
    .visible-xs-inline {
        display: inline !important;
    }
}

@media (max-width: 667px) {
    .visible-xs-inline-block {
        display: inline-block !important;
    }
}

@media (min-width: 668px) and (max-width: 1023px) {
    .visible-sm {
        display: block !important;
    }
}

@media (min-width: 668px) and (max-width: 1023px) {
    .visible-sm-block {
        display: block !important;
    }
}

@media (min-width: 668px) and (max-width: 1023px) {
    .visible-sm-inline {
        display: inline !important;
    }
}

@media (min-width: 668px) and (max-width: 1023px) {
    .visible-sm-inline-block {
        display: inline-block !important;
    }
}

@media (min-width: 1024px) and (max-width: 1199px) {
    .visible-md {
        display: block !important;
    }
}

@media (min-width: 1024px) and (max-width: 1199px) {
    .visible-md-block {
        display: block !important;
    }
}

@media (min-width: 1024px) and (max-width: 1199px) {
    .visible-md-inline {
        display: inline !important;
    }
}

@media (min-width: 1024px) and (max-width: 1199px) {
    .visible-md-inline-block {
        display: inline-block !important;
    }
}

@media (min-width: 1200px) {
    .visible-lg {
        display: block !important;
    }
}

@media (min-width: 1200px) {
    .visible-lg-block {
        display: block !important;
    }
}

@media (min-width: 1200px) {
    .visible-lg-inline {
        display: inline !important;
    }
}

@media (min-width: 1200px) {
    .visible-lg-inline-block {
        display: inline-block !important;
    }
}

@media (max-width: 667px) {
    .hidden-xs {
        display: none !important;
    }
}

@media (min-width: 668px) and (max-width: 1023px) {
    .hidden-sm {
        display: none !important;
    }
}

@media (min-width: 1024px) and (max-width: 1199px) {
    .hidden-md {
        display: none !important;
    }
}

@media (min-width: 1200px) {
    .hidden-lg {
        display: none !important;
    }
}

.pull-right {
    float: right !important;
}

.pull-left {
    float: left !important;
}

.hide {
    display: none !important;
}

@media (max-width: 667px) {
    .col-mobile-spacing-top + .col-mobile-spacing-top {
        margin-top: 46px;
    }
}


/* ------------------------------------------------------------ *\  
	Accordion
\* ------------------------------------------------------------ */

.accordion:hover .accordion-head {
    color: #ce1141;
}

    .accordion:hover .accordion-head .text-wrapper {
        color: #363636;
    }

.accordion .accordion-head {
    position: relative;
    padding: 23px 60px 23px 0;
    border-top: 1px solid #363636;
}

    .accordion .accordion-head h3 {
        font-size: 20px;
        color: #373a36;
        font-family: "Nord-Con", sans-serif;
        font-weight: 700;
        line-height: 18px;
        position: relative;
        margin: 0;
    }

    .accordion .accordion-head p {
        font-family: "Roboto", sans-serif;
        font-size: 16px;
        font-weight: 300;
        line-height: 1.38;
        color: #000;
    }

    .accordion .accordion-head:before {
        position: absolute;
        top: -1px;
        right: 0;
        content: '';
        width: 32px;
        height: 32px;
        border: 1px solid #363636;
    }

    .accordion .accordion-head:after {
        position: absolute;
        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: -8em -8em;
        width: 1em;
        height: 1em;
        font-size: 16px;
        top: 7px;
        right: 7px;
    }

@media screen and (min-width: 0\0) {
    .accordion .accordion-head:after {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .accordion .accordion-head:after {
    background-image: url(../images/icon-sprites-vector.svg);
}

.accordion .accordion-head:hover {
    cursor: pointer;
    border-color: #ce1141;
}

    .accordion .accordion-head:hover:before {
        border-color: #ce1141;
    }

    .accordion .accordion-head:hover:after {
        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: -10em -8em;
        width: 1em;
        height: 1em;
    }

@media screen and (min-width: 0\0) {
    .accordion .accordion-head:hover:after {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .accordion .accordion-head:hover:after {
    background-image: url(../images/icon-sprites-vector.svg);
}

.accordion .accordion-head .icon-text-inner figure {
    margin-left: 0;
}

.accordion .accordion-head .icon-text-inner img {
    width: 50px;
    height: auto;
}

.accordion .accordion-head .icon-text-inner h3 {
    color: #363636;
}

    .accordion .accordion-head .icon-text-inner h3:after {
        background-color: #ce1141;
    }

@media (max-width: 667px) {
    .accordion .accordion-head .icon-text-inner h3 {
        margin-bottom: 25px;
    }
}

.accordion .accordion-head .image-no-text img {
    width: 150px;
    height: auto;
}

@media (min-width: 668px) {
    .accordion .accordion-head .icon-text img {
        width: 80px;
        height: auto;
    }
}

@media (max-width: 667px) {
    .accordion .accordion-head .icon-text img {
        width: 70px;
        height: auto;
    }
}

.accordion .accordion-head .icon-text h3 {
    color: #ce1141;
}

    .accordion .accordion-head .icon-text h3:after {
        background-color: #ce1141;
    }

@media (max-width: 667px) {
    .accordion .accordion-head .icon-text h3 {
        margin-bottom: 25px;
    }
}

@media (min-width: 668px) {
    .accordion .accordion-head .icon-text .title-text-wrapper {
        margin-left: 27px;
    }

        .accordion .accordion-head .icon-text .title-text-wrapper .text-wrapper {
            padding-left: 48px;
        }
}

.accordion .accordion-head .image-text figure {
    margin-top: -23px;
    margin-left: 0;
}

@media (min-width: 668px) {
    .accordion .accordion-head .image-text figure img {
        width: 230px;
        height: auto;
    }
}

@media (max-width: 667px) {
    .accordion .accordion-head .image-text figure img {
        width: 100%;
        height: auto;
    }
}

.accordion .accordion-head .image-text h3 {
    color: #ce1141;
}

    .accordion .accordion-head .image-text h3:after {
        background-color: #ce1141;
    }

@media (max-width: 667px) {
    .accordion .accordion-head .image-text h3 {
        margin-bottom: 25px;
    }
}

@media (min-width: 668px) {
    .accordion .accordion-head .image-text .title-text-wrapper {
        padding-left: 27px;
    }

        .accordion .accordion-head .image-text .title-text-wrapper .text-wrapper {
            padding-left: 27px;
        }
}

@media (min-width: 1025px) {
    .accordion .accordion-head .image-text .title-text-wrapper {
        padding-left: 53px;
    }

        .accordion .accordion-head .image-text .title-text-wrapper .text-wrapper {
            padding-left: 57px;
        }
}

.accordion .accordion-head figure {
    display: block;
    line-height: 1;
}

@media (min-width: 668px) {
    .accordion .accordion-head figure {
        margin-left: 50px;
    }
}

.accordion .accordion-body {
    display: none;
    /* Now not required now the padding is fixed on accordion body? */
    /*.row.white-background {
      padding-top: 20px;
  }*/
}

.accordion .accordion-initially-open .accordion-head,
.accordion .accordion-expanded .accordion-head,
.accordion.accordion-expanded .accordion-head {
    border-top: 1px solid #ce1141;
}

    .accordion .accordion-expanded .accordion-head h4,
    .accordion .accordion-expanded .accordion-head h3,
    .accordion.accordion-expanded .accordion-head h4,
    .accordion.accordion-expanded .accordion-head h3 {
        color: #ce1141;
    }

        .accordion .accordion-expanded .accordion-head h4.title-with-border:after,
        .accordion .accordion-expanded .accordion-head h3.title-with-border:after,
        .accordion.accordion-expanded .accordion-head h4.title-with-border:after,
        .accordion.accordion-expanded .accordion-head h3.title-with-border:after {
            background: #ce1141;
        }

    .accordion .accordion-initially-open .accordion-head:before,
    .accordion .accordion-expanded .accordion-head:before,
    .accordion.accordion-expanded .accordion-head:before {
        border: 1px solid #ce1141;
    }

    .accordion .accordion-initially-open .accordion-head:after,
    .accordion .accordion-expanded .accordion-head:after,
    .accordion.accordion-expanded .accordion-head:after {
        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: -16em -8em;
        width: 1em;
        height: 1em;
        font-size: 16px;
        top: 7px;
        right: 7px;
    }

@media screen and (min-width: 0\0) {
    .accordion .accordion-expanded .accordion-head:after,
    .accordion.accordion-expanded .accordion-head:after {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .accordion .accordion-expanded .accordion-head:after,
:root .accordion.accordion-expanded .accordion-head:after {
    background-image: url(../images/icon-sprites-vector.svg);
}

.accordion .accordion-expanded .accordion-body,
.accordion.accordion-expanded .accordion-body {
    padding-bottom: 20px;
    margin-bottom: 50px;
}

.accordion-section + .accordion-section {
    margin-top: 50px;
}

@media (max-width: 1023px) {
    .accordion-section + .accordion-section {
        margin-top: 20px;
    }
}

.accordion-section.type-inner-icon-title.accordion-expanded .icon-text-inner h3 {
    color: #ce1141;
}

.accordion-section.type-inner-icon-title .icon-text-inner h3 {
    color: #363636;
}

.accordion-text .accordion-head {
    padding: 12px 90px 22px 0;
    border-color: #373a36;
}

    .accordion-text .accordion-head h3:hover {
        color: #ce1141;
    }

.accordion-text .accordion-body {
    margin: 0;
    padding: 0 0 41px;
}

    .accordion-text .accordion-body p {
        font-family: "Roboto", sans-serif;
        font-size: 16px;
        line-height: 1.38;
        font-weight: 300;
        margin-bottom: 22px;
    }

        .accordion-text .accordion-body p:last-child {
            margin-bottom: 0;
        }

.accordion-text .accordion-section + .accordion-section {
    margin-top: 0;
}

@media (max-width: 667px) {
    .accordion-text .accordion-head {
        padding: 8px 40px 18px 0;
    }
}

@media (max-width: 667px) {
    .accordion-txt-img .accordion-head {
        padding-right: 0;
    }
}

.accordion-country .accordion-head {
    transition: padding .3s;
}


/*.accordion-country .accordion-expanded .accordion-head { padding-bottom: 42px; }*/


/*  Accordion Member  */

.accordion-member .accordion-body {
    margin-top: 0;
}

.accordion-member .accordion-head {
    padding-top: 0;
    padding-right: 40px;
}

.accordion-member .accordion-expanded .accordion-head .title-with-border {
    color: #ce1141;
}

    .accordion-member .accordion-expanded .accordion-head .title-with-border:after {
        background: #ce1141;
    }

@media (max-width: 667px) {
    .accordion-member .accordion-body {
        margin: 0;
        width: auto;
        padding-top: 10px;
    }
}

.accordion-initially-open .accordion-body {
    display: block;
}

/* Nested Accordion */

.accordion .accordion-expanded .accordion .accordion-head {
    border-top: 1px solid #363636;
}

    .accordion .accordion-expanded .accordion .accordion-head:before {
        border: 1px solid #363636;
    }

    .accordion .accordion-expanded .accordion .accordion-head:after {
        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: -8em -8em;
        width: 1em;
        height: 1em;
        font-size: 16px;
        top: 7px;
        right: 7px;
    }

@media screen and (min-width: 0\0) {
    .accordion .accordion-expanded .accordion .accordion-head:after {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .accordion .accordion-expanded .accordion .accordion-head:after {
    background-image: url(../images/icon-sprites-vector.svg);
}

.accordion .accordion-expanded .accordion .accordion-head:hover {
    border-color: #ce1141;
}

    .accordion .accordion-expanded .accordion .accordion-head:hover:before {
        border-color: #ce1141;
    }

    .accordion .accordion-expanded .accordion .accordion-head:hover:after {
        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: -10em -8em;
        width: 1em;
        height: 1em;
        font-size: 16px;
        top: 7px;
        right: 7px;
    }

@media screen and (min-width: 0\0) {
    .accordion .accordion-expanded .accordion .accordion-head:hover:after {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .accordion .accordion-expanded .accordion .accordion-head:hover:after {
    background-image: url(../images/icon-sprites-vector.svg);
}

.accordion .accordion-expanded .accordion .accordion-expanded .accordion-head {
    border-top: 1px solid #ce1141;
}

    .accordion .accordion-expanded .accordion .accordion-expanded .accordion-head:before {
        border: 1px solid #ce1141;
    }

    .accordion .accordion-expanded .accordion .accordion-expanded .accordion-head:hover .accordion .accordion-expanded .accordion .accordion-expanded .accordion-head:after,
    .accordion .accordion-expanded .accordion .accordion-expanded .accordion-head:after {
        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: -16em -8em;
        width: 1em;
        height: 1em;
        font-size: 16px;
        top: 7px;
        right: 7px;
    }

@media screen and (min-width: 0\0) {
    .accordion .accordion-expanded .accordion .accordion-expanded .accordion-head:hover .accordion .accordion-expanded .accordion .accordion-expanded .accordion-head:after,
    .accordion .accordion-expanded .accordion .accordion-expanded .accordion-head:after {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .accordion .accordion-expanded .accordion .accordion-expanded .accordion-head:hover .accordion .accordion-expanded .accordion .accordion-expanded .accordion-head:after,
:root .accordion .accordion-expanded .accordion .accordion-expanded .accordion-head:after {
    background-image: url(../images/icon-sprites-vector.svg);
}

.resource-accordion .link-download {
    display: inline-block;
    min-height: 30px;
    margin-bottom: 20px;
}

.resource-accordion .accordion-body .accordion-body ul li:last-of-type .link-download {
    margin-bottom: 00px;
}

.resource-accordion .accordion-body {
    padding: 0;
}

.resource-accordion.accordion {
    position: relative;
    margin-left: 0;
    margin-right: 0;
}

    .resource-accordion.accordion .accordion-head {
        padding: 6px 60px 6px 15px;
        border-left: 1px solid #363636;
        border-bottom: 1px solid #363636;
        border-top: 1px solid #363636;
    }

        .resource-accordion.accordion .accordion-head:before {
            border: 1px solid #363636;
        }

        .resource-accordion.accordion .accordion-head:after {
            position: absolute;
            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: -8em -8em;
            width: 1em;
            height: 1em;
            content: "";
            font-size: 1em;
        }

@media screen and (min-width: 0\0) {
    .resource-accordion.accordion .accordion-head:after {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .resource-accordion.accordion .accordion-head:after {
    background-image: url(../images/icon-sprites-vector.svg);
}

.resource-accordion.accordion .accordion-head h3 {
    color: #363636;
    font-size: 14px;
    font-weight: 500;
    font-family: "roboto", Arial, Helvetica, sans-serif;
}

.resource-accordion.accordion .accordion-body {
    position: absolute;
    background: white;
    border-left: 1px solid #363636;
    border-right: 1px solid #363636;
    border-bottom: 1px solid #363636;
    margin-top: 0;
    padding-top: 25px;
    padding-bottom: 10px;
    width: 100%;
    z-index: 20;
}

    .resource-accordion.accordion .accordion-body .accordion {
        padding-left: 15px;
        padding-right: 15px;
        padding-bottom: 15px;
    }

        .resource-accordion.accordion .accordion-body .accordion .accordion-head {
            border-bottom: 1px solid transparent;
            border-left: 1px solid transparent;
            padding: 8px 60px 7px 0px;
        }

            .resource-accordion.accordion .accordion-body .accordion .accordion-head h3 {
                font-weight: 700;
                color: #363636;
            }

        .resource-accordion.accordion .accordion-body .accordion .accordion-body {
            margin-bottom: 0;
            padding-bottom: 0;
            padding-top: 0;
            position: relative;
            border: none;
        }

            .resource-accordion.accordion .accordion-body .accordion .accordion-body ul li {
                margin-bottom: 0;
                padding-left: 0;
            }

                .resource-accordion.accordion .accordion-body .accordion .accordion-body ul li:before {
                    position: absolute;
                    left: auto;
                    top: auto;
                    content: "";
                }

                .resource-accordion.accordion .accordion-body .accordion .accordion-body ul li a:hover {
                    color: #ce1141;
                }

                .resource-accordion.accordion .accordion-body .accordion .accordion-body ul li a .docs.icon-pdf:before {
                    position: absolute;
                    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: -20em -8em;
                    width: 1.625em;
                    height: 1.875em;
                    content: "";
                    font-size: 1em;
                }

@media screen and (min-width: 0\0) {
    .resource-accordion.accordion .accordion-body .accordion .accordion-body ul li a .docs.icon-pdf:before {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .resource-accordion.accordion .accordion-body .accordion .accordion-body ul li a .docs.icon-pdf:before {
    background-image: url(../images/icon-sprites-vector.svg);
}

.resource-accordion.accordion .accordion-body .accordion .accordion-body ul li a .docs.icon-pdf:hover:before {
    position: absolute;
    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: -22em -8em;
    width: 1.625em;
    height: 1.875em;
    content: "";
    font-size: 1em;
}

@media screen and (min-width: 0\0) {
    .resource-accordion.accordion .accordion-body .accordion .accordion-body ul li a .docs.icon-pdf:hover:before {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .resource-accordion.accordion .accordion-body .accordion .accordion-body ul li a .docs.icon-pdf:hover:before {
    background-image: url(../images/icon-sprites-vector.svg);
}

.resource-accordion.accordion .accordion-body .accordion .accordion-body ul li a .docs.icon-document:before {
    position: absolute;
    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: -24em -8em;
    width: 1.6875em;
    height: 1.875em;
    content: "";
    font-size: 1em;
}

@media screen and (min-width: 0\0) {
    .resource-accordion.accordion .accordion-body .accordion .accordion-body ul li a .docs.icon-document:before {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .resource-accordion.accordion .accordion-body .accordion .accordion-body ul li a .docs.icon-document:before {
    background-image: url(../images/icon-sprites-vector.svg);
}

.resource-accordion.accordion .accordion-body .accordion .accordion-body ul li a .docs.icon-document:hover:before {
    position: absolute;
    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: -26em -8em;
    width: 1.6875em;
    height: 1.875em;
    content: "";
    font-size: 1em;
}

@media screen and (min-width: 0\0) {
    .resource-accordion.accordion .accordion-body .accordion .accordion-body ul li a .docs.icon-document:hover:before {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .resource-accordion.accordion .accordion-body .accordion .accordion-body ul li a .docs.icon-document:hover:before {
    background-image: url(../images/icon-sprites-vector.svg);
}

.resource-accordion.accordion .accordion-body .accordion .accordion-body ul li a .docs:before {
    position: absolute;
    left: 0;
    top: 4px;
    display: inline-block;
    content: "";
}

.resource-accordion.accordion .accordion-body .accordion .accordion-body ul li a .docs .doc-title {
    display: inline-block;
    margin-left: 45px;
    font-weight: bold;
}

.resource-accordion.accordion .accordion-body .accordion .accordion-body ul li a .docs .doc-info {
    display: block;
    margin-left: 45px;
    text-transform: uppercase;
}

.resource-accordion.accordion .accordion-expanded .accordion-head {
    border-left: 1px solid #363636;
    border-bottom: 1px solid #363636;
    border-top: 1px solid #363636;
}

    .resource-accordion.accordion .accordion-expanded .accordion-head:before {
        border: 1px solid #363636;
    }

    .resource-accordion.accordion .accordion-expanded .accordion-head:after {
        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: -14em -8em;
        width: 1em;
        height: 1em;
    }

@media screen and (min-width: 0\0) {
    .resource-accordion.accordion .accordion-expanded .accordion-head:after {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .resource-accordion.accordion .accordion-expanded .accordion-head:after {
    background-image: url(../images/icon-sprites-vector.svg);
}

.resource-accordion.accordion .accordion-expanded .accordion-body {
    margin-bottom: 0;
    padding-bottom: 0;
}

    .resource-accordion.accordion .accordion-expanded .accordion-body .accordion-head {
        border-bottom: 1px solid transparent;
        border-left: 1px solid transparent;
    }

        .resource-accordion.accordion .accordion-expanded .accordion-body .accordion-head:after {
            position: absolute;
            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: -8em -8em;
            width: 1em;
            height: 1em;
            content: "";
            font-size: 1em;
        }

@media screen and (min-width: 0\0) {
    .resource-accordion.accordion .accordion-expanded .accordion-body .accordion-head:after {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .resource-accordion.accordion .accordion-expanded .accordion-body .accordion-head:after {
    background-image: url(../images/icon-sprites-vector.svg);
}

.resource-accordion.accordion .accordion-expanded .accordion-body .accordion-expanded .accordion-head {
    border-bottom: 1px solid transparent;
    border-left: 1px solid transparent;
    border-top: 1px solid #ce1141;
}

    .resource-accordion.accordion .accordion-expanded .accordion-body .accordion-expanded .accordion-head h3 {
        color: #ce1141;
    }

    .resource-accordion.accordion .accordion-expanded .accordion-body .accordion-expanded .accordion-head:before {
        border: 1px solid #ce1141;
    }

    .resource-accordion.accordion .accordion-expanded .accordion-body .accordion-expanded .accordion-head:after {
        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: -16em -8em;
        width: 1em;
        height: 1em;
    }

@media screen and (min-width: 0\0) {
    .resource-accordion.accordion .accordion-expanded .accordion-body .accordion-expanded .accordion-head:after {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .resource-accordion.accordion .accordion-expanded .accordion-body .accordion-expanded .accordion-head:after {
    background-image: url(../images/icon-sprites-vector.svg);
}

.resource-accordion.accordion .accordion-expanded .accordion-body .accordion-expanded .accordion-body .accordion-head {
    border-bottom: 1px solid transparent;
    border-left: 1px solid transparent;
}

.resource-accordion.dark-background.resource-accordion.accordion .accordion-head {
    border-left: 1px solid white;
    border-bottom: 1px solid white;
    border-top: 1px solid white;
}

    .resource-accordion.dark-background.resource-accordion.accordion .accordion-head:before {
        border: 1px solid white;
    }

    .resource-accordion.dark-background.resource-accordion.accordion .accordion-head:after {
        position: absolute;
        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: -12em -8em;
        width: 1em;
        height: 1em;
        content: "";
        font-size: 1em;
    }

@media screen and (min-width: 0\0) {
    .resource-accordion.dark-background.resource-accordion.accordion .accordion-head:after {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .resource-accordion.dark-background.resource-accordion.accordion .accordion-head:after {
    background-image: url(../images/icon-sprites-vector.svg);
}

.resource-accordion.dark-background.resource-accordion.accordion .accordion-head h3 {
    color: white;
}

.resource-accordion.dark-background.resource-accordion.accordion .accordion-expanded .accordion-head {
    border-left: 1px solid white;
    border-bottom: 1px solid white;
    border-top: 1px solid white;
}

    .resource-accordion.dark-background.resource-accordion.accordion .accordion-expanded .accordion-head:before {
        border: 1px solid white;
    }

    .resource-accordion.dark-background.resource-accordion.accordion .accordion-expanded .accordion-head:after {
        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: -18em -8em;
        width: 1em;
        height: 1em;
    }

@media screen and (min-width: 0\0) {
    .resource-accordion.dark-background.resource-accordion.accordion .accordion-expanded .accordion-head:after {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .resource-accordion.dark-background.resource-accordion.accordion .accordion-expanded .accordion-head:after {
    background-image: url(../images/icon-sprites-vector.svg);
}

.resource-accordion.dark-background.resource-accordion.accordion .accordion-expanded .accordion-body {
    border-bottom: 1px solid #363636;
    border-left: 1px solid #363636;
    border-right: 1px solid #363636;
}

    .resource-accordion.dark-background.resource-accordion.accordion .accordion-expanded .accordion-body .accordion-head {
        border-bottom: 1px solid transparent;
        border-left: 1px solid transparent;
        border-top: 1px solid #363636;
    }

        .resource-accordion.dark-background.resource-accordion.accordion .accordion-expanded .accordion-body .accordion-head:before {
            border: 1px solid #363636;
        }

        .resource-accordion.dark-background.resource-accordion.accordion .accordion-expanded .accordion-body .accordion-head:after {
            position: absolute;
            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: -8em -8em;
            width: 1em;
            height: 1em;
            content: "";
            font-size: 1em;
        }

@media screen and (min-width: 0\0) {
    .resource-accordion.dark-background.resource-accordion.accordion .accordion-expanded .accordion-body .accordion-head:after {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .resource-accordion.dark-background.resource-accordion.accordion .accordion-expanded .accordion-body .accordion-head:after {
    background-image: url(../images/icon-sprites-vector.svg);
}

.resource-accordion.dark-background.resource-accordion.accordion .accordion-expanded .accordion-body .accordion-head h3 {
    color: #363636;
}

.resource-accordion.dark-background.resource-accordion.accordion .accordion-expanded .accordion-body .accordion-body {
    border-bottom: 1px solid transparent !important;
    border-left: 1px solid transparent !important;
    border-right: 1px solid transparent !important;
}

.resource-accordion.dark-background.resource-accordion.accordion .accordion-expanded .accordion-body .accordion-expanded .accordion-head {
    border-bottom: 1px solid transparent;
    border-left: 1px solid transparent;
    border-top: 1px solid #ce1141;
}

    .resource-accordion.dark-background.resource-accordion.accordion .accordion-expanded .accordion-body .accordion-expanded .accordion-head h3 {
        color: #ce1141;
    }

    .resource-accordion.dark-background.resource-accordion.accordion .accordion-expanded .accordion-body .accordion-expanded .accordion-head:before {
        border: 1px solid #ce1141;
    }

    .resource-accordion.dark-background.resource-accordion.accordion .accordion-expanded .accordion-body .accordion-expanded .accordion-head:after {
        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: -16em -8em;
        width: 1em;
        height: 1em;
    }

@media screen and (min-width: 0\0) {
    .resource-accordion.dark-background.resource-accordion.accordion .accordion-expanded .accordion-body .accordion-expanded .accordion-head:after {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .resource-accordion.dark-background.resource-accordion.accordion .accordion-expanded .accordion-body .accordion-expanded .accordion-head:after {
    background-image: url(../images/icon-sprites-vector.svg);
}

.resource-accordion.dark-background.resource-accordion.accordion .accordion-expanded .accordion-body .accordion-expanded .accordion-body {
    border-bottom: 1px solid transparent;
    border-left: 1px solid transparent;
    border-right: 1px solid transparent;
}

    .resource-accordion.dark-background.resource-accordion.accordion .accordion-expanded .accordion-body .accordion-expanded .accordion-body .accordion-head {
        border-bottom: 1px solid transparent;
        border-left: 1px solid transparent;
    }

    .resource-accordion.dark-background.resource-accordion.accordion .accordion-expanded .accordion-body .accordion-expanded .accordion-body a {
        color: #363636;
    }

        .resource-accordion.dark-background.resource-accordion.accordion .accordion-expanded .accordion-body .accordion-expanded .accordion-body a:hover {
            color: #ce1141;
        }


/*
.white-background .resource-accordion {
    &.accordion {
        .accordion-head {
            border-left: 1px solid $grey-dark;
            border-bottom: 1px solid $grey-dark;
            border-top: 1px solid $grey-dark;

            &:before {
                border: 1px solid $grey-dark;
            }

            &:after {
                position: absolute;
                @include icons-svg($plus-grey-pos-x, $plus-grey-pos-y, $plus-grey-width, $plus-grey-height);
                content: "";
                font-size: 1em;
            }

            h3 {
                color: $grey-dark;
            }
        }

        .accordion-expanded {
            .accordion-head {
                border-left: 1px solid $grey-dark;
                border-bottom: 1px solid $grey-dark;
                border-top: 1px solid $grey-dark;

                &:before {
                    border: 1px solid $grey-dark;
                }

                &:after {
                    @include icons-svg($minus-grey-pos-x, $minus-grey-pos-y, $plus-grey-width, $plus-grey-height); // -532px 0;  Minus Default
                }
            }

            .accordion-body {

                .accordion-head {
                    border-bottom: 1px solid transparent;
                    border-left: 1px solid transparent;

                    &:after {
                        position: absolute;
                        @include icons-svg($plus-grey-pos-x, $plus-grey-pos-y, $plus-grey-width, $plus-grey-height);
                        content: "";
                        font-size: 1em;
                    }
                }

                .accordion-expanded {
                    .accordion-head {
                        border-bottom: 1px solid transparent;
                        border-left: 1px solid transparent;
                        border-top: 1px solid $red;

                        h3 {
                            color: $red;
                        }

                        &:before {
                            border: 1px solid $red;
                        }

                        &:after {
                            @include icons-svg($minus-red-pos-x, $minus-red-pos-y, $plus-grey-width, $plus-grey-height); // -532px 0;  Minus Default 
                        }
                    }

                    .accordion-body {
                        .accordion-head {
                            border-bottom: 1px solid transparent;
                            border-left: 1px solid transparent;
                        }
                    }
                }
            }
        }
    }
}

.light-text.white-background .resource-accordion {
    &.accordion {
        .accordion-head {
            border-left: 1px solid white;
            border-bottom: 1px solid white;
            border-top: 1px solid white;

            &:before {
                border: 1px solid white;
            }

            &:after {
                position: absolute;
                @include icons-svg($plus-white-pos-x, $plus-white-pos-y, $plus-white-width, $plus-white-height);
                content: "";
                font-size: 1em;
            }

            h3 {
                color: white;
            }
        }

        .accordion-expanded {
            .accordion-head {
                border-left: 1px solid white;
                border-bottom: 1px solid white;
                border-top: 1px solid white;

                &:before {
                    border: 1px solid white;
                }

                &:after {
                   @include icons-svg($minus-white-pos-x, $minus-white-pos-y, $plus-white-width, $plus-white-height); // -532px 0;  Minus Default
                }
            }

            .accordion-body {
                border-bottom: 1px solid $grey-dark;
                border-left: 1px solid $grey-dark;
                border-right: 1px solid $grey-dark;

                .accordion-head {
                    border-bottom: 1px solid transparent;
                    border-left: 1px solid transparent;
                    border-top: 1px solid $grey-dark;

                    &:before {
                        border: 1px solid $grey-dark;
                    }

                    &:after {
                        position: absolute;
                        @include icons-svg($plus-grey-pos-x, $plus-grey-pos-y, $plus-grey-width, $plus-grey-height);
                        content: "";
                        font-size: 1em;
                    }

                    h3 {
                        color: $grey-dark;
                    }
                }


                .accordion-body {
                    border-bottom: 1px solid transparent !important;
                    border-left: 1px solid transparent !important;
                    border-right: 1px solid transparent !important;
                }

                .accordion-expanded {
                    .accordion-head {
                        border-bottom: 1px solid transparent;
                        border-left: 1px solid transparent;
                        border-top: 1px solid $red;

                        h3 {
                            color: $red;
                        }

                        &:before {
                            border: 1px solid $red;
                        }

                        &:after {
                            @include icons-svg($minus-red-pos-x, $minus-red-pos-y, $plus-grey-width, $plus-grey-height); // -532px 0;  Minus Default  
                        }
                    }

                    .accordion-body {
                        border-bottom: 1px solid transparent;
                        border-left: 1px solid transparent;
                        border-right: 1px solid transparent;

                        .accordion-head {
                            border-bottom: 1px solid transparent;
                            border-left: 1px solid transparent; 
                        }


                        a {
                            color: $grey-dark;

                            &:hover {
                                color: $red;
                            }
                        }
                    }
                }
            }
        }
    }
}


.black-background .resource-accordion {
    &.accordion {
        .accordion-head {
            border-left: 1px solid white;
            border-bottom: 1px solid white;
            border-top: 1px solid white;

            &:before {
                border: 1px solid white;
            }

            &:after {
                position: absolute;
                @include icons-svg($plus-white-pos-x, $plus-white-pos-y, $plus-white-width, $plus-white-height);
                content: "";
                font-size: 1em;
            }

            h3 {
                color: white;
            }
        }

        .accordion-expanded {
            .accordion-head {
                border-left: 1px solid white;
                border-bottom: 1px solid white;
                border-top: 1px solid white;

                &:before {
                    border: 1px solid white;
                }

                &:after {
                   @include icons-svg($minus-white-pos-x, $minus-white-pos-y, $plus-white-width, $plus-white-height); // -532px 0;  Language Bubble Default
                }
            }

            .accordion-body {
                border-bottom: 1px solid $grey-dark;
                border-left: 1px solid $grey-dark;
                border-right: 1px solid $grey-dark;

                .accordion-head {
                    border-bottom: 1px solid transparent;
                    border-left: 1px solid transparent;
                    border-top: 1px solid $grey-dark;

                    &:before {
                        border: 1px solid $grey-dark;
                    }

                    &:after {
                        position: absolute;
                        @include icons-svg($plus-grey-pos-x, $plus-grey-pos-y, $plus-grey-width, $plus-grey-height);
                        content: "";
                        font-size: 1em;
                    }

                    h3 {
                        color: $grey-dark;
                    }
                }


                .accordion-body {
                    border-bottom: 1px solid transparent !important;
                    border-left: 1px solid transparent !important;
                    border-right: 1px solid transparent !important;
                }

                .accordion-expanded {
                    .accordion-head {
                        border-bottom: 1px solid transparent;
                        border-left: 1px solid transparent;
                        border-top: 1px solid $red;

                        h3 {
                            color: $red;
                        }

                        &:before {
                            border: 1px solid $red;
                        }

                        &:after {
                            @include icons-svg($minus-red-pos-x, $minus-red-pos-y, $plus-grey-width, $plus-grey-height); // -532px 0;  Language Bubble Default
                        }
                    }

                    .accordion-body {
                        border-bottom: 1px solid transparent;
                        border-left: 1px solid transparent;
                        border-right: 1px solid transparent;

                        .accordion-head {
                            border-bottom: 1px solid transparent;
                            border-left: 1px solid transparent;
                        }


                        a {
                            color: $grey-dark;

                            &:hover {
                                color: $red;
                            }
                        }
                    }
                }
            }
        }
    }
}

.module.text-in-box .resource-accordion {
    &.accordion {
        .accordion-head {
            border-left: 1px solid white;
            border-bottom: 1px solid white;
            border-top: 1px solid white;

            &:before {
                border: 1px solid white;
            }

            &:after {
                position: absolute;
                @include icons-svg($plus-white-pos-x, $plus-white-pos-y, $plus-white-width, $plus-white-height);
                content: "";
                font-size: 1em;
            }

            h3 {
                color: white;
            }
        }

        .accordion-expanded {
            .accordion-head {
                border-left: 1px solid white;
                border-bottom: 1px solid white;
                border-top: 1px solid white;

                &:before {
                    border: 1px solid white;
                }

                &:after {
                   @include icons-svg($minus-white-pos-x, $minus-white-pos-y, $plus-white-width, $plus-white-height); // -532px 0;  Language Bubble Default
                }
            }

            .accordion-body {
                border-bottom: 1px solid $grey-dark;
                border-left: 1px solid $grey-dark;
                border-right: 1px solid $grey-dark;

                .accordion-head {
                    border-bottom: 1px solid transparent;
                    border-left: 1px solid transparent;
                    border-top: 1px solid $grey-dark;

                    &:before {
                        border: 1px solid $grey-dark;
                    }

                    h3 {
                        color: $grey-dark;
                    }
                }


                .accordion-body {
                    border-bottom: 1px solid transparent !important;
                    border-left: 1px solid transparent !important;
                    border-right: 1px solid transparent !important;
                }

                .accordion-expanded {
                    .accordion-head {
                        border-bottom: 1px solid transparent;
                        border-left: 1px solid transparent;
                        border-top: 1px solid $red;

                        h3 {
                            color: $red;
                        }

                        &:before {
                            border: 1px solid $red;
                        }
                    }

                    .accordion-body {
                        border-bottom: 1px solid transparent;
                        border-left: 1px solid transparent;
                        border-right: 1px solid transparent;

                        .accordion-head {
                            border-bottom: 1px solid transparent;
                            border-left: 1px solid transparent;
                        }


                        a {
                            color: $grey-dark;

                            &:hover {
                                color: $red;
                            }
                        }
                    }
                }
            }
        }
    }
}
*/


/* Accordion Body & Left Gutter Accordion Adjustments */

.accordion .type-icon .accordion-body {
    padding: 20px;    
}

@media (min-width: 1025px) {
    .accordion .type-icon .accordion-body {
        padding: 50px;
    }
}

.accordion .type-icon-title .accordion-body {
    padding: 20px;    
}

@media (min-width: 1025px) {
    .accordion .type-icon-title .accordion-body {
        padding: 50px;
    }
}

@media (max-width: 667px) {
    .accordion .type-icon-title .accordion-body.left-gutter {
        padding-left: 33.333%;
    }

        .accordion .type-icon-title .accordion-body.left-gutter .rich-text {
            margin-left: -15px;
        }
}

@media (min-width: 668px) {
    .accordion .type-icon-title .accordion-body.left-gutter {
        padding-left: 25%;
    }

        .accordion .type-icon-title .accordion-body.left-gutter .rich-text {
            margin-left: 8px;
        }
}

@media (min-width: 1200px) {
    .accordion .type-icon-title .accordion-body.left-gutter {
        padding-left: 16.667%;
    }

        .accordion .type-icon-title .accordion-body.left-gutter .rich-text {
            margin-left: 16px;
        }
}

.accordion .type-icon-title-description .accordion-body {
    padding: 20px;
    background: white;
}

@media (min-width: 1025px) {
    .accordion .type-icon-title-description .accordion-body {
        padding: 50px;
    }
}

@media (min-width: 668px) {
    .accordion .type-icon-title-description .accordion-body .rich-text {
        padding-right: 20px;
    }
}

@media (max-width: 667px) {
    .accordion .type-icon-title-description .accordion-body.left-gutter {
        padding-left: 33.333%;
    }

        .accordion .type-icon-title-description .accordion-body.left-gutter .rich-text {
            margin-left: -15px;
        }
}

@media (min-width: 668px) {
    .accordion .type-icon-title-description .accordion-body.left-gutter {
        padding-left: 20.833%;
    }

        .accordion .type-icon-title-description .accordion-body.left-gutter .rich-text {
            margin-left: 10px;
        }
}

@media (min-width: 1200px) {
    .accordion .type-icon-title-description .accordion-body.left-gutter {
        padding-left: 16.667%;
    }

        .accordion .type-icon-title-description .accordion-body.left-gutter .rich-text {
            margin-left: 18px;
        }
}

.accordion .type-image .accordion-body {
    padding: 20px;
    background: white;
}

@media (min-width: 1025px) {
    .accordion .type-image .accordion-body {
        padding: 50px;
    }
}

.accordion .type-image-title-description .accordion-body {
    padding: 20px;
    background: white;
}

@media (min-width: 1025px) {
    .accordion .type-image-title-description .accordion-body {
        padding: 50px;
    }
}

@media (max-width: 667px) {
    .accordion .type-image-title-description .accordion-body.left-gutter {
        padding-left: 33.333%;
    }

        .accordion .type-image-title-description .accordion-body.left-gutter .rich-text {
            margin-left: -15px;
        }
}

@media (min-width: 668px) {
    .accordion .type-image-title-description .accordion-body.left-gutter {
        padding-left: 16.667%;
    }

        .accordion .type-image-title-description .accordion-body.left-gutter .rich-text {
            margin-left: 32px;
        }
}

@media (min-width: 1200px) {
    .accordion .type-image-title-description .accordion-body.left-gutter {
        padding-left: 20.833%;
    }

        .accordion .type-image-title-description .accordion-body.left-gutter .rich-text {
            margin-left: 30px;
        }
}

.accordion .type-inner-icon-title {
    margin-bottom: 23px;
}

    .accordion .type-inner-icon-title .accordion-head {
        padding: 23px 60px 0 0;
    }

    .accordion .type-inner-icon-title:hover .accordion-head h3 {
        color: #ce1141;
    }

    .accordion .type-inner-icon-title .accordion-body {
        padding: 8px 20px 20px 20px;
        background: white;
    }

@media (max-width: 667px) {
    .accordion .type-inner-icon-title .accordion-body.left-gutter {
        padding-left: 25%;
        margin-left: -11px;
    }
}

@media (min-width: 668px) {
    .accordion .type-inner-icon-title .accordion-body.left-gutter {
        padding-left: 25%;
        margin-left: -11px;
    }
}

@media (min-width: 1200px) {
    .accordion .type-inner-icon-title .accordion-body.left-gutter {
        padding-left: 16.667%;
        margin-left: -8px;
    }
}

.accordion .type-title .accordion-head h3 {
    line-height: 22px;
}

.no-touchevents .accordion .type-title:hover .accordion-head h3 {
    color: #ce1141;
}

@media (min-width: 668px) {
    .page-intro-content .accordion > .type-title {
        margin-right: 20px;
    }
}

.column.nine-twentieths .accordion .type-icon-title .accordion-head,
.column.one-half .accordion .type-icon-title .accordion-head {
    padding-bottom: 20px;
}

    .column.nine-twentieths .accordion .type-icon-title .accordion-head .icon-text figure,
    .column.one-half .accordion .type-icon-title .accordion-head .icon-text figure {
        margin-left: 0;
    }

@media (min-width: 668px) {
    .column.nine-twentieths .accordion .type-icon-title .accordion-head .icon-text .title-text-wrapper,
    .column.one-half .accordion .type-icon-title .accordion-head .icon-text .title-text-wrapper {
        margin-left: 0;
    }
}

@media (max-width: 667px) {
    .column.nine-twentieths .accordion .type-icon-title .accordion-head .icon-text h3,
    .column.one-half .accordion .type-icon-title .accordion-head .icon-text h3 {
        margin-bottom: 0;
    }
}

.column.nine-twentieths .accordion .type-icon-title .accordion-body,
.column.one-half .accordion .type-icon-title .accordion-body {
    padding-top: 0;
    padding-bottom: 20px;
}

@media (max-width: 667px) {
    .column.nine-twentieths .accordion .type-icon-title .accordion-body.left-gutter,
    .column.one-half .accordion .type-icon-title .accordion-body.left-gutter {
        margin-left: -14px;
    }
}

@media (min-width: 668px) {
    .column.nine-twentieths .accordion .type-icon-title .accordion-body.left-gutter,
    .column.one-half .accordion .type-icon-title .accordion-body.left-gutter {
        margin-left: -10px;
    }
}

@media (min-width: 1200px) {
    .column.nine-twentieths .accordion .type-icon-title .accordion-body.left-gutter,
    .column.one-half .accordion .type-icon-title .accordion-body.left-gutter {
        margin-left: -7px;
    }
}


/* ------------------------------------------------------------ *\
	Title
\* ------------------------------------------------------------ */

.title-with-border {
    text-transform: uppercase;
    position: relative;
    font-size: 24px;
    line-height: 1;
    color: #373a36;
    padding-bottom: 12px;
    margin-bottom: 40px;
    font-family: "Nord-Con", sans-serif;
    font-weight: 700;
}

    .title-with-border.red {
        color: #ce1141;
    }

        .title-with-border.red:after {
            background: #ce1141;
        }

    .title-with-border:after {
        position: absolute;
        bottom: 0;
        left: 0;
        content: '';
        width: 40px;
        height: 2px;
        background: #373a36;
    }

.white-text {
    color: #fff;
}
.white-text .title-with-border {
    color: #fff;
}
.white-text .title-with-border:after {
    background-color: #fff;
}

h2.title-with-border,
h4.title-with-border {
    font-size: 20px;
}

    h2.title-with-border:after,
    h4.title-with-border:after {
        width: 40px;
    }

h2.title-with-border-alt:after,
h4.title-with-border-alt:after {
    width: 40px;
}

.color-red {
    color: #ce1141;
}

    .color-red:after {
        background-color: #ce1141;
    }

.color-grey {
    color: #373a36;
}

    .color-grey:after {
        background-color: #373a36;
    }

.color-white {
    color: #fff;
}

    .color-white:after {
        background-color: #fff;
    }


/* ------------------------------------------------------------ *\
	Stat
\* ------------------------------------------------------------ */

.stat {
    display: inline-block;
    font-size: 0;
    white-space: nowrap;
    text-align: right;
    color: #373a36;
    margin: 20px;
    margin-left: 0;
}

@media (min-width: 668px) and (max-width: 1024px) {
    .stat {
        margin: 0 0 20px 0;
    }
}

.stat .stat-number-wrapper {
    position: relative;
    display: inline-block;
    margin-right: 10px;
    font-family: "Nord-Con", sans-serif;
    font-size: 100px;
    line-height: .7;
    letter-spacing: -.01em;
    font-weight: 700;
    vertical-align: top;
    white-space: normal;
}

@media (min-width: 668px) and (max-width: 1024px) {
    .stat .stat-number-wrapper {
        display: block;
        margin-right: 0;
    }
}

@media (max-width: 667px) {
    .stat .stat-number-wrapper {
        font-size: 93px;
    }
}

.stat .stat-percent {
    position: relative;
    left: -18px;
    display: inline-block;
}

    .stat .stat-percent:after {
        position: absolute;
        top: 0;
        left: 100%;
        content: "";
        background-size: 100% 100%;
        width: 15px;
        height: 18px;
        display: inline-block;
        vertical-align: middle;
        font-size: 0;
    }

.stat sup {
    font-size: 50%;
    font-weight: 300;
}

@media (max-width: 667px) {
    .stat sup {
        font-size: 46px;
    }
}

.stat p {
    display: inline-block;
    max-width: 142px;
    margin-top: -3px;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    line-height: 1.38;
    vertical-align: top;
    white-space: normal;
    text-align: left;
}

@media (min-width: 668px) and (max-width: 1024px) {
    .stat p {
        display: block;
        margin-top: 0;
    }
}

.stat p strong {
    font-weight: 500;
}

@media (min-width: 1025px) and (max-width: 1180px) {
    .column.one-quarter .stat {
        margin-right: 0;
    }

        .column.one-quarter .stat .stat-number-wrapper {
            margin-right: 5px;
            font-size: 76px;
        }

        .column.one-quarter .stat p {
            max-width: 130px;
        }
}

.stat-red {
    color: #ce1141;
}

.stat-grey {
    color: #7f7f7f;
}

.stat .stat-percent.up-arrow:after,
.stat.stat-black .stat-percent.up-arrow:after {
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    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: 0em -8em;
    width: 0.8125em;
    height: 1.0625em;
    font-size: 16px;
}

@media screen and (min-width: 0\0) {
    .stat .stat-percent.up-arrow:after,
    .stat.stat-black .stat-percent.up-arrow:after {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .stat .stat-percent.up-arrow:after,
:root .stat.stat-black .stat-percent.up-arrow:after {
    background-image: url(../images/icon-sprites-vector.svg);
}

.stat .stat-percent.down-arrow:after,
.stat.stat-black .stat-percent.down-arrow:after {
    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: 0em -8em;
    width: 0.8125em;
    height: 1.0625em;
    font-size: 16px;
}

@media screen and (min-width: 0\0) {
    .stat .stat-percent.down-arrow:after,
    .stat.stat-black .stat-percent.down-arrow:after {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .stat .stat-percent.down-arrow:after,
:root .stat.stat-black .stat-percent.down-arrow:after {
    background-image: url(../images/icon-sprites-vector.svg);
}

.stat.stat-red .stat-percent.up-arrow:after {
    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: -6em -8em;
    width: 0.8125em;
    height: 1.0625em;
    font-size: 16px;
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

@media screen and (min-width: 0\0) {
    .stat.stat-red .stat-percent.up-arrow:after {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .stat.stat-red .stat-percent.up-arrow:after {
    background-image: url(../images/icon-sprites-vector.svg);
}

.stat.stat-red .stat-percent.down-arrow:after {
    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: -6em -8em;
    width: 0.8125em;
    height: 1.0625em;
    font-size: 16px;
}

@media screen and (min-width: 0\0) {
    .stat.stat-red .stat-percent.down-arrow:after {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .stat.stat-red .stat-percent.down-arrow:after {
    background-image: url(../images/icon-sprites-vector.svg);
}

.stat.stat-grey .stat-percent.up-arrow:after {
    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: -2em -8em;
    width: 0.8125em;
    height: 1.0625em;
    font-size: 16px;
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

@media screen and (min-width: 0\0) {
    .stat.stat-grey .stat-percent.up-arrow:after {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .stat.stat-grey .stat-percent.up-arrow:after {
    background-image: url(../images/icon-sprites-vector.svg);
}

.stat.stat-grey .stat-percent.down-arrow:after {
    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: -2em -8em;
    width: 0.8125em;
    height: 1.0625em;
    font-size: 16px;
}

@media screen and (min-width: 0\0) {
    .stat.stat-grey .stat-percent.down-arrow:after {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .stat.stat-grey .stat-percent.down-arrow:after {
    background-image: url(../images/icon-sprites-vector.svg);
}


/* ------------------------------------------------------------ *\
	Form
\* ------------------------------------------------------------ */


/*
.form {
	.field,
	.form__btn { height: 40px; line-height: 40px; border: 1px solid #b2b2b2; width: 100%; }

	.form__btn { font-size: 20px; font-family: $font-nord; color: #373a36; text-transform: uppercase; font-weight: 700; text-align: center; background-color: transparent; }
	.field { font-size: 16px; font-weight: 300; font-family: $font-roboto; padding: 0 10px; }
}

.form-search-locations {
	margin-bottom: 50px;

	@media(max-width: $tablet){
		margin-bottom: 30px;
	}

	@media(max-width: $mobile){
		.form__controls { position: relative; }
		.form__controls .field { padding-right: 50px; }
		.form__btn { width: 40px; position: absolute; top: 0; right: 0; }
	}
}
*/


/* ------------------------------------------------------------ *\
	Form Time (used on corp_stock_lookup)
\* ------------------------------------------------------------ */

.corp-stock-lookup .form-error-message {
    color: #ce1141;
    font-size: 16px;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    padding: 16px 0;
    min-height: 54px;
}

    .corp-stock-lookup .form-error-message.hide-message p {
        visibility: hidden;
        opacity: 0;
    }

.corp-stock-lookup .form-wrapper .form-controls input {
    width: auto;
    vertical-align: top;
}

    .corp-stock-lookup .form-wrapper .form-controls input[type=text] {
        width: 130px;
    }

.form-time .form-label {
    margin-bottom: 4px;
    display: block;
}


/*
.form-time input.datepicker {
    border: 1px solid #b2b2b2;
    width: 100%;
    font-size: 14px;
    font-weight: 300;
    height: 40px;
    line-height: 40px;
    padding: 0 10px;
    background: #fff url(../images/arrow-down@2x.png) center right 10px no-repeat;
    background-size: 12px 8px;
}
*/

input.hasDatepicker {
    background-color: white;
}


/* ------------------------------------------------------------ *\
	Corp
\* ------------------------------------------------------------ */

.corp-h3-sub {
    padding: 77px 0 65px;
}

    .corp-h3-sub p {
        font-weight: 300;
        margin-bottom: 18px;
    }

        .corp-h3-sub p:last-child {
            margin-bottom: 0;
        }

    .corp-h3-sub .corp-sub-image {
        text-align: center;
    }

@media (max-width: 667px) {
    .corp-h3-sub .corp-sub-image {
        margin-top: 40px;
    }
}

.corp-h3-sub .corp-sub-image img {
    height: auto;
}

.widget-wrapper .corp-h3-sub {
    padding-top: 0;
}

    .widget-wrapper .corp-h3-sub > .shell {
        padding-left: 0;
        padding-right: 0;
    }

    .widget-wrapper .corp-h3-sub .heading-column,
    .widget-wrapper .corp-h3-sub .left-column {
        margin-left: 0;
    }

    .widget-wrapper .corp-h3-sub .heading-column {
        width: 100%;
    }

@media (min-width: 668px) and (max-width: 1024px) {
    .widget-wrapper .corp-h3-sub .left-column {
        width: 50%;
    }
}

@media (min-width: 1025px) {
    .widget-wrapper .corp-h3-sub .left-column {
        width: 45.83333333%;
    }
}

@media (min-width: 668px) and (max-width: 1024px) {
    .widget-wrapper .corp-h3-sub .right-column {
        margin-left: 4.16666667%;
    }
}

@media (min-width: 668px) {
    .widget-wrapper .corp-h3-sub .right-column {
        width: 45.333333%;
    }
}


/* ------------------------------------------------------------ *\
	corp_large_image_background
\* ------------------------------------------------------------ */

.corp_large_image_background {
    position: relative;
    min-height: 670px;
    padding: 80px 0 40px;
    z-index: 1;
}

    .corp_large_image_background p {
        font-size: 16px;
        line-height: 1.38;
        font-weight: 300;
    }

    .corp_large_image_background h2 {
        margin-bottom: 34px;
    }

    .corp_large_image_background .corp_large_image_background_div {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-size: cover;
        background-position: center center;
        z-index: -1;
    }

    .corp_large_image_background.color-white {
        color: #fff;
    }

        .corp_large_image_background.color-white h2 {
            color: #fff;
        }

            .corp_large_image_background.color-white h2:after {
                background-color: #fff;
            }

@media (min-width: 1025px) {
    .corp_large_image_background.text-on-left .text-wrapper {
        margin-left: 11.45833%;
        width: 33.33333%;
    }
}

@media (min-width: 668px) and (max-width: 1024px) {
    .corp_large_image_background.text-on-left .text-wrapper {
        margin-left: 10px;
        width: 33.33333%;
    }
}

@media (max-width: 667px) {
    .corp_large_image_background.text-on-left .text-wrapper {
        padding-left: 10px;
    }
}

@media (min-width: 1025px) {
    .corp_large_image_background.text-in-middle .text-wrapper {
        margin-left: 30.10417%;
        width: 41.66667%;
    }
}

@media (min-width: 668px) and (max-width: 1024px) {
    .corp_large_image_background.text-in-middle .text-wrapper {
        margin-left: 30.10417%;
        width: 41.66667%;
    }
}

@media (max-width: 667px) {
    .corp_large_image_background.text-in-middle .text-wrapper {
        padding-left: 10px;
        width: 100%;
    }
}

.corp_large_image_background.text-in-middle-letterbox {
    min-height: 320px;
    padding: 40px 0 40px;
}

@media (max-width: 667px) {
    .corp_large_image_background {
        padding: 60px 0;
        min-height: 532px;
    }

        .corp_large_image_background .corp_large_image_background_div {
            background-position: center left -250px;
        }

        .corp_large_image_background.text-in-middle-letterbox {
            min-height: 240px;
            padding: 0;
            background: none !important;
        }

            .corp_large_image_background.text-in-middle-letterbox .corp_large_image_background_div {
                position: relative;
                height: 160px;
                margin-bottom: 30px;
            }

            .corp_large_image_background.text-in-middle-letterbox .shell {
                margin-bottom: 30px;
            }

            .corp_large_image_background.text-in-middle-letterbox.color-white {
                color: inherit;
            }

                .corp_large_image_background.text-in-middle-letterbox.color-white h2 {
                    color: inherit;
                }

                    .corp_large_image_background.text-in-middle-letterbox.color-white h2:after {
                        background-color: #373a36;
                    }
}


/* ------------------------------------------------------------ *\
	corp_video
\* ------------------------------------------------------------ */

.corp_video {
    color: #fff;
    position: relative;
}

    .corp_video h3 {
        font-family: "Nord-Con", sans-serif;
        font-weight: 700;
        font-size: 40px;
        line-height: 0.95;
        margin: 0 0 30px;
        position: relative;
        padding-left: 91px;
    }

        .corp_video h3:before {
            position: absolute;
            top: 50%;
            left: 0;
            transform: translateY(-50%);
            background: url(../images/sprite/ico-play-large.png) no-repeat 0 0;
            background-size: 100% 100%;
            width: 72px;
            height: 50px;
            display: inline-block;
            vertical-align: middle;
            font-size: 0;
            content: "";
        }

    .corp_video p {
        font-family: "Roboto", sans-serif;
        font-weight: 300;
        font-size: 16px;
        line-height: 1.38;
    }

    .corp_video .shell {
        position: relative;
        top: 50%;
        transform: translateY(-50%);
    }

    .corp_video.hide-content .section-overlay {
        visibility: hidden;
        opacity: 0;
    }

    .corp_video .section-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        transition: visibility .4s, opacity .4s;
    }

    .corp_video.has-background-image .section-overlay {
        cursor: pointer;
    }

    .corp_video.has-background-image .section-content:hover h3 {
        color: #efdf00;
    }

        .corp_video.has-background-image .section-content:hover h3:before {
            background-image: url(../images/sprite/ico-play-large-yellow.png);
        }

@media (max-width: 667px) {
    .corp_video .section-overlay {
        position: static;
        padding: 30px;
        background: #000;
    }

    .corp_video .shell {
        transform: none;
        top: 0;
    }

    .corp_video h3 {
        display: none;
    }

    .corp_video .video-holder {
        margin: 0 20px;
    }

    .corp_video.hide-content .section-overlay {
        visibility: visible;
        opacity: 1;
    }
}


/* ------------------------------------------------------------ *\
	Corp Carousel
\* ------------------------------------------------------------ */

.corp-carousel {
    padding: 48px 0 45px;
    background: #f8f8f8;
}


/* ------------------------------------------------------------ *\
	Corp Stock
\* ------------------------------------------------------------ */


/* ------------------------------------------------------------ *\
	Invest
\* ------------------------------------------------------------ */

.corp-stock-small {
    background: #fff;
    padding: 18px 20px;
}

@media (max-width: 667px) {
    .corp-stock-small {
        padding: 22px 30px;
    }
}

.corp-stock-small .corp-stock-price {
    padding-bottom: 12px;
    border-bottom: 1px solid #ddd;
}

    .corp-stock-small .corp-stock-price:after {
        content: '';
        line-height: 0;
        display: table;
        clear: both;
    }

    .corp-stock-small .corp-stock-price strong {
        float: left;
        font-size: 40px;
        line-height: 1;
        font-family: "Nord-Con", sans-serif;
        font-weight: 700;
    }

    .corp-stock-small .corp-stock-price .corp-stock-price-aside {
        float: right;
    }

        .corp-stock-small .corp-stock-price .corp-stock-price-aside span {
            display: block;
            font-size: 14px;
            line-height: 1.29em;
            font-family: "Nord-Con", sans-serif;
            font-weight: 700;
        }

        .corp-stock-small .corp-stock-price .corp-stock-price-aside .green {
            color: #3bac3b;
        }

.corp-stock-small .corp-stock-meta {
    padding: 5px 0;
    border-bottom: 1px solid #ddd;
}

    .corp-stock-small .corp-stock-meta dl {
        font-size: 0;
    }

    .corp-stock-small .corp-stock-meta dt,
    .corp-stock-small .corp-stock-meta dd {
        display: inline-block;
        vertical-align: middle;
        width: 50%;
        font-size: 14px;
        font-family: "Nord-Con", sans-serif;
        font-weight: 300;
        line-height: 1.33;
    }

    .corp-stock-small .corp-stock-meta dt {
        text-align: left;
    }

    .corp-stock-small .corp-stock-meta dd {
        text-align: right;
    }

.corp-stock-large {
    padding: 30px 0;
    font-size: 0;
}

    .corp-stock-large .corp-stock-price {
        display: inline-block;
        font-size: 80px;
        color: #373a36;
        font-family: "Nord-Con", sans-serif;
        font-weight: 700;
        margin-left: 25px;
    }

    .corp-stock-large .corp-stock-meta {
        display: inline-block;
        font-size: 16px;
        line-height: 1.38;
        font-weight: 700;
        font-family: "Roboto", sans-serif;
        color: #373a36;
    }

    .corp-stock-large .corp-stock-taxes {
        display: inline-block;
        margin-left: 25px;
    }

@media (min-width: 668px) and (max-width: 900px) {
    .corp-stock-large .corp-stock-taxes {
        display: block;
        margin-left: 64px;
    }
}

.corp-stock-large .corp-stock-taxes span {
    display: block;
    color: #008112;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.38;
}

.corp-stock-large .corp-stock-taxes small {
    font-size: 16px;
    line-height: 1.38;
    font-weight: 300;
    color: #363636;
}

.corp-stock-large .corp-stock-taxes--red span {
    color: #ce1141;
}

@media (max-width: 667px) {
    .corp-stock-large {
        padding: 0 0;
    }

        .corp-stock-large .corp-stock-meta {
            width: 100px;
        }

        .corp-stock-large .corp-stock-price {
            margin-left: 0;
            text-align: center;
        }

        .corp-stock-large .corp-stock-taxes {
            width: 100%;
            padding-left: 100px;
            margin-left: 0;
        }

        .corp-stock-large .price-meta {
            display: block;
        }

        .corp-stock-large .price-taxes {
            margin-left: 0;
        }
}


/* ------------------------------------------------------------ *\  
	Corp-Hero-Wide
\* ------------------------------------------------------------ */

.corp-hero-wide {
    position: relative;
    z-index: 13;
}

@media (min-width: 668px) {
    .corp-hero-wide {
        padding-top: 100px;
        background: transparent url(../images/personnel-hero-bg.png) center center no-repeat;
        background-size: cover;
    }
}

.corp-hero-wide .corp-hero-image-wrapper {
    position: relative;
}

@media (min-width: 1025px) {
    .corp-hero-wide .corp-hero-image-wrapper {
        height: 680px;
    }
}

@media (min-width: 668px) and (max-width: 1024px) {
    .corp-hero-wide .corp-hero-image-wrapper {
        height: 560px;
    }
}

@media (min-width: 668px) {
    .corp-hero-wide img {
        position: absolute;
        top: 50%;
        left: 50%;
        -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        width: 100%;
        height: auto;
        display: block;
        max-width: 1180px;
    }
}

.corp-hero-wide .corp-hero-foot {
    position: absolute;
    bottom: 41px;
    left: 0;
    width: 100%;
}

@media (max-width: 1200px) {
    .corp-hero-wide .corp-hero-foot {
        bottom: 5px;
    }
}


/* ------------------------------------------------------------ *\
	SW Image
\* ------------------------------------------------------------ */

.sw_image.mb-20 {
    margin-bottom: 20px;
}

.sw_image img {
    max-width: 100%;
    display: block;
}


/* ------------------------------------------------------------ *\
	corp-box-call
\* ------------------------------------------------------------ */

.corp-box-image {
    overflow: hidden;
}

    .corp-box-image img {
        position: relative;
        left: 50%;
        top: 50%;
        -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }

@media (min-width: 668px) {
    .corp-box-image {
        height: 160px;
    }
}

@media (max-width: 667px) {
    .corp-box-image {
        height: 52vw;
    }
}

.corp-box {
    background: #f8f8f8;
}

    .corp-box.white {
        background: #fff;
    }

    .corp-box p,
    .corp-box h6 {
        font-size: 16px;
        line-height: 1.38;
        font-family: "Roboto", sans-serif;
        margin: 0;
        color: #363636;
    }

    .corp-box h6 {
        font-weight: 700;
        margin: 0;
    }

    .corp-box p {
        font-weight: 300;
    }

    .corp-box .corp-box-body {
        padding: 25px 30px;
    }

        .corp-box .corp-box-body h6 + .list-actions,
        .corp-box .corp-box-body p + .list-actions {
            margin-top: 20px;
        }

            .corp-box .corp-box-body h6 + .list-actions li:last-child:not(:first-child) a:not([target]),
            .corp-box .corp-box-body p + .list-actions li:last-child:not(:first-child) a:not([target]) {
                margin-top: 15px;
            }

    .corp-box .list-actions + .list-actions {
        margin-top: 15px;
    }

.corp-box-links {
    margin-top: 22px;
}

.grey-background .corp-box {
    background-color: white;
}

.grey-background .white-background .corp-box {
    background-color: #f8f8f8;
}

.white-background .corp-box {
    background-color: #f8f8f8;
}

.white-background .grey-background .corp-box {
    background-color: white;
}

.corp-box-call h6 + .list-actions,
.corp-box-call p + .list-actions {
    margin-top: 15px;
}

.corp-box-call .corp-head {
    padding: 30px 30px 0px;
}

    .corp-box-call .corp-head .title-with-border {
        margin-bottom: 20px;
    }

.corp-box-call .list-actions + .list-actions {
    margin-top: 16px;
}

.corp-box-article {
    padding: 22px 30px;
}

    .corp-box-article .corp-box-image {
        margin-bottom: 44px;
    }

    .corp-box-article .corp-box-content {
        margin-bottom: 30px;
    }

    .corp-box-article .corp-head {
        padding: 15px 0 0px;
    }

.corp-box-article-alt {
    padding: 0;
    background: #f8f8f8;
}

    .corp-box-article-alt h6 + .list-actions,
    .corp-box-article-alt p + .list-actions {
        margin-top: 15px;
    }

    .corp-box-article-alt .corp-box-image img {
        width: 100%;
        height: auto;
    }

    .corp-box-article-alt .corp-box-body {
        padding: 20px 30px;
    }

    .corp-box-article-alt .corp-box-body--primary {
        padding: 25px 30px;
    }

        .corp-box-article-alt .corp-box-body--primary p:last-of-type {
            margin-bottom: 20px;
        }

    .corp-box-article-alt .corp-head {
        padding: 30px 30px 0px;
    }

        .corp-box-article-alt .corp-head .title-with-border {
            margin-bottom: 35px;
        }

    .corp-box-article-alt .corp-head-alt .title-with-border {
        margin-bottom: 20px;
    }

@media (max-width: 767px) and (max-width: 1023px) {
    .corp-box {
        padding: 20px;
    }
}

@media (max-width: 767px) and (max-width: 667px) {
    .corp-box {
        margin: 15px 0;
    }
}

@media (max-width: 767px) and (max-width: 1023px) {
    .corp-box-article-alt {
        padding: 0;
    }

        .corp-box-article-alt .corp-box-body {
            padding: 15px 20px;
        }

        .corp-box-article-alt .corp-box-body--primary {
            padding: 25px 30px;
        }
}

@media (max-width: 767px) and (max-width: 667px) {
    .corp-box-article-alt .corp-box-body {
        padding: 20px 30px;
    }

    .corp-box-article-alt .corp-box-body--primary {
        padding: 25px 30px;
    }
}

@media (max-width: 767px) {
    .corp-box-call {
        padding: 0;
    }
}


/* ------------------------------------------------------------ *\
    Corp News Header
\* ------------------------------------------------------------ */

.corp-news-header .date {
    display: block;
    font-size: 16px;
    line-height: 1.38;
    font-weight: 300;
    font-family: "Roboto", sans-serif;
    margin: 5px 0 15px;
}

.corp-news-header .date {
    display: block;
}


/* ------------------------------------------------------------ *\
    Corp List Latest Wistia
\* ------------------------------------------------------------ */

.latest-wistia-item {
    margin-bottom: 30px;
    line-height: 1;
}

    .latest-wistia-item .responsive-video-wrapper {
        margin-bottom: 15px;
        padding-bottom: 0;
    }

    .latest-wistia-item .title {
        margin-bottom: 15px;
        font-weight: bold;
    }


/* ------------------------------------------------------------ *\
	Map
\* ------------------------------------------------------------ */

.section-map {
    position: relative;
    height: 700px;
    overflow: hidden;
    margin: 30px 0;
}

.map-details {
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    bottom: 0;
    width: 423px;
    height: 100%;
    padding: 0 50px 46px;
    background-color: #f8f8f8;
    box-shadow: -3px 0 10px 0 rgba(0, 0, 0, 0.3);
    right: -432px;
    transition: right .4s;
}

    .map-details h1 {
        margin: 0 0 14px;
        font-family: "Nord-Con", sans-serif;
        font-size: 54px;
        line-height: .89;
        color: #373a36;
        letter-spacing: -.01em;
        font-weight: 300;
    }

    .map-details > p {
        margin-bottom: 35px;
        font-family: "Nord-Con", sans-serif;
        font-size: 20px;
        line-height: 1.1;
        font-weight: 700;
    }

    .map-details h4 {
        font-family: "Nord-Con", sans-serif;
        font-size: 20px;
        line-height: 1.1;
        color: #373a36;
        font-weight: 600;
    }

.map-details-head {
    position: relative;
    padding-right: 20px;
    padding: 26px 20px 26px 0;
}

.map-details-body {
    overflow-y: auto;
    height: calc(100% - 75px);
    padding-top: 1px;
}

.map-details ::-webkit-scrollbar {
    width: 6px;
}

.map-details ::-webkit-scrollbar-track {
    background: #fff;
    border-radius: 0;
}

.map-details ::-webkit-scrollbar-thumb {
    border-radius: 0;
    background: #9b9c9a;
}

.googlemap {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
}

.map-close {
    position: absolute;
    top: 50%;
    right: 0;
    font-size: 0;
    transition: opacity .3s;
    transform: translateY(-50%);
    z-index: 9;
}

    .map-close:hover {
        opacity: .8;
    }

.map {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
}

.map-details.expanded {
    right: 0;
}

    .map-details.expanded + .map {
        width: calc(100% - 423px);
    }

@media (max-width: 667px) {
    .map {
        height: auto;
    }

    .map-close {
        top: 20px;
        right: 10px;
    }

    .map-details {
        float: none;
        width: 100%;
        height: 400px;
        padding: 29px 30px 30px 10px;
    }

        .map-details h1 {
            font-size: 36px;
        }

        .map-details > p {
            margin-bottom: 20px;
            font-size: 16px;
        }

    .map-inner {
        position: static;
        height: 400px;
    }

    .map-inner,
    .map-details.expanded + .map-inner {
        width: 100%;
    }
}


/* ------------------------------------------------------------ *\
	Video
\* ------------------------------------------------------------ */


/* ------------------------------------------------------------ *\
	Country
\* ------------------------------------------------------------ */

@media (max-width: 1200px) {
    .countries {
        padding-left: 20px;
    }
}

.countries h4 {
    font-family: "roboto", Arial, Helvetica, sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
}

.countries .accordion-head {
    padding: 12px 90px 17px 0;
}

.countries-none {
    padding-bottom: 50px;
}

.country-group {
    position: relative;
    padding-left: 30px;
}

    .country-group + .country-group {
        margin-top: 26px;
    }

.country-letter {
    position: absolute;
    top: 13px;
    left: 0;
}

    .country-letter strong {
        font-size: 20px;
        line-height: 1;
        font-family: "Nord-Con", sans-serif;
        font-weight: 700;
        color: #373a36;
        display: block;
    }

@media (max-width: 667px) {
    .countries {
        padding-left: 0;
    }

    .country-group {
        padding-left: 0;
    }

    .country-letter {
        position: static;
    }

        .country-letter strong {
            font-size: 36px;
        }
}


/* Remove Bullet Dash */

.countries .accordion-body li {
    padding-left: 0;
}

    .countries .accordion-body li:before {
        content: initial;
    }


/* ------------------------------------------------------------ *\
	Award
\* ------------------------------------------------------------ */

.doc .doc-image img {
    display: block;
    width: 100%;
    height: auto;
}

.doc .doc-content {
    background: #fff;
    color: #373a36;
    padding: 30px 30px 15px;
}

    .doc .doc-content h6,
    .doc .doc-content span {
        font-size: 16px;
        line-height: 1.38;
        margin: 0;
    }

    .doc .doc-content h6 {
        font-weight: 700;
    }

    .doc .doc-content span {
        font-weight: 300;
    }

@media (max-width: 667px) {
    .doc .doc-content {
        padding: 20px 20px 15px;
    }
}


/* ------------------------------------------------------------ *\
	Links
\* ------------------------------------------------------------ */

.links-document {
    padding: 20px 0;
    border-top: 1px solid #e7e6e6;
}

    .links-document .links-document-content {
        float: left;
        padding: 0 10px;
    }

        .links-document .links-document-content span,
        .links-document .links-document-content strong {
            font-size: 16px;
            line-height: 1.25;
            font-weight: 700;
            color: #373a36;
        }

        .links-document .links-document-content span {
            font-weight: 300;
        }

    .links-document .links-document-actions {
        float: right;
        padding: 0 10px;
    }

        .links-document .links-document-actions a {
            padding-left: 0 !important;
        }

        .links-document .links-document-actions span,
        .links-document .links-document-actions strong {
            display: inline-block;
            vertical-align: middle;
            float: left;
        }

        .links-document .links-document-actions strong {
            font-size: 14px;
            line-height: 1.29;
            font-weight: 500;
            margin-left: 10px;
        }

@media (max-width: 767px) {
    .links-document .links-document-content {
        max-width: 50%;
    }

    .links-document .links-document-actions {
        max-width: 50%;
    }
}


/* ------------------------------------------------------------ *\
	Slider
\* ------------------------------------------------------------ */

.slider {
    padding: 0;
}

    .slider .slides {
        margin: 0 -35px;
    }

.js .slider .slides {
    position: absolute;
    top: -10000px;
}

    .js .slider .slides.shown {
        position: relative;
        top: auto;
    }

@media (max-width: 1200px) {
    .slider .slides {
        margin: 0;
        padding: 0 15px;
    }
}

.slider .slide {
    padding: 0 35px;
}

@media (max-width: 1200px) {
    .slider .slide {
        padding: 0 15px;
    }
}

.slider .slick-arrow {
    position: absolute;
    top: 50%;
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 30px;
    height: 50px;
    z-index: 1;
    color: #373936;
    border: none;
    padding: 0;
    background: transparent url(../images/icon-arrow-carousel-right.png) 50% 50% no-repeat;
    text-indent: -119988px;
    overflow: hidden;
    text-align: left;
    text-transform: capitalize;
    cursor: pointer;
}

.slider .slick-disabled {
    opacity: .2;
    cursor: auto;
}

.slider .slick-prev {
    left: -35px;
    -moz-transform: translateY(-50%) rotateZ(-180deg);
    -ms-transform: translateY(-50%) rotateZ(-180deg);
    -webkit-transform: translateY(-50%) rotateZ(-180deg);
    transform: translateY(-50%) rotateZ(-180deg);
}

@media (max-width: 1200px) {
    .slider .slick-prev {
        left: -15px;
    }
}

.slider .slick-next {
    right: -35px;
}

@media (max-width: 1200px) {
    .slider .slick-next {
        right: -15px;
    }
}

.slider .slider-foot {
    padding: 20px 0;
}

    .slider .slider-foot a {
        color: #ce1141;
        font-size: 16px;
        line-height: 1.38em;
        font-family: "Roboto", sans-serif;
        font-weight: 700;
        transition: color .3s;
    }

        .slider .slider-foot a:hover {
            color: #000;
        }

@media (max-width: 1200px) {
    .slider .slider-foot {
        padding-left: 30px;
    }
}

.slider .slick-dots {
    padding-top: 26px;
    text-align: center;
}

    .slider .slick-dots li {
        display: inline-block;
        vertical-align: middle;
        margin: 0 4px;
    }

    .slider .slick-dots button {
        width: 8px;
        height: 8px;
        border: none;
        background: #c4c3c3;
        font-size: 0;
        line-height: 0;
        text-indent: -4004px;
        transition: background-color .3s;
    }

    .slider .slick-dots li:hover button,
    .slider .slick-dots .slick-active button {
        background: #ce1141;
        opacity: 1;
    }

@media (max-width: 1360px) {
    .slider {
        padding: 0 35px;
    }
}

@media (max-width: 1200px) {
    .slider {
        padding: 0 20px;
    }
}

.slider-1of4 .slides {
    margin: 0 -10px 40px;
}

.slider-1of4 .slide {
    padding: 0 10px;
}

.slider-1of4 .slick-dots {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
}

@media (max-width: 667px) {
    .slider-1of4 .slides {
        margin: 0 -10px 40px;
        padding: 0;
    }

    .slider-1of4 .slide {
        padding: 0 5px;
    }

    .slider-1of4 .slick-next {
        right: -35px;
    }

    .slider-1of4 .slick-prev {
        left: -35px;
    }

    .slider-1of4 .slick-arrow {
        font-size: 40px;
    }
}

@media (max-width: 479px) {
    .slider-1of4 .slide {
        padding: 0;
    }

    .slider-1of4 .slides {
        margin: 0 0 40px;
    }
}


/* ------------------------------------------------------------ *\
	Slider Single Alt (full-bleed products & services carousel.
	Pasted from old Burger stuff)
\* ------------------------------------------------------------ */

.slider-outer-wrapper {
    overflow: hidden;
}

.slider-products-services {
    /*	
  	.slick-prev {
  		left: -30px;
  
  		@media(max-width: $desktop){
  			left: 0;
  		}
  	}
  	.slick-next {
  		right: -30px;
  
  		@media(max-width: $desktop){
  			right: 0;
  		}
  	}
  */
}

    .slider-products-services h3 {
        font-size: 20px;
        font-weight: bold;
        text-transform: uppercase;
    }

    .slider-products-services .slides {
        margin: 0;
    }

@media (max-width: 667px) {
    .slider-products-services .slides {
        padding: 0;
    }
}

.slider-products-services .slick-list {
    overflow: visible;
}

@media (max-width: 667px) {
    .slider-products-services .slick-list {
        overflow: hidden;
    }
}

.slider-products-services .slick-slide {
    padding: 0 90px;
    opacity: 0.5;
    -moz-transition: opacity 0.4s ease;
    -o-transition: opacity 0.4s ease;
    -webkit-transition: opacity 0.4s ease;
    transition: opacity 0.4s ease;
}

@media (max-width: 667px) {
    .slider-products-services .slick-slide {
        padding: 0 45px;
        opacity: 1;
    }
}

@media (max-width: 667px) {
    .slider-products-services .slick-slide {
        padding: 0 0px;
    }
}

.slider-products-services .slick-slide.slick-current {
    opacity: 1;
}

.slider-products-services .slick-slide:not(.slick-current) {
    pointer-events: none;
}

.slider-products-services .slick-slide img {
    width: 100%;
}

@media (min-width: 1025px) {
    .slider-products-services .slick-arrow {
        top: 225px;
    }
}

@media (min-width: 668px) and (max-width: 1024px) {
    .slider-products-services .slick-arrow {
        top: 150px;
    }
}

@media (max-width: 667px) {
    .slider-products-services .slick-arrow {
        top: auto;
        bottom: -10px;
    }
}

.slider-products-services .slide-content {
    /*
  		@include desktop {
  			padding: 28px 120px;			
  		}
  
  		@include tablet {
  			padding: 28px 30px;
  		}
  
  		@include mobile {
  			padding: 20px 0px;
  		}
  		*/
}

@media (min-width: 668px) {
    .slider-products-services .slide-content {
        padding-top: 28px;
        padding-bottom: 28px;
    }
}

@media (max-width: 667px) {
    .slider-products-services .slide-content {
        padding-top: 20px;
        padding-bottom: 20px;
    }
}

.slider-products-services .slick-dots {
    padding-top: 0;
}


/*
.slider-product-videos {
	.slide-content {
		padding-left: 220px;

		@media(max-width: $tablet){
			padding: 28px 30px;
		}

		@media(max-width: $tablet){
			padding: 20px 20px;
		}
	}
}
*/


/* ------------------------------------------------------------ *\ 
	Table
\* ------------------------------------------------------------ */

.table-members table {
    border-collapse: collapse;
    table-layout: fixed;
}

.table-members th,
.table-members td {
    text-align: center;
    padding: 11px 0;
    border: 1px solid #ebebeb;
    width: 19.5%;
}

    .table-members th:first-of-type,
    .table-members td:first-of-type {
        text-align: left;
        border-left: none;
    }

    .table-members th:last-of-type,
    .table-members td:last-of-type {
        border-right: none;
    }

.table-members th {
    border: none;
    border-bottom: 1px solid #d1d0d0;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
}

.table-members td {
    font-size: 16px;
    line-height: 1.38em;
    font-weight: 300;
    color: #373a36;
}

    .table-members th:first-of-type,
    .table-members td:first-of-type {
        width: 22%;
    }

@media (max-width: 667px) {
    .table-members th {
        border-bottom: 2px solid #d1d0d0;
        font-size: 16px;
    }

    .table-members table {
        table-layout: fixid;
    }

        .table-members table + table {
            margin-top: 27px;
        }

    .table-members td:first-of-type {
        width: calc(100% - 100px);
    }

    .table-members td:last-of-type {
        width: 100px;
    }
}

.table-members .committeeTable {
    border: none;
}

.table-hint {
    padding: 20px 0;
}

    .table-hint span,
    .table-hint li {
        display: inline-block;
        vertical-align: middle;
    }

        .table-hint li + li {
            margin-left: 45px;
        }

    .table-hint span {
        font-size: 14px;
        font-weight: 400;
    }

    .table-hint i + span {
        margin-left: 6px;
    }

@media (max-width: 667px) {
    .table-hint {
        border-bottom: 1px solid #e7e6e6;
        display: flex;
        align-items: center;
        margin-bottom: 20px;
    }

        .table-hint strong {
            font-size: 16px;
            line-height: 1.25;
            font-weight: 400;
        }

            .table-hint strong + ul {
                margin-left: 20px;
            }

        .table-hint li + li {
            margin-left: 20px;
        }
}


/* ------------------------------------------------------------ *\
	Table Contacs
\* ------------------------------------------------------------ */

.table-contacts {
    margin-bottom: 89px;
}

@media (max-width: 667px) {
    .table-contacts {
        margin-bottom: 20px;
    }
}

.table-contacts table {
    table-layout: fixed;
    width: 100%;
}

.table-contacts .cell-size1 {
    width: 38%;
}

.table-contacts .cell-size2 {
    width: 25.5%;
}

.table-contacts .cell-size3 {
    width: 35.7%;
}

.table-contacts a {
    white-space: nowrap;
}

    .table-contacts a:hover {
        color: #ce1141;
    }

.table-contacts table {
    margin-bottom: 80px;
    border-collapse: collapse;
}

@media (max-width: 667px) {
    .table-contacts table {
        margin-bottom: 20px;
    }
}

.table-contacts th {
    text-align: left;
    font-size: 20px;
    line-height: 1.1;
    font-family: "Nord-Con", sans-serif;
    font-weight: 700;
}

.table-contacts thead th {
    font-size: 16px;
    color: #373a36;
    font-weight: 300;
    padding-bottom: 15px;
    border-bottom: 1px solid #373a36;
    font-family: "Roboto", sans-serif;
}

.table-contacts strong {
    display: inline-block;
    text-align: left;
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
    font-family: "Roboto", sans-serif;
}

.table-contacts td {
    font-size: 16px;
    line-height: 1.38em;
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    padding: 8px 0;
    word-break: break-all;
}

    .table-contacts td:first-of-type strong[letter] {
        position: relative;
    }

        .table-contacts td:first-of-type strong[letter]:before {
            position: absolute;
            top: 0;
            left: -50px;
            content: attr(letter);
            display: inline-block;
            font-size: 20px;
            font-weight: 700;
            font-family: "Nord-Con", sans-serif;
            text-transform: uppercase;
        }

@media (max-width: 1023px) {
    .table-contacts td:first-of-type strong[letter]:before {
        left: -30px;
    }
}

@media (max-width: 667px) {
    .table-contacts td:first-of-type strong[letter]:before {
        left: 0;
        display: block;
        position: static;
        font-size: 36px;
        border-bottom: 1px solid #7f807f;
        padding-bottom: 10px;
        margin-bottom: 26px;
    }
}

.table-contacts .table-foot {
    padding-left: 54px;
}

@media (max-width: 1200px) {
    .table-contacts .table-foot {
        padding-left: 0;
    }
}

.table-contacts .table-foot p {
    font-size: 14px;
    line-height: 1.29em;
    font-weight: 400;
}

@media (max-width: 667px) {
    .table-contacts th {
        display: none;
    }

    .table-contacts td {
        display: block;
        padding: 3px 0;
        font-size: 16px;
        font-weight: 300;
        font-family: "Roboto", sans-serif;
    }

    .table-contacts strong {
        font-size: 16px;
        line-height: 1;
        color: #373a36;
        letter-spacing: -0.01em;
        display: block;
        background: #fff;
    }

    .table-contacts tr {
        margin: 56px 0 0;
    }

        .table-contacts tr + tr {
            display: block;
            position: relative;
        }

    .table-contacts .cell-size1,
    .table-contacts .cell-size2,
    .table-contacts .cell-size3,
    .table-contacts .cell-size4 {
        width: 100%;
        float: left;
        width: 100%;
    }

    .table-contacts td:first-of-type {
        padding-bottom: 10px;
    }

    .table-contacts td:empty {
        display: none;
    }
}


/* ------------------------------------------------------------ *\
	Table Result
\* ------------------------------------------------------------ */

.table-result table {
    table-layout: fixed;
    border-collapse: collapse;
}

.table-result th {
    border-bottom: 1px solid #bebfbd;
    text-align: left;
    padding-bottom: 12px;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.25;
}

.table-result td {
    border-bottom: 1px solid #e4e5e4;
    line-height: 1.25;
    padding: 10px 0;
}

.table-result p {
    font-size: 14px;
    line-height: 1.29em;
    font-weight: 400;
    color: #ce1141;
}

.table-result span,
.table-result strong {
    font-size: 16px;
    font-weight: 700;
}

.table-result strong {
    color: #373a36;
}

.table-result small {
    font-size: 16px;
    font-weight: 300;
}

.table-result .cell-size1 {
    width: 0.38%;
}

.table-result .cell-size2 {
    width: 0.24%;
}

.table-result .result-day-mobile {
    display: none;
    width: 150px;
    font-weight: 300;
}

@media (max-width: 667px) {
    .table-result .result-day-mobile {
        display: inline-block;
    }
}

@media (max-width: 667px) {
    .table-result tr {
        display: block;
        margin: 0 -20px;
        width: 100vw;
        padding: 20px;
        border-top: 1px solid #e4e5e4;
    }

        .table-result tr:last-of-type {
            border-bottom: 1px solid #e4e5e4;
        }

    .table-result thead {
        display: none;
    }

    .table-result td {
        display: block;
        width: 100%;
        border: none;
        padding: 3px 0;
    }

        .table-result td[title] {
            position: relative;
        }

            .table-result td[title]:before {
                content: attr(title);
                display: inline-block;
                font-size: 14px;
                font-weight: 400;
                font-family: "Roboto", sans-serif;
                text-transform: none;
                min-width: 100px;
            }

    .table-result span,
    .table-result small,
    .table-result strong {
        font-size: 14px;
    }

    .table-result p {
        font-size: 11px;
    }
}


/* ------------------------------------------------------------ *\
	Table
\* ------------------------------------------------------------ */

.table table {
    table-layout: fixed;
    width: 100%;
    max-width: 100%;
}

.table .cell-size1 {
    width: 25%;
}

.table .cell-size2 {
    width: 38%;
}

.table .cell-size3 {
    width: 24%;
}

.table .cell-size4 {
    width: 48%;
}

.table .cell-size5 {
    width: 20%;
}

.table .cell-size6 {
    width: 23%;
}

.table .cell-size7 {
    width: 13%;
}

.table .cell-size8 {
    width: 51%;
}

.table .cell-size9 {
    width: 23%;
}

.table .cell-size10 {
    width: 58%;
}

.table .cell-size11 {
    width: 29%;
}

.table .cell-size12 {
    width: 64%;
}

.table .cell-size13 {
    width: 18%;
}

.table .cell-size14 {
    width: 12%;
}

.table .cell-size15 {
    width: 11.76471%;
}

.table .cell-size16 {
    width: 17.64706%;
}

.table .cell-size17 {
    width: 29.41176%;
}

.table .cell-size18 {
    width: 17.64706%;
}

.table .cell-size19 {
    width: 21.47059%;
}

.table .cell-5 {
    width: 5%;
}

.table .cell-10 {
    width: 10%;
}

.table .cell-15 {
    width: 15%;
}

.table .cell-20 {
    width: 20%;
}

.table .cell-25 {
    width: 25%;
}

.table .cell-30 {
    width: 30%;
}

.table .cell-35 {
    width: 35%;
}

.table .cell-40 {
    width: 40%;
}

.table .cell-45 {
    width: 45%;
}

.table .cell-50 {
    width: 50%;
}

.table .cell-55 {
    width: 55%;
}

.table .cell-60 {
    width: 60%;
}

.table .cell-65 {
    width: 65%;
}

.table .cell-70 {
    width: 70%;
}

.table .cell-75 {
    width: 75%;
}

.table .cell-80 {
    width: 80%;
}

.table .cell-85 {
    width: 85%;
}

.table .cell-90 {
    width: 90%;
}

.table .cell-95 {
    width: 95%;
}

.table .cell-100 {
    width: 100%;
}

.table td {
    vertical-align: top;
}

.table th {
    font-weight: 300;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    padding: 4px 0;
    text-align: left;
}

.table strong.title {
    display: block;
    font-family: "Nord-Con", sans-serif;
    font-weight: 300;
    font-size: 54px;
    line-height: 1;
    letter-spacing: -0.01em;
}

@media (min-width: 668px) {
    .table strong.title {
        padding: 20px 0 0;
    }
}

.table strong.quartier {
    font-family: "Nord-Con", sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 1;
}

@media (max-width: 667px) {
    .table tr {
        display: block;
        width: auto;
        margin: 0 -20px;
        padding: 30px 20px 15px;
    }

        .table tr + tr {
            border-top: 1px solid #e7e6e6;
        }

    .table thead {
        display: none;
    }

    .table td {
        display: block;
        border: none;
        padding-bottom: 0;
        border: none;
    }

        .table td[data-label] {
            position: relative;
            display: table;
            width: 100%;
        }

            .table td[data-label]:before,
            .table .event-content {
                display: table-cell;
                padding: 15px 0 15px 0px;
            }

            .table td[data-label]:before {
                content: attr(data-label) ": ";
                font-size: 14px;
                line-height: 1.43;
                font-weight: 300;
                font-family: "Roboto", sans-serif;
                text-transform: none;
                min-width: 100px;
                left: 0;
                top: 15px;
                max-width: 100px;
                width: 100px;
            }

        .table td[data-label="More Infromation"] {
            min-height: 60px;
        }

    .table col[class^="cell-"] {
        width: 100%;
        display: block;
    }

    .table strong.quartier {
        font-size: 30px;
    }
}


/* ------------------------------------------------------------ *\
	Table-Reports
\* ------------------------------------------------------------ */

.table-reports td {
    border-top: 1px solid #ebebeb;
    padding-bottom: 41px;
}

    .table-reports td:first-of-type {
        padding-right: 10px;
    }

@media (max-width: 667px) {
    .table-reports {
        border-bottom: 1px solid #ebebeb;
    }

        .table-reports td {
            padding-bottom: 0;
            border: none;
        }

            .table-reports td:first-of-type {
                padding-right: 0;
            }
}


/* ------------------------------------------------------------ *\
	Table Events
\* ------------------------------------------------------------ */

.table-events {
    margin-top: 60px;
}

    .table-events table {
        border-collapse: collapse;
    }

    .table-events thead th {
        border-bottom: 1px solid #d1d0d0;
    }

    .table-events tr {
        border-bottom: 1px solid #e4e5e4;
    }

    .table.table-events > :not(:last-child) > :last-child > * {
        border-bottom-color: #e4e5e4;
    }

    .table-events td {
        padding: 20px 0;
    }

    .table-events td {
        padding-right: 5px;
    }

    .table-events th,
    .table-events td {
        padding-left: 20px;
    }

        .table-events th:first-child,
        .table-events td:first-child {
            padding-left: 0;
        }

        .table-events td:last-of-type {
            padding-right: 0;
        }

    .table-events p {
        font-size: 16px;
        font-weight: 300;
        color: #373a36;
    }

        .table-events p:empty {
            display: none;
        }

    .table-events h6 {
        font-size: 16px;
        line-height: 1.38;
        font-weight: 700;
        margin: 0 0 2px;
    }

    .table-events .event-content {
        padding-right: 11%;
    }

    .table-events.table-events--investors {
        margin-top: 30px;
    }

@media (min-width: 668px) {
    .table-events strong.title {
        padding-top: 60px;
    }

    .table-events tr:first-child strong.title {
        padding-top: 20px;
    }
}

@media (max-width: 667px) {
    .table-events p,
    .table-events h6 {
        font-size: 14px;
    }

    .table-events strong.title {
        font-size: 50px;
    }

    .table-events.table-events--investors tr,
    .table-events.table-events--docs tr {
        display: block;
        width: auto;
        margin: 0 -20px;
        padding: 15px 20px 15px;
    }

    .table-events.table-events--investors td[data-label],
    .table-events.table-events--docs td[data-label] {
        position: relative;
    }

        .table-events.table-events--investors td[data-label]:before,
        .table-events.table-events--investors .event-content,
        .table-events.table-events--docs td[data-label]:before,
        .table-events.table-events--docs .event-content {
            display: table-cell;
            padding: 5px 0 5px 0px;
        }

        .table-events.table-events--investors td[data-label]:before,
        .table-events.table-events--docs td[data-label]:before {
            top: 3px;
        }

    .table-events.table-events--investors td[data-label="More Infromation"],
    .table-events.table-events--docs td[data-label="More Infromation"] {
        min-height: 45px;
    }

    .table-events.table-events--investors tr {
        border-top: 1px solid #e4e5e4;
        border-bottom: none;
    }

    .table-events.table-events--investors-alt tr:last-of-type {
        border-bottom: 1px solid #e4e5e4;
    }
}


/* ------------------------------------------------------------ *\  
	Tabs
\* ------------------------------------------------------------ */

.tabs-nav {
    border-bottom: 1px solid #e7e6e6;
    padding: 10px 0 26px;
}

    .tabs-nav ul {
        margin: 0;
        font-size: 0;
        padding-left: 0;
        display: -webkit-flex;
        display: flex;
    }

        .tabs-nav ul li {
            display: inline-block;
            vertical-align: middle;
            -webkit-flex: 1;
            flex: 1;
        }

            .tabs-nav ul li + li {
                margin-left: 26px;
            }

            .tabs-nav ul li a {
                display: block;
                line-height: 1.7;
                font-size: 16px;
                font-weight: bold;
                color: #373a36;
                letter-spacing: -0.0025em;
                padding: 0;
                position: relative;
            }

                .tabs-nav ul li a:hover {
                    text-decoration: none;
                }

    .tabs-nav .current a {
        color: #ce1141;
        position: relative;
    }

        .tabs-nav .current a:before {
            display: block;
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 40px;
            height: 2px;
            border-top: 2px solid;
            border-color: inherit;
            content: "";
        }

.tab-content {
    display: none;
}

    .tab-content.current {
        display: block !important;
    }

.tabs-head p {
    margin: 40px 0 20px;
    font-size: 16px;
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    color: #373a36;
}


/*  Tabs Table  */

.tabs-table .tabs-nav {
    border-bottom: none;
    padding-bottom: 35px;
}

    .tabs-table .tabs-nav li + li {
        margin-left: 0;
    }

.tabs-table .tabs-nav-medium a {
    font-size: 16px;
    line-height: 1.38;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
}

@media (max-width: 667px) {
    .tabs-nav li {
        margin: 0;
    }

        .tabs-nav li + li {
            margin-left: 26px;
        }

    .tabs-table .tabs-nav {
        border-bottom: 1px solid #c3c4c2;
    }

        .tabs-table .tabs-nav li {
            padding-right: 30px;
        }

        .tabs-table .tabs-nav a {
            font-size: 12px;
            max-width: 80px;
        }

    .tabs-tec .tabs-nav {
        border-bottom: none;
    }
}


/* ------------------------------------------------------------ *\ 
	Member
\* ------------------------------------------------------------ */

.accordion-member {
    margin: 30px 0;
}

.member h2 {
    margin: 40px 0;
    font-size: 40px;
    font-family: "Nord-Con", sans-serif;
    line-height: 1;
    font-weight: 300;
    letter-spacing: -0.01em;
}

.member h4 {
    font-size: 20px;
    margin: 0;
    font-weight: 700;
    font-family: "Nord-Con", sans-serif;
}

.member p {
    font-size: 16px;
    line-height: 1.38em;
    margin-bottom: 10px;
    font-weight: 300;
}

.member .list-dash {
    margin-bottom: 20px;
}

    .member .list-dash + h4,
    .member p + h4 {
        margin-top: 40px;
    }

.member + .accordion-member {
    margin-top: 51px;
}

.member .member-content,
.member .member-image {
    padding: 0 10px;
    float: left;
    width: 50%;
}

.member .member-image {
    width: 45%;
}

    .member .member-image img {
        width: 100%;
        height: auto;
    }

.member .member-content {
    width: 55%;
    padding: 45px 0 0 60px;
}

.member-alt .member-image {
    float: right;
}

.member-alt .member-content {
    padding-left: 10px;
    padding-right: 50px;
}

@media (max-width: 1023px) {
    .member {
        padding-left: 20px;
        padding-right: 20px;
    }

        .member ~ .member {
            margin-top: 50px;
        }

        .member .member-content {
            padding-left: 20px;
            padding-top: 20px;
        }

        .member h2 {
            font-size: 35px;
            margin: 30px 0;
        }
}

@media (max-width: 667px) {
    .member {
        padding-left: 0;
        padding-right: 0;
    }

        .member ~ .member {
            margin-top: 20px;
        }

        .member .member-image,
        .member .member-content {
            float: none;
            width: auto;
        }

        .member .member-image {
            width: 60%;
        }

        .member .member-content {
            padding: 10px 10px;
        }

        .member .accordion-head .title-with-border {
            font-size: 20px;
        }

        .member h2 {
            font-size: 30px;
            margin: 10px 0;
        }
}


/*
.member-alt {
	@media ( max-width: $tablet ) {
		.member-content { padding: 20px 10px 0; }
	}

	@media ( max-width: $mobile ) {
		// .member-content { padding: 30px 20px; }
	}
}
*/


/* ------------------------------------------------------------ *\
	Report
\* ------------------------------------------------------------ */

.report-image {
    height: 230px;
    width: 230px;
    background: #eee;
    max-width: 100%;
    overflow: hidden;
}

    .report-image img {
        position: relative;
        top: 50%;
        left: 50%;
        -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }

.report-date {
    padding-top: 20px;
}

    .report-date h2 {
        font-size: 40px;
        line-height: 1;
        font-family: "Nord-Con", sans-serif;
        font-weight: 700;
        color: #373a36;
        margin: 0 0 15px;
    }

    .report-date p {
        font-size: 16px;
        font-weight: 300;
        color: #373a36;
    }

.report-actions {
    padding-top: 24px;
}

@media (max-width: 1023px) {
    .report-date h2 {
        font-size: 35px;
    }

        .report-date h2 br {
            display: none;
        }
}

@media (max-width: 667px) {
    .report-image {
        height: 200px;
        width: 100%;
    }

        .report-image img {
            max-height: 240px;
        }

    .report-actions {
        padding-top: 0;
    }

    .report-date h2 {
        font-size: 30px;
        line-height: 1;
        margin: 0 0 10px;
    }

    .report-date p {
        font-size: 14px;
        font-weight: 300;
    }
}


/* ------------------------------------------------------------ *\
	Event
\* ------------------------------------------------------------ */

.event-date span {
    font-size: 16px;
    line-height: 1.25;
    font-weight: 300;
}

.event-content p + p {
    margin-top: 10px;
}

.event-title-large {
    margin: 25px 0;
    font-size: 30px;
    line-height: 1;
    color: #373a36;
    font-family: "Nord-Con", sans-serif;
    font-weight: 700;
}

@media (max-width: 667px) {
    .event-date span {
        font-size: 14px;
    }

        .event-date span br {
            display: none;
        }

    .event-content p {
        margin-bottom: 5px;
    }
}


/* ------------------------------------------------------------ *\
	Result
\* ------------------------------------------------------------ */

.result {
    padding: 20px 0 20px;
    border-bottom: 1px solid #ebebeb;
}

    .result:after {
        content: '';
        line-height: 0;
        display: table;
        clear: both;
    }

    .result p,
    .result h6 {
        font-size: 16px;
        line-height: 1.38;
        line-height: 1.29;
        font-weight: 700;
        color: #373a36;
        margin: 0 0 8px;
    }

    .result p {
        font-weight: 300;
    }

    .result small {
        font-size: 12px;
        line-height: 1.33;
        font-weight: 300;
        color: #666;
    }

    .result a {
        display: table;
        width: 100%;
        padding-left: 0;
    }

        .result a > * {
            display: table-cell;
        }

        .result a .link.link-page:before,
        .result a .list-actions a.link-page:before,
        .list-actions .result a a.link-page:before,
        .result a .links-document .links-document-actions a.link-page:before,
        .links-document .links-document-actions .result a a.link-page:before,
        .result a #press-release a.link-page[href*="http://phx.corporate-ir.net/External.File"]:before,
        #press-release .result a a.link-page[href*="http://phx.corporate-ir.net/External.File"]:before {
            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: -40em -4em;
            width: 1.5em;
            height: 1.5em;
            font-size: 16px;
        }

@media screen and (min-width: 0\0) {
    .result a .link.link-page:before,
    .result a .list-actions a.link-page:before,
    .list-actions .result a a.link-page:before,
    .result a .links-document .links-document-actions a.link-page:before,
    .links-document .links-document-actions .result a a.link-page:before,
    .result a #press-release a.link-page[href*="http://phx.corporate-ir.net/External.File"]:before,
    #press-release .result a a.link-page[href*="http://phx.corporate-ir.net/External.File"]:before {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .result a .link.link-page:before,
.result a :root .list-actions a.link-page:before,
:root .list-actions .result a a.link-page:before,
.result a :root .links-document .links-document-actions a.link-page:before,
:root .links-document .links-document-actions .result a a.link-page:before,
.result a :root #press-release a.link-page[href*="http://phx.corporate-ir.net/External.File"]:before,
:root #press-release .result a a.link-page[href*="http://phx.corporate-ir.net/External.File"]:before {
    background-image: url(../images/icon-sprites-vector.svg);
}

.result a .link.link-document:before,
.result a .list-actions a.link-document:before,
.list-actions .result a a.link-document:before,
.result a .links-document .links-document-actions a.link-document:before,
.links-document .links-document-actions .result a a.link-document:before,
.result a #press-release a.link-document[href*="http://phx.corporate-ir.net/External.File"]:before,
#press-release .result a a.link-document[href*="http://phx.corporate-ir.net/External.File"]:before,
.result a .link.link-doc:before,
.result a .list-actions a.link-doc:before,
.list-actions .result a a.link-doc:before,
.result a .links-document .links-document-actions a.link-doc:before,
.links-document .links-document-actions .result a a.link-doc:before,
.result a #press-release a.link-doc[href*="http://phx.corporate-ir.net/External.File"]:before,
#press-release .result a a.link-doc[href*="http://phx.corporate-ir.net/External.File"]:before {
    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: -24em -8em;
    width: 1.6875em;
    height: 1.875em;
    font-size: 16px;
}

@media screen and (min-width: 0\0) {
    .result a .link.link-document:before,
    .result a .list-actions a.link-document:before,
    .list-actions .result a a.link-document:before,
    .result a .links-document .links-document-actions a.link-document:before,
    .links-document .links-document-actions .result a a.link-document:before,
    .result a #press-release a.link-document[href*="http://phx.corporate-ir.net/External.File"]:before,
    #press-release .result a a.link-document[href*="http://phx.corporate-ir.net/External.File"]:before,
    .result a .link.link-doc:before,
    .result a .list-actions a.link-doc:before,
    .list-actions .result a a.link-doc:before,
    .result a .links-document .links-document-actions a.link-doc:before,
    .links-document .links-document-actions .result a a.link-doc:before,
    .result a #press-release a.link-doc[href*="http://phx.corporate-ir.net/External.File"]:before,
    #press-release .result a a.link-doc[href*="http://phx.corporate-ir.net/External.File"]:before {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .result a .link.link-document:before,
.result a :root .list-actions a.link-document:before,
:root .list-actions .result a a.link-document:before,
.result a :root .links-document .links-document-actions a.link-document:before,
:root .links-document .links-document-actions .result a a.link-document:before,
.result a :root #press-release a.link-document[href*="http://phx.corporate-ir.net/External.File"]:before,
:root #press-release .result a a.link-document[href*="http://phx.corporate-ir.net/External.File"]:before,
:root .result a .link.link-doc:before,
.result a :root .list-actions a.link-doc:before,
:root .list-actions .result a a.link-doc:before,
.result a :root .links-document .links-document-actions a.link-doc:before,
:root .links-document .links-document-actions .result a a.link-doc:before,
.result a :root #press-release a.link-doc[href*="http://phx.corporate-ir.net/External.File"]:before,
:root #press-release .result a a.link-doc[href*="http://phx.corporate-ir.net/External.File"]:before {
    background-image: url(../images/icon-sprites-vector.svg);
}

.result a .link.link-video:before,
.result a .list-actions a.link-video:before,
.list-actions .result a a.link-video:before,
.result a .links-document .links-document-actions a.link-video:before,
.links-document .links-document-actions .result a a.link-video:before,
.result a #press-release a.link-video[href*="http://phx.corporate-ir.net/External.File"]:before,
#press-release .result a a.link-video[href*="http://phx.corporate-ir.net/External.File"]:before {
    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: -44em -8em;
    width: 1.5625em;
    height: 1.9375em;
    font-size: 16px;
}

@media screen and (min-width: 0\0) {
    .result a .link.link-video:before,
    .result a .list-actions a.link-video:before,
    .list-actions .result a a.link-video:before,
    .result a .links-document .links-document-actions a.link-video:before,
    .links-document .links-document-actions .result a a.link-video:before,
    .result a #press-release a.link-video[href*="http://phx.corporate-ir.net/External.File"]:before,
    #press-release .result a a.link-video[href*="http://phx.corporate-ir.net/External.File"]:before {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .result a .link.link-video:before,
.result a :root .list-actions a.link-video:before,
:root .list-actions .result a a.link-video:before,
.result a :root .links-document .links-document-actions a.link-video:before,
:root .links-document .links-document-actions .result a a.link-video:before,
.result a :root #press-release a.link-video[href*="http://phx.corporate-ir.net/External.File"]:before,
:root #press-release .result a a.link-video[href*="http://phx.corporate-ir.net/External.File"]:before {
    background-image: url(../images/icon-sprites-vector.svg);
}

.result a .link.link-audio:before,
.result a .list-actions a.link-audio:before,
.list-actions .result a a.link-audio:before,
.result a .links-document .links-document-actions a.link-audio:before,
.links-document .links-document-actions .result a a.link-audio:before,
.result a #press-release a.link-audio[href*="http://phx.corporate-ir.net/External.File"]:before,
#press-release .result a a.link-audio[href*="http://phx.corporate-ir.net/External.File"]:before {
    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: -40em -8em;
    width: 1.5625em;
    height: 1.875em;
    font-size: 16px;
}

@media screen and (min-width: 0\0) {
    .result a .link.link-audio:before,
    .result a .list-actions a.link-audio:before,
    .list-actions .result a a.link-audio:before,
    .result a .links-document .links-document-actions a.link-audio:before,
    .links-document .links-document-actions .result a a.link-audio:before,
    .result a #press-release a.link-audio[href*="http://phx.corporate-ir.net/External.File"]:before,
    #press-release .result a a.link-audio[href*="http://phx.corporate-ir.net/External.File"]:before {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .result a .link.link-audio:before,
.result a :root .list-actions a.link-audio:before,
:root .list-actions .result a a.link-audio:before,
.result a :root .links-document .links-document-actions a.link-audio:before,
:root .links-document .links-document-actions .result a a.link-audio:before,
.result a :root #press-release a.link-audio[href*="http://phx.corporate-ir.net/External.File"]:before,
:root #press-release .result a a.link-audio[href*="http://phx.corporate-ir.net/External.File"]:before {
    background-image: url(../images/icon-sprites-vector.svg);
}

.result a .link.link-broadcast:before,
.result a .list-actions a.link-broadcast:before,
.list-actions .result a a.link-broadcast:before,
.result a .links-document .links-document-actions a.link-broadcast:before,
.links-document .links-document-actions .result a a.link-broadcast:before,
.result a #press-release a.link-broadcast[href*="http://phx.corporate-ir.net/External.File"]:before,
#press-release .result a a.link-broadcast[href*="http://phx.corporate-ir.net/External.File"]:before {
    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: -36em -8em;
    width: 1.875em;
    height: 1.875em;
    font-size: 16px;
}

@media screen and (min-width: 0\0) {
    .result a .link.link-broadcast:before,
    .result a .list-actions a.link-broadcast:before,
    .list-actions .result a a.link-broadcast:before,
    .result a .links-document .links-document-actions a.link-broadcast:before,
    .links-document .links-document-actions .result a a.link-broadcast:before,
    .result a #press-release a.link-broadcast[href*="http://phx.corporate-ir.net/External.File"]:before,
    #press-release .result a a.link-broadcast[href*="http://phx.corporate-ir.net/External.File"]:before {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .result a .link.link-broadcast:before,
.result a :root .list-actions a.link-broadcast:before,
:root .list-actions .result a a.link-broadcast:before,
.result a :root .links-document .links-document-actions a.link-broadcast:before,
:root .links-document .links-document-actions .result a a.link-broadcast:before,
.result a :root #press-release a.link-broadcast[href*="http://phx.corporate-ir.net/External.File"]:before,
:root #press-release .result a a.link-broadcast[href*="http://phx.corporate-ir.net/External.File"]:before {
    background-image: url(../images/icon-sprites-vector.svg);
}

.result a:hover {
    text-decoration: none !important;
}

    .result a:hover,
    .result a:hover h6,
    .result a:hover p,
    .result a:hover small {
        color: #ce1141;
    }

        .result a:hover .link,
        .result a:hover .list-actions a,
        .list-actions .result a:hover a,
        .result a:hover .links-document .links-document-actions a,
        .links-document .links-document-actions .result a:hover a,
        .result a:hover #press-release a[href*="http://phx.corporate-ir.net/External.File"],
        #press-release .result a:hover a[href*="http://phx.corporate-ir.net/External.File"] {
            text-decoration: underline !important;
        }

            .result a:hover .link.link-pdf:before,
            .result a:hover .list-actions a.link-pdf:before,
            .list-actions .result a:hover a.link-pdf:before,
            .result a:hover .links-document .links-document-actions a.link-pdf:before,
            .links-document .links-document-actions .result a:hover a.link-pdf:before,
            .result a:hover #press-release a.link-pdf[href*="http://phx.corporate-ir.net/External.File"]:before,
            #press-release .result a:hover a.link-pdf[href*="http://phx.corporate-ir.net/External.File"]:before {
                background-position: -22em -8em;
            }

            .result a:hover .link.link-page:before,
            .result a:hover .list-actions a.link-page:before,
            .list-actions .result a:hover a.link-page:before,
            .result a:hover .links-document .links-document-actions a.link-page:before,
            .links-document .links-document-actions .result a:hover a.link-page:before,
            .result a:hover #press-release a.link-page[href*="http://phx.corporate-ir.net/External.File"]:before,
            #press-release .result a:hover a.link-page[href*="http://phx.corporate-ir.net/External.File"]:before {
                background-position: -44em -4em;
            }

            .result a:hover .link.link-document:before,
            .result a:hover .list-actions a.link-document:before,
            .list-actions .result a:hover a.link-document:before,
            .result a:hover .links-document .links-document-actions a.link-document:before,
            .links-document .links-document-actions .result a:hover a.link-document:before,
            .result a:hover #press-release a.link-document[href*="http://phx.corporate-ir.net/External.File"]:before,
            #press-release .result a:hover a.link-document[href*="http://phx.corporate-ir.net/External.File"]:before,
            .result a:hover .link.link-doc:before,
            .result a:hover .list-actions a.link-doc:before,
            .list-actions .result a:hover a.link-doc:before,
            .result a:hover .links-document .links-document-actions a.link-doc:before,
            .links-document .links-document-actions .result a:hover a.link-doc:before,
            .result a:hover #press-release a.link-doc[href*="http://phx.corporate-ir.net/External.File"]:before,
            #press-release .result a:hover a.link-doc[href*="http://phx.corporate-ir.net/External.File"]:before {
                background-position: -26em -8em;
            }

            .result a:hover .link.link-video:before,
            .result a:hover .list-actions a.link-video:before,
            .list-actions .result a:hover a.link-video:before,
            .result a:hover .links-document .links-document-actions a.link-video:before,
            .links-document .links-document-actions .result a:hover a.link-video:before,
            .result a:hover #press-release a.link-video[href*="http://phx.corporate-ir.net/External.File"]:before,
            #press-release .result a:hover a.link-video[href*="http://phx.corporate-ir.net/External.File"]:before {
                background-position: 0em -12em;
            }

            .result a:hover .link.link-audio:before,
            .result a:hover .list-actions a.link-audio:before,
            .list-actions .result a:hover a.link-audio:before,
            .result a:hover .links-document .links-document-actions a.link-audio:before,
            .links-document .links-document-actions .result a:hover a.link-audio:before,
            .result a:hover #press-release a.link-audio[href*="http://phx.corporate-ir.net/External.File"]:before,
            #press-release .result a:hover a.link-audio[href*="http://phx.corporate-ir.net/External.File"]:before {
                background-position: -42em -8em;
            }

            .result a:hover .link.link-broadcast:before,
            .result a:hover .list-actions a.link-broadcast:before,
            .list-actions .result a:hover a.link-broadcast:before,
            .result a:hover .links-document .links-document-actions a.link-broadcast:before,
            .links-document .links-document-actions .result a:hover a.link-broadcast:before,
            .result a:hover #press-release a.link-broadcast[href*="http://phx.corporate-ir.net/External.File"]:before,
            #press-release .result a:hover a.link-broadcast[href*="http://phx.corporate-ir.net/External.File"]:before {
                background-position: -38em -8em;
            }

.result .result-content {
    padding-right: 5%;
    vertical-align: top;
}

.result .result-actions {
    white-space: nowrap;
    width: 10px;
}

@media (min-width: 1025px) and (max-width: 1174px) {
    .page-intro #search-results-container {
        margin-right: -299px;
    }
}

@media (min-width: 1175px) {
    .page-intro #search-results-container {
        margin-right: -349px;
    }
}

.page-intro #search-results-container .result-content {
    width: auto;
}

@media (min-width: 1025px) and (max-width: 1174px) {
    .page-intro #search-results-container .result-actions {
        width: 299px;
    }
}

@media (min-width: 1175px) {
    .page-intro #search-results-container .result-actions {
        width: 349px;
    }
}

@media (max-width: 667px) {
    .results {
        margin: 0 -20px;
    }

    .result {
        padding-left: 20px;
        padding-right: 20px;
    }

        .result p,
        .result h6 {
            font-size: 14px;
        }

        .result h6 {
            margin: 0;
        }

        .result .list-actions strong {
            max-width: calc(100% - 20px);
        }

    .section-result:first-child .result {
        border-top: 1px solid #ebebeb;
    }
}


/* ------------------------------------------------------------ *\
	Link
\* ------------------------------------------------------------ */

.link-filter {
    color: #373a36;
}

    .link-filter span {
        min-width: 40px;
        display: inline-block;
    }

    .link-filter i {
        margin-right: 5px;
    }

    .link-filter strong {
        font-weight: 500;
        font-family: "Roboto", sans-serif;
        font-size: 14px;
        line-height: 1.29;
        max-width: calc(100% - 40px);
    }

    .link-filter:hover {
        color: #ce1141;
    }


/* ------------------------------------------------------------ *\
	Update
\* ------------------------------------------------------------ */

.update {
    margin-bottom: 40px;
}

    .update:after {
        content: '';
        line-height: 0;
        display: table;
        clear: both;
    }

    .update p,
    .update h6 {
        font-size: 16px;
        line-height: 1.38;
        font-weight: 700;
        color: #373a36;
    }

    .update p {
        font-weight: 300;
    }

    .update .update-content {
        float: left;
        width: 69%;
        padding-right: 20px;
    }

@media (max-width: 1023px) {
    .update .update-content {
        width: 69%;
    }
}

@media (max-width: 667px) {
    .update .update-content {
        width: 54%;
    }
}

.update .update-actions {
    float: right;
    width: 31%;
    padding-top: 5px;
}

@media (max-width: 667px) {
    .update .update-actions {
        width: 36%;
    }
}

@media (max-width: 667px) {
    .update .update-content,
    .update .update-actions {
        width: 100%;
    }

    .update .update-actions {
        padding-top: 20px;
    }

    .update h6 {
        margin: 0;
    }
}


/* ------------------------------------------------------------ *\ 
	Contact
\* ------------------------------------------------------------ */

.contacts p,
.contacts h6 {
    font-size: 16px;
    font-family: "Roboto", sans-serif;
    line-height: 1.38;
}

.contacts h6 {
    font-weight: 700;
    margin: 0;
}

.contacts p {
    font-weight: 300;
}

    .contacts p + .section-map {
        margin-top: 24px;
    }

.contacts .section-map {
    height: 150px;
}


/* ------------------------------------------------------------ *\
	Intro
\* ------------------------------------------------------------ */

.intro {
    *zoom: 1;
    position: relative;
    z-index: 13;
    overflow: hidden;
}

    .intro:after {
        content: "";
        display: table;
        clear: both;
    }

    .intro:before {
        content: '';
        line-height: 0;
        display: table;
        clear: both;
    }

    .intro .intro-content {
        background: #f8f8f8;
        width: 47%;
        height: 400px;
        padding-left: 65px;
        float: right;
        position: relative;
        transform: translateX(-310px);
    }

        .intro .intro-content:after {
            content: '';
            display: block;
            width: 9999px;
            height: 100%;
            position: absolute;
            left: 100%;
            top: 0;
            background: #f8f8f8;
        }

        .intro .intro-content:before {
            position: absolute;
            top: 0;
            left: -58px;
            content: '';
            width: 0;
            height: 0;
            border-style: solid;
            border-width: 0 58px 400px 0;
            border-color: transparent #f8f8f8 transparent transparent;
            /* z-index: 9;*/
        }

        .intro .intro-content h1 {
            margin: 0;
            font-size: 40px;
            line-height: 0.85;
            letter-spacing: -0.01em;
            font-family: "Nord-Con", sans-serif;
            font-weight: 300;
            text-transform: uppercase;
        }

            .intro .intro-content h1 strong {
                font-weight: 700;
            }

                .intro .intro-content h1 strong.red {
                    color: #ce1141;
                }

    .intro .intro-content-inner {
        position: relative;
        top: 50%;
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        padding-top: 104px;
    }

    .intro .intro-image {
        display: block;
        width: 53%;
        height: 400px;
        background-size: cover;
        background-position: center bottom;
        float: left;
        position: relative;
    }

@media (max-width: 1023px) {
    .intro .intro-content {
        transform: translateX(0px);
    }

        .intro .intro-content h1 {
            font-size: 34px;
        }
}

@media (max-width: 667px) {
    .intro .intro-content {
        padding-left: 10px;
    }

        .intro .intro-content h1 {
            font-size: 22px;
            max-width: 100px;
        }

    .intro .intro-image,
    .intro .intro-content {
        height: 200px;
        width: 50%;
    }

        .intro .intro-content:before {
            left: -29px;
            border-width: 0 29px 200px 0;
        }

    .intro .intro-content-inner {
        padding-top: 0;
    }
}

span.intro {
    z-index: 1;
}


/* Helper */

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}


/* Detail Box */

.detail-boxes {
    min-height: 200px;
    max-width: 300px;
    margin: 0 -10px 35px 0;
    position: relative;
}

.detail-box {
    background-color: #65676b;
    color: #fff;
    padding: 23px 24px 21px 21px;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    transition: opacity .3s;
}

    .detail-box > a {
        position: absolute;
        top: 10px;
        right: 10px;
        opacity: 0;
        z-index: -1;
    }

@media (max-width: 667px) {
    .detail-box > a {
        top: 20px;
        right: 20px;
    }
}

.detail-box h6 {
    font-size: 20px;
    color: #ede112;
    margin-bottom: 13px;
    line-height: 1.22;
}

.detail-box p {
    font-weight: 300;
    line-height: 1.38;
}

    .detail-box p:last-child {
        margin-bottom: 0;
    }

.detail-box.active {
    opacity: 1;
    z-index: 1;
}

@media (max-width: 1023px) {
    .detail-boxes {
        min-height: 0;
        width: 100%;
    }

    .detail-box {
        padding: 16px 14px 18px;
        height: auto;
        bottom: auto;
        position: static;
        display: none;
        max-height: 180px;
        overflow-y: auto;
    }

        .detail-box h6 {
            font-size: 16px;
            margin-bottom: 8px;
        }

        .detail-box p {
            font-size: 12px;
            line-height: 1.25;
        }

        .detail-box.active {
            display: block;
        }
}

@media (max-width: 667px) {
    .detail-boxes {
        position: absolute;
        top: 110px;
        left: 0;
        right: 0;
        max-width: 100%;
        margin-bottom: 0;
    }

    .detail-box {
        max-height: 214px;
        height: 214px;
        margin-bottom: 0;
        padding: 20px;
    }

        .detail-box > a {
            opacity: 1;
            z-index: 1;
        }

        .detail-box p {
            font-size: 16px;
        }
}


/* Intro */

.intro-mature-field {
    height: 680px;
    overflow: hidden;
    background: #40434a;
    position: relative;
    z-index: 13;
}

    .intro-mature-field:before {
        content: '';
        background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0) 10%, rgba(0, 0, 0, 0) 60%, #000000 95%, #000000 100%);
        position: absolute;
        top: 50%;
        left: 50%;
        -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        width: 100%;
        min-height: 100%;
        opacity: .4;
    }

    .intro-mature-field h2 {
        color: #fff;
        font-size: 40px;
        line-height: 0.85;
        text-transform: uppercase;
        font-weight: 600;
    }

        .intro-mature-field h2 span {
            display: block;
            font-weight: 300;
        }

    .intro-mature-field .intro-head {
        font-family: "Nord-Con", sans-serif;
        position: absolute;
        z-index: 1;
        top: 183px;
        width: 100%;
        pointer-events: none;
    }

    .intro-mature-field .link-scroll + .intro-entry {
        margin-top: 10px;
    }

    .intro-mature-field .intro-inner {
        height: 100%;
        position: relative;
        transition: transform .5s ease;
    }

    .intro-mature-field .intro-content {
        pointer-events: auto;
        padding-left: 33px;
    }

        .intro-mature-field .intro-content .link-scroll {
            margin-left: 22px;
        }

    .intro-mature-field .intro-background {
        text-align: center;
    }

    .intro-mature-field .intro-entry {
        padding-left: 20px;
    }

        .intro-mature-field .intro-entry h4 {
            color: #ede112;
            max-width: 240px;
            line-height: 1.2;
            margin-bottom: 10px;
            font-family: "roboto", Arial, Helvetica, sans-serif;
            font-weight: 600;
        }

    .intro-mature-field .intro-group {
        position: relative;
        height: 680px;
    }

    .intro-mature-field .intro-image {
        display: block;
        position: relative;
    }

        .intro-mature-field .intro-image .lines {
            position: absolute;
            top: 100%;
            left: 50%;
            margin: -13.5% 0 0 -37.9%;
            width: 75.75%;
        }

        .intro-mature-field .intro-image .hotspots {
            position: absolute;
            top: 0;
            left: 0;
            bottom: 0;
            right: 0;
        }

        .intro-mature-field .intro-image .hotspot {
            position: absolute;
            top: 50%;
            left: 50%;
        }

    .intro-mature-field .intro-group-primary {
        padding-top: 183px;
    }

        .intro-mature-field .intro-group-primary .intro-background {
            position: relative;
            right: -15px;
            top: -15px;
        }

        .intro-mature-field .intro-group-primary .intro-entry {
            margin-bottom: 50px;
        }

        .intro-mature-field .intro-group-primary .hotspot:nth-child(1) {
            margin: -54.8% 0 0 2.6%;
        }

        .intro-mature-field .intro-group-primary .hotspot:nth-child(2) {
            margin: -26% 0 0 34.3%;
        }

        .intro-mature-field .intro-group-primary .hotspot:nth-child(3) {
            margin: -1% 0 0 -12.5%;
        }

        .intro-mature-field .intro-group-primary .line-primary {
            position: absolute;
            top: 35px;
            left: 5px;
        }

            .intro-mature-field .intro-group-primary .line-primary span {
                height: 78px;
                margin-bottom: 6px;
            }

                .intro-mature-field .intro-group-primary .line-primary span:before {
                    content: '';
                    background: url(../images/line-primary.png) no-repeat center center;
                    background-size: cover;
                    height: 21px;
                    position: absolute;
                    bottom: 100%;
                    left: 0;
                    right: 0;
                }

        .intro-mature-field .intro-group-primary .line-secondary {
            position: absolute;
            top: 75px;
            left: 50%;
            margin-left: 3px;
        }

            .intro-mature-field .intro-group-primary .line-secondary span {
                height: 38px;
                margin-bottom: 204px;
            }

                .intro-mature-field .intro-group-primary .line-secondary span:before {
                    content: '';
                    background: url(../images/line-secondary.png) no-repeat center center;
                    background-size: cover;
                    width: 6px;
                    height: 21px;
                    position: absolute;
                    bottom: 100%;
                    left: 0;
                }

        .intro-mature-field .intro-group-primary .line-tertiary {
            position: absolute;
            top: 72px;
            right: -3px;
        }

            .intro-mature-field .intro-group-primary .line-tertiary span {
                height: 42px;
                margin-bottom: 6px;
            }

                .intro-mature-field .intro-group-primary .line-tertiary span:before {
                    content: '';
                    background: url(../images/line-tertiary.png) no-repeat center center;
                    background-size: cover;
                    height: 71px;
                    position: absolute;
                    bottom: 100%;
                    left: 0;
                    width: 6px;
                }

    .intro-mature-field .intro-group-secondary {
        padding-top: 122px;
        z-index: 2;
    }

        .intro-mature-field .intro-group-secondary .intro-background {
            position: relative;
            right: -24px;
            top: 90px;
        }

        .intro-mature-field .intro-group-secondary .intro-entry {
            margin-bottom: 40px;
        }

            .intro-mature-field .intro-group-secondary .intro-entry h4 {
                margin-bottom: 14px;
            }

        .intro-mature-field .intro-group-secondary .hotspot:nth-child(1) {
            margin: -51.6% 0 0 -51.4%;
        }

        .intro-mature-field .intro-group-secondary .hotspot:nth-child(2) {
            margin: -42% 0 0 -15.1%;
        }

        .intro-mature-field .intro-group-secondary .hotspot:nth-child(3) {
            margin: -51.6% 0 0 34.9%;
        }

        .intro-mature-field .intro-group-secondary .hotspot:nth-child(4) {
            margin: -4.3% 0 0 36.3%;
        }

        .intro-mature-field .intro-group-secondary .hotspot:nth-child(5) {
            margin: 25% 0 0 -15.1%;
        }

        .intro-mature-field .intro-group-secondary .line-primary {
            position: absolute;
            bottom: 165px;
            left: -4px;
        }

            .intro-mature-field .intro-group-secondary .line-primary span {
                height: 282px;
                margin-bottom: 6px;
            }

                .intro-mature-field .intro-group-secondary .line-primary span:after {
                    content: '';
                    background: url(../images/line-primary-end.png) no-repeat center center;
                    background-size: cover;
                    width: 6px;
                    height: 6px;
                    position: absolute;
                    top: 100%;
                    left: 0;
                }

        .intro-mature-field .intro-group-secondary .line-secondary {
            position: absolute;
            top: 50%;
            left: 50%;
            margin-left: -6px;
            margin-top: -452px;
        }

            .intro-mature-field .intro-group-secondary .line-secondary span {
                height: 680px;
            }

        .intro-mature-field .intro-group-secondary .line-tertiary {
            position: absolute;
            bottom: 58px;
            right: 6px;
        }

            .intro-mature-field .intro-group-secondary .line-tertiary span {
                height: 388px;
                margin-bottom: 6px;
            }

                .intro-mature-field .intro-group-secondary .line-tertiary span:after {
                    content: '';
                    background: url(../images/line-primary-end.png) no-repeat center center;
                    background-size: cover;
                    height: 6px;
                    position: absolute;
                    top: 100%;
                    left: 0;
                    right: 0;
                }

    .intro-mature-field .intro-group-tertiary {
        padding-top: 122px;
        z-index: 1;
    }

        .intro-mature-field .intro-group-tertiary .link-scroll + .intro-entry {
            margin-top: 13px;
        }

        .intro-mature-field .intro-group-tertiary .intro-background {
            position: relative;
            right: -18px;
            top: 115px;
        }

        .intro-mature-field .intro-group-tertiary .intro-entry {
            margin-bottom: 70px;
        }

            .intro-mature-field .intro-group-tertiary .intro-entry h4 {
                margin-bottom: 14px;
            }

        .intro-mature-field .intro-group-tertiary .hotspot:nth-child(1) {
            margin: -35.7% 0 0 1.5%;
        }

        .intro-mature-field .intro-group-tertiary .hotspot:nth-child(2) {
            margin: -21% 0 0 -35.2%;
        }

        .intro-mature-field .intro-group-tertiary .hotspot:nth-child(3) {
            margin: -23% 0 0 25.8%;
        }

        .intro-mature-field .intro-group-tertiary .hotspot:nth-child(4) {
            margin: 19.5% 0 0 20.7%;
        }

        .intro-mature-field .intro-group-tertiary .hotspot:nth-child(5) {
            margin: 6.8% 0 0 -35.1%;
        }

        .intro-mature-field .intro-group-tertiary .hotspot:nth-child(6) {
            margin: 14.5% 0 0 -56%;
        }

        .intro-mature-field .intro-group-tertiary .line-secondary {
            position: absolute;
            bottom: 60px;
            left: 50%;
            margin-left: 0px;
        }

            .intro-mature-field .intro-group-tertiary .line-secondary span {
                height: 270px;
                margin-bottom: 156px;
            }

                .intro-mature-field .intro-group-tertiary .line-secondary span:after {
                    content: '';
                    background: url(../images/lines-end.png) no-repeat center center;
                    background-size: cover;
                    height: 202px;
                    width: 204px;
                    position: absolute;
                    top: 100%;
                    left: 50%;
                    margin-left: -101px;
                }

@media (max-width: 1200px) {
    .intro-mature-field h2 {
        font-size: 38px;
    }

    .intro-mature-field .intro-head .shell {
        padding: 0;
        overflow: hidden;
    }

    .intro-mature-field .intro-content {
        padding-left: 0;
    }

    .intro-mature-field .intro-image .lines {
        margin-top: -12.5%;
    }

    .intro-mature-field .intro-background {
        font-size: 0;
        width: 390px;
        margin: 0 auto;
    }

    .intro-mature-field .intro-group-primary .intro-background {
        top: 60px;
        right: 0;
    }

    .intro-mature-field .intro-group-primary .line-secondary {
        top: 68px;
    }

    .intro-mature-field .intro-group-secondary .intro-background {
        top: 150px;
        right: -7px;
    }

    .intro-mature-field .intro-group-secondary .line-primary {
        bottom: 138px;
    }

        .intro-mature-field .intro-group-secondary .line-primary span {
            height: 317px;
        }

    .intro-mature-field .intro-group-secondary .line-secondary {
        margin-top: -467px;
    }

    .intro-mature-field .intro-group-secondary .line-tertiary {
        bottom: 46px;
    }

        .intro-mature-field .intro-group-secondary .line-tertiary span {
            height: 408px;
        }

    .intro-mature-field .intro-group-tertiary .intro-background {
        top: 134px;
        right: -15px;
    }

    .intro-mature-field .intro-group-tertiary .line-secondary {
        margin-left: -12px;
        bottom: -13px;
    }

        .intro-mature-field .intro-group-tertiary .line-secondary span {
            margin-bottom: 204px;
        }

            .intro-mature-field .intro-group-tertiary .line-secondary span:after {
                width: 162px;
                height: 188px;
                margin-left: -68px;
                background-position: center right;
            }
}

@media (max-width: 1023px) {
    .intro-mature-field {
        margin: 100px 0 0;
        height: 360px;
    }

        .intro-mature-field h2 {
            font-size: 30px;
            padding-left: 15px;
        }

        .intro-mature-field .intro-head {
            top: 42px;
        }

            .intro-mature-field .intro-head [class^="col-"] {
                padding: 0;
            }

        .intro-mature-field .intro-body .shell {
            padding: 0;
        }

        .intro-mature-field .intro-body [class^="col-"] {
            padding: 0;
        }

        .intro-mature-field .intro-image .lines {
            margin: -16.5% 0 0 -39.8%;
        }

        .intro-mature-field .intro-group {
            height: 360px;
            padding-top: 0;
        }

        .intro-mature-field .intro-content {
            width: 220px;
            float: right;
            height: 360px;
            padding: 0px 10px 27px 0;
            position: relative;
        }

            .intro-mature-field .intro-content .intro-entry {
                padding-right: 5px;
            }

            .intro-mature-field .intro-content .link-scroll {
                display: inline-block;
                margin-left: 0;
                margin-top: 14px;
            }

        .intro-mature-field .intro-actions {
            position: absolute;
            bottom: 14px;
            right: 0;
            width: 100%;
        }

        .intro-mature-field .intro-background {
            font-size: 0;
            width: 213px;
            margin: 0 auto;
            z-index: 1;
        }

        .intro-mature-field .intro-entry {
            padding-left: 3px;
            width: 100%;
        }

            .intro-mature-field .intro-entry h4 {
                font-size: 18px;
            }

        .intro-mature-field .intro-group-primary .intro-entry {
            margin-bottom: 37px;
            padding-top: 42px;
        }

            .intro-mature-field .intro-group-primary .intro-entry h4 {
                margin-bottom: 13px;
                margin-top: 7px;
            }

        .intro-mature-field .intro-group-primary .intro-background {
            top: 53px;
        }

        .intro-mature-field .intro-group-primary .hotspot:nth-child(1) {
            margin: -58.8% 0 0 -0.4%;
        }

        .intro-mature-field .intro-group-primary .hotspot:nth-child(2) {
            margin: -30.2% 0 0 27.3%;
        }

        .intro-mature-field .intro-group-primary .hotspot:nth-child(3) {
            margin: -8.2% 0 0 -15.8%;
        }

        .intro-mature-field .intro-group-primary .line-primary span {
            height: 102px;
        }

            .intro-mature-field .intro-group-primary .line-primary span:before {
                width: 3px;
            }

        .intro-mature-field .intro-group-primary .line-secondary {
            top: 55px;
        }

            .intro-mature-field .intro-group-primary .line-secondary span {
                margin-bottom: 0;
                height: 85px;
            }

                .intro-mature-field .intro-group-primary .line-secondary span:before {
                    width: 3px;
                }

        .intro-mature-field .intro-group-primary .line-tertiary {
            top: 79px;
        }

            .intro-mature-field .intro-group-primary .line-tertiary span {
                height: 60px;
            }

                .intro-mature-field .intro-group-primary .line-tertiary span:before {
                    width: 3px;
                }

        .intro-mature-field .intro-group-secondary .intro-entry {
            margin-bottom: 10px;
        }

        .intro-mature-field .intro-group-secondary .intro-background {
            right: -6px;
        }

        .intro-mature-field .intro-group-secondary .hotspot:nth-child(1) {
            margin: -42.6% 0 0 -69.4%;
        }

        .intro-mature-field .intro-group-secondary .hotspot:nth-child(2) {
            margin: -42% 0 0 -32.1%;
        }

        .intro-mature-field .intro-group-secondary .hotspot:nth-child(5) {
            margin: 25% 0 0 -30.1%;
        }

        .intro-mature-field .intro-group-secondary .line-primary {
            margin-top: 0;
            bottom: 65px;
            left: -1px;
        }

            .intro-mature-field .intro-group-secondary .line-primary span {
                height: 178px;
            }

        .intro-mature-field .intro-group-secondary .line-secondary {
            margin-top: -250px;
            margin-left: -3px;
        }

            .intro-mature-field .intro-group-secondary .line-secondary span {
                height: 363px;
            }

        .intro-mature-field .intro-group-secondary .line-tertiary {
            bottom: 14px;
            right: 3px;
        }

            .intro-mature-field .intro-group-secondary .line-tertiary span {
                height: 224px;
            }

        .intro-mature-field .intro-group-tertiary .intro-entry {
            margin-bottom: 20px;
        }

        .intro-mature-field .intro-group-tertiary .intro-background {
            right: -4px;
        }

        .intro-mature-field .intro-group-tertiary .hotspot:nth-child(1) {
            margin: -50.7% 0 0 -2.5%;
        }

        .intro-mature-field .intro-group-tertiary .hotspot:nth-child(2) {
            margin: -21% 0 0 -58.2%;
        }

        .intro-mature-field .intro-group-tertiary .hotspot:nth-child(3) {
            margin: -25% 0 0 18.8%;
        }

        .intro-mature-field .intro-group-tertiary .hotspot:nth-child(4) {
            margin: 16.5% 0 0 8.7%;
        }

        .intro-mature-field .intro-group-tertiary .hotspot:nth-child(5) {
            margin: 9.8% 0 0 -42.1%;
        }

        .intro-mature-field .intro-group-tertiary .hotspot:nth-child(6) {
            margin: 9.5% 0 0 -67%;
        }

        .intro-mature-field .intro-group-tertiary .line-secondary {
            bottom: 0;
            margin-left: -1px;
        }

            .intro-mature-field .intro-group-tertiary .line-secondary span {
                height: 150px;
                margin-bottom: 89px;
            }

                .intro-mature-field .intro-group-tertiary .line-secondary span:after {
                    background-position: center center;
                    margin-left: -44px;
                    height: 89px;
                    width: 90px;
                }
}

@media (max-width: 667px) {
    .intro-mature-field {
        margin: 0;
        height: 360px;
    }

        .intro-mature-field h2 {
            padding-left: 0;
            font-size: 24px;
            line-height: 22px;
        }

        .intro-mature-field .col-mobile-fluid {
            position: absolute;
            top: 0;
            left: 0;
            bottom: 0;
            right: 0;
            width: auto;
            z-index: 2;
            pointer-events: none;
        }

        .intro-mature-field .link-scroll + .intro-entry {
            margin-top: 0;
            padding-top: 59px;
        }

        .intro-mature-field .link-scroll,
        .intro-mature-field .detail-box {
            pointer-events: auto;
        }

        .intro-mature-field .intro-actions {
            bottom: 0;
        }

        .intro-mature-field .intro-background {
            width: 183px;
        }

        .intro-mature-field .intro-content {
            float: none;
            width: 100%;
            pointer-events: none;
            padding-right: 0;
        }

            .intro-mature-field .intro-content > .link-scroll {
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
            }

        .intro-mature-field .intro-group {
            padding-top: 110px;
        }

        .intro-mature-field .intro-entry {
            padding: 18px;
            height: 110px;
            display: flex;
            flex-wrap: wrap;
            background: #36393e;
        }

            .intro-mature-field .intro-entry .intro-group-title {
                align-items: flex-end;
            }

            .intro-mature-field .intro-entry h4 {
                max-width: 100%;
                width: 100%;
                font-size: 18px;
                line-height: 22px;
            }

            .intro-mature-field .intro-entry > img {
                display: none;
            }

        .intro-mature-field .intro-group-primary {
            z-index: 3;
        }

            .intro-mature-field .intro-group-primary .intro-entry {
                padding: 12px 18px;
            }

            .intro-mature-field .intro-group-primary .intro-background {
                top: 10px;
            }

            .intro-mature-field .intro-group-primary .line-primary {
                top: 35px;
            }

                .intro-mature-field .intro-group-primary .line-primary span {
                    height: 55px;
                }

            .intro-mature-field .intro-group-primary .line-secondary {
                top: 50px;
            }

                .intro-mature-field .intro-group-primary .line-secondary span {
                    height: 41px;
                }

            .intro-mature-field .intro-group-primary .line-tertiary {
                top: 79px;
            }

                .intro-mature-field .intro-group-primary .line-tertiary span {
                    height: 6px;
                }

        .intro-mature-field .intro-group-secondary .intro-entry h4 {
            margin-bottom: 0;
        }

        .intro-mature-field .intro-group-secondary .intro-background {
            top: 46px;
        }

        .intro-mature-field .intro-group-secondary .line-primary {
            bottom: 57px;
            left: -1px;
        }

            .intro-mature-field .intro-group-secondary .line-primary span {
                height: 178px;
            }

        .intro-mature-field .intro-group-secondary .line-secondary {
            margin-top: -241px;
            margin-left: -3px;
        }

            .intro-mature-field .intro-group-secondary .line-secondary span {
                height: 360px;
            }

        .intro-mature-field .intro-group-secondary .line-tertiary span {
            height: 228px;
        }

        .intro-mature-field .intro-group-tertiary .link-scroll + .intro-entry {
            margin-top: 0;
        }

        .intro-mature-field .intro-group-tertiary .intro-background {
            top: 62px;
        }

        .intro-mature-field .intro-group-tertiary .line-secondary {
            bottom: 0;
            margin-left: -1px;
        }

            .intro-mature-field .intro-group-tertiary .line-secondary span {
                height: 182px;
                margin-bottom: 80px;
            }

                .intro-mature-field .intro-group-tertiary .line-secondary span:after {
                    background-position: center center;
                    margin-left: -40px;
                    height: 77px;
                    width: 81px;
                }

        .intro-mature-field .intro-group-tertiary .hotspot:nth-child(5) {
            margin: 23.8% 0 0 -40.1%;
        }
}


/* Line */

.lines {
    position: relative;
    max-width: 353px;
    margin: 0 auto;
}

.line {
    pointer-events: none;
}

    .line span {
        position: relative;
        display: inline-block;
        vertical-align: middle;
        width: 6px;
        background: url(../images/line.png) repeat-y 0 0;
    }

@media (max-width: 1023px) {
    .line span {
        width: 3px;
    }
}


/* Link */

.link-hotspot {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    width: 66px;
    height: 66px;
    z-index: 1;
}

    .link-hotspot > img {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        transition: opacity .3s;
    }

    .link-hotspot span {
        display: inline-block;
        width: 24px;
        height: 24px;
        border-radius: 50%;
        box-shadow: 0 0 16px 2px rgba(92, 92, 92, 0.15);
        background-color: #ede111;
        position: absolute;
        top: 50%;
        left: 50%;
        -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        opacity: 0;
        transition: opacity .3s;
    }

    .link-hotspot > .image-hover {
        opacity: 0;
        animation: fadeIn 2s infinite;
    }

    .link-hotspot:hover > span,
    .link-hotspot.active > span,
    .link-hotspot:hover > .image-hover,
    .link-hotspot.active > .image-hover {
        opacity: 1;
    }

    .link-hotspot:hover > .image-hover,
    .link-hotspot.active > .image-hover {
        opacity: 0;
        animation: none;
    }

@media (max-width: 1023px) {
    .link-hotspot {
        width: 60px;
        height: 60px;
    }

        .link-hotspot span {
            width: 17px;
            height: 17px;
        }
}


/* ------------------------------------------------------------ *\
	LInk Scroll
\* ------------------------------------------------------------ */

.link-scroll {
    font-size: 16px;
    color: #fff;
    font-weight: 300;
}

    .link-scroll span {
        display: inline-block;
        vertical-align: middle;
        margin-left: 10px;
    }

    .link-scroll:hover {
        color: #efdf00;
        text-decoration: none;
    }

@media (max-width: 1023px) {
    .link-scroll {
        font-size: 12px;
    }
}

@media (max-width: 667px) {
    .link-scroll {
        display: block;
        width: 100%;
        text-align: center;
        background: #36393e;
        padding: 13px 0 10px;
    }

        .link-scroll span {
            display: none;
            width: 100%;
        }
}


/* Sprite */

.ico-close-large-white {
    display: inline-block;
    vertical-align: middle;
    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: -10em -16em;
    width: 1.0625em;
    height: 1.0625em;
    font-size: 1em;
}

@media screen and (min-width: 0\0) {
    .ico-close-large-white {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .ico-close-large-white {
    background-image: url(../images/icon-sprites-vector.svg);
}

.ico-scroll-down {
    display: inline-block;
    vertical-align: middle;
    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: -36em -20em;
    width: 0.75em;
    height: 0.5em;
}

@media screen and (min-width: 0\0) {
    .ico-scroll-down {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .ico-scroll-down {
    background-image: url(../images/icon-sprites-vector.svg);
}

@media (min-width: 1025px) {
    .ico-scroll-down {
        font-size: 26px;
    }
}

@media (min-width: 668px) and (max-width: 1024px) {
    .ico-scroll-down {
        font-size: 16px;
    }
}

@media (max-width: 667px) {
    .ico-scroll-down {
        font-size: 16px;
    }
}

.ico-scroll-down-hover,
a:hover .ico-scroll-down,
button:hover .ico-scroll-down,
a.hover .ico-scroll-down,
button.hover .ico-scroll-down,
.ico-scroll-down.hover {
    display: inline-block;
    vertical-align: middle;
    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 -20em;
    width: 0.75em;
    height: 0.5em;
}

@media screen and (min-width: 0\0) {
    .ico-scroll-down-hover,
    a:hover .ico-scroll-down,
    button:hover .ico-scroll-down,
    a.hover .ico-scroll-down,
    button.hover .ico-scroll-down,
    .ico-scroll-down.hover {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .ico-scroll-down-hover,
:root a:hover .ico-scroll-down,
:root button:hover .ico-scroll-down,
:root a.hover .ico-scroll-down,
:root button.hover .ico-scroll-down,
:root .ico-scroll-down.hover {
    background-image: url(../images/icon-sprites-vector.svg);
}

@media (min-width: 1025px) {
    .ico-scroll-down-hover,
    a:hover .ico-scroll-down,
    button:hover .ico-scroll-down,
    a.hover .ico-scroll-down,
    button.hover .ico-scroll-down,
    .ico-scroll-down.hover {
        font-size: 26px;
    }
}

@media (min-width: 668px) and (max-width: 1024px) {
    .ico-scroll-down-hover,
    a:hover .ico-scroll-down,
    button:hover .ico-scroll-down,
    a.hover .ico-scroll-down,
    button.hover .ico-scroll-down,
    .ico-scroll-down.hover {
        font-size: 16px;
    }
}

@media (max-width: 667px) {
    .ico-scroll-down-hover,
    a:hover .ico-scroll-down,
    button:hover .ico-scroll-down,
    a.hover .ico-scroll-down,
    button.hover .ico-scroll-down,
    .ico-scroll-down.hover {
        font-size: 16px;
    }
}

.ico-scroll-up {
    display: inline-block;
    vertical-align: middle;
    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: -36em -20em;
    width: 0.75em;
    height: 0.5em;
    -moz-transform: rotateZ(-180deg);
    -ms-transform: rotateZ(-180deg);
    -webkit-transform: rotateZ(-180deg);
    transform: rotateZ(-180deg);
}

@media screen and (min-width: 0\0) {
    .ico-scroll-up {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .ico-scroll-up {
    background-image: url(../images/icon-sprites-vector.svg);
}

@media (min-width: 1025px) {
    .ico-scroll-up {
        font-size: 26px;
    }
}

@media (min-width: 668px) and (max-width: 1024px) {
    .ico-scroll-up {
        font-size: 16px;
    }
}

@media (max-width: 667px) {
    .ico-scroll-up {
        font-size: 16px;
    }
}

.ico-scroll-up-hover,
a:hover .ico-scroll-up,
button:hover .ico-scroll-up,
a.hover .ico-scroll-up,
button.hover .ico-scroll-up,
.ico-scroll-up.hover {
    display: inline-block;
    vertical-align: middle;
    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 -20em;
    width: 0.75em;
    height: 0.5em;
    -moz-transform: rotateZ(-180deg);
    -ms-transform: rotateZ(-180deg);
    -webkit-transform: rotateZ(-180deg);
    transform: rotateZ(-180deg);
}

@media screen and (min-width: 0\0) {
    .ico-scroll-up-hover,
    a:hover .ico-scroll-up,
    button:hover .ico-scroll-up,
    a.hover .ico-scroll-up,
    button.hover .ico-scroll-up,
    .ico-scroll-up.hover {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .ico-scroll-up-hover,
:root a:hover .ico-scroll-up,
:root button:hover .ico-scroll-up,
:root a.hover .ico-scroll-up,
:root button.hover .ico-scroll-up,
:root .ico-scroll-up.hover {
    background-image: url(../images/icon-sprites-vector.svg);
}

@media (min-width: 1025px) {
    .ico-scroll-up-hover,
    a:hover .ico-scroll-up,
    button:hover .ico-scroll-up,
    a.hover .ico-scroll-up,
    button.hover .ico-scroll-up,
    .ico-scroll-up.hover {
        font-size: 26px;
    }
}

@media (min-width: 668px) and (max-width: 1024px) {
    .ico-scroll-up-hover,
    a:hover .ico-scroll-up,
    button:hover .ico-scroll-up,
    a.hover .ico-scroll-up,
    button.hover .ico-scroll-up,
    .ico-scroll-up.hover {
        font-size: 16px;
    }
}

@media (max-width: 667px) {
    .ico-scroll-up-hover,
    a:hover .ico-scroll-up,
    button:hover .ico-scroll-up,
    a.hover .ico-scroll-up,
    button.hover .ico-scroll-up,
    .ico-scroll-up.hover {
        font-size: 16px;
    }
}


/*
== malihu jquery custom scrollbar plugin ==
Plugin URI: http://manos.malihu.gr/jquery-custom-content-scroller
*/


/*
CONTENTS: 
	1. BASIC STYLE - Plugin's basic/essential CSS properties (normally, should not be edited). 
	2. VERTICAL SCROLLBAR - Positioning and dimensions of vertical scrollbar. 
	3. HORIZONTAL SCROLLBAR - Positioning and dimensions of horizontal scrollbar.
	4. VERTICAL AND HORIZONTAL SCROLLBARS - Positioning and dimensions of 2-axis scrollbars. 
	5. TRANSITIONS - CSS3 transitions for hover events, auto-expanded and auto-hidden scrollbars. 
	6. SCROLLBAR COLORS, OPACITY AND BACKGROUNDS 
		6.1 THEMES - Scrollbar colors, opacity, dimensions, backgrounds etc. via ready-to-use themes.
*/


/* 
------------------------------------------------------------------------------------------------------------------------
1. BASIC STYLE  
------------------------------------------------------------------------------------------------------------------------
*/

.mCustomScrollbar {
    -ms-touch-action: pinch-zoom;
    touch-action: pinch-zoom;
    /* direct pointer events to js */
}

    .mCustomScrollbar.mCS_no_scrollbar,
    .mCustomScrollbar.mCS_touch_action {
        -ms-touch-action: auto;
        touch-action: auto;
    }

.mCustomScrollBox {
    /* contains plugin's markup */
    position: relative;
    overflow: hidden;
    height: 100%;
    max-width: 100%;
    outline: none;
    direction: ltr;
}

.mCSB_container {
    /* contains the original content */
    overflow: hidden;
    width: auto;
    height: auto;
}


/* 
------------------------------------------------------------------------------------------------------------------------
2. VERTICAL SCROLLBAR 
y-axis
------------------------------------------------------------------------------------------------------------------------
*/

.mCSB_inside > .mCSB_container {
    margin-right: 30px;
}

.mCSB_container.mCS_no_scrollbar_y.mCS_y_hidden {
    margin-right: 0;
}


/* non-visible scrollbar */

.mCS-dir-rtl > .mCSB_inside > .mCSB_container {
    /* RTL direction/left-side scrollbar */
    margin-right: 0;
    margin-left: 30px;
}

    .mCS-dir-rtl > .mCSB_inside > .mCSB_container.mCS_no_scrollbar_y.mCS_y_hidden {
        margin-left: 0;
    }


/* RTL direction/left-side scrollbar */

.mCSB_scrollTools {
    /* contains scrollbar markup (draggable element, dragger rail, buttons etc.) */
    position: absolute;
    width: 16px;
    height: auto;
    left: auto;
    top: 0;
    right: 0;
    bottom: 0;
}

.mCSB_outside + .mCSB_scrollTools {
    right: -26px;
}


/* scrollbar position: outside */

.mCS-dir-rtl > .mCSB_inside > .mCSB_scrollTools,
.mCS-dir-rtl > .mCSB_outside + .mCSB_scrollTools {
    /* RTL direction/left-side scrollbar */
    right: auto;
    left: 0;
}

.mCS-dir-rtl > .mCSB_outside + .mCSB_scrollTools {
    left: -26px;
}


/* RTL direction/left-side scrollbar (scrollbar position: outside) */

.mCSB_scrollTools .mCSB_draggerContainer {
    /* contains the draggable element and dragger rail markup */
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    height: auto;
}

.mCSB_scrollTools a + .mCSB_draggerContainer {
    margin: 20px 0;
}

.mCSB_scrollTools .mCSB_draggerRail {
    width: 2px;
    height: 100%;
    margin: 0 auto;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    border-radius: 16px;
}

.mCSB_scrollTools .mCSB_dragger {
    /* the draggable element */
    cursor: pointer;
    width: 100%;
    height: 30px;
    /* minimum dragger height */
    z-index: 1;
}

    .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
        /* the dragger element */
        position: relative;
        width: 4px;
        height: 100%;
        margin: 0 auto;
        -webkit-border-radius: 16px;
        -moz-border-radius: 16px;
        border-radius: 16px;
        text-align: center;
    }

.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,
.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar {
    width: 12px;
    /* auto-expanded scrollbar */
}

.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail,
.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
    width: 8px;
    /* auto-expanded scrollbar */
}

.mCSB_scrollTools .mCSB_buttonUp,
.mCSB_scrollTools .mCSB_buttonDown {
    display: block;
    position: absolute;
    height: 20px;
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
    cursor: pointer;
}

.mCSB_scrollTools .mCSB_buttonDown {
    bottom: 0;
}


/* 
------------------------------------------------------------------------------------------------------------------------
3. HORIZONTAL SCROLLBAR 
x-axis
------------------------------------------------------------------------------------------------------------------------
*/

.mCSB_horizontal.mCSB_inside > .mCSB_container {
    margin-right: 0;
    margin-bottom: 30px;
}

.mCSB_horizontal.mCSB_outside > .mCSB_container {
    min-height: 100%;
}

.mCSB_horizontal > .mCSB_container.mCS_no_scrollbar_x.mCS_x_hidden {
    margin-bottom: 0;
}


/* non-visible scrollbar */

.mCSB_scrollTools.mCSB_scrollTools_horizontal {
    width: auto;
    height: 16px;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
}

.mCustomScrollBox + .mCSB_scrollTools.mCSB_scrollTools_horizontal,
.mCustomScrollBox + .mCSB_scrollTools + .mCSB_scrollTools.mCSB_scrollTools_horizontal {
    bottom: -26px;
}


/* scrollbar position: outside */

.mCSB_scrollTools.mCSB_scrollTools_horizontal a + .mCSB_draggerContainer {
    margin: 0 20px;
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_draggerRail {
    width: 100%;
    height: 2px;
    margin: 7px 0;
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_dragger {
    width: 30px;
    /* minimum dragger width */
    height: 100%;
    left: 0;
}

    .mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
        width: 100%;
        height: 4px;
        margin: 6px auto;
    }

.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,
.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar {
    height: 12px;
    /* auto-expanded scrollbar */
    margin: 2px auto;
}

.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail,
.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
    height: 8px;
    /* auto-expanded scrollbar */
    margin: 4px 0;
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonLeft,
.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonRight {
    display: block;
    position: absolute;
    width: 20px;
    height: 100%;
    overflow: hidden;
    margin: 0 auto;
    cursor: pointer;
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonLeft {
    left: 0;
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonRight {
    right: 0;
}


/* 
------------------------------------------------------------------------------------------------------------------------
4. VERTICAL AND HORIZONTAL SCROLLBARS 
yx-axis 
------------------------------------------------------------------------------------------------------------------------
*/

.mCSB_container_wrapper {
    position: absolute;
    height: auto;
    width: auto;
    overflow: hidden;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin-right: 30px;
    margin-bottom: 30px;
}

    .mCSB_container_wrapper > .mCSB_container {
        padding-right: 30px;
        padding-bottom: 30px;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

.mCSB_vertical_horizontal > .mCSB_scrollTools.mCSB_scrollTools_vertical {
    bottom: 20px;
}

.mCSB_vertical_horizontal > .mCSB_scrollTools.mCSB_scrollTools_horizontal {
    right: 20px;
}


/* non-visible horizontal scrollbar */

.mCSB_container_wrapper.mCS_no_scrollbar_x.mCS_x_hidden + .mCSB_scrollTools.mCSB_scrollTools_vertical {
    bottom: 0;
}


/* non-visible vertical scrollbar/RTL direction/left-side scrollbar */

.mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden + .mCSB_scrollTools ~ .mCSB_scrollTools.mCSB_scrollTools_horizontal,
.mCS-dir-rtl > .mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_scrollTools.mCSB_scrollTools_horizontal {
    right: 0;
}


/* RTL direction/left-side scrollbar */

.mCS-dir-rtl > .mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_scrollTools.mCSB_scrollTools_horizontal {
    left: 20px;
}


/* non-visible scrollbar/RTL direction/left-side scrollbar */

.mCS-dir-rtl > .mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden + .mCSB_scrollTools ~ .mCSB_scrollTools.mCSB_scrollTools_horizontal {
    left: 0;
}

.mCS-dir-rtl > .mCSB_inside > .mCSB_container_wrapper {
    /* RTL direction/left-side scrollbar */
    margin-right: 0;
    margin-left: 30px;
}

.mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden > .mCSB_container {
    padding-right: 0;
}

.mCSB_container_wrapper.mCS_no_scrollbar_x.mCS_x_hidden > .mCSB_container {
    padding-bottom: 0;
}

.mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden {
    margin-right: 0;
    /* non-visible scrollbar */
    margin-left: 0;
}


/* non-visible horizontal scrollbar */

.mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_container_wrapper.mCS_no_scrollbar_x.mCS_x_hidden {
    margin-bottom: 0;
}


/* 
------------------------------------------------------------------------------------------------------------------------
5. TRANSITIONS  
------------------------------------------------------------------------------------------------------------------------
*/

.mCSB_scrollTools,
.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCSB_scrollTools .mCSB_buttonUp,
.mCSB_scrollTools .mCSB_buttonDown,
.mCSB_scrollTools .mCSB_buttonLeft,
.mCSB_scrollTools .mCSB_buttonRight {
    -webkit-transition: opacity .2s ease-in-out, background-color .2s ease-in-out;
    -moz-transition: opacity .2s ease-in-out, background-color .2s ease-in-out;
    -o-transition: opacity .2s ease-in-out, background-color .2s ease-in-out;
    transition: opacity .2s ease-in-out, background-color .2s ease-in-out;
}

.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger_bar,
.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerRail,
.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger_bar,
.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerRail {
    -webkit-transition: width .2s ease-out .2s, height .2s ease-out .2s, margin-left .2s ease-out .2s, margin-right .2s ease-out .2s, margin-top .2s ease-out .2s, margin-bottom .2s ease-out .2s, opacity .2s ease-in-out, background-color .2s ease-in-out;
    -moz-transition: width .2s ease-out .2s, height .2s ease-out .2s, margin-left .2s ease-out .2s, margin-right .2s ease-out .2s, margin-top .2s ease-out .2s, margin-bottom .2s ease-out .2s, opacity .2s ease-in-out, background-color .2s ease-in-out;
    -o-transition: width .2s ease-out .2s, height .2s ease-out .2s, margin-left .2s ease-out .2s, margin-right .2s ease-out .2s, margin-top .2s ease-out .2s, margin-bottom .2s ease-out .2s, opacity .2s ease-in-out, background-color .2s ease-in-out;
    transition: width .2s ease-out .2s, height .2s ease-out .2s, margin-left .2s ease-out .2s, margin-right .2s ease-out .2s, margin-top .2s ease-out .2s, margin-bottom .2s ease-out .2s, opacity .2s ease-in-out, background-color .2s ease-in-out;
}


/* 
------------------------------------------------------------------------------------------------------------------------
6. SCROLLBAR COLORS, OPACITY AND BACKGROUNDS  
------------------------------------------------------------------------------------------------------------------------
*/


/* 
	----------------------------------------
	6.1 THEMES 
	----------------------------------------
	*/


/* default theme ("light") */

.mCSB_scrollTools {
    opacity: 0.75;
    filter: "alpha(opacity=75)";
    -ms-filter: "alpha(opacity=75)";
}

.mCS-autoHide > .mCustomScrollBox > .mCSB_scrollTools,
.mCS-autoHide > .mCustomScrollBox ~ .mCSB_scrollTools {
    opacity: 0;
    filter: "alpha(opacity=0)";
    -ms-filter: "alpha(opacity=0)";
}

.mCustomScrollbar > .mCustomScrollBox > .mCSB_scrollTools.mCSB_scrollTools_onDrag,
.mCustomScrollbar > .mCustomScrollBox ~ .mCSB_scrollTools.mCSB_scrollTools_onDrag,
.mCustomScrollBox:hover > .mCSB_scrollTools,
.mCustomScrollBox:hover ~ .mCSB_scrollTools,
.mCS-autoHide:hover > .mCustomScrollBox > .mCSB_scrollTools,
.mCS-autoHide:hover > .mCustomScrollBox ~ .mCSB_scrollTools {
    opacity: 1;
    filter: "alpha(opacity=100)";
    -ms-filter: "alpha(opacity=100)";
}

.mCSB_scrollTools .mCSB_draggerRail {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.4);
    filter: "alpha(opacity=40)";
    -ms-filter: "alpha(opacity=40)";
}

.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: #fff;
    background-color: rgba(255, 255, 255, 0.75);
    filter: "alpha(opacity=75)";
    -ms-filter: "alpha(opacity=75)";
}

.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
    background-color: #fff;
    background-color: rgba(255, 255, 255, 0.85);
    filter: "alpha(opacity=85)";
    -ms-filter: "alpha(opacity=85)";
}

.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
    background-color: #fff;
    background-color: rgba(255, 255, 255, 0.9);
    filter: "alpha(opacity=90)";
    -ms-filter: "alpha(opacity=90)";
}

.mCSB_scrollTools .mCSB_buttonUp,
.mCSB_scrollTools .mCSB_buttonDown,
.mCSB_scrollTools .mCSB_buttonLeft,
.mCSB_scrollTools .mCSB_buttonRight {
    background-image: url(mCSB_buttons.png);
    /* css sprites */
    background-repeat: no-repeat;
    opacity: 0.4;
    filter: "alpha(opacity=40)";
    -ms-filter: "alpha(opacity=40)";
}

.mCSB_scrollTools .mCSB_buttonUp {
    background-position: 0 0;
    /* 
		sprites locations 
		light: 0 0, -16px 0, -32px 0, -48px 0, 0 -72px, -16px -72px, -32px -72px
		dark: -80px 0, -96px 0, -112px 0, -128px 0, -80px -72px, -96px -72px, -112px -72px
		*/
}

.mCSB_scrollTools .mCSB_buttonDown {
    background-position: 0 -20px;
    /* 
		sprites locations
		light: 0 -20px, -16px -20px, -32px -20px, -48px -20px, 0 -92px, -16px -92px, -32px -92px
		dark: -80px -20px, -96px -20px, -112px -20px, -128px -20px, -80px -92px, -96px -92px, -112 -92px
		*/
}

.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: 0 -40px;
    /* 
		sprites locations 
		light: 0 -40px, -20px -40px, -40px -40px, -60px -40px, 0 -112px, -20px -112px, -40px -112px
		dark: -80px -40px, -100px -40px, -120px -40px, -140px -40px, -80px -112px, -100px -112px, -120px -112px
		*/
}

.mCSB_scrollTools .mCSB_buttonRight {
    background-position: 0 -56px;
    /* 
		sprites locations 
		light: 0 -56px, -20px -56px, -40px -56px, -60px -56px, 0 -128px, -20px -128px, -40px -128px
		dark: -80px -56px, -100px -56px, -120px -56px, -140px -56px, -80px -128px, -100px -128px, -120px -128px
		*/
}

    .mCSB_scrollTools .mCSB_buttonUp:hover,
    .mCSB_scrollTools .mCSB_buttonDown:hover,
    .mCSB_scrollTools .mCSB_buttonLeft:hover,
    .mCSB_scrollTools .mCSB_buttonRight:hover {
        opacity: 0.75;
        filter: "alpha(opacity=75)";
        -ms-filter: "alpha(opacity=75)";
    }

    .mCSB_scrollTools .mCSB_buttonUp:active,
    .mCSB_scrollTools .mCSB_buttonDown:active,
    .mCSB_scrollTools .mCSB_buttonLeft:active,
    .mCSB_scrollTools .mCSB_buttonRight:active {
        opacity: 0.9;
        filter: "alpha(opacity=90)";
        -ms-filter: "alpha(opacity=90)";
    }


/* theme: "dark" */

.mCS-dark.mCSB_scrollTools .mCSB_draggerRail {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.15);
}

.mCS-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.75);
}

.mCS-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
    background-color: rgba(0, 0, 0, 0.85);
}

.mCS-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
    background-color: rgba(0, 0, 0, 0.9);
}

.mCS-dark.mCSB_scrollTools .mCSB_buttonUp {
    background-position: -80px 0;
}

.mCS-dark.mCSB_scrollTools .mCSB_buttonDown {
    background-position: -80px -20px;
}

.mCS-dark.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -80px -40px;
}

.mCS-dark.mCSB_scrollTools .mCSB_buttonRight {
    background-position: -80px -56px;
}


/* ---------------------------------------- */


/* theme: "light-2", "dark-2" */

.mCS-light-2.mCSB_scrollTools .mCSB_draggerRail,
.mCS-dark-2.mCSB_scrollTools .mCSB_draggerRail {
    width: 4px;
    background-color: #fff;
    background-color: rgba(255, 255, 255, 0.1);
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    border-radius: 1px;
}

.mCS-light-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-dark-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    width: 4px;
    background-color: #fff;
    background-color: rgba(255, 255, 255, 0.75);
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    border-radius: 1px;
}

.mCS-light-2.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-dark-2.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-light-2.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-dark-2.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
    width: 100%;
    height: 4px;
    margin: 6px auto;
}

.mCS-light-2.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
    background-color: #fff;
    background-color: rgba(255, 255, 255, 0.85);
}

.mCS-light-2.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-light-2.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
    background-color: #fff;
    background-color: rgba(255, 255, 255, 0.9);
}

.mCS-light-2.mCSB_scrollTools .mCSB_buttonUp {
    background-position: -32px 0;
}

.mCS-light-2.mCSB_scrollTools .mCSB_buttonDown {
    background-position: -32px -20px;
}

.mCS-light-2.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -40px -40px;
}

.mCS-light-2.mCSB_scrollTools .mCSB_buttonRight {
    background-position: -40px -56px;
}


/* theme: "dark-2" */

.mCS-dark-2.mCSB_scrollTools .mCSB_draggerRail {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.1);
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    border-radius: 1px;
}

.mCS-dark-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.75);
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    border-radius: 1px;
}

.mCS-dark-2.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.85);
}

.mCS-dark-2.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-dark-2.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.9);
}

.mCS-dark-2.mCSB_scrollTools .mCSB_buttonUp {
    background-position: -112px 0;
}

.mCS-dark-2.mCSB_scrollTools .mCSB_buttonDown {
    background-position: -112px -20px;
}

.mCS-dark-2.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -120px -40px;
}

.mCS-dark-2.mCSB_scrollTools .mCSB_buttonRight {
    background-position: -120px -56px;
}


/* ---------------------------------------- */


/* theme: "light-thick", "dark-thick" */

.mCS-light-thick.mCSB_scrollTools .mCSB_draggerRail,
.mCS-dark-thick.mCSB_scrollTools .mCSB_draggerRail {
    width: 4px;
    background-color: #fff;
    background-color: rgba(255, 255, 255, 0.1);
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}

.mCS-light-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    width: 6px;
    background-color: #fff;
    background-color: rgba(255, 255, 255, 0.75);
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}

.mCS-light-thick.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-dark-thick.mCSB_scrollTools_horizontal .mCSB_draggerRail {
    width: 100%;
    height: 4px;
    margin: 6px 0;
}

.mCS-light-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-dark-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
    width: 100%;
    height: 6px;
    margin: 5px auto;
}

.mCS-light-thick.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
    background-color: #fff;
    background-color: rgba(255, 255, 255, 0.85);
}

.mCS-light-thick.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-light-thick.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
    background-color: #fff;
    background-color: rgba(255, 255, 255, 0.9);
}

.mCS-light-thick.mCSB_scrollTools .mCSB_buttonUp {
    background-position: -16px 0;
}

.mCS-light-thick.mCSB_scrollTools .mCSB_buttonDown {
    background-position: -16px -20px;
}

.mCS-light-thick.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -20px -40px;
}

.mCS-light-thick.mCSB_scrollTools .mCSB_buttonRight {
    background-position: -20px -56px;
}


/* theme: "dark-thick" */

.mCS-dark-thick.mCSB_scrollTools .mCSB_draggerRail {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.1);
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}

.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.75);
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}

.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.85);
}

.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.9);
}

.mCS-dark-thick.mCSB_scrollTools .mCSB_buttonUp {
    background-position: -96px 0;
}

.mCS-dark-thick.mCSB_scrollTools .mCSB_buttonDown {
    background-position: -96px -20px;
}

.mCS-dark-thick.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -100px -40px;
}

.mCS-dark-thick.mCSB_scrollTools .mCSB_buttonRight {
    background-position: -100px -56px;
}


/* ---------------------------------------- */


/* theme: "light-thin", "dark-thin" */

.mCS-light-thin.mCSB_scrollTools .mCSB_draggerRail {
    background-color: #fff;
    background-color: rgba(255, 255, 255, 0.1);
}

.mCS-light-thin.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    width: 2px;
}

.mCS-light-thin.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-dark-thin.mCSB_scrollTools_horizontal .mCSB_draggerRail {
    width: 100%;
}

.mCS-light-thin.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-dark-thin.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
    width: 100%;
    height: 2px;
    margin: 7px auto;
}


/* theme "dark-thin" */

.mCS-dark-thin.mCSB_scrollTools .mCSB_draggerRail {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.15);
}

.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.75);
}

.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.85);
}

.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.9);
}

.mCS-dark-thin.mCSB_scrollTools .mCSB_buttonUp {
    background-position: -80px 0;
}

.mCS-dark-thin.mCSB_scrollTools .mCSB_buttonDown {
    background-position: -80px -20px;
}

.mCS-dark-thin.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -80px -40px;
}

.mCS-dark-thin.mCSB_scrollTools .mCSB_buttonRight {
    background-position: -80px -56px;
}


/* ---------------------------------------- */


/* theme "rounded", "rounded-dark", "rounded-dots", "rounded-dots-dark" */

.mCS-rounded.mCSB_scrollTools .mCSB_draggerRail {
    background-color: #fff;
    background-color: rgba(255, 255, 255, 0.15);
}

.mCS-rounded.mCSB_scrollTools .mCSB_dragger,
.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger,
.mCS-rounded-dots.mCSB_scrollTools .mCSB_dragger,
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger {
    height: 14px;
}

    .mCS-rounded.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
    .mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
    .mCS-rounded-dots.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
    .mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
        width: 14px;
        margin: 0 1px;
    }

.mCS-rounded.mCSB_scrollTools_horizontal .mCSB_dragger,
.mCS-rounded-dark.mCSB_scrollTools_horizontal .mCSB_dragger,
.mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_dragger,
.mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_dragger {
    width: 14px;
}

    .mCS-rounded.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
    .mCS-rounded-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
    .mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
    .mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
        height: 14px;
        margin: 1px 0;
    }

.mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,
.mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar,
.mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,
.mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar {
    width: 16px;
    /* auto-expanded scrollbar */
    height: 16px;
    margin: -1px 0;
}

.mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail,
.mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail,
.mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail,
.mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
    width: 4px;
    /* auto-expanded scrollbar */
}

.mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,
.mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar,
.mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,
.mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar {
    height: 16px;
    /* auto-expanded scrollbar */
    width: 16px;
    margin: 0 -1px;
}

.mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail,
.mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail,
.mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail,
.mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
    height: 4px;
    /* auto-expanded scrollbar */
    margin: 6px 0;
}

.mCS-rounded.mCSB_scrollTools .mCSB_buttonUp {
    background-position: 0 -72px;
}

.mCS-rounded.mCSB_scrollTools .mCSB_buttonDown {
    background-position: 0 -92px;
}

.mCS-rounded.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: 0 -112px;
}

.mCS-rounded.mCSB_scrollTools .mCSB_buttonRight {
    background-position: 0 -128px;
}


/* theme "rounded-dark", "rounded-dots-dark" */

.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.75);
}

.mCS-rounded-dark.mCSB_scrollTools .mCSB_draggerRail {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.15);
}

.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.85);
}

.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.9);
}

.mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonUp {
    background-position: -80px -72px;
}

.mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonDown {
    background-position: -80px -92px;
}

.mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -80px -112px;
}

.mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonRight {
    background-position: -80px -128px;
}


/* theme "rounded-dots", "rounded-dots-dark" */

.mCS-rounded-dots.mCSB_scrollTools_vertical .mCSB_draggerRail,
.mCS-rounded-dots-dark.mCSB_scrollTools_vertical .mCSB_draggerRail {
    width: 4px;
}

.mCS-rounded-dots.mCSB_scrollTools .mCSB_draggerRail,
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_draggerRail,
.mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail {
    background-color: transparent;
    background-position: center;
}

.mCS-rounded-dots.mCSB_scrollTools .mCSB_draggerRail,
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_draggerRail {
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAANElEQVQYV2NkIAAYiVbw//9/Y6DiM1ANJoyMjGdBbLgJQAX/kU0DKgDLkaQAvxW4HEvQFwCRcxIJK1XznAAAAABJRU5ErkJggg==");
    background-repeat: repeat-y;
    opacity: 0.3;
    filter: "alpha(opacity=30)";
    -ms-filter: "alpha(opacity=30)";
}

.mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail {
    height: 4px;
    margin: 6px 0;
    background-repeat: repeat-x;
}

.mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonUp {
    background-position: -16px -72px;
}

.mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonDown {
    background-position: -16px -92px;
}

.mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -20px -112px;
}

.mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonRight {
    background-position: -20px -128px;
}


/* theme "rounded-dots-dark" */

.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_draggerRail {
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAALElEQVQYV2NkIAAYSVFgDFR8BqrBBEifBbGRTfiPZhpYjiQFBK3A6l6CvgAAE9kGCd1mvgEAAAAASUVORK5CYII=");
}

.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonUp {
    background-position: -96px -72px;
}

.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonDown {
    background-position: -96px -92px;
}

.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -100px -112px;
}

.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonRight {
    background-position: -100px -128px;
}


/* ---------------------------------------- */


/* theme "3d", "3d-dark", "3d-thick", "3d-thick-dark" */

.mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-repeat: repeat-y;
    background-image: -moz-linear-gradient(left, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
    background-image: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(255, 255, 255, 0.5)), color-stop(100%, rgba(255, 255, 255, 0)));
    background-image: -webkit-linear-gradient(left, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
    background-image: -o-linear-gradient(left, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
    background-image: -ms-linear-gradient(left, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
}

.mCS-3d.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
    background-repeat: repeat-x;
    background-image: -moz-linear-gradient(top, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255, 255, 255, 0.5)), color-stop(100%, rgba(255, 255, 255, 0)));
    background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
    background-image: -o-linear-gradient(top, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
    background-image: -ms-linear-gradient(top, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
}


/* theme "3d", "3d-dark" */

.mCS-3d.mCSB_scrollTools_vertical .mCSB_dragger,
.mCS-3d-dark.mCSB_scrollTools_vertical .mCSB_dragger {
    height: 70px;
}

.mCS-3d.mCSB_scrollTools_horizontal .mCSB_dragger,
.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_dragger {
    width: 70px;
}

.mCS-3d.mCSB_scrollTools,
.mCS-3d-dark.mCSB_scrollTools {
    opacity: 1;
    filter: "alpha(opacity=30)";
    -ms-filter: "alpha(opacity=30)";
}

    .mCS-3d.mCSB_scrollTools .mCSB_draggerRail,
    .mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
    .mCS-3d-dark.mCSB_scrollTools .mCSB_draggerRail,
    .mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
        -webkit-border-radius: 16px;
        -moz-border-radius: 16px;
        border-radius: 16px;
    }

    .mCS-3d.mCSB_scrollTools .mCSB_draggerRail,
    .mCS-3d-dark.mCSB_scrollTools .mCSB_draggerRail {
        width: 8px;
        background-color: #000;
        background-color: rgba(0, 0, 0, 0.2);
        box-shadow: inset 1px 0 1px rgba(0, 0, 0, 0.5), inset -1px 0 1px rgba(255, 255, 255, 0.2);
    }

    .mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
    .mCS-3d.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,
    .mCS-3d.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
    .mCS-3d.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,
    .mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
    .mCS-3d-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,
    .mCS-3d-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
    .mCS-3d-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
        background-color: #555;
    }

    .mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
    .mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
        width: 8px;
    }

.mCS-3d.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail {
    width: 100%;
    height: 8px;
    margin: 4px 0;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.5), inset 0 -1px 1px rgba(255, 255, 255, 0.2);
}

.mCS-3d.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
    width: 100%;
    height: 8px;
    margin: 4px auto;
}

.mCS-3d.mCSB_scrollTools .mCSB_buttonUp {
    background-position: -32px -72px;
}

.mCS-3d.mCSB_scrollTools .mCSB_buttonDown {
    background-position: -32px -92px;
}

.mCS-3d.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -40px -112px;
}

.mCS-3d.mCSB_scrollTools .mCSB_buttonRight {
    background-position: -40px -128px;
}


/* theme "3d-dark" */

.mCS-3d-dark.mCSB_scrollTools .mCSB_draggerRail {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.1);
    box-shadow: inset 1px 0 1px rgba(0, 0, 0, 0.1);
}

.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail {
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
}

.mCS-3d-dark.mCSB_scrollTools .mCSB_buttonUp {
    background-position: -112px -72px;
}

.mCS-3d-dark.mCSB_scrollTools .mCSB_buttonDown {
    background-position: -112px -92px;
}

.mCS-3d-dark.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -120px -112px;
}

.mCS-3d-dark.mCSB_scrollTools .mCSB_buttonRight {
    background-position: -120px -128px;
}


/* ---------------------------------------- */


/* theme: "3d-thick", "3d-thick-dark" */

.mCS-3d-thick.mCSB_scrollTools,
.mCS-3d-thick-dark.mCSB_scrollTools {
    opacity: 1;
    filter: "alpha(opacity=30)";
    -ms-filter: "alpha(opacity=30)";
}

    .mCS-3d-thick.mCSB_scrollTools,
    .mCS-3d-thick-dark.mCSB_scrollTools,
    .mCS-3d-thick.mCSB_scrollTools .mCSB_draggerContainer,
    .mCS-3d-thick-dark.mCSB_scrollTools .mCSB_draggerContainer {
        -webkit-border-radius: 7px;
        -moz-border-radius: 7px;
        border-radius: 7px;
    }

        .mCS-3d-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
        .mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
            -webkit-border-radius: 5px;
            -moz-border-radius: 5px;
            border-radius: 5px;
        }

.mCSB_inside + .mCS-3d-thick.mCSB_scrollTools_vertical,
.mCSB_inside + .mCS-3d-thick-dark.mCSB_scrollTools_vertical {
    right: 1px;
}

.mCS-3d-thick.mCSB_scrollTools_vertical,
.mCS-3d-thick-dark.mCSB_scrollTools_vertical {
    box-shadow: inset 1px 0 1px rgba(0, 0, 0, 0.1), inset 0 0 14px rgba(0, 0, 0, 0.5);
}

.mCS-3d-thick.mCSB_scrollTools_horizontal,
.mCS-3d-thick-dark.mCSB_scrollTools_horizontal {
    bottom: 1px;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1), inset 0 0 14px rgba(0, 0, 0, 0.5);
}

.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.4);
    width: 12px;
    margin: 2px;
    position: absolute;
    height: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.mCS-3d-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,
.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
    background-color: #555;
}

.mCS-3d-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
    height: 12px;
    width: auto;
}

.mCS-3d-thick.mCSB_scrollTools .mCSB_draggerContainer {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.05);
    box-shadow: inset 1px 1px 16px rgba(0, 0, 0, 0.1);
}

.mCS-3d-thick.mCSB_scrollTools .mCSB_draggerRail {
    background-color: transparent;
}

.mCS-3d-thick.mCSB_scrollTools .mCSB_buttonUp {
    background-position: -32px -72px;
}

.mCS-3d-thick.mCSB_scrollTools .mCSB_buttonDown {
    background-position: -32px -92px;
}

.mCS-3d-thick.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -40px -112px;
}

.mCS-3d-thick.mCSB_scrollTools .mCSB_buttonRight {
    background-position: -40px -128px;
}


/* theme: "3d-thick-dark" */

.mCS-3d-thick-dark.mCSB_scrollTools {
    box-shadow: inset 0 0 14px rgba(0, 0, 0, 0.2);
}

.mCS-3d-thick-dark.mCSB_scrollTools_horizontal {
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1), inset 0 0 14px rgba(0, 0, 0, 0.2);
}

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.4), inset -1px 0 0 rgba(0, 0, 0, 0.2);
}

.mCS-3d-thick-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
    background-color: #777;
}

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_draggerContainer {
    background-color: #fff;
    background-color: rgba(0, 0, 0, 0.05);
    box-shadow: inset 1px 1px 16px rgba(0, 0, 0, 0.1);
}

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_draggerRail {
    background-color: transparent;
}

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonUp {
    background-position: -112px -72px;
}

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonDown {
    background-position: -112px -92px;
}

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -120px -112px;
}

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonRight {
    background-position: -120px -128px;
}


/* ---------------------------------------- */


/* theme: "minimal", "minimal-dark" */

.mCSB_outside + .mCS-minimal.mCSB_scrollTools_vertical,
.mCSB_outside + .mCS-minimal-dark.mCSB_scrollTools_vertical {
    right: 0;
    margin: 12px 0;
}

.mCustomScrollBox.mCS-minimal + .mCSB_scrollTools.mCSB_scrollTools_horizontal,
.mCustomScrollBox.mCS-minimal + .mCSB_scrollTools + .mCSB_scrollTools.mCSB_scrollTools_horizontal,
.mCustomScrollBox.mCS-minimal-dark + .mCSB_scrollTools.mCSB_scrollTools_horizontal,
.mCustomScrollBox.mCS-minimal-dark + .mCSB_scrollTools + .mCSB_scrollTools.mCSB_scrollTools_horizontal {
    bottom: 0;
    margin: 0 12px;
}


/* RTL direction/left-side scrollbar */

.mCS-dir-rtl > .mCSB_outside + .mCS-minimal.mCSB_scrollTools_vertical,
.mCS-dir-rtl > .mCSB_outside + .mCS-minimal-dark.mCSB_scrollTools_vertical {
    left: 0;
    right: auto;
}

.mCS-minimal.mCSB_scrollTools .mCSB_draggerRail,
.mCS-minimal-dark.mCSB_scrollTools .mCSB_draggerRail {
    background-color: transparent;
}

.mCS-minimal.mCSB_scrollTools_vertical .mCSB_dragger,
.mCS-minimal-dark.mCSB_scrollTools_vertical .mCSB_dragger {
    height: 50px;
}

.mCS-minimal.mCSB_scrollTools_horizontal .mCSB_dragger,
.mCS-minimal-dark.mCSB_scrollTools_horizontal .mCSB_dragger {
    width: 50px;
}

.mCS-minimal.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: #fff;
    background-color: rgba(255, 255, 255, 0.2);
    filter: "alpha(opacity=20)";
    -ms-filter: "alpha(opacity=20)";
}

.mCS-minimal.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-minimal.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
    background-color: #fff;
    background-color: rgba(255, 255, 255, 0.5);
    filter: "alpha(opacity=50)";
    -ms-filter: "alpha(opacity=50)";
}


/* theme: "minimal-dark" */

.mCS-minimal-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.2);
    filter: "alpha(opacity=20)";
    -ms-filter: "alpha(opacity=20)";
}

.mCS-minimal-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-minimal-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.5);
    filter: "alpha(opacity=50)";
    -ms-filter: "alpha(opacity=50)";
}


/* ---------------------------------------- */


/* theme "light-3", "dark-3" */

.mCS-light-3.mCSB_scrollTools .mCSB_draggerRail,
.mCS-dark-3.mCSB_scrollTools .mCSB_draggerRail {
    width: 6px;
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.2);
}

.mCS-light-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-dark-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    width: 6px;
}

.mCS-light-3.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-dark-3.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-light-3.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-dark-3.mCSB_scrollTools_horizontal .mCSB_draggerRail {
    width: 100%;
    height: 6px;
    margin: 5px 0;
}

.mCS-light-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail,
.mCS-light-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail,
.mCS-dark-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail,
.mCS-dark-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
    width: 12px;
}

.mCS-light-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail,
.mCS-light-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail,
.mCS-dark-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail,
.mCS-dark-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
    height: 12px;
    margin: 2px 0;
}

.mCS-light-3.mCSB_scrollTools .mCSB_buttonUp {
    background-position: -32px -72px;
}

.mCS-light-3.mCSB_scrollTools .mCSB_buttonDown {
    background-position: -32px -92px;
}

.mCS-light-3.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -40px -112px;
}

.mCS-light-3.mCSB_scrollTools .mCSB_buttonRight {
    background-position: -40px -128px;
}


/* theme "dark-3" */

.mCS-dark-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.75);
}

.mCS-dark-3.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.85);
}

.mCS-dark-3.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-dark-3.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.9);
}

.mCS-dark-3.mCSB_scrollTools .mCSB_draggerRail {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.1);
}

.mCS-dark-3.mCSB_scrollTools .mCSB_buttonUp {
    background-position: -112px -72px;
}

.mCS-dark-3.mCSB_scrollTools .mCSB_buttonDown {
    background-position: -112px -92px;
}

.mCS-dark-3.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -120px -112px;
}

.mCS-dark-3.mCSB_scrollTools .mCSB_buttonRight {
    background-position: -120px -128px;
}


/* ---------------------------------------- */


/* theme "inset", "inset-dark", "inset-2", "inset-2-dark", "inset-3", "inset-3-dark" */

.mCS-inset.mCSB_scrollTools .mCSB_draggerRail,
.mCS-inset-dark.mCSB_scrollTools .mCSB_draggerRail,
.mCS-inset-2.mCSB_scrollTools .mCSB_draggerRail,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail,
.mCS-inset-3.mCSB_scrollTools .mCSB_draggerRail,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_draggerRail {
    width: 12px;
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.2);
}

.mCS-inset.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    width: 6px;
    margin: 3px 5px;
    position: absolute;
    height: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.mCS-inset.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-2.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-2-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-3.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-3-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
    height: 6px;
    margin: 5px 3px;
    position: absolute;
    width: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.mCS-inset.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-inset-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-inset-2.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-inset-2-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-inset-3.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-inset-3-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail {
    width: 100%;
    height: 12px;
    margin: 2px 0;
}

.mCS-inset.mCSB_scrollTools .mCSB_buttonUp,
.mCS-inset-2.mCSB_scrollTools .mCSB_buttonUp,
.mCS-inset-3.mCSB_scrollTools .mCSB_buttonUp {
    background-position: -32px -72px;
}

.mCS-inset.mCSB_scrollTools .mCSB_buttonDown,
.mCS-inset-2.mCSB_scrollTools .mCSB_buttonDown,
.mCS-inset-3.mCSB_scrollTools .mCSB_buttonDown {
    background-position: -32px -92px;
}

.mCS-inset.mCSB_scrollTools .mCSB_buttonLeft,
.mCS-inset-2.mCSB_scrollTools .mCSB_buttonLeft,
.mCS-inset-3.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -40px -112px;
}

.mCS-inset.mCSB_scrollTools .mCSB_buttonRight,
.mCS-inset-2.mCSB_scrollTools .mCSB_buttonRight,
.mCS-inset-3.mCSB_scrollTools .mCSB_buttonRight {
    background-position: -40px -128px;
}


/* theme "inset-dark", "inset-2-dark", "inset-3-dark" */

.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.75);
}

.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.85);
}

.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.9);
}

.mCS-inset-dark.mCSB_scrollTools .mCSB_draggerRail,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_draggerRail {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.1);
}

.mCS-inset-dark.mCSB_scrollTools .mCSB_buttonUp,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonUp,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonUp {
    background-position: -112px -72px;
}

.mCS-inset-dark.mCSB_scrollTools .mCSB_buttonDown,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonDown,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonDown {
    background-position: -112px -92px;
}

.mCS-inset-dark.mCSB_scrollTools .mCSB_buttonLeft,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonLeft,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -120px -112px;
}

.mCS-inset-dark.mCSB_scrollTools .mCSB_buttonRight,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonRight,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonRight {
    background-position: -120px -128px;
}


/* theme "inset-2", "inset-2-dark" */

.mCS-inset-2.mCSB_scrollTools .mCSB_draggerRail,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail {
    background-color: transparent;
    border-width: 1px;
    border-style: solid;
    border-color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail {
    border-color: #000;
    border-color: rgba(0, 0, 0, 0.2);
}


/* theme "inset-3", "inset-3-dark" */

.mCS-inset-3.mCSB_scrollTools .mCSB_draggerRail {
    background-color: #fff;
    background-color: rgba(255, 255, 255, 0.6);
}

.mCS-inset-3-dark.mCSB_scrollTools .mCSB_draggerRail {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.6);
}

.mCS-inset-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.75);
}

.mCS-inset-3.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.85);
}

.mCS-inset-3.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-inset-3.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.9);
}

.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: #fff;
    background-color: rgba(255, 255, 255, 0.75);
}

.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
    background-color: #fff;
    background-color: rgba(255, 255, 255, 0.85);
}

.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
    background-color: #fff;
    background-color: rgba(255, 255, 255, 0.9);
}


/* ---------------------------------------- */


/* Slick Slider base styles */

.slick-slider {
    position: relative;
    display: block;
    -webkit-touch-callout: none;
    -moz-user-select: -moz-none;
    -ms-user-select: none;
    -webkit-user-select: none;
    user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    overflow: hidden;
    display: block;
    margin: 0;
    padding: 0;
}

    .slick-list:focus {
        outline: none;
    }

    .slick-list.dragging {
        cursor: pointer;
        cursor: hand;
    }

.slick-slider .slick-track,
.slick-slider .slick-list {
    -moz-transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    left: 0;
    top: 0;
    display: block;
}

    .slick-track:before,
    .slick-track:after {
        content: "";
        display: table;
    }

    .slick-track:after {
        clear: both;
    }

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    float: left;
    height: 100%;
    min-height: 1px;
    display: none;
}

[dir="rtl"] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}


/**
 * Swiper 4.4.2
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://www.idangero.us/swiper/
 *
 * Copyright 2014-2018 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: November 1, 2018
 */

.swiper-container {
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    /* Fix of Webkit flickering */
    z-index: 1;
}

.swiper-container-no-flexbox .swiper-slide {
    float: left;
}

.swiper-container-vertical > .swiper-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    -o-transition-property: transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
    -webkit-transform: translate3d(0px, 0, 0);
    transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.swiper-container-free-mode > .swiper-wrapper {
    -webkit-transition-timing-function: ease-out;
    -o-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    margin: 0 auto;
}

.swiper-slide {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    -o-transition-property: transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
}

.swiper-slide-invisible-blank {
    visibility: hidden;
}


/* Auto Height */

.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
    height: auto;
}

    .swiper-container-autoheight .swiper-wrapper {
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-transition-property: height, -webkit-transform;
        transition-property: height, -webkit-transform;
        -o-transition-property: transform, height;
        transition-property: transform, height;
        transition-property: transform, height, -webkit-transform;
    }


/* 3D Effects */

.swiper-container-3d {
    -webkit-perspective: 1200px;
    perspective: 1200px;
}

    .swiper-container-3d .swiper-wrapper,
    .swiper-container-3d .swiper-slide,
    .swiper-container-3d .swiper-slide-shadow-left,
    .swiper-container-3d .swiper-slide-shadow-right,
    .swiper-container-3d .swiper-slide-shadow-top,
    .swiper-container-3d .swiper-slide-shadow-bottom,
    .swiper-container-3d .swiper-cube-shadow {
        -webkit-transform-style: preserve-3d;
        transform-style: preserve-3d;
    }

    .swiper-container-3d .swiper-slide-shadow-left,
    .swiper-container-3d .swiper-slide-shadow-right,
    .swiper-container-3d .swiper-slide-shadow-top,
    .swiper-container-3d .swiper-slide-shadow-bottom {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        z-index: 10;
    }

    .swiper-container-3d .swiper-slide-shadow-left {
        background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(transparent));
        background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), transparent);
        background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), transparent);
        background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), transparent);
    }

    .swiper-container-3d .swiper-slide-shadow-right {
        background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(transparent));
        background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), transparent);
        background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), transparent);
        background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), transparent);
    }

    .swiper-container-3d .swiper-slide-shadow-top {
        background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(transparent));
        background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), transparent);
        background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), transparent);
        background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
    }

    .swiper-container-3d .swiper-slide-shadow-bottom {
        background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(transparent));
        background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), transparent);
        background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), transparent);
        background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent);
    }


/* IE10 Windows Phone 8 Fixes */

.swiper-container-wp8-horizontal,
.swiper-container-wp8-horizontal > .swiper-wrapper {
    -ms-touch-action: pan-y;
    touch-action: pan-y;
}

.swiper-container-wp8-vertical,
.swiper-container-wp8-vertical > .swiper-wrapper {
    -ms-touch-action: pan-x;
    touch-action: pan-x;
}

.swiper-button-prev,
.swiper-button-next {
    position: absolute;
    top: 50%;
    width: 27px;
    height: 44px;
    margin-top: -22px;
    z-index: 10;
    cursor: pointer;
    background-size: 27px 44px;
    background-position: center;
    background-repeat: no-repeat;
}

    .swiper-button-prev.swiper-button-disabled,
    .swiper-button-next.swiper-button-disabled {
        opacity: 0.35;
        cursor: auto;
        pointer-events: none;
    }

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
    left: 10px;
    right: auto;
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
    right: 10px;
    left: auto;
}

.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-lock {
    display: none;
}

.swiper-pagination {
    position: absolute;
    text-align: center;
    -webkit-transition: 300ms opacity;
    -o-transition: 300ms opacity;
    transition: 300ms opacity;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    z-index: 10;
}

    .swiper-pagination.swiper-pagination-hidden {
        opacity: 0;
    }


/* Common Styles */

.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
    bottom: 10px;
    left: 0;
    width: 100%;
}


/* Bullets */

.swiper-pagination-bullets-dynamic {
    overflow: hidden;
    font-size: 0;
}

    .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
        -webkit-transform: scale(0.33);
        -ms-transform: scale(0.33);
        transform: scale(0.33);
        position: relative;
    }

    .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }

    .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }

    .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
        -webkit-transform: scale(0.66);
        -ms-transform: scale(0.66);
        transform: scale(0.66);
    }

    .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
        -webkit-transform: scale(0.33);
        -ms-transform: scale(0.33);
        transform: scale(0.33);
    }

    .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
        -webkit-transform: scale(0.66);
        -ms-transform: scale(0.66);
        transform: scale(0.66);
    }

    .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
        -webkit-transform: scale(0.33);
        -ms-transform: scale(0.33);
        transform: scale(0.33);
    }

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 100%;
    background: #000;
    opacity: 0.2;
}

button.swiper-pagination-bullet {
    border: none;
    margin: 0;
    padding: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #007aff;
}

.swiper-container-vertical > .swiper-pagination-bullets {
    right: 10px;
    top: 50%;
    -webkit-transform: translate3d(0px, -50%, 0);
    transform: translate3d(0px, -50%, 0);
}

    .swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
        margin: 6px 0;
        display: block;
    }

    .swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        width: 8px;
    }

        .swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
            display: inline-block;
            -webkit-transition: 200ms top, 200ms -webkit-transform;
            transition: 200ms top, 200ms -webkit-transform;
            -o-transition: 200ms transform, 200ms top;
            transition: 200ms transform, 200ms top;
            transition: 200ms transform, 200ms top, 200ms -webkit-transform;
        }

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 4px;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    white-space: nowrap;
}

    .swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
        -webkit-transition: 200ms left, 200ms -webkit-transform;
        transition: 200ms left, 200ms -webkit-transform;
        -o-transition: 200ms transform, 200ms left;
        transition: 200ms transform, 200ms left;
        transition: 200ms transform, 200ms left, 200ms -webkit-transform;
    }

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    -webkit-transition: 200ms right, 200ms -webkit-transform;
    transition: 200ms right, 200ms -webkit-transform;
    -o-transition: 200ms transform, 200ms right;
    transition: 200ms transform, 200ms right;
    transition: 200ms transform, 200ms right, 200ms -webkit-transform;
}


/* Progress */

.swiper-pagination-progressbar {
    background: rgba(0, 0, 0, 0.25);
    position: absolute;
}

    .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
        background: #007aff;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        -webkit-transform: scale(0);
        -ms-transform: scale(0);
        transform: scale(0);
        -webkit-transform-origin: left top;
        -ms-transform-origin: left top;
        transform-origin: left top;
    }

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    -webkit-transform-origin: right top;
    -ms-transform-origin: right top;
    transform-origin: right top;
}

.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
    width: 100%;
    height: 4px;
    left: 0;
    top: 0;
}

    .swiper-container-vertical > .swiper-pagination-progressbar,
    .swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
        width: 4px;
        height: 100%;
        left: 0;
        top: 0;
    }

.swiper-pagination-white .swiper-pagination-bullet-active {
    background: #ffffff;
}

.swiper-pagination-progressbar.swiper-pagination-white {
    background: rgba(255, 255, 255, 0.25);
}

    .swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
        background: #ffffff;
    }

.swiper-pagination-black .swiper-pagination-bullet-active {
    background: #000000;
}

.swiper-pagination-progressbar.swiper-pagination-black {
    background: rgba(0, 0, 0, 0.25);
}

    .swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
        background: #000000;
    }

.swiper-pagination-lock {
    display: none;
}


/* Scrollbar */

.swiper-scrollbar {
    border-radius: 10px;
    position: relative;
    -ms-touch-action: none;
    background: rgba(0, 0, 0, 0.1);
}

.swiper-container-horizontal > .swiper-scrollbar {
    position: absolute;
    left: 1%;
    bottom: 3px;
    z-index: 50;
    height: 5px;
    width: 98%;
}

.swiper-container-vertical > .swiper-scrollbar {
    position: absolute;
    right: 3px;
    top: 1%;
    z-index: 50;
    width: 5px;
    height: 98%;
}

.swiper-scrollbar-drag {
    height: 100%;
    width: 100%;
    position: relative;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    left: 0;
    top: 0;
}

.swiper-scrollbar-cursor-drag {
    cursor: move;
}

.swiper-scrollbar-lock {
    display: none;
}

.swiper-zoom-container {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
}

    .swiper-zoom-container > img,
    .swiper-zoom-container > svg,
    .swiper-zoom-container > canvas {
        max-width: 100%;
        max-height: 100%;
        -o-object-fit: contain;
        object-fit: contain;
    }

.swiper-slide-zoomed {
    cursor: move;
}


/* Preloader */

.swiper-lazy-preloader {
    width: 42px;
    height: 42px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -21px;
    margin-top: -21px;
    z-index: 10;
    -webkit-transform-origin: 50%;
    -ms-transform-origin: 50%;
    transform-origin: 50%;
    -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
    animation: swiper-preloader-spin 1s steps(12, end) infinite;
}

    .swiper-lazy-preloader:after {
        display: block;
        content: '';
        width: 100%;
        height: 100%;
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
        background-position: 50%;
        background-size: 100%;
        background-repeat: no-repeat;
    }

.swiper-lazy-preloader-white:after {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}

@-webkit-keyframes swiper-preloader-spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes swiper-preloader-spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}


/* a11y */

.swiper-container .swiper-notification {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    opacity: 0;
    z-index: -1000;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
    -webkit-transition-timing-function: ease-out;
    -o-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
    pointer-events: none;
    -webkit-transition-property: opacity;
    -o-transition-property: opacity;
    transition-property: opacity;
}

    .swiper-container-fade .swiper-slide .swiper-slide {
        pointer-events: none;
    }

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
    pointer-events: auto;
}

.swiper-container-cube {
    overflow: visible;
}

    .swiper-container-cube .swiper-slide {
        pointer-events: none;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        z-index: 1;
        visibility: hidden;
        -webkit-transform-origin: 0 0;
        -ms-transform-origin: 0 0;
        transform-origin: 0 0;
        width: 100%;
        height: 100%;
    }

        .swiper-container-cube .swiper-slide .swiper-slide {
            pointer-events: none;
        }

    .swiper-container-cube.swiper-container-rtl .swiper-slide {
        -webkit-transform-origin: 100% 0;
        -ms-transform-origin: 100% 0;
        transform-origin: 100% 0;
    }

    .swiper-container-cube .swiper-slide-active,
    .swiper-container-cube .swiper-slide-active .swiper-slide-active {
        pointer-events: auto;
    }

    .swiper-container-cube .swiper-slide-active,
    .swiper-container-cube .swiper-slide-next,
    .swiper-container-cube .swiper-slide-prev,
    .swiper-container-cube .swiper-slide-next + .swiper-slide {
        pointer-events: auto;
        visibility: visible;
    }

    .swiper-container-cube .swiper-slide-shadow-top,
    .swiper-container-cube .swiper-slide-shadow-bottom,
    .swiper-container-cube .swiper-slide-shadow-left,
    .swiper-container-cube .swiper-slide-shadow-right {
        z-index: 0;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }

    .swiper-container-cube .swiper-cube-shadow {
        position: absolute;
        left: 0;
        bottom: 0px;
        width: 100%;
        height: 100%;
        background: #000;
        opacity: 0.6;
        -webkit-filter: blur(50px);
        filter: blur(50px);
        z-index: 0;
    }

.swiper-container-flip {
    overflow: visible;
}

    .swiper-container-flip .swiper-slide {
        pointer-events: none;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        z-index: 1;
    }

        .swiper-container-flip .swiper-slide .swiper-slide {
            pointer-events: none;
        }

    .swiper-container-flip .swiper-slide-active,
    .swiper-container-flip .swiper-slide-active .swiper-slide-active {
        pointer-events: auto;
    }

    .swiper-container-flip .swiper-slide-shadow-top,
    .swiper-container-flip .swiper-slide-shadow-bottom,
    .swiper-container-flip .swiper-slide-shadow-left,
    .swiper-container-flip .swiper-slide-shadow-right {
        z-index: 0;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }

.swiper-container-coverflow .swiper-wrapper {
    /* Windows 8 IE 10 fix */
    -ms-perspective: 1200px;
}


/* ----- Global Styles----- */

html {
    -webkit-text-size-adjust: 100%;
    /* Prevent font scaling in landscape while allowing user zoom */
}

body {
    color: #363636;
    font-size: 16px;
    font-weight: 300;
}

@media (max-width: 667px) {
    body {
        padding-top: 99px;
    }
}

body > form {
    background-color: white;
}

    body > form:before {
        content: "";
        display: table;
        clear: both;
    }

body,
input,
textarea {
    font-family: "roboto", Arial, Helvetica, sans-serif;
}

input,
button {
    border: none;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: "Nord-Con", "tv_nord", Arial, Helvetica, sans-serif;
    font-weight: 300;
    line-height: 1;
}

mark {
    background-color: transparent;
    color: inherit;
}

.style-11 {
    margin-bottom: 20px;
    color: #ce1141;
    font-weight: bold;
    font-size: 20px;
    line-height: 18px;
    text-transform: uppercase;
    position: relative;
}

    .style-11:before {
        display: block;
        position: absolute;
        bottom: -15px;
        left: 0;
        width: 40px;
        height: 2px;
        border-top: 2px solid;
        border-color: inherit;
        content: "";
    }

p,
li {
    line-height: 1.4;
}

p {
    margin-bottom: 15px;
}

a {
    color: inherit;
    text-decoration: none;
}

.highlighted {
    color: #ce1141;
}

b,
.bold {
    font-weight: bold;
}

sup,
sub {
    font-size: 50%;
    line-height: 0;
}

img.center,
svg.center,
p.center,
span.center {
    display: block;
    margin: 0 auto 15px;
    text-align: center;
}


/* Numbered styles from type document */

.style-11 {
    margin-bottom: 20px;
    color: #ce1141;
    font-weight: bold;
    font-size: 20px;
    line-height: 18px;
    text-transform: uppercase;
    position: relative;
}

    .style-11:before {
        display: block;
        position: absolute;
        bottom: -15px;
        left: 0;
        width: 40px;
        height: 2px;
        border-top: 2px solid;
        border-color: inherit;
        content: "";
    }

.style-13,
.style-36 {
    font-family: "Nord-Con", "tv_nord", Arial, Helvetica, sans-serif;
    text-transform: uppercase;
}

.style-13 {
    font-weight: bold;
}

@media (min-width: 668px) {
    .style-13 {
        font-size: 44px;
        line-height: 38px;
    }
}

@media (max-width: 667px) {
    .style-13 {
        font-size: 36px;
        line-height: 30px;
    }
}

.style-36 {
    font-weight: 300;
}

@media (min-width: 668px) {
    .style-36 {
        font-size: 24px;
        line-height: 22px;
    }
}

@media (max-width: 667px) {
    .style-36 {
        font-size: 18px;
        line-height: 16px;
    }
}


/* ----- Main content area ----- */
.main-content {
    background-color: #FFFFFF;
}

@media (max-width: 667px) {
    .main-content {
        padding-top: 20px;
    }
}

@media (min-width: 668px) {
    .main-content {
        padding-top: 150px;
    }
}

.no-hero .main-content {
    padding-top: 200px;
}

@media (min-width: 1025px) {
    .main-content {
        min-height: 450px;
    }
}

@media (max-width: 667px) {
    .no-hero + .main-wrapper .main-content:not(.main-content--ir-landing) {
        padding-top: 80px;
    }
}

@media (min-width: 668px) {
    .no-hero + .main-wrapper .main-content:not(.main-content--ir-landing) {
        padding-top: 200px;
    }
}

@media (min-width: 1025px) {
    .no-hero + .main-wrapper .main-content:not(.main-content--ir-landing) {
        min-height: 450px;
    }
}

.root > form {
    background-image: linear-gradient(#eae9e9, #e0dfdf 333px, #dbd9d9 371px, #dbdbdb 385px, #dadada 391px, #e5e3e3 407px, #eaeaea 420px, #ececec 433px, #ececec 433px, #e5e4e4 493px, #ebebeb 560px, #f3f3f3 670px, #ebebeb 1120px, #fff);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eae9e9', endColorstr='#ffffff', GradientType=0);
    background-attachment: fixed;
}

.root .page-intro {
    display: none;
}

.js .root .page-header,
.js .root .hero-wrapper,
.js .root .real-result-bleed {
    /*opacity: 0;*/
    transition: opacity 1000ms;
}

    .js .root .page-header.active,
    .js .root .hero-wrapper.active,
    .js .root .real-result-bleed.active {
        opacity: 1;
    }

@media (max-width: 667px) {
    .secondary-navigation + .main-content {
        padding-top: 90px;
    }
}

@media (min-width: 668px) {
    .secondary-navigation + .main-content {
        padding-top: 200px;
    }
}

@media (min-width: 668px) {
    .hero-wrapper + .main-content {
        padding-top: 50px;
    }
}

@media (min-width: 668px) {
    .hero-wrapper + .secondary-navigation + .main-content {
        /*changed 20190409   padding-top: 200px; */
        padding-top: 100px;
    }
}

h1.page-title {
    position: relative;
    margin-bottom: 48px;
    color: #363636;
    font-size: 30px;
    line-height: 26px;
    font-weight: bold;
    text-transform: uppercase;
}

    h1.page-title:before {
        display: block;
        position: absolute;
        bottom: -15px;
        left: 0;
        width: 40px;
        height: 2px;
        border-top: 2px solid;
        border-color: inherit;
        content: "";
    }

@media (max-width: 667px) {
    h1.page-title {
        font-size: 24px;
        line-height: 22px;
    }
}

.page-sub-title {
    margin-bottom: 35px;
    font-size: 54px;
}

.page-intro {
    *zoom: 1;
    margin-left: 20px;
    margin-right: 20px;
}

    .page-intro:after {
        content: "";
        display: table;
        clear: both;
    }

@media (min-width: 668px) {
    .page-intro {
        /*changed 20190409      padding-bottom: 130px;  */
        padding-bottom: 50px;
    }
}

@media (min-width: 668px) and (max-width: 1024px) {
    .page-intro .page-intro-content {
        padding-bottom: 25px;
    }
}

@media (max-width: 667px) {
    .page-intro .page-intro-content {
        margin-bottom: 25px;
    }
}

.page-intro .page-intro-content h2 {
    margin-bottom: 25px;
}

.page-intro .page-intro-content .shell {
    max-width: none;
    padding-left: 0;
    padding-right: 0;
}

    .page-intro .page-intro-content .shell .row-grid {
        margin-left: 0px;
        margin-right: 0px;
    }

        .page-intro .page-intro-content .shell .row-grid > div[class*='col'] {
            float: none;
            width: auto;
            margin-left: 0;
            padding-left: 0;
            padding-right: 0;
        }

.page-intro .page-intro-content .accordion {
    margin-left: 0;
    margin-right: 0;
}

.page-intro .page-intro-sidebar {
    /*@media (min-width: 921px) and (max-width: $width-max-tablet) {
      float: right;
      margin-top: -75px;
      margin-left: 5px;
  }*/
}

@media (min-width: 668px) {
    .page-intro .page-intro-sidebar {
        width: 280px;
    }
}

@media (min-width: 668px) and (max-width: 1024px) {
    .page-intro .page-intro-sidebar {
        position: relative;
    }
}

@media (min-width: 1025px) {
    .page-intro .page-intro-sidebar {
        position: absolute;
        right: 0;
        top: 0;
    }
}

.constrained-left-margin {
    margin-left: 20px;
}

@media (min-width: 668px) and (max-width: 1024px) {
    .constrained-left-margin {
        margin-left: 20px;
    }
}

@media (min-width: 1025px) {
    .constrained-left-margin {
        margin-left: 16.66666667%;
    }
}

@media (min-width: 668px) and (max-width: 1024px) {
    .constrained-left-margin.page-intro {
        max-width: 645px;
        max-width: 85vw;
        padding-left: 5%;
        padding-right: 5%;
        margin: 0;
    }
}

.no-top-left-margin .page-intro {
    margin-right: 0;
}

@media (max-width: 1024px) {
    .no-top-left-margin .page-intro {
        margin-right: 15px;
    }
}

@media (min-width: 668px) {
    .no-top-left-margin .page-intro {
        max-width: 480px;
    }
}

@media (max-width: 1199px) {
    .no-top-left-margin .page-intro {
        margin-left: 15px !important;
    }
}

@media (min-width: 1200px) {
    .no-top-left-margin .page-intro {
        margin-left: 100px !important;
    }
}

.constrained-right-margin {
    margin-right: 20px;
}

@media (min-width: 1025px) {
    .constrained-right-margin {
        margin-right: 300px;
    }
}

@media (min-width: 1175px) {
    .constrained-right-margin {
        margin-right: 350px;
    }
}

.page-policies .page-intro {
    max-width: 480px;
    margin-right: 0;
}

@media (min-width: 1025px) and (max-width: 1199px) {
    .page-policies .page-intro {
        margin-left: 25%;
        padding-left: 10px;
    }
}

@media (max-width: 1023px) {
    .page-policies .page-intro {
        margin-left: 20px;
    }
}

.page-policies .page-intro .rich-text {
    max-width: 450px;
}

.page-search .page-intro,
.page-sitemap .page-intro {
    max-width: calc(980px + 30px);
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 15px;
    padding-right: 15px;
}

@media (max-width: 667px) {
    .page-search .page-intro,
    .page-sitemap .page-intro {
        margin-left: 5px;
        margin-right: 5px;
    }
}

.page-search .page-intro .rich-text,
.page-sitemap .page-intro .rich-text {
    max-width: 480px;
}

@media (min-width: 668px) and (max-width: 1024px) {
    .constrained-left-padding {
        margin-left: 300px;
    }
}

@media (min-width: 1025px) {
    .constrained-left-padding {
        margin-left: 350px;
    }
}

.shell-left-padding {
    max-width: 1180px;
}

@media (min-width: 668px) and (max-width: 1024px) {
    .shell-left-padding {
        padding-left: 300px;
    }
}

@media (min-width: 1025px) {
    .shell-left-padding {
        padding-left: 350px;
    }
}

.shell-right-padding {
    max-width: 1180px;
}

@media (min-width: 1025px) {
    .shell-right-padding {
        padding-right: 300px;
    }
}

.shell.maintain-dimensions-when-nested {
    padding-left: 0;
    padding-right: 0;
}

.white-background {
    background-color: white;
}

.grey-background {
    background-color: #f8f8f8;
}

.black-background {
    background-color: #000000;
}

/* ----- Sitemap ----- */

.sitemap .level1 h2 {
    margin-bottom: 30px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e6e6e6;
    font-size: 40px;
    line-height: 38px;
}

@media (min-width: 668px) {
    .sitemap .level1 h2:not(:first-of-type) {
        margin-top: 70px;
    }
}

@media (max-width: 667px) {
    .sitemap .level1 h2:not(:first-of-type) {
        margin-top: 50px;
    }
}

.sitemap .level1 h2 a {
    line-height: 33px;
    display: inline-block;
}

    .sitemap .level1 h2 a:hover {
        text-decoration: none;
        border-bottom: 2px solid #ce1141;
    }

.sitemap .level1 .level2 h3 {
    margin-bottom: 30px;
    font-size: 20px;
    font-weight: bold;
    font-family: "Nord-Con", "tv_nord", Arial, Helvetica, sans-serif;
    line-height: 1.3;
    text-transform: uppercase;
}

    .sitemap .level1 .level2 h3 + .level3:not(.has-sublevels) {
        margin-top: -20px;
    }

.sitemap .level1 .level2 .level3 {
    margin-bottom: 50px;
}

@media (min-width: 668px) {
    .sitemap .level1 .level2 .level3 {
        font-size: 0;
    }

        .sitemap .level1 .level2 .level3 .column {
            display: inline-block;
            width: 25%;
            padding-right: 30px;
            font-size: 16px;
            vertical-align: top;
        }

        .sitemap .level1 .level2 .level3.has-sublevels {
            margin-bottom: 0;
        }

            .sitemap .level1 .level2 .level3.has-sublevels > li {
                display: inline-block;
                font-size: 16px;
                vertical-align: top;
                width: 25%;
            }
}

.sitemap .level1 .level2 .level3 h4 {
    margin-bottom: 15px;
    font-family: "roboto", Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: bold;
}

.sitemap .level1 .level2 .level3 > li {
    padding-right: 30px;
}

.sitemap .level1 .level2 .level3 .level4 {
    margin-bottom: 40px;
}

    .sitemap .level1 .level2 .level3 .level4 h5 {
        margin-bottom: 10px;
        font-family: inherit;
        font-size: inherit;
        line-height: inherit;
    }

    .sitemap .level1 .level2 .level3 .level4 li {
        margin-bottom: 10px;
    }

    .sitemap .level1 .level2 .level3 .level4 .level5 li {
        position: relative;
        padding-left: 20px;
    }

        .sitemap .level1 .level2 .level3 .level4 .level5 li:before {
            position: absolute;
            left: 10px;
            top: 0;
            content: "-";
        }


/* ----- Cookie Warning ----- */

.cookie-message {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px 0;
    background-color: #363636;
    color: white;
    z-index: 15;
}

    .cookie-message:before {
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 10px;
        background: linear-gradient(transparent, rgba(0, 0, 0, 0.5));
        content: "";
    }

    .cookie-message .constrained {
        max-width: 880px;
        padding: 0 15px;
    }

    .cookie-message a {
        font-weight: 500;
        text-decoration: underline;
    }

        .cookie-message a:hover {
            text-decoration: none;
        }

    .cookie-message .cookie-heading {
        font-size: 20px;
        font-weight: bold;
        text-transform: uppercase;
        position: relative;
    }

@media (min-width: 668px) {
    .cookie-message .cookie-heading {
        float: left;
        width: 130px;
    }
}

@media (max-width: 667px) {
    .cookie-message .cookie-heading {
        margin-bottom: 30px;
    }
}

.cookie-message .cookie-heading:before {
    display: block;
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 40px;
    height: 2px;
    border-top: 2px solid;
    border-color: inherit;
    content: "";
}

@media (min-width: 668px) {
    .cookie-message .cookie-text {
        float: left;
        width: calc(100% - 260px);
        padding: 0 20px;
    }
}

.cookie-message input[type="submit"],
.cookie-message button {
    background-image: url(../images/icon-arrow-small-yellow.png);
    border-color: #efdf00;
    color: #efdf00;
}

@media (min-width: 668px) {
    .cookie-message input[type="submit"],
    .cookie-message button {
        float: right;
        width: 130px;
    }
}


/* ----- Sequencer ----- */

.sequencer {
    position: relative;
}

.sequencer__image {
    position: absolute;
    width: 100%;
    display: block;
    opacity: 0;
    top: 0;
    -moz-transition: opacity 250ms ease;
    -o-transition: opacity 250ms ease;
    -webkit-transition: opacity 250ms ease;
    transition: opacity 250ms ease;
}

    .sequencer__image.active {
        position: static;
        opacity: 1;
    }

.sequencer-controls button {
    position: relative;
    display: block;
    margin-bottom: 10px;
    padding-left: 20px;
    background: transparent;
    font-family: "Nord-Con", "tv_nord", Arial, Helvetica, sans-serif;
    font-size: 20px;
    text-transform: uppercase;
}

    .sequencer-controls button.active:after {
        opacity: 1;
        -moz-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }

    .sequencer-controls button:before,
    .sequencer-controls button:after {
        position: absolute;
        display: block;
        content: "";
        border-radius: 50%;
    }

    .sequencer-controls button:before {
        left: 0;
        top: 2px;
        width: 14px;
        height: 14px;
        border: 1px solid #363636;
    }

    .sequencer-controls button:after {
        left: 3px;
        top: 5px;
        width: 8px;
        height: 8px;
        background-color: #ce1141;
        opacity: 0;
        -moz-transform: scale(0.8, 0.8);
        -ms-transform: scale(0.8, 0.8);
        -webkit-transform: scale(0.8, 0.8);
        transform: scale(0.8, 0.8);
        -moz-transition: opacity 0.2s ease, -moz-transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
        -o-transition: opacity 0.2s ease, -o-transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
        -webkit-transition: opacity 0.2s ease, -webkit-transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
        transition: opacity 0.2s ease, transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    }


/* ----- Error Pages ----- */

@media (max-width: 667px) {
    #error-page {
        padding-top: 0;
    }
}

#error-page h1.page-title,
#error-page h2,
#error-page .benefit-statement {
    color: #ce1141;
}

#error-page .logo {
    display: block;
    margin: 20px 0 60px -7px;
}

@media (min-width: 668px) {
    #error-page .constrained {
        max-width: 560px;
    }
}

@media (max-width: 667px) {
    #error-page .constrained {
        padding-left: 15px;
        padding-right: 15px;
    }
}

#error-page .main-content {
    padding-top: 0;
}

#error-page p {
    margin-bottom: 25px;
}


/* ----- Page header & main nav ----- */

.page-header {
    position: fixed;
    top: 0;
    width: 100%;
    color: #363636;
    line-height: 1;
    z-index: 14;
/*changes to meganav added 20210414*/
    background-color: white;
    border-bottom: 1px solid #e6e6e6;
}

    .page-header a {
        color: inherit;
    }

    .page-header * {
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }

    .page-header .constrained {
        background-color: white;
        -moz-transition: height 275ms cubic-bezier(0.4, 0, 0.2, 1);
        -o-transition: height 275ms cubic-bezier(0.4, 0, 0.2, 1);
        -webkit-transition: height 275ms cubic-bezier(0.4, 0, 0.2, 1);
        transition: height 275ms cubic-bezier(0.4, 0, 0.2, 1);
    }

@media (min-width: 668px) {
    .page-header .constrained {
        -moz-box-sizing: content-box;
        -webkit-box-sizing: content-box;
        box-sizing: content-box;
        height: 100px;
/*changes to meganav hid 20210421
        border-left: 1px solid #e6e6e6;
        border-bottom: 1px solid #e6e6e6;
        border-right: 1px solid #e6e6e6;
    */
    }
}

.page-header .transition-wrapper {
    -moz-transition: -moz-transform 350ms cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: -o-transform 350ms cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transition: -webkit-transform 350ms cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.page-header .logo-wrapper {
    position: relative;
    text-align: center;
}

@media (min-width: 668px) {
    .page-header .logo-wrapper {
        width: 180px;
        /*height: 100%;*/
        height: calc(100% - 1px);
/*changes to meganav hid 20210421
            border-top: 1px solid #e6e6e6;
*/
    }
}

@media (max-width: 667px) {
    .page-header .logo-wrapper {
        width: 20%;
        background-color: white;
        z-index: 1;
    }
}

@media (min-width: 668px) {
    .page-header .logo-wrapper .logo {
        /*position: relative;
    display: inline-block;
    @include translate(0, 50px);
    @include transition(transform $header-collapse-speed $ease);*/
    }

        .page-header .logo-wrapper .logo img {
            display: none;
        }
}

@media (max-width: 667px) {
    .page-header .logo-wrapper .logo {
        display: block;
        height: 50px;
        border-right: 1px solid #ddd;
        border-bottom: 1px solid #ddd;
    }

        .page-header .logo-wrapper .logo img {
            display: none;
        }
}

.page-header .logo-wrapper .logo:before {
    position: absolute;
    content: "";
    -moz-transition: -moz-transform 0.2s ease, opacity 0.2s ease;
    -o-transition: -o-transform 0.2s ease, opacity 0.2s ease;
    -webkit-transition: -webkit-transform 0.2s ease, opacity 0.2s ease;
    transition: transform 0.2s ease, opacity 0.2s ease;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

@media (min-width: 668px) {
    .page-header .logo-wrapper .logo:before {
        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: -46em -8em;
        width: 7.5em;
        height: 3.125em;
        font-size: 16px;
    }
}

@media screen and (min-width: 668px) and (min-width: 0\0) {
    .page-header .logo-wrapper .logo:before {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

@media (min-width: 668px) {
    _:-ms-fullscreen,
    :root .page-header .logo-wrapper .logo:before {
        background-image: url(../images/icon-sprites-vector.svg);
    }
}

@media (max-width: 667px) {
    .page-header .logo-wrapper .logo:before {
        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: -46em -4em;
        width: 2.5em;
        height: 1.625em;
        font-size: 16px;
    }
}

@media screen and (max-width: 667px) and (min-width: 0\0) {
    .page-header .logo-wrapper .logo:before {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

@media (max-width: 667px) {
    _:-ms-fullscreen,
    :root .page-header .logo-wrapper .logo:before {
        background-image: url(../images/icon-sprites-vector.svg);
    }
}

@media (min-width: 668px) {
    .page-header .header-buttons {
        position: absolute;
        top: 0;
        width: 50px;
        z-index: 4;
    }

        .page-header .header-buttons.header-buttons-left {
            left: 180px;
        }

        .page-header .header-buttons.header-buttons-right {
            right: 0;
        }
}

.page-header .header-buttons button {
    position: absolute;
    text-indent: -119988px;
    overflow: hidden;
    text-align: left;
    text-transform: capitalize;
    background-color: white;
    background-position: center center;
    background-repeat: no-repeat;
    cursor: pointer;
    -moz-transition: -moz-transform 275ms cubic-bezier(0.4, 0, 0.2, 1), border-color 220ms ease;
    -o-transition: -o-transform 275ms cubic-bezier(0.4, 0, 0.2, 1), border-color 220ms ease;
    -webkit-transition: -webkit-transform 275ms cubic-bezier(0.4, 0, 0.2, 1), border-color 220ms ease;
    transition: transform 275ms cubic-bezier(0.4, 0, 0.2, 1), border-color 220ms ease;
}

    .page-header .header-buttons button:hover:after {
        /*background-image: url(../images/icon-close-hover.png);*/
        /*background-image: linear-gradient(transparent, transparent), url(../images/svg-weatherford.svg#locationsclosepanelhover);*/
    }

@media (min-width: 668px) {
    .page-header .header-buttons button {
        left: 0;
        width: 50px;
        height: 50px;
/*changes to meganav hid 20210421
        border-top: 1px solid #e6e6e6;
*/
        border-left: 1px solid #e6e6e6;
    }
}

@media (max-width: 667px) {
    .page-header .header-buttons button {
        top: 0;
        width: 20%;
        height: 50px;
        border-bottom: 1px solid #ddd;
        border-right: 1px solid #ddd;
    }
}

.page-header .header-buttons button .button-label {
    position: absolute;
    left: 0;
    right: 0;
    top: 10px;
    font-family: "Nord-Con", "tv_nord", Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-weight: bold;
    line-height: 1;
    text-align: center;
    text-indent: 0;
    text-transform: uppercase;
}

.page-header .header-buttons button:hover .button-label {
    color: #ce1141;
}

.page-header .header-buttons .button-search:before {
    position: absolute;
    content: "";
    -moz-transition: -moz-transform 0.2s ease, opacity 0.2s ease;
    -o-transition: -o-transform 0.2s ease, opacity 0.2s ease;
    -webkit-transition: -webkit-transform 0.2s ease, opacity 0.2s ease;
    transition: transform 0.2s ease, opacity 0.2s ease;
    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: -16em 0em;
    width: 1.5em;
    height: 1.5em;
    font-size: 16px;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

@media screen and (min-width: 0\0) {
    .page-header .header-buttons .button-search:before {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .page-header .header-buttons .button-search:before {
    background-image: url(../images/icon-sprites-vector.svg);
}

.page-header .header-buttons .button-search:hover:before {
    background-position: -18em 0em;
}

.page-header .header-buttons .button-search:after {
    content: "";
    position: absolute;
    opacity: 0;
    -moz-transition: -moz-transform 0.2s ease, opacity 0.2s ease;
    -o-transition: -o-transform 0.2s ease, opacity 0.2s ease;
    -webkit-transition: -webkit-transform 0.2s ease, opacity 0.2s ease;
    transition: transform 0.2s ease, opacity 0.2s ease;
    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: -12em -16em;
    width: 1.0625em;
    height: 1.0625em;
    font-size: 16px;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

@media screen and (min-width: 0\0) {
    .page-header .header-buttons .button-search:after {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .page-header .header-buttons .button-search:after {
    background-image: url(../images/icon-sprites-vector.svg);
}

.page-header .header-buttons .button-search:hover:after {
    background-position: -14em -16em;
}

@media (min-width: 668px) {
    .page-header .header-buttons .button-search {
        top: 0;
        width: 51px;
        border-right: 1px solid #e6e6e6;
    }
}

@media (max-width: 667px) {
    .page-header .header-buttons .button-search {
        left: 40%;
        z-index: 1;
    }
}

.page-header .header-buttons .button-meganav,
.page-header .header-buttons .button-social {
    border-bottom: 1px solid #e6e6e6;
}

@media (min-width: 668px) {
    .page-header .header-buttons .button-meganav,
    .page-header .header-buttons .button-social {
        height: 51px;
    }
}

@media (max-width: 667px) {
    .page-header .header-buttons .button-meganav,
    .page-header .header-buttons .button-social {
        height: 50px;
    }
}

.page-header .header-buttons .button-meganav {
    -moz-transition: top 0.2s ease;
    -o-transition: top 0.2s ease;
    -webkit-transition: top 0.2s ease;
    transition: top 0.2s ease;
}

    .page-header .header-buttons .button-meganav:before {
        position: absolute;
        content: "";
        -moz-transition: -moz-transform 0.2s ease, opacity 0.2s ease;
        -o-transition: -o-transform 0.2s ease, opacity 0.2s ease;
        -webkit-transition: -webkit-transform 0.2s ease, opacity 0.2s ease;
        transition: transform 0.2s ease, opacity 0.2s ease;
        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: 0em 0em;
        width: 1.5em;
        height: 0.875em;
        font-size: 16px;
        top: 13px;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
    }

@media screen and (min-width: 0\0) {
    .page-header .header-buttons .button-meganav:before {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .page-header .header-buttons .button-meganav:before {
    background-image: url(../images/icon-sprites-vector.svg);
}

.page-header .header-buttons .button-meganav:hover:before {
    background-position: -2em 0em;
}

.page-header .header-buttons .button-meganav:after {
    content: "";
    position: absolute;
    opacity: 0;
    -moz-transition: -moz-transform 0.2s ease, opacity 0.2s ease;
    -o-transition: -o-transform 0.2s ease, opacity 0.2s ease;
    -webkit-transition: -webkit-transform 0.2s ease, opacity 0.2s ease;
    transition: transform 0.2s ease, opacity 0.2s ease;
    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: -12em -16em;
    width: 1.0625em;
    height: 1.0625em;
    font-size: 16px;
    top: 12px;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

@media screen and (min-width: 0\0) {
    .page-header .header-buttons .button-meganav:after {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .page-header .header-buttons .button-meganav:after {
    background-image: url(../images/icon-sprites-vector.svg);
}

.page-header .header-buttons .button-meganav:hover:after {
    background-position: -14em -16em;
}

@media (min-width: 668px) {
    .page-header .header-buttons .button-meganav {
        top: 50px;
    }
}

@media (max-width: 667px) {
    .page-header .header-buttons .button-meganav {
        left: 20%;
        z-index: 1;
    }
}

.page-header .header-buttons .button-global:before {
    position: absolute;
    content: "";
    -moz-transition: -moz-transform 0.2s ease, opacity 0.2s ease;
    -o-transition: -o-transform 0.2s ease, opacity 0.2s ease;
    -webkit-transition: -webkit-transform 0.2s ease, opacity 0.2s ease;
    transition: transform 0.2s ease, opacity 0.2s ease;
    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: -8em 0em;
    width: 1.5em;
    height: 1.5em;
    font-size: 16px;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

@media screen and (min-width: 0\0) {
    .page-header .header-buttons .button-global:before {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .page-header .header-buttons .button-global:before {
    background-image: url(../images/icon-sprites-vector.svg);
}

.page-header .header-buttons .button-global:hover:before {
    background-position: -10em 0em;
}

.page-header .header-buttons .button-global:after {
    content: "";
    position: absolute;
    opacity: 0;
    -moz-transition: -moz-transform 0.2s ease, top 0.2s ease, opacity 0.2s ease;
    -o-transition: -o-transform 0.2s ease, top 0.2s ease, opacity 0.2s ease;
    -webkit-transition: -webkit-transform 0.2s ease, top 0.2s ease, opacity 0.2s ease;
    transition: transform 0.2s ease, top 0.2s ease, opacity 0.2s ease;
    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: -12em -16em;
    width: 1.0625em;
    height: 1.0625em;
    font-size: 16px;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

@media screen and (min-width: 0\0) {
    .page-header .header-buttons .button-global:after {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .page-header .header-buttons .button-global:after {
    background-image: url(../images/icon-sprites-vector.svg);
}

.page-header .header-buttons .button-global:hover:after {
    background-position: -14em -16em;
}

@media (min-width: 668px) {
    .page-header .header-buttons .button-global {
        top: 0px;
    }
}

@media (max-width: 667px) {
    .page-header .header-buttons .button-global {
        left: 60%;
    }
}

.page-header .header-buttons .button-social:before {
    position: absolute;
    content: "";
    -moz-transition: -moz-transform 0.2s ease, opacity 0.2s ease;
    -o-transition: -o-transform 0.2s ease, opacity 0.2s ease;
    -webkit-transition: -webkit-transform 0.2s ease, opacity 0.2s ease;
    transition: transform 0.2s ease, opacity 0.2s ease;
    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: -12em 0em;
    width: 1.5em;
    height: 1.5em;
    font-size: 16px;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

@media screen and (min-width: 0\0) {
    .page-header .header-buttons .button-social:before {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .page-header .header-buttons .button-social:before {
    background-image: url(../images/icon-sprites-vector.svg);
}

.page-header .header-buttons .button-social:hover:before {
    background-position: -14em 0em;
}

.page-header .header-buttons .button-social:after {
    content: "";
    position: absolute;
    opacity: 0;
    -moz-transition: -moz-transform 0.2s ease, opacity 0.2s ease;
    -o-transition: -o-transform 0.2s ease, opacity 0.2s ease;
    -webkit-transition: -webkit-transform 0.2s ease, opacity 0.2s ease;
    transition: transform 0.2s ease, opacity 0.2s ease;
    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: -12em -16em;
    width: 1.0625em;
    height: 1.0625em;
    font-size: 16px;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

@media screen and (min-width: 0\0) {
    .page-header .header-buttons .button-social:after {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .page-header .header-buttons .button-social:after {
    background-image: url(../images/icon-sprites-vector.svg);
}

.page-header .header-buttons .button-social:hover:after {
    background-position: -14em -16em;
}

@media (min-width: 668px) {
    .page-header .header-buttons .button-social {
        -moz-transition: top 0.2s ease;
        -o-transition: top 0.2s ease;
        -webkit-transition: top 0.2s ease;
        transition: top 0.2s ease;
        top: 50px;
    }
}

@media (max-width: 667px) {
    .page-header .header-buttons .button-social {
        left: 80%;
        border-right: none;
    }
}

@media (max-width: 667px) {
    .page-header .header-content-wrapper {
        -moz-transition: margin 200ms ease;
        -o-transition: margin 200ms ease;
        -webkit-transition: margin 200ms ease;
        transition: margin 200ms ease;
    }
}

@media (min-width: 668px) {
    .page-header .header-content-wrapper {
        position: absolute;
        left: 230px;
        top: 50px;
        width: 100%;
        top: 0;
        width: calc(100% - 280px);
        height: 100%;
/*changes to meganav hid 20210421
        border-top: 1px solid #e6e6e6;
*/
    }
}

.page-header .header-content-wrapper .quick-links {
    display: -webkit-flex;
    display: flex;
    position: relative;
    background-color: white;
    -moz-transition: all 275ms ease;
    -o-transition: all 275ms ease;
    -webkit-transition: all 275ms ease;
    transition: all 275ms ease;
}

@media (max-width: 667px) {
    .page-header .header-content-wrapper .quick-links {
        width: 100%;
    }

        .page-header .header-content-wrapper .quick-links .quick-link-trigger {
            height: 100%;
            padding: 10px 15px;
            background-color: white;
            cursor: pointer;
            font-family: "Nord-Con", "tv_nord", Arial, Helvetica, sans-serif;
            font-size: 20px;
            font-weight: 300;
            text-align: left;
            text-transform: uppercase;
        }
}

@media (max-width: 667px) and (min-width: 668px) {
    .page-header .header-content-wrapper .quick-links .quick-link-trigger {
        font-size: 20px;
    }
}

@media (max-width: 667px) and (max-width: 667px) {
    .page-header .header-content-wrapper .quick-links .quick-link-trigger {
        font-size: 16px;
        padding-top: 6px;
        padding-bottom: 6px;
        border-right: 1px solid #ddd;
        border-bottom: 1px solid #ddd;
    }

        .page-header .header-content-wrapper .quick-links .quick-link-trigger b {
            font-size: 20px;
        }
}

@media (max-width: 667px) {
    .page-header .header-content-wrapper .quick-links .quick-link-trigger b {
        display: block;
    }
}

@media (max-width: 949px) {
    .page-header .header-content-wrapper .quick-links .quick-link-group:not(.column-three) li {
        background-image: none !important;
    }
}

@media (min-width: 668px) and (max-width: 949px) {
    .page-header .header-content-wrapper .quick-links .quick-link-group.column-three li {
        background-image: none !important;
    }
}

@media (min-width: 950px) {
    .page-header .header-content-wrapper .quick-links .quick-link-group.column-three .text-wrapper,
    .page-header .header-content-wrapper .quick-links .quick-link-group.column-one .text-wrapper {
        width: 60%;
    }
}

@media (min-width: 668px) {
    .page-header .header-content-wrapper .quick-links .quick-link-group {
        width: 33.33333%;
        height: 99px;
        overflow: hidden;
    }

        .page-header .header-content-wrapper .quick-links .quick-link-group li {
            pointer-events: none;
        }

        .page-header .header-content-wrapper .quick-links .quick-link-group .quick-link-list {
            border-left: 1px solid #e6e6e6;
            border-right: 1px solid #e6e6e6;
        }

        .page-header .header-content-wrapper .quick-links .quick-link-group:not(.column-three) .quick-link-list {
            border-bottom: 1px solid #e6e6e6;
        }

        .page-header .header-content-wrapper .quick-links .quick-link-group:hover {
            overflow: visible;
            position: relative;
            z-index: 2;
        }

            .page-header .header-content-wrapper .quick-links .quick-link-group:hover li {
                pointer-events: all;
            }

            .page-header .header-content-wrapper .quick-links .quick-link-group:hover .slick-track,
            .page-header .header-content-wrapper .quick-links .quick-link-group:hover .slick-list {
                transform: none !important;
                height: auto !important;
                transition: all 400ms;
            }
}

@media (min-width: 668px) and (max-width: 1024px) {
    .page-header .header-content-wrapper .quick-links .quick-link-group.column-three li {
        background-position: 65% top;
    }
}

@media (max-width: 667px) {
    .page-header .header-content-wrapper .quick-links .quick-link-group {
        width: 40%;
    }

        .page-header .header-content-wrapper .quick-links .quick-link-group .slick-track,
        .page-header .header-content-wrapper .quick-links .quick-link-group .slick-list {
            transform: none !important;
            height: auto !important;
            transition: all 400ms;
        }

        .page-header .header-content-wrapper .quick-links .quick-link-group.column-three {
            height: 49px;
            width: 20%;
        }

            .page-header .header-content-wrapper .quick-links .quick-link-group.column-three .quick-link-trigger {
                display: none;
            }

            .page-header .header-content-wrapper .quick-links .quick-link-group.column-three .quick-link-list,
            .page-header .header-content-wrapper .quick-links .quick-link-group.column-three .quick-link-list > div {
                height: 100%;
            }

                .page-header .header-content-wrapper .quick-links .quick-link-group.column-three .quick-link-list li {
                    height: 100%;
                    padding: 0;
                    background-size: cover;
                }

                    .page-header .header-content-wrapper .quick-links .quick-link-group.column-three .quick-link-list li .quick-link-inner {
                        display: block;
                        width: 100%;
                        height: 100%;
                        padding: 0;
                        border-left: none;
                        border-right: none;
                        border-color: #ddd;
                    }

                        .page-header .header-content-wrapper .quick-links .quick-link-group.column-three .quick-link-list li .quick-link-inner .text-wrapper {
                            height: 100%;
                        }

                            .page-header .header-content-wrapper .quick-links .quick-link-group.column-three .quick-link-list li .quick-link-inner .text-wrapper h2 {
                                display: none;
                            }

                            .page-header .header-content-wrapper .quick-links .quick-link-group.column-three .quick-link-list li .quick-link-inner .text-wrapper .more {
                                display: block;
                                width: 100%;
                                height: 100%;
                                text-indent: -9999px;
                            }

                                .page-header .header-content-wrapper .quick-links .quick-link-group.column-three .quick-link-list li .quick-link-inner .text-wrapper .more:before {
                                    display: none;
                                }

        .page-header .header-content-wrapper .quick-links .quick-link-group:not(.column-three) .quick-link-list {
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            opacity: 0;
            -moz-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            -o-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            -moz-transform: translateY(-10px);
            -ms-transform: translateY(-10px);
            -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
            visibility: hidden;
        }

        .page-header .header-content-wrapper .quick-links .quick-link-group .quick-link-trigger {
            position: relative;
        }

        .page-header .header-content-wrapper .quick-links .quick-link-group .quick-link-cross {
            position: absolute;
            top: 0;
            right: 0;
            bottom: -1px;
            left: 0;
            background-color: white;
            opacity: 0;
            visibility: hidden;
            cursor: pointer;
            -moz-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            -o-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

            .page-header .header-content-wrapper .quick-links .quick-link-group .quick-link-cross:after {
                content: "";
                position: absolute;
                top: 50%;
                left: 17px;
                -moz-transform: translateY(-50%);
                -ms-transform: translateY(-50%);
                -webkit-transform: translateY(-50%);
                transform: translateY(-50%);
                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: -12em -16em;
                width: 1.0625em;
                height: 1.0625em;
            }
}

@media screen and (max-width: 667px) and (min-width: 0\0) {
    .page-header .header-content-wrapper .quick-links .quick-link-group .quick-link-cross:after {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

@media (max-width: 667px) {
    _:-ms-fullscreen,
    :root .page-header .header-content-wrapper .quick-links .quick-link-group .quick-link-cross:after {
        background-image: url(../images/icon-sprites-vector.svg);
    }

    .page-header .header-content-wrapper .quick-links .quick-link-group.active .quick-link-list {
        opacity: 1;
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -webkit-transform: translateY(0);
        transform: translateY(0);
        visibility: visible;
    }

    .page-header .header-content-wrapper .quick-links .quick-link-group.active .quick-link-cross {
        opacity: 1;
        visibility: visible;
    }
}

.page-header .header-content-wrapper .quick-links .quick-link-group h2 {
    margin-bottom: 5px;
    font-weight: bold;
    line-height: 18px;
    text-transform: uppercase;
}

@media (min-width: 1075px) {
    .page-header .header-content-wrapper .quick-links .quick-link-group h2 {
        font-size: 20px;
    }
}

@media (min-width: 667px) and (max-width: 1076px) {
    .page-header .header-content-wrapper .quick-links .quick-link-group h2 {
        font-size: 16px;
        line-height: 1;
    }
}

@media (max-width: 667px) {
    .page-header .header-content-wrapper .quick-links .quick-link-group h2 {
        font-size: 18px;
    }
}

.page-header .header-content-wrapper .quick-links .quick-link-group h2 .category {
    display: block;
    font-size: 16px;
    font-weight: 300;
}

.page-header .header-content-wrapper .quick-links .quick-link-group .more {
    color: #909090;
    font-size: 14px;
    font-weight: 500;
    padding-left: 25px;
    position: relative;
}

@media (min-width: 668px) and (max-width: 1024px) {
    .page-header .header-content-wrapper .quick-links .quick-link-group .more {
        font-size: 12px;
    }
}

.page-header .header-content-wrapper .quick-links .quick-link-group .more:before {
    content: "";
    position: absolute;
    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: -24em -4em;
    width: 1em;
    height: 1em;
    font-size: 16px;
    display: inline-block;
    margin-right: 8px;
    left: 0;
    top: 2px;
}

@media screen and (min-width: 0\0) {
    .page-header .header-content-wrapper .quick-links .quick-link-group .more:before {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .page-header .header-content-wrapper .quick-links .quick-link-group .more:before {
    background-image: url(../images/icon-sprites-vector.svg);
}

.page-header .header-content-wrapper .quick-links .quick-link-group .more.more-external:before {
    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: -20em -12em;
    width: 1.5em;
    height: 1.5em;
    background-size: 38.6667em 18.6667em;
    background-position: -13.3333em -8em;
    width: 1em;
    height: 1em;
}

@media screen and (min-width: 0\0) {
    .page-header .header-content-wrapper .quick-links .quick-link-group .more.more-external:before {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .page-header .header-content-wrapper .quick-links .quick-link-group .more.more-external:before {
    background-image: url(../images/icon-sprites-vector.svg);
}

.page-header .header-content-wrapper .quick-links .quick-link-group li {
    background-color: white;
    background-position: right top;
    background-repeat: no-repeat;
    line-height: 1;
    border: none;
    list-style: none;
}

    .page-header .header-content-wrapper .quick-links .quick-link-group li .quick-link-inner {
        display: block;
        /*border: 1px solid $grey-light;*/
        border-bottom: 1px solid #e6e6e6;
        border-top: none;
        /*
                        &:not(.more):hover {
                            text-decoration: none;

                            .more {
                                text-decoration: underline;
                            }
                        }

                        @include desktop {
                            cursor: pointer;
                        }
*/
    }

        .page-header .header-content-wrapper .quick-links .quick-link-group li .quick-link-inner.text-wrapper {
            max-width: 175px;
        }

@media (min-width: 668px) {
    .page-header .header-content-wrapper .quick-links .quick-link-group li .quick-link-inner {
        height: 100px;
        padding: 13px 10px 10px 15px;
    }
}

@media (min-width: 668px) and (max-width: 1024px) {
    .page-header .header-content-wrapper .quick-links .quick-link-group li .quick-link-inner {
        padding: 10px;
    }
}

@media (max-width: 667px) {
    .page-header .header-content-wrapper .quick-links .quick-link-group li .quick-link-inner {
        padding: 10px 15px;
    }
}

.page-header .header-content-wrapper .quick-links .quick-link-group li:hover {
    background-color: #527a8a;
    color: white;
}

    .page-header .header-content-wrapper .quick-links .quick-link-group li:hover .more {
        color: white;
    }

        .page-header .header-content-wrapper .quick-links .quick-link-group li:hover .more:before {
            background-position: -26em -4em;
        }

        .page-header .header-content-wrapper .quick-links .quick-link-group li:hover .more.more-external:before {
            background-position: -18em -12em;
            background-position: -12em -8em;
        }

.page-header .header-content-wrapper .quick-links .quick-link-group li.view-all {
    padding: 0;
    position: relative;
}

    .page-header .header-content-wrapper .quick-links .quick-link-group li.view-all a {
        display: block;
        height: auto;
        padding: 15px 15px 15px 36px;
        color: #909090;
    }

        .page-header .header-content-wrapper .quick-links .quick-link-group li.view-all a:before {
            top: 15px;
            left: 15px;
        }

        .page-header .header-content-wrapper .quick-links .quick-link-group li.view-all a:hover {
            color: white;
        }

.page-header .header-content-wrapper .quick-links .quick-link-group:last-of-type li {
    border-right: none;
}

.page-header .header-content-wrapper .quick-links .quick-link-group:last-of-type li {
    border-right: none;
}

.page-header .header-content-wrapper .quick-links .quick-link-group:hover li:not(:first-child) {
    display: block;
}

@media (min-width: 668px) {
    .page-header .header-content-wrapper .quick-links .quick-link-group.products .quick-link-list li:not(.view-all) {
        padding-right: 32%;
    }
}

@media (min-width: 668px) and (max-width: 1024px) {
    .page-header .header-content-wrapper .quick-links .quick-link-group.products .quick-link-list li {
        background-position: 70% 0;
    }
}

.page-header .header-content-wrapper .quick-links .quick-link-group.news .quick-link-list li .date {
    font-family: "Nord-Con", "tv_nord", Arial, Helvetica, sans-serif;
    font-size: 18px;
}

@media (min-width: 668px) and (max-width: 1024px) {
    .page-header .header-content-wrapper .quick-links .quick-link-group.news .quick-link-list li .date {
        font-size: 16px;
    }
}

@media (min-width: 668px) {
    .page-header .header-content-wrapper .quick-links .quick-link-group.locations .quick-link-inner {
        padding-right: 40%;
        background-image: url(../images/header-image-global.png);
    }
}

@media (min-width: 668px) and (max-width: 1024px) {
    .page-header .header-content-wrapper .quick-links .quick-link-group.locations .quick-link-inner {
        background-position: 54% 0;
    }
}

@media (max-width: 667px) {
    .page-header .header-content-wrapper .quick-links .quick-link-group.locations .quick-link-inner {
        height: 100%;
        background: white url(../images/header-image-global-mobile.png) center center no-repeat;
        border: none;
    }
}

@media (max-width: 667px) {
    .page-header .header-content-wrapper .quick-links .quick-link-group.locations {
        left: 80%;
        width: 20%;
        padding: 0;
    }

        .page-header .header-content-wrapper .quick-links .quick-link-group.locations h2 {
            display: none;
        }

        .page-header .header-content-wrapper .quick-links .quick-link-group.locations a {
            display: block;
            width: 100%;
            height: 100%;
            text-indent: -119988px;
            overflow: hidden;
            text-align: left;
            text-transform: capitalize;
        }
}

.page-header .header-content-wrapper .search,
.page-header .header-content-wrapper .global {
    position: absolute;
    left: 1px;
    top: 0;
    width: 100%;
    background-color: white;
    opacity: 0;
    visibility: hidden;
    -moz-transition: opacity 0.18s ease, visibility 0.18s;
    -o-transition: opacity 0.18s ease, visibility 0.18s;
    -webkit-transition: opacity 0.18s ease, visibility 0.18s;
    transition: opacity 0.18s ease, visibility 0.18s;
}

@media (min-width: 668px) {
    .page-header .header-content-wrapper .search,
    .page-header .header-content-wrapper .global {
        height: 100%;
    }
}

.page-header .header-content-wrapper .search .transition-wrapper,
.page-header .header-content-wrapper .global .transition-wrapper {
    -moz-transform: scale(0.94, 0.94);
    -ms-transform: scale(0.94, 0.94);
    -webkit-transform: scale(0.94, 0.94);
    transform: scale(0.94, 0.94);
}

@media (min-width: 668px) {
    .page-header .header-content-wrapper .search .transition-wrapper,
    .page-header .header-content-wrapper .global .transition-wrapper {
        width: 100%;
        height: 100%;
    }
}

@media (max-width: 667px) {
    .page-header .header-content-wrapper .global {
        padding: 32px 15px;
    }
}

@media (min-width: 668px) {
    .page-header .header-content-wrapper .global .transition-wrapper {
        text-align: center;
        font-size: 0;
    }
}

@media (min-width: 668px) {
    .page-header .header-content-wrapper .global .global-col {
        display: inline-block;
        padding: 32px 10px 0;
        text-align: left;
        vertical-align: top;
    }
}

@media (max-width: 667px) {
    .page-header .header-content-wrapper .global .global-col {
        margin-bottom: 40px;
    }
}

@media (min-width: 668px) {
    .page-header .header-content-wrapper .global .global-col.global-1 {
        width: 20%;
    }
}

@media (min-width: 668px) and (max-width: 960px) {
    .page-header .header-content-wrapper .global .global-col.global-1 {
        width: 25%;
    }
}

@media (min-width: 668px) {
    .page-header .header-content-wrapper .global .global-col.global-2 {
        width: 23%;
    }
}

@media (min-width: 668px) and (max-width: 960px) {
    .page-header .header-content-wrapper .global .global-col.global-2 {
        width: 29%;
    }
}

@media (min-width: 668px) {
    .page-header .header-content-wrapper .global .global-col.global-3 {
        width: 40%;
    }
}

@media (min-width: 668px) and (max-width: 960px) {
    .page-header .header-content-wrapper .global .global-col.global-3 {
        width: 42%;
    }
}

.page-header .header-content-wrapper .global .global-item {
    position: relative;
    display: block;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    padding-left: 57px;
}

@media (min-width: 1025px) {
    .page-header .header-content-wrapper .global .global-item {
        padding-left: 57px;
    }
}

.page-header .header-content-wrapper .global .global-item .text-wrapper {
    display: inline-block;
}

.page-header .header-content-wrapper .global .global-item:hover {
    color: #ce1141;
}

.page-header .header-content-wrapper .global .global-item:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 42px;
    height: 50px;
    background-position: top right;
    background-repeat: no-repeat;
    content: "";
    -moz-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    -moz-transition: -moz-transform 275ms cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: -o-transform 275ms cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transition: -webkit-transform 275ms cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 275ms cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 668px) and (max-width: 800px) {
    .page-header .header-content-wrapper .global .global-item {
        padding-left: 33px;
    }

        .page-header .header-content-wrapper .global .global-item:before {
            -moz-transform: scale(0.7, 0.7);
            -ms-transform: scale(0.7, 0.7);
            -webkit-transform: scale(0.7, 0.7);
            transform: scale(0.7, 0.7);
        }
}

@media (min-width: 668px) {
    .page-header .header-content-wrapper .global .global-item.contact .text-wrapper {
        max-width: 60px;
    }
}

.page-header .header-content-wrapper .global .global-item.contact:before {
    position: absolute;
    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: -20em 0em;
    width: 2.625em;
    height: 2.1875em;
    font-size: 16px;
}

@media screen and (min-width: 0\0) {
    .page-header .header-content-wrapper .global .global-item.contact:before {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .page-header .header-content-wrapper .global .global-item.contact:before {
    background-image: url(../images/icon-sprites-vector.svg);
}

.page-header .header-content-wrapper .global .global-item.contact:hover:before {
    background-position: -24em 0em;
}

@media (min-width: 668px) {
    .page-header .header-content-wrapper .global .global-item.offices .text-wrapper {
        max-width: 110px;
    }
}

.page-header .header-content-wrapper .global .global-item.offices:before {
    position: absolute;
    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 0em;
    width: 2.1875em;
    height: 2.1875em;
    font-size: 16px;
}

@media screen and (min-width: 0\0) {
    .page-header .header-content-wrapper .global .global-item.offices:before {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .page-header .header-content-wrapper .global .global-item.offices:before {
    background-image: url(../images/icon-sprites-vector.svg);
}

.page-header .header-content-wrapper .global .global-item.offices:hover:before {
    background-position: -32em 0em;
}

.page-header .header-content-wrapper .global .global-item.language:before {
    position: absolute;
    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: -36em 0em;
    width: 2.5625em;
    height: 2.125em;
    font-size: 16px;
}

@media screen and (min-width: 0\0) {
    .page-header .header-content-wrapper .global .global-item.language:before {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .page-header .header-content-wrapper .global .global-item.language:before {
    background-image: url(../images/icon-sprites-vector.svg);
}

.page-header .header-content-wrapper .global .global-item.language:hover:before {
    background-position: -40em 0em;
}

.page-header .header-content-wrapper .global .global-item.language .select-dropdown {
    max-width: 300px;
}

    .page-header .header-content-wrapper .global .global-item.language .select-dropdown .dropdown-header {
        height: auto;
    }

.page-header .header-content-wrapper .global .global-item h2 {
    font-size: 16px;
    -moz-transition: -moz-transform 275ms cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: -o-transform 275ms cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transition: -webkit-transform 275ms cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 275ms cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 667px) {
    .page-header .header-content-wrapper .search {
        padding-left: 20px;
        padding-right: 20px;
        height: calc(100vh - 50px);
        overflow-y: auto;
    }
}

.page-header .header-content-wrapper .search .transition-wrapper {
    background-color: white;
}

@media (min-width: 668px) {
    .page-header .header-content-wrapper .search .transition-wrapper {
        padding-top: 30px;
    }
}

.page-header .header-content-wrapper .search .input-wrapper {
    -moz-transition: -moz-transform 350ms cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: -o-transform 350ms cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transition: -webkit-transform 350ms cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 350ms cubic-bezier(0.4, 0, 0.2, 1);
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
}

@media (min-width: 668px) {
    .page-header .header-content-wrapper .search .input-wrapper {
        width: 94%;
        margin-left: auto;
        margin-right: auto;
        max-width: 680px;
    }
}

@media (max-width: 667px) {
    .page-header .search,
    .page-header .global,
    .page-header .social,
    .page-header .meganav {
        top: 50px !important;
    }
}

.page-header .meganav,
.page-header .social {
    position: absolute;
    left: -1px;
    right: -1px;
    background-color: white;
    opacity: 0;
    visibility: hidden;
    -moz-transition: opacity 220ms ease, visibility 220ms ease;
    -o-transition: opacity 220ms ease, visibility 220ms ease;
    -webkit-transition: opacity 220ms ease, visibility 220ms ease;
    transition: opacity 220ms ease, visibility 220ms ease;
    margin-top: 1px;
    pointer-events: none;
    z-index: -1;
}

@media screen and (min-width: 0\0) {
    .page-header .meganav {
        display: none;
    }
}

@media (min-width: 668px) {
    .page-header .meganav {
        top: 100%;
    }
}

@media (min-width: 1025px) {
    .page-header .meganav {
        padding: 75px 50px 55px 50px;
    }
}

@media (min-width: 668px) and (max-width: 1024px) {
    .page-header .meganav {
        padding: 30px;
    }
}

.page-header .meganav .mobile-nav-back {
    position: relative;
    width: 100%;
    height: 50px;
    margin: 10px 0;
    padding: 10px 15px 10px 40px;
    font-size: 13px;
    background: transparent;
    cursor: pointer;
    text-align: left;
    -moz-transition: opacity 0.3s ease, visibility 0.3s ease;
    -o-transition: opacity 0.3s ease, visibility 0.3s ease;
    -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

    .page-header .meganav .mobile-nav-back:before {
        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;
        content: "";
        position: absolute;
        left: 20px;
        top: 20px;
    }

@media screen and (min-width: 0\0) {
    .page-header .meganav .mobile-nav-back:before {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .page-header .meganav .mobile-nav-back:before {
    background-image: url(../images/icon-sprites-vector.svg);
}

@media (max-width: 667px) {
    .page-header .meganav {
        height: calc(100vh - 50px);
        overflow-x: hidden;
        overflow-y: auto;
    }

        .page-header .meganav.show-level-1 .mobile-nav-back {
            opacity: 0;
            visibility: hidden;
        }
}

@media (max-width: 667px) and (max-width: 667px) {
    .page-header .meganav.show-level-1 .meganav-sidebar {
        /* changed 20190411  display: block; */
        display: none;
        margin: 6.25% 3.125%;
        width: 93.75%;
        float: none;
    }
}

@media (max-width: 667px) and (max-width: 667px) {
    .page-header .meganav.show-level-1 .meganav-sidebar .nav-module {
        width: 43.75%;
        display: inline-block;
        margin: 0 3.125%;
        float: left;
    }
}

@media (max-width: 667px) and (max-width: 667px) {
    .page-header .meganav.show-level-1 .footer {
        display: block;
        margin: 20px;
        padding-top: 20px;
    }

    .page-header .meganav.show-level-1 .grid .footer {
        display: none;
    }
}

@media (max-width: 667px) {
    .page-header .meganav.show-level-2 .meganav-panels-wrapper {
        -moz-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}

@media (max-width: 667px) and (max-width: 667px) {
    .page-header .meganav.show-level-2 .footer {
        display: none;
    }

    .page-header .meganav.show-level-2 .grid .footer {
        margin-top: 14px;
        display: block;
    }

    .page-header .meganav.show-level-2 .nav-level-1 h2 {
        display: block;
    }
}

@media (max-width: 667px) {
    .page-header .meganav.show-level-3 .meganav-panels-wrapper {
        -moz-transform: translateX(-200%);
        -ms-transform: translateX(-200%);
        -webkit-transform: translateX(-200%);
        transform: translateX(-200%);
    }
}

@media (max-width: 667px) and (max-width: 667px) {
    .page-header .meganav.show-level-3 .footer {
        display: none;
    }

    .page-header .meganav.show-level-3 .grid .footer {
        margin-top: 14px;
        display: block;
    }

    .page-header .meganav.show-level-3 .nav-level-1 h2 {
        display: block;
    }
}

@media (max-width: 667px) {
    .page-header .meganav.show-level-4 .meganav-panels-wrapper {
        -moz-transform: translateX(-300%);
        -ms-transform: translateX(-300%);
        -webkit-transform: translateX(-300%);
        transform: translateX(-300%);
    }
}

@media (max-width: 667px) and (max-width: 667px) {
    .page-header .meganav.show-level-4 .footer {
        display: none;
    }

    .page-header .meganav.show-level-4 .grid .footer {
        margin-top: 14px;
        display: block;
    }

    .page-header .meganav.show-level-4 .nav-level-1 h2 {
        display: block;
    }
}

@media (max-width: 667px) {
    .page-header .meganav.show-level-5 .meganav-panels-wrapper {
        -moz-transform: translateX(-400%);
        -ms-transform: translateX(-400%);
        -webkit-transform: translateX(-400%);
        transform: translateX(-400%);
    }
}

@media (max-width: 667px) and (max-width: 667px) {
    .page-header .meganav.show-level-5 .footer {
        display: none;
    }

    .page-header .meganav.show-level-5 .grid .footer {
        margin-top: 14px;
        display: block;
    }

    .page-header .meganav.show-level-5 .nav-level-1 h2 {
        display: block;
    }
}

.page-header .meganav .transition-wrapper {
    -moz-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
}

.page-header .meganav .grid {
    position: relative;
}

.page-header .meganav a {
    color: #000;
}

    .page-header .meganav a:hover {
        color: #ce1141;
    }

.page-header .meganav .meganav-panels-wrapper {
    position: relative;
    z-index: 1;
}

@media (min-width: 668px) {
    .page-header .meganav .meganav-panels-wrapper {
        width: 100%;
        height: 470px;
    }
}

@media (max-width: 667px) {
    .page-header .meganav .meganav-panels-wrapper {
        -moz-transition: -moz-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        -o-transition: -o-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
}

@media (max-width: 667px) {
    .page-header .meganav .meganav-panel {
        position: relative;
        width: 100%;
        padding: 0 20px;
    }

        .page-header .meganav .meganav-panel .meganav-panel {
            position: absolute;
            top: 0;
            left: 100%;
            visibility: visible !important;
        }
}

.page-header .meganav .meganav-panel h2 {
    margin-top: 5px;
    margin-bottom: 10px;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: bold;
    text-decoration: underline;
    display: block;
}

@media (min-width: 668px) {
    .no-touch .page-header .meganav .meganav-panel h2,
    .no-touchevents .page-header .meganav .meganav-panel h2 {
        display: none;
    }
}

.page-header .meganav .meganav-panel h2 a {
    padding: 0 !important;
}

@media (max-width: 667px) {
    .page-header .meganav .meganav-panel a.active {
        color: #000;
    }
}

@media (min-width: 668px) {
    .page-header .meganav .meganav-panel {
        box-sizing: content-box;
        position: absolute;
        top: 0;
        font-size: 16px;
        width: 20%;
    }

        .page-header .meganav .meganav-panel.nav-level-1 {
            left: 0;
        }

        .page-header .meganav .meganav-panel.nav-level-2 .footer {
            display: none;
        }

        .page-header .meganav .meganav-panel.nav-level-3 .footer {
            display: none;
        }
}

@media (min-width: 668px) {
    .page-header .meganav .meganav-panel:not(.nav-level-1) {
        padding-left: 40px;
        visibility: hidden;
        left: 100%;
        width: 100%;
        box-sizing: border-box;
        -moz-transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
        -o-transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
        -webkit-transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
        transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
        -moz-transform: translateX(-10px);
        -ms-transform: translateX(-10px);
        -webkit-transform: translateX(-10px);
        transform: translateX(-10px);
        opacity: 0;
    }

        .page-header .meganav .meganav-panel:not(.nav-level-1):before {
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            margin-left: 20px;
            content: "";
            border-right: 1px solid rgba(0, 0, 0, 0.2);
            opacity: 0;
            -moz-transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
            -o-transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
            -webkit-transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
            transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
            -moz-transform: translateX(10px);
            -ms-transform: translateX(10px);
            -webkit-transform: translateX(10px);
            transform: translateX(10px);
        }
}

@media (min-width: 668px) and (max-width: 699px) {
    .page-header .meganav .meganav-panel li {
        font-size: 12px;
    }
}

@media (min-width: 700px) and (max-width: 800px) {
    .page-header .meganav .meganav-panel li {
        font-size: 13px;
    }
}

@media (min-width: 801px) and (max-width: 1024px) {
    .page-header .meganav .meganav-panel li {
        font-size: 14px;
    }
}

html[class] body .page-header .meganav .meganav-panel li.jshover > a,
.page-header .meganav .meganav-panel li.active > a,
.page-header .meganav .meganav-panel li:hover > a {
    color: #ce1141;
}

html[class] body .page-header .meganav .meganav-panel li.jshover.has-children > a:after,
.page-header .meganav .meganav-panel li.active.has-children > a:after,
.page-header .meganav .meganav-panel li:hover.has-children > a:after {
    display: inline-block;
    content: "";
    /*background: transparent url(../images/icon-arrow-small.png) right center no-repeat;*/
    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: -50em -16em;
    width: 0.375em;
    height: 0.5em;
    font-size: 16px;
}

@media screen and (min-width: 0\0) {
    html[class] body .page-header .meganav .meganav-panel li.jshover.has-children > a:after,
    .page-header .meganav .meganav-panel li.active.has-children > a:after,
    .page-header .meganav .meganav-panel li:hover.has-children > a:after {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root html[class] body .page-header .meganav .meganav-panel li.jshover.has-children > a:after,
:root .page-header .meganav .meganav-panel li.active.has-children > a:after,
:root .page-header .meganav .meganav-panel li:hover.has-children > a:after {
    background-image: url(../images/icon-sprites-vector.svg);
}

.page-header .meganav .meganav-panel li.active > a {
    color: #000;
}

    .page-header .meganav .meganav-panel li.active > a:after {
        background-size: 58em 28em !important;
        background-position: -48em -16em !important;
        opacity: 0.5;
    }

    .page-header .meganav .meganav-panel li.active > a:hover {
        color: #ce1141;
    }

        .page-header .meganav .meganav-panel li.active > a:hover:after {
            background-size: 58em 28em !important;
            background-position: -50em -16em !important;
            opacity: 1;
        }

html[class] body .page-header .meganav .meganav-panel li.jshover > .meganav-panel,
.page-header .meganav .meganav-panel li.active > .meganav-panel {
    visibility: visible;
}

@media (min-width: 668px) {
    html[class] body .page-header .meganav .meganav-panel li.jshover > .meganav-panel,
    .page-header .meganav .meganav-panel li.active > .meganav-panel {
        opacity: 1;
        -moz-transform: translateX(0px);
        -ms-transform: translateX(0px);
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }

        html[class] body .page-header .meganav .meganav-panel li.jshover > .meganav-panel:before,
        .page-header .meganav .meganav-panel li.active > .meganav-panel:before {
            opacity: 1;
            -moz-transform: translateX(0px);
            -ms-transform: translateX(0px);
            -webkit-transform: translateX(0px);
            transform: translateX(0px);
        }
}

.page-header .meganav .meganav-panel li.has-children > a:after {
    display: inline-block;
    content: "";
    border: 1px red;
    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: -48em -16em;
    width: 0.375em;
    height: 0.5em;
    font-size: 16px;
    margin-left: -10px;
    -moz-transform: translateX(20px);
    -ms-transform: translateX(20px);
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
}

@media screen and (min-width: 0\0) {
    .page-header .meganav .meganav-panel li.has-children > a:after {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .page-header .meganav .meganav-panel li.has-children > a:after {
    background-image: url(../images/icon-sprites-vector.svg);
}

.page-header .meganav .meganav-panel li a {
    display: block;
    padding: 7px 0;
}

.page-header .meganav .meganav-panel:hover li.active > .meganav-panel {
    visibility: hidden;
}

@media (min-width: 668px) {
    .page-header .meganav .meganav-panel:hover li.active > .meganav-panel {
        opacity: 0;
        -moz-transform: translateX(-10px);
        -ms-transform: translateX(-10px);
        -webkit-transform: translateX(-10px);
        transform: translateX(-10px);
    }

        .page-header .meganav .meganav-panel:hover li.active > .meganav-panel:before {
            opacity: 0;
            -moz-transform: translateX(10px);
            -ms-transform: translateX(10px);
            -webkit-transform: translateX(10px);
            transform: translateX(10px);
        }
}

.page-header .meganav .meganav-panel li.active > a {
    color: #909090;
}

    .page-header .meganav .meganav-panel li.active > a.ui-state-active {
        color: #ce1141;
    }

.page-header .meganav .meganav-sidebar {
    display: none;
    float: right;
    width: 180px;
    width: 19.35484%;
    overflow: auto;
}

@media (max-width: 667px) {
    .page-header .meganav .meganav-sidebar {
        display: none;
    }
}

.page-header .meganav .meganav-sidebar .nav-module {
    min-height: 160px;
    margin-bottom: 25px;
    background-color: #e6e6e6;
    background-image: url(../images/aside-dot-globe.png);
    background-position: right bottom;
    background-repeat: no-repeat;
    padding: 16px;
    position: relative;
    /*
                &:after {
                    background-image: url(../images/aside-dot-globe.png);
                    position: absolute;
                    right: 0;
                    bottom: 0;
                    padding-left: 66px;
                    padding-top: 130px;
                    background-repeat: no-repeat;
                    background-position: left center;
                    content: "";
                }
*/
}

    .page-header .meganav .meganav-sidebar .nav-module h2 {
        text-transform: uppercase;
        font-family: "Nord-Con", "tv_nord", Arial, Helvetica, sans-serif;
        font-weight: 300;
        line-height: 19px;
        font-size: 22px;
        width: 90px;
    }

    .page-header .meganav .meganav-sidebar .nav-module p {
        text-transform: uppercase;
        font-family: "Nord-Con", "tv_nord", Arial, Helvetica, sans-serif;
        line-height: 1;
        color: #ce1141;
        line-height: 19px;
        font-size: 22px;
        width: 90px;
    }

        .page-header .meganav .meganav-sidebar .nav-module p .black-highlight {
            color: #000000;
            display: block;
        }

    .page-header .meganav .meganav-sidebar .nav-module a {
        font-size: 14px;
        line-height: 18px;
        color: #ce1141;
    }

        .page-header .meganav .meganav-sidebar .nav-module a:after {
            display: inline-block;
            width: 5px;
            height: 8px;
            margin-left: 1px;
            content: "";
            background: transparent url(../images/icon-arrow-small.png) right center no-repeat;
        }

.page-header .meganav .footer {
    text-align: left;
    clear: both;
    padding-top: 12px;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    font-size: 16px;
}

@media (min-width: 668px) and (max-width: 800px) {
    .page-header .meganav .footer {
        font-size: 13px;
    }
}

@media (min-width: 801px) and (max-width: 1024px) {
    .page-header .meganav .footer {
        font-size: 14px;
    }
}

@media (min-width: 668px) {
    .page-header .meganav .footer {
        margin-top: 45px;
    }
}

@media (max-width: 667px) {
    .page-header .meganav .footer {
        display: none;
    }
}

@media (min-width: 668px) {
    .page-header .social {
        padding: 70px 0 50px 0;
    }
}

.page-header .social .transition-wrapper {
    -moz-transform: scale(0.94, 0.94);
    -ms-transform: scale(0.94, 0.94);
    -webkit-transform: scale(0.94, 0.94);
    transform: scale(0.94, 0.94);
    font-size: 0;
}

@media (min-width: 1025px) {
    .page-header .social .transition-wrapper {
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media (min-width: 668px) and (max-width: 1024px) {
    .page-header .social .transition-wrapper {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 667px) {
    .page-header .social .transition-wrapper {
        height: calc(100vh - 50px);
        padding: 50px 20px;
        overflow: auto;
        -webkit-overflow-scrolling: touch;
    }
}

.page-header.search-active .button-search:before {
    -moz-transform: scale(0.5, 0.5);
    -ms-transform: scale(0.5, 0.5);
    -webkit-transform: scale(0.5, 0.5);
    transform: scale(0.5, 0.5);
    opacity: 0;
}

.page-header.search-active .button-search:after {
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    opacity: 1;
}

.page-header.search-active .search {
    opacity: 1;
    visibility: visible;
}

    .page-header.search-active .search .transition-wrapper {
        -moz-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }

@media (min-width: 668px) {
    .page-header.search-active .button-search {
        border-right-color: transparent;
    }
}

@media (max-width: 667px) {
    .page-header.search-active .button-search {
        border-bottom-color: transparent;
    }
}

.page-header.global-active {
    /*
        .logo-wrapper {
            @include tablet { // TEMP: this is so any contact/global icons that go behind the logo on narrow viewports are obscured
                height: 100%;
                background-color: white;
                z-index: 2;
            }
        }
*/
}

    .page-header.global-active .button-global:before {
        -moz-transform: scale(0.5, 0.5);
        -ms-transform: scale(0.5, 0.5);
        -webkit-transform: scale(0.5, 0.5);
        transform: scale(0.5, 0.5);
        opacity: 0;
    }

    .page-header.global-active .button-global:after {
        -moz-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
        opacity: 1;
    }

    .page-header.global-active .global {
        opacity: 1;
        visibility: visible;
    }

        .page-header.global-active .global .transition-wrapper {
            -moz-transform: scale(1, 1);
            -ms-transform: scale(1, 1);
            -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
        }

@media (min-width: 668px) {
    .page-header.global-active .button-global {
        border-left-color: transparent;
    }
}

@media (max-width: 667px) {
    .page-header.global-active .button-global {
        border-bottom-color: transparent;
    }
}

.page-header.global-active .global {
    /*
      @include mobile {
          box-shadow: 0px -5px 6px 0px rgba(0, 0, 0, 0.1);
      }
  */
}

@media (min-width: 668px) {
    .page-header.global-active .global {
        box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.12);
    }
}

.page-header.meganav-active .button-meganav:before {
    -moz-transform: scale(0.5, 0.5);
    -ms-transform: scale(0.5, 0.5);
    -webkit-transform: scale(0.5, 0.5);
    transform: scale(0.5, 0.5);
    opacity: 0;
}

.page-header.meganav-active .button-meganav:after {
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    opacity: 1;
}

.page-header.meganav-active .meganav {
    opacity: 1;
    visibility: visible;
}

    .page-header.meganav-active .meganav .transition-wrapper {
        -moz-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }

.page-header.meganav-active .button-meganav {
    border-bottom-color: transparent;
}

.page-header.meganav-active .meganav {
    pointer-events: all;
    /*
      @include mobile {
          box-shadow: 0px -5px 6px 0px rgba(0, 0, 0, 0.1);
      }
  */
}

@media (min-width: 668px) {
    .page-header.meganav-active .meganav {
        box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.12);
    }
}

@media screen and (min-width: 0\0) {
    .page-header.meganav-active .meganav {
        display: block;
    }
}

@media (max-width: 667px) {
    .page-header.meganav-active .meganav {
        z-index: 1;
    }
}

.page-header.meganav-active .search-button {
    border-bottom: 1px solid #e6e6e6;
}

.page-header.social-active .button-social:before {
    -moz-transform: scale(0.5, 0.5);
    -ms-transform: scale(0.5, 0.5);
    -webkit-transform: scale(0.5, 0.5);
    transform: scale(0.5, 0.5);
    opacity: 0;
}

.page-header.social-active .button-social:after {
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    opacity: 1;
}

.page-header.social-active .social {
    opacity: 1;
    visibility: visible;
}

    .page-header.social-active .social .transition-wrapper {
        -moz-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }

.page-header.social-active .button-social {
    border-bottom-color: transparent;
}

.page-header.social-active .social {
    pointer-events: all;
    /*
      @include mobile {
          box-shadow: 0px -5px 6px 0px rgba(0, 0, 0, 0.1);
      }
  */
}

@media (min-width: 668px) {
    .page-header.social-active .social {
        box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.12);
    }
}

@media (max-width: 667px) {
    .page-header.social-active .social {
        z-index: 1;
    }
}

@media (min-width: 668px) {
    .page-header.collapsed .constrained {
        height: 50px;
    }

    .page-header.collapsed .logo-wrapper {
        border-bottom: none;
    }

        .page-header.collapsed .logo-wrapper .logo {
            display: block;
        }

            .page-header.collapsed .logo-wrapper .logo:before {
                /*@include translate(-6px, 0);*/
                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: -44em 0em;
                width: 9.125em;
                height: 1.25em;
                font-size: 16px;
            }
}

@media screen and (min-width: 668px) and (min-width: 0\0) {
    .page-header.collapsed .logo-wrapper .logo:before {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

@media (min-width: 668px) {
    _:-ms-fullscreen,
    :root .page-header.collapsed .logo-wrapper .logo:before {
        background-image: url(../images/icon-sprites-vector.svg);
    }
}

@media (min-width: 668px) and (min-width: 668px) {
    .page-header.collapsed .header-buttons.header-buttons-left {
        left: 178px;
    }
}

@media (min-width: 668px) {
    .page-header.collapsed .header-content-wrapper {
        left: 280px;
        width: calc(100% - 380px);
    }

    .page-header.collapsed .quick-links {
        opacity: 0;
        -moz-transform: translateY(-50px);
        -ms-transform: translateY(-50px);
        -webkit-transform: translateY(-50px);
        transform: translateY(-50px);
        pointer-events: none;
    }

    .page-header.collapsed .search input[type=text] {
        padding: 7px;
        font-size: 16px;
    }
}

@media (min-width: 668px) and (min-width: 668px) {
    .page-header.collapsed .search .transition-wrapper {
        padding-top: 5px;
    }
}

@media (min-width: 668px) {
    .page-header.collapsed .global .global-item:before {
        -moz-transform: scale(0.7, 0.7);
        -ms-transform: scale(0.7, 0.7);
        -webkit-transform: scale(0.7, 0.7);
        transform: scale(0.7, 0.7);
    }

    .page-header.collapsed .global .global-item h2 {
        -moz-transform: translateY(6px);
        -ms-transform: translateY(6px);
        -webkit-transform: translateY(6px);
        transform: translateY(6px);
    }
}

@media (min-width: 668px) and (min-width: 668px) {
    .page-header.collapsed .global .global-col {
        padding: 10px 10px 0;
    }

        .page-header.collapsed .global .global-col .select-dropdown {
            margin-top: -5px;
        }
}

@media (min-width: 668px) {
    .page-header.collapsed .header-buttons .button-search {
        -moz-transform: translateX(50px);
        -ms-transform: translateX(50px);
        -webkit-transform: translateX(50px);
        transform: translateX(50px);
    }

    .page-header.collapsed .header-buttons .button-meganav {
        top: 0;
    }

    .page-header.collapsed .header-buttons .button-global {
        -moz-transform: translateX(-50px);
        -ms-transform: translateX(-50px);
        -webkit-transform: translateX(-50px);
        transform: translateX(-50px);
    }
}

@media (min-width: 668px) and (min-width: 668px) {
    .page-header.collapsed .header-buttons .button-social {
        top: 0px;
    }
}

@media (max-width: 667px) {
    .page-header.collapsed .header-content-wrapper {
        margin-top: -50px;
    }
}

.page-header .search {
    /*
        .input-wrapper {
            position: relative;

            @include desktop {
                padding-right: 120px; // space for the absolute-positioned search button
            }

            @include mobile-and-tablet {
                padding-right: 40px; // space for the absolute-positioned search button
                border: 1px solid $grey-ohGodSoManyGreys;
            }
            //border-bottom: 2px solid rgba($grey-dark, 0.5);
        }
*/
}

    .page-header .search #quicksearch-wrapper {
        display: inline;
    }

@media (max-width: 667px) {
    .page-header .search #quicksearch-wrapper {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (min-width: 668px) {
    .page-header .search #quicksearch-wrapper .transition-wrapper {
        position: relative;
        z-index: 1;
    }
}

.page-header .search #quicksearch-wrapper.loading .input-wrapper {
    background: transparent url(../images/ajax-loader.gif) calc(100% - 35px) center no-repeat;
}

@media (max-width: 1024px) {
    .page-header .search #quicksearch-wrapper.loading .input-wrapper {
        background-position: calc(100% - 5px) center;
    }
}

.page-header .search #quicksearch-wrapper.loading button[type=submit] {
    opacity: 0;
}

.page-header .search input[type=text] {
    position: relative;
    height: 40px;
    padding: 0 3.57143%;
    font-size: 16px;
    font-weight: bold;
    -moz-transition: all 275ms cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: all 275ms cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transition: all 275ms cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 275ms cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 3;
    padding-right: 40px;
}

    .page-header .search input[type=text]::-ms-clear {
        display: none;
    }

@media (min-width: 1025px) {
    .page-header .search input[type=text] {
        border: 1px solid #d1d1d1;
    }
}

.page-header .search input[type=text]::placeholder {
    font-weight: 300;
}

.page-header .search input[type=text]::-webkit-input-placeholder {
    font-weight: 300;
}

.page-header .search input[type=text]::-moz-placeholder {
    font-weight: 300;
}

.page-header .search input[type=text]:-ms-input-placeholder {
    font-weight: 300;
}

.page-header .search input[type=text]:-moz-placeholder {
    font-weight: 300;
}

@media (max-width: 1024px) {
    .page-header .search button[type=submit] {
        -moz-transition: opacity 0.2s ease;
        -o-transition: opacity 0.2s ease;
        -webkit-transition: opacity 0.2s ease;
        transition: opacity 0.2s ease;
        z-index: 3;
    }
}

.page-header .search .search-results {
    background-color: white;
}

@media (max-width: 667px) {
    .page-header .search .search-results .ui-autocomplete:not(:empty) {
        box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
        margin-bottom: 50px;
    }
}

@media (min-width: 668px) {
    .page-header .search .search-results {
        /*
        @include mobile {
            box-shadow: 0px -5px 6px 0px rgba(0, 0, 0, 0.1);
        }
    */
    }
}

@media (min-width: 668px) and (min-width: 668px) {
    .page-header .search .search-results {
        box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.12);
    }
}

.page-header .search .search-results ul {
    position: static !important;
    width: 100% !important;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 668px) {
    .page-header .search .search-results ul {
        width: 94% !important;
        max-width: 680px;
    }
}

.page-header .search .search-results ul li a {
    position: relative;
    display: block;
}

@media (max-width: 667px) {
    .page-header .search .search-results ul li a {
        padding-right: 115px;
    }
}

.page-header .search .search-results ul li a h2 {
    margin-bottom: 10px;
    font-family: "roboto", Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.375;
    text-transform: none;
}

.page-header .search .search-results ul li a .search-result-breadcrumb {
    font-weight: 300;
    font-size: 12px;
    line-height: 1.33333;
}

.page-header .search .search-results ul li a .search-match {
    background-color: transparent;
    font-weight: bold;
}

.page-header .search .search-results ul li a .search-result-type {
    position: absolute;
    right: 0;
    top: 18px;
    font-weight: 500;
    line-height: 1.28571;
}

@media (min-width: 668px) {
    .page-header .search .search-results ul li a .search-result-type {
        width: 150px;
        padding-left: 40px;
        padding-right: 20px;
        font-size: 14px;
    }
}

@media (max-width: 667px) {
    .page-header .search .search-results ul li a .search-result-type {
        width: 100px;
        padding-left: 35px;
        font-size: 12px;
    }
}

.page-header .search .search-results ul li a .search-result-type:before {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    width: 28px;
    height: 32px;
    background-repeat: no-repeat;
    background-position: left top;
}

@media (max-width: 667px) {
    .page-header .search .search-results ul li a .search-result-type:before {
        background-size: 60%;
    }
}

.page-header .search .search-results ul li a .search-result-type.document:before {
    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: -24em -8em;
    width: 1.6875em;
    height: 1.875em;
    font-size: 16px;
}

@media screen and (min-width: 0\0) {
    .page-header .search .search-results ul li a .search-result-type.document:before {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .page-header .search .search-results ul li a .search-result-type.document:before {
    background-image: url(../images/icon-sprites-vector.svg);
}

.page-header .search .search-results ul li a .search-result-type.page:before {
    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: -40em -4em;
    width: 1.5em;
    height: 1.5em;
    font-size: 16px;
}

@media screen and (min-width: 0\0) {
    .page-header .search .search-results ul li a .search-result-type.page:before {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .page-header .search .search-results ul li a .search-result-type.page:before {
    background-image: url(../images/icon-sprites-vector.svg);
}

.page-header .search .search-results ul li a .search-result-type.pdf:before {
    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: -20em -8em;
    width: 1.625em;
    height: 1.875em;
    font-size: 16px;
}

@media screen and (min-width: 0\0) {
    .page-header .search .search-results ul li a .search-result-type.pdf:before {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .page-header .search .search-results ul li a .search-result-type.pdf:before {
    background-image: url(../images/icon-sprites-vector.svg);
}

.page-header .search .search-results ul li a .search-result-type.video:before {
    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: -44em -8em;
    width: 1.5625em;
    height: 1.9375em;
    font-size: 16px;
}

@media screen and (min-width: 0\0) {
    .page-header .search .search-results ul li a .search-result-type.video:before {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .page-header .search .search-results ul li a .search-result-type.video:before {
    background-image: url(../images/icon-sprites-vector.svg);
}

.page-header .search .search-results ul li:not(.view-all-wrapper) a {
    padding: 15px 170px 15px 2.94118%;
    border-bottom: 1px solid #d1d1d1;
}

@media (max-width: 667px) {
    .page-header .search .search-results ul li:not(.view-all-wrapper) a {
        padding-right: 120px;
    }
}

.page-header .search .search-results ul li:not(.view-all-wrapper) a:hover {
    color: #ce1141;
    text-decoration: none;
}

    .page-header .search .search-results ul li:not(.view-all-wrapper) a:hover .search-result-type {
        text-decoration: underline;
    }

        .page-header .search .search-results ul li:not(.view-all-wrapper) a:hover .search-result-type.document:before {
            background-position: -26em -8em;
        }

        .page-header .search .search-results ul li:not(.view-all-wrapper) a:hover .search-result-type.page:before {
            background-position: -44em -4em;
        }

        .page-header .search .search-results ul li:not(.view-all-wrapper) a:hover .search-result-type.pdf:before {
            background-position: -22em -8em;
        }

        .page-header .search .search-results ul li:not(.view-all-wrapper) a:hover .search-result-type.video:before {
            background-position: 0em -12em;
        }

.page-header .search .search-results ul li.view-all-wrapper {
    padding: 15px 0 0 2.94118%;
}

    .page-header .search .search-results ul li.view-all-wrapper .view-all {
        display: block;
        min-height: 30px;
        font-size: 14px;
        font-weight: 500;
        padding-bottom: 30px;
    }

        .page-header .search .search-results ul li.view-all-wrapper .view-all:hover:before {
            background-position: -44em -4em;
        }


/* Background overlay mobile nav */

@media (max-width: 667px) {
    body:after {
        position: fixed;
        left: 0;
        top: 0;
        width: 100vw;
        height: 100vh;
        background-color: white;
        content: "";
        opacity: 0;
        visibility: hidden;
        -moz-transition: all 220ms ease;
        -o-transition: all 220ms ease;
        -webkit-transition: all 220ms ease;
        transition: all 220ms ease;
        z-index: 3;
    }

    body.mobile-nav-is-active,
    body.mobile-resource-nav-is-active {
        overflow-y: hidden;
    }

        body.mobile-nav-is-active:after,
        body.mobile-resource-nav-is-active:after {
            opacity: 1;
            overflow: hidden;
            visibility: visible;
        }
}

.language-dropdown {
    position: relative;
    height: 30px;
    font-family: "Nord-Con", "tv_nord", Arial, Helvetica, sans-serif;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: bold;
}

    .language-dropdown .dropdown-header {
        -moz-user-select: -moz-none;
        -ms-user-select: none;
        -webkit-user-select: none;
        user-select: none;
        display: inline-block;
        color: #ce1141;
        cursor: default;
    }

        .language-dropdown .dropdown-header:after {
            display: inline-block;
            margin-left: 5px;
            background: transparent url(../images/icon-arrow-down-red.png) 0 0 no-repeat;
        }

    .language-dropdown .dropdown-options {
        background-color: white;
    }

        .language-dropdown .dropdown-options li {
            border-bottom: 1px solid #d1d1d1;
        }

            .language-dropdown .dropdown-options li a {
                display: block;
                height: 100%;
                padding: 8px;
            }

                .language-dropdown .dropdown-options li a:hover {
                    background-color: rgba(0, 0, 0, 0.075);
                }

@media (max-width: 667px) {
    .no-flexbox .quick-links {
        height: 100%;
    }
}

@media (min-width: 668px) {
    .no-flexbox .quick-links .quick-link-group {
        float: left;
    }
}

@media (max-width: 667px) {
    .no-flexbox .quick-links .quick-link-group.column-three {
        height: 100%;
    }
}


/*
.page-header, .social {
    position: absolute;
    top: 100%;
    left: 0;//-1px;
    width: 100%; //calc(100% + 2px);
    background-color: white;
    @include transition(opacity $fade-in-speed ease, visibility $fade-in-speed ease); // TODO: make more specific
    opacity: 0;
    visibility: hidden;
    margin-top: 1px;
    z-index: -1; // ensure top shadow appears below upper control panel
    
     @include rew {
        padding: 70px 0 50px 0;
    }

    .transition-wrapper {
        @include scale($scale-in-scale);
        font-size: 0; // Prevent white-space between inline-block child columns
        @include desktop {
            padding-left: 40px;
            padding-right: 40px;
        }
         
        @include tablet {
            padding-left: 20px;
            padding-right: 20px;
        }

        @include mobile {
            height: calc(100vh - 50px); // calculate correct height for scrollbars to appear
            padding: 50px $mobile-gutter-width;
            overflow: auto;
            -webkit-overflow-scrolling: touch;
        }
    }
}
*/

.social-feed-linkedin {
    display: none !important;
}

.social-feed-container {
    font-size: 0;
    margin-left: -10px;
    margin-right: -10px;
}

    .social-feed-container .social-feed {
        display: inline-block;
        min-width: 33.33%;
        /*min-width: 23%;*/
        padding: 0 10px;
        vertical-align: top;
        font-size: 16px;
    }

@media (max-width: 667px) {
    .social-feed-container .social-feed {
        min-width: 100%;
        margin-bottom: 30px;
    }
}

.social-feed-container .social-feed .social-embed {
    min-height: 220px;
    background: transparent url(../images/ajax-loader.gif) center 100px no-repeat;
}

.social-feed-container .social-feed header {
    margin-bottom: 10px;
}

    .social-feed-container .social-feed header h2 {
        position: relative;
        display: inline-block;
        font-family: "roboto", Arial, Helvetica, sans-serif;
        font-size: 16px;
        font-weight: bold;
    }

        .social-feed-container .social-feed header h2:before {
            position: relative;
            bottom: -5px;
            display: inline-block;
            width: 22px;
            height: 22px;
            margin-right: 8px;
            background-position: center center;
            background-repeat: no-repeat;
            border: 1px solid #363636;
            content: "";
        }

    .social-feed-container .social-feed header .social-action {
        display: none;
        font-size: 12px;
    }

.social-feed-container .social-feed.social-feed-facebook h2:before {
    background-image: url(../images/icon-facebook.png);
}

.social-feed-container .social-feed.social-feed-twitter h2:before {
    background-image: url(../images/icon-twitter.png);
}

.social-feed-container .social-feed.social-feed-linkedin h2:before {
    background-image: url(../images/icon-linkedin.png);
}

.social-feed-container .social-feed.social-feed-youtube h2:before {
    background-image: url(../images/icon-youtube.png);
}

.page-header .social-feed-container.constrained {
    height: auto;
    background: none;
    border: none;
}

@media (max-width: 667px) {
    .meganav-panels-wrapper,
    .meganav-panel {
        min-height: 0 !important;
    }
}


/* JQuery UI Megamenu */

@media (min-width: 668px) {
    .page-header .meganav .meganav-panel {
        bottom: 0;
    }

        .page-header .meganav .meganav-panel.ui-state-active {
            display: block !important;
            visibility: visible !important;
            transform: translateX(0) !important;
            opacity: 1 !important;
        }

            .page-header .meganav .meganav-panel.ui-state-active:before {
                transform: translateX(0) !important;
                opacity: 1 !important;
            }

            .page-header .meganav .meganav-panel.ui-state-active > ul {
                display: block !important;
            }

    .page-header .meganav.init li.active > .meganav-panel > ul {
        display: block !important;
    }

        .page-header .meganav.init li.active > .meganav-panel > ul.active-child-hidden {
            display: none !important;
        }
}

@media (max-width: 991px) {
    .page-header .meganav {
        padding-top: 75px;
    }
}

@media (max-width: 668px) {
    .page-header .meganav {
        padding-top: 0;
    }
}

.page-header .meganav .breadcrumbs {
    top: -75px;
    width: 100%;
    border-bottom: 1px solid #cccccc;
    padding: 20px 0;
    font-size: 12px;
    display: block;
    align-items: center;
    position: absolute;
    z-index: 1;
}

@media (max-width: 991px) {
    .page-header .meganav .breadcrumbs {
        padding: 15px 0;
    }
}

@media (max-width: 668px) {
    .page-header .meganav .breadcrumbs {
        display: none;
    }
}

.page-header .meganav .breadcrumbs a {
    vertical-align: middle;
}

    .page-header .meganav .breadcrumbs a:after {
        display: inline-block;
        margin: 0 12px 0 13px;
        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: -52em -16em;
        width: 0.5em;
        height: 0.375em;
        font-size: 1.35em;
        content: "";
        -moz-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
    }


/*

    Top Navigation Adjustments 202007

*/

.page-header .header-content-wrapper .search,
.page-header .header-content-wrapper .global {
    z-index: 2;
}

/* .page-header .header-content-wrapper .quick-links .quick-link-list {
    transform: none !important;
} */

    .page-header .header-content-wrapper .quick-links .quick-link-list li > a {
        text-decoration: none;
    }

    .page-header .header-content-wrapper .quick-links .quick-link-list li .quick-link-inner {
        padding: 0;
        display: flex;
        flex-direction: column;
        position: relative;
        height: 75px;
    }

        .page-header .header-content-wrapper .quick-links .quick-link-list li .quick-link-inner .category {
            width: 100%;
            background: #d8d8d8;
            padding: 4px 15px;
            font-family: "Nord-Con", "tv_nord", Arial, Helvetica, sans-serif;
            font-weight: bold;
            line-height: 17px;
            text-transform: uppercase;
            font-size: 16px;
            color: #000 !important;
            display: none;
        }

@media (min-width: 668px) and (max-width: 1024px) {
    .page-header .header-content-wrapper .quick-links .quick-link-list li .quick-link-inner .category {
        display: none !important;
    }
}

.page-header .header-content-wrapper .quick-links .quick-link-list li .quick-link-inner .text-wrapper {
    height: 100%;
    width: 70%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 5px 15px;
    position: relative;
    z-index: 2;
}

    .page-header .header-content-wrapper .quick-links .quick-link-list li .quick-link-inner .text-wrapper h2 {
        font-size: 20px;
        line-height: 1;
        margin: 0;
    }

@media (max-width: 1200px) {
    .page-header .header-content-wrapper .quick-links .quick-link-list li .quick-link-inner .text-wrapper h2 {
        font-size: 20px;
    }
}

@media (min-width: 668px) and (max-width: 1024px) {
    .page-header .header-content-wrapper .quick-links .quick-link-list li .quick-link-inner .text-wrapper h2 {
        font-size: 18px;
    }
}

.page-header .header-content-wrapper .quick-links .quick-link-list li .quick-link-inner .text-wrapper .date {
    display: block;
    font-size: 15px;
    font-weight: normal;
}

.page-header .header-content-wrapper .quick-links .quick-link-list li .quick-link-inner .image {
    position: absolute;
    right: 0;
    top: 0;
    width: 60%;
    height: 100%;
    background-position: left bottom;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
}

.page-header .header-content-wrapper .quick-links .quick-link-list li .quick-link-inner--news .text-wrapper {
    height: 100%;
    width: 100%;
}

/* .page-header .header-content-wrapper .quick-links .quick-link-list li:first-child .quick-link-inner {
    height: 100px;
} */

    .page-header .header-content-wrapper .quick-links .quick-link-list li:first-child .quick-link-inner .category {
        display: block;
    }

.page-header .header-content-wrapper .quick-links .quick-link-list li.view-all a {
    padding: 15px;
}

    .page-header .header-content-wrapper .quick-links .quick-link-list li.view-all a:before {
        display: none;
    }

.page-header .header-content-wrapper .quick-links .quick-link-list li.view-all + .view-all {
    border-top: 1px solid #e6e6e6;
}

@media (max-width: 667px) {
    .page-header .header-content-wrapper .quick-links .quick-link-list li:first-child .quick-link-inner .category {
        display: block;
    }
    .page-header .quick-link-list {
        border-bottom: 1px solid #e6e6e6;
    }

    .page-header .column-three {
        overflow: hidden;
    }

        .page-header .column-three .category,
        .page-header .column-three .text-wrapper {
            display: none !important;
        }

        .page-header .column-three .image {
            width: 70px !important;
        }

    .header-buttons.header-buttons-right button {
        z-index: 10;
    }
}


/* ----- Page footer ----- */

.page-footer {
    background-color: #363636;
    color: #aaa;
    font-size: 14px;
    line-height: 20px;
}

@media (min-width: 668px) {
    .page-footer .constrained {
        max-width: calc(1180px + 30px);
        padding-left: 15px;
        padding-right: 15px;
    }
}

.page-footer:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 200px;
    height: calc(100% - 200px);    
    background-color: #363636;
    z-index: -1;
}

@media (max-width: 667px) {
    .page-footer {
        overflow-x: hidden;
    }
}

.page-footer a,
.page-footer .link,
.page-footer .list-actions a,
.list-actions .page-footer a,
.page-footer .links-document .links-document-actions a,
.links-document .links-document-actions .page-footer a,
.page-footer #press-release a[href*="http://phx.corporate-ir.net/External.File"],
#press-release .page-footer a[href*="http://phx.corporate-ir.net/External.File"] {
    color: inherit;
}

    .page-footer a:hover,
    .page-footer .link:hover,
    .page-footer .list-actions a:hover,
    .list-actions .page-footer a:hover,
    .page-footer .links-document .links-document-actions a:hover,
    .links-document .links-document-actions .page-footer a:hover,
    .page-footer #press-release a[href*="http://phx.corporate-ir.net/External.File"]:hover,
    #press-release .page-footer a[href*="http://phx.corporate-ir.net/External.File"]:hover {
        color: #efdf00;
    }

@media (max-width: 800px) {
    .page-footer .copyright-notice {
        float: left;
        width: 50%;
        padding-left: 18px;
        padding-bottom: 20px;
        text-align: left;
    }
}

@media (min-width: 801px) and (max-width: 1024px) {
    .page-footer .copyright-notice {
        width: 12.5%;
        display: inline-block;
        vertical-align: middle;
    }
}

@media (min-width: 1025px) {
    .page-footer .copyright-notice {
        width: 12.5%;
        display: inline;
        vertical-align: middle;
    }
}

.page-footer .credits {
    visibility: hidden;
    display: inline-flex;
}

@media (max-width: 800px) {
    .page-footer .credits {
        width: 50%;
        padding-right: 18px;
        text-align: left;
        padding-bottom: 20px;
    }
}

@media (min-width: 801px) and (max-width: 1024px) {
    .page-footer .credits {
        display: inline;
        vertical-align: middle;
        padding-left: 8px;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }
}

@media (min-width: 1025px) {
    .page-footer .credits {
        display: inline;
        vertical-align: middle;
        padding-left: 8px;
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
    }
}

.page-footer .footer-desktop {
    display: none;
}

@media (min-width: 801px) {
    .page-footer .footer-desktop {
        display: inline;
    }
}

.page-footer .footer-mobile-tablet {
    display: block;
}

@media (min-width: 801px) {
    .page-footer .footer-mobile-tablet {
        display: none;
    }
}

.page-footer .footer-mobile-tablet.mobile-trigger {
    line-height: 0;
}

@media (max-width: 667px) {
    .page-footer .footer-navigation {
        -moz-column-count: 2;
        -moz-column-gap: 0px;
        -webkit-column-count: 2;
        -webkit-column-gap: 20px;
        column-count: 2;
        column-gap: 0px;
        margin: 45px 18px 25px 18px;
    }
}

@media (min-width: 668px) and (max-width: 800px) {
    .page-footer .footer-navigation {
        -moz-column-count: 3;
        -moz-column-gap: 20px;
        -webkit-column-count: 3;
        -webkit-column-gap: 20px;
        column-count: 3;
        column-gap: 20px;
        margin: 45px 0 25px 0;
    }
}

@media (min-width: 801px) and (max-width: 1024px) {
    .page-footer .footer-navigation {
        width: 45.83333%;
        display: inline-block;
        text-align: left;
        vertical-align: middle;
    }
}

@media (min-width: 1025px) {
    .page-footer .footer-navigation {
        width: 50%;
        display: inline-block;
        text-align: left;
        vertical-align: middle;
        padding-left: 12px;
    }
}

@media (min-width: 1220px) {
    .page-footer .footer-navigation {
        width: 58.33333%;
    }
}

.page-footer .footer-navigation a {
    margin: 0 6px 0 7px;
    color: white;
    text-align: left;
    display: inline-block;
}

@media (max-width: 800px) {
    .page-footer .footer-navigation a {
        display: block;
        margin: 0 18px 30px 18px;
    }
}

@media (max-width: 667px) {
    .page-footer .footer-navigation a {
        margin: 0 0 30px 0;
    }
}

.page-footer .footer-navigation a:hover {
    color: #efdf00;
}

.news-alerts-trigger {
    height: 75px;
    padding: 0 30px;
    background-color: #363636;
    color: white;
    cursor: pointer;
    font-family: "Nord-Con", "tv_nord", Arial, Helvetica, sans-serif;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: bold;
    -moz-transition: background-color 0.3s ease, box-shadow 0.3s ease;
    -o-transition: background-color 0.3s ease, box-shadow 0.3s ease;
    -webkit-transition: background-color 0.3s ease, box-shadow 0.3s ease;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

@media (max-width: 800px) {
    .news-alerts-trigger {
        width: 100%;
        background-color: #404040;
        border: 1px solid #555555;
        padding: 0 18px;
    }
}

@media (min-width: 801px) and (max-width: 1024px) {
    .news-alerts-trigger {
        width: 20.83333%;
        display: inline;
        padding: 0 10px;
    }
}

@media (min-width: 1025px) and (max-width: 1179px) {
    .news-alerts-trigger {
        width: 16.66667%;
        display: inline;
        padding: 0 10px;
    }
}

@media (min-width: 1180px) {
    .news-alerts-trigger {
        width: 16.66667%;
        display: inline;
        padding: 0 16px 0 24px;
    }
}

.news-alerts-trigger .text-wrapper {
    padding-left: 38px;
    vertical-align: middle;
    position: relative;
}

    .news-alerts-trigger .text-wrapper:before {
        position: absolute;
        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: -40em -20em;
        width: 1.375em;
        height: 1em;
        font-size: 16px;
        top: 0;
        left: 0;
    }

@media screen and (min-width: 0\0) {
    .news-alerts-trigger .text-wrapper:before {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .news-alerts-trigger .text-wrapper:before {
    background-image: url(../images/icon-sprites-vector.svg);
}

@media (max-width: 667px) {
    .news-alerts-trigger .text-wrapper {
        float: left;
    }
}

.news-alerts-trigger .text-wrapper:after {
    display: inline-block;
    margin-left: 15px;
    content: "";
    -moz-transition: -moz-transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: -o-transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transition: -webkit-transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    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: -36em -20em;
    width: 0.75em;
    height: 0.5em;
    font-size: 16px;
    /*@include rotateZ(90deg);*/
}

@media screen and (min-width: 0\0) {
    .news-alerts-trigger .text-wrapper:after {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .news-alerts-trigger .text-wrapper:after {
    background-image: url(../images/icon-sprites-vector.svg);
}

.news-alerts-trigger.active {
    background-color: #404040;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.2);
    border: none;
}

    .news-alerts-trigger.active .text-wrapper:after {
        -moz-transform: rotate(-180deg);
        -ms-transform: rotate(-180deg);
        -webkit-transform: rotate(-180deg);
        transform: rotate(-180deg);
    }

.news-alerts-trigger:hover {
    color: #efdf00;
}

    .news-alerts-trigger:hover .text-wrapper:before {
        background-position: -42em -20em;
    }

    .news-alerts-trigger:hover .text-wrapper:after {
        background-position: -38em -20em;
    }

.footer-form-wrapper {
    background-color: #404040;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.2);
    color: white;
    text-align: left;
}

@media (min-width: 1025px) {
    .footer-form-wrapper {
        position: relative;
        margin-left: calc(-50vw + 50.8%);
        margin-right: calc(-50vw + 50.8%);
    }
}

@media (max-width: 667px) {
    .footer-form-wrapper {
        padding: 0 18px;
    }
}

.footer-form-wrapper .form-wrapper.form-loading input[type=submit],
.footer-form-wrapper .form-wrapper.form-loading input[type=button] {
    background: transparent url(../images/ajax-loader-invert.gif) center center no-repeat !important;
}

.footer-form-wrapper .constrained {
    padding-top: 60px;
    padding-bottom: 60px;
    z-index: 1;
}

@media (min-width: 668px) {
    .footer-form-wrapper .constrained {
        background-color: #404040;
    }
}

@media (max-width: 667px) {
    .footer-form-wrapper .constrained {
        padding-top: 30px;
        padding-bottom: 30px;
    }
}

.footer-form-wrapper .constrained .footer-form-intro-heading {
    position: relative;
    margin-bottom: 45px;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
}

    .footer-form-wrapper .constrained .footer-form-intro-heading:before {
        display: block;
        position: absolute;
        bottom: -15px;
        left: 0;
        width: 40px;
        height: 2px;
        border-top: 2px solid;
        border-color: inherit;
        content: "";
    }

.footer-form-wrapper .constrained p {
    font-size: 16px;
    font-weight: 400;
}

.footer-form-wrapper .constrained .biz-form input[type=email],
.footer-form-wrapper .constrained .biz-form input[type=text],
.footer-form-wrapper .constrained .biz-form textarea,
.footer-form-wrapper .constrained .biz-form label,
.footer-form-wrapper .constrained .biz-form .control-label {
    color: white;
}

.footer-form-wrapper .constrained .biz-form input {
    background-color: transparent;
}

    .footer-form-wrapper .constrained .biz-form input[type=submit] {
        color: white;
        border: 1px solid white;
        border-radius: 0;
        height: 35px;
        background-image: url(../images/icon-arrow-small-white.png);
    }

@media (min-width: 668px) {
    .footer-form-wrapper .constrained .biz-form input[type=submit] {
        margin-left: 75px;
    }
}

@media (min-width: 1025px) {
    .footer-form-wrapper .constrained .biz-form input[type=submit] {
        margin-left: 95px;
    }
}

.footer-form-wrapper .constrained .biz-form input[type=submit]:hover {
    color: #efdf00;
    border: 1px solid #efdf00;
    background-image: url(../images/icon-arrow-small-yellow.png);
}

@media (max-width: 667px) {
    .footer-form-wrapper .constrained .biz-form input[type=submit] {
        width: 100%;
        background: transparent url(../images/icon-arrow-small-white.png) calc(50vw + 2%) center no-repeat;
    }
}

.footer-form-wrapper .constrained .biz-form .ErrorMessage {
    display: block;
    color: #efdf00;
    margin-bottom: 20px;
}

@media (min-width: 940px) {
    .footer-form-wrapper .constrained .biz-form .recaptcha-wrapper,
    .footer-form-wrapper .constrained .biz-form .ErrorMessage {
        margin-left: 75px;
    }
}

@media (min-width: 1025px) {
    .footer-form-wrapper .constrained .biz-form .recaptcha-wrapper,
    .footer-form-wrapper .constrained .biz-form .ErrorMessage {
        margin-left: 95px;
    }
}

@media (min-width: 668px) {
    .footer-form-wrapper .constrained .biz-form label,
    .footer-form-wrapper .constrained .biz-form .control-label {
        width: 55px;
    }
}

@media (min-width: 668px) {
    .footer-form-wrapper .constrained .biz-form .editing-form-control-nested-control {
        width: calc(100% - 100px);
    }
}

@media (min-width: 1025px) {
    .footer-form-wrapper .constrained .biz-form .field_Email {
        width: 50%;
    }
}

.footer-form-wrapper .constrained .biz-form .field-email {
    margin-bottom: 10px;
}

@media (min-width: 1025px) {
    .footer-form-wrapper .constrained .biz-form .field-email {
        margin-top: 65px;
        margin-bottom: 20px;
        display: block;
        overflow: auto;
    }
}

@media (min-width: 1025px) {
    .footer-form-wrapper .constrained .biz-form .field-email .editing-form-control-nested-control {
        overflow: auto;
    }
}

.footer-form-wrapper .constrained .biz-form .field-email label {
    font-family: "roboto", Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 22px;
}

@media (min-width: 1025px) {
    .footer-form-wrapper .constrained .biz-form .field-email label {
        display: inline;
        float: left;
        padding-right: 30px;
        width: 75px;
    }
}

.footer-form-wrapper .constrained .biz-form .field-email input[type=text] {
    border: 1px solid #f2f2f2;
    height: 36px;
    padding: 5px;
}

@media (min-width: 1025px) {
    .footer-form-wrapper .constrained .biz-form .field-email input[type=text] {
        display: inline;
        float: left;
    }
}

.footer-form-wrapper .constrained .biz-form .checkbox.checkbox-list-vertical label {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 20px;
    width: auto;
}

.footer-form-wrapper .constrained .biz-form .checkbox label:before {
    border: 1px solid #ffffff;
    border-radius: 0;
    width: 22px;
    height: 22px;
    vertical-align: middle;
}

.footer-form-wrapper .constrained .biz-form .checkbox input[type='checkbox']:checked + label:before {
    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: -3.65em -19.65em;
    width: 0.975em;
    height: 0.85em;
    width: 22px;
    height: 22px;
    font-size: -69.6;
    border: 1px solid #ffffff;
}

@media screen and (min-width: 0\0) {
    .footer-form-wrapper .constrained .biz-form .checkbox input[type='checkbox']:checked + label:before {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .footer-form-wrapper .constrained .biz-form .checkbox input[type='checkbox']:checked + label:before {
    background-image: url(../images/icon-sprites-vector.svg);
}

.footer-form-wrapper .constrained .biz-form .privacy-terms {
    margin-top: 25px;
    font-size: 12px;
}

    .footer-form-wrapper .constrained .biz-form .privacy-terms p,
    .footer-form-wrapper .constrained .biz-form .privacy-terms a {
        font-size: 12px;
    }

    .footer-form-wrapper .constrained .biz-form .privacy-terms .link.link-internal,
    .footer-form-wrapper .constrained .biz-form .privacy-terms .list-actions a.link-internal,
    .list-actions .footer-form-wrapper .constrained .biz-form .privacy-terms a.link-internal,
    .footer-form-wrapper .constrained .biz-form .privacy-terms .links-document .links-document-actions a.link-internal,
    .links-document .links-document-actions .footer-form-wrapper .constrained .biz-form .privacy-terms a.link-internal,
    .footer-form-wrapper .constrained .biz-form .privacy-terms #press-release a.link-internal[href*="http://phx.corporate-ir.net/External.File"],
    #press-release .footer-form-wrapper .constrained .biz-form .privacy-terms a.link-internal[href*="http://phx.corporate-ir.net/External.File"] {
        padding-left: 2px;
    }

        .footer-form-wrapper .constrained .biz-form .privacy-terms .link.link-internal:before,
        .footer-form-wrapper .constrained .biz-form .privacy-terms .list-actions a.link-internal:before,
        .list-actions .footer-form-wrapper .constrained .biz-form .privacy-terms a.link-internal:before,
        .footer-form-wrapper .constrained .biz-form .privacy-terms .links-document .links-document-actions a.link-internal:before,
        .links-document .links-document-actions .footer-form-wrapper .constrained .biz-form .privacy-terms a.link-internal:before,
        .footer-form-wrapper .constrained .biz-form .privacy-terms #press-release a.link-internal[href*="http://phx.corporate-ir.net/External.File"]:before,
        #press-release .footer-form-wrapper .constrained .biz-form .privacy-terms a.link-internal[href*="http://phx.corporate-ir.net/External.File"]:before {
            display: none;
        }

@media (min-width: 1025px) {
    .footer-form-wrapper .constrained .biz-form .privacy-terms {
        margin-left: 95px;
    }
}

.footer-form-wrapper .constrained #p_lt_ctl05_FooterNewsAlerts_FooterNewsAlertsUpdatePanel1 .success-heading,
.footer-form-wrapper .constrained #p_lt_ctl06_FooterNewsAlerts_FooterNewsAlertsUpdatePanel1 .success-heading {
    font-size: 54px;
    font-family: "Nord-Con", "tv_nord", Arial, Helvetica, sans-serif;
    margin-bottom: 20px;
}

.footer-form-wrapper .constrained #p_lt_ctl05_FooterNewsAlerts_FooterNewsAlertsUpdatePanel1 .ErrorMessage,
.footer-form-wrapper .constrained #p_lt_ctl06_FooterNewsAlerts_FooterNewsAlertsUpdatePanel1 .ErrorMessage {
    margin-bottom: 20px;
    display: block;
    font-size: 16px;
    color: #efdf00;
}

@media (min-width: 668px) {
    .footer-form-wrapper .constrained #p_lt_ctl05_FooterNewsAlerts_FooterNewsAlertsUpdatePanel1 .ErrorMessage,
    .footer-form-wrapper .constrained #p_lt_ctl06_FooterNewsAlerts_FooterNewsAlertsUpdatePanel1 .ErrorMessage {
        margin: 0px 0 20px 0px;
    }
}

.footer-form-wrapper .constrained #p_lt_ctl05_FooterNewsAlerts_FooterNewsAlertsUpdatePanel1 .update-progress,
.footer-form-wrapper .constrained #p_lt_ctl06_FooterNewsAlerts_FooterNewsAlertsUpdatePanel1 .update-progress {
    margin-top: 10px;
}

@media (min-width: 668px) {
    .footer-form-wrapper .constrained #p_lt_ctl05_FooterNewsAlerts_FooterNewsAlertsUpdatePanel1 .update-progress,
    .footer-form-wrapper .constrained #p_lt_ctl06_FooterNewsAlerts_FooterNewsAlertsUpdatePanel1 .update-progress {
        margin: 10px 0 0 75px;
    }
}

.footer-form-wrapper .constrained .newsletter-choice-wrapper .newsletter-choice-heading {
    margin-bottom: 5px;
    font-size: 18px;
}

.footer-form-wrapper .constrained .newsletter-choice-wrapper input[type='radio'],
.footer-form-wrapper .constrained .newsletter-choice-wrapper input[type='checkbox'] {
    position: absolute;
    visibility: hidden;
}

.footer-form-wrapper .constrained .newsletter-choice-wrapper .newsletter-choice {
    width: calc(33.333% - 20px);
    margin: 0 10px;
    position: relative;
    padding-right: 40px;
    padding-top: 10px;
    border-top: 2px solid #c3c3c3;
    opacity: 0.5;
    -moz-transition: opacity 0.15s ease;
    -o-transition: opacity 0.15s ease;
    -webkit-transition: opacity 0.15s ease;
    transition: opacity 0.15s ease;
}

    .footer-form-wrapper .constrained .newsletter-choice-wrapper .newsletter-choice .newsletter-choice-name {
        font-family: "Nord-Con", "tv_nord", Arial, Helvetica, sans-serif;
        font-size: 18px;
        font-weight: bold;
        text-transform: uppercase;
    }

    .footer-form-wrapper .constrained .newsletter-choice-wrapper .newsletter-choice .newsletter-choice-description {
        display: block;
        font-family: "roboto", Arial, Helvetica, sans-serif;
        font-size: 14px;
        line-height: 22px;
    }

    .footer-form-wrapper .constrained .newsletter-choice-wrapper .newsletter-choice:after {
        position: absolute;
        right: 0;
        top: 50px;
        width: 26px;
        height: 19px;
        background: transparent url(../images/icon-tick-large-white.png) 0 0 no-repeat;
        content: "";
        opacity: 0;
    }

.footer-form-wrapper .constrained .newsletter-choice-wrapper input[type='radio']:checked + .newsletter-choice,
.footer-form-wrapper .constrained .newsletter-choice-wrapper input[type='checkbox']:checked + .newsletter-choice {
    opacity: 1;
}

    .footer-form-wrapper .constrained .newsletter-choice-wrapper input[type='radio']:checked + .newsletter-choice:after,
    .footer-form-wrapper .constrained .newsletter-choice-wrapper input[type='checkbox']:checked + .newsletter-choice:after {
        animation: pulse-in 0.3s ease-out both;
    }

.newsletter-choice-wrapper .grid {
    margin-left: -10px;
}


/* ----- Secondary navigation ---- */

.secondary-navigation {
    position: absolute;
    left: 0;
    width: 100%;
    color: #363636;
    -moz-transition: -moz-transform 275ms cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: -o-transform 275ms cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transition: -webkit-transform 275ms cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 275ms cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 12;
/*changes to meganav added 20210421 
    background-color: white;
*/
}

    .secondary-navigation .constrained {
        border-top: 1px solid #ddd;
        max-width: calc(1180px + 2px);
    }

    .secondary-navigation a {
        color: inherit;
    }

        .secondary-navigation a:hover {
            color: #ce1141;
        }

    .secondary-navigation .breadcrumbs {
        min-height: 50px;
        padding-right: 115px;
        padding-left: 20px;
        background-color: white;
        border-bottom: 1px solid #ddd;
        border-right: 1px solid #ddd;
        border-left: 1px solid #ddd;
        font-size: 12px;
        display: block;
        align-items: center;
        position: relative;
        z-index: 1;
    }

@media (max-width: 667px) {
    .secondary-navigation .breadcrumbs {
        display: none;
    }
}

@media (min-width: 668px) and (max-width: 1024px) {
    .secondary-navigation .breadcrumbs {
        padding-right: 115px;
    }
}

@media (min-width: 1025px) {
    .secondary-navigation .breadcrumbs {
        padding-right: 295px;
    }
}

@media (min-width: 667px) and (max-width: 767px) {
    .secondary-navigation .breadcrumbs {
        font-size: 11px;
    }
}

.secondary-navigation .breadcrumbs .breadcrumb-wrapper {
    display: table;
    width: 100%;
    height: 49px;
}

.secondary-navigation .breadcrumbs .breadcrumb-inner {
    display: table-cell;
    vertical-align: middle;
}

.secondary-navigation .breadcrumbs a {
    vertical-align: middle;
}

    .secondary-navigation .breadcrumbs a:after {
        display: inline-block;
        margin: 0 12px 0 13px;
        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: -52em -16em;
        width: 0.5em;
        height: 0.375em;
        font-size: 1.35em;
        content: "";
        -moz-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
    }

@media screen and (min-width: 0\0) {
    .secondary-navigation .breadcrumbs a:after {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .secondary-navigation .breadcrumbs a:after {
    background-image: url(../images/icon-sprites-vector.svg);
}

.secondary-navigation .breadcrumbs span {
    max-width: calc(100% - 120px);
    text-overflow: ellipsis;
    white-space: nowrap;
    display: inline-block;
    overflow: hidden;
    vertical-align: middle;
}

.secondary-navigation #p_lt_pnlSecondaryNavigation + .breadcrumbs,
.secondary-navigation #p_lt_pnlSubNavButton:visible + .breadcrumbs {
    padding-left: 300px;
}

.secondary-navigation.stuck-to-header,
.secondary-navigation.no-hero {
    position: fixed;
    top: 98px;
    -moz-transition: top 200ms ease;
    -o-transition: top 200ms ease;
    -webkit-transition: top 200ms ease;
    transition: top 200ms ease;
}

    .secondary-navigation.stuck-to-header.header-collapsed,
    .secondary-navigation.no-hero.header-collapsed {
        top: 49px;
    }

    .secondary-navigation.stuck-to-header .subnav,
    .secondary-navigation.no-hero .subnav {
        max-height: calc(100vh - 50px);
    }

@media (min-width: 668px) {
    .secondary-navigation.resource-collapsed .resource-nav-wrapper {
        -moz-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
        z-index: -1;
    }

    .secondary-navigation.resource-collapsed .tabs {
        display: block;
        -moz-transform: translateY(0%);
        -ms-transform: translateY(0%);
        -webkit-transform: translateY(0%);
        transform: translateY(0%);
    }

    .secondary-navigation.resource-collapsed.tab-active .resource-nav-wrapper {
        -moz-transform: translateY(0%);
        -ms-transform: translateY(0%);
        -webkit-transform: translateY(0%);
        transform: translateY(0%);
    }
}

@media (min-width: 668px) and (max-width: 1024px) {
    .secondary-navigation.resource-collapsed .tabs.contact-tab.alerts-tab,
    .secondary-navigation.resource-collapsed .tabs.contact-tab.docs-tab {
        width: 101px;
    }
}

@media (min-width: 668px) {
    .secondary-navigation.closed .button-subnav {
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    .secondary-navigation.closed .subnav-wrapper {
        -moz-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
}

.secondary-navigation .button-subnav {
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 280px;
    min-height: 49px;
    padding-left: 49px;
    padding-right: 30px;
    background-color: white;
    border-left: 1px solid #e6e6e6;
    border-right: 1px solid #e6e6e6;
    color: #ce1141;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    line-height: 1;
    text-align: left;
    -moz-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -moz-transition-delay: 0.1s;
    -o-transition-delay: 0.1s;
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
    z-index: 2;
}

@media (min-width: 668px) {
    .secondary-navigation .button-subnav {
        -moz-transform: translateY(-50px);
        -ms-transform: translateY(-50px);
        -webkit-transform: translateY(-50px);
        transform: translateY(-50px);
    }
}

@media (max-width: 667px) {
    .secondary-navigation .button-subnav {
        display: none;
    }
}

.secondary-navigation .button-subnav:before {
    margin-right: 10px;
    margin-left: -12px;
    display: inline-block;
    height: 12px;
    border-left: 2px solid #ce1141;
    content: "";
}

.secondary-navigation .button-subnav:after {
    position: absolute;
    right: 24px;
    top: 50%;
    width: 4px;
    height: 16px;
    display: block;
    background: transparent url(../images/icon-subnav-show.png) 0 0 no-repeat;
    content: "";
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.secondary-navigation .subnav-wrapper {
    width: 280px;
    background-color: white;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    font-size: 16px;
    -moz-transition: -moz-transform 550ms cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: -o-transform 550ms cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transition: -webkit-transform 550ms cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 550ms cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 667px) {
    .secondary-navigation .subnav-wrapper {
        display: none;
    }
}

@media (min-width: 668px) {
    .secondary-navigation .subnav-wrapper {
        position: absolute;
        left: 0;
        top: 0;
    }
}

.secondary-navigation .subnav-wrapper li {
    line-height: 1.4;
}

.secondary-navigation .subnav-wrapper .subnav {
    overflow-y: auto;
}

    .secondary-navigation .subnav-wrapper .subnav .back {
        position: relative;
    }

        .secondary-navigation .subnav-wrapper .subnav .back:before {
            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: -52em -16em;
            width: 0.5em;
            height: 0.375em;
            font-size: 16px;
            position: absolute;
            left: 30px;
            top: 22px;
            content: "";
            -moz-transform: rotate(90deg);
            -ms-transform: rotate(90deg);
            -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
        }

@media screen and (min-width: 0\0) {
    .secondary-navigation .subnav-wrapper .subnav .back:before {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .secondary-navigation .subnav-wrapper .subnav .back:before {
    background-image: url(../images/icon-sprites-vector.svg);
}

.secondary-navigation .subnav-wrapper .subnav .back:hover:before {
    background-position: -54em -16em;
}

.secondary-navigation .subnav-wrapper .subnav a {
    position: relative;
    display: block;
    padding: 15px 30px 12px 50px;
}

    .secondary-navigation .subnav-wrapper .subnav a.active {
        color: #ce1141;
    }

        .secondary-navigation .subnav-wrapper .subnav a.active:before {
            position: absolute;
            left: 40px;
            top: 18px;
            height: 12px;
            border-left: 2px solid #ce1141;
            content: "";
        }

.secondary-navigation .subnav-wrapper .subnav .expanding-menu {
    margin-bottom: 10px;
}

.secondary-navigation .subnav-wrapper .subnav > li {
    border-bottom: 1px solid #efefef;
}

    .secondary-navigation .subnav-wrapper .subnav > li > a:not(.back) {
        font-weight: bold;
    }

    .secondary-navigation .subnav-wrapper .subnav > li:last-child {
        border-bottom: none;
    }

.secondary-navigation .subnav-wrapper .subnav li.has-children > a:not(.back):after {
    position: absolute;
    right: 16px;
    top: 50%;
    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: -52em -16em;
    width: 0.5em;
    height: 0.375em;
    font-size: 16px;
    content: "";
    -moz-transform: translateY(-50%) rotateZ(-90deg);
    -ms-transform: translateY(-50%) rotateZ(-90deg);
    -webkit-transform: translateY(-50%) rotateZ(-90deg);
    transform: translateY(-50%) rotateZ(-90deg);
}

@media screen and (min-width: 0\0) {
    .secondary-navigation .subnav-wrapper .subnav li.has-children > a:not(.back):after {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .secondary-navigation .subnav-wrapper .subnav li.has-children > a:not(.back):after {
    background-image: url(../images/icon-sprites-vector.svg);
}

.secondary-navigation .subnav-wrapper .subnav li.has-children > a:not(.back):hover:after {
    background-position: -54em -16em;
}

.secondary-navigation .subnav-wrapper .subnav li.has-children.active > a {
    padding-bottom: 6px;
}

    .secondary-navigation .subnav-wrapper .subnav li.has-children.active > a:after,
    .secondary-navigation .subnav-wrapper .subnav li.has-children.active > a:hover:after {
        transform: none;
        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: -54em -16em;
        width: 0.5em;
        height: 0.375em;
    }

@media screen and (min-width: 0\0) {
    .secondary-navigation .subnav-wrapper .subnav li.has-children.active > a:after,
    .secondary-navigation .subnav-wrapper .subnav li.has-children.active > a:hover:after {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .secondary-navigation .subnav-wrapper .subnav li.has-children.active > a:after,
:root .secondary-navigation .subnav-wrapper .subnav li.has-children.active > a:hover:after {
    background-image: url(../images/icon-sprites-vector.svg);
}

.secondary-navigation .subnav-wrapper .subnav li.has-children.active li a {
    padding-top: 6px;
    padding-bottom: 6px;
}

.secondary-navigation .tabs {
    position: absolute;
    right: 0;
    top: 0;
    display: block;
    width: 280px;
    min-height: 49px;
    border-right: 1px solid #e6e6e6;
    color: #ce1141;
    font-size: 16px;
    font-weight: bold;
    text-align: left;
    -moz-transform: translateY(-50px);
    -ms-transform: translateY(-50px);
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
    -moz-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -moz-transition-delay: 0.1s;
    -o-transition-delay: 0.1s;
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
    z-index: 2;
}

@media (max-width: 667px) {
    .secondary-navigation .tabs {
        width: 100%;
        position: relative;
        -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
        background-color: white;
        border-bottom: 1px solid #ddd;
    }
}

@media (min-width: 668px) and (max-width: 1024px) {
    .secondary-navigation .tabs {
        display: block;
        width: 101px;
        -moz-transform: translateY(0%);
        -ms-transform: translateY(0%);
        -webkit-transform: translateY(0%);
        transform: translateY(0%);
    }

        .secondary-navigation .tabs.contact-tab.alerts-tab,
        .secondary-navigation .tabs.contact-tab.docs-tab {
            width: 102px;
        }

        .secondary-navigation .tabs:hover {
            cursor: pointer;
        }
}

@media (min-width: 668px) {
    .secondary-navigation .tabs.contact-tab.docs-tab.no-alerts-tab,
    .secondary-navigation .tabs.contact-tab.no-docs-tab.alerts-tab {
        border-left: 1px solid #ddd;
        border-right: 1px solid #ddd;
    }

        .secondary-navigation .tabs.contact-tab.docs-tab.no-alerts-tab .contact-wrapper,
        .secondary-navigation .tabs.contact-tab.docs-tab.no-alerts-tab .docs-wrapper,
        .secondary-navigation .tabs.contact-tab.docs-tab.no-alerts-tab .alerts-wrapper,
        .secondary-navigation .tabs.contact-tab.no-docs-tab.alerts-tab .contact-wrapper,
        .secondary-navigation .tabs.contact-tab.no-docs-tab.alerts-tab .docs-wrapper,
        .secondary-navigation .tabs.contact-tab.no-docs-tab.alerts-tab .alerts-wrapper {
            background-color: white;
        }

            .secondary-navigation .tabs.contact-tab.docs-tab.no-alerts-tab .contact-wrapper:hover,
            .secondary-navigation .tabs.contact-tab.docs-tab.no-alerts-tab .docs-wrapper:hover,
            .secondary-navigation .tabs.contact-tab.docs-tab.no-alerts-tab .alerts-wrapper:hover,
            .secondary-navigation .tabs.contact-tab.no-docs-tab.alerts-tab .contact-wrapper:hover,
            .secondary-navigation .tabs.contact-tab.no-docs-tab.alerts-tab .docs-wrapper:hover,
            .secondary-navigation .tabs.contact-tab.no-docs-tab.alerts-tab .alerts-wrapper:hover {
                cursor: pointer;
            }

    .secondary-navigation .tabs.contact-tab.no-docs-tab.no-alerts-tab .contact-wrapper {
        border-left: 1px solid #ddd;
        background-color: white;
        float: right;
    }

        .secondary-navigation .tabs.contact-tab.no-docs-tab.no-alerts-tab .contact-wrapper:hover {
            cursor: pointer;
        }

    .secondary-navigation .tabs.no-contact-tab.docs-tab.no-alerts-tab,
    .secondary-navigation .tabs.no-contact-tab.no-docs-tab.alerts-tab {
        border-right: 1px solid #ddd;
    }

        .secondary-navigation .tabs.no-contact-tab.docs-tab.no-alerts-tab .docs-wrapper,
        .secondary-navigation .tabs.no-contact-tab.docs-tab.no-alerts-tab .alerts-wrapper,
        .secondary-navigation .tabs.no-contact-tab.no-docs-tab.alerts-tab .docs-wrapper,
        .secondary-navigation .tabs.no-contact-tab.no-docs-tab.alerts-tab .alerts-wrapper {
            margin-left: 49px;
            background-color: white;
        }

            .secondary-navigation .tabs.no-contact-tab.docs-tab.no-alerts-tab .docs-wrapper:hover,
            .secondary-navigation .tabs.no-contact-tab.docs-tab.no-alerts-tab .alerts-wrapper:hover,
            .secondary-navigation .tabs.no-contact-tab.no-docs-tab.alerts-tab .docs-wrapper:hover,
            .secondary-navigation .tabs.no-contact-tab.no-docs-tab.alerts-tab .alerts-wrapper:hover {
                cursor: pointer;
            }

        .secondary-navigation .tabs.no-contact-tab.docs-tab.no-alerts-tab .contact-wrapper,
        .secondary-navigation .tabs.no-contact-tab.no-docs-tab.alerts-tab .contact-wrapper {
            display: none;
        }
}

@media (max-width: 667px) {
    .secondary-navigation .tabs {
        background-color: white;
        border-bottom: 1px solid #ddd;
    }

        .secondary-navigation .tabs.contact-tab.docs-tab .contact-wrapper,
        .secondary-navigation .tabs.contact-tab.docs-tab .docs-wrapper,
        .secondary-navigation .tabs.contact-tab.docs-tab .alerts-wrapper,
        .secondary-navigation .tabs .contact-tab.docs-tab.no-alerts-tab .contact-wrapper,
        .secondary-navigation .tabs .contact-tab.docs-tab.no-alerts-tab .docs-wrapper,
        .secondary-navigation .tabs .contact-tab.docs-tab.no-alerts-tab .alerts-wrapper {
            background-color: white;
        }

            .secondary-navigation .tabs.contact-tab.docs-tab .contact-wrapper:hover,
            .secondary-navigation .tabs.contact-tab.docs-tab .docs-wrapper:hover,
            .secondary-navigation .tabs.contact-tab.docs-tab .alerts-wrapper:hover,
            .secondary-navigation .tabs .contact-tab.docs-tab.no-alerts-tab .contact-wrapper:hover,
            .secondary-navigation .tabs .contact-tab.docs-tab.no-alerts-tab .docs-wrapper:hover,
            .secondary-navigation .tabs .contact-tab.docs-tab.no-alerts-tab .alerts-wrapper:hover {
                cursor: pointer;
            }

        .secondary-navigation .tabs.contact-tab.alerts-tab .contact-wrapper,
        .secondary-navigation .tabs.contact-tab.alerts-tab .docs-wrapper,
        .secondary-navigation .tabs.contact-tab.alerts-tab .alerts-wrapper,
        .secondary-navigation .tabs .contact-tab.no-docs-tab.alerts-tab .contact-wrapper,
        .secondary-navigation .tabs .contact-tab.no-docs-tab.alerts-tab .docs-wrapper,
        .secondary-navigation .tabs .contact-tab.no-docs-tab.alerts-tab .alerts-wrapper {
            background-color: white;
        }

            .secondary-navigation .tabs.contact-tab.alerts-tab .contact-wrapper:hover,
            .secondary-navigation .tabs.contact-tab.alerts-tab .docs-wrapper:hover,
            .secondary-navigation .tabs.contact-tab.alerts-tab .alerts-wrapper:hover,
            .secondary-navigation .tabs .contact-tab.no-docs-tab.alerts-tab .contact-wrapper:hover,
            .secondary-navigation .tabs .contact-tab.no-docs-tab.alerts-tab .docs-wrapper:hover,
            .secondary-navigation .tabs .contact-tab.no-docs-tab.alerts-tab .alerts-wrapper:hover {
                cursor: pointer;
            }

        .secondary-navigation .tabs.contact-tab.no-docs-tab.no-alerts-tab .contact-wrapper {
            border-right: 1px solid #ddd;
            background-color: white;
        }

            .secondary-navigation .tabs.contact-tab.no-docs-tab.no-alerts-tab .contact-wrapper:hover {
                cursor: pointer;
            }

        .secondary-navigation .tabs.no-contact-tab.docs-tab.no-alerts-tab {
            border-right: 1px solid #ddd;
        }

            .secondary-navigation .tabs.no-contact-tab.docs-tab.no-alerts-tab .docs-wrapper {
                margin-left: 50%;
                background-color: white;
            }

                .secondary-navigation .tabs.no-contact-tab.docs-tab.no-alerts-tab .docs-wrapper:hover {
                    cursor: pointer;
                }

            .secondary-navigation .tabs.no-contact-tab.docs-tab.no-alerts-tab .contact-wrapper {
                display: none;
            }

        .secondary-navigation .tabs.no-contact-tab.no-docs-tab.no-alerts-tab {
            display: none;
        }

        .secondary-navigation .tabs.no-docs-tab.no-alerts-tab,
        .secondary-navigation .tabs.no-docs-tab.no-alerts-tab .contact-wrapper {
            border-right: none;
        }

            .secondary-navigation .tabs.no-docs-tab.no-alerts-tab .contact-wrapper {
                width: 100%;
            }
}

.secondary-navigation .tabs .contact-wrapper,
.secondary-navigation .tabs .docs-wrapper,
.secondary-navigation .tabs .alerts-wrapper {
    position: relative;
    display: inline-block;
    width: 50%;
    height: 50px;
    float: left;
    display: inline-block;
}

@media (max-width: 667px) {
    .secondary-navigation .tabs .contact-wrapper,
    .secondary-navigation .tabs .docs-wrapper,
    .secondary-navigation .tabs .alerts-wrapper {
        height: 48px;
    }
}

@media (max-width: 667px) {
    .secondary-navigation .tabs .contact-wrapper.active,
    .secondary-navigation .tabs .docs-wrapper.active,
    .secondary-navigation .tabs .alerts-wrapper.active {
        height: 49px;
        border-bottom: none;
    }
}

@media (min-width: 668px) {
    .secondary-navigation .tabs .contact-wrapper {
        border-bottom: 1px solid #ddd;
    }
}

@media (min-width: 668px) {
    .secondary-navigation .tabs .contact-wrapper.active {
        border-bottom: 1px solid white;
    }
}

.secondary-navigation .tabs .contact-wrapper.active:hover .contact.active:before {
    background-position: -14em -16em;
}

.secondary-navigation .tabs .contact-wrapper:not(.active):hover .contact .tab-label,
.secondary-navigation .tabs .contact-wrapper:not(.active):hover .contact .tab-mobile {
    color: #ce1141;
}

.secondary-navigation .tabs .contact-wrapper:not(.active):hover .contact:before {
    background-position: -2em -4em;
}

.secondary-navigation .tabs .docs-wrapper,
.secondary-navigation .tabs .alerts-wrapper {
    border-left: 1px solid #ddd;
}

@media (min-width: 668px) {
    .secondary-navigation .tabs .docs-wrapper,
    .secondary-navigation .tabs .alerts-wrapper {
        border-bottom: 1px solid #ddd;
    }
}

@media (min-width: 668px) {
    .secondary-navigation .tabs .docs-wrapper.active,
    .secondary-navigation .tabs .alerts-wrapper.active {
        border-bottom: 1px solid white;
    }
}

.secondary-navigation .tabs .docs-wrapper.active:hover .docs:before {
    background-position: -14em -16em;
}

.secondary-navigation .tabs .docs-wrapper:not(.active):hover .docs .tab-label,
.secondary-navigation .tabs .docs-wrapper:not(.active):hover .docs .tab-mobile {
    color: #ce1141;
}

.secondary-navigation .tabs .docs-wrapper:not(.active):hover .docs:before {
    background-position: -6em -4em;
}

.secondary-navigation .tabs .alerts-wrapper.active:hover .alerts:before {
    background-position: -14em -16em;
}

.secondary-navigation .tabs .alerts-wrapper:not(.active):hover .alerts .tab-label,
.secondary-navigation .tabs .alerts-wrapper:not(.active):hover .alerts .tab-mobile {
    color: #ce1141;
}

.secondary-navigation .tabs .alerts-wrapper:not(.active):hover .alerts:before {
    background-position: -4em -12em;
}

.secondary-navigation .tabs .contact {
    display: inline-block;
    width: 100%;
}

    .secondary-navigation .tabs .contact span {
        color: #363636;
        padding: 9px 0 8px 60px;
        display: inline-block;
    }

        .secondary-navigation .tabs .contact span.tab-mobile {
            font-size: 16px;
            text-transform: uppercase;
            font-weight: 300;
            font-family: "Nord-Con", "tv_nord", Arial, Helvetica, sans-serif;
            line-height: 16px;
            padding: 9px 0 8px 60px;
        }

@media (min-width: 668px) {
    .secondary-navigation .tabs .contact span.tab-mobile {
        display: none;
    }
}

.secondary-navigation .tabs .contact span.tab-label {
    font-size: 16px;
    font-weight: bold;
    padding: 13px 0 8px 42px;
}

@media (max-width: 667px) {
    .secondary-navigation .tabs .contact span.tab-label {
        display: none;
    }
}

@media (min-width: 668px) and (max-width: 1024px) {
    .secondary-navigation .tabs .contact span.tab-label {
        display: none;
    }
}

.secondary-navigation .tabs .contact.active:before {
    position: absolute;
    left: 0;
    display: inline-block;
    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: -12em -16em;
    width: 1.0625em;
    height: 1.0625em;
    font-size: 16px;
}

@media (min-width: 668px) and (max-width: 1024px) {
    .secondary-navigation .tabs .contact.active:before {
        right: 0;
        bottom: 0;
        top: 0;
        margin: auto;
    }
}

@media (min-width: 1025px) {
    .secondary-navigation .tabs .contact.active:before {
        left: 15px;
        bottom: 0;
        top: 0;
        margin: auto;
    }
}

@media screen and (min-width: 0\0) {
    .secondary-navigation .tabs .contact.active:before {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .secondary-navigation .tabs .contact.active:before {
    background-image: url(../images/icon-sprites-vector.svg);
}

@media (max-width: 667px) {
    .secondary-navigation .tabs .contact.active:before {
        width: 19px;
        height: 100%;
        left: 20px;
    }
}

.secondary-navigation .tabs .contact.active span {
    display: none;
}

.secondary-navigation .tabs .contact:not(.active):before {
    position: absolute;
    left: 0;
    display: inline-block;
    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: 0em -4em;
    width: 1.75em;
    height: 1.9375em;
    font-size: 16px;
}

@media (min-width: 668px) and (max-width: 1024px) {
    .secondary-navigation .tabs .contact:not(.active):before {
        right: 0;
        bottom: 0;
        top: 0;
        margin: auto;
    }
}

@media (min-width: 1025px) {
    .secondary-navigation .tabs .contact:not(.active):before {
        left: 10px;
        bottom: 0;
        top: 0;
        margin: auto;
    }
}

@media screen and (min-width: 0\0) {
    .secondary-navigation .tabs .contact:not(.active):before {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .secondary-navigation .tabs .contact:not(.active):before {
    background-image: url(../images/icon-sprites-vector.svg);
}

@media (max-width: 667px) {
    .secondary-navigation .tabs .contact:not(.active):before {
        width: 28px;
        height: 100%;
        left: 20px;
        top: 10px;
    }
}

.secondary-navigation .tabs .docs {
    display: inline-block;
    width: 100%;
}

    .secondary-navigation .tabs .docs span {
        color: #363636;
        padding: 9px 0 8px 60px;
        display: inline-block;
    }

        .secondary-navigation .tabs .docs span.tab-mobile {
            font-size: 16px;
            text-transform: uppercase;
            font-weight: 300;
            font-family: "Nord-Con", "tv_nord", Arial, Helvetica, sans-serif;
            line-height: 16px;
            padding: 9px 0 8px 60px;
        }

@media (min-width: 668px) {
    .secondary-navigation .tabs .docs span.tab-mobile {
        display: none;
    }
}

.secondary-navigation .tabs .docs span.tab-label {
    font-size: 16px;
    font-weight: bold;
    padding: 13px 0 8px 42px;
}

@media (max-width: 667px) {
    .secondary-navigation .tabs .docs span.tab-label {
        display: none;
    }
}

@media (min-width: 668px) and (max-width: 1024px) {
    .secondary-navigation .tabs .docs span.tab-label {
        display: none;
    }
}

.secondary-navigation .tabs .docs.active:before {
    position: absolute;
    left: 0;
    display: inline-block;
    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: -12em -16em;
    width: 1.0625em;
    height: 1.0625em;
    font-size: 16px;
}

@media (min-width: 668px) and (max-width: 1024px) {
    .secondary-navigation .tabs .docs.active:before {
        right: 0;
        bottom: 0;
        top: 0;
        margin: auto;
    }
}

@media (min-width: 1025px) {
    .secondary-navigation .tabs .docs.active:before {
        left: 15px;
        bottom: 0;
        top: 0;
        margin: auto;
    }
}

@media screen and (min-width: 0\0) {
    .secondary-navigation .tabs .docs.active:before {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .secondary-navigation .tabs .docs.active:before {
    background-image: url(../images/icon-sprites-vector.svg);
}

@media (max-width: 667px) {
    .secondary-navigation .tabs .docs.active:before {
        width: 19px;
        height: 100%;
        left: 20px;
    }
}

.secondary-navigation .tabs .docs.active span {
    display: none;
}

.secondary-navigation .tabs .docs:not(.active):before {
    position: absolute;
    left: 0;
    display: inline-block;
    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: -4em -4em;
    width: 1.5625em;
    height: 1.9375em;
    font-size: 16px;
}

@media (min-width: 668px) and (max-width: 1024px) {
    .secondary-navigation .tabs .docs:not(.active):before {
        right: 0;
        bottom: 0;
        top: 0;
        margin: auto;
    }
}

@media (min-width: 1025px) {
    .secondary-navigation .tabs .docs:not(.active):before {
        left: 10px;
        bottom: 0;
        top: 0;
        margin: auto;
    }
}

@media screen and (min-width: 0\0) {
    .secondary-navigation .tabs .docs:not(.active):before {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .secondary-navigation .tabs .docs:not(.active):before {
    background-image: url(../images/icon-sprites-vector.svg);
}

@media (max-width: 667px) {
    .secondary-navigation .tabs .docs:not(.active):before {
        left: 20px;
        top: 10px;
    }
}

.secondary-navigation .tabs .alerts {
    display: inline-block;
    width: 100%;
}

    .secondary-navigation .tabs .alerts span {
        color: #363636;
        display: inline-block;
    }

        .secondary-navigation .tabs .alerts span.tab-mobile {
            font-size: 16px;
            text-transform: uppercase;
            font-weight: 300;
            font-family: "Nord-Con", "tv_nord", Arial, Helvetica, sans-serif;
            line-height: 16px;
            padding: 9px 0 8px 60px;
        }

@media (min-width: 668px) {
    .secondary-navigation .tabs .alerts span.tab-mobile {
        display: none;
    }
}

.secondary-navigation .tabs .alerts span.tab-label {
    font-size: 16px;
    font-weight: bold;
    padding: 13px 0 8px 42px;
}

@media (max-width: 667px) {
    .secondary-navigation .tabs .alerts span.tab-label {
        display: none;
    }
}

@media (min-width: 668px) and (max-width: 1024px) {
    .secondary-navigation .tabs .alerts span.tab-label {
        display: none;
    }
}

.secondary-navigation .tabs .alerts.active:before {
    position: absolute;
    left: 0;
    display: inline-block;
    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: -12em -16em;
    width: 1.0625em;
    height: 1.0625em;
    font-size: 16px;
}

@media (min-width: 668px) and (max-width: 1024px) {
    .secondary-navigation .tabs .alerts.active:before {
        right: 0;
        bottom: 0;
        top: 0;
        margin: auto;
    }
}

@media (min-width: 1025px) {
    .secondary-navigation .tabs .alerts.active:before {
        left: 15px;
        bottom: 0;
        top: 0;
        margin: auto;
    }
}

@media screen and (min-width: 0\0) {
    .secondary-navigation .tabs .alerts.active:before {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .secondary-navigation .tabs .alerts.active:before {
    background-image: url(../images/icon-sprites-vector.svg);
}

@media (max-width: 667px) {
    .secondary-navigation .tabs .alerts.active:before {
        width: 19px;
        height: 100%;
        left: 20px;
    }
}

.secondary-navigation .tabs .alerts.active span {
    display: none;
}

.secondary-navigation .tabs .alerts:not(.active):before {
    position: absolute;
    left: 0;
    /*width: 100%;
  height: 100%;*/
    display: inline-block;
    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: -2em -12em;
    width: 1.5625em;
    height: 1.875em;
    font-size: 16px;
}

@media (min-width: 668px) and (max-width: 1024px) {
    .secondary-navigation .tabs .alerts:not(.active):before {
        right: 0;
        bottom: 0;
        top: 0;
        margin: auto;
    }
}

@media (min-width: 1025px) {
    .secondary-navigation .tabs .alerts:not(.active):before {
        left: 10px;
        bottom: 0;
        top: 0;
        margin: auto;
    }
}

@media screen and (min-width: 0\0) {
    .secondary-navigation .tabs .alerts:not(.active):before {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .secondary-navigation .tabs .alerts:not(.active):before {
    background-image: url(../images/icon-sprites-vector.svg);
}

@media (max-width: 667px) {
    .secondary-navigation .tabs .alerts:not(.active):before {
        left: 20px;
        top: 10px;
    }
}

.secondary-navigation.resource-collapsed.tab-active .resource-nav-wrapper .contact:not(.visible) {
    display: none;
}

.secondary-navigation.resource-collapsed.tab-active .resource-nav-wrapper .contact.visible .resource-header {
    display: none;
}

.secondary-navigation.resource-collapsed.tab-active .resource-nav-wrapper .contact.visible .resource-content {
    max-height: 400px;
    overflow-y: scroll;
}

@media (max-width: 667px) {
    .secondary-navigation.resource-collapsed.tab-active .resource-nav-wrapper .contact.visible .resource-content {
        max-height: calc(100vh - 100px);
        padding-bottom: 50px;
        height: 100vh;
    }
}

.secondary-navigation.resource-collapsed.tab-active .resource-nav-wrapper .docs:not(.visible) {
    display: none;
}

.secondary-navigation.resource-collapsed.tab-active .resource-nav-wrapper .docs.visible .resource-header {
    display: block;
}

.secondary-navigation.resource-collapsed.tab-active .resource-nav-wrapper .docs.visible .resource-content {
    max-height: 0;
}

    .secondary-navigation.resource-collapsed.tab-active .resource-nav-wrapper .docs.visible .resource-content.active {
        max-height: calc(100vh - 310px);
    }

.secondary-navigation.resource-collapsed.tab-active .resource-nav-wrapper .alerts:not(.visible) {
    display: none;
}

.secondary-navigation.resource-collapsed.tab-active .resource-nav-wrapper .alerts.visible .resource-header {
    display: none;
}

.secondary-navigation.resource-collapsed.tab-active .resource-nav-wrapper .alerts.visible .resource-content {
    max-height: 400px;
}

@media (max-width: 667px) {
    .secondary-navigation.resource-collapsed.tab-active .resource-nav-wrapper .alerts.visible .resource-content {
        max-height: calc(100vh - 100px);
        padding-bottom: 50px;
        height: 100vh;
    }
}

@media (min-width: 668px) and (max-width: 1024px) {
    .secondary-navigation.tab-active .resource-nav-wrapper .contact:not(.visible) {
        display: none;
    }

    .secondary-navigation.tab-active .resource-nav-wrapper .contact.visible .resource-header {
        display: none;
    }

    .secondary-navigation.tab-active .resource-nav-wrapper .contact.visible .resource-content {
        max-height: 400px;
    }

    .secondary-navigation.tab-active .resource-nav-wrapper .docs:not(.visible) {
        display: none;
    }

    .secondary-navigation.tab-active .resource-nav-wrapper .docs.visible .resource-header {
        display: block;
    }

    .secondary-navigation.tab-active .resource-nav-wrapper .docs.visible .resource-content {
        max-height: 0;
    }

        .secondary-navigation.tab-active .resource-nav-wrapper .docs.visible .resource-content.active {
            max-height: calc(100vh - 310px);
        }

    .secondary-navigation.tab-active .resource-nav-wrapper .alerts:not(.visible) {
        display: none;
    }

    .secondary-navigation.tab-active .resource-nav-wrapper .alerts.visible .resource-header {
        display: none;
    }

    .secondary-navigation.tab-active .resource-nav-wrapper .alerts.visible .resource-content {
        max-height: 400px;
    }
}

@media (max-width: 667px) {
    .secondary-navigation.tab-active .resource-nav-wrapper .contact:not(.visible) {
        display: none;
    }

    .secondary-navigation.tab-active .resource-nav-wrapper .contact.visible .resource-header {
        display: none;
    }

    .secondary-navigation.tab-active .resource-nav-wrapper .contact.visible .resource-content {
        max-height: calc(100vh - 100px);
        padding-bottom: 50px;
    }

    .secondary-navigation.tab-active .resource-nav-wrapper .docs:not(.visible) {
        display: none;
    }

    .secondary-navigation.tab-active .resource-nav-wrapper .docs.visible .resource-header {
        display: block;
    }

    .secondary-navigation.tab-active .resource-nav-wrapper .docs.visible .resource-content {
        max-height: 0;
    }

        .secondary-navigation.tab-active .resource-nav-wrapper .docs.visible .resource-content.active {
            max-height: 400px;
        }

    .secondary-navigation.tab-active .resource-nav-wrapper .alerts:not(.visible) {
        display: none;
    }

    .secondary-navigation.tab-active .resource-nav-wrapper .alerts.visible .resource-header {
        display: none;
    }

    .secondary-navigation.tab-active .resource-nav-wrapper .alerts.visible .resource-content {
        max-height: calc(100vh - 100px);
        padding-bottom: 50px;
    }
}

.secondary-navigation .resource-nav-wrapper {
    background-color: white;
    font-size: 16px;
    overflow: hidden;
    -moz-transition: all 550ms cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: all 550ms cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transition: all 550ms cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 550ms cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 668px) {
    .secondary-navigation .resource-nav-wrapper {
        position: absolute;
        right: 0;
        top: 100%;
    }
}

@media (min-width: 1025px) {
    .secondary-navigation .resource-nav-wrapper {
        width: 280px;
        -moz-transform: translateY(0%);
        -ms-transform: translateY(0%);
        -webkit-transform: translateY(0%);
        transform: translateY(0%);
    }
}

@media (min-width: 668px) and (max-width: 1024px) {
    .secondary-navigation .resource-nav-wrapper {
        width: 230px;
        -moz-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
        z-index: -1;
    }

        .secondary-navigation .resource-nav-wrapper.active {
            -moz-transform: translateY(0%);
            -ms-transform: translateY(0%);
            -webkit-transform: translateY(0%);
            transform: translateY(0%);
        }
}

@media (max-width: 667px) {
    .secondary-navigation .resource-nav-wrapper {
        width: 100%;
        -moz-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
        height: 0;
    }

        .secondary-navigation .resource-nav-wrapper.active {
            -moz-transform: translateY(0%);
            -ms-transform: translateY(0%);
            -webkit-transform: translateY(0%);
            transform: translateY(0%);
            height: auto;
        }
}

.secondary-navigation .resource-nav-wrapper .contact .resource-header:before {
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    margin: auto;
    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: 0em -4em;
    width: 1.75em;
    height: 1.9375em;
    font-size: 16px;
    content: "";
}

@media screen and (min-width: 0\0) {
    .secondary-navigation .resource-nav-wrapper .contact .resource-header:before {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .secondary-navigation .resource-nav-wrapper .contact .resource-header:before {
    background-image: url(../images/icon-sprites-vector.svg);
}

.secondary-navigation .resource-nav-wrapper .contact .resource-header:hover:before,
.secondary-navigation .resource-nav-wrapper .contact .resource-header.active:before {
    background-position: -2em -4em;
}

.secondary-navigation .resource-nav-wrapper .contact #p_lt_ctl08_WebPartZone_WebPartZone_zone_ContextNavForm_viewBiz_ncpcountry .dropdown-options {
    max-height: 272px;
    overflow-y: auto;
}

.secondary-navigation .resource-nav-wrapper .docs .resource-header:before {
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    margin: auto;
    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: -4em -4em;
    width: 1.5625em;
    height: 1.9375em;
    font-size: 16px;
    content: "";
}

@media screen and (min-width: 0\0) {
    .secondary-navigation .resource-nav-wrapper .docs .resource-header:before {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .secondary-navigation .resource-nav-wrapper .docs .resource-header:before {
    background-image: url(../images/icon-sprites-vector.svg);
}

.secondary-navigation .resource-nav-wrapper .docs .resource-header:hover:before,
.secondary-navigation .resource-nav-wrapper .docs .resource-header.active:before {
    background-position: -6em -4em;
}

.secondary-navigation .resource-nav-wrapper .alerts .resource-header:before {
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    margin: auto;
    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: -2em -12em;
    width: 1.5625em;
    height: 1.875em;
    font-size: 16px;
    content: "";
}

@media screen and (min-width: 0\0) {
    .secondary-navigation .resource-nav-wrapper .alerts .resource-header:before {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .secondary-navigation .resource-nav-wrapper .alerts .resource-header:before {
    background-image: url(../images/icon-sprites-vector.svg);
}

.secondary-navigation .resource-nav-wrapper .alerts .resource-header:hover:before,
.secondary-navigation .resource-nav-wrapper .alerts .resource-header.active:before {
    background-position: -4em -12em;
}

.secondary-navigation .resource-nav-wrapper .alerts .success-heading {
    font-family: "roboto", Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 500;
}

.secondary-navigation .resource-nav-wrapper .resource-container {
    border-bottom: 1px solid #ddd;
}

    .secondary-navigation .resource-nav-wrapper .resource-container .resource-header {
        padding: 17px 18px 14px 50px;
        border-left: 1px solid #ddd;
        border-right: 1px solid #ddd;
        font-size: 16px;
        font-weight: bold;
        position: relative;
    }

        .secondary-navigation .resource-nav-wrapper .resource-container .resource-header:hover {
            cursor: pointer;
            color: #ce1141;
        }

            .secondary-navigation .resource-nav-wrapper .resource-container .resource-header:hover:after {
                background-position: -54em -16em;
            }

        .secondary-navigation .resource-nav-wrapper .resource-container .resource-header:after {
            position: absolute;
            right: 18px;
            top: 50%;
            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: -52em -16em;
            width: 0.5em;
            height: 0.375em;
            font-size: 16px;
            content: "";
        }

@media screen and (min-width: 0\0) {
    .secondary-navigation .resource-nav-wrapper .resource-container .resource-header:after {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .secondary-navigation .resource-nav-wrapper .resource-container .resource-header:after {
    background-image: url(../images/icon-sprites-vector.svg);
}

.secondary-navigation .resource-nav-wrapper .resource-container .resource-header.active {
    color: #ce1141;
}

    .secondary-navigation .resource-nav-wrapper .resource-container .resource-header.active:after {
        -moz-transform: rotate(-180deg);
        -ms-transform: rotate(-180deg);
        -webkit-transform: rotate(-180deg);
        transform: rotate(-180deg);
        -moz-transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
        -o-transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
        -webkit-transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
        transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
        background-position: -54em -16em;
    }

.secondary-navigation .resource-nav-wrapper .resource-container:not(.active) > .resource-content {
    max-height: 0;
}

.secondary-navigation .resource-nav-wrapper .resource-container .resource-content {
    /*margin: 15px 18px 18px 18px;*/
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    margin-top: -1px;
    overflow: hidden;
    -moz-transition: max-height 0.3s ease;
    -o-transition: max-height 0.3s ease;
    -webkit-transition: max-height 0.3s ease;
    transition: max-height 0.3s ease;
    padding-left: 17px;
    padding-right: 17px;
    background-color: #f8f8f8;
    position: relative;
    z-index: 1;
}

    .secondary-navigation .resource-nav-wrapper .resource-container .resource-content .recaptcha-wrapper {
        -moz-transform: scale(0.77, 0.77);
        -ms-transform: scale(0.77, 0.77);
        -webkit-transform: scale(0.77, 0.77);
        transform: scale(0.77, 0.77);
        -moz-transform-origin: 0 0;
        -ms-transform-origin: 0 0;
        -webkit-transform-origin: 0 0;
        transform-origin: 0 0;
    }

    .secondary-navigation .resource-nav-wrapper .resource-container .resource-content .ErrorMessage#p_lt_ctl08_WebPartZone_WebPartZone_zone_ContextNavNewsAlerts_plcUp_lblError {
        margin-top: -15px;
    }

    .secondary-navigation .resource-nav-wrapper .resource-container .resource-content.active {
        max-height: 400px;
        margin-top: 0;
        overflow: scroll;
        overflow-x: hidden;
        padding: 17px;
    }

.touchevents .secondary-navigation .resource-nav-wrapper .resource-container .resource-content.active::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 7px;
}

.touchevents .secondary-navigation .resource-nav-wrapper .resource-container .resource-content.active::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 0 0 1px rgba(255, 255, 255, 0.5);
}

.secondary-navigation .resource-nav-wrapper .resource-container .resource-content > ul li {
    margin-bottom: 25px;
}

    .secondary-navigation .resource-nav-wrapper .resource-container .resource-content > ul li a .docs {
        position: relative;
        display: block;
    }

        .secondary-navigation .resource-nav-wrapper .resource-container .resource-content > ul li a .docs.icon-pdf:before {
            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: -20em -8em;
            width: 1.625em;
            height: 1.875em;
            font-size: 16px;
        }

@media screen and (min-width: 0\0) {
    .secondary-navigation .resource-nav-wrapper .resource-container .resource-content > ul li a .docs.icon-pdf:before {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .secondary-navigation .resource-nav-wrapper .resource-container .resource-content > ul li a .docs.icon-pdf:before {
    background-image: url(../images/icon-sprites-vector.svg);
}

.secondary-navigation .resource-nav-wrapper .resource-container .resource-content > ul li a .docs.icon-document:before {
    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: -24em -8em;
    width: 1.6875em;
    height: 1.875em;
    font-size: 16px;
}

@media screen and (min-width: 0\0) {
    .secondary-navigation .resource-nav-wrapper .resource-container .resource-content > ul li a .docs.icon-document:before {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .secondary-navigation .resource-nav-wrapper .resource-container .resource-content > ul li a .docs.icon-document:before {
    background-image: url(../images/icon-sprites-vector.svg);
}

.secondary-navigation .resource-nav-wrapper .resource-container .resource-content > ul li a .docs:before {
    position: absolute;
    left: 0;
    top: 4px;
    display: inline-block;
    content: "";
}

.secondary-navigation .resource-nav-wrapper .resource-container .resource-content > ul li a .docs .doc-title {
    display: inline-block;
    margin-left: 45px;
    font-size: 14px;
    /* changed 20190503
font-weight: bold;
added font-size */
}

.secondary-navigation .resource-nav-wrapper .resource-container .resource-content > ul li a .docs .doc-info {
    display: block;
    margin-left: 45px;
    text-transform: uppercase;
}

.secondary-navigation .resource-nav-wrapper .resource-container .resource-content > ul li a:hover .docs.icon-pdf:before {
    background-position: -22em -8em;
}

.secondary-navigation .resource-nav-wrapper .resource-container .resource-content > ul li a:hover .docs.icon-document:before {
    background-position: -26em -8em;
}

.secondary-navigation .resource-nav-wrapper .contact .InfoLabel,
.secondary-navigation .resource-nav-wrapper .alerts .InfoLabel {
    margin-bottom: 20px;
    display: block;
}

.secondary-navigation .resource-nav-wrapper .contact .form-group .EditingFormErrorLabel,
.secondary-navigation .resource-nav-wrapper .alerts .form-group .EditingFormErrorLabel {
    margin-left: 0;
}

.secondary-navigation .resource-nav-wrapper .contact .form-group .control-label,
.secondary-navigation .resource-nav-wrapper .alerts .form-group .control-label {
    width: 100%;
    display: block;
    margin-bottom: 10px;
}

.secondary-navigation .resource-nav-wrapper .contact .form-group .editing-form-control-nested-control,
.secondary-navigation .resource-nav-wrapper .alerts .form-group .editing-form-control-nested-control {
    width: 100%;
    display: block;
    margin-bottom: 10px;
}

.secondary-navigation .resource-nav-wrapper .contact .form-group .checkbox-list-vertical label,
.secondary-navigation .resource-nav-wrapper .alerts .form-group .checkbox-list-vertical label {
    margin-bottom: 10px;
}

.secondary-navigation .resource-nav-wrapper .alerts .privacy-terms p {
    font-size: 12px;
    margin-top: 20px;
    line-height: 18px;
}

.secondary-navigation .resource-nav-wrapper .alerts .ErrorMessage {
    color: #ce1141;
}


/* TEMP - Move to more suitable place */

.in-page-cta {
    position: relative;
    margin: 20px 0;
    padding: 25px 0 10px 0;
}

@media (max-width: 667px) {
    .in-page-cta {
        display: none;
    }
}

.in-page-cta.color-white .cta-content {
    color: white;
}

.in-page-cta .cta-content {
    color: #363636;
}

    .in-page-cta .cta-content h3 {
        position: relative;
        width: 75%;
        text-transform: uppercase;
        font-weight: bold;
        font-size: 30px;
        line-height: 26px;
        margin-bottom: 25px;
        padding-left: 13px;
    }

        .in-page-cta .cta-content h3:before {
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            border-left: 4px solid #ce1141;
            content: "";
        }

    .in-page-cta .cta-content a {
        margin-left: 13px;
        font-size: 14px;
    }

        .in-page-cta .cta-content a.link,
        .in-page-cta .cta-content .list-actions a,
        .list-actions .in-page-cta .cta-content a,
        .in-page-cta .cta-content .links-document .links-document-actions a,
        .links-document .links-document-actions .in-page-cta .cta-content a,
        .in-page-cta .cta-content #press-release a[href*="http://phx.corporate-ir.net/External.File"],
        #press-release .in-page-cta .cta-content a[href*="http://phx.corporate-ir.net/External.File"] {
            padding-left: 30px;
        }


/* Secondary Navigation */

.secondary-navbar {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ddd;
    border-right: 1px solid #ddd;
    border-left: 1px solid #ddd;
    background: #fff;
    overflow: hidden;
}

@media (max-width: 667px) {
    .secondary-navbar {
        display: none;
    }
}

.secondary-navbar-header {
    padding: 10px;
}

    .secondary-navbar-header h4 {
        color: #ce1141;
        position: relative;
        line-height: 1.1;
        font-size: 18px;
        font-weight: 700;
        text-transform: uppercase;
        padding-left: 10px;
        border-left: 2px solid #ce1141;
        max-width: 150px;
    }

.secondary-navbar-menu {
    width: 100%;
    height: 64px;
    overflow: hidden;
    transition: all 0.1s ease;
    position: relative;
}

    .secondary-navbar-menu a {
        display: inline;
        font-size: 16px;
        box-sizing: content-box;
        line-height: 1.1;
    }

    .secondary-navbar-menu .secondary-navbar-row {
        display: table-row;
    }

    .secondary-navbar-menu .secondary-navbar-cell {
        display: table-cell;
        vertical-align: middle;
        padding: 0 20px;
        white-space: nowrap;
    }

    .secondary-navbar-menu.initialized:after {
        display: none;
    }

    .secondary-navbar-menu .swiper-container,
    .secondary-navbar-menu .swiper-wrapper,
    .secondary-navbar-menu .swiper-slide {
        height: 100%;
    }

    .secondary-navbar-menu .swiper-slide {
        height: 100%;
        width: auto;
        display: flex;
        align-items: center;
    }

    .secondary-navbar-menu .swiper-button-next,
    .secondary-navbar-menu .swiper-button-prev {
        width: 30px;
        height: 100%;
        top: 0;
        margin-top: 0;
        background: #fff;
        transition: all 0.25s ease;
    }

        .secondary-navbar-menu .swiper-button-next.swiper-button-disabled,
        .secondary-navbar-menu .swiper-button-prev.swiper-button-disabled {
            opacity: 0;
            pointer-events: none;
        }

    .secondary-navbar-menu .swiper-button-next {
        width: 30px;
        height: 100%;
        top: 0;
        margin-top: 0;
        right: 0;
        background: #fff;
    }

        .secondary-navbar-menu .swiper-button-next:before {
            content: '';
            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: -609px -255px;
            width: 9px;
            height: 15px;
            top: 50%;
            left: 50%;
            position: absolute;
            margin-top: -7.5px;
            margin-left: -4.5px;
        }

        .secondary-navbar-menu .swiper-button-next:after {
            content: '';
            display: block;
            width: 30px;
            height: 100%;
            position: absolute;
            left: -30px;
            /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&0+0,1+100 */
            background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0%, white 100%);
            /* FF3.6-15 */
            background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, white 100%);
            /* Chrome10-25,Safari5.1-6 */
            background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, white 100%);
            /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
            filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff', GradientType=1);
            /* IE6-9 */
        }

    .secondary-navbar-menu .swiper-button-prev {
        left: 0;
    }

        .secondary-navbar-menu .swiper-button-prev:before {
            content: '';
            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: -448px -255px;
            width: 9px;
            height: 15px;
            top: 50%;
            left: 50%;
            position: absolute;
            margin-top: -7.5px;
            margin-left: -4.5px;
        }

        .secondary-navbar-menu .swiper-button-prev:after {
            content: '';
            display: block;
            width: 30px;
            height: 100%;
            position: absolute;
            right: -30px;
            /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&1+0,0+100 */
            background: -moz-linear-gradient(left, white 0%, rgba(255, 255, 255, 0) 100%);
            /* FF3.6-15 */
            background: -webkit-linear-gradient(left, white 0%, rgba(255, 255, 255, 0) 100%);
            /* Chrome10-25,Safari5.1-6 */
            background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);
            /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
            filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#00ffffff', GradientType=1);
            /* IE6-9 */
        }

.secondary-navbar-scroll {
    overflow: auto;
}

#button-subnav {
    display: none !important;
}

.secondary-navbar {
    position: relative;
    z-index: 10;
}

.secondary-navbar--with-side-nav + .breadcrumbs + .tabs {
    top: auto;
    bottom: 0;
}

@media (min-width: 668px) {
    .secondary-navigation.resource-collapsed .secondary-navbar--with-side-nav + .breadcrumbs + .tabs {
        display: block;
        -moz-transform: translateY(0%);
        -ms-transform: translateY(0%);
        -webkit-transform: translateY(0%);
        transform: translateY(0%);
    }
}

.secondary-navigation.no-hero + .main-content {
    /*changed 20190409      padding-top: 170px;  */
    padding-top: 90px;
}

@media (min-width: 668px) {
    .secondary-navigation.no-hero + .main-content {
        /*changed 20190409      padding-top: 250px;  */
        padding-top: 200px;
    }
}


/* CTA Fix */

@media (min-width: 668px) {
    .page-intro-sidebar .in-page-cta {
        margin-top: 0 !important;
    }
}


/*

    Secondary navigation adjustments 202007

*/

.secondary-navigation .resource-nav-wrapper .resource-container .resource-header {
    padding-left: 15px;
}

    .secondary-navigation .resource-nav-wrapper .resource-container .resource-header:before {
        display: none;
    }

.secondary-navigation .resource-nav-wrapper .resource-container .resource-content {
    overflow-y: auto !important;
    overflow-x: hidden !important;
}

    .secondary-navigation .resource-nav-wrapper .resource-container .resource-content > ul li {
        margin-bottom: 17px;
    }

        .secondary-navigation .resource-nav-wrapper .resource-container .resource-content > ul li + li {
            padding-top: 17px;
            border-top: 1px solid #ddd;
        }

        .secondary-navigation .resource-nav-wrapper .resource-container .resource-content > ul li a .docs:before {
            display: none;
        }

        .secondary-navigation .resource-nav-wrapper .resource-container .resource-content > ul li:last-child {
            margin-bottom: 0;
        }

    .secondary-navigation .resource-nav-wrapper .resource-container .resource-content .doc-title {
        margin: 0 !important;
        font-weight: normal !important;
    }

    .secondary-navigation .resource-nav-wrapper .resource-container .resource-content .doc-type {
        display: block;
        text-transform: uppercase;
        font-family: "Nord-Con", "tv_nord", Arial, Helvetica, sans-serif;
        font-size: 16px;
        margin-top: 10px;
    }

    .secondary-navigation .resource-nav-wrapper .resource-container .resource-content .doc-type--html {
        display: none;
    }
    @media (min-width: 668px) {
        .resource-container .field_ReCaptcha {
            transform: scale(0.75);
            transform-origin: 0 0;
        }
    }

.dropdown {
    position: relative;
    display: inline-block;
    height: 40px;
    width: 100%;
    cursor: pointer;
    font-size: 14px;
    line-height: 18px;
    vertical-align: top;
}

    .dropdown .dropdown-header {
        position: relative;
        height: 40px;
        padding: 11px 8px;
        border: 1px solid rgba(54, 54, 54, 0.2);
        background-color: white;
        color: #363636;
    }

        .dropdown .dropdown-header:after {
            position: absolute;
            top: 50%;
            right: 10px;
            width: 12px;
            height: 8px;
            background: transparent url(../images/icon-arrow-down.png) 0 0 no-repeat;
            content: "";
            -moz-transition: -moz-transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
            -o-transition: -o-transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
            -webkit-transition: -webkit-transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
            transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
            -moz-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
            -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
            pointer-events: none;
            vertical-align: middle;
        }

    .dropdown .dropdown-options {
        position: absolute;
        width: 100%;
        font-size: 14px;
        background-color: #f8f8f8;
        box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.2);
        opacity: 0;
        -moz-transform: translateY(-10px);
        -ms-transform: translateY(-10px);
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
        visibility: hidden;
        -moz-transition: opacity 350ms cubic-bezier(0.4, 0, 0.2, 1), -moz-transform 350ms cubic-bezier(0.4, 0, 0.2, 1), visibility 350ms cubic-bezier(0.4, 0, 0.2, 1);
        -o-transition: opacity 350ms cubic-bezier(0.4, 0, 0.2, 1), -o-transform 350ms cubic-bezier(0.4, 0, 0.2, 1), visibility 350ms cubic-bezier(0.4, 0, 0.2, 1);
        -webkit-transition: opacity 350ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 350ms cubic-bezier(0.4, 0, 0.2, 1), visibility 350ms cubic-bezier(0.4, 0, 0.2, 1);
        transition: opacity 350ms cubic-bezier(0.4, 0, 0.2, 1), transform 350ms cubic-bezier(0.4, 0, 0.2, 1), visibility 350ms cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 100;
        max-height: 290px;
        overflow: auto;
    }

        .dropdown .dropdown-options > li:first-child {
            border-top: none;
        }

        .dropdown .dropdown-options > li {
            font-weight: 500;
        }

        .dropdown .dropdown-options li {
            border-top: 1px solid #e6e6e6;
        }

    .dropdown:not(.active) .dropdown-options {
        height: 0;
        overflow: hidden;
        pointer-events: none;
    }

    .dropdown.active .dropdown-header {
        z-index: 11;
    }

        .dropdown.active .dropdown-header:after {
            -moz-transform: translateY(-50%) rotateZ(-180deg);
            -ms-transform: translateY(-50%) rotateZ(-180deg);
            -webkit-transform: translateY(-50%) rotateZ(-180deg);
            transform: translateY(-50%) rotateZ(-180deg);
        }

    .dropdown.active .dropdown-options {
        display: block;
        opacity: 1;
        visibility: visible;
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -webkit-transform: translateY(0);
        transform: translateY(0);
        z-index: 10;
        pointer-events: initial;
    }

.select-dropdown li {
    padding: 10px;
    cursor: pointer;
}

    .select-dropdown li:hover,
    .select-dropdown li.active {
        color: #ce1141;
    }

.filter .dropdown-options li {
    border-top: 1px solid #e6e6e6;
}

    .filter .dropdown-options li .dropdown-label {
        position: relative;
        display: block;
        margin-bottom: 0;
        padding: 8px 32px 8px 40px;
        font-size: 14px;
        line-height: 18px;
        cursor: default;
    }

    .filter .dropdown-options li label {
        position: absolute;
        left: 15px;
        top: 9px;
        width: 16px;
        height: 16px;
        margin-right: 10px;
        border: 1px solid rgba(54, 54, 54, 0.25);
        vertical-align: middle;
    }

        .filter .dropdown-options li label:hover {
            border-color: #ce1141;
        }

    .filter .dropdown-options li input[type='checkbox'] {
        position: absolute;
        visibility: hidden;
    }

        .filter .dropdown-options li input[type='checkbox']:checked + .dropdown-label:after,
        .filter .dropdown-options li input[type='checkbox'].partially-checked + .dropdown-label:after {
            background-position: 0 -8px;
        }

        .filter .dropdown-options li input[type='checkbox']:checked + .dropdown-label > label,
        .filter .dropdown-options li input[type='checkbox'].partially-checked + .dropdown-label > label {
            border-color: #ce1141;
        }

        .filter .dropdown-options li input[type='checkbox']:checked + .dropdown-label,
        .filter .dropdown-options li input[type='checkbox'].partially-checked + .dropdown-label {
            color: #ce1141;
        }

            .filter .dropdown-options li input[type='checkbox']:checked + .dropdown-label > label {
                background: transparent url(../images/icon-tick.png) center center no-repeat;
            }

            .filter .dropdown-options li input[type='checkbox'].partially-checked + .dropdown-label > label {
                background: transparent url(../images/icon-partial-tick.png) center center no-repeat;
            }

    .filter .dropdown-options li.has-children {
        position: relative;
        -moz-transition: background-color 0.3s ease;
        -o-transition: background-color 0.3s ease;
        -webkit-transition: background-color 0.3s ease;
        transition: background-color 0.3s ease;
    }

        .filter .dropdown-options li.has-children > .dropdown-label {
            cursor: pointer;
        }

            .filter .dropdown-options li.has-children > .dropdown-label:after {
                content: "";
                position: absolute;
                right: 10px;
                top: 12px;
                width: 12px;
                height: 8px;
                background: transparent url(../images/icon-arrow-down.png) 0 0 no-repeat;
                pointer-events: none;
                -moz-transition: -moz-transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
                -o-transition: -o-transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
                -webkit-transition: -webkit-transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
                transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
            }

        .filter .dropdown-options li.has-children ul {
            padding-left: 16px;
            max-height: 0;
            opacity: 0;
            visibility: hidden;
            -moz-transition: max-height 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
            -o-transition: max-height 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
            -webkit-transition: max-height 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
            transition: max-height 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
        }

            .filter .dropdown-options li.has-children ul li {
                border-top: none;
            }

                .filter .dropdown-options li.has-children ul li .dropdown-label {
                    padding-right: 10px;
                    font-weight: 300;
                }

        .filter .dropdown-options li.has-children.active {
            height: auto;
        }

            .filter .dropdown-options li.has-children.active > .dropdown-label:after {
                -moz-transform: rotate(-180deg);
                -ms-transform: rotate(-180deg);
                -webkit-transform: rotate(-180deg);
                transform: rotate(-180deg);
            }

            .filter .dropdown-options li.has-children.active > ul {
                max-height: 500px;
                opacity: 1;
                visibility: visible;
            }

.ui-datepicker,
.date-picker {
    background-color: #f8f8f8;
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.2);
}

.ui-datepicker {
    background-color: #f8f8f8;
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.2);
    display: none;
    max-width: 400px;
}

    .ui-datepicker .ui-datepicker-header {
        position: relative;
        padding: 11px;
        font-size: 14px;
        background-color: #5f615e;
        color: white;
        font-weight: 500;
        text-align: center;
    }

    .ui-datepicker .ui-datepicker-prev,
    .ui-datepicker .ui-datepicker-next {
        position: absolute;
        top: -1px;
        width: 42px;
        bottom: 0;
    }

        .ui-datepicker .ui-datepicker-prev:hover,
        .ui-datepicker .ui-datepicker-next:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }

        .ui-datepicker .ui-datepicker-prev:active,
        .ui-datepicker .ui-datepicker-next:active {
            background-color: rgba(0, 0, 0, 0.1);
        }

        .ui-datepicker .ui-datepicker-prev .ui-icon,
        .ui-datepicker .ui-datepicker-next .ui-icon {
            position: absolute;
            left: 50%;
            top: 50%;
            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: -36em -16em;
            width: 0.5em;
            height: 0.75em;
            /*background-image: linear-gradient(transparent, transparent), url(../images/svg-weatherford.svg#arrowsmallrightwhite);*/
            text-indent: -119988px;
            overflow: hidden;
            text-align: left;
            text-transform: capitalize;
            -moz-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
            -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
        }

@media screen and (min-width: 0\0) {
    .ui-datepicker .ui-datepicker-prev .ui-icon,
    .ui-datepicker .ui-datepicker-next .ui-icon {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .ui-datepicker .ui-datepicker-prev .ui-icon,
:root .ui-datepicker .ui-datepicker-next .ui-icon {
    background-image: url(../images/icon-sprites-vector.svg);
}

.ui-datepicker .ui-datepicker-prev {
    left: 2px;
    border-right: 1px solid #f8f8f8;
}

    .ui-datepicker .ui-datepicker-prev .ui-icon {
        -moz-transform: translate(-50%, -50%) rotateZ(-180deg);
        -ms-transform: translate(-50%, -50%) rotateZ(-180deg);
        -webkit-transform: translate(-50%, -50%) rotateZ(-180deg);
        transform: translate(-50%, -50%) rotateZ(-180deg);
    }

.ui-datepicker .ui-datepicker-next {
    right: 2px;
    border-left: 1px solid #f8f8f8;
}

.ui-datepicker .ui-datepicker-title select {
    background-image: url("data:image/svg+xml;utf8,<svg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='24' height='24' viewBox='0 0 24 24'><path fill='#fff' d='M7.406 7.828l4.594 4.594 4.594-4.594 1.406 1.406-6 6-6-6z'></path></svg>");
    border: none;
    margin: 0 10px;
    cursor: pointer;
}

.ui-datepicker th,
.ui-datepicker td {
    text-align: center;
}

.ui-datepicker th {
    padding: 10px 15px;
    font-weight: 500;
}

.ui-datepicker .ui-state-default {
    display: block;
    padding: 8px 8px;
}

.ui-datepicker span.ui-state-default {
    color: rgba(54, 54, 54, 0.3);
}

.ui-datepicker thead {
    font-size: 14px;
    background-color: #5f615e;
    color: white;
}

.ui-datepicker tbody {
    font-size: 12px;
}

.ui-datepicker .ui-datepicker-calendar .ui-state-default {
    border: 1px solid transparent;
}

.ui-datepicker .ui-datepicker-calendar a.ui-state-active {
    color: #ce1141;
}

.ui-datepicker .ui-datepicker-calendar a.ui-state-hover {
    text-decoration: none;
}

.ui-datepicker .ui-datepicker-calendar a.ui-state-hover,
.ui-datepicker .ui-datepicker-calendar a.ui-state-active {
    border-color: #363636;
}

.ui-datepicker .ui-datepicker-calendar thead {
    display: none;
}

.ui-datepicker .ui-datepicker-calendar td {
    width: 7%;
}

    .ui-datepicker .ui-datepicker-calendar td:first-child {
        border-left: 1px solid rgba(54, 54, 54, 0.2);
        padding-left: 10px;
    }

    .ui-datepicker .ui-datepicker-calendar td:last-child {
        border-right: 1px solid rgba(54, 54, 54, 0.2);
        padding-right: 10px;
    }

.ui-datepicker .ui-datepicker-calendar tr:last-child td {
    border-bottom: 1px solid rgba(54, 54, 54, 0.2);
}

.ui-datepicker .ui-datepicker-calendar tr:first-child td {
    padding-top: 10px;
}

.ui-datepicker .ui-datepicker-calendar tr:last-child td {
    padding-bottom: 10px;
}

@media (max-width: 1200px) {
    .ui-datepicker th {
        padding: 5px 7px;
    }

    .ui-datepicker .ui-state-default {
        padding: 6px 7px;
    }

    .ui-datepicker tr:first-child td {
        padding-top: 7px;
    }

    .ui-datepicker tr:last-child td {
        padding-bottom: 7px;
    }
}

.date-picker {
    position: absolute;
    width: 600px;
    padding: 10px;
    z-index: 1;
}

    .date-picker .ui-datepicker {
        background-color: transparent;
        box-shadow: none;
        margin-bottom: 10px;
    }

    .date-picker .date-picker-close {
        position: absolute;
        right: 0;
        top: 0;
        padding: 10px;
        cursor: pointer;
    }

        .date-picker .date-picker-close:before {
            content: "";
            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: -6em -12em;
            width: 0.5625em;
            height: 0.5625em;
        }

@media screen and (min-width: 0\0) {
    .date-picker .date-picker-close:before {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .date-picker .date-picker-close:before {
    background-image: url(../images/icon-sprites-vector.svg);
}

.date-picker .date-picker-selected {
    font-size: 14px;
    color: #5f615e;
    margin-top: 12px;
    margin-bottom: 25px;
}

.date-picker .date-picker-selected-date {
    font-weight: bold;
    color: #ce1141;
}

.date-picker .row:last-child > .column {
    width: 100%;
}

.date-picker button {
    float: right;
}

@media (max-width: 979px) {
    .date-picker {
        width: 260px;
    }

        .date-picker .one-half {
            display: block;
            width: 100%;
        }

            .date-picker .one-half:first-child .date-picker-selected {
                margin-top: 5px;
            }

        .date-picker .date-picker-selected {
            margin-top: 16px;
            margin-bottom: 12px;
        }

        .date-picker button {
            width: 100%;
            float: none;
        }
}

@media (max-width: 450px) {
    .date-picker {
        width: auto;
        right: 10px;
        left: 10px;
    }
}

.tab {
    -moz-transition: opacity 0.25s ease, -moz-transform 0.25s ease;
    -o-transition: opacity 0.25s ease, -o-transform 0.25s ease;
    -webkit-transition: opacity 0.25s ease, -webkit-transform 0.25s ease;
    transition: opacity 0.25s ease, transform 0.25s ease;
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
    position: absolute;
    opacity: 0;
    visibility: hidden;
}

    .tab.current {
        -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
        position: relative;
        opacity: 1;
        visibility: visible;
    }

.module-media-carousel {
    margin-top: 60px;
}

    .module-media-carousel .shell {
        margin-bottom: 60px;
    }


/* ----- Rich text editor styles ----- */

.rich-text .intro,
.cke_editable .intro,
.accordion-body .intro {
    font-size: 20px;
    line-height: 26px;
    z-index: 1;
}

.rich-text h1,
.rich-text h2,
.rich-text h3,
.rich-text h4,
.cke_editable h1,
.cke_editable h2,
.cke_editable h3,
.cke_editable h4,
.accordion-body h1,
.accordion-body h2,
.accordion-body h3,
.accordion-body h4 {
    margin-bottom: 25px;
}

.rich-text h2,
.cke_editable h2,
.accordion-body h2 {
    margin-bottom: 25px;
    font-family: "Nord-Con", "tv_nord", Arial, Helvetica, sans-serif;
    font-size: 20px;
    font-weight: bold;
    line-height: 18px;
    text-transform: uppercase;
}

    .rich-text h2:not(.title-with-border),
    .cke_editable h2:not(.title-with-border),
    .accordion-body h2:not(.title-with-border) {
        position: relative;
    }

        .rich-text h2:not(.title-with-border):before,
        .cke_editable h2:not(.title-with-border):before,
        .accordion-body h2:not(.title-with-border):before {
            display: block;
            position: absolute;
            bottom: -15px;
            left: 0;
            width: 40px;
            height: 2px;
            border-top: 2px solid;
            border-color: inherit;
            content: "";
        }

.rich-text > ul,
.rich-text > ol,
.rich-text p,
.cke_editable > ul,
.cke_editable > ol,
.cke_editable p,
.accordion-body > ul,
.accordion-body > ol,
.accordion-body p {
    margin-bottom: 22px;
    font-size: 16px;
    line-height: 22px;
}

    .rich-text > ul:last-child,
    .rich-text > ol:last-child,
    .rich-text p:last-child,
    .cke_editable > ul:last-child,
    .cke_editable > ol:last-child,
    .cke_editable p:last-child,
    .accordion-body > ul:last-child,
    .accordion-body > ol:last-child,
    .accordion-body p:last-child {
        margin-bottom: 0;
    }

.rich-text > ol,
.cke_editable > ol,
.accordion-body > ol {
    margin-left: 20px;
    list-style-type: decimal;
}

.rich-text > ul li,
.cke_editable > ul li,
.accordion-body > ul li,
.no-results-overlay > ul li {
    position: relative;
    padding-left: 20px;
}

    .rich-text > ul li:before,
    .cke_editable > ul li:before,
    .accordion-body > ul li:before,
    .no-results-overlay > ul li:before {
        position: absolute;
        left: 5px;
        top: -1px;
        content: "-";
    }

.sec-filing a,
.rich-text a,
.cke_editable a {
    font-weight: bold;
    text-decoration: underline;
}

    .sec-filing a:hover,
    .rich-text a:hover,
    .cke_editable a:hover {
        color: #ce1141;
    }

.sec-filing table,
.rich-text table,
.cke_editable table {
    font-size: 14px;
}

    .sec-filing table tr th:first-child,
    .sec-filing table tr td:first-child,
    .rich-text table tr th:first-child,
    .rich-text table tr td:first-child,
    .cke_editable table tr th:first-child,
    .cke_editable table tr td:first-child {
        padding-left: 0;
    }

    .sec-filing table tr th:last-child,
    .sec-filing table tr td:last-child,
    .rich-text table tr th:last-child,
    .rich-text table tr td:last-child,
    .cke_editable table tr th:last-child,
    .cke_editable table tr td:last-child {
        padding-right: 0;
    }

    .sec-filing table tr th,
    .rich-text table tr th,
    .cke_editable table tr th {
        padding: 10px 10px;
        border-bottom: 1px solid #d0d0d0;
    }

    .sec-filing table tr td,
    .rich-text table tr td,
    .cke_editable table tr td {
        padding: 20px 10px;
        border-bottom: 1px solid #EBEBEB;
    }

.rich-text,
.cke_editable {
    font-size: 16px;
    line-height: 22px;
}

@media (max-width: 667px) {
    .rich-text,
    .cke_editable {
        max-width: 650px;
    }
}

@media (min-width: 668px) and (max-width: 1024px) {
    .rich-text,
    .cke_editable {
        position: relative;
    }
}

@media (min-width: 1025px) {
    .rich-text,
    .cke_editable {
        max-width: 450px;
        max-width: 41vw;
    }
}

.rich-text + ul {
    margin-top: 20px;
}

.rich-text.center-text {
    text-align: center;
    margin: 0 auto;
}

.benefit-statement {
    margin-bottom: 33px;
    font-family: "Nord-Con", "tv_nord", Arial, Helvetica, sans-serif;
    font-weight: 300;
    letter-spacing: -0.01em;
}

@media (min-width: 668px) {
    .benefit-statement {
        font-size: 54px;
        line-height: 52px;
    }
}

@media (max-width: 667px) {
    .benefit-statement {
        font-size: 36px;
        line-height: 36px;
    }
}

.small-benefit-statement {
    margin-bottom: 33px;
    font-family: "Nord-Con", "tv_nord", Arial, Helvetica, sans-serif;
    font-weight: 300;
    letter-spacing: -0.01em;
}

@media (min-width: 668px) {
    .small-benefit-statement {
        font-size: 40px;
        line-height: 38px;
    }
}

@media (max-width: 667px) {
    .small-benefit-statement {
        font-size: 32px;
        line-height: 30px;
    }
}

.red-text {
    color: #ce1141 !important;
}

.legal {
    font-size: 12px;
    line-height: 16px;
}

.subhead {
    font-family: "Nord-Con", "tv_nord", Arial, Helvetica, sans-serif;
    font-size: 20px;
    font-weight: bold;
    line-height: 22px;
}

.style-8, .rich-text .style-8 {
    font-family: "Nord-Con", "tv_nord", Arial, Helvetica, sans-serif;
    font-weight: 300;
    line-height: 1;
}

@media (min-width: 668px) {
    .style-8, .rich-text .style-8 {
        font-size: 40px;
    }
}

@media (max-width: 667px) {
    .style-8, .rich-text .style-8 {
        font-size: 30px;
    }
}

.member-extra-content .rich-text {
    max-width: 515px;
}

.form-wrapper .form-group {
    *zoom: 1;
    margin-bottom: 15px;
    font-size: 0;
}

    .form-wrapper .form-group:after {
        content: "";
        display: table;
        clear: both;
    }

.form-wrapper label,
.form-wrapper .label {
    display: inline-block;
    position: relative;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
}

.form-wrapper input[type=text],
.form-wrapper select,
.form-wrapper textarea {
    width: 100%;
}

.form-wrapper select {
    background-color: white;
}

.form-wrapper textarea {
    resize: vertical;
}

@media (max-width: 667px) {
    .form-wrapper input[type=submit] {
        width: 100%;
    }
}

.form-wrapper button:not(.clear-filters) {
    padding: 10px 22px;
    background: transparent;
    border: 1px solid rgba(54, 54, 54, 0.2);
    font-family: "Nord-Con", "tv_nord", Arial, Helvetica, sans-serif;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
}

    .form-wrapper button:not(.clear-filters):hover {
        border-color: #ce1141;
        color: #ce1141;
    }

.form-wrapper .clear-filters {
    min-height: 9px;
    margin-left: 15px;
    padding-right: 16px;
    /*background: transparent url(../images/icon-clear.png) right center no-repeat;
  background-image: linear-gradient(transparent, transparent), url(../images/svg-weatherford.svg#closefilter);*/
    background-color: transparent;
    font-size: 12px;
    vertical-align: top;
    position: relative;
    height: 40px;
}

    .form-wrapper .clear-filters:after {
        content: "";
        position: relative;
        margin-left: 6px;
        font-size: 16px;
        display: inline-block;
        vertical-align: middle;
    }

    .form-wrapper .clear-filters:hover {
        color: #ce1141;
    }

.form-wrapper .ErrorLabel {
    display: block;
    margin-bottom: 15px;
    color: #ce1141;
    font-weight: 500;
}

.form-wrapper .EditingFormErrorLabel {
    display: block;
    font-size: 16px;
    color: #ce1141;
    margin-left: 145px;
}

.form-wrapper .editing-form-control-nested-control label {
    font-weight: 300;
}

.form-wrapper .checkbox.checkbox-list-vertical label {
    margin-bottom: 5px;
}

.form-wrapper .checkbox label {
    padding-left: 40px;
}

    .form-wrapper .checkbox label:before {
        position: absolute;
        left: 0;
        top: 0;
        display: block;
        width: 20px;
        height: 20px;
        margin-right: 10px;
        background: transparent url(../images/icon-tick.png) 0 -200% no-repeat;
        border: 1px solid rgba(54, 54, 54, 0.2);
        content: "";
    }

.form-wrapper .checkbox input[type='checkbox'] {
    position: absolute;
    visibility: hidden;
}

    .form-wrapper .checkbox input[type='checkbox']:checked + label:before {
        background-position: center center;
        border-color: #ce1141;
    }

.form-wrapper.form-loading input[type=submit],
.form-wrapper.form-loading input[type=button] {
    pointer-events: none !important;
    background: transparent url(../images/ajax-loader.gif) center center no-repeat !important;
    color: transparent !important;
}

.input-wrapper {
    position: relative;
}

.single-clear {
    position: absolute;
    display: none;
    right: 5px;
    top: 10%;
    height: 80%;
    width: 30px;
    cursor: pointer;
    z-index: 3;
}

    .single-clear:after {
        background: transparent url(../images/icon-clear.png) center center no-repeat;
        /*background-image: linear-gradient(transparent, transparent), url(../images/svg-weatherford.svg#closefilter);*/
        content: "";
        position: absolute;
        width: 9px;
        height: 9px;
        top: 50%;
        left: 50%;
        -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }

.search-input-wrapper {
    position: relative;
}

    .search-input-wrapper .input-container {
        position: relative;
    }

@media (min-width: 1025px) {
    .search-input-wrapper {
        padding-right: 120px;
    }
}

@media (max-width: 1024px) {
    .search-input-wrapper {
        padding-right: 40px;
    }
}

.search-input-wrapper .control-label {
    display: none;
}

.search-input-wrapper input[type=text] {
    width: 100%;
    background-color: white;
}

@media (max-width: 1024px) {
    .search-input-wrapper input[type=text] {
        border-right: none;
    }
}

.search-input-wrapper button[type=submit],
.search-input-wrapper input[type=submit]:not(.button-search) {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    padding: 0;
    border: 1px solid rgba(54, 54, 54, 0.2);
    color: #363636;
}

@media (min-width: 1025px) {
    .search-input-wrapper button[type=submit],
    .search-input-wrapper input[type=submit]:not(.button-search) {
        width: 100px;
        background: white;
        font-family: "Nord-Con", "tv_nord", Arial, Helvetica, sans-serif;
        font-size: 20px;
        font-weight: bold;
        text-transform: uppercase;
    }
}

@media (max-width: 1024px) {
    .search-input-wrapper button[type=submit],
    .search-input-wrapper input[type=submit]:not(.button-search) {
        text-indent: -119988px;
        overflow: hidden;
        text-align: left;
        text-transform: capitalize;
        width: 40px;
        background: white url(../images/icon-search.png) center center no-repeat;
    }
}

.search-input-wrapper button[type=submit]:hover,
.search-input-wrapper input[type=submit]:not(.button-search):hover {
    border-color: #ce1141;
    color: #ce1141;
}

@media (max-width: 1024px) {
    .search-input-wrapper button[type=submit]:hover,
    .search-input-wrapper input[type=submit]:not(.button-search):hover {
        background-image: url(../images/icon-search-hover.png);
    }
}

@media (min-width: 668px) {
    #pnlSearchResults {
        margin-top: 20px;
    }
}

.button-standard,
.button-standard[type='submit'] {
    height: 40px;
    padding: 0 25px;
    border: 1px solid rgba(54, 54, 54, 0.2);
    background: white;
    color: #363636;
    font-family: "Nord-Con", "tv_nord", Arial, Helvetica, sans-serif;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    -webkit-appearance: none;
}

@media (min-width: 668px) {
    .button-standard,
    .button-standard[type='submit'] {
        min-width: 100px;
    }
}

.button-standard:hover,
.button-standard[type='submit']:hover {
    border-color: #ce1141;
    color: #ce1141;
}

.update-progress {
    display: none !important;
}

input,
button,
select {
    border-radius: 0;
}

    input[type=text],
    select,
    textarea {
        height: 40px;
        padding: 9px;
        border: 1px solid rgba(54, 54, 54, 0.2);
        font-family: "roboto", Arial, Helvetica, sans-serif;
        font-size: 16px;
        font-weight: 300;
    }

/*added to expand message text area on forms 20210524*/
field_Message input[type=text],
    select,
    textarea {
    height: 80px;
}

textarea {
    -webkit-appearance: none;
    border-radius: none;
    -webkit-border-radius: 0px;
}

select {
    -webkit-appearance: none;
    background: url("data:image/svg+xml;utf8,<svg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='24' height='24' viewBox='0 0 24 24'><path fill='#444' d='M7.406 7.828l4.594 4.594 4.594-4.594 1.406 1.406-6 6-6-6z'></path></svg>");
    background-position: 100% 50%;
    background-repeat: no-repeat;
    padding-right: 20px;
}

    select option {
        color: black;
    }

input[type=submit],
.submit {
    height: 40px;
    padding: 0px 35px 0px 25px;
    border: 1px solid #ce1141;
    color: #ce1141;
    font-family: "Nord-Con", "tv_nord", Arial, Helvetica, sans-serif;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    background: transparent url(../images/icon-arrow-small.png) calc(100% - 16px) center no-repeat;
}

    input[type=submit]:hover,
    .submit:hover {
        background-color: #ce1141;
        background-image: url(../images/icon-arrow-small-hover.png);
        color: white;
    }

.biz-form label,
.biz-form .control-label {
    vertical-align: top;
}

@media (min-width: 668px) {
    .biz-form label,
    .biz-form .control-label {
        top: 8px;
        display: inline-block;
        width: 125px;
        margin-right: 20px;
    }
}

@media (max-width: 667px) {
    .biz-form label,
    .biz-form .control-label {
        display: block;
        margin-bottom: 4px;
    }
}

@media (min-width: 668px) {
    .biz-form .editing-form-control-nested-control {
        display: inline-block;
        width: calc(100% - 190px);
        vertical-align: top;
    }
}

@media (min-width: 668px) {
    .biz-form .editing-form-control-nested-control label {
        width: auto;
    }
}

@media (min-width: 668px) {
    .biz-form input[type=submit] {
        margin-left: 149px;
    }
}

.biz-form .recaptcha-wrapper {
    margin-top: 30px;
    /*
  @media (min-width: 940px) {
      margin-left: 35px;
  }
  */
}

.biz-form .EditingFormErrorLabel {
    color: #ce1141;
    font-size: 16px;
}

.biz-form .Error input {
    border-color: #ce1141;
}

.button-row {
    text-align: right;
}


/* ----- Search / filter forms ----- */

.searchDialog,
.search-dialog {
    margin-bottom: 15px;
}

.form-row {
    margin-bottom: 15px;
}

@media (max-width: 667px) {
    .form-row .column {
        margin-bottom: 15px;
    }
}

.ContentLabel,
.search-empty {
    display: block;
    margin-top: 30px;
}

    .search-empty h3 {
        position: relative;
        position: relative;
        margin-top: 40px;
        margin-bottom: 40px;
        color: #ce1141;
        font-weight: bold;
        font-size: 20px;
        line-height: 18px;
        text-transform: uppercase;
    }

        .search-empty h3:before {
            display: block;
            position: absolute;
            bottom: -15px;
            left: 0;
            width: 40px;
            height: 2px;
            border-top: 2px solid;
            border-color: inherit;
            content: "";
        }

.main-content *:last-child .ContentLabel,
.main-content *:last-child .search-empty {
    margin-bottom: 60px;
}

.filter-form-wrapper {
    /*
       .search-input-wrapper {
          padding-right: 0;        
          
          @include desktop {
              input[type='submit'] {
                  display: none;
              }
          }
      }
  */
}

    .filter-form-wrapper label {
        margin-bottom: 5px;
        padding-left: 9px;
        font-size: 14px;
    }

@media (min-width: 668px) {
    .filter-form-wrapper .form-row {
        margin-bottom: 30px;
    }

        .filter-form-wrapper .form-row:last-child {
            margin-bottom: 0;
        }
}

@media (min-width: 668px) {
    .filter-form-wrapper .form-row .column {
        padding-left: 10px;
        padding-right: 10px;
    }
}

@media (max-width: 667px) {
    .filter-form-wrapper .form-row .column select {
        margin-bottom: 0;
    }
}

@media (max-width: 667px) {
    .filter-form-wrapper .search-input-wrapper,
    .filter-form-wrapper input[type='text'],
    .filter-form-wrapper select {
        margin-bottom: 20px;
    }

        .filter-form-wrapper .search-input-wrapper input {
            margin-bottom: 0;
        }

    .filter-form-wrapper .submit-reset {
        display: -webkit-flex;
        display: flex;
        -webkit-justify-content: space-between;
        justify-content: space-between;
    }

        .filter-form-wrapper .submit-reset input[type='submit'] {
            width: auto;
        }
}

@media (max-width: 667px) and (min-width: 1025px) {
    .filter-form-wrapper .submit-reset .clear-filters {
        float: right;
    }
}

.search-filter-form-wrapper .search-input-wrapper {
    padding-right: 0;
}

@media (min-width: 1025px) {
    .search-filter-form-wrapper .search-input-wrapper input[type='submit'] {
        display: none;
    }
}

.search-filter-heading {
    margin-top: 50px;
}

.section-container-heading + div .search-filter-form-wrapper {
    margin-top: -40px;
}

.form-wrapper .button-link.button-link,
.form-wrapper #section-16-btn {
    padding: 5px 0 0 0;
    border: none;
    color: #363636;
    font-family: "roboto", Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 300;
    text-transform: none;
}

    .form-wrapper .button-link.button-link:hover,
    .form-wrapper #section-16-btn:hover {
        color: #ce1141;
    }


/* ----- Advanced search filters ----- */

@media (max-width: 667px) {
    #advancedFiltersAccordion {
        min-height: 41px;
        padding-top: 0;
        border: 1px solid #363636;
    }

        #advancedFiltersAccordion.accordion-expanded {
            border-color: #ce1141;
        }

            #advancedFiltersAccordion.accordion-expanded .accordion-head .accordion-state-icon {
                border-color: #ce1141;
            }

        #advancedFiltersAccordion .accordion-head {
            border-top: none;
        }

            #advancedFiltersAccordion .accordion-head .accordion-state-icon {
                top: -11px;
                right: -1px;
                height: 41px;
                border-top: 1px solid #363636;
            }

            #advancedFiltersAccordion .accordion-head:hover .accordion-state-icon {
                border-color: #ce1141;
            }

        #advancedFiltersAccordion .accordion-body .grid {
            padding-left: 10px;
            padding-right: 10px;
        }

        #advancedFiltersAccordion .accordion-body .button-standard {
            display: block;
            width: 100%;
        }
}

#advancedFiltersAccordion .accordion-body {
    display: none;
    padding-left: 0px;
    padding-top: 40px;
}

#advancedFiltersAccordion .grid.wide-gutters {
    overflow: visible;
}


/* Search on Locations Page */

.location-search {
    margin-bottom: 30px;
}

@media (max-width: 1200px) {
    .location-search {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 667px) {
    .location-search {
        padding-left: 0;
        padding-right: 0;
    }
}

.location-search .search-area {
    position: relative;
}

.location-search .location-text-box {
    width: 75%;
    position: relative;
    min-height: 1px;
    padding-left: 10px;
    padding-right: 10px;
    float: left;
}

@media (max-width: 667px) {
    .location-search .location-text-box {
        width: 100%;
        padding-right: 49px;
    }

        .location-search .location-text-box input {
            border-right: none;
        }
}

.location-search .location-search-btn {
    width: 25%;
    position: relative;
    min-height: 1px;
    padding-left: 10px;
    padding-right: 10px;
    float: left;
}

    .location-search .location-search-btn .btn-search {
        width: 100%;
        height: 40px;
    }

    .location-search .location-search-btn .mob-btn-search {
        display: none;
    }

@media (max-width: 667px) {
    .location-search .location-search-btn {
        position: absolute;
        width: 40px;
        height: 40px;
        right: 10px;
        clear: both;
        padding: 0;
        border: 1px solid rgba(54, 54, 54, 0.2);
    }

        .location-search .location-search-btn .btn-search {
            display: none;
        }

        .location-search .location-search-btn .mob-btn-search {
            position: relative;
            height: 40px;
            display: inline;
            border: none;
        }

            .location-search .location-search-btn .mob-btn-search:before {
                border: none;
                position: absolute;
                background: url(../images/sprite/ico-magnifier.png) no-repeat center center;
                /*background-image: linear-gradient(transparent, transparent), url(../images/svg-weatherford.svg#l1navsearch);*/
                display: inline-block;
                vertical-align: middle;
                font-size: 0;
                width: 24px;
                height: 24px;
                content: "";
                top: 7px;
                left: 7px;
            }
}

.location-search input[type=submit] {
    margin-left: auto;
    width: 100%;
    background-image: none;
}

#p_lt_ctl02_pageplaceholder_p_lt_ctl03_SearchableListing_cmsContentTypeSearchFilter_cmsContentTypeSearchFilter_drpFilter + .dropdown .dropdown-options,
.CountryDropDown + .dropdown .dropdown-options {
    max-height: 272px;
    overflow-y: auto;
}


/* ----- Filter tabs (News Search Listing, etc.) ----- */

@media (min-width: 668px) {
    .filter-tabs {
        margin-top: 40px;
        margin-bottom: 40px;
    }
}

@media (max-width: 667px) {
    .filter-tabs {
        margin-bottom: 15px;
    }

        .filter-tabs table {
            text-align: center;
        }
}

@media (min-width: 668px) {
    .filter-tabs td:not(:last-of-type) {
        padding-right: 30px;
    }
}

@media (max-width: 667px) {
    .filter-tabs td:not(:last-of-type) {
        padding: 0 2%;
    }
}

.filter-tabs input[type="radio"] {
    position: absolute;
    visibility: hidden;
}

    .filter-tabs input[type="radio"] + label {
        font-weight: bold;
    }

    .filter-tabs input[type="radio"]:checked + label {
        color: #ce1141;
        position: relative;
    }

        .filter-tabs input[type="radio"]:checked + label:before {
            display: block;
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 40px;
            height: 2px;
            border-top: 2px solid;
            border-color: inherit;
            content: "";
        }

.filter-tabs label:hover {
    color: #ce1141;
}


/* ----- Resource Nav ----- */

.resource-container .CheckBoxField label {
    line-height: 22px;
}


/* ----- Link Widget ----- */

.link,
.list-actions a,
.links-document .links-document-actions a,
#press-release a[href*="http://phx.corporate-ir.net/External.File"] {
    position: relative;
    display: inline-block;
    min-height: 30px;
    padding-left: 40px;
    font-size: 14px;
    line-height: 18px;
    text-decoration: none !important;
    font-weight: 500 !important;
}

    .link:before,
    .list-actions a:before,
    .links-document .links-document-actions a:before,
    #press-release a[href*="http://phx.corporate-ir.net/External.File"]:before {
        position: absolute;
        left: 0;
        top: 0px;
        display: block;
        width: 25px;
        height: 25px;
        margin-right: 15px;
        background-position: 0 0;
        background-repeat: no-repeat;
        content: "";
        vertical-align: top;
    }

@media (max-width: 667px) {
    .link:before,
    .list-actions a:before,
    .links-document .links-document-actions a:before,
    #press-release a[href*="http://phx.corporate-ir.net/External.File"]:before {
        margin-right: 8px;
    }
}

.link:hover,
.list-actions a:hover,
.links-document .links-document-actions a:hover,
#press-release a[href*="http://phx.corporate-ir.net/External.File"]:hover {
    color: #ce1141;
    text-decoration: underline !important;
}

    .link:hover strong,
    .list-actions a:hover strong,
    .links-document .links-document-actions a:hover strong,
    #press-release a[href*="http://phx.corporate-ir.net/External.File"]:hover strong,
    .link:hover span,
    .list-actions a:hover span,
    .links-document .links-document-actions a:hover span,
    #press-release a[href*="http://phx.corporate-ir.net/External.File"]:hover span {
        text-decoration: underline;
    }

.link span,
.list-actions a span,
.links-document .links-document-actions a span,
#press-release a[href*="http://phx.corporate-ir.net/External.File"] span {
    float: left;
}

.link.link-internal:before,
.list-actions a.link-internal:before,
.links-document .links-document-actions a.link-internal:before,
#press-release a.link-internal[href*="http://phx.corporate-ir.net/External.File"]:before {
    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: -40em -4em;
    width: 1.5em;
    height: 1.5em;
    font-size: 16px;
}

@media screen and (min-width: 0\0) {
    .link.link-internal:before,
    .list-actions a.link-internal:before,
    .links-document .links-document-actions a.link-internal:before,
    #press-release a.link-internal[href*="http://phx.corporate-ir.net/External.File"]:before {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .link.link-internal:before,
:root .list-actions a.link-internal:before,
:root .links-document .links-document-actions a.link-internal:before,
:root #press-release a.link-internal[href*="http://phx.corporate-ir.net/External.File"]:before {
    background-image: url(../images/icon-sprites-vector.svg);
}

.link.link-internal:hover:before,
.list-actions a.link-internal:hover:before,
.links-document .links-document-actions a.link-internal:hover:before,
#press-release a.link-internal[href*="http://phx.corporate-ir.net/External.File"]:hover:before {
    background-position: -44em -4em;
}

.color-white .link.link-internal:before,
.color-white .list-actions a.link-internal:before,
.list-actions .color-white a.link-internal:before,
.color-white .links-document .links-document-actions a.link-internal:before,
.links-document .links-document-actions .color-white a.link-internal:before,
.color-white #press-release a.link-internal[href*="http://phx.corporate-ir.net/External.File"]:before,
#press-release .color-white a.link-internal[href*="http://phx.corporate-ir.net/External.File"]:before,
.white-text .link.link-internal:before,
.white-text .list-actions a.link-internal:before,
.list-actions .white-text a.link-internal:before,
.white-text .links-document .links-document-actions a.link-internal:before,
.links-document .links-document-actions .white-text a.link-internal:before,
.white-text #press-release a.link-internal[href*="http://phx.corporate-ir.net/External.File"]:before,
#press-release .white-text a.link-internal[href*="http://phx.corporate-ir.net/External.File"]:before,
.module.black-background .link.link-internal:before,
.module.black-background .list-actions a.link-internal:before,
.list-actions .module.black-background a.link-internal:before,
.module.black-background .links-document .links-document-actions a.link-internal:before,
.links-document .links-document-actions .module.black-background a.link-internal:before,
.module.black-background #press-release a.link-internal[href*="http://phx.corporate-ir.net/External.File"]:before,
#press-release .module.black-background a.link-internal[href*="http://phx.corporate-ir.net/External.File"]:before,
.module.text-in-box .link.link-internal:before,
.module.text-in-box .list-actions a.link-internal:before,
.list-actions .module.text-in-box a.link-internal:before,
.module.text-in-box .links-document .links-document-actions a.link-internal:before,
.links-document .links-document-actions .module.text-in-box a.link-internal:before,
.module.text-in-box #press-release a.link-internal[href*="http://phx.corporate-ir.net/External.File"]:before,
#press-release .module.text-in-box a.link-internal[href*="http://phx.corporate-ir.net/External.File"]:before,
.announcement-text .link.link-internal:before,
.announcement-text .list-actions a.link-internal:before,
.list-actions .announcement-text a.link-internal:before,
.announcement-text .links-document .links-document-actions a.link-internal:before,
.links-document .links-document-actions .announcement-text a.link-internal:before,
.announcement-text #press-release a.link-internal[href*="http://phx.corporate-ir.net/External.File"]:before,
#press-release .announcement-text a.link-internal[href*="http://phx.corporate-ir.net/External.File"]:before {
    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: -22em -12em;
    width: 1.5625em;
    height: 1.5em;
}

@media screen and (min-width: 0\0) {
    .color-white .link.link-internal:before,
    .color-white .list-actions a.link-internal:before,
    .list-actions .color-white a.link-internal:before,
    .color-white .links-document .links-document-actions a.link-internal:before,
    .links-document .links-document-actions .color-white a.link-internal:before,
    .color-white #press-release a.link-internal[href*="http://phx.corporate-ir.net/External.File"]:before,
    #press-release .color-white a.link-internal[href*="http://phx.corporate-ir.net/External.File"]:before,
    .white-text .link.link-internal:before,
    .white-text .list-actions a.link-internal:before,
    .list-actions .white-text a.link-internal:before,
    .white-text .links-document .links-document-actions a.link-internal:before,
    .links-document .links-document-actions .white-text a.link-internal:before,
    .white-text #press-release a.link-internal[href*="http://phx.corporate-ir.net/External.File"]:before,
    #press-release .white-text a.link-internal[href*="http://phx.corporate-ir.net/External.File"]:before,
    .module.black-background .link.link-internal:before,
    .module.black-background .list-actions a.link-internal:before,
    .list-actions .module.black-background a.link-internal:before,
    .module.black-background .links-document .links-document-actions a.link-internal:before,
    .links-document .links-document-actions .module.black-background a.link-internal:before,
    .module.black-background #press-release a.link-internal[href*="http://phx.corporate-ir.net/External.File"]:before,
    #press-release .module.black-background a.link-internal[href*="http://phx.corporate-ir.net/External.File"]:before,
    .module.text-in-box .link.link-internal:before,
    .module.text-in-box .list-actions a.link-internal:before,
    .list-actions .module.text-in-box a.link-internal:before,
    .module.text-in-box .links-document .links-document-actions a.link-internal:before,
    .links-document .links-document-actions .module.text-in-box a.link-internal:before,
    .module.text-in-box #press-release a.link-internal[href*="http://phx.corporate-ir.net/External.File"]:before,
    #press-release .module.text-in-box a.link-internal[href*="http://phx.corporate-ir.net/External.File"]:before,
    .announcement-text .link.link-internal:before,
    .announcement-text .list-actions a.link-internal:before,
    .list-actions .announcement-text a.link-internal:before,
    .announcement-text .links-document .links-document-actions a.link-internal:before,
    .links-document .links-document-actions .announcement-text a.link-internal:before,
    .announcement-text #press-release a.link-internal[href*="http://phx.corporate-ir.net/External.File"]:before,
    #press-release .announcement-text a.link-internal[href*="http://phx.corporate-ir.net/External.File"]:before {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .color-white .link.link-internal:before,
.color-white :root .list-actions a.link-internal:before,
:root .list-actions .color-white a.link-internal:before,
.color-white :root .links-document .links-document-actions a.link-internal:before,
:root .links-document .links-document-actions .color-white a.link-internal:before,
.color-white :root #press-release a.link-internal[href*="http://phx.corporate-ir.net/External.File"]:before,
:root #press-release .color-white a.link-internal[href*="http://phx.corporate-ir.net/External.File"]:before,
:root .white-text .link.link-internal:before,
.white-text :root .list-actions a.link-internal:before,
:root .list-actions .white-text a.link-internal:before,
.white-text :root .links-document .links-document-actions a.link-internal:before,
:root .links-document .links-document-actions .white-text a.link-internal:before,
.white-text :root #press-release a.link-internal[href*="http://phx.corporate-ir.net/External.File"]:before,
:root #press-release .white-text a.link-internal[href*="http://phx.corporate-ir.net/External.File"]:before,
:root .module.black-background .link.link-internal:before,
.module.black-background :root .list-actions a.link-internal:before,
:root .list-actions .module.black-background a.link-internal:before,
.module.black-background :root .links-document .links-document-actions a.link-internal:before,
:root .links-document .links-document-actions .module.black-background a.link-internal:before,
.module.black-background :root #press-release a.link-internal[href*="http://phx.corporate-ir.net/External.File"]:before,
:root #press-release .module.black-background a.link-internal[href*="http://phx.corporate-ir.net/External.File"]:before,
:root .module.text-in-box .link.link-internal:before,
.module.text-in-box :root .list-actions a.link-internal:before,
:root .list-actions .module.text-in-box a.link-internal:before,
.module.text-in-box :root .links-document .links-document-actions a.link-internal:before,
:root .links-document .links-document-actions .module.text-in-box a.link-internal:before,
.module.text-in-box :root #press-release a.link-internal[href*="http://phx.corporate-ir.net/External.File"]:before,
:root #press-release .module.text-in-box a.link-internal[href*="http://phx.corporate-ir.net/External.File"]:before,
:root .announcement-text .link.link-internal:before,
.announcement-text :root .list-actions a.link-internal:before,
:root .list-actions .announcement-text a.link-internal:before,
.announcement-text :root .links-document .links-document-actions a.link-internal:before,
:root .links-document .links-document-actions .announcement-text a.link-internal:before,
.announcement-text :root #press-release a.link-internal[href*="http://phx.corporate-ir.net/External.File"]:before,
:root #press-release .announcement-text a.link-internal[href*="http://phx.corporate-ir.net/External.File"]:before {
    background-image: url(../images/icon-sprites-vector.svg);
}

.color-white .link.link-internal:hover,
.color-white .list-actions a.link-internal:hover,
.list-actions .color-white a.link-internal:hover,
.color-white .links-document .links-document-actions a.link-internal:hover,
.links-document .links-document-actions .color-white a.link-internal:hover,
.color-white #press-release a.link-internal[href*="http://phx.corporate-ir.net/External.File"]:hover,
#press-release .color-white a.link-internal[href*="http://phx.corporate-ir.net/External.File"]:hover,
.white-text .link.link-internal:hover,
.white-text .list-actions a.link-internal:hover,
.list-actions .white-text a.link-internal:hover,
.white-text .links-document .links-document-actions a.link-internal:hover,
.links-document .links-document-actions .white-text a.link-internal:hover,
.white-text #press-release a.link-internal[href*="http://phx.corporate-ir.net/External.File"]:hover,
#press-release .white-text a.link-internal[href*="http://phx.corporate-ir.net/External.File"]:hover,
.module.black-background .link.link-internal:hover,
.module.black-background .list-actions a.link-internal:hover,
.list-actions .module.black-background a.link-internal:hover,
.module.black-background .links-document .links-document-actions a.link-internal:hover,
.links-document .links-document-actions .module.black-background a.link-internal:hover,
.module.black-background #press-release a.link-internal[href*="http://phx.corporate-ir.net/External.File"]:hover,
#press-release .module.black-background a.link-internal[href*="http://phx.corporate-ir.net/External.File"]:hover,
.module.text-in-box .link.link-internal:hover,
.module.text-in-box .list-actions a.link-internal:hover,
.list-actions .module.text-in-box a.link-internal:hover,
.module.text-in-box .links-document .links-document-actions a.link-internal:hover,
.links-document .links-document-actions .module.text-in-box a.link-internal:hover,
.module.text-in-box #press-release a.link-internal[href*="http://phx.corporate-ir.net/External.File"]:hover,
#press-release .module.text-in-box a.link-internal[href*="http://phx.corporate-ir.net/External.File"]:hover,
.announcement-text .link.link-internal:hover,
.announcement-text .list-actions a.link-internal:hover,
.list-actions .announcement-text a.link-internal:hover,
.announcement-text .links-document .links-document-actions a.link-internal:hover,
.links-document .links-document-actions .announcement-text a.link-internal:hover,
.announcement-text #press-release a.link-internal[href*="http://phx.corporate-ir.net/External.File"]:hover,
#press-release .announcement-text a.link-internal[href*="http://phx.corporate-ir.net/External.File"]:hover {
    color: #efdf00;
}

    .color-white .link.link-internal:hover:before,
    .color-white .list-actions a.link-internal:hover:before,
    .list-actions .color-white a.link-internal:hover:before,
    .color-white .links-document .links-document-actions a.link-internal:hover:before,
    .links-document .links-document-actions .color-white a.link-internal:hover:before,
    .color-white #press-release a.link-internal[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    #press-release .color-white a.link-internal[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    .white-text .link.link-internal:hover:before,
    .white-text .list-actions a.link-internal:hover:before,
    .list-actions .white-text a.link-internal:hover:before,
    .white-text .links-document .links-document-actions a.link-internal:hover:before,
    .links-document .links-document-actions .white-text a.link-internal:hover:before,
    .white-text #press-release a.link-internal[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    #press-release .white-text a.link-internal[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    .module.black-background .link.link-internal:hover:before,
    .module.black-background .list-actions a.link-internal:hover:before,
    .list-actions .module.black-background a.link-internal:hover:before,
    .module.black-background .links-document .links-document-actions a.link-internal:hover:before,
    .links-document .links-document-actions .module.black-background a.link-internal:hover:before,
    .module.black-background #press-release a.link-internal[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    #press-release .module.black-background a.link-internal[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    .module.text-in-box .link.link-internal:hover:before,
    .module.text-in-box .list-actions a.link-internal:hover:before,
    .list-actions .module.text-in-box a.link-internal:hover:before,
    .module.text-in-box .links-document .links-document-actions a.link-internal:hover:before,
    .links-document .links-document-actions .module.text-in-box a.link-internal:hover:before,
    .module.text-in-box #press-release a.link-internal[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    #press-release .module.text-in-box a.link-internal[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    .announcement-text .link.link-internal:hover:before,
    .announcement-text .list-actions a.link-internal:hover:before,
    .list-actions .announcement-text a.link-internal:hover:before,
    .announcement-text .links-document .links-document-actions a.link-internal:hover:before,
    .links-document .links-document-actions .announcement-text a.link-internal:hover:before,
    .announcement-text #press-release a.link-internal[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    #press-release .announcement-text a.link-internal[href*="http://phx.corporate-ir.net/External.File"]:hover:before {
        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: -26em -12em;
        width: 1.5625em;
        height: 1.5em;
    }

@media screen and (min-width: 0\0) {
    .color-white .link.link-internal:hover:before,
    .color-white .list-actions a.link-internal:hover:before,
    .list-actions .color-white a.link-internal:hover:before,
    .color-white .links-document .links-document-actions a.link-internal:hover:before,
    .links-document .links-document-actions .color-white a.link-internal:hover:before,
    .color-white #press-release a.link-internal[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    #press-release .color-white a.link-internal[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    .white-text .link.link-internal:hover:before,
    .white-text .list-actions a.link-internal:hover:before,
    .list-actions .white-text a.link-internal:hover:before,
    .white-text .links-document .links-document-actions a.link-internal:hover:before,
    .links-document .links-document-actions .white-text a.link-internal:hover:before,
    .white-text #press-release a.link-internal[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    #press-release .white-text a.link-internal[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    .module.black-background .link.link-internal:hover:before,
    .module.black-background .list-actions a.link-internal:hover:before,
    .list-actions .module.black-background a.link-internal:hover:before,
    .module.black-background .links-document .links-document-actions a.link-internal:hover:before,
    .links-document .links-document-actions .module.black-background a.link-internal:hover:before,
    .module.black-background #press-release a.link-internal[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    #press-release .module.black-background a.link-internal[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    .module.text-in-box .link.link-internal:hover:before,
    .module.text-in-box .list-actions a.link-internal:hover:before,
    .list-actions .module.text-in-box a.link-internal:hover:before,
    .module.text-in-box .links-document .links-document-actions a.link-internal:hover:before,
    .links-document .links-document-actions .module.text-in-box a.link-internal:hover:before,
    .module.text-in-box #press-release a.link-internal[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    #press-release .module.text-in-box a.link-internal[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    .announcement-text .link.link-internal:hover:before,
    .announcement-text .list-actions a.link-internal:hover:before,
    .list-actions .announcement-text a.link-internal:hover:before,
    .announcement-text .links-document .links-document-actions a.link-internal:hover:before,
    .links-document .links-document-actions .announcement-text a.link-internal:hover:before,
    .announcement-text #press-release a.link-internal[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    #press-release .announcement-text a.link-internal[href*="http://phx.corporate-ir.net/External.File"]:hover:before {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .color-white .link.link-internal:hover:before,
.color-white :root .list-actions a.link-internal:hover:before,
:root .list-actions .color-white a.link-internal:hover:before,
.color-white :root .links-document .links-document-actions a.link-internal:hover:before,
:root .links-document .links-document-actions .color-white a.link-internal:hover:before,
.color-white :root #press-release a.link-internal[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
:root #press-release .color-white a.link-internal[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
:root .white-text .link.link-internal:hover:before,
.white-text :root .list-actions a.link-internal:hover:before,
:root .list-actions .white-text a.link-internal:hover:before,
.white-text :root .links-document .links-document-actions a.link-internal:hover:before,
:root .links-document .links-document-actions .white-text a.link-internal:hover:before,
.white-text :root #press-release a.link-internal[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
:root #press-release .white-text a.link-internal[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
:root .module.black-background .link.link-internal:hover:before,
.module.black-background :root .list-actions a.link-internal:hover:before,
:root .list-actions .module.black-background a.link-internal:hover:before,
.module.black-background :root .links-document .links-document-actions a.link-internal:hover:before,
:root .links-document .links-document-actions .module.black-background a.link-internal:hover:before,
.module.black-background :root #press-release a.link-internal[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
:root #press-release .module.black-background a.link-internal[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
:root .module.text-in-box .link.link-internal:hover:before,
.module.text-in-box :root .list-actions a.link-internal:hover:before,
:root .list-actions .module.text-in-box a.link-internal:hover:before,
.module.text-in-box :root .links-document .links-document-actions a.link-internal:hover:before,
:root .links-document .links-document-actions .module.text-in-box a.link-internal:hover:before,
.module.text-in-box :root #press-release a.link-internal[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
:root #press-release .module.text-in-box a.link-internal[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
:root .announcement-text .link.link-internal:hover:before,
.announcement-text :root .list-actions a.link-internal:hover:before,
:root .list-actions .announcement-text a.link-internal:hover:before,
.announcement-text :root .links-document .links-document-actions a.link-internal:hover:before,
:root .links-document .links-document-actions .announcement-text a.link-internal:hover:before,
.announcement-text :root #press-release a.link-internal[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
:root #press-release .announcement-text a.link-internal[href*="http://phx.corporate-ir.net/External.File"]:hover:before {
    background-image: url(../images/icon-sprites-vector.svg);
}

.link.link-external:before,
.list-actions a.link-external:before,
.links-document .links-document-actions a.link-external:before,
#press-release a.link-external[href*="http://phx.corporate-ir.net/External.File"]:before {
    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: -32em -4em;
    width: 1.5625em;
    height: 1.5625em;
    font-size: 16px;
}

@media screen and (min-width: 0\0) {
    .link.link-external:before,
    .list-actions a.link-external:before,
    .links-document .links-document-actions a.link-external:before,
    #press-release a.link-external[href*="http://phx.corporate-ir.net/External.File"]:before {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .link.link-external:before,
:root .list-actions a.link-external:before,
:root .links-document .links-document-actions a.link-external:before,
:root #press-release a.link-external[href*="http://phx.corporate-ir.net/External.File"]:before {
    background-image: url(../images/icon-sprites-vector.svg);
}

.link.link-external:hover:before,
.list-actions a.link-external:hover:before,
.links-document .links-document-actions a.link-external:hover:before,
#press-release a.link-external[href*="http://phx.corporate-ir.net/External.File"]:hover:before {
    background-position: -34em -4em;
}

.color-white .link.link-external:before,
.color-white .list-actions a.link-external:before,
.list-actions .color-white a.link-external:before,
.color-white .links-document .links-document-actions a.link-external:before,
.links-document .links-document-actions .color-white a.link-external:before,
.color-white #press-release a.link-external[href*="http://phx.corporate-ir.net/External.File"]:before,
#press-release .color-white a.link-external[href*="http://phx.corporate-ir.net/External.File"]:before,
.white-text .link.link-external:before,
.white-text .list-actions a.link-external:before,
.list-actions .white-text a.link-external:before,
.white-text .links-document .links-document-actions a.link-external:before,
.links-document .links-document-actions .white-text a.link-external:before,
.white-text #press-release a.link-external[href*="http://phx.corporate-ir.net/External.File"]:before,
#press-release .white-text a.link-external[href*="http://phx.corporate-ir.net/External.File"]:before,
.module.black-background .link.link-external:before,
.module.black-background .list-actions a.link-external:before,
.list-actions .module.black-background a.link-external:before,
.module.black-background .links-document .links-document-actions a.link-external:before,
.links-document .links-document-actions .module.black-background a.link-external:before,
.module.black-background #press-release a.link-external[href*="http://phx.corporate-ir.net/External.File"]:before,
#press-release .module.black-background a.link-external[href*="http://phx.corporate-ir.net/External.File"]:before,
.module.text-in-box .link.link-external:before,
.module.text-in-box .list-actions a.link-external:before,
.list-actions .module.text-in-box a.link-external:before,
.module.text-in-box .links-document .links-document-actions a.link-external:before,
.links-document .links-document-actions .module.text-in-box a.link-external:before,
.module.text-in-box #press-release a.link-external[href*="http://phx.corporate-ir.net/External.File"]:before,
#press-release .module.text-in-box a.link-external[href*="http://phx.corporate-ir.net/External.File"]:before,
.announcement-text .link.link-external:before,
.announcement-text .list-actions a.link-external:before,
.list-actions .announcement-text a.link-external:before,
.announcement-text .links-document .links-document-actions a.link-external:before,
.links-document .links-document-actions .announcement-text a.link-external:before,
.announcement-text #press-release a.link-external[href*="http://phx.corporate-ir.net/External.File"]:before,
#press-release .announcement-text a.link-external[href*="http://phx.corporate-ir.net/External.File"]:before {
    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: -18em -12em;
    width: 1.5em;
    height: 1.5em;
}

@media screen and (min-width: 0\0) {
    .color-white .link.link-external:before,
    .color-white .list-actions a.link-external:before,
    .list-actions .color-white a.link-external:before,
    .color-white .links-document .links-document-actions a.link-external:before,
    .links-document .links-document-actions .color-white a.link-external:before,
    .color-white #press-release a.link-external[href*="http://phx.corporate-ir.net/External.File"]:before,
    #press-release .color-white a.link-external[href*="http://phx.corporate-ir.net/External.File"]:before,
    .white-text .link.link-external:before,
    .white-text .list-actions a.link-external:before,
    .list-actions .white-text a.link-external:before,
    .white-text .links-document .links-document-actions a.link-external:before,
    .links-document .links-document-actions .white-text a.link-external:before,
    .white-text #press-release a.link-external[href*="http://phx.corporate-ir.net/External.File"]:before,
    #press-release .white-text a.link-external[href*="http://phx.corporate-ir.net/External.File"]:before,
    .module.black-background .link.link-external:before,
    .module.black-background .list-actions a.link-external:before,
    .list-actions .module.black-background a.link-external:before,
    .module.black-background .links-document .links-document-actions a.link-external:before,
    .links-document .links-document-actions .module.black-background a.link-external:before,
    .module.black-background #press-release a.link-external[href*="http://phx.corporate-ir.net/External.File"]:before,
    #press-release .module.black-background a.link-external[href*="http://phx.corporate-ir.net/External.File"]:before,
    .module.text-in-box .link.link-external:before,
    .module.text-in-box .list-actions a.link-external:before,
    .list-actions .module.text-in-box a.link-external:before,
    .module.text-in-box .links-document .links-document-actions a.link-external:before,
    .links-document .links-document-actions .module.text-in-box a.link-external:before,
    .module.text-in-box #press-release a.link-external[href*="http://phx.corporate-ir.net/External.File"]:before,
    #press-release .module.text-in-box a.link-external[href*="http://phx.corporate-ir.net/External.File"]:before,
    .announcement-text .link.link-external:before,
    .announcement-text .list-actions a.link-external:before,
    .list-actions .announcement-text a.link-external:before,
    .announcement-text .links-document .links-document-actions a.link-external:before,
    .links-document .links-document-actions .announcement-text a.link-external:before,
    .announcement-text #press-release a.link-external[href*="http://phx.corporate-ir.net/External.File"]:before,
    #press-release .announcement-text a.link-external[href*="http://phx.corporate-ir.net/External.File"]:before {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .color-white .link.link-external:before,
.color-white :root .list-actions a.link-external:before,
:root .list-actions .color-white a.link-external:before,
.color-white :root .links-document .links-document-actions a.link-external:before,
:root .links-document .links-document-actions .color-white a.link-external:before,
.color-white :root #press-release a.link-external[href*="http://phx.corporate-ir.net/External.File"]:before,
:root #press-release .color-white a.link-external[href*="http://phx.corporate-ir.net/External.File"]:before,
:root .white-text .link.link-external:before,
.white-text :root .list-actions a.link-external:before,
:root .list-actions .white-text a.link-external:before,
.white-text :root .links-document .links-document-actions a.link-external:before,
:root .links-document .links-document-actions .white-text a.link-external:before,
.white-text :root #press-release a.link-external[href*="http://phx.corporate-ir.net/External.File"]:before,
:root #press-release .white-text a.link-external[href*="http://phx.corporate-ir.net/External.File"]:before,
:root .module.black-background .link.link-external:before,
.module.black-background :root .list-actions a.link-external:before,
:root .list-actions .module.black-background a.link-external:before,
.module.black-background :root .links-document .links-document-actions a.link-external:before,
:root .links-document .links-document-actions .module.black-background a.link-external:before,
.module.black-background :root #press-release a.link-external[href*="http://phx.corporate-ir.net/External.File"]:before,
:root #press-release .module.black-background a.link-external[href*="http://phx.corporate-ir.net/External.File"]:before,
:root .module.text-in-box .link.link-external:before,
.module.text-in-box :root .list-actions a.link-external:before,
:root .list-actions .module.text-in-box a.link-external:before,
.module.text-in-box :root .links-document .links-document-actions a.link-external:before,
:root .links-document .links-document-actions .module.text-in-box a.link-external:before,
.module.text-in-box :root #press-release a.link-external[href*="http://phx.corporate-ir.net/External.File"]:before,
:root #press-release .module.text-in-box a.link-external[href*="http://phx.corporate-ir.net/External.File"]:before,
:root .announcement-text .link.link-external:before,
.announcement-text :root .list-actions a.link-external:before,
:root .list-actions .announcement-text a.link-external:before,
.announcement-text :root .links-document .links-document-actions a.link-external:before,
:root .links-document .links-document-actions .announcement-text a.link-external:before,
.announcement-text :root #press-release a.link-external[href*="http://phx.corporate-ir.net/External.File"]:before,
:root #press-release .announcement-text a.link-external[href*="http://phx.corporate-ir.net/External.File"]:before {
    background-image: url(../images/icon-sprites-vector.svg);
}

.color-white .link.link-external:hover,
.color-white .list-actions a.link-external:hover,
.list-actions .color-white a.link-external:hover,
.color-white .links-document .links-document-actions a.link-external:hover,
.links-document .links-document-actions .color-white a.link-external:hover,
.color-white #press-release a.link-external[href*="http://phx.corporate-ir.net/External.File"]:hover,
#press-release .color-white a.link-external[href*="http://phx.corporate-ir.net/External.File"]:hover,
.white-text .link.link-external:hover,
.white-text .list-actions a.link-external:hover,
.list-actions .white-text a.link-external:hover,
.white-text .links-document .links-document-actions a.link-external:hover,
.links-document .links-document-actions .white-text a.link-external:hover,
.white-text #press-release a.link-external[href*="http://phx.corporate-ir.net/External.File"]:hover,
#press-release .white-text a.link-external[href*="http://phx.corporate-ir.net/External.File"]:hover,
.module.black-background .link.link-external:hover,
.module.black-background .list-actions a.link-external:hover,
.list-actions .module.black-background a.link-external:hover,
.module.black-background .links-document .links-document-actions a.link-external:hover,
.links-document .links-document-actions .module.black-background a.link-external:hover,
.module.black-background #press-release a.link-external[href*="http://phx.corporate-ir.net/External.File"]:hover,
#press-release .module.black-background a.link-external[href*="http://phx.corporate-ir.net/External.File"]:hover,
.module.text-in-box .link.link-external:hover,
.module.text-in-box .list-actions a.link-external:hover,
.list-actions .module.text-in-box a.link-external:hover,
.module.text-in-box .links-document .links-document-actions a.link-external:hover,
.links-document .links-document-actions .module.text-in-box a.link-external:hover,
.module.text-in-box #press-release a.link-external[href*="http://phx.corporate-ir.net/External.File"]:hover,
#press-release .module.text-in-box a.link-external[href*="http://phx.corporate-ir.net/External.File"]:hover,
.announcement-text .link.link-external:hover,
.announcement-text .list-actions a.link-external:hover,
.list-actions .announcement-text a.link-external:hover,
.announcement-text .links-document .links-document-actions a.link-external:hover,
.links-document .links-document-actions .announcement-text a.link-external:hover,
.announcement-text #press-release a.link-external[href*="http://phx.corporate-ir.net/External.File"]:hover,
#press-release .announcement-text a.link-external[href*="http://phx.corporate-ir.net/External.File"]:hover {
    color: #efdf00;
}

    .color-white .link.link-external:hover:before,
    .color-white .list-actions a.link-external:hover:before,
    .list-actions .color-white a.link-external:hover:before,
    .color-white .links-document .links-document-actions a.link-external:hover:before,
    .links-document .links-document-actions .color-white a.link-external:hover:before,
    .color-white #press-release a.link-external[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    #press-release .color-white a.link-external[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    .white-text .link.link-external:hover:before,
    .white-text .list-actions a.link-external:hover:before,
    .list-actions .white-text a.link-external:hover:before,
    .white-text .links-document .links-document-actions a.link-external:hover:before,
    .links-document .links-document-actions .white-text a.link-external:hover:before,
    .white-text #press-release a.link-external[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    #press-release .white-text a.link-external[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    .module.black-background .link.link-external:hover:before,
    .module.black-background .list-actions a.link-external:hover:before,
    .list-actions .module.black-background a.link-external:hover:before,
    .module.black-background .links-document .links-document-actions a.link-external:hover:before,
    .links-document .links-document-actions .module.black-background a.link-external:hover:before,
    .module.black-background #press-release a.link-external[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    #press-release .module.black-background a.link-external[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    .module.text-in-box .link.link-external:hover:before,
    .module.text-in-box .list-actions a.link-external:hover:before,
    .list-actions .module.text-in-box a.link-external:hover:before,
    .module.text-in-box .links-document .links-document-actions a.link-external:hover:before,
    .links-document .links-document-actions .module.text-in-box a.link-external:hover:before,
    .module.text-in-box #press-release a.link-external[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    #press-release .module.text-in-box a.link-external[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    .announcement-text .link.link-external:hover:before,
    .announcement-text .list-actions a.link-external:hover:before,
    .list-actions .announcement-text a.link-external:hover:before,
    .announcement-text .links-document .links-document-actions a.link-external:hover:before,
    .links-document .links-document-actions .announcement-text a.link-external:hover:before,
    .announcement-text #press-release a.link-external[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    #press-release .announcement-text a.link-external[href*="http://phx.corporate-ir.net/External.File"]:hover:before {
        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: -24em -12em;
        width: 1.5em;
        height: 1.5em;
    }

@media screen and (min-width: 0\0) {
    .color-white .link.link-external:hover:before,
    .color-white .list-actions a.link-external:hover:before,
    .list-actions .color-white a.link-external:hover:before,
    .color-white .links-document .links-document-actions a.link-external:hover:before,
    .links-document .links-document-actions .color-white a.link-external:hover:before,
    .color-white #press-release a.link-external[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    #press-release .color-white a.link-external[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    .white-text .link.link-external:hover:before,
    .white-text .list-actions a.link-external:hover:before,
    .list-actions .white-text a.link-external:hover:before,
    .white-text .links-document .links-document-actions a.link-external:hover:before,
    .links-document .links-document-actions .white-text a.link-external:hover:before,
    .white-text #press-release a.link-external[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    #press-release .white-text a.link-external[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    .module.black-background .link.link-external:hover:before,
    .module.black-background .list-actions a.link-external:hover:before,
    .list-actions .module.black-background a.link-external:hover:before,
    .module.black-background .links-document .links-document-actions a.link-external:hover:before,
    .links-document .links-document-actions .module.black-background a.link-external:hover:before,
    .module.black-background #press-release a.link-external[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    #press-release .module.black-background a.link-external[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    .module.text-in-box .link.link-external:hover:before,
    .module.text-in-box .list-actions a.link-external:hover:before,
    .list-actions .module.text-in-box a.link-external:hover:before,
    .module.text-in-box .links-document .links-document-actions a.link-external:hover:before,
    .links-document .links-document-actions .module.text-in-box a.link-external:hover:before,
    .module.text-in-box #press-release a.link-external[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    #press-release .module.text-in-box a.link-external[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    .announcement-text .link.link-external:hover:before,
    .announcement-text .list-actions a.link-external:hover:before,
    .list-actions .announcement-text a.link-external:hover:before,
    .announcement-text .links-document .links-document-actions a.link-external:hover:before,
    .links-document .links-document-actions .announcement-text a.link-external:hover:before,
    .announcement-text #press-release a.link-external[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    #press-release .announcement-text a.link-external[href*="http://phx.corporate-ir.net/External.File"]:hover:before {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .color-white .link.link-external:hover:before,
.color-white :root .list-actions a.link-external:hover:before,
:root .list-actions .color-white a.link-external:hover:before,
.color-white :root .links-document .links-document-actions a.link-external:hover:before,
:root .links-document .links-document-actions .color-white a.link-external:hover:before,
.color-white :root #press-release a.link-external[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
:root #press-release .color-white a.link-external[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
:root .white-text .link.link-external:hover:before,
.white-text :root .list-actions a.link-external:hover:before,
:root .list-actions .white-text a.link-external:hover:before,
.white-text :root .links-document .links-document-actions a.link-external:hover:before,
:root .links-document .links-document-actions .white-text a.link-external:hover:before,
.white-text :root #press-release a.link-external[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
:root #press-release .white-text a.link-external[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
:root .module.black-background .link.link-external:hover:before,
.module.black-background :root .list-actions a.link-external:hover:before,
:root .list-actions .module.black-background a.link-external:hover:before,
.module.black-background :root .links-document .links-document-actions a.link-external:hover:before,
:root .links-document .links-document-actions .module.black-background a.link-external:hover:before,
.module.black-background :root #press-release a.link-external[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
:root #press-release .module.black-background a.link-external[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
:root .module.text-in-box .link.link-external:hover:before,
.module.text-in-box :root .list-actions a.link-external:hover:before,
:root .list-actions .module.text-in-box a.link-external:hover:before,
.module.text-in-box :root .links-document .links-document-actions a.link-external:hover:before,
:root .links-document .links-document-actions .module.text-in-box a.link-external:hover:before,
.module.text-in-box :root #press-release a.link-external[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
:root #press-release .module.text-in-box a.link-external[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
:root .announcement-text .link.link-external:hover:before,
.announcement-text :root .list-actions a.link-external:hover:before,
:root .list-actions .announcement-text a.link-external:hover:before,
.announcement-text :root .links-document .links-document-actions a.link-external:hover:before,
:root .links-document .links-document-actions .announcement-text a.link-external:hover:before,
.announcement-text :root #press-release a.link-external[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
:root #press-release .announcement-text a.link-external[href*="http://phx.corporate-ir.net/External.File"]:hover:before {
    background-image: url(../images/icon-sprites-vector.svg);
}

.link.link-category-filter:before,
.list-actions a.link-category-filter:before,
.links-document .links-document-actions a.link-category-filter:before,
#press-release a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:before {
    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: -36em -4em;
    width: 1.5em;
    height: 1.5625em;
    font-size: 16px;
}

@media screen and (min-width: 0\0) {
    .link.link-category-filter:before,
    .list-actions a.link-category-filter:before,
    .links-document .links-document-actions a.link-category-filter:before,
    #press-release a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:before {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .link.link-category-filter:before,
:root .list-actions a.link-category-filter:before,
:root .links-document .links-document-actions a.link-category-filter:before,
:root #press-release a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:before {
    background-image: url(../images/icon-sprites-vector.svg);
}

.link.link-category-filter:hover:before,
.list-actions a.link-category-filter:hover:before,
.links-document .links-document-actions a.link-category-filter:hover:before,
#press-release a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:hover:before {
    background-position: -38em -4em;
}

.color-white .link.link-category-filter:before,
.color-white .list-actions a.link-category-filter:before,
.list-actions .color-white a.link-category-filter:before,
.color-white .links-document .links-document-actions a.link-category-filter:before,
.links-document .links-document-actions .color-white a.link-category-filter:before,
.color-white #press-release a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:before,
#press-release .color-white a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:before,
.white-text .link.link-category-filter:before,
.white-text .list-actions a.link-category-filter:before,
.list-actions .white-text a.link-category-filter:before,
.white-text .links-document .links-document-actions a.link-category-filter:before,
.links-document .links-document-actions .white-text a.link-category-filter:before,
.white-text #press-release a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:before,
#press-release .white-text a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:before,
.module.black-background .link.link-category-filter:before,
.module.black-background .list-actions a.link-category-filter:before,
.list-actions .module.black-background a.link-category-filter:before,
.module.black-background .links-document .links-document-actions a.link-category-filter:before,
.links-document .links-document-actions .module.black-background a.link-category-filter:before,
.module.black-background #press-release a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:before,
#press-release .module.black-background a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:before,
.module.text-in-box .link.link-category-filter:before,
.module.text-in-box .list-actions a.link-category-filter:before,
.list-actions .module.text-in-box a.link-category-filter:before,
.module.text-in-box .links-document .links-document-actions a.link-category-filter:before,
.links-document .links-document-actions .module.text-in-box a.link-category-filter:before,
.module.text-in-box #press-release a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:before,
#press-release .module.text-in-box a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:before,
.announcement-text .link.link-category-filter:before,
.announcement-text .list-actions a.link-category-filter:before,
.list-actions .announcement-text a.link-category-filter:before,
.announcement-text .links-document .links-document-actions a.link-category-filter:before,
.links-document .links-document-actions .announcement-text a.link-category-filter:before,
.announcement-text #press-release a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:before,
#press-release .announcement-text a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:before {
    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 -12em;
    width: 1.5em;
    height: 1.5625em;
}

@media screen and (min-width: 0\0) {
    .color-white .link.link-category-filter:before,
    .color-white .list-actions a.link-category-filter:before,
    .list-actions .color-white a.link-category-filter:before,
    .color-white .links-document .links-document-actions a.link-category-filter:before,
    .links-document .links-document-actions .color-white a.link-category-filter:before,
    .color-white #press-release a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:before,
    #press-release .color-white a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:before,
    .white-text .link.link-category-filter:before,
    .white-text .list-actions a.link-category-filter:before,
    .list-actions .white-text a.link-category-filter:before,
    .white-text .links-document .links-document-actions a.link-category-filter:before,
    .links-document .links-document-actions .white-text a.link-category-filter:before,
    .white-text #press-release a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:before,
    #press-release .white-text a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:before,
    .module.black-background .link.link-category-filter:before,
    .module.black-background .list-actions a.link-category-filter:before,
    .list-actions .module.black-background a.link-category-filter:before,
    .module.black-background .links-document .links-document-actions a.link-category-filter:before,
    .links-document .links-document-actions .module.black-background a.link-category-filter:before,
    .module.black-background #press-release a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:before,
    #press-release .module.black-background a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:before,
    .module.text-in-box .link.link-category-filter:before,
    .module.text-in-box .list-actions a.link-category-filter:before,
    .list-actions .module.text-in-box a.link-category-filter:before,
    .module.text-in-box .links-document .links-document-actions a.link-category-filter:before,
    .links-document .links-document-actions .module.text-in-box a.link-category-filter:before,
    .module.text-in-box #press-release a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:before,
    #press-release .module.text-in-box a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:before,
    .announcement-text .link.link-category-filter:before,
    .announcement-text .list-actions a.link-category-filter:before,
    .list-actions .announcement-text a.link-category-filter:before,
    .announcement-text .links-document .links-document-actions a.link-category-filter:before,
    .links-document .links-document-actions .announcement-text a.link-category-filter:before,
    .announcement-text #press-release a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:before,
    #press-release .announcement-text a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:before {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .color-white .link.link-category-filter:before,
.color-white :root .list-actions a.link-category-filter:before,
:root .list-actions .color-white a.link-category-filter:before,
.color-white :root .links-document .links-document-actions a.link-category-filter:before,
:root .links-document .links-document-actions .color-white a.link-category-filter:before,
.color-white :root #press-release a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:before,
:root #press-release .color-white a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:before,
:root .white-text .link.link-category-filter:before,
.white-text :root .list-actions a.link-category-filter:before,
:root .list-actions .white-text a.link-category-filter:before,
.white-text :root .links-document .links-document-actions a.link-category-filter:before,
:root .links-document .links-document-actions .white-text a.link-category-filter:before,
.white-text :root #press-release a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:before,
:root #press-release .white-text a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:before,
:root .module.black-background .link.link-category-filter:before,
.module.black-background :root .list-actions a.link-category-filter:before,
:root .list-actions .module.black-background a.link-category-filter:before,
.module.black-background :root .links-document .links-document-actions a.link-category-filter:before,
:root .links-document .links-document-actions .module.black-background a.link-category-filter:before,
.module.black-background :root #press-release a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:before,
:root #press-release .module.black-background a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:before,
:root .module.text-in-box .link.link-category-filter:before,
.module.text-in-box :root .list-actions a.link-category-filter:before,
:root .list-actions .module.text-in-box a.link-category-filter:before,
.module.text-in-box :root .links-document .links-document-actions a.link-category-filter:before,
:root .links-document .links-document-actions .module.text-in-box a.link-category-filter:before,
.module.text-in-box :root #press-release a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:before,
:root #press-release .module.text-in-box a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:before,
:root .announcement-text .link.link-category-filter:before,
.announcement-text :root .list-actions a.link-category-filter:before,
:root .list-actions .announcement-text a.link-category-filter:before,
.announcement-text :root .links-document .links-document-actions a.link-category-filter:before,
:root .links-document .links-document-actions .announcement-text a.link-category-filter:before,
.announcement-text :root #press-release a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:before,
:root #press-release .announcement-text a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:before {
    background-image: url(../images/icon-sprites-vector.svg);
}

.color-white .link.link-category-filter:hover,
.color-white .list-actions a.link-category-filter:hover,
.list-actions .color-white a.link-category-filter:hover,
.color-white .links-document .links-document-actions a.link-category-filter:hover,
.links-document .links-document-actions .color-white a.link-category-filter:hover,
.color-white #press-release a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:hover,
#press-release .color-white a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:hover,
.white-text .link.link-category-filter:hover,
.white-text .list-actions a.link-category-filter:hover,
.list-actions .white-text a.link-category-filter:hover,
.white-text .links-document .links-document-actions a.link-category-filter:hover,
.links-document .links-document-actions .white-text a.link-category-filter:hover,
.white-text #press-release a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:hover,
#press-release .white-text a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:hover,
.module.black-background .link.link-category-filter:hover,
.module.black-background .list-actions a.link-category-filter:hover,
.list-actions .module.black-background a.link-category-filter:hover,
.module.black-background .links-document .links-document-actions a.link-category-filter:hover,
.links-document .links-document-actions .module.black-background a.link-category-filter:hover,
.module.black-background #press-release a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:hover,
#press-release .module.black-background a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:hover,
.module.text-in-box .link.link-category-filter:hover,
.module.text-in-box .list-actions a.link-category-filter:hover,
.list-actions .module.text-in-box a.link-category-filter:hover,
.module.text-in-box .links-document .links-document-actions a.link-category-filter:hover,
.links-document .links-document-actions .module.text-in-box a.link-category-filter:hover,
.module.text-in-box #press-release a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:hover,
#press-release .module.text-in-box a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:hover,
.announcement-text .link.link-category-filter:hover,
.announcement-text .list-actions a.link-category-filter:hover,
.list-actions .announcement-text a.link-category-filter:hover,
.announcement-text .links-document .links-document-actions a.link-category-filter:hover,
.links-document .links-document-actions .announcement-text a.link-category-filter:hover,
.announcement-text #press-release a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:hover,
#press-release .announcement-text a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:hover {
    color: #efdf00;
}

    .color-white .link.link-category-filter:hover:before,
    .color-white .list-actions a.link-category-filter:hover:before,
    .list-actions .color-white a.link-category-filter:hover:before,
    .color-white .links-document .links-document-actions a.link-category-filter:hover:before,
    .links-document .links-document-actions .color-white a.link-category-filter:hover:before,
    .color-white #press-release a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    #press-release .color-white a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    .white-text .link.link-category-filter:hover:before,
    .white-text .list-actions a.link-category-filter:hover:before,
    .list-actions .white-text a.link-category-filter:hover:before,
    .white-text .links-document .links-document-actions a.link-category-filter:hover:before,
    .links-document .links-document-actions .white-text a.link-category-filter:hover:before,
    .white-text #press-release a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    #press-release .white-text a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    .module.black-background .link.link-category-filter:hover:before,
    .module.black-background .list-actions a.link-category-filter:hover:before,
    .list-actions .module.black-background a.link-category-filter:hover:before,
    .module.black-background .links-document .links-document-actions a.link-category-filter:hover:before,
    .links-document .links-document-actions .module.black-background a.link-category-filter:hover:before,
    .module.black-background #press-release a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    #press-release .module.black-background a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    .module.text-in-box .link.link-category-filter:hover:before,
    .module.text-in-box .list-actions a.link-category-filter:hover:before,
    .list-actions .module.text-in-box a.link-category-filter:hover:before,
    .module.text-in-box .links-document .links-document-actions a.link-category-filter:hover:before,
    .links-document .links-document-actions .module.text-in-box a.link-category-filter:hover:before,
    .module.text-in-box #press-release a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    #press-release .module.text-in-box a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    .announcement-text .link.link-category-filter:hover:before,
    .announcement-text .list-actions a.link-category-filter:hover:before,
    .list-actions .announcement-text a.link-category-filter:hover:before,
    .announcement-text .links-document .links-document-actions a.link-category-filter:hover:before,
    .links-document .links-document-actions .announcement-text a.link-category-filter:hover:before,
    .announcement-text #press-release a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    #press-release .announcement-text a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:hover:before {
        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: -32em -12em;
        width: 1.5em;
        height: 1.5625em;
    }

@media screen and (min-width: 0\0) {
    .color-white .link.link-category-filter:hover:before,
    .color-white .list-actions a.link-category-filter:hover:before,
    .list-actions .color-white a.link-category-filter:hover:before,
    .color-white .links-document .links-document-actions a.link-category-filter:hover:before,
    .links-document .links-document-actions .color-white a.link-category-filter:hover:before,
    .color-white #press-release a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    #press-release .color-white a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    .white-text .link.link-category-filter:hover:before,
    .white-text .list-actions a.link-category-filter:hover:before,
    .list-actions .white-text a.link-category-filter:hover:before,
    .white-text .links-document .links-document-actions a.link-category-filter:hover:before,
    .links-document .links-document-actions .white-text a.link-category-filter:hover:before,
    .white-text #press-release a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    #press-release .white-text a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    .module.black-background .link.link-category-filter:hover:before,
    .module.black-background .list-actions a.link-category-filter:hover:before,
    .list-actions .module.black-background a.link-category-filter:hover:before,
    .module.black-background .links-document .links-document-actions a.link-category-filter:hover:before,
    .links-document .links-document-actions .module.black-background a.link-category-filter:hover:before,
    .module.black-background #press-release a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    #press-release .module.black-background a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    .module.text-in-box .link.link-category-filter:hover:before,
    .module.text-in-box .list-actions a.link-category-filter:hover:before,
    .list-actions .module.text-in-box a.link-category-filter:hover:before,
    .module.text-in-box .links-document .links-document-actions a.link-category-filter:hover:before,
    .links-document .links-document-actions .module.text-in-box a.link-category-filter:hover:before,
    .module.text-in-box #press-release a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    #press-release .module.text-in-box a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    .announcement-text .link.link-category-filter:hover:before,
    .announcement-text .list-actions a.link-category-filter:hover:before,
    .list-actions .announcement-text a.link-category-filter:hover:before,
    .announcement-text .links-document .links-document-actions a.link-category-filter:hover:before,
    .links-document .links-document-actions .announcement-text a.link-category-filter:hover:before,
    .announcement-text #press-release a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    #press-release .announcement-text a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:hover:before {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .color-white .link.link-category-filter:hover:before,
.color-white :root .list-actions a.link-category-filter:hover:before,
:root .list-actions .color-white a.link-category-filter:hover:before,
.color-white :root .links-document .links-document-actions a.link-category-filter:hover:before,
:root .links-document .links-document-actions .color-white a.link-category-filter:hover:before,
.color-white :root #press-release a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
:root #press-release .color-white a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
:root .white-text .link.link-category-filter:hover:before,
.white-text :root .list-actions a.link-category-filter:hover:before,
:root .list-actions .white-text a.link-category-filter:hover:before,
.white-text :root .links-document .links-document-actions a.link-category-filter:hover:before,
:root .links-document .links-document-actions .white-text a.link-category-filter:hover:before,
.white-text :root #press-release a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
:root #press-release .white-text a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
:root .module.black-background .link.link-category-filter:hover:before,
.module.black-background :root .list-actions a.link-category-filter:hover:before,
:root .list-actions .module.black-background a.link-category-filter:hover:before,
.module.black-background :root .links-document .links-document-actions a.link-category-filter:hover:before,
:root .links-document .links-document-actions .module.black-background a.link-category-filter:hover:before,
.module.black-background :root #press-release a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
:root #press-release .module.black-background a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
:root .module.text-in-box .link.link-category-filter:hover:before,
.module.text-in-box :root .list-actions a.link-category-filter:hover:before,
:root .list-actions .module.text-in-box a.link-category-filter:hover:before,
.module.text-in-box :root .links-document .links-document-actions a.link-category-filter:hover:before,
:root .links-document .links-document-actions .module.text-in-box a.link-category-filter:hover:before,
.module.text-in-box :root #press-release a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
:root #press-release .module.text-in-box a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
:root .announcement-text .link.link-category-filter:hover:before,
.announcement-text :root .list-actions a.link-category-filter:hover:before,
:root .list-actions .announcement-text a.link-category-filter:hover:before,
.announcement-text :root .links-document .links-document-actions a.link-category-filter:hover:before,
:root .links-document .links-document-actions .announcement-text a.link-category-filter:hover:before,
.announcement-text :root #press-release a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
:root #press-release .announcement-text a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:hover:before {
    background-image: url(../images/icon-sprites-vector.svg);
}

.link.link-category-filter:before,
.list-actions a.link-category-filter:before,
.links-document .links-document-actions a.link-category-filter:before,
#press-release a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:before,
.link.link-jump-to:before,
.list-actions a.link-jump-to:before,
.links-document .links-document-actions a.link-jump-to:before,
#press-release a.link-jump-to[href*="http://phx.corporate-ir.net/External.File"]:before {
    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: -36em -4em;
    width: 1.5em;
    height: 1.5625em;
    font-size: 16px;
}

@media screen and (min-width: 0\0) {
    .link.link-category-filter:before,
    .list-actions a.link-category-filter:before,
    .links-document .links-document-actions a.link-category-filter:before,
    #press-release a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:before,
    .link.link-jump-to:before,
    .list-actions a.link-jump-to:before,
    .links-document .links-document-actions a.link-jump-to:before,
    #press-release a.link-jump-to[href*="http://phx.corporate-ir.net/External.File"]:before {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .link.link-category-filter:before,
:root .list-actions a.link-category-filter:before,
:root .links-document .links-document-actions a.link-category-filter:before,
:root #press-release a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:before,
:root .link.link-jump-to:before,
:root .list-actions a.link-jump-to:before,
:root .links-document .links-document-actions a.link-jump-to:before,
:root #press-release a.link-jump-to[href*="http://phx.corporate-ir.net/External.File"]:before {
    background-image: url(../images/icon-sprites-vector.svg);
}

.link.link-category-filter:hover:before,
.list-actions a.link-category-filter:hover:before,
.links-document .links-document-actions a.link-category-filter:hover:before,
#press-release a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
.link.link-jump-to:hover:before,
.list-actions a.link-jump-to:hover:before,
.links-document .links-document-actions a.link-jump-to:hover:before,
#press-release a.link-jump-to[href*="http://phx.corporate-ir.net/External.File"]:hover:before {
    background-position: -38em -4em;
}

.color-white .link.link-category-filter:before,
.color-white .list-actions a.link-category-filter:before,
.list-actions .color-white a.link-category-filter:before,
.color-white .links-document .links-document-actions a.link-category-filter:before,
.links-document .links-document-actions .color-white a.link-category-filter:before,
.color-white #press-release a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:before,
#press-release .color-white a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:before,
.white-text .link.link-category-filter:before,
.white-text .list-actions a.link-category-filter:before,
.list-actions .white-text a.link-category-filter:before,
.white-text .links-document .links-document-actions a.link-category-filter:before,
.links-document .links-document-actions .white-text a.link-category-filter:before,
.white-text #press-release a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:before,
#press-release .white-text a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:before,
.module.black-background .link.link-category-filter:before,
.module.black-background .list-actions a.link-category-filter:before,
.list-actions .module.black-background a.link-category-filter:before,
.module.black-background .links-document .links-document-actions a.link-category-filter:before,
.links-document .links-document-actions .module.black-background a.link-category-filter:before,
.module.black-background #press-release a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:before,
#press-release .module.black-background a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:before,
.module.text-in-box .link.link-category-filter:before,
.module.text-in-box .list-actions a.link-category-filter:before,
.list-actions .module.text-in-box a.link-category-filter:before,
.module.text-in-box .links-document .links-document-actions a.link-category-filter:before,
.links-document .links-document-actions .module.text-in-box a.link-category-filter:before,
.module.text-in-box #press-release a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:before,
#press-release .module.text-in-box a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:before,
.announcement-text .link.link-category-filter:before,
.announcement-text .list-actions a.link-category-filter:before,
.list-actions .announcement-text a.link-category-filter:before,
.announcement-text .links-document .links-document-actions a.link-category-filter:before,
.links-document .links-document-actions .announcement-text a.link-category-filter:before,
.announcement-text #press-release a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:before,
#press-release .announcement-text a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:before,
.color-white .link.link-jump-to:before,
.color-white .list-actions a.link-jump-to:before,
.list-actions .color-white a.link-jump-to:before,
.color-white .links-document .links-document-actions a.link-jump-to:before,
.links-document .links-document-actions .color-white a.link-jump-to:before,
.color-white #press-release a.link-jump-to[href*="http://phx.corporate-ir.net/External.File"]:before,
#press-release .color-white a.link-jump-to[href*="http://phx.corporate-ir.net/External.File"]:before,
.white-text .link.link-jump-to:before,
.white-text .list-actions a.link-jump-to:before,
.list-actions .white-text a.link-jump-to:before,
.white-text .links-document .links-document-actions a.link-jump-to:before,
.links-document .links-document-actions .white-text a.link-jump-to:before,
.white-text #press-release a.link-jump-to[href*="http://phx.corporate-ir.net/External.File"]:before,
#press-release .white-text a.link-jump-to[href*="http://phx.corporate-ir.net/External.File"]:before,
.module.black-background .link.link-jump-to:before,
.module.black-background .list-actions a.link-jump-to:before,
.list-actions .module.black-background a.link-jump-to:before,
.module.black-background .links-document .links-document-actions a.link-jump-to:before,
.links-document .links-document-actions .module.black-background a.link-jump-to:before,
.module.black-background #press-release a.link-jump-to[href*="http://phx.corporate-ir.net/External.File"]:before,
#press-release .module.black-background a.link-jump-to[href*="http://phx.corporate-ir.net/External.File"]:before,
.module.text-in-box .link.link-jump-to:before,
.module.text-in-box .list-actions a.link-jump-to:before,
.list-actions .module.text-in-box a.link-jump-to:before,
.module.text-in-box .links-document .links-document-actions a.link-jump-to:before,
.links-document .links-document-actions .module.text-in-box a.link-jump-to:before,
.module.text-in-box #press-release a.link-jump-to[href*="http://phx.corporate-ir.net/External.File"]:before,
#press-release .module.text-in-box a.link-jump-to[href*="http://phx.corporate-ir.net/External.File"]:before,
.announcement-text .link.link-jump-to:before,
.announcement-text .list-actions a.link-jump-to:before,
.list-actions .announcement-text a.link-jump-to:before,
.announcement-text .links-document .links-document-actions a.link-jump-to:before,
.links-document .links-document-actions .announcement-text a.link-jump-to:before,
.announcement-text #press-release a.link-jump-to[href*="http://phx.corporate-ir.net/External.File"]:before,
#press-release .announcement-text a.link-jump-to[href*="http://phx.corporate-ir.net/External.File"]:before {
    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 -12em;
    width: 1.5em;
    height: 1.5625em;
}

@media screen and (min-width: 0\0) {
    .color-white .link.link-category-filter:before,
    .color-white .list-actions a.link-category-filter:before,
    .list-actions .color-white a.link-category-filter:before,
    .color-white .links-document .links-document-actions a.link-category-filter:before,
    .links-document .links-document-actions .color-white a.link-category-filter:before,
    .color-white #press-release a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:before,
    #press-release .color-white a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:before,
    .white-text .link.link-category-filter:before,
    .white-text .list-actions a.link-category-filter:before,
    .list-actions .white-text a.link-category-filter:before,
    .white-text .links-document .links-document-actions a.link-category-filter:before,
    .links-document .links-document-actions .white-text a.link-category-filter:before,
    .white-text #press-release a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:before,
    #press-release .white-text a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:before,
    .module.black-background .link.link-category-filter:before,
    .module.black-background .list-actions a.link-category-filter:before,
    .list-actions .module.black-background a.link-category-filter:before,
    .module.black-background .links-document .links-document-actions a.link-category-filter:before,
    .links-document .links-document-actions .module.black-background a.link-category-filter:before,
    .module.black-background #press-release a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:before,
    #press-release .module.black-background a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:before,
    .module.text-in-box .link.link-category-filter:before,
    .module.text-in-box .list-actions a.link-category-filter:before,
    .list-actions .module.text-in-box a.link-category-filter:before,
    .module.text-in-box .links-document .links-document-actions a.link-category-filter:before,
    .links-document .links-document-actions .module.text-in-box a.link-category-filter:before,
    .module.text-in-box #press-release a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:before,
    #press-release .module.text-in-box a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:before,
    .announcement-text .link.link-category-filter:before,
    .announcement-text .list-actions a.link-category-filter:before,
    .list-actions .announcement-text a.link-category-filter:before,
    .announcement-text .links-document .links-document-actions a.link-category-filter:before,
    .links-document .links-document-actions .announcement-text a.link-category-filter:before,
    .announcement-text #press-release a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:before,
    #press-release .announcement-text a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:before,
    .color-white .link.link-jump-to:before,
    .color-white .list-actions a.link-jump-to:before,
    .list-actions .color-white a.link-jump-to:before,
    .color-white .links-document .links-document-actions a.link-jump-to:before,
    .links-document .links-document-actions .color-white a.link-jump-to:before,
    .color-white #press-release a.link-jump-to[href*="http://phx.corporate-ir.net/External.File"]:before,
    #press-release .color-white a.link-jump-to[href*="http://phx.corporate-ir.net/External.File"]:before,
    .white-text .link.link-jump-to:before,
    .white-text .list-actions a.link-jump-to:before,
    .list-actions .white-text a.link-jump-to:before,
    .white-text .links-document .links-document-actions a.link-jump-to:before,
    .links-document .links-document-actions .white-text a.link-jump-to:before,
    .white-text #press-release a.link-jump-to[href*="http://phx.corporate-ir.net/External.File"]:before,
    #press-release .white-text a.link-jump-to[href*="http://phx.corporate-ir.net/External.File"]:before,
    .module.black-background .link.link-jump-to:before,
    .module.black-background .list-actions a.link-jump-to:before,
    .list-actions .module.black-background a.link-jump-to:before,
    .module.black-background .links-document .links-document-actions a.link-jump-to:before,
    .links-document .links-document-actions .module.black-background a.link-jump-to:before,
    .module.black-background #press-release a.link-jump-to[href*="http://phx.corporate-ir.net/External.File"]:before,
    #press-release .module.black-background a.link-jump-to[href*="http://phx.corporate-ir.net/External.File"]:before,
    .module.text-in-box .link.link-jump-to:before,
    .module.text-in-box .list-actions a.link-jump-to:before,
    .list-actions .module.text-in-box a.link-jump-to:before,
    .module.text-in-box .links-document .links-document-actions a.link-jump-to:before,
    .links-document .links-document-actions .module.text-in-box a.link-jump-to:before,
    .module.text-in-box #press-release a.link-jump-to[href*="http://phx.corporate-ir.net/External.File"]:before,
    #press-release .module.text-in-box a.link-jump-to[href*="http://phx.corporate-ir.net/External.File"]:before,
    .announcement-text .link.link-jump-to:before,
    .announcement-text .list-actions a.link-jump-to:before,
    .list-actions .announcement-text a.link-jump-to:before,
    .announcement-text .links-document .links-document-actions a.link-jump-to:before,
    .links-document .links-document-actions .announcement-text a.link-jump-to:before,
    .announcement-text #press-release a.link-jump-to[href*="http://phx.corporate-ir.net/External.File"]:before,
    #press-release .announcement-text a.link-jump-to[href*="http://phx.corporate-ir.net/External.File"]:before {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .color-white .link.link-category-filter:before,
.color-white :root .list-actions a.link-category-filter:before,
:root .list-actions .color-white a.link-category-filter:before,
.color-white :root .links-document .links-document-actions a.link-category-filter:before,
:root .links-document .links-document-actions .color-white a.link-category-filter:before,
.color-white :root #press-release a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:before,
:root #press-release .color-white a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:before,
:root .white-text .link.link-category-filter:before,
.white-text :root .list-actions a.link-category-filter:before,
:root .list-actions .white-text a.link-category-filter:before,
.white-text :root .links-document .links-document-actions a.link-category-filter:before,
:root .links-document .links-document-actions .white-text a.link-category-filter:before,
.white-text :root #press-release a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:before,
:root #press-release .white-text a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:before,
:root .module.black-background .link.link-category-filter:before,
.module.black-background :root .list-actions a.link-category-filter:before,
:root .list-actions .module.black-background a.link-category-filter:before,
.module.black-background :root .links-document .links-document-actions a.link-category-filter:before,
:root .links-document .links-document-actions .module.black-background a.link-category-filter:before,
.module.black-background :root #press-release a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:before,
:root #press-release .module.black-background a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:before,
:root .module.text-in-box .link.link-category-filter:before,
.module.text-in-box :root .list-actions a.link-category-filter:before,
:root .list-actions .module.text-in-box a.link-category-filter:before,
.module.text-in-box :root .links-document .links-document-actions a.link-category-filter:before,
:root .links-document .links-document-actions .module.text-in-box a.link-category-filter:before,
.module.text-in-box :root #press-release a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:before,
:root #press-release .module.text-in-box a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:before,
:root .announcement-text .link.link-category-filter:before,
.announcement-text :root .list-actions a.link-category-filter:before,
:root .list-actions .announcement-text a.link-category-filter:before,
.announcement-text :root .links-document .links-document-actions a.link-category-filter:before,
:root .links-document .links-document-actions .announcement-text a.link-category-filter:before,
.announcement-text :root #press-release a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:before,
:root #press-release .announcement-text a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:before,
:root .color-white .link.link-jump-to:before,
.color-white :root .list-actions a.link-jump-to:before,
:root .list-actions .color-white a.link-jump-to:before,
.color-white :root .links-document .links-document-actions a.link-jump-to:before,
:root .links-document .links-document-actions .color-white a.link-jump-to:before,
.color-white :root #press-release a.link-jump-to[href*="http://phx.corporate-ir.net/External.File"]:before,
:root #press-release .color-white a.link-jump-to[href*="http://phx.corporate-ir.net/External.File"]:before,
:root .white-text .link.link-jump-to:before,
.white-text :root .list-actions a.link-jump-to:before,
:root .list-actions .white-text a.link-jump-to:before,
.white-text :root .links-document .links-document-actions a.link-jump-to:before,
:root .links-document .links-document-actions .white-text a.link-jump-to:before,
.white-text :root #press-release a.link-jump-to[href*="http://phx.corporate-ir.net/External.File"]:before,
:root #press-release .white-text a.link-jump-to[href*="http://phx.corporate-ir.net/External.File"]:before,
:root .module.black-background .link.link-jump-to:before,
.module.black-background :root .list-actions a.link-jump-to:before,
:root .list-actions .module.black-background a.link-jump-to:before,
.module.black-background :root .links-document .links-document-actions a.link-jump-to:before,
:root .links-document .links-document-actions .module.black-background a.link-jump-to:before,
.module.black-background :root #press-release a.link-jump-to[href*="http://phx.corporate-ir.net/External.File"]:before,
:root #press-release .module.black-background a.link-jump-to[href*="http://phx.corporate-ir.net/External.File"]:before,
:root .module.text-in-box .link.link-jump-to:before,
.module.text-in-box :root .list-actions a.link-jump-to:before,
:root .list-actions .module.text-in-box a.link-jump-to:before,
.module.text-in-box :root .links-document .links-document-actions a.link-jump-to:before,
:root .links-document .links-document-actions .module.text-in-box a.link-jump-to:before,
.module.text-in-box :root #press-release a.link-jump-to[href*="http://phx.corporate-ir.net/External.File"]:before,
:root #press-release .module.text-in-box a.link-jump-to[href*="http://phx.corporate-ir.net/External.File"]:before,
:root .announcement-text .link.link-jump-to:before,
.announcement-text :root .list-actions a.link-jump-to:before,
:root .list-actions .announcement-text a.link-jump-to:before,
.announcement-text :root .links-document .links-document-actions a.link-jump-to:before,
:root .links-document .links-document-actions .announcement-text a.link-jump-to:before,
.announcement-text :root #press-release a.link-jump-to[href*="http://phx.corporate-ir.net/External.File"]:before,
:root #press-release .announcement-text a.link-jump-to[href*="http://phx.corporate-ir.net/External.File"]:before {
    background-image: url(../images/icon-sprites-vector.svg);
}

.color-white .link.link-category-filter:hover,
.color-white .list-actions a.link-category-filter:hover,
.list-actions .color-white a.link-category-filter:hover,
.color-white .links-document .links-document-actions a.link-category-filter:hover,
.links-document .links-document-actions .color-white a.link-category-filter:hover,
.color-white #press-release a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:hover,
#press-release .color-white a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:hover,
.white-text .link.link-category-filter:hover,
.white-text .list-actions a.link-category-filter:hover,
.list-actions .white-text a.link-category-filter:hover,
.white-text .links-document .links-document-actions a.link-category-filter:hover,
.links-document .links-document-actions .white-text a.link-category-filter:hover,
.white-text #press-release a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:hover,
#press-release .white-text a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:hover,
.module.black-background .link.link-category-filter:hover,
.module.black-background .list-actions a.link-category-filter:hover,
.list-actions .module.black-background a.link-category-filter:hover,
.module.black-background .links-document .links-document-actions a.link-category-filter:hover,
.links-document .links-document-actions .module.black-background a.link-category-filter:hover,
.module.black-background #press-release a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:hover,
#press-release .module.black-background a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:hover,
.module.text-in-box .link.link-category-filter:hover,
.module.text-in-box .list-actions a.link-category-filter:hover,
.list-actions .module.text-in-box a.link-category-filter:hover,
.module.text-in-box .links-document .links-document-actions a.link-category-filter:hover,
.links-document .links-document-actions .module.text-in-box a.link-category-filter:hover,
.module.text-in-box #press-release a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:hover,
#press-release .module.text-in-box a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:hover,
.announcement-text .link.link-category-filter:hover,
.announcement-text .list-actions a.link-category-filter:hover,
.list-actions .announcement-text a.link-category-filter:hover,
.announcement-text .links-document .links-document-actions a.link-category-filter:hover,
.links-document .links-document-actions .announcement-text a.link-category-filter:hover,
.announcement-text #press-release a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:hover,
#press-release .announcement-text a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:hover,
.color-white .link.link-jump-to:hover,
.color-white .list-actions a.link-jump-to:hover,
.list-actions .color-white a.link-jump-to:hover,
.color-white .links-document .links-document-actions a.link-jump-to:hover,
.links-document .links-document-actions .color-white a.link-jump-to:hover,
.color-white #press-release a.link-jump-to[href*="http://phx.corporate-ir.net/External.File"]:hover,
#press-release .color-white a.link-jump-to[href*="http://phx.corporate-ir.net/External.File"]:hover,
.white-text .link.link-jump-to:hover,
.white-text .list-actions a.link-jump-to:hover,
.list-actions .white-text a.link-jump-to:hover,
.white-text .links-document .links-document-actions a.link-jump-to:hover,
.links-document .links-document-actions .white-text a.link-jump-to:hover,
.white-text #press-release a.link-jump-to[href*="http://phx.corporate-ir.net/External.File"]:hover,
#press-release .white-text a.link-jump-to[href*="http://phx.corporate-ir.net/External.File"]:hover,
.module.black-background .link.link-jump-to:hover,
.module.black-background .list-actions a.link-jump-to:hover,
.list-actions .module.black-background a.link-jump-to:hover,
.module.black-background .links-document .links-document-actions a.link-jump-to:hover,
.links-document .links-document-actions .module.black-background a.link-jump-to:hover,
.module.black-background #press-release a.link-jump-to[href*="http://phx.corporate-ir.net/External.File"]:hover,
#press-release .module.black-background a.link-jump-to[href*="http://phx.corporate-ir.net/External.File"]:hover,
.module.text-in-box .link.link-jump-to:hover,
.module.text-in-box .list-actions a.link-jump-to:hover,
.list-actions .module.text-in-box a.link-jump-to:hover,
.module.text-in-box .links-document .links-document-actions a.link-jump-to:hover,
.links-document .links-document-actions .module.text-in-box a.link-jump-to:hover,
.module.text-in-box #press-release a.link-jump-to[href*="http://phx.corporate-ir.net/External.File"]:hover,
#press-release .module.text-in-box a.link-jump-to[href*="http://phx.corporate-ir.net/External.File"]:hover,
.announcement-text .link.link-jump-to:hover,
.announcement-text .list-actions a.link-jump-to:hover,
.list-actions .announcement-text a.link-jump-to:hover,
.announcement-text .links-document .links-document-actions a.link-jump-to:hover,
.links-document .links-document-actions .announcement-text a.link-jump-to:hover,
.announcement-text #press-release a.link-jump-to[href*="http://phx.corporate-ir.net/External.File"]:hover,
#press-release .announcement-text a.link-jump-to[href*="http://phx.corporate-ir.net/External.File"]:hover {
    color: #efdf00;
}

    .color-white .link.link-category-filter:hover:before,
    .color-white .list-actions a.link-category-filter:hover:before,
    .list-actions .color-white a.link-category-filter:hover:before,
    .color-white .links-document .links-document-actions a.link-category-filter:hover:before,
    .links-document .links-document-actions .color-white a.link-category-filter:hover:before,
    .color-white #press-release a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    #press-release .color-white a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    .white-text .link.link-category-filter:hover:before,
    .white-text .list-actions a.link-category-filter:hover:before,
    .list-actions .white-text a.link-category-filter:hover:before,
    .white-text .links-document .links-document-actions a.link-category-filter:hover:before,
    .links-document .links-document-actions .white-text a.link-category-filter:hover:before,
    .white-text #press-release a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    #press-release .white-text a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    .module.black-background .link.link-category-filter:hover:before,
    .module.black-background .list-actions a.link-category-filter:hover:before,
    .list-actions .module.black-background a.link-category-filter:hover:before,
    .module.black-background .links-document .links-document-actions a.link-category-filter:hover:before,
    .links-document .links-document-actions .module.black-background a.link-category-filter:hover:before,
    .module.black-background #press-release a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    #press-release .module.black-background a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    .module.text-in-box .link.link-category-filter:hover:before,
    .module.text-in-box .list-actions a.link-category-filter:hover:before,
    .list-actions .module.text-in-box a.link-category-filter:hover:before,
    .module.text-in-box .links-document .links-document-actions a.link-category-filter:hover:before,
    .links-document .links-document-actions .module.text-in-box a.link-category-filter:hover:before,
    .module.text-in-box #press-release a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    #press-release .module.text-in-box a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    .announcement-text .link.link-category-filter:hover:before,
    .announcement-text .list-actions a.link-category-filter:hover:before,
    .list-actions .announcement-text a.link-category-filter:hover:before,
    .announcement-text .links-document .links-document-actions a.link-category-filter:hover:before,
    .links-document .links-document-actions .announcement-text a.link-category-filter:hover:before,
    .announcement-text #press-release a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    #press-release .announcement-text a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    .color-white .link.link-jump-to:hover:before,
    .color-white .list-actions a.link-jump-to:hover:before,
    .list-actions .color-white a.link-jump-to:hover:before,
    .color-white .links-document .links-document-actions a.link-jump-to:hover:before,
    .links-document .links-document-actions .color-white a.link-jump-to:hover:before,
    .color-white #press-release a.link-jump-to[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    #press-release .color-white a.link-jump-to[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    .white-text .link.link-jump-to:hover:before,
    .white-text .list-actions a.link-jump-to:hover:before,
    .list-actions .white-text a.link-jump-to:hover:before,
    .white-text .links-document .links-document-actions a.link-jump-to:hover:before,
    .links-document .links-document-actions .white-text a.link-jump-to:hover:before,
    .white-text #press-release a.link-jump-to[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    #press-release .white-text a.link-jump-to[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    .module.black-background .link.link-jump-to:hover:before,
    .module.black-background .list-actions a.link-jump-to:hover:before,
    .list-actions .module.black-background a.link-jump-to:hover:before,
    .module.black-background .links-document .links-document-actions a.link-jump-to:hover:before,
    .links-document .links-document-actions .module.black-background a.link-jump-to:hover:before,
    .module.black-background #press-release a.link-jump-to[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    #press-release .module.black-background a.link-jump-to[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    .module.text-in-box .link.link-jump-to:hover:before,
    .module.text-in-box .list-actions a.link-jump-to:hover:before,
    .list-actions .module.text-in-box a.link-jump-to:hover:before,
    .module.text-in-box .links-document .links-document-actions a.link-jump-to:hover:before,
    .links-document .links-document-actions .module.text-in-box a.link-jump-to:hover:before,
    .module.text-in-box #press-release a.link-jump-to[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    #press-release .module.text-in-box a.link-jump-to[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    .announcement-text .link.link-jump-to:hover:before,
    .announcement-text .list-actions a.link-jump-to:hover:before,
    .list-actions .announcement-text a.link-jump-to:hover:before,
    .announcement-text .links-document .links-document-actions a.link-jump-to:hover:before,
    .links-document .links-document-actions .announcement-text a.link-jump-to:hover:before,
    .announcement-text #press-release a.link-jump-to[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    #press-release .announcement-text a.link-jump-to[href*="http://phx.corporate-ir.net/External.File"]:hover:before {
        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: -32em -12em;
        width: 1.5em;
        height: 1.5625em;
    }

@media screen and (min-width: 0\0) {
    .color-white .link.link-category-filter:hover:before,
    .color-white .list-actions a.link-category-filter:hover:before,
    .list-actions .color-white a.link-category-filter:hover:before,
    .color-white .links-document .links-document-actions a.link-category-filter:hover:before,
    .links-document .links-document-actions .color-white a.link-category-filter:hover:before,
    .color-white #press-release a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    #press-release .color-white a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    .white-text .link.link-category-filter:hover:before,
    .white-text .list-actions a.link-category-filter:hover:before,
    .list-actions .white-text a.link-category-filter:hover:before,
    .white-text .links-document .links-document-actions a.link-category-filter:hover:before,
    .links-document .links-document-actions .white-text a.link-category-filter:hover:before,
    .white-text #press-release a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    #press-release .white-text a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    .module.black-background .link.link-category-filter:hover:before,
    .module.black-background .list-actions a.link-category-filter:hover:before,
    .list-actions .module.black-background a.link-category-filter:hover:before,
    .module.black-background .links-document .links-document-actions a.link-category-filter:hover:before,
    .links-document .links-document-actions .module.black-background a.link-category-filter:hover:before,
    .module.black-background #press-release a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    #press-release .module.black-background a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    .module.text-in-box .link.link-category-filter:hover:before,
    .module.text-in-box .list-actions a.link-category-filter:hover:before,
    .list-actions .module.text-in-box a.link-category-filter:hover:before,
    .module.text-in-box .links-document .links-document-actions a.link-category-filter:hover:before,
    .links-document .links-document-actions .module.text-in-box a.link-category-filter:hover:before,
    .module.text-in-box #press-release a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    #press-release .module.text-in-box a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    .announcement-text .link.link-category-filter:hover:before,
    .announcement-text .list-actions a.link-category-filter:hover:before,
    .list-actions .announcement-text a.link-category-filter:hover:before,
    .announcement-text .links-document .links-document-actions a.link-category-filter:hover:before,
    .links-document .links-document-actions .announcement-text a.link-category-filter:hover:before,
    .announcement-text #press-release a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    #press-release .announcement-text a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    .color-white .link.link-jump-to:hover:before,
    .color-white .list-actions a.link-jump-to:hover:before,
    .list-actions .color-white a.link-jump-to:hover:before,
    .color-white .links-document .links-document-actions a.link-jump-to:hover:before,
    .links-document .links-document-actions .color-white a.link-jump-to:hover:before,
    .color-white #press-release a.link-jump-to[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    #press-release .color-white a.link-jump-to[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    .white-text .link.link-jump-to:hover:before,
    .white-text .list-actions a.link-jump-to:hover:before,
    .list-actions .white-text a.link-jump-to:hover:before,
    .white-text .links-document .links-document-actions a.link-jump-to:hover:before,
    .links-document .links-document-actions .white-text a.link-jump-to:hover:before,
    .white-text #press-release a.link-jump-to[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    #press-release .white-text a.link-jump-to[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    .module.black-background .link.link-jump-to:hover:before,
    .module.black-background .list-actions a.link-jump-to:hover:before,
    .list-actions .module.black-background a.link-jump-to:hover:before,
    .module.black-background .links-document .links-document-actions a.link-jump-to:hover:before,
    .links-document .links-document-actions .module.black-background a.link-jump-to:hover:before,
    .module.black-background #press-release a.link-jump-to[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    #press-release .module.black-background a.link-jump-to[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    .module.text-in-box .link.link-jump-to:hover:before,
    .module.text-in-box .list-actions a.link-jump-to:hover:before,
    .list-actions .module.text-in-box a.link-jump-to:hover:before,
    .module.text-in-box .links-document .links-document-actions a.link-jump-to:hover:before,
    .links-document .links-document-actions .module.text-in-box a.link-jump-to:hover:before,
    .module.text-in-box #press-release a.link-jump-to[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    #press-release .module.text-in-box a.link-jump-to[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    .announcement-text .link.link-jump-to:hover:before,
    .announcement-text .list-actions a.link-jump-to:hover:before,
    .list-actions .announcement-text a.link-jump-to:hover:before,
    .announcement-text .links-document .links-document-actions a.link-jump-to:hover:before,
    .links-document .links-document-actions .announcement-text a.link-jump-to:hover:before,
    .announcement-text #press-release a.link-jump-to[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    #press-release .announcement-text a.link-jump-to[href*="http://phx.corporate-ir.net/External.File"]:hover:before {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .color-white .link.link-category-filter:hover:before,
.color-white :root .list-actions a.link-category-filter:hover:before,
:root .list-actions .color-white a.link-category-filter:hover:before,
.color-white :root .links-document .links-document-actions a.link-category-filter:hover:before,
:root .links-document .links-document-actions .color-white a.link-category-filter:hover:before,
.color-white :root #press-release a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
:root #press-release .color-white a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
:root .white-text .link.link-category-filter:hover:before,
.white-text :root .list-actions a.link-category-filter:hover:before,
:root .list-actions .white-text a.link-category-filter:hover:before,
.white-text :root .links-document .links-document-actions a.link-category-filter:hover:before,
:root .links-document .links-document-actions .white-text a.link-category-filter:hover:before,
.white-text :root #press-release a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
:root #press-release .white-text a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
:root .module.black-background .link.link-category-filter:hover:before,
.module.black-background :root .list-actions a.link-category-filter:hover:before,
:root .list-actions .module.black-background a.link-category-filter:hover:before,
.module.black-background :root .links-document .links-document-actions a.link-category-filter:hover:before,
:root .links-document .links-document-actions .module.black-background a.link-category-filter:hover:before,
.module.black-background :root #press-release a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
:root #press-release .module.black-background a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
:root .module.text-in-box .link.link-category-filter:hover:before,
.module.text-in-box :root .list-actions a.link-category-filter:hover:before,
:root .list-actions .module.text-in-box a.link-category-filter:hover:before,
.module.text-in-box :root .links-document .links-document-actions a.link-category-filter:hover:before,
:root .links-document .links-document-actions .module.text-in-box a.link-category-filter:hover:before,
.module.text-in-box :root #press-release a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
:root #press-release .module.text-in-box a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
:root .announcement-text .link.link-category-filter:hover:before,
.announcement-text :root .list-actions a.link-category-filter:hover:before,
:root .list-actions .announcement-text a.link-category-filter:hover:before,
.announcement-text :root .links-document .links-document-actions a.link-category-filter:hover:before,
:root .links-document .links-document-actions .announcement-text a.link-category-filter:hover:before,
.announcement-text :root #press-release a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
:root #press-release .announcement-text a.link-category-filter[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
:root .color-white .link.link-jump-to:hover:before,
.color-white :root .list-actions a.link-jump-to:hover:before,
:root .list-actions .color-white a.link-jump-to:hover:before,
.color-white :root .links-document .links-document-actions a.link-jump-to:hover:before,
:root .links-document .links-document-actions .color-white a.link-jump-to:hover:before,
.color-white :root #press-release a.link-jump-to[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
:root #press-release .color-white a.link-jump-to[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
:root .white-text .link.link-jump-to:hover:before,
.white-text :root .list-actions a.link-jump-to:hover:before,
:root .list-actions .white-text a.link-jump-to:hover:before,
.white-text :root .links-document .links-document-actions a.link-jump-to:hover:before,
:root .links-document .links-document-actions .white-text a.link-jump-to:hover:before,
.white-text :root #press-release a.link-jump-to[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
:root #press-release .white-text a.link-jump-to[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
:root .module.black-background .link.link-jump-to:hover:before,
.module.black-background :root .list-actions a.link-jump-to:hover:before,
:root .list-actions .module.black-background a.link-jump-to:hover:before,
.module.black-background :root .links-document .links-document-actions a.link-jump-to:hover:before,
:root .links-document .links-document-actions .module.black-background a.link-jump-to:hover:before,
.module.black-background :root #press-release a.link-jump-to[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
:root #press-release .module.black-background a.link-jump-to[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
:root .module.text-in-box .link.link-jump-to:hover:before,
.module.text-in-box :root .list-actions a.link-jump-to:hover:before,
:root .list-actions .module.text-in-box a.link-jump-to:hover:before,
.module.text-in-box :root .links-document .links-document-actions a.link-jump-to:hover:before,
:root .links-document .links-document-actions .module.text-in-box a.link-jump-to:hover:before,
.module.text-in-box :root #press-release a.link-jump-to[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
:root #press-release .module.text-in-box a.link-jump-to[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
:root .announcement-text .link.link-jump-to:hover:before,
.announcement-text :root .list-actions a.link-jump-to:hover:before,
:root .list-actions .announcement-text a.link-jump-to:hover:before,
.announcement-text :root .links-document .links-document-actions a.link-jump-to:hover:before,
:root .links-document .links-document-actions .announcement-text a.link-jump-to:hover:before,
.announcement-text :root #press-release a.link-jump-to[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
:root #press-release .announcement-text a.link-jump-to[href*="http://phx.corporate-ir.net/External.File"]:hover:before {
    background-image: url(../images/icon-sprites-vector.svg);
}

.link.link-pdf:before,
.list-actions a.link-pdf:before,
.links-document .links-document-actions a.link-pdf:before,
#press-release a.link-pdf[href*="http://phx.corporate-ir.net/External.File"]:before {
    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: -20em -8em;
    width: 1.625em;
    height: 1.875em;
    font-size: 16px;
}

@media screen and (min-width: 0\0) {
    .link.link-pdf:before,
    .list-actions a.link-pdf:before,
    .links-document .links-document-actions a.link-pdf:before,
    #press-release a.link-pdf[href*="http://phx.corporate-ir.net/External.File"]:before {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .link.link-pdf:before,
:root .list-actions a.link-pdf:before,
:root .links-document .links-document-actions a.link-pdf:before,
:root #press-release a.link-pdf[href*="http://phx.corporate-ir.net/External.File"]:before {
    background-image: url(../images/icon-sprites-vector.svg);
}

.link.link-pdf:hover:before,
.list-actions a.link-pdf:hover:before,
.links-document .links-document-actions a.link-pdf:hover:before,
#press-release a.link-pdf[href*="http://phx.corporate-ir.net/External.File"]:hover:before {
    background-position: -22em -8em;
}

.color-white .link.link-pdf:before,
.color-white .list-actions a.link-pdf:before,
.list-actions .color-white a.link-pdf:before,
.color-white .links-document .links-document-actions a.link-pdf:before,
.links-document .links-document-actions .color-white a.link-pdf:before,
.color-white #press-release a.link-pdf[href*="http://phx.corporate-ir.net/External.File"]:before,
#press-release .color-white a.link-pdf[href*="http://phx.corporate-ir.net/External.File"]:before,
.white-text .link.link-pdf:before,
.white-text .list-actions a.link-pdf:before,
.list-actions .white-text a.link-pdf:before,
.white-text .links-document .links-document-actions a.link-pdf:before,
.links-document .links-document-actions .white-text a.link-pdf:before,
.white-text #press-release a.link-pdf[href*="http://phx.corporate-ir.net/External.File"]:before,
#press-release .white-text a.link-pdf[href*="http://phx.corporate-ir.net/External.File"]:before,
.module.black-background .link.link-pdf:before,
.module.black-background .list-actions a.link-pdf:before,
.list-actions .module.black-background a.link-pdf:before,
.module.black-background .links-document .links-document-actions a.link-pdf:before,
.links-document .links-document-actions .module.black-background a.link-pdf:before,
.module.black-background #press-release a.link-pdf[href*="http://phx.corporate-ir.net/External.File"]:before,
#press-release .module.black-background a.link-pdf[href*="http://phx.corporate-ir.net/External.File"]:before,
.module.text-in-box .link.link-pdf:before,
.module.text-in-box .list-actions a.link-pdf:before,
.list-actions .module.text-in-box a.link-pdf:before,
.module.text-in-box .links-document .links-document-actions a.link-pdf:before,
.links-document .links-document-actions .module.text-in-box a.link-pdf:before,
.module.text-in-box #press-release a.link-pdf[href*="http://phx.corporate-ir.net/External.File"]:before,
#press-release .module.text-in-box a.link-pdf[href*="http://phx.corporate-ir.net/External.File"]:before,
.announcement-text .link.link-pdf:before,
.announcement-text .list-actions a.link-pdf:before,
.list-actions .announcement-text a.link-pdf:before,
.announcement-text .links-document .links-document-actions a.link-pdf:before,
.links-document .links-document-actions .announcement-text a.link-pdf:before,
.announcement-text #press-release a.link-pdf[href*="http://phx.corporate-ir.net/External.File"]:before,
#press-release .announcement-text a.link-pdf[href*="http://phx.corporate-ir.net/External.File"]:before {
    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: 0em -24em;
    width: 1.625em;
    height: 1.875em;
}

@media screen and (min-width: 0\0) {
    .color-white .link.link-pdf:before,
    .color-white .list-actions a.link-pdf:before,
    .list-actions .color-white a.link-pdf:before,
    .color-white .links-document .links-document-actions a.link-pdf:before,
    .links-document .links-document-actions .color-white a.link-pdf:before,
    .color-white #press-release a.link-pdf[href*="http://phx.corporate-ir.net/External.File"]:before,
    #press-release .color-white a.link-pdf[href*="http://phx.corporate-ir.net/External.File"]:before,
    .white-text .link.link-pdf:before,
    .white-text .list-actions a.link-pdf:before,
    .list-actions .white-text a.link-pdf:before,
    .white-text .links-document .links-document-actions a.link-pdf:before,
    .links-document .links-document-actions .white-text a.link-pdf:before,
    .white-text #press-release a.link-pdf[href*="http://phx.corporate-ir.net/External.File"]:before,
    #press-release .white-text a.link-pdf[href*="http://phx.corporate-ir.net/External.File"]:before,
    .module.black-background .link.link-pdf:before,
    .module.black-background .list-actions a.link-pdf:before,
    .list-actions .module.black-background a.link-pdf:before,
    .module.black-background .links-document .links-document-actions a.link-pdf:before,
    .links-document .links-document-actions .module.black-background a.link-pdf:before,
    .module.black-background #press-release a.link-pdf[href*="http://phx.corporate-ir.net/External.File"]:before,
    #press-release .module.black-background a.link-pdf[href*="http://phx.corporate-ir.net/External.File"]:before,
    .module.text-in-box .link.link-pdf:before,
    .module.text-in-box .list-actions a.link-pdf:before,
    .list-actions .module.text-in-box a.link-pdf:before,
    .module.text-in-box .links-document .links-document-actions a.link-pdf:before,
    .links-document .links-document-actions .module.text-in-box a.link-pdf:before,
    .module.text-in-box #press-release a.link-pdf[href*="http://phx.corporate-ir.net/External.File"]:before,
    #press-release .module.text-in-box a.link-pdf[href*="http://phx.corporate-ir.net/External.File"]:before,
    .announcement-text .link.link-pdf:before,
    .announcement-text .list-actions a.link-pdf:before,
    .list-actions .announcement-text a.link-pdf:before,
    .announcement-text .links-document .links-document-actions a.link-pdf:before,
    .links-document .links-document-actions .announcement-text a.link-pdf:before,
    .announcement-text #press-release a.link-pdf[href*="http://phx.corporate-ir.net/External.File"]:before,
    #press-release .announcement-text a.link-pdf[href*="http://phx.corporate-ir.net/External.File"]:before {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .color-white .link.link-pdf:before,
.color-white :root .list-actions a.link-pdf:before,
:root .list-actions .color-white a.link-pdf:before,
.color-white :root .links-document .links-document-actions a.link-pdf:before,
:root .links-document .links-document-actions .color-white a.link-pdf:before,
.color-white :root #press-release a.link-pdf[href*="http://phx.corporate-ir.net/External.File"]:before,
:root #press-release .color-white a.link-pdf[href*="http://phx.corporate-ir.net/External.File"]:before,
:root .white-text .link.link-pdf:before,
.white-text :root .list-actions a.link-pdf:before,
:root .list-actions .white-text a.link-pdf:before,
.white-text :root .links-document .links-document-actions a.link-pdf:before,
:root .links-document .links-document-actions .white-text a.link-pdf:before,
.white-text :root #press-release a.link-pdf[href*="http://phx.corporate-ir.net/External.File"]:before,
:root #press-release .white-text a.link-pdf[href*="http://phx.corporate-ir.net/External.File"]:before,
:root .module.black-background .link.link-pdf:before,
.module.black-background :root .list-actions a.link-pdf:before,
:root .list-actions .module.black-background a.link-pdf:before,
.module.black-background :root .links-document .links-document-actions a.link-pdf:before,
:root .links-document .links-document-actions .module.black-background a.link-pdf:before,
.module.black-background :root #press-release a.link-pdf[href*="http://phx.corporate-ir.net/External.File"]:before,
:root #press-release .module.black-background a.link-pdf[href*="http://phx.corporate-ir.net/External.File"]:before,
:root .module.text-in-box .link.link-pdf:before,
.module.text-in-box :root .list-actions a.link-pdf:before,
:root .list-actions .module.text-in-box a.link-pdf:before,
.module.text-in-box :root .links-document .links-document-actions a.link-pdf:before,
:root .links-document .links-document-actions .module.text-in-box a.link-pdf:before,
.module.text-in-box :root #press-release a.link-pdf[href*="http://phx.corporate-ir.net/External.File"]:before,
:root #press-release .module.text-in-box a.link-pdf[href*="http://phx.corporate-ir.net/External.File"]:before,
:root .announcement-text .link.link-pdf:before,
.announcement-text :root .list-actions a.link-pdf:before,
:root .list-actions .announcement-text a.link-pdf:before,
.announcement-text :root .links-document .links-document-actions a.link-pdf:before,
:root .links-document .links-document-actions .announcement-text a.link-pdf:before,
.announcement-text :root #press-release a.link-pdf[href*="http://phx.corporate-ir.net/External.File"]:before,
:root #press-release .announcement-text a.link-pdf[href*="http://phx.corporate-ir.net/External.File"]:before {
    background-image: url(../images/icon-sprites-vector.svg);
}

.color-white .link.link-pdf:hover,
.color-white .list-actions a.link-pdf:hover,
.list-actions .color-white a.link-pdf:hover,
.color-white .links-document .links-document-actions a.link-pdf:hover,
.links-document .links-document-actions .color-white a.link-pdf:hover,
.color-white #press-release a.link-pdf[href*="http://phx.corporate-ir.net/External.File"]:hover,
#press-release .color-white a.link-pdf[href*="http://phx.corporate-ir.net/External.File"]:hover,
.white-text .link.link-pdf:hover,
.white-text .list-actions a.link-pdf:hover,
.list-actions .white-text a.link-pdf:hover,
.white-text .links-document .links-document-actions a.link-pdf:hover,
.links-document .links-document-actions .white-text a.link-pdf:hover,
.white-text #press-release a.link-pdf[href*="http://phx.corporate-ir.net/External.File"]:hover,
#press-release .white-text a.link-pdf[href*="http://phx.corporate-ir.net/External.File"]:hover,
.module.black-background .link.link-pdf:hover,
.module.black-background .list-actions a.link-pdf:hover,
.list-actions .module.black-background a.link-pdf:hover,
.module.black-background .links-document .links-document-actions a.link-pdf:hover,
.links-document .links-document-actions .module.black-background a.link-pdf:hover,
.module.black-background #press-release a.link-pdf[href*="http://phx.corporate-ir.net/External.File"]:hover,
#press-release .module.black-background a.link-pdf[href*="http://phx.corporate-ir.net/External.File"]:hover,
.module.text-in-box .link.link-pdf:hover,
.module.text-in-box .list-actions a.link-pdf:hover,
.list-actions .module.text-in-box a.link-pdf:hover,
.module.text-in-box .links-document .links-document-actions a.link-pdf:hover,
.links-document .links-document-actions .module.text-in-box a.link-pdf:hover,
.module.text-in-box #press-release a.link-pdf[href*="http://phx.corporate-ir.net/External.File"]:hover,
#press-release .module.text-in-box a.link-pdf[href*="http://phx.corporate-ir.net/External.File"]:hover,
.announcement-text .link.link-pdf:hover,
.announcement-text .list-actions a.link-pdf:hover,
.list-actions .announcement-text a.link-pdf:hover,
.announcement-text .links-document .links-document-actions a.link-pdf:hover,
.links-document .links-document-actions .announcement-text a.link-pdf:hover,
.announcement-text #press-release a.link-pdf[href*="http://phx.corporate-ir.net/External.File"]:hover,
#press-release .announcement-text a.link-pdf[href*="http://phx.corporate-ir.net/External.File"]:hover {
    color: #efdf00;
}

    .color-white .link.link-pdf:hover:before,
    .color-white .list-actions a.link-pdf:hover:before,
    .list-actions .color-white a.link-pdf:hover:before,
    .color-white .links-document .links-document-actions a.link-pdf:hover:before,
    .links-document .links-document-actions .color-white a.link-pdf:hover:before,
    .color-white #press-release a.link-pdf[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    #press-release .color-white a.link-pdf[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    .white-text .link.link-pdf:hover:before,
    .white-text .list-actions a.link-pdf:hover:before,
    .list-actions .white-text a.link-pdf:hover:before,
    .white-text .links-document .links-document-actions a.link-pdf:hover:before,
    .links-document .links-document-actions .white-text a.link-pdf:hover:before,
    .white-text #press-release a.link-pdf[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    #press-release .white-text a.link-pdf[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    .module.black-background .link.link-pdf:hover:before,
    .module.black-background .list-actions a.link-pdf:hover:before,
    .list-actions .module.black-background a.link-pdf:hover:before,
    .module.black-background .links-document .links-document-actions a.link-pdf:hover:before,
    .links-document .links-document-actions .module.black-background a.link-pdf:hover:before,
    .module.black-background #press-release a.link-pdf[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    #press-release .module.black-background a.link-pdf[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    .module.text-in-box .link.link-pdf:hover:before,
    .module.text-in-box .list-actions a.link-pdf:hover:before,
    .list-actions .module.text-in-box a.link-pdf:hover:before,
    .module.text-in-box .links-document .links-document-actions a.link-pdf:hover:before,
    .links-document .links-document-actions .module.text-in-box a.link-pdf:hover:before,
    .module.text-in-box #press-release a.link-pdf[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    #press-release .module.text-in-box a.link-pdf[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    .announcement-text .link.link-pdf:hover:before,
    .announcement-text .list-actions a.link-pdf:hover:before,
    .list-actions .announcement-text a.link-pdf:hover:before,
    .announcement-text .links-document .links-document-actions a.link-pdf:hover:before,
    .links-document .links-document-actions .announcement-text a.link-pdf:hover:before,
    .announcement-text #press-release a.link-pdf[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    #press-release .announcement-text a.link-pdf[href*="http://phx.corporate-ir.net/External.File"]:hover:before {
        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: -2em -24em;
        width: 1.625em;
        height: 1.875em;
    }

@media screen and (min-width: 0\0) {
    .color-white .link.link-pdf:hover:before,
    .color-white .list-actions a.link-pdf:hover:before,
    .list-actions .color-white a.link-pdf:hover:before,
    .color-white .links-document .links-document-actions a.link-pdf:hover:before,
    .links-document .links-document-actions .color-white a.link-pdf:hover:before,
    .color-white #press-release a.link-pdf[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    #press-release .color-white a.link-pdf[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    .white-text .link.link-pdf:hover:before,
    .white-text .list-actions a.link-pdf:hover:before,
    .list-actions .white-text a.link-pdf:hover:before,
    .white-text .links-document .links-document-actions a.link-pdf:hover:before,
    .links-document .links-document-actions .white-text a.link-pdf:hover:before,
    .white-text #press-release a.link-pdf[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    #press-release .white-text a.link-pdf[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    .module.black-background .link.link-pdf:hover:before,
    .module.black-background .list-actions a.link-pdf:hover:before,
    .list-actions .module.black-background a.link-pdf:hover:before,
    .module.black-background .links-document .links-document-actions a.link-pdf:hover:before,
    .links-document .links-document-actions .module.black-background a.link-pdf:hover:before,
    .module.black-background #press-release a.link-pdf[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    #press-release .module.black-background a.link-pdf[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    .module.text-in-box .link.link-pdf:hover:before,
    .module.text-in-box .list-actions a.link-pdf:hover:before,
    .list-actions .module.text-in-box a.link-pdf:hover:before,
    .module.text-in-box .links-document .links-document-actions a.link-pdf:hover:before,
    .links-document .links-document-actions .module.text-in-box a.link-pdf:hover:before,
    .module.text-in-box #press-release a.link-pdf[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    #press-release .module.text-in-box a.link-pdf[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    .announcement-text .link.link-pdf:hover:before,
    .announcement-text .list-actions a.link-pdf:hover:before,
    .list-actions .announcement-text a.link-pdf:hover:before,
    .announcement-text .links-document .links-document-actions a.link-pdf:hover:before,
    .links-document .links-document-actions .announcement-text a.link-pdf:hover:before,
    .announcement-text #press-release a.link-pdf[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    #press-release .announcement-text a.link-pdf[href*="http://phx.corporate-ir.net/External.File"]:hover:before {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .color-white .link.link-pdf:hover:before,
.color-white :root .list-actions a.link-pdf:hover:before,
:root .list-actions .color-white a.link-pdf:hover:before,
.color-white :root .links-document .links-document-actions a.link-pdf:hover:before,
:root .links-document .links-document-actions .color-white a.link-pdf:hover:before,
.color-white :root #press-release a.link-pdf[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
:root #press-release .color-white a.link-pdf[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
:root .white-text .link.link-pdf:hover:before,
.white-text :root .list-actions a.link-pdf:hover:before,
:root .list-actions .white-text a.link-pdf:hover:before,
.white-text :root .links-document .links-document-actions a.link-pdf:hover:before,
:root .links-document .links-document-actions .white-text a.link-pdf:hover:before,
.white-text :root #press-release a.link-pdf[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
:root #press-release .white-text a.link-pdf[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
:root .module.black-background .link.link-pdf:hover:before,
.module.black-background :root .list-actions a.link-pdf:hover:before,
:root .list-actions .module.black-background a.link-pdf:hover:before,
.module.black-background :root .links-document .links-document-actions a.link-pdf:hover:before,
:root .links-document .links-document-actions .module.black-background a.link-pdf:hover:before,
.module.black-background :root #press-release a.link-pdf[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
:root #press-release .module.black-background a.link-pdf[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
:root .module.text-in-box .link.link-pdf:hover:before,
.module.text-in-box :root .list-actions a.link-pdf:hover:before,
:root .list-actions .module.text-in-box a.link-pdf:hover:before,
.module.text-in-box :root .links-document .links-document-actions a.link-pdf:hover:before,
:root .links-document .links-document-actions .module.text-in-box a.link-pdf:hover:before,
.module.text-in-box :root #press-release a.link-pdf[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
:root #press-release .module.text-in-box a.link-pdf[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
:root .announcement-text .link.link-pdf:hover:before,
.announcement-text :root .list-actions a.link-pdf:hover:before,
:root .list-actions .announcement-text a.link-pdf:hover:before,
.announcement-text :root .links-document .links-document-actions a.link-pdf:hover:before,
:root .links-document .links-document-actions .announcement-text a.link-pdf:hover:before,
.announcement-text :root #press-release a.link-pdf[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
:root #press-release .announcement-text a.link-pdf[href*="http://phx.corporate-ir.net/External.File"]:hover:before {
    background-image: url(../images/icon-sprites-vector.svg);
}

.link.link-video:before,
.list-actions a.link-video:before,
.links-document .links-document-actions a.link-video:before,
#press-release a.link-video[href*="http://phx.corporate-ir.net/External.File"]:before {
    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: -44em -8em;
    width: 1.5625em;
    height: 1.9375em;
    font-size: 16px;
}

@media screen and (min-width: 0\0) {
    .link.link-video:before,
    .list-actions a.link-video:before,
    .links-document .links-document-actions a.link-video:before,
    #press-release a.link-video[href*="http://phx.corporate-ir.net/External.File"]:before {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .link.link-video:before,
:root .list-actions a.link-video:before,
:root .links-document .links-document-actions a.link-video:before,
:root #press-release a.link-video[href*="http://phx.corporate-ir.net/External.File"]:before {
    background-image: url(../images/icon-sprites-vector.svg);
}

.link.link-video:hover:before,
.list-actions a.link-video:hover:before,
.links-document .links-document-actions a.link-video:hover:before,
#press-release a.link-video[href*="http://phx.corporate-ir.net/External.File"]:hover:before {
    background-position: 0em -12em;
}

.color-white .link.link-video:before,
.color-white .list-actions a.link-video:before,
.list-actions .color-white a.link-video:before,
.color-white .links-document .links-document-actions a.link-video:before,
.links-document .links-document-actions .color-white a.link-video:before,
.color-white #press-release a.link-video[href*="http://phx.corporate-ir.net/External.File"]:before,
#press-release .color-white a.link-video[href*="http://phx.corporate-ir.net/External.File"]:before,
.white-text .link.link-video:before,
.white-text .list-actions a.link-video:before,
.list-actions .white-text a.link-video:before,
.white-text .links-document .links-document-actions a.link-video:before,
.links-document .links-document-actions .white-text a.link-video:before,
.white-text #press-release a.link-video[href*="http://phx.corporate-ir.net/External.File"]:before,
#press-release .white-text a.link-video[href*="http://phx.corporate-ir.net/External.File"]:before,
.module.black-background .link.link-video:before,
.module.black-background .list-actions a.link-video:before,
.list-actions .module.black-background a.link-video:before,
.module.black-background .links-document .links-document-actions a.link-video:before,
.links-document .links-document-actions .module.black-background a.link-video:before,
.module.black-background #press-release a.link-video[href*="http://phx.corporate-ir.net/External.File"]:before,
#press-release .module.black-background a.link-video[href*="http://phx.corporate-ir.net/External.File"]:before,
.module.text-in-box .link.link-video:before,
.module.text-in-box .list-actions a.link-video:before,
.list-actions .module.text-in-box a.link-video:before,
.module.text-in-box .links-document .links-document-actions a.link-video:before,
.links-document .links-document-actions .module.text-in-box a.link-video:before,
.module.text-in-box #press-release a.link-video[href*="http://phx.corporate-ir.net/External.File"]:before,
#press-release .module.text-in-box a.link-video[href*="http://phx.corporate-ir.net/External.File"]:before,
.announcement-text .link.link-video:before,
.announcement-text .list-actions a.link-video:before,
.list-actions .announcement-text a.link-video:before,
.announcement-text .links-document .links-document-actions a.link-video:before,
.links-document .links-document-actions .announcement-text a.link-video:before,
.announcement-text #press-release a.link-video[href*="http://phx.corporate-ir.net/External.File"]:before,
#press-release .announcement-text a.link-video[href*="http://phx.corporate-ir.net/External.File"]:before {
    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: -36em -24em;
    width: 1.5em;
    height: 1.875em;
}

@media screen and (min-width: 0\0) {
    .color-white .link.link-video:before,
    .color-white .list-actions a.link-video:before,
    .list-actions .color-white a.link-video:before,
    .color-white .links-document .links-document-actions a.link-video:before,
    .links-document .links-document-actions .color-white a.link-video:before,
    .color-white #press-release a.link-video[href*="http://phx.corporate-ir.net/External.File"]:before,
    #press-release .color-white a.link-video[href*="http://phx.corporate-ir.net/External.File"]:before,
    .white-text .link.link-video:before,
    .white-text .list-actions a.link-video:before,
    .list-actions .white-text a.link-video:before,
    .white-text .links-document .links-document-actions a.link-video:before,
    .links-document .links-document-actions .white-text a.link-video:before,
    .white-text #press-release a.link-video[href*="http://phx.corporate-ir.net/External.File"]:before,
    #press-release .white-text a.link-video[href*="http://phx.corporate-ir.net/External.File"]:before,
    .module.black-background .link.link-video:before,
    .module.black-background .list-actions a.link-video:before,
    .list-actions .module.black-background a.link-video:before,
    .module.black-background .links-document .links-document-actions a.link-video:before,
    .links-document .links-document-actions .module.black-background a.link-video:before,
    .module.black-background #press-release a.link-video[href*="http://phx.corporate-ir.net/External.File"]:before,
    #press-release .module.black-background a.link-video[href*="http://phx.corporate-ir.net/External.File"]:before,
    .module.text-in-box .link.link-video:before,
    .module.text-in-box .list-actions a.link-video:before,
    .list-actions .module.text-in-box a.link-video:before,
    .module.text-in-box .links-document .links-document-actions a.link-video:before,
    .links-document .links-document-actions .module.text-in-box a.link-video:before,
    .module.text-in-box #press-release a.link-video[href*="http://phx.corporate-ir.net/External.File"]:before,
    #press-release .module.text-in-box a.link-video[href*="http://phx.corporate-ir.net/External.File"]:before,
    .announcement-text .link.link-video:before,
    .announcement-text .list-actions a.link-video:before,
    .list-actions .announcement-text a.link-video:before,
    .announcement-text .links-document .links-document-actions a.link-video:before,
    .links-document .links-document-actions .announcement-text a.link-video:before,
    .announcement-text #press-release a.link-video[href*="http://phx.corporate-ir.net/External.File"]:before,
    #press-release .announcement-text a.link-video[href*="http://phx.corporate-ir.net/External.File"]:before {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .color-white .link.link-video:before,
.color-white :root .list-actions a.link-video:before,
:root .list-actions .color-white a.link-video:before,
.color-white :root .links-document .links-document-actions a.link-video:before,
:root .links-document .links-document-actions .color-white a.link-video:before,
.color-white :root #press-release a.link-video[href*="http://phx.corporate-ir.net/External.File"]:before,
:root #press-release .color-white a.link-video[href*="http://phx.corporate-ir.net/External.File"]:before,
:root .white-text .link.link-video:before,
.white-text :root .list-actions a.link-video:before,
:root .list-actions .white-text a.link-video:before,
.white-text :root .links-document .links-document-actions a.link-video:before,
:root .links-document .links-document-actions .white-text a.link-video:before,
.white-text :root #press-release a.link-video[href*="http://phx.corporate-ir.net/External.File"]:before,
:root #press-release .white-text a.link-video[href*="http://phx.corporate-ir.net/External.File"]:before,
:root .module.black-background .link.link-video:before,
.module.black-background :root .list-actions a.link-video:before,
:root .list-actions .module.black-background a.link-video:before,
.module.black-background :root .links-document .links-document-actions a.link-video:before,
:root .links-document .links-document-actions .module.black-background a.link-video:before,
.module.black-background :root #press-release a.link-video[href*="http://phx.corporate-ir.net/External.File"]:before,
:root #press-release .module.black-background a.link-video[href*="http://phx.corporate-ir.net/External.File"]:before,
:root .module.text-in-box .link.link-video:before,
.module.text-in-box :root .list-actions a.link-video:before,
:root .list-actions .module.text-in-box a.link-video:before,
.module.text-in-box :root .links-document .links-document-actions a.link-video:before,
:root .links-document .links-document-actions .module.text-in-box a.link-video:before,
.module.text-in-box :root #press-release a.link-video[href*="http://phx.corporate-ir.net/External.File"]:before,
:root #press-release .module.text-in-box a.link-video[href*="http://phx.corporate-ir.net/External.File"]:before,
:root .announcement-text .link.link-video:before,
.announcement-text :root .list-actions a.link-video:before,
:root .list-actions .announcement-text a.link-video:before,
.announcement-text :root .links-document .links-document-actions a.link-video:before,
:root .links-document .links-document-actions .announcement-text a.link-video:before,
.announcement-text :root #press-release a.link-video[href*="http://phx.corporate-ir.net/External.File"]:before,
:root #press-release .announcement-text a.link-video[href*="http://phx.corporate-ir.net/External.File"]:before {
    background-image: url(../images/icon-sprites-vector.svg);
}

.color-white .link.link-video:hover,
.color-white .list-actions a.link-video:hover,
.list-actions .color-white a.link-video:hover,
.color-white .links-document .links-document-actions a.link-video:hover,
.links-document .links-document-actions .color-white a.link-video:hover,
.color-white #press-release a.link-video[href*="http://phx.corporate-ir.net/External.File"]:hover,
#press-release .color-white a.link-video[href*="http://phx.corporate-ir.net/External.File"]:hover,
.white-text .link.link-video:hover,
.white-text .list-actions a.link-video:hover,
.list-actions .white-text a.link-video:hover,
.white-text .links-document .links-document-actions a.link-video:hover,
.links-document .links-document-actions .white-text a.link-video:hover,
.white-text #press-release a.link-video[href*="http://phx.corporate-ir.net/External.File"]:hover,
#press-release .white-text a.link-video[href*="http://phx.corporate-ir.net/External.File"]:hover,
.module.black-background .link.link-video:hover,
.module.black-background .list-actions a.link-video:hover,
.list-actions .module.black-background a.link-video:hover,
.module.black-background .links-document .links-document-actions a.link-video:hover,
.links-document .links-document-actions .module.black-background a.link-video:hover,
.module.black-background #press-release a.link-video[href*="http://phx.corporate-ir.net/External.File"]:hover,
#press-release .module.black-background a.link-video[href*="http://phx.corporate-ir.net/External.File"]:hover,
.module.text-in-box .link.link-video:hover,
.module.text-in-box .list-actions a.link-video:hover,
.list-actions .module.text-in-box a.link-video:hover,
.module.text-in-box .links-document .links-document-actions a.link-video:hover,
.links-document .links-document-actions .module.text-in-box a.link-video:hover,
.module.text-in-box #press-release a.link-video[href*="http://phx.corporate-ir.net/External.File"]:hover,
#press-release .module.text-in-box a.link-video[href*="http://phx.corporate-ir.net/External.File"]:hover,
.announcement-text .link.link-video:hover,
.announcement-text .list-actions a.link-video:hover,
.list-actions .announcement-text a.link-video:hover,
.announcement-text .links-document .links-document-actions a.link-video:hover,
.links-document .links-document-actions .announcement-text a.link-video:hover,
.announcement-text #press-release a.link-video[href*="http://phx.corporate-ir.net/External.File"]:hover,
#press-release .announcement-text a.link-video[href*="http://phx.corporate-ir.net/External.File"]:hover {
    color: #efdf00;
}

    .color-white .link.link-video:hover:before,
    .color-white .list-actions a.link-video:hover:before,
    .list-actions .color-white a.link-video:hover:before,
    .color-white .links-document .links-document-actions a.link-video:hover:before,
    .links-document .links-document-actions .color-white a.link-video:hover:before,
    .color-white #press-release a.link-video[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    #press-release .color-white a.link-video[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    .white-text .link.link-video:hover:before,
    .white-text .list-actions a.link-video:hover:before,
    .list-actions .white-text a.link-video:hover:before,
    .white-text .links-document .links-document-actions a.link-video:hover:before,
    .links-document .links-document-actions .white-text a.link-video:hover:before,
    .white-text #press-release a.link-video[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    #press-release .white-text a.link-video[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    .module.black-background .link.link-video:hover:before,
    .module.black-background .list-actions a.link-video:hover:before,
    .list-actions .module.black-background a.link-video:hover:before,
    .module.black-background .links-document .links-document-actions a.link-video:hover:before,
    .links-document .links-document-actions .module.black-background a.link-video:hover:before,
    .module.black-background #press-release a.link-video[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    #press-release .module.black-background a.link-video[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    .module.text-in-box .link.link-video:hover:before,
    .module.text-in-box .list-actions a.link-video:hover:before,
    .list-actions .module.text-in-box a.link-video:hover:before,
    .module.text-in-box .links-document .links-document-actions a.link-video:hover:before,
    .links-document .links-document-actions .module.text-in-box a.link-video:hover:before,
    .module.text-in-box #press-release a.link-video[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    #press-release .module.text-in-box a.link-video[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    .announcement-text .link.link-video:hover:before,
    .announcement-text .list-actions a.link-video:hover:before,
    .list-actions .announcement-text a.link-video:hover:before,
    .announcement-text .links-document .links-document-actions a.link-video:hover:before,
    .links-document .links-document-actions .announcement-text a.link-video:hover:before,
    .announcement-text #press-release a.link-video[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    #press-release .announcement-text a.link-video[href*="http://phx.corporate-ir.net/External.File"]:hover:before {
        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 -24em;
        width: 1.5em;
        height: 1.875em;
    }

@media screen and (min-width: 0\0) {
    .color-white .link.link-video:hover:before,
    .color-white .list-actions a.link-video:hover:before,
    .list-actions .color-white a.link-video:hover:before,
    .color-white .links-document .links-document-actions a.link-video:hover:before,
    .links-document .links-document-actions .color-white a.link-video:hover:before,
    .color-white #press-release a.link-video[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    #press-release .color-white a.link-video[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    .white-text .link.link-video:hover:before,
    .white-text .list-actions a.link-video:hover:before,
    .list-actions .white-text a.link-video:hover:before,
    .white-text .links-document .links-document-actions a.link-video:hover:before,
    .links-document .links-document-actions .white-text a.link-video:hover:before,
    .white-text #press-release a.link-video[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    #press-release .white-text a.link-video[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    .module.black-background .link.link-video:hover:before,
    .module.black-background .list-actions a.link-video:hover:before,
    .list-actions .module.black-background a.link-video:hover:before,
    .module.black-background .links-document .links-document-actions a.link-video:hover:before,
    .links-document .links-document-actions .module.black-background a.link-video:hover:before,
    .module.black-background #press-release a.link-video[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    #press-release .module.black-background a.link-video[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    .module.text-in-box .link.link-video:hover:before,
    .module.text-in-box .list-actions a.link-video:hover:before,
    .list-actions .module.text-in-box a.link-video:hover:before,
    .module.text-in-box .links-document .links-document-actions a.link-video:hover:before,
    .links-document .links-document-actions .module.text-in-box a.link-video:hover:before,
    .module.text-in-box #press-release a.link-video[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    #press-release .module.text-in-box a.link-video[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    .announcement-text .link.link-video:hover:before,
    .announcement-text .list-actions a.link-video:hover:before,
    .list-actions .announcement-text a.link-video:hover:before,
    .announcement-text .links-document .links-document-actions a.link-video:hover:before,
    .links-document .links-document-actions .announcement-text a.link-video:hover:before,
    .announcement-text #press-release a.link-video[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    #press-release .announcement-text a.link-video[href*="http://phx.corporate-ir.net/External.File"]:hover:before {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .color-white .link.link-video:hover:before,
.color-white :root .list-actions a.link-video:hover:before,
:root .list-actions .color-white a.link-video:hover:before,
.color-white :root .links-document .links-document-actions a.link-video:hover:before,
:root .links-document .links-document-actions .color-white a.link-video:hover:before,
.color-white :root #press-release a.link-video[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
:root #press-release .color-white a.link-video[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
:root .white-text .link.link-video:hover:before,
.white-text :root .list-actions a.link-video:hover:before,
:root .list-actions .white-text a.link-video:hover:before,
.white-text :root .links-document .links-document-actions a.link-video:hover:before,
:root .links-document .links-document-actions .white-text a.link-video:hover:before,
.white-text :root #press-release a.link-video[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
:root #press-release .white-text a.link-video[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
:root .module.black-background .link.link-video:hover:before,
.module.black-background :root .list-actions a.link-video:hover:before,
:root .list-actions .module.black-background a.link-video:hover:before,
.module.black-background :root .links-document .links-document-actions a.link-video:hover:before,
:root .links-document .links-document-actions .module.black-background a.link-video:hover:before,
.module.black-background :root #press-release a.link-video[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
:root #press-release .module.black-background a.link-video[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
:root .module.text-in-box .link.link-video:hover:before,
.module.text-in-box :root .list-actions a.link-video:hover:before,
:root .list-actions .module.text-in-box a.link-video:hover:before,
.module.text-in-box :root .links-document .links-document-actions a.link-video:hover:before,
:root .links-document .links-document-actions .module.text-in-box a.link-video:hover:before,
.module.text-in-box :root #press-release a.link-video[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
:root #press-release .module.text-in-box a.link-video[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
:root .announcement-text .link.link-video:hover:before,
.announcement-text :root .list-actions a.link-video:hover:before,
:root .list-actions .announcement-text a.link-video:hover:before,
.announcement-text :root .links-document .links-document-actions a.link-video:hover:before,
:root .links-document .links-document-actions .announcement-text a.link-video:hover:before,
.announcement-text :root #press-release a.link-video[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
:root #press-release .announcement-text a.link-video[href*="http://phx.corporate-ir.net/External.File"]:hover:before {
    background-image: url(../images/icon-sprites-vector.svg);
}

.link.link-audio:before,
.list-actions a.link-audio:before,
.links-document .links-document-actions a.link-audio:before,
#press-release a.link-audio[href*="http://phx.corporate-ir.net/External.File"]:before {
    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: -40em -8em;
    width: 1.5625em;
    height: 1.875em;
    font-size: 16px;
}

@media screen and (min-width: 0\0) {
    .link.link-audio:before,
    .list-actions a.link-audio:before,
    .links-document .links-document-actions a.link-audio:before,
    #press-release a.link-audio[href*="http://phx.corporate-ir.net/External.File"]:before {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .link.link-audio:before,
:root .list-actions a.link-audio:before,
:root .links-document .links-document-actions a.link-audio:before,
:root #press-release a.link-audio[href*="http://phx.corporate-ir.net/External.File"]:before {
    background-image: url(../images/icon-sprites-vector.svg);
}

.link.link-audio:hover:before,
.list-actions a.link-audio:hover:before,
.links-document .links-document-actions a.link-audio:hover:before,
#press-release a.link-audio[href*="http://phx.corporate-ir.net/External.File"]:hover:before {
    background-position: -42em -8em;
}

.color-white .link.link-audio:before,
.color-white .list-actions a.link-audio:before,
.list-actions .color-white a.link-audio:before,
.color-white .links-document .links-document-actions a.link-audio:before,
.links-document .links-document-actions .color-white a.link-audio:before,
.color-white #press-release a.link-audio[href*="http://phx.corporate-ir.net/External.File"]:before,
#press-release .color-white a.link-audio[href*="http://phx.corporate-ir.net/External.File"]:before,
.white-text .link.link-audio:before,
.white-text .list-actions a.link-audio:before,
.list-actions .white-text a.link-audio:before,
.white-text .links-document .links-document-actions a.link-audio:before,
.links-document .links-document-actions .white-text a.link-audio:before,
.white-text #press-release a.link-audio[href*="http://phx.corporate-ir.net/External.File"]:before,
#press-release .white-text a.link-audio[href*="http://phx.corporate-ir.net/External.File"]:before,
.module.black-background .link.link-audio:before,
.module.black-background .list-actions a.link-audio:before,
.list-actions .module.black-background a.link-audio:before,
.module.black-background .links-document .links-document-actions a.link-audio:before,
.links-document .links-document-actions .module.black-background a.link-audio:before,
.module.black-background #press-release a.link-audio[href*="http://phx.corporate-ir.net/External.File"]:before,
#press-release .module.black-background a.link-audio[href*="http://phx.corporate-ir.net/External.File"]:before,
.module.text-in-box .link.link-audio:before,
.module.text-in-box .list-actions a.link-audio:before,
.list-actions .module.text-in-box a.link-audio:before,
.module.text-in-box .links-document .links-document-actions a.link-audio:before,
.links-document .links-document-actions .module.text-in-box a.link-audio:before,
.module.text-in-box #press-release a.link-audio[href*="http://phx.corporate-ir.net/External.File"]:before,
#press-release .module.text-in-box a.link-audio[href*="http://phx.corporate-ir.net/External.File"]:before,
.announcement-text .link.link-audio:before,
.announcement-text .list-actions a.link-audio:before,
.list-actions .announcement-text a.link-audio:before,
.announcement-text .links-document .links-document-actions a.link-audio:before,
.links-document .links-document-actions .announcement-text a.link-audio:before,
.announcement-text #press-release a.link-audio[href*="http://phx.corporate-ir.net/External.File"]:before,
#press-release .announcement-text a.link-audio[href*="http://phx.corporate-ir.net/External.File"]:before {
    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: -30em -24em;
    width: 1.5em;
    height: 1.875em;
}

@media screen and (min-width: 0\0) {
    .color-white .link.link-audio:before,
    .color-white .list-actions a.link-audio:before,
    .list-actions .color-white a.link-audio:before,
    .color-white .links-document .links-document-actions a.link-audio:before,
    .links-document .links-document-actions .color-white a.link-audio:before,
    .color-white #press-release a.link-audio[href*="http://phx.corporate-ir.net/External.File"]:before,
    #press-release .color-white a.link-audio[href*="http://phx.corporate-ir.net/External.File"]:before,
    .white-text .link.link-audio:before,
    .white-text .list-actions a.link-audio:before,
    .list-actions .white-text a.link-audio:before,
    .white-text .links-document .links-document-actions a.link-audio:before,
    .links-document .links-document-actions .white-text a.link-audio:before,
    .white-text #press-release a.link-audio[href*="http://phx.corporate-ir.net/External.File"]:before,
    #press-release .white-text a.link-audio[href*="http://phx.corporate-ir.net/External.File"]:before,
    .module.black-background .link.link-audio:before,
    .module.black-background .list-actions a.link-audio:before,
    .list-actions .module.black-background a.link-audio:before,
    .module.black-background .links-document .links-document-actions a.link-audio:before,
    .links-document .links-document-actions .module.black-background a.link-audio:before,
    .module.black-background #press-release a.link-audio[href*="http://phx.corporate-ir.net/External.File"]:before,
    #press-release .module.black-background a.link-audio[href*="http://phx.corporate-ir.net/External.File"]:before,
    .module.text-in-box .link.link-audio:before,
    .module.text-in-box .list-actions a.link-audio:before,
    .list-actions .module.text-in-box a.link-audio:before,
    .module.text-in-box .links-document .links-document-actions a.link-audio:before,
    .links-document .links-document-actions .module.text-in-box a.link-audio:before,
    .module.text-in-box #press-release a.link-audio[href*="http://phx.corporate-ir.net/External.File"]:before,
    #press-release .module.text-in-box a.link-audio[href*="http://phx.corporate-ir.net/External.File"]:before,
    .announcement-text .link.link-audio:before,
    .announcement-text .list-actions a.link-audio:before,
    .list-actions .announcement-text a.link-audio:before,
    .announcement-text .links-document .links-document-actions a.link-audio:before,
    .links-document .links-document-actions .announcement-text a.link-audio:before,
    .announcement-text #press-release a.link-audio[href*="http://phx.corporate-ir.net/External.File"]:before,
    #press-release .announcement-text a.link-audio[href*="http://phx.corporate-ir.net/External.File"]:before {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .color-white .link.link-audio:before,
.color-white :root .list-actions a.link-audio:before,
:root .list-actions .color-white a.link-audio:before,
.color-white :root .links-document .links-document-actions a.link-audio:before,
:root .links-document .links-document-actions .color-white a.link-audio:before,
.color-white :root #press-release a.link-audio[href*="http://phx.corporate-ir.net/External.File"]:before,
:root #press-release .color-white a.link-audio[href*="http://phx.corporate-ir.net/External.File"]:before,
:root .white-text .link.link-audio:before,
.white-text :root .list-actions a.link-audio:before,
:root .list-actions .white-text a.link-audio:before,
.white-text :root .links-document .links-document-actions a.link-audio:before,
:root .links-document .links-document-actions .white-text a.link-audio:before,
.white-text :root #press-release a.link-audio[href*="http://phx.corporate-ir.net/External.File"]:before,
:root #press-release .white-text a.link-audio[href*="http://phx.corporate-ir.net/External.File"]:before,
:root .module.black-background .link.link-audio:before,
.module.black-background :root .list-actions a.link-audio:before,
:root .list-actions .module.black-background a.link-audio:before,
.module.black-background :root .links-document .links-document-actions a.link-audio:before,
:root .links-document .links-document-actions .module.black-background a.link-audio:before,
.module.black-background :root #press-release a.link-audio[href*="http://phx.corporate-ir.net/External.File"]:before,
:root #press-release .module.black-background a.link-audio[href*="http://phx.corporate-ir.net/External.File"]:before,
:root .module.text-in-box .link.link-audio:before,
.module.text-in-box :root .list-actions a.link-audio:before,
:root .list-actions .module.text-in-box a.link-audio:before,
.module.text-in-box :root .links-document .links-document-actions a.link-audio:before,
:root .links-document .links-document-actions .module.text-in-box a.link-audio:before,
.module.text-in-box :root #press-release a.link-audio[href*="http://phx.corporate-ir.net/External.File"]:before,
:root #press-release .module.text-in-box a.link-audio[href*="http://phx.corporate-ir.net/External.File"]:before,
:root .announcement-text .link.link-audio:before,
.announcement-text :root .list-actions a.link-audio:before,
:root .list-actions .announcement-text a.link-audio:before,
.announcement-text :root .links-document .links-document-actions a.link-audio:before,
:root .links-document .links-document-actions .announcement-text a.link-audio:before,
.announcement-text :root #press-release a.link-audio[href*="http://phx.corporate-ir.net/External.File"]:before,
:root #press-release .announcement-text a.link-audio[href*="http://phx.corporate-ir.net/External.File"]:before {
    background-image: url(../images/icon-sprites-vector.svg);
}

.color-white .link.link-audio:hover,
.color-white .list-actions a.link-audio:hover,
.list-actions .color-white a.link-audio:hover,
.color-white .links-document .links-document-actions a.link-audio:hover,
.links-document .links-document-actions .color-white a.link-audio:hover,
.color-white #press-release a.link-audio[href*="http://phx.corporate-ir.net/External.File"]:hover,
#press-release .color-white a.link-audio[href*="http://phx.corporate-ir.net/External.File"]:hover,
.white-text .link.link-audio:hover,
.white-text .list-actions a.link-audio:hover,
.list-actions .white-text a.link-audio:hover,
.white-text .links-document .links-document-actions a.link-audio:hover,
.links-document .links-document-actions .white-text a.link-audio:hover,
.white-text #press-release a.link-audio[href*="http://phx.corporate-ir.net/External.File"]:hover,
#press-release .white-text a.link-audio[href*="http://phx.corporate-ir.net/External.File"]:hover,
.module.black-background .link.link-audio:hover,
.module.black-background .list-actions a.link-audio:hover,
.list-actions .module.black-background a.link-audio:hover,
.module.black-background .links-document .links-document-actions a.link-audio:hover,
.links-document .links-document-actions .module.black-background a.link-audio:hover,
.module.black-background #press-release a.link-audio[href*="http://phx.corporate-ir.net/External.File"]:hover,
#press-release .module.black-background a.link-audio[href*="http://phx.corporate-ir.net/External.File"]:hover,
.module.text-in-box .link.link-audio:hover,
.module.text-in-box .list-actions a.link-audio:hover,
.list-actions .module.text-in-box a.link-audio:hover,
.module.text-in-box .links-document .links-document-actions a.link-audio:hover,
.links-document .links-document-actions .module.text-in-box a.link-audio:hover,
.module.text-in-box #press-release a.link-audio[href*="http://phx.corporate-ir.net/External.File"]:hover,
#press-release .module.text-in-box a.link-audio[href*="http://phx.corporate-ir.net/External.File"]:hover,
.announcement-text .link.link-audio:hover,
.announcement-text .list-actions a.link-audio:hover,
.list-actions .announcement-text a.link-audio:hover,
.announcement-text .links-document .links-document-actions a.link-audio:hover,
.links-document .links-document-actions .announcement-text a.link-audio:hover,
.announcement-text #press-release a.link-audio[href*="http://phx.corporate-ir.net/External.File"]:hover,
#press-release .announcement-text a.link-audio[href*="http://phx.corporate-ir.net/External.File"]:hover {
    color: #efdf00;
}

    .color-white .link.link-audio:hover:before,
    .color-white .list-actions a.link-audio:hover:before,
    .list-actions .color-white a.link-audio:hover:before,
    .color-white .links-document .links-document-actions a.link-audio:hover:before,
    .links-document .links-document-actions .color-white a.link-audio:hover:before,
    .color-white #press-release a.link-audio[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    #press-release .color-white a.link-audio[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    .white-text .link.link-audio:hover:before,
    .white-text .list-actions a.link-audio:hover:before,
    .list-actions .white-text a.link-audio:hover:before,
    .white-text .links-document .links-document-actions a.link-audio:hover:before,
    .links-document .links-document-actions .white-text a.link-audio:hover:before,
    .white-text #press-release a.link-audio[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    #press-release .white-text a.link-audio[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    .module.black-background .link.link-audio:hover:before,
    .module.black-background .list-actions a.link-audio:hover:before,
    .list-actions .module.black-background a.link-audio:hover:before,
    .module.black-background .links-document .links-document-actions a.link-audio:hover:before,
    .links-document .links-document-actions .module.black-background a.link-audio:hover:before,
    .module.black-background #press-release a.link-audio[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    #press-release .module.black-background a.link-audio[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    .module.text-in-box .link.link-audio:hover:before,
    .module.text-in-box .list-actions a.link-audio:hover:before,
    .list-actions .module.text-in-box a.link-audio:hover:before,
    .module.text-in-box .links-document .links-document-actions a.link-audio:hover:before,
    .links-document .links-document-actions .module.text-in-box a.link-audio:hover:before,
    .module.text-in-box #press-release a.link-audio[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    #press-release .module.text-in-box a.link-audio[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    .announcement-text .link.link-audio:hover:before,
    .announcement-text .list-actions a.link-audio:hover:before,
    .list-actions .announcement-text a.link-audio:hover:before,
    .announcement-text .links-document .links-document-actions a.link-audio:hover:before,
    .links-document .links-document-actions .announcement-text a.link-audio:hover:before,
    .announcement-text #press-release a.link-audio[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    #press-release .announcement-text a.link-audio[href*="http://phx.corporate-ir.net/External.File"]:hover:before {
        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: -32em -24em;
        width: 1.5em;
        height: 1.875em;
    }

@media screen and (min-width: 0\0) {
    .color-white .link.link-audio:hover:before,
    .color-white .list-actions a.link-audio:hover:before,
    .list-actions .color-white a.link-audio:hover:before,
    .color-white .links-document .links-document-actions a.link-audio:hover:before,
    .links-document .links-document-actions .color-white a.link-audio:hover:before,
    .color-white #press-release a.link-audio[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    #press-release .color-white a.link-audio[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    .white-text .link.link-audio:hover:before,
    .white-text .list-actions a.link-audio:hover:before,
    .list-actions .white-text a.link-audio:hover:before,
    .white-text .links-document .links-document-actions a.link-audio:hover:before,
    .links-document .links-document-actions .white-text a.link-audio:hover:before,
    .white-text #press-release a.link-audio[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    #press-release .white-text a.link-audio[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    .module.black-background .link.link-audio:hover:before,
    .module.black-background .list-actions a.link-audio:hover:before,
    .list-actions .module.black-background a.link-audio:hover:before,
    .module.black-background .links-document .links-document-actions a.link-audio:hover:before,
    .links-document .links-document-actions .module.black-background a.link-audio:hover:before,
    .module.black-background #press-release a.link-audio[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    #press-release .module.black-background a.link-audio[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    .module.text-in-box .link.link-audio:hover:before,
    .module.text-in-box .list-actions a.link-audio:hover:before,
    .list-actions .module.text-in-box a.link-audio:hover:before,
    .module.text-in-box .links-document .links-document-actions a.link-audio:hover:before,
    .links-document .links-document-actions .module.text-in-box a.link-audio:hover:before,
    .module.text-in-box #press-release a.link-audio[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    #press-release .module.text-in-box a.link-audio[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    .announcement-text .link.link-audio:hover:before,
    .announcement-text .list-actions a.link-audio:hover:before,
    .list-actions .announcement-text a.link-audio:hover:before,
    .announcement-text .links-document .links-document-actions a.link-audio:hover:before,
    .links-document .links-document-actions .announcement-text a.link-audio:hover:before,
    .announcement-text #press-release a.link-audio[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    #press-release .announcement-text a.link-audio[href*="http://phx.corporate-ir.net/External.File"]:hover:before {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .color-white .link.link-audio:hover:before,
.color-white :root .list-actions a.link-audio:hover:before,
:root .list-actions .color-white a.link-audio:hover:before,
.color-white :root .links-document .links-document-actions a.link-audio:hover:before,
:root .links-document .links-document-actions .color-white a.link-audio:hover:before,
.color-white :root #press-release a.link-audio[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
:root #press-release .color-white a.link-audio[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
:root .white-text .link.link-audio:hover:before,
.white-text :root .list-actions a.link-audio:hover:before,
:root .list-actions .white-text a.link-audio:hover:before,
.white-text :root .links-document .links-document-actions a.link-audio:hover:before,
:root .links-document .links-document-actions .white-text a.link-audio:hover:before,
.white-text :root #press-release a.link-audio[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
:root #press-release .white-text a.link-audio[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
:root .module.black-background .link.link-audio:hover:before,
.module.black-background :root .list-actions a.link-audio:hover:before,
:root .list-actions .module.black-background a.link-audio:hover:before,
.module.black-background :root .links-document .links-document-actions a.link-audio:hover:before,
:root .links-document .links-document-actions .module.black-background a.link-audio:hover:before,
.module.black-background :root #press-release a.link-audio[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
:root #press-release .module.black-background a.link-audio[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
:root .module.text-in-box .link.link-audio:hover:before,
.module.text-in-box :root .list-actions a.link-audio:hover:before,
:root .list-actions .module.text-in-box a.link-audio:hover:before,
.module.text-in-box :root .links-document .links-document-actions a.link-audio:hover:before,
:root .links-document .links-document-actions .module.text-in-box a.link-audio:hover:before,
.module.text-in-box :root #press-release a.link-audio[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
:root #press-release .module.text-in-box a.link-audio[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
:root .announcement-text .link.link-audio:hover:before,
.announcement-text :root .list-actions a.link-audio:hover:before,
:root .list-actions .announcement-text a.link-audio:hover:before,
.announcement-text :root .links-document .links-document-actions a.link-audio:hover:before,
:root .links-document .links-document-actions .announcement-text a.link-audio:hover:before,
.announcement-text :root #press-release a.link-audio[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
:root #press-release .announcement-text a.link-audio[href*="http://phx.corporate-ir.net/External.File"]:hover:before {
    background-image: url(../images/icon-sprites-vector.svg);
}

.link.link-document:before,
.list-actions a.link-document:before,
.links-document .links-document-actions a.link-document:before,
#press-release a.link-document[href*="http://phx.corporate-ir.net/External.File"]:before {
    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: -24em -8em;
    width: 1.6875em;
    height: 1.875em;
    font-size: 16px;
}

@media screen and (min-width: 0\0) {
    .link.link-document:before,
    .list-actions a.link-document:before,
    .links-document .links-document-actions a.link-document:before,
    #press-release a.link-document[href*="http://phx.corporate-ir.net/External.File"]:before {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .link.link-document:before,
:root .list-actions a.link-document:before,
:root .links-document .links-document-actions a.link-document:before,
:root #press-release a.link-document[href*="http://phx.corporate-ir.net/External.File"]:before {
    background-image: url(../images/icon-sprites-vector.svg);
}

.link.link-document:hover:before,
.list-actions a.link-document:hover:before,
.links-document .links-document-actions a.link-document:hover:before,
#press-release a.link-document[href*="http://phx.corporate-ir.net/External.File"]:hover:before {
    background-position: -26em -8em;
}

.color-white .link.link-document:before,
.color-white .list-actions a.link-document:before,
.list-actions .color-white a.link-document:before,
.color-white .links-document .links-document-actions a.link-document:before,
.links-document .links-document-actions .color-white a.link-document:before,
.color-white #press-release a.link-document[href*="http://phx.corporate-ir.net/External.File"]:before,
#press-release .color-white a.link-document[href*="http://phx.corporate-ir.net/External.File"]:before,
.white-text .link.link-document:before,
.white-text .list-actions a.link-document:before,
.list-actions .white-text a.link-document:before,
.white-text .links-document .links-document-actions a.link-document:before,
.links-document .links-document-actions .white-text a.link-document:before,
.white-text #press-release a.link-document[href*="http://phx.corporate-ir.net/External.File"]:before,
#press-release .white-text a.link-document[href*="http://phx.corporate-ir.net/External.File"]:before,
.module.black-background .link.link-document:before,
.module.black-background .list-actions a.link-document:before,
.list-actions .module.black-background a.link-document:before,
.module.black-background .links-document .links-document-actions a.link-document:before,
.links-document .links-document-actions .module.black-background a.link-document:before,
.module.black-background #press-release a.link-document[href*="http://phx.corporate-ir.net/External.File"]:before,
#press-release .module.black-background a.link-document[href*="http://phx.corporate-ir.net/External.File"]:before,
.module.text-in-box .link.link-document:before,
.module.text-in-box .list-actions a.link-document:before,
.list-actions .module.text-in-box a.link-document:before,
.module.text-in-box .links-document .links-document-actions a.link-document:before,
.links-document .links-document-actions .module.text-in-box a.link-document:before,
.module.text-in-box #press-release a.link-document[href*="http://phx.corporate-ir.net/External.File"]:before,
#press-release .module.text-in-box a.link-document[href*="http://phx.corporate-ir.net/External.File"]:before,
.announcement-text .link.link-document:before,
.announcement-text .list-actions a.link-document:before,
.list-actions .announcement-text a.link-document:before,
.announcement-text .links-document .links-document-actions a.link-document:before,
.links-document .links-document-actions .announcement-text a.link-document:before,
.announcement-text #press-release a.link-document[href*="http://phx.corporate-ir.net/External.File"]:before,
#press-release .announcement-text a.link-document[href*="http://phx.corporate-ir.net/External.File"]:before {
    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: -6em -24em;
    width: 1.625em;
    height: 1.875em;
}

@media screen and (min-width: 0\0) {
    .color-white .link.link-document:before,
    .color-white .list-actions a.link-document:before,
    .list-actions .color-white a.link-document:before,
    .color-white .links-document .links-document-actions a.link-document:before,
    .links-document .links-document-actions .color-white a.link-document:before,
    .color-white #press-release a.link-document[href*="http://phx.corporate-ir.net/External.File"]:before,
    #press-release .color-white a.link-document[href*="http://phx.corporate-ir.net/External.File"]:before,
    .white-text .link.link-document:before,
    .white-text .list-actions a.link-document:before,
    .list-actions .white-text a.link-document:before,
    .white-text .links-document .links-document-actions a.link-document:before,
    .links-document .links-document-actions .white-text a.link-document:before,
    .white-text #press-release a.link-document[href*="http://phx.corporate-ir.net/External.File"]:before,
    #press-release .white-text a.link-document[href*="http://phx.corporate-ir.net/External.File"]:before,
    .module.black-background .link.link-document:before,
    .module.black-background .list-actions a.link-document:before,
    .list-actions .module.black-background a.link-document:before,
    .module.black-background .links-document .links-document-actions a.link-document:before,
    .links-document .links-document-actions .module.black-background a.link-document:before,
    .module.black-background #press-release a.link-document[href*="http://phx.corporate-ir.net/External.File"]:before,
    #press-release .module.black-background a.link-document[href*="http://phx.corporate-ir.net/External.File"]:before,
    .module.text-in-box .link.link-document:before,
    .module.text-in-box .list-actions a.link-document:before,
    .list-actions .module.text-in-box a.link-document:before,
    .module.text-in-box .links-document .links-document-actions a.link-document:before,
    .links-document .links-document-actions .module.text-in-box a.link-document:before,
    .module.text-in-box #press-release a.link-document[href*="http://phx.corporate-ir.net/External.File"]:before,
    #press-release .module.text-in-box a.link-document[href*="http://phx.corporate-ir.net/External.File"]:before,
    .announcement-text .link.link-document:before,
    .announcement-text .list-actions a.link-document:before,
    .list-actions .announcement-text a.link-document:before,
    .announcement-text .links-document .links-document-actions a.link-document:before,
    .links-document .links-document-actions .announcement-text a.link-document:before,
    .announcement-text #press-release a.link-document[href*="http://phx.corporate-ir.net/External.File"]:before,
    #press-release .announcement-text a.link-document[href*="http://phx.corporate-ir.net/External.File"]:before {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .color-white .link.link-document:before,
.color-white :root .list-actions a.link-document:before,
:root .list-actions .color-white a.link-document:before,
.color-white :root .links-document .links-document-actions a.link-document:before,
:root .links-document .links-document-actions .color-white a.link-document:before,
.color-white :root #press-release a.link-document[href*="http://phx.corporate-ir.net/External.File"]:before,
:root #press-release .color-white a.link-document[href*="http://phx.corporate-ir.net/External.File"]:before,
:root .white-text .link.link-document:before,
.white-text :root .list-actions a.link-document:before,
:root .list-actions .white-text a.link-document:before,
.white-text :root .links-document .links-document-actions a.link-document:before,
:root .links-document .links-document-actions .white-text a.link-document:before,
.white-text :root #press-release a.link-document[href*="http://phx.corporate-ir.net/External.File"]:before,
:root #press-release .white-text a.link-document[href*="http://phx.corporate-ir.net/External.File"]:before,
:root .module.black-background .link.link-document:before,
.module.black-background :root .list-actions a.link-document:before,
:root .list-actions .module.black-background a.link-document:before,
.module.black-background :root .links-document .links-document-actions a.link-document:before,
:root .links-document .links-document-actions .module.black-background a.link-document:before,
.module.black-background :root #press-release a.link-document[href*="http://phx.corporate-ir.net/External.File"]:before,
:root #press-release .module.black-background a.link-document[href*="http://phx.corporate-ir.net/External.File"]:before,
:root .module.text-in-box .link.link-document:before,
.module.text-in-box :root .list-actions a.link-document:before,
:root .list-actions .module.text-in-box a.link-document:before,
.module.text-in-box :root .links-document .links-document-actions a.link-document:before,
:root .links-document .links-document-actions .module.text-in-box a.link-document:before,
.module.text-in-box :root #press-release a.link-document[href*="http://phx.corporate-ir.net/External.File"]:before,
:root #press-release .module.text-in-box a.link-document[href*="http://phx.corporate-ir.net/External.File"]:before,
:root .announcement-text .link.link-document:before,
.announcement-text :root .list-actions a.link-document:before,
:root .list-actions .announcement-text a.link-document:before,
.announcement-text :root .links-document .links-document-actions a.link-document:before,
:root .links-document .links-document-actions .announcement-text a.link-document:before,
.announcement-text :root #press-release a.link-document[href*="http://phx.corporate-ir.net/External.File"]:before,
:root #press-release .announcement-text a.link-document[href*="http://phx.corporate-ir.net/External.File"]:before {
    background-image: url(../images/icon-sprites-vector.svg);
}

.color-white .link.link-document:hover,
.color-white .list-actions a.link-document:hover,
.list-actions .color-white a.link-document:hover,
.color-white .links-document .links-document-actions a.link-document:hover,
.links-document .links-document-actions .color-white a.link-document:hover,
.color-white #press-release a.link-document[href*="http://phx.corporate-ir.net/External.File"]:hover,
#press-release .color-white a.link-document[href*="http://phx.corporate-ir.net/External.File"]:hover,
.white-text .link.link-document:hover,
.white-text .list-actions a.link-document:hover,
.list-actions .white-text a.link-document:hover,
.white-text .links-document .links-document-actions a.link-document:hover,
.links-document .links-document-actions .white-text a.link-document:hover,
.white-text #press-release a.link-document[href*="http://phx.corporate-ir.net/External.File"]:hover,
#press-release .white-text a.link-document[href*="http://phx.corporate-ir.net/External.File"]:hover,
.module.black-background .link.link-document:hover,
.module.black-background .list-actions a.link-document:hover,
.list-actions .module.black-background a.link-document:hover,
.module.black-background .links-document .links-document-actions a.link-document:hover,
.links-document .links-document-actions .module.black-background a.link-document:hover,
.module.black-background #press-release a.link-document[href*="http://phx.corporate-ir.net/External.File"]:hover,
#press-release .module.black-background a.link-document[href*="http://phx.corporate-ir.net/External.File"]:hover,
.module.text-in-box .link.link-document:hover,
.module.text-in-box .list-actions a.link-document:hover,
.list-actions .module.text-in-box a.link-document:hover,
.module.text-in-box .links-document .links-document-actions a.link-document:hover,
.links-document .links-document-actions .module.text-in-box a.link-document:hover,
.module.text-in-box #press-release a.link-document[href*="http://phx.corporate-ir.net/External.File"]:hover,
#press-release .module.text-in-box a.link-document[href*="http://phx.corporate-ir.net/External.File"]:hover,
.announcement-text .link.link-document:hover,
.announcement-text .list-actions a.link-document:hover,
.list-actions .announcement-text a.link-document:hover,
.announcement-text .links-document .links-document-actions a.link-document:hover,
.links-document .links-document-actions .announcement-text a.link-document:hover,
.announcement-text #press-release a.link-document[href*="http://phx.corporate-ir.net/External.File"]:hover,
#press-release .announcement-text a.link-document[href*="http://phx.corporate-ir.net/External.File"]:hover {
    color: #efdf00;
}

    .color-white .link.link-document:hover:before,
    .color-white .list-actions a.link-document:hover:before,
    .list-actions .color-white a.link-document:hover:before,
    .color-white .links-document .links-document-actions a.link-document:hover:before,
    .links-document .links-document-actions .color-white a.link-document:hover:before,
    .color-white #press-release a.link-document[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    #press-release .color-white a.link-document[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    .white-text .link.link-document:hover:before,
    .white-text .list-actions a.link-document:hover:before,
    .list-actions .white-text a.link-document:hover:before,
    .white-text .links-document .links-document-actions a.link-document:hover:before,
    .links-document .links-document-actions .white-text a.link-document:hover:before,
    .white-text #press-release a.link-document[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    #press-release .white-text a.link-document[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    .module.black-background .link.link-document:hover:before,
    .module.black-background .list-actions a.link-document:hover:before,
    .list-actions .module.black-background a.link-document:hover:before,
    .module.black-background .links-document .links-document-actions a.link-document:hover:before,
    .links-document .links-document-actions .module.black-background a.link-document:hover:before,
    .module.black-background #press-release a.link-document[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    #press-release .module.black-background a.link-document[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    .module.text-in-box .link.link-document:hover:before,
    .module.text-in-box .list-actions a.link-document:hover:before,
    .list-actions .module.text-in-box a.link-document:hover:before,
    .module.text-in-box .links-document .links-document-actions a.link-document:hover:before,
    .links-document .links-document-actions .module.text-in-box a.link-document:hover:before,
    .module.text-in-box #press-release a.link-document[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    #press-release .module.text-in-box a.link-document[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    .announcement-text .link.link-document:hover:before,
    .announcement-text .list-actions a.link-document:hover:before,
    .list-actions .announcement-text a.link-document:hover:before,
    .announcement-text .links-document .links-document-actions a.link-document:hover:before,
    .links-document .links-document-actions .announcement-text a.link-document:hover:before,
    .announcement-text #press-release a.link-document[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    #press-release .announcement-text a.link-document[href*="http://phx.corporate-ir.net/External.File"]:hover:before {
        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: -8em -24em;
        width: 1.625em;
        height: 1.875em;
    }

@media screen and (min-width: 0\0) {
    .color-white .link.link-document:hover:before,
    .color-white .list-actions a.link-document:hover:before,
    .list-actions .color-white a.link-document:hover:before,
    .color-white .links-document .links-document-actions a.link-document:hover:before,
    .links-document .links-document-actions .color-white a.link-document:hover:before,
    .color-white #press-release a.link-document[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    #press-release .color-white a.link-document[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    .white-text .link.link-document:hover:before,
    .white-text .list-actions a.link-document:hover:before,
    .list-actions .white-text a.link-document:hover:before,
    .white-text .links-document .links-document-actions a.link-document:hover:before,
    .links-document .links-document-actions .white-text a.link-document:hover:before,
    .white-text #press-release a.link-document[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    #press-release .white-text a.link-document[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    .module.black-background .link.link-document:hover:before,
    .module.black-background .list-actions a.link-document:hover:before,
    .list-actions .module.black-background a.link-document:hover:before,
    .module.black-background .links-document .links-document-actions a.link-document:hover:before,
    .links-document .links-document-actions .module.black-background a.link-document:hover:before,
    .module.black-background #press-release a.link-document[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    #press-release .module.black-background a.link-document[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    .module.text-in-box .link.link-document:hover:before,
    .module.text-in-box .list-actions a.link-document:hover:before,
    .list-actions .module.text-in-box a.link-document:hover:before,
    .module.text-in-box .links-document .links-document-actions a.link-document:hover:before,
    .links-document .links-document-actions .module.text-in-box a.link-document:hover:before,
    .module.text-in-box #press-release a.link-document[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    #press-release .module.text-in-box a.link-document[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    .announcement-text .link.link-document:hover:before,
    .announcement-text .list-actions a.link-document:hover:before,
    .list-actions .announcement-text a.link-document:hover:before,
    .announcement-text .links-document .links-document-actions a.link-document:hover:before,
    .links-document .links-document-actions .announcement-text a.link-document:hover:before,
    .announcement-text #press-release a.link-document[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
    #press-release .announcement-text a.link-document[href*="http://phx.corporate-ir.net/External.File"]:hover:before {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .color-white .link.link-document:hover:before,
.color-white :root .list-actions a.link-document:hover:before,
:root .list-actions .color-white a.link-document:hover:before,
.color-white :root .links-document .links-document-actions a.link-document:hover:before,
:root .links-document .links-document-actions .color-white a.link-document:hover:before,
.color-white :root #press-release a.link-document[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
:root #press-release .color-white a.link-document[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
:root .white-text .link.link-document:hover:before,
.white-text :root .list-actions a.link-document:hover:before,
:root .list-actions .white-text a.link-document:hover:before,
.white-text :root .links-document .links-document-actions a.link-document:hover:before,
:root .links-document .links-document-actions .white-text a.link-document:hover:before,
.white-text :root #press-release a.link-document[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
:root #press-release .white-text a.link-document[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
:root .module.black-background .link.link-document:hover:before,
.module.black-background :root .list-actions a.link-document:hover:before,
:root .list-actions .module.black-background a.link-document:hover:before,
.module.black-background :root .links-document .links-document-actions a.link-document:hover:before,
:root .links-document .links-document-actions .module.black-background a.link-document:hover:before,
.module.black-background :root #press-release a.link-document[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
:root #press-release .module.black-background a.link-document[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
:root .module.text-in-box .link.link-document:hover:before,
.module.text-in-box :root .list-actions a.link-document:hover:before,
:root .list-actions .module.text-in-box a.link-document:hover:before,
.module.text-in-box :root .links-document .links-document-actions a.link-document:hover:before,
:root .links-document .links-document-actions .module.text-in-box a.link-document:hover:before,
.module.text-in-box :root #press-release a.link-document[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
:root #press-release .module.text-in-box a.link-document[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
:root .announcement-text .link.link-document:hover:before,
.announcement-text :root .list-actions a.link-document:hover:before,
:root .list-actions .announcement-text a.link-document:hover:before,
.announcement-text :root .links-document .links-document-actions a.link-document:hover:before,
:root .links-document .links-document-actions .announcement-text a.link-document:hover:before,
.announcement-text :root #press-release a.link-document[href*="http://phx.corporate-ir.net/External.File"]:hover:before,
:root #press-release .announcement-text a.link-document[href*="http://phx.corporate-ir.net/External.File"]:hover:before {
    background-image: url(../images/icon-sprites-vector.svg);
}

.one-third .widget-wrapper .col-lg-6.col-lg-offset-2.col-md-8.col-sm-8.col-xs-24 + .link,
.one-third .widget-wrapper .list-actions .col-lg-6.col-lg-offset-2.col-md-8.col-sm-8.col-xs-24 + a,
.list-actions .one-third .widget-wrapper .col-lg-6.col-lg-offset-2.col-md-8.col-sm-8.col-xs-24 + a,
.one-third .widget-wrapper .links-document .links-document-actions .col-lg-6.col-lg-offset-2.col-md-8.col-sm-8.col-xs-24 + a,
.links-document .links-document-actions .one-third .widget-wrapper .col-lg-6.col-lg-offset-2.col-md-8.col-sm-8.col-xs-24 + a,
.one-third .widget-wrapper #press-release .col-lg-6.col-lg-offset-2.col-md-8.col-sm-8.col-xs-24 + a[href*="http://phx.corporate-ir.net/External.File"],
#press-release .one-third .widget-wrapper .col-lg-6.col-lg-offset-2.col-md-8.col-sm-8.col-xs-24 + a[href*="http://phx.corporate-ir.net/External.File"] {
    margin: 20px 20px 0;
}

.jump-links-block li {
    max-width: 330px;
    margin-bottom: 10px;
    /*
      @include rew {
          margin-left: 50px; // TODO: work out why this was here.
      }
  */
}


/* ----- Modules ----- */

.module {
    *zoom: 1;
    /*    
    &.image-background + .constrained .module {
        @include desktop {
            margin-top: 100px;
        }

        @include tablet {
            margin-top: 50px;
        }
    }
*/
}

    .module:after {
        content: "";
        display: table;
        clear: both;
    }

    .module .constrained:after {
        content: none;
    }

@media (max-width: 667px) {
    .module {
        padding-top: 50px;
        padding-bottom: 60px;
    }

        .module .text-wrapper {
            margin: 0 20px 25px;
        }

        .module .image-wrapper {
            margin-left: 20px;
            margin-right: 20px;
        }
}

@media (max-width: 667px) {
    .module:not(.image-background) {
        border-bottom: 1px solid #e6e6e6;
    }
}

.module h2 {
    position: relative;
    margin-bottom: 25px;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
}

    .module h2:before {
        display: block;
        position: absolute;
        bottom: -15px;
        left: 0;
        width: 40px;
        height: 2px;
        border-top: 2px solid;
        border-color: inherit;
        content: "";
    }

.module .style-8, .rich-text .module .style-8 {
    margin-bottom: 25px;
}

.module .image-wrapper {
    position: relative;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
}

    .module .image-wrapper img {
        display: none;
    }

    .module .image-wrapper .caption {
        position: absolute;
        left: 0;
        bottom: 0;
        max-width: 50%;
        padding: 10px 15px;
        background-color: rgba(0, 0, 0, 0.7);
        color: white;
        font-size: 14px;
        line-height: 1.3;
    }

@media (min-width: 668px) {
    .module .text-wrapper {
        padding: 8% 5%;
    }
}

@media (min-width: 1025px) {
    .module .text-wrapper {
        padding: 8.47458%;
        padding: 100px;
    }
}

@media (min-width: 668px) and (max-width: 1024px) {
    .module .text-wrapper {
        padding: 40px 5%;
    }
}

.module .text-wrapper .link,
.module .text-wrapper .list-actions a,
.list-actions .module .text-wrapper a,
.module .text-wrapper .links-document .links-document-actions a,
.links-document .links-document-actions .module .text-wrapper a,
.module .text-wrapper #press-release a[href*="http://phx.corporate-ir.net/External.File"],
#press-release .module .text-wrapper a[href*="http://phx.corporate-ir.net/External.File"] {
    font-size: 14px;
}

@media (min-width: 668px) {
    .module.module-2-column {
        display: flex;
    }
}

.module.module-2-column.text-on-left .rich-text > ul > li {
    padding-bottom: 1em;
}

    .module.module-2-column.text-on-left .rich-text > ul > li:last-child {
        padding-bottom: 0;
    }

@media (min-width: 668px) {
    .module.module-2-column.text-on-right {
        flex-direction: row-reverse;
    }
}

.module.module-2-column.text-on-right .rich-text > ul > li {
    padding-bottom: 1em;
}

    .module.module-2-column.text-on-right .rich-text > ul > li:last-child {
        padding-bottom: 0;
    }

.module.module-2-column.level-1 {
    padding: 0;
    margin: 15px 0;
}

@media (min-width: 1025px) {
    .module.module-2-column.level-1 {
        min-height: 430px;
    }
}

@media (max-width: 667px) {
    .module.module-2-column.level-1 {
        display: flex;
        margin: 10px 0;
    }
}

.module.module-2-column.level-1.text-on-right {
    flex-direction: row-reverse;
}

@media (max-width: 1024px) {
    .module.level-1 .image-wrapper {
        margin-left: 0;
        margin-right: 0;
        width: 46.875%;
    }
}

@media (min-width: 1025px) {
    .module.level-1 .image-wrapper {
        width: 61.86441%;
    }
}

.module.level-1 .text-wrapper {
    margin: 0;
}

@media (max-width: 667px) {
    .module.level-1 .text-wrapper {
        padding: 8% 5%;
    }
}

@media (max-width: 1024px) {
    .module.level-1 .text-wrapper {
        width: 53.125%;
    }
}

@media (min-width: 1025px) {
    .module.level-1 .text-wrapper {
        padding: 70px 4.25% 70px 4.25%;
        width: 38.13559%;
    }
}

@media (min-width: 668px) and (max-width: 1024px) {
    .module.level-1 h2 {
        font-size: 40px;
        line-height: 32px;
        margin-bottom: 40px;
    }
}

@media (min-width: 1025px) {
    .module.level-1 h2 {
        font-size: 50px;
        line-height: 42px;
        margin-bottom: 40px;
    }
}

@media (min-width: 1025px) {
    .module.level-1 p {
        font-size: 16px;
        line-height: 22px;
        padding-bottom: 45px;
    }

        .module.level-1 p:last-child {
            padding-bottom: 0;
        }
}

.module.light-text .text-wrapper {
    color: white;
}

    .module.light-text .text-wrapper a.link-internal:before {
        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: -22em -12em;
        width: 1.5625em;
        height: 1.5em;
        font-size: 16px;
    }

@media screen and (min-width: 0\0) {
    .module.light-text .text-wrapper a.link-internal:before {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .module.light-text .text-wrapper a.link-internal:before {
    background-image: url(../images/icon-sprites-vector.svg);
}

.module.light-text .text-wrapper a.link-internal:hover:before {
    background-position: -26em -12em;
}

.module.light-text .text-wrapper a.link-external:before {
    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: -18em -12em;
    width: 1.5em;
    height: 1.5em;
    font-size: 16px;
}

@media screen and (min-width: 0\0) {
    .module.light-text .text-wrapper a.link-external:before {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .module.light-text .text-wrapper a.link-external:before {
    background-image: url(../images/icon-sprites-vector.svg);
}

.module.light-text .text-wrapper a.link-external:hover:before {
    background-position: -24em -12em;
}

.module.light-text .text-wrapper a.link-pdf:before {
    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: 0em -24em;
    width: 1.625em;
    height: 1.875em;
    font-size: 16px;
}

@media screen and (min-width: 0\0) {
    .module.light-text .text-wrapper a.link-pdf:before {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .module.light-text .text-wrapper a.link-pdf:before {
    background-image: url(../images/icon-sprites-vector.svg);
}

.module.light-text .text-wrapper a.link-pdf:hover:before {
    background-position: -2em -24em;
}

.module.light-text .text-wrapper a.link-document:before {
    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: -6em -24em;
    width: 1.625em;
    height: 1.875em;
    font-size: 16px;
}

@media screen and (min-width: 0\0) {
    .module.light-text .text-wrapper a.link-document:before {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .module.light-text .text-wrapper a.link-document:before {
    background-image: url(../images/icon-sprites-vector.svg);
}

.module.light-text .text-wrapper a.link-document:hover:before {
    background-position: -8em -24em;
}

.module.light-text .text-wrapper a:hover {
    color: #efdf00;
}

.module.black-background {
    background-color: black;
    color: white;
}

.module.dark-grey-background {
    background: #e5e5e5;
}

.module.image-cover .image-wrapper {
    background-size: cover;
}

@media (max-width: 667px) {
    .module.image-cover .image-wrapper {
        padding-bottom: calc(100% - 40px);
    }
}

.module.image-contained .image-wrapper img {
    display: block;
}

.module.overspill-image .image-wrapper {
    padding-bottom: 0;
}

    .module.overspill-image .image-wrapper img {
        position: relative;
        display: inline;
    }

.module.overspill-image-on-right .text-wrapper {
    /*
			@include desktop {
				padding-left: fluid-width(200px);
				padding-left: 200px;
				padding-right: $gutter-width / 2;
			}
*/
}

@media (min-width: 668px) {
    .module.overspill-image-on-right .text-wrapper {
        float: left;
    }
}

@media (min-width: 668px) {
    .module.overspill-image-on-right .image-wrapper {
        float: right;
    }
}

@media (min-width: 668px) {
    .module.overspill-image-on-left .text-wrapper {
        float: right;
    }
}

@media (min-width: 1025px) {
    .module.overspill-image-on-left .text-wrapper {
        padding-left: 110px;
    }
}

@media (min-width: 668px) {
    .module.overspill-image-on-left .image-wrapper {
        float: left;
        text-align: right;
    }
}

.module.image-background {
    background-repeat: no-repeat;
    background-size: cover;
    /*            
            + .module-wrapper,
            + * + .module-wrapper { // sometimes a <style> tag is output for mobile bg image, so we need this rule
                border: 1px solid red !important;
                padding-top: 100px;
            }
*/
    /*
		&:not(.text-in-box) {
			.constrained {
				display: flex;
				height: 100%;
				align-items: center; // make text box centrally aligned vertically
			}
		}

		&:not(.text-in-box) {
			height: 770px;
		}

		.text-wrapper {
			max-width: 280px;
			margin-left: 200px;
		}
*/
}

@media (min-width: 668px) {
    .module.image-background {
        background-position: center center;
    }
}

@media (max-width: 667px) {
    .module.image-background {
        padding-bottom: 260px;
        background-position: center bottom;
    }
}

@media (min-width: 1025px) {
    .module.image-background .text-wrapper {
        width: auto;
        max-width: 280px;
        padding: 0;
        padding-top: 200px;
        padding-bottom: 200px;
    }
}

@media (min-width: 668px) and (max-width: 1024px) {
    .module.image-background .text-wrapper {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

@media (min-width: 1025px) {
    .module.image-background.text-on-left .text-wrapper {
        margin-left: 200px;
    }
}

@media (min-width: 668px) {
    .module.image-background.text-on-right .text-wrapper {
        float: right;
    }
}

@media (min-width: 1025px) {
    .module.image-background.text-on-right .text-wrapper {
        margin-right: 200px;
    }
}

.module.text-in-box {
    padding-top: 85px;
    padding-bottom: 85px;
}

@media (max-width: 667px) {
    .module.text-in-box {
        padding-bottom: 200px;
    }
}

.module.text-in-box .text-wrapper {
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
}

@media (min-width: 1025px) {
    .module.text-in-box .text-wrapper {
        max-width: 380px;
        margin-left: 4.23729%;
        padding: 50px;
    }
}

@media (min-width: 668px) and (max-width: 1024px) {
    .module.text-in-box .text-wrapper {
        padding: 40px;
    }
}

@media (max-width: 667px) {
    .module.text-in-box .text-wrapper {
        padding: 25px 20px;
    }
}

@media (min-width: 1025px) {
    .module.text-in-box.text-on-left .text-wrapper {
        margin-left: 100px;
    }
}

@media (min-width: 668px) {
    .module.text-in-box.text-on-right .text-wrapper {
        float: right;
    }
}

@media (min-width: 1025px) {
    .module.text-in-box.text-on-right .text-wrapper {
        margin-right: 150px;
    }
}

.module.module-3-column img {
    margin-bottom: 25px;
}

.module.module-3-column h4 {
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
}

@media (min-width: 668px) {
    .module.module-3-column .grid {
        display: flex;
        justify-content: space-between;
    }
}

.no-flexbox .module.module-2-column.image-cover {
    position: relative;
}

    .no-flexbox .module.module-2-column.image-cover .image-wrapper {
        position: absolute;
        top: 0;
        bottom: 0;
    }

@media (min-width: 668px) and (max-width: 1024px) {
    .no-flexbox .module.module-2-column.image-cover.level-1 .text-wrapper {
        padding: 40px;
    }
}

@media (min-width: 1025px) {
    .no-flexbox .module.module-2-column.image-cover.level-1 .text-wrapper {
        padding-left: 80px;
        padding-right: 80px;
    }
}

.no-flexbox .module.module-2-column.image-cover.level-1.text-on-left .image-wrapper {
    right: 0;
}

@media (max-width: 1024px) {
    .no-flexbox .module.module-2-column.image-cover.level-1.text-on-right {
        padding-left: 46.9%;
    }
}

@media (min-width: 1025px) {
    .no-flexbox .module.module-2-column.image-cover.level-1.text-on-right {
        padding-left: 61.86441%;
    }
}

.no-flexbox .module.module-2-column.image-cover.level-1.text-on-right .image-wrapper {
    left: 0;
}

.no-flexbox .module.module-2-column.image-cover.level-1.text-on-right .text-wrapper {
    width: auto !important;
}

.no-flexbox .module.module-2-column.image-cover:not(.level-1).text-on-left .image-wrapper {
    left: 50%;
}

.no-flexbox .module.module-2-column.image-cover:not(.level-1).text-on-right {
    padding-left: 50%;
}

    .no-flexbox .module.module-2-column.image-cover:not(.level-1).text-on-right .image-wrapper {
        left: 0;
    }

    .no-flexbox .module.module-2-column.image-cover:not(.level-1).text-on-right .text-wrapper {
        width: auto !important;
    }

.no-flexbox .module.module-2-column.image-contained.text-on-left .text-wrapper {
    float: left;
}

.no-flexbox .module.module-2-column.image-contained.text-on-left .image-wrapper {
    float: right;
}

.no-flexbox .module.module-2-column.image-contained.text-on-right .image-wrapper {
    float: left;
}

.no-flexbox .module.module-2-column.image-contained.text-on-right .text-wrapper {
    float: right;
}

.module-landing-page {
    margin-bottom: 15px;
}

    .module-landing-page .text-wrapper {
        width: 450px;
    }

    .module-landing-page .image-wrapper {
        width: 730px;
    }

.module-parallax .parallax-wrapper {
    border: 1px dashed yellow;
    position: relative;
    height: 700px;
    overflow: hidden;
}

    .module-parallax .parallax-wrapper .constrained {
        *zoom: 1;
    }

        .module-parallax .parallax-wrapper .constrained:after {
            content: "";
            display: table;
            clear: both;
        }

    .module-parallax .parallax-wrapper .text-wrapper {
        float: right;
    }

    .module-parallax .parallax-wrapper .parallax-layer {
        width: 100%;
        height: 100%;
    }

    .module-parallax .parallax-wrapper .parallax-background {
        position: relative;
        background: transparent url(../example-content/parallax-layer1.png) center center no-repeat;
        background-size: cover;
    }

    .module-parallax .parallax-wrapper .parallax-foreground {
        position: relative;
        background: transparent url(../example-content/parallax-layer2.png) center center no-repeat;
        background-size: cover;
    }

    .module-parallax .parallax-wrapper .parallax-image {
        outline: 1px dotted red;
        width: 100%;
        height: 0;
        width: 1366px;
        height: 768px;
        margin: 0 auto;
    }

.responsive-video-wrapper {
    position: relative;
    padding: 56.25% 0 28px 0;
}

    .responsive-video-wrapper .responsive-video-inner {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
    }

        .responsive-video-wrapper .responsive-video-inner .responsive-video {
            width: 100%;
            height: 100%;
        }

.module-video .text-wrapper {
    position: absolute;
    top: 85px;
    width: 380px;
    padding: 100px;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
}

.module-video.text-on-left .text-wrapper {
    left: 110px;
}

.module-video.text-on-right .text-wrapper {
    right: 110px;
}

.module-video.dark-text .section-content {
    color: #111;
}

    .module-video.dark-text .section-content h3:before {
        background-image: url(../images/sprite/ico-play-large-hover.png);
    }

    .module-video.dark-text .section-content:hover h3:before {
        background-image: url(../images/sprite/ico-play-large-yellow.png);
    }


/*
.hero-parallax {
	height: 400px;
	overflow: hidden;

	.parallax-layer {
		position: absolute;
	}

	.parallax-background,
	.parallax-foreground {
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
	}

	.parallax-background {
		background: transparent url(../example-content/parallax-layer1.png) center center no-repeat;
		background-size: cover;
	}

	.parallax-foreground {
		background: transparent url(../example-content/parallax-layer2.png) center center no-repeat;
		background-size: cover;
	}

	.parallax-text {
		left: 50%;
		bottom: 90px;

		color: white;
		font-family: $tv-nord;
		font-size: 90px;
		text-transform: uppercase;

		b {
			display: block;
		}
	}
}
*/

.headline-block .headline-block-line {
    text-transform: uppercase;
    font-size: 18px;
}

.headline-block .headline-block-line-redbold {
    font-weight: bold;
    color: red;
}

.headline-block .headline-block-line-rednormal {
    color: red;
}

.headline-block .headline-block-line-blackbold {
    font-weight: bold;
}

.module-wrapper {
    padding-top: 50px;
    padding-bottom: 50px;
    /*
      // an attempt at keeping spacing between image-bg and normal modules consistent. Doesn't work for ones with grey BGs though :(
      + .image-background,
      + * + .image-background { // sometimes a <style> tag is output for mobile bg image, so we need this rule
          border: 1px solid blue !important;
          margin-top: 50px;
      }        
  */
}

    .module-wrapper + .module-wrapper {
        padding-top: 0;
    }

.grey-background {
    background-color: #f8f8f8;
}

.hc-dark-grey-background,
.section.hc-dark-grey-background {
    background-color: #e5e5e5;
}

.hc-light-grey-background,
.section.hc-light-grey-background {
    background-color: #f8f8f8;
}

.hc-black-background {
    background-color: #000;
}

    .hc-black-background .white-text {
        color: #fff;
    }

    .hc-black-background a.link-pdf:before {
        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: 0em -24em;
        width: 1.625em;
        height: 1.875em;
        font-size: 16px;
    }

@media screen and (min-width: 0\0) {
    .hc-black-background a.link-pdf:before {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .hc-black-background a.link-pdf:before {
    background-image: url(../images/icon-sprites-vector.svg);
}

.hc-black-background a.link-pdf:hover:before {
    background-position: -22em -8em;
}

.hc-black-background .link-internal:not(:hover):before {
    /*background: url(../images/icon-link-internal-white.png) center center no-repeat;
  width: 25px;
  height: 25px;*/
    /*background-image: linear-gradient(transparent, transparent), url(../images/svg-weatherford.svg#arrowlinkwhite);*/
    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: -22em -12em;
    width: 1.5625em;
    height: 1.5em;
    font-size: 16px;
}

@media screen and (min-width: 0\0) {
    .hc-black-background .link-internal:not(:hover):before {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .hc-black-background .link-internal:not(:hover):before {
    background-image: url(../images/icon-sprites-vector.svg);
}

.hc-black-background .link-external:not(:hover):before {
    /*background: url(../images/icon-link-external-white.png) center center no-repeat;*/
    /*background-image: linear-gradient(transparent, transparent), url(../images/svg-weatherford.svg#arrowexternal);*/
    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: -18em -12em;
    width: 1.5em;
    height: 1.5em;
    font-size: 16px;
}

@media screen and (min-width: 0\0) {
    .hc-black-background .link-external:not(:hover):before {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .hc-black-background .link-external:not(:hover):before {
    background-image: url(../images/icon-sprites-vector.svg);
}


/*.dark-grey-background {
    background-color: $grey-dark-bg;
}*/


/* TEMP SEARCH FORM STYLES */

.left-search-column {
    width: 20.83333%;
}

@media (max-width: 667px) {
    .left-search-column {
        display: none !important;
    }
}

.left-search-column h3 {
    font-size: 20px;
    text-transform: uppercase;
    font-weight: bold;
    position: relative;
}

    .left-search-column h3:before {
        display: block;
        position: absolute;
        bottom: -15px;
        left: 0;
        width: 40px;
        height: 2px;
        border-top: 2px solid;
        border-color: inherit;
        content: "";
    }

.main-search-column {
    width: 79.16667%;
}

    .main-search-column .column {
        position: relative;
    }

@media (max-width: 667px) {
    .main-search-column {
        width: 100%;
    }

        .main-search-column .one-third {
            width: 100%;
        }
}

.search-form-wrapper .accordion-section {
    display: block;
    clear: both;
    padding-top: 10px;
}

    .search-form-wrapper .accordion-section .accordion-head {
        border-top: 1px solid #363636;
        color: #363636;
    }

        .search-form-wrapper .accordion-section .accordion-head .accordion-heading {
            margin-top: 10px;
            position: relative;
            font-weight: bold;
            padding-left: 10px;
        }

            .search-form-wrapper .accordion-section .accordion-head .accordion-heading .accordion-state-icon {
                position: absolute;
                top: -10px;
                right: 0;
                padding: 12px;
                border-bottom: 1px solid #363636;
                border-left: 1px solid #363636;
                border-right: 1px solid #363636;
                width: 40px;
                height: 40px;
                display: block;
            }

                .search-form-wrapper .accordion-section .accordion-head .accordion-heading .accordion-state-icon:before {
                    /*top: 0;
left: 0;*/
                    /*background: transparent url(../images/icon-accordion-closed.png) center center no-repeat;*/
                    /*background-image: linear-gradient(transparent, transparent), url(../images/svg-weatherford.svg#accordianplus);*/
                    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: -8em -8em;
                    width: 1em;
                    height: 1em;
                    font-size: 16px;
                    position: absolute;
                    content: "";
                    /*width: 16px;
  height: 16px;*/
                    opacity: 1;
                }

@media screen and (min-width: 0\0) {
    .search-form-wrapper .accordion-section .accordion-head .accordion-heading .accordion-state-icon:before {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .search-form-wrapper .accordion-section .accordion-head .accordion-heading .accordion-state-icon:before {
    background-image: url(../images/icon-sprites-vector.svg);
}

.search-form-wrapper .accordion-section .accordion-head .accordion-heading .accordion-state-icon:after {
    opacity: 0;
}

.search-form-wrapper .accordion-section .accordion-head:hover .accordion-heading {
    cursor: pointer;
    border-color: #ce1141;
}

    .search-form-wrapper .accordion-section .accordion-head:hover .accordion-heading .accordion-state-icon {
        border-color: #ce1141;
    }

        .search-form-wrapper .accordion-section .accordion-head:hover .accordion-heading .accordion-state-icon:before {
            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: -10em -8em;
            width: 1em;
            height: 1em;
        }

@media screen and (min-width: 0\0) {
    .search-form-wrapper .accordion-section .accordion-head:hover .accordion-heading .accordion-state-icon:before {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .search-form-wrapper .accordion-section .accordion-head:hover .accordion-heading .accordion-state-icon:before {
    background-image: url(../images/icon-sprites-vector.svg);
}

.search-form-wrapper .accordion-section.accordion-expanded .accordion-head {
    border-top: 1px solid #ce1141;
    color: #ce1141;
}

    .search-form-wrapper .accordion-section.accordion-expanded .accordion-head .accordion-heading .accordion-state-icon {
        border-bottom: 1px solid #ce1141;
        border-left: 1px solid #ce1141;
        border-right: 1px solid #ce1141;
    }

        .search-form-wrapper .accordion-section.accordion-expanded .accordion-head .accordion-heading .accordion-state-icon:before {
            opacity: 0;
        }

        .search-form-wrapper .accordion-section.accordion-expanded .accordion-head .accordion-heading .accordion-state-icon:after {
            /*top: 0;
  left: 0;*/
            /*background: transparent url(../images/icon-accordion-open.png) center center no-repeat;*/
            /*background-image: linear-gradient(transparent, transparent), url(../images/svg-weatherford.svg#accordianminus);*/
            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: -16em -8em;
            width: 1em;
            height: 1em;
            font-size: 16px;
            position: absolute;
            content: "";
            /*width: 16px;
  height: 16px;*/
            opacity: 1;
        }

@media screen and (min-width: 0\0) {
    .search-form-wrapper .accordion-section.accordion-expanded .accordion-head .accordion-heading .accordion-state-icon:after {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .search-form-wrapper .accordion-section.accordion-expanded .accordion-head .accordion-heading .accordion-state-icon:after {
    background-image: url(../images/icon-sprites-vector.svg);
}

.search-form-wrapper .accordion-section .accordion-body {
    padding: 10px 0;
}

.search-form-wrapper,
.search-filter-form-wrapper {
    margin-top: 60px;
}

@media (max-width: 667px) {
    .search-form-wrapper,
    .search-filter-form-wrapper {
        margin-top: 20px;
    }
}

.main-content > *:nth-child(1) .search-form-wrapper,
.main-content > *:nth-child(1) .search-filter-form-wrapper,
.main-content > *:nth-child(2) .search-form-wrapper,
.main-content > *:nth-child(2) .search-filter-form-wrapper {
    margin-top: 0;
}

.search-results-wrapper {
    min-height: 100px;
}

@media (min-width: 668px) {
    .search-results-wrapper {
        margin-top: 40px;
    }
}

@media (min-width: 668px) {
    .search-results-wrapper .paging-holder {
        margin-left: 20.83333%;
        float: left;
    }
}

.searchDialog.biz-form .editing-form-label-cell {
    display: none;
}

.searchDialog.biz-form .editing-form-value-cell {
    width: 95%;
}

@media (max-width: 667px) {
    .searchDialog.biz-form .editing-form-value-cell {
        width: 100%;
    }
}

.searchDialog.biz-form .form-group {
    width: 80%;
    float: left;
}

@media (max-width: 667px) {
    .searchDialog.biz-form .form-group {
        width: 100%;
    }
}

.searchDialog.biz-form .form-group.form-group-submit {
    width: 20%;
    float: left;
}

@media (max-width: 667px) {
    .searchDialog.biz-form .form-group.form-group-submit {
        width: 100%;
    }
}

.searchDialog.biz-form .form-group.form-group-submit input {
    margin-left: 0;
    float: right;
}

.corp-list-5 {
    /* Temp below - This will be modified when columns agreed */
    /* Temp above - This will be modified when columns agreed */
}

    .corp-list-5 .left-results-column {
        width: 20.83333%;
        padding: 25px 0 30px 0;
    }

        .corp-list-5 .left-results-column.first {
            border-top: 1px solid grey;
        }

@media (max-width: 667px) {
    .corp-list-5 .left-results-column {
        display: none;
    }

        .corp-list-5 .left-results-column.first {
            display: block;
            border-top: none;
            padding: 25px 20px 30px 20px;
        }
}

.corp-list-5 .main-results-column {
    width: 58.33333%;
    padding: 25px 10px 30px 0;
    border-top: 1px solid grey;
}

@media (max-width: 667px) {
    .corp-list-5 .main-results-column {
        width: 66.66667%;
        padding: 25px 20px 30px 20px;
    }
}

.corp-list-5 .link-results-column {
    width: 20.83333%;
    padding: 25px 10px 30px 0;
    border-top: 1px solid grey;
}

@media (max-width: 667px) {
    .corp-list-5 .link-results-column {
        width: 33.33333%;
        padding: 25px 20px 30px 20px;
    }
}

.corp-list-5 h3 {
    font-size: 20px;
    text-transform: uppercase;
    font-weight: bold;
    position: relative;
}

    .corp-list-5 h3:before {
        display: block;
        position: absolute;
        bottom: -15px;
        left: 0;
        width: 40px;
        height: 2px;
        border-top: 2px solid;
        border-color: inherit;
        content: "";
    }

.corp-list-5 .item-title {
    font-weight: bold;
    font-size: 16px;
}

.corp-list-5 .item-section {
    font-weight: 300;
    font-size: 16px;
    margin-top: 3px;
}

.corp-list-5 .item-breadcrumb {
    font-weight: 300;
    font-size: 12px;
    color: #666666;
    margin-top: 8px;
}

.corp-list-5 .item-link {
    font-weight: 500;
    font-size: 14px;
    position: relative;
    padding-left: 35px;
}

    .corp-list-5 .item-link.icon-pdf:before {
        /*background: transparent url(../images/icon-pdf.png) center center no-repeat;*/
        /*background-image: linear-gradient(transparent, transparent), url(../images/svg-weatherford.svg#filepdf);*/
        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: -20em -8em;
        width: 1.625em;
        height: 1.875em;
        font-size: 16px;
        position: absolute;
        content: "";
        /*width: 27px;
  height: 32px;*/
        left: 0;
    }

@media screen and (min-width: 0\0) {
    .corp-list-5 .item-link.icon-pdf:before {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .corp-list-5 .item-link.icon-pdf:before {
    background-image: url(../images/icon-sprites-vector.svg);
}

.corp-list-5 .item-link.icon-document:before {
    /*background: transparent url(../images/icon-document.png) center center no-repeat;*/
    /*background-image: linear-gradient(transparent, transparent), url(../images/svg-weatherford.svg#filedoc);*/
    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: -24em -8em;
    width: 1.6875em;
    height: 1.875em;
    font-size: 16px;
    position: absolute;
    content: "";
    /*width: 25px;
  height: 25px;*/
    left: 0;
}

@media screen and (min-width: 0\0) {
    .corp-list-5 .item-link.icon-document:before {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .corp-list-5 .item-link.icon-document:before {
    background-image: url(../images/icon-sprites-vector.svg);
}

.corp-list-5 .item-link.icon-video:before {
    /*background: transparent url(../images/icon-video.png) center center no-repeat;*/
    /*background-image: linear-gradient(transparent, transparent), url(../images/svg-weatherford.svg#filevideo);*/
    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: -44em -8em;
    width: 1.5625em;
    height: 1.9375em;
    font-size: 16px;
    position: absolute;
    content: "";
    /*width: 24px;
  height: 30px;*/
    left: 0;
}

@media screen and (min-width: 0\0) {
    .corp-list-5 .item-link.icon-video:before {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .corp-list-5 .item-link.icon-video:before {
    background-image: url(../images/icon-sprites-vector.svg);
}

.corp-list-5 .item-link.icon-page:before {
    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: -40em -4em;
    width: 1.5em;
    height: 1.5em;
    font-size: 16px;
    position: absolute;
    content: "";
    left: 0;
}

@media screen and (min-width: 0\0) {
    .corp-list-5 .item-link.icon-page:before {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .corp-list-5 .item-link.icon-page:before {
    background-image: url(../images/icon-sprites-vector.svg);
}


/* KEY DOWNLOADS WIDGET */

.key-downloads {
    margin: 30px 0;
}

    .key-downloads .key-downloads-title {
        font-size: 20px;
        line-height: 18px;
        font-family: "Nord-Con", "tv_nord", Arial, Helvetica, sans-serif;
        font-weight: bold;
        text-transform: uppercase;
        position: relative;
        margin-bottom: 45px !important;
    }

        .key-downloads .key-downloads-title:before {
            display: block;
            position: absolute;
            bottom: -15px;
            left: 0;
            width: 40px;
            height: 2px;
            border-top: 2px solid;
            border-color: inherit;
            content: "";
        }

    .key-downloads .key-downloads-list a {
        position: relative;
        display: block;
        min-height: 50px;
        margin: 10px 0;
        font-size: 14px;
        font-weight: 500;
    }

        .key-downloads .key-downloads-list a.key-downloads-link:before {
            position: absolute;
            left: 0;
            top: 10%;
            display: inline-block;
            content: "";
        }

        .key-downloads .key-downloads-list a.key-downloads-link:hover.icon-pdf:before {
            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: -22em -8em;
            width: 1.625em;
            height: 1.875em;
        }

@media screen and (min-width: 0\0) {
    .key-downloads .key-downloads-list a.key-downloads-link:hover.icon-pdf:before {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .key-downloads .key-downloads-list a.key-downloads-link:hover.icon-pdf:before {
    background-image: url(../images/icon-sprites-vector.svg);
}

.key-downloads .key-downloads-list a.key-downloads-link:hover .doc-title {
    text-decoration: underline;
}

.key-downloads .key-downloads-list a.key-downloads-link.icon-pdf:before {
    /*background: transparent url(../images/icon-pdf.png) center center no-repeat;*/
    /*background-image: linear-gradient(transparent, transparent), url(../images/svg-weatherford.svg#filepdf);*/
    /*width: 27px;
  height: 32px;*/
    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: -20em -8em;
    width: 1.625em;
    height: 1.875em;
    font-size: 16px;
}

@media screen and (min-width: 0\0) {
    .key-downloads .key-downloads-list a.key-downloads-link.icon-pdf:before {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .key-downloads .key-downloads-list a.key-downloads-link.icon-pdf:before {
    background-image: url(../images/icon-sprites-vector.svg);
}

.key-downloads .key-downloads-list a .doc-title {
    display: inline-block;
    margin-left: 42px;
}

    .key-downloads .key-downloads-list a .doc-title:hover {
        color: #ce1141;
    }


/*Magnus banner*/

.corp_large_expanding_image_background {
    background: rgba(255, 255, 255, 0);
    background: -moz-linear-gradient(top, transparent 1%, rgba(33, 33, 33, 0) 66%, rgba(85, 85, 85, 0.65) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, transparent 1%, rgba(33, 33, 33, 0) 66%, rgba(85, 85, 85, 0.65) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, transparent 1%, rgba(33, 33, 33, 0) 66%, rgba(85, 85, 85, 0.65) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6555555', GradientType=0);
    /* IE6-9 */
}

.corp_large_expanding_image_background_div {
    height: 685px;
    background-position: center bottom;
    background-repeat: no-repeat;
}

@media (max-width: 667px) {
    .corp_large_expanding_image_background_div {
        height: 445px;
    }
}

.corp_large_expanding_image_background_div .shell {
    position: relative;
}

.corp_large_expanding_image_background_div .expanding-image-text {
    position: absolute;
    left: 15px;
    top: 60px;
    max-width: 400px;
}

@media (min-width: 1200px) {
    .corp_large_expanding_image_background_div .expanding-image-text {
        left: 100px;
        top: 110px;
    }
}

@media (max-width: 667px) {
    .corp_large_expanding_image_background_div .expanding-image-text {
        top: 20px;
        max-width: 300px;
    }
}


/* ADVANCED HERO */

.hero-wrapper {
    position: relative;
    z-index: 13;
    background-color: #FFFFFF;
}
/*changes to meganav added 20210421 */
@media (min-width: 668px) {
    .hero-wrapper {
        padding-top: 100px;
    }
}
    .hero-wrapper .module-responsive-video {
        margin-bottom: 0;
        padding-bottom: 0;
    }

@media (min-width: 668px) and (max-width: 1180px) {
    .hero-wrapper .module-responsive-video {
/*changes to meganav hid 20210421
        padding-top: 100px;
*/
    }
}

.hero {
    background-color: white;
    background-position: center center;
    background-size: cover;
    overflow: hidden;
}

    .hero .constrained {
        position: relative;
    }

@media (min-width: 668px) {
    .hero .constrained {
        margin-top: 100px;
        height: calc(100% - 100px);
    }
}

@media (max-width: 667px) {
    .hero .constrained {
        height: 100%;
    }
}

.hero .hero-slide {
    position: relative;
    background-position: center center;
    background-size: cover;
}

@media (min-width: 668px) {
    .hero .hero-slide {
        height: 400px;
    }
}

@media (max-width: 667px) {
    .hero .hero-slide {
        height: 47vw;
    }
}

@media (max-width: 420px) {
    .hero .hero-slide {
        height: 200px;
    }
}

@media (min-width: 668px) {
    .hero.tall .hero-slide {
        height: 580px;
    }
}

@media (max-width: 667px) {
    .hero.tall .hero-slide {
        height: 85vw;
    }
}

@media (max-width: 420px) {
    .hero.tall .hero-slide {
        height: 360px;
    }
}

.hero .hero-text {
    position: absolute;
    top: 50%;
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "Nord-Con", "tv_nord", Arial, Helvetica, sans-serif;
    text-transform: uppercase;
}

.hero .hero-text-center {
    position: absolute;
    margin: auto;
    transform: translate(-50%, -50%);
    width: 100%;
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "Nord-Con", "tv_nord", Arial, Helvetica, sans-serif;
    text-transform: uppercase;
}

    .hero .hero-text,
    .hero .hero-text .rich-text,
    .hero .hero-text-center,
    .hero .hero-text-center .rich-text {
        line-height: 0.9;
    }

        .hero .hero-text p {
            margin: 0;
            font-size: inherit;
            line-height: inherit;
        }

        .hero .hero-text-center p {
            margin: 0;
            font-size: inherit;
            line-height: inherit;
            text-align: center;
        }

@media (min-width: 668px) {
    .hero .hero-text {
        left: 59.32203%;
        margin-right: 30px;
        font-size: 50px;
    }

    .hero .hero-text-center {
        font-size: 50px;
        max-width: 1080px;
/*changes to meganav added 20210414
        top: calc(50% - -50px); 
    */
        top: calc(50% - 0px);
    }

    .hero .hero-text,
    .hero .hero-text .rich-text {
        font-size: 50px;
    }

    .hero .hero-text-center,
    .hero .hero-text-center .rich-text {
        font-size: 50px;
        max-width: 1080px;
    }
}

@media (max-width: 667px) {
    .hero .hero-text {
        left: 53.125%;
        margin-right: 20px;
        font-size: 7vw;
    }

    .hero .hero-text-center {
        font-size: 7vw;
        top: 50%;
    }

        .hero .hero-text,
        .hero .hero-text .rich-text,
        .hero .hero-text-center,
        .hero .hero-text-center .rich-text {
            font-size: 7vw;
        }
}

@media (max-width: 420px) {
    .hero .hero-text {
        font-size: 20px;
    }

    .hero .hero-text-center {
        font-size: 7vw;
    }

        .hero .hero-text,
        .hero .hero-text .rich-text,
        .hero .hero-text-center,
        .hero .hero-text-center .rich-text {
            font-size: 20px;
        }
}

.hero.light-text,
.hero .light-text {
    color: white;
}


/* COUNTDOWN CLOCK */

.CenterContainer {
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto;
}

.PaddingContainer {
    padding: 10px 25px;
}

    .PaddingContainer .row {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin-right: -15px;
        margin-left: -15px;
    }

.div-top-left {
    border-top-left-radius: 40px;
}

.div-top-right {
    border-top-right-radius: 40px;
}

.div-bottom-left {
    border-bottom-left-radius: 40px;
}

.div-bottom-right {
    border-bottom-right-radius: 40px;
}

.NumberText {
    font-size: 54px;
    line-height: 80px;
    font-weight: 300;
    text-align: center;
    height: 75px;
    vertical-align: top;
    border-right: 1px solid #d7d6d5;
    color: #ce1141;
    background-color: #f8f8f8;
    font-family: "Nord-Con", "tv_nord", Arial, Helvetica, sans-serif;
}

@media (max-width: 667px) {
    .NumberText {
        font-size: 26px;
        line-height: 50px;
        height: 35px;
        padding-top: 0;
    }
}

.UnitText {
    font-size: 36px;
    text-align: center;
    height: 45px;
    vertical-align: top;
    border-right: 1px solid #d7d6d5;
    color: #363636;
    background-color: #f8f8f8;
    text-transform: uppercase;
    font-family: "Nord-Con", "tv_nord", Arial, Helvetica, sans-serif;
    margin-top: -1px;
}

@media (max-width: 667px) {
    .UnitText {
        font-size: 16px;
        line-height: 30px;
        height: 35px;
    }
}

.ColWidth25 {
    width: 25%;
}

.RowMarginShort {
    margin-top: -1px;
}


/* COUNTDOWN CLOCK */


/* HOME ANNOUNCEMENT BANNER */

@media (min-width: 668px) {
    .announcement-banner {
        height: 270px;
        margin-top: 100px;
    }
}

@media (max-width: 667px) {
    .announcement-banner {
        height: 320px;
        padding: 20px;
    }
}

.announcement-banner .announcement-text {
    padding: 25px 20px;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
}

@media (min-width: 668px) {
    .announcement-banner .announcement-text {
        position: absolute;
        top: 50px;
        left: 19.49153%;
        width: 300px;
    }
}

.announcement-banner .announcement-text .announcement-text-inner {
    margin-left: -20px;
    margin-bottom: 15px;
    position: relative;
    border-left: 3px solid #ce1141;
    padding-left: 20px;
}

.announcement-banner .announcement-text .link-internal:not(:hover):before {
    /*background: url(../images/icon-link-internal-white.png) center center no-repeat;
  width: 25px;
  height: 25px;*/
    /*background-image: linear-gradient(transparent, transparent), url(../images/svg-weatherford.svg#arrowlinkwhite);*/
    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: -22em -12em;
    width: 1.5625em;
    height: 1.5em;
    font-size: 16px;
}

@media screen and (min-width: 0\0) {
    .announcement-banner .announcement-text .link-internal:not(:hover):before {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .announcement-banner .announcement-text .link-internal:not(:hover):before {
    background-image: url(../images/icon-sprites-vector.svg);
}

.announcement-banner .announcement-text .link-external:not(:hover):before {
    /*background: url(../images/icon-link-external-white.png) center center no-repeat;*/
    /*background-image: linear-gradient(transparent, transparent), url(../images/svg-weatherford.svg#arrowexternal);*/
    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: -18em -12em;
    width: 1.5em;
    height: 1.5em;
    font-size: 16px;
}

@media screen and (min-width: 0\0) {
    .announcement-banner .announcement-text .link-external:not(:hover):before {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .announcement-banner .announcement-text .link-external:not(:hover):before {
    background-image: url(../images/icon-sprites-vector.svg);
}


/* HOME ANNOUNCEMENT HEADER */

.homeannouncementbannder {
    height: 50px;
    z-index: 13;
    background-color: white;
    border-bottom: 1px solid #e6e6e6;
    border-left: 1px solid #e6e6e6;
    border-right: 1px solid #e6e6e6;
    max-width: 1182px;
    margin: 0 auto;
    position: relative;
    top: 99px;
}

.homeannouncementbanndertitle {
    font-size: 20px;
    text-transform: uppercase;
    font-weight: bold;
    font-family: "Nord-Con", "tv_nord", Arial, Helvetica, sans-serif;
    line-height: 49px;
    width: 180px;
    position: relative;
    text-align: center;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.homeannouncementbanndertextcontainer {
    position: absolute;
    left: 180px;
    top: 50px;
    width: 100%;
    top: 0;
    width: calc(100% - 180px);
    height: 50px;
}

.homeannouncementbanndertext {
    display: flex;
    align-items: center;
    height: 50px;
    margin-left: 10px;
    margin-right: 10px;
}

.page-header.collapsed .homeannouncementbannder {
    top: 50px;
}

@media (max-width: 667px) {
    .page-header.collapsed .homeannouncementbannder {
        top: 50px;
    }

    .homeannouncementbannder {
        top: 99px;
    }

    .homeannouncementbanndertitle {
        font-size: 18px;
        width: 130px;
    }

    .homeannouncementbanndertextcontainer {
        left: 130px;
        width: calc(100% - 130px);
    }

    .homeannouncementbanndertext {
        font-size: 12px;
    }
}


/* HOME CAROUSEL BANNER */

@media (min-width: 668px) {
    .carousel-banner {
        height: 650px;
        margin-top: 0px;
    }
}

@media (max-width: 667px) {
    .carousel-banner {
        height: 320px;
        padding: 20px;
    }
}

.carousel-banner .carousel-text {
    padding: 25px 20px;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
}

@media (min-width: 668px) {
    .carousel-banner .carousel-text {
        position: absolute;
        top: 50px;
        left: 30.25%;
        width: 300px;
        margin-top: 150px;
    }
}

.carousel-banner .carousel-text .carousel-text-inner {
    margin-left: -20px;
    margin-bottom: 15px;
    position: relative;
    border-left: 3px solid #ce1141;
    padding-left: 20px;
}

.carousel-banner .carousel-text .link-internal:not(:hover):before {
    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: -22em -12em;
    width: 1.5625em;
    height: 1.5em;
    font-size: 16px;
}

@media screen and (min-width: 0\0) {
    .carousel-banner .carousel-text .link-internal:not(:hover):before {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .carousel-banner .carousel-text .link-internal:not(:hover):before {
    background-image: url(../images/icon-sprites-vector.svg);
}

.carousel-banner .carousel-text .link-external:not(:hover):before {
    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: -18em -12em;
    width: 1.5em;
    height: 1.5em;
    font-size: 16px;
}

@media screen and (min-width: 0\0) {
    .carousel-banner .carousel-text .link-external:not(:hover):before {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .carousel-banner .carousel-text .link-external:not(:hover):before {
    background-image: url(../images/icon-sprites-vector.svg);
}

@media (min-width: 668px) {
    .shell-carousel-banner {
        max-width: calc(100% + 30px);
    }
}

@media (min-width: 1200px) {
    .shell-carousel-banner {
        max-width: 1210px !important;
    }
}


/*WFT BUTTON*/

.wftButton {
    height: 40px;
    padding: 0px 35px 0px 25px;
    border: 1px solid #ce1141;
    color: #ffffff;
    font-family: "Nord-Con", "tv_nord", Arial, Helvetica, sans-serif;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    background: transparent url(../images/icon-arrow-small.png) calc(100% - 16px) center no-repeat;
    background-color: #ce1141;
}

    .wftButton:hover {
        background-color: #ffffff;
        background-image: url(../images/icon-arrow-small-hover.png);
        color: #ce1141;
    }

/*WFT LINK BUTTON 04/20/2021*/ 

.wftLinkButton {
    height: 40px;
    padding: 10px 35px 10px 25px;
    border: 1px solid #ce1141;
    color: #ffffff;
    font-family: "Nord-Con", "tv_nord", Arial, Helvetica, sans-serif;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    background: transparent url(../images/icon-arrow-small.png) calc(100% - 16px) center no-repeat;
    background-color: #ce1141;
    text-decoration: none !important;
}

    .wftLinkButton:hover {
        background-color: #ffffff;
        background-image: url(../images/icon-arrow-small-hover.png);
        color: #ce1141;
        text-transform: uppercase;
    }

/* SHORT ANNOUNCEMENT BANNER */

@media (min-width: 668px) {
    .short-banner {
        height: 125px;
        margin-top: 0px;
        margin-bottom: 20px;
    }
}

@media (max-width: 667px) {
    .short-banner {
        height: 125px;
        margin-bottom: -20px;
    }
}

.short-banner .short-text {
    padding: 10px 10px;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
}

@media (min-width: 668px) {
    .short-banner .short-text {
        position: absolute;
        top: 10px;
        left: 19.49153%;
        width: 450px;
    }
}

@media (max-width: 668px) {
    .short-banner .short-text {
        position: absolute;
        top: 10px;
        left: 5%;
        width: 90%;
    }
}

.short-banner .short-text .short-text-inner {
    margin-left: -10px;
    margin-bottom: 15px;
    position: relative;
    border-left: 3px solid #ce1141;
    padding-left: 10px;
}

.short-banner .short-text .link-internal:not(:hover):before {
    /*background: url(../images/icon-link-internal-white.png) center center no-repeat;
  width: 25px;
  height: 25px;*/
    /*background-image: linear-gradient(transparent, transparent), url(../images/svg-weatherford.svg#arrowlinkwhite);*/
    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: -22em -12em;
    width: 1.5625em;
    height: 1.5em;
    font-size: 16px;
}

@media screen and (min-width: 0\0) {
    .short-banner .short-text .link-internal:not(:hover):before {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .short-banner .short-text .link-internal:not(:hover):before {
    background-image: url(../images/icon-sprites-vector.svg);
}

.short-banner .short-text .link-external:not(:hover):before {
    /*background: url(../images/icon-link-external-white.png) center center no-repeat;*/
    /*background-image: linear-gradient(transparent, transparent), url(../images/svg-weatherford.svg#arrowexternal);*/
    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: -18em -12em;
    width: 1.5em;
    height: 1.5em;
    font-size: 16px;
}

@media screen and (min-width: 0\0) {
    .short-banner .short-text .link-external:not(:hover):before {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .short-banner .short-text .link-external:not(:hover):before {
    background-image: url(../images/icon-sprites-vector.svg);
}


/* CORP TABLE */

#corporateTableCanvas {
    margin-bottom: 30px;
}

@media (min-width: 668px) {
    #corporateTableCanvas .first-col {
        width: 190px;
    }
}

#corporateTableCanvas th,
#corporateTableCanvas td {
    padding: 11px 20px 11px 0;
    text-align: left;
    vertical-align: top;
}

#corporateTableCanvas th {
    color: #ce1141;
}

@media (min-width: 668px) and (max-width: 890px) {
    #corporateTableCanvas tr td:not(:first-of-type) {
        padding: 4px 17px 4px 0;
    }
}

@media (max-width: 890px) {
    #corporateTableCanvas {
        overflow: hidden;
        overflow-x: scroll;
    }

        #corporateTableCanvas .first-col {
            min-width: 150px;
        }

        #corporateTableCanvas .data-col {
            min-width: 110px;
        }
}

.event-with-map {
    margin-top: 30px;
}

.google-map-canvas {
    margin-top: 30px;
    margin-bottom: 30px;
}

.map-marker-label {
    color: black;
    background-color: beige;
    font-family: "Lucida Grande", "Arial", sans-serif;
    font-size: 14px !important;
    font-weight: bold;
    text-align: center;
    width: auto;
    white-space: nowrap;
    padding: 4px;
    border: 1px solid grey;
    border-radius: 3px;
    box-shadow: 2px 2px 20px #888888;
}


/* ----- Wistia Video module ----- */

.module-responsive-video {
    position: relative;
    padding-bottom: 30px;
}

    .module-responsive-video.module-responsive-video--no-padding {
        padding-bottom: 0px !important;
    }

@media (min-width: 668px) {
    .module-responsive-video {
        padding-bottom: 50px;
    }
}

.module-responsive-video.clip-height {
    position: relative;
    overflow: hidden;
}

@media (min-width: 668px) {
    .module-responsive-video.clip-height.fixed-height {
        height: 400px;
    }
}

@media (min-width: 668px) {
    .module-responsive-video.clip-height.fixed-height.tall {
        height: 680px;
    }
}

.module-responsive-video.clip-height.fixed-height .wistia_embed {
    position: absolute;
    left: 50%;
    top: 50%;
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.module-responsive-video.dark-grey-background {
    background: #e5e5e5;
}

.module-responsive-video.black-background {
    background: #000;
}

.module-responsive-video .constrained {
    height: 100%;
}

@media (min-width: 668px) {
    .module-responsive-video + .video-caption {
        position: relative;
        top: -30px;
    }
}

.module-responsive-video .responsive-video[data-video-autoplay="true"] {
    pointer-events: none;
}

    .module-responsive-video .responsive-video[data-video-autoplay="true"] .w-bottom-bar {
        display: none !important;
    }


/* Custom Container Classes - relating to widget in CMS */


/* Wrapping the 3 stock related widgets, Investor Relations home page*/

.custom-container-investor-home {
    padding: 20px;
    background: #FFFFFF;
    /*changed 20190515   margin-top: -20px; */
    margin-top: 0px;
}

@media (min-width: 1025px) {
    .custom-container-investor-home {
        padding: 40px 50px;
    }
}

.custom-container-investor-home .corp-stock.corp-stock-small {
    padding: 0;
}

.custom-container-investor-home .corp-stock-chart {
    padding: 20px 0 60px 0;
}

.module[id*=StandardImage] .rich-text > ul > li {
    padding-bottom: 1em;
}

    .module[id*=StandardImage] .rich-text > ul > li:last-child {
        padding-bottom: 0;
    }


/* ----- Stock Chart ----- */

.amcharts-panels-div text[font-family] {
    font-family: "roboto", Arial, Helvetica, sans-serif !important;
}

.amcharts-period-selector-div {
    margin-bottom: 10px;
    text-align: center;
}

    .amcharts-period-selector-div legend + div {
        float: none !important;
    }

        .amcharts-period-selector-div legend + div input {
            margin: 0 28px;
            background-color: transparent;
            font-family: "Nord-Con", "tv_nord", Arial, Helvetica, sans-serif;
            font-size: 20px;
            font-weight: bold;
            line-height: 1;
        }

.corp-chart-legend {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1;
    margin-top: 15px;
}

    .corp-chart-legend > * {
        height: 65px;
        font-size: 11px;
        font-weight: 300;
    }

@media (max-width: 667px) {
    .corp-chart-legend > * {
        height: 45px;
    }
}

.corp-chart-legend > * strong {
    display: block;
    font-size: 14px;
    line-height: normal;
    font-weight: 500;
}

.chart-wrapper {
    margin-right: 80px;
}

@media (max-width: 667px) {
    .chart-wrapper {
        margin-left: -20px;
        margin-right: -10px;
    }
}

.chart-wrapper svg text {
    font-family: "roboto", Arial, Helvetica, sans-serif !important;
    font-size: 16px !important;
    line-height: 22px !important;
    fill: #8c8c8c !important;
}

.chart-wrapper svg g[clip-path] text {
    font-family: "Nord-Con", "tv_nord", Arial, Helvetica, sans-serif !important;
    font-size: 20px !important;
    font-weight: bold !important;
    fill: #373a36 !important;
}

.chart-wrapper svg g[clip-path] circle[fill="#ce1141"] + text {
    fill: #ce1141 !important;
}

.chart-wrapper svg g[clip-path] circle[fill="#b2b2b2"] + text {
    fill: #b2b2b2 !important;
}

.chart-wrapper svg g[clip-path] circle[fill="#8c8c8c"] + text {
    fill: #8c8c8c !important;
}

.chart-wrapper svg g[clip-path] circle[fill="#363636"] + text {
    fill: #363636 !important;
}

.chart-wrapper svg g[clip-path] circle[fill="#c3c3c3"] + text {
    fill: #c3c3c3 !important;
}

.chart-wrapper svg g[clip-path] circle[fill="#7f7f7f"] + text {
    fill: #7f7f7f !important;
}

.chart-wrapper svg g[cursor] text {
    font-family: "roboto", Arial, Helvetica, sans-serif !important;
    font-size: 14px !important;
    line-height: 18px !important;
    fill: #373a36 !important;
}

.chart-wrapper svg g[cursor] path[fill="#ce1141"] + g + text {
    fill: #ce1141 !important;
}

.chart-wrapper svg g[cursor] path[fill="#b2b2b2"] + g + text {
    fill: #b2b2b2 !important;
}

.chart-wrapper svg g[cursor] path[fill="#8c8c8c"] + g + text {
    fill: #8c8c8c !important;
}

.chart-wrapper svg g[cursor] path[fill="#363636"] + g + text {
    fill: #363636 !important;
}

.chart-wrapper svg g[cursor] path[fill="#c3c3c3"] + g + text {
    fill: #c3c3c3 !important;
}

.chart-wrapper svg g[cursor] path[fill="#7f7f7f"] + g + text {
    fill: #7f7f7f !important;
}


/* Stock Chart Wrapper */

.corp-stock-chart {
    padding-bottom: 60px;
    padding-left: 20px;
    padding-right: 20px;
    background: #FFFFFF;
}

@media (max-width: 667px) {
    .corp-stock-chart {
        padding-bottom: 90px;
        padding-left: 0;
        padding-right: 0;
    }
}

.corp-stock-chart .amChartsButton.amcharts-period-input,
.corp-stock-chart .amChartsButtonSelected.amcharts-period-input-selected {
    margin: 0 21px 10px 21px;
    padding: 0 14px 8px 0;
}

@media (max-width: 667px) {
    .corp-stock-chart .amChartsButton.amcharts-period-input,
    .corp-stock-chart .amChartsButtonSelected.amcharts-period-input-selected {
        margin: 0 7px 10px 7px;
    }
}

.corp-stock-chart .amChartsButtonSelected.amcharts-period-input-selected {
    position: relative;
    border-bottom: 2px solid #ce1141;
    color: #ce1141;
}

@media (max-width: 667px) {
    .corp-stock-chart .amChartsButtonSelected.amcharts-period-input-selected {
        margin-bottom: 8px;
    }
}


/* ------------------------------------------------------------ *\
	Paging
\* ------------------------------------------------------------ */

.paging {
    padding: 30px 0 60px 0;
}

    .paging .paging-first,
    .paging .paging-prev,
    .paging .paging-next,
    .paging .paging-last {
        color: #373a36;
        display: inline-block;
        vertical-align: middle;
        font-size: 20px;
        padding: 10px;
        margin: -10px 0;
    }

@media (max-width: 667px) {
    .paging .paging-first,
    .paging .paging-prev,
    .paging .paging-next,
    .paging .paging-last {
        font-size: 18px;
    }
}

.paging .paging-first.disabled,
.paging .paging-prev.disabled,
.paging .paging-next.disabled,
.paging .paging-last.disabled {
    opacity: .2;
    cursor: none;
    color: #373a36 !important;
}

.paging ul {
    font-size: 0;
    display: inline-block;
    vertical-align: middle;
    margin-bottom: 0;
}

.paging li {
    display: inline-block;
    font-size: 24px;
    line-height: 28px;
    font-weight: 700;
    font-family: "Nord-Con", "tv_nord", Arial, Helvetica, sans-serif;
    color: #373a36;
}

    .paging a:hover,
    .paging li.active {
        color: #ce1141;
    }

    .paging li a {
        letter-spacing: 0.02em;
        padding: 0 5px;
    }

.paging .paging-spacer {
    font-weight: 300;
    margin: 0 4px;
}

.paging .paging-first,
.paging .paging-prev,
.paging .paging-next,
.paging .paging-last {
    margin: -10px -5px;
    position: relative;
}

    .paging .paging-prev i,
    .paging .paging-next i {
        margin: 0 10px;
    }

    .paging .paging-prev:hover:before {
        background-position: -32em -16em;
    }

    .paging .paging-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%);
    }

@media screen and (min-width: 0\0) {
    .paging .paging-prev:before {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .paging .paging-prev:before {
    background-image: url(../images/icon-sprites-vector.svg);
}

.paging .paging-prev.disabled:hover:before {
    background-position: -28em -16em;
}

.paging .paging-prev.disabled:before {
    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;
}

@media screen and (min-width: 0\0) {
    .paging .paging-prev.disabled:before {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .paging .paging-prev.disabled:before {
    background-image: url(../images/icon-sprites-vector.svg);
}

.paging .paging-next:hover:after {
    background-position: -34em -16em;
}

.paging .paging-next:after {
    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%);
}

@media screen and (min-width: 0\0) {
    .paging .paging-next:after {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .paging .paging-next:after {
    background-image: url(../images/icon-sprites-vector.svg);
}

.paging .paging-next.disabled:hover:after {
    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;
    background-position: -38em -16em;
}

@media screen and (min-width: 0\0) {
    .paging .paging-next.disabled:hover:after {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .paging .paging-next.disabled:hover:after {
    background-image: url(../images/icon-sprites-vector.svg);
}

.paging .paging-next.disabled:after {
    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;
    background-position: -38em -16em;
}

@media screen and (min-width: 0\0) {
    .paging .paging-next.disabled:after {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .paging .paging-next.disabled:after {
    background-image: url(../images/icon-sprites-vector.svg);
}

.paging-articles {
    padding: 20px 0 60px;
    /*
          .paging-prev, .paging-next {
              &:after, &:before {
                  top: 18px;
              }
          }
  */
    /*@media ( max-width: $mobile ) {
            & {
                padding: 20px 0;
            }

            ul {
                li {
                    display: block;
                    padding: 0;
                }

                li ~ li {
                    margin-top: 10px;
                }
            }
        }*/
}

@media (max-width: 667px) {
    .paging-articles {
        text-align: center;
    }
}

.paging-articles a {
    text-transform: uppercase;
}

.paging-articles .paging-prev {
    padding-left: 25px;
}

.paging-articles .paging-next {
    padding-right: 25px;
}

.paging-articles ul li {
    padding: 0;
}

    .paging-articles ul li:first-child {
        padding: 0 10px 0 0;
    }

.paging-holder {
    text-align: center;
}

@media (min-width: 668px) {
    .image-skewer {
        overflow: hidden;
        -moz-transform: skewX(8.5deg);
        -ms-transform: skewX(8.5deg);
        -webkit-transform: skewX(8.5deg);
        transform: skewX(8.5deg);
        -moz-transform-origin: 0 100%;
        -ms-transform-origin: 0 100%;
        -webkit-transform-origin: 0 100%;
        transform-origin: 0 100%;
        text-align: right;
    }

        .image-skewer img {
            display: inline-block;
            -moz-transform: skewX(-8.5deg);
            -ms-transform: skewX(-8.5deg);
            -webkit-transform: skewX(-8.5deg);
            transform: skewX(-8.5deg);
            -moz-transition: -moz-transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
            -o-transition: -o-transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
            -webkit-transition: -webkit-transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
            transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
            -moz-transform-origin: 0 100%;
            -ms-transform-origin: 0 100%;
            -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
        }
}

@media (max-width: 667px) {
    .image-skewer.skew-on-mobile {
        overflow: hidden;
        -moz-transform: skewX(8.5deg);
        -ms-transform: skewX(8.5deg);
        -webkit-transform: skewX(8.5deg);
        transform: skewX(8.5deg);
        -moz-transform-origin: 0 100%;
        -ms-transform-origin: 0 100%;
        -webkit-transform-origin: 0 100%;
        transform-origin: 0 100%;
        text-align: right;
    }

        .image-skewer.skew-on-mobile img {
            display: inline-block;
            -moz-transform: skewX(-8.5deg);
            -ms-transform: skewX(-8.5deg);
            -webkit-transform: skewX(-8.5deg);
            transform: skewX(-8.5deg);
            -moz-transition: -moz-transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
            -o-transition: -o-transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
            -webkit-transition: -webkit-transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
            transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
            -moz-transform-origin: 0 100%;
            -ms-transform-origin: 0 100%;
            -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
        }
}


/* ----- Homepage Challenges ----- */

#toggle-overview {
    position: absolute;
    background-color: transparent;
    color: #363636;
    font-size: 14px;
    font-weight: 500;
    z-index: 1;
}

@media (min-width: 668px) {
    #toggle-overview {
        top: 30px;
        right: 20px;
    }
}

@media (max-width: 667px) {
    #toggle-overview {
        top: -20px;
        right: 0;
        padding: 25px 20px 10px 20px;
    }
}

#toggle-overview:hover {
    color: #ce1141;
}

.optimised-solutions-intro,
.optimised-solutions-content {
    opacity: 0;
    transition: opacity 1000ms ease, visibility 0s linear 1000ms;
    visibility: hidden;
}

    .optimised-solutions-intro.active,
    .optimised-solutions-content.active {
        opacity: 1;
        visibility: visible;
        transition-delay: 0s;
    }

.optimised-solutions-intro {
    position: absolute;
    top: 50%;
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    text-align: center;
    width: 100%;
    z-index: 1;
}

    .optimised-solutions-intro h2 {
        font-size: 34px;
        color: #373a36;
        text-transform: none !important;
    }

    .optimised-solutions-intro h1 {
        color: #ce1141;
        text-transform: uppercase;
        font-size: 132px;
        line-height: 107px;
        opacity: 0;
        transition: opacity 1000ms ease 500ms;
    }

    .optimised-solutions-intro.active h1 {
        opacity: 1;
    }

@media (max-width: 667px) {
    .optimised-solutions-intro h2 {
        font-size: 24px;
    }

    .optimised-solutions-intro h1 {
        font-size: 70px;
        line-height: 56px;
    }
}

.optimised-solutions-overview {
    left: 0;
    right: 0;
    background-image: linear-gradient(#eae9e9, #e0dfdf 333px, #dbd9d9 371px, #dbdbdb 385px, #dadada 391px, #e5e3e3 407px, #eaeaea 420px, #ececec 433px, #ececec 433px, #e5e4e4 493px, #ebebeb 560px, #f3f3f3 670px, #ebebeb 1120px, #fff);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eae9e9', endColorstr='#ffffff', GradientType=0);
    background-attachment: fixed;
    font-size: 0;
    text-align: center;
    z-index: 2;
    opacity: 0;
    visibility: hidden;
    -moz-transition: opacity 0.3s ease, visibility 0.2s ease;
    -o-transition: opacity 0.3s ease, visibility 0.2s ease;
    -webkit-transition: opacity 0.3s ease, visibility 0.2s ease;
    transition: opacity 0.3s ease, visibility 0.2s ease;
}

@media screen and (min-width: 0\0) {
    .optimised-solutions-overview {
        display: none;
    }
}

@media (min-width: 668px) {
    .optimised-solutions-overview {
        position: absolute;
        top: 0;
        bottom: 0;
        padding: 150px 0 50px 0;
    }
}

@media (max-width: 667px) {
    .optimised-solutions-overview {
        position: fixed;
        top: 99px;
        height: calc(100vh - 100px);
        padding: 20px;
        overflow-y: auto;
    }
}

@media (min-width: 668px) {
    .optimised-solutions-overview h2 {
        display: none;
        margin-bottom: 90px;
    }
}

@media (max-width: 667px) {
    .optimised-solutions-overview h2 {
        margin-bottom: 40px;
        margin-right: 50px;
        font-size: 30px;
        line-height: 26px;
        text-align: left;
    }
}

.optimised-solutions-overview .close {
    width: 50px;
    height: 50px;
    background: transparent url(../images/icon-close.png) center center no-repeat;
    background-size: 14px;
    text-indent: -119988px;
    overflow: hidden;
    text-align: left;
    text-transform: capitalize;
}

@media (min-width: 668px) {
    .optimised-solutions-overview .close {
        position: absolute;
        right: 20px;
        top: -136px;
    }
}

@media (max-width: 667px) {
    .optimised-solutions-overview .close {
        position: fixed;
        right: 10px;
        top: 105px;
        width: 80px;
    }
}

@media (min-width: 668px) {
    .optimised-solutions-overview .solutions-wrapper {
        display: table;
        width: 100%;
    }

        .optimised-solutions-overview .solutions-wrapper > * {
            display: table-cell;
            vertical-align: top;
            width: 10%;
        }

        .optimised-solutions-overview .solutions-wrapper:after {
            display: none;
        }
}

.optimised-solutions-overview .solution {
    margin: 0 2%;
    cursor: pointer;
    text-align: left;
}

@media (min-width: 668px) {
    .optimised-solutions-overview .solution .solution-inner {
        max-width: 140px;
        margin: auto;
    }
}

@media (min-width: 668px) and (max-width: 1024px) {
    .optimised-solutions-overview .solution {
        padding: 0 20px;
    }
}

@media (max-width: 667px) {
    .optimised-solutions-overview .solution {
        display: block;
        margin-bottom: 25px;
        margin-left: auto;
        margin-right: auto;
        max-width: 400px;
    }
}

.optimised-solutions-overview .solution .image-wrapper {
    position: relative;
    margin: 0 auto 20px;
    text-align: right;
}

    .optimised-solutions-overview .solution .image-wrapper .image-skewer {
        overflow: hidden;
        padding-left: 8%;
    }

        .optimised-solutions-overview .solution .image-wrapper .image-skewer:after {
            position: absolute;
            top: 0;
            right: 0;
            height: 100%;
            border-right: 1px solid #363636;
            content: "";
        }

        .optimised-solutions-overview .solution .image-wrapper .image-skewer img {
            margin-top: 15px;
            -moz-transform: skewX(-8.5deg) translateX(20px);
            -ms-transform: skewX(-8.5deg) translateX(20px);
            -webkit-transform: skewX(-8.5deg) translateX(20px);
            transform: skewX(-8.5deg) translateX(20px);
            -moz-transform-origin: 0 50%;
            -ms-transform-origin: 0 50%;
            -webkit-transform-origin: 0 50%;
            transform-origin: 0 50%;
        }

@media (max-width: 667px) {
    .optimised-solutions-overview .solution .image-wrapper {
        display: inline-block;
        width: 35.71429%;
        padding-right: 15px;
        vertical-align: top;
    }
}

.optimised-solutions-overview .solution .text-wrapper {
    line-height: 1;
}

@media (min-width: 668px) {
    .optimised-solutions-overview .solution .text-wrapper {
        max-width: 120px;
        margin: 0 auto;
    }
}

@media (max-width: 667px) {
    .optimised-solutions-overview .solution .text-wrapper {
        display: inline-block;
        width: 64.28571%;
    }
}

.optimised-solutions-overview .solution .text-wrapper .solution-description {
    margin-bottom: 10px;
    font-family: "Nord-Con", "tv_nord", Arial, Helvetica, sans-serif;
    font-size: 20px;
    font-weight: 300;
    text-transform: uppercase;
}

    .optimised-solutions-overview .solution .text-wrapper .solution-description p {
        line-height: 1;
    }

@media (max-width: 667px) {
    .optimised-solutions-overview .solution .text-wrapper .solution-description {
        font-size: 30px;
    }
}

@media (max-width: 420px) {
    .optimised-solutions-overview .solution .text-wrapper .solution-description {
        font-size: 20px;
    }
}

.optimised-solutions-overview .solution .text-wrapper b {
    font-weight: bold;
}

.optimised-solutions-overview .solution:hover {
    color: #ce1141;
    text-decoration: none;
}

    .optimised-solutions-overview .solution:hover .action {
        text-decoration: underline;
    }

        .optimised-solutions-overview .solution:hover .action:after {
            background-image: url(../images/icon-arrow-small-red.png);
        }

    .optimised-solutions-overview .solution:hover .image-wrapper .image-skewer img {
        -moz-transform: skewX(-8.5deg) translateX(7px);
        -ms-transform: skewX(-8.5deg) translateX(7px);
        -webkit-transform: skewX(-8.5deg) translateX(7px);
        transform: skewX(-8.5deg) translateX(7px);
    }

@media (max-width: 667px) {
    .root .hero-wrapper + .main-content {
        padding-top: 0;
    }

        .root .hero-wrapper + .main-content #home-optimised-hero {
            padding-top: 20px;
        }

            .root .hero-wrapper + .main-content #home-optimised-hero .optimised-solutions-overview {
                z-index: 14;
            }
}

.action {
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    -moz-transition: opacity 0.2s ease, visibility 0.2s ease;
    -o-transition: opacity 0.2s ease, visibility 0.2s ease;
    -webkit-transition: opacity 0.2s ease, visibility 0.2s ease;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    white-space: nowrap;
}

    .action:hover {
        color: #ce1141;
    }

        .action:hover:after {
            background-image: url(../images/icon-arrow-small-red.png);
        }

    .action:after {
        display: inline-block;
        width: 6px;
        height: 10px;
        margin-left: 6px;
        background: transparent url(../images/icon-arrow-small-black.png) 0 0 no-repeat;
        content: "";
        -moz-transition: opacity 0.2s ease;
        -o-transition: opacity 0.2s ease;
        -webkit-transition: opacity 0.2s ease;
        transition: opacity 0.2s ease;
    }

    .action.trigger:after {
        -moz-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
    }

    .action.action-contact {
        position: relative;
        width: 100%;
        padding-bottom: 5px;
        overflow: hidden;
        text-align: left;
    }

        .action.action-contact:before {
            position: absolute;
            left: 0;
            bottom: 0;
            width: 100%;
            border-bottom: 1px solid #ce1141;
            content: "";
            opacity: 0;
            -moz-transition: opacity 0.2s ease, -moz-transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
            -o-transition: opacity 0.2s ease, -o-transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
            -webkit-transition: opacity 0.2s ease, -webkit-transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
            transition: opacity 0.2s ease, transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
            -moz-transform: translateX(-100%);
            -ms-transform: translateX(-100%);
            -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
        }

        .action.action-contact.active {
            color: #ce1141;
        }

            .action.action-contact.active:before {
                opacity: 1;
                -moz-transform: translateX(0);
                -ms-transform: translateX(0);
                -webkit-transform: translateX(0);
                transform: translateX(0);
            }

            .action.action-contact.active:after {
                position: absolute;
                top: 0;
                right: 0;
                width: 14px;
                height: 14px;
                background: transparent url(../images/icon-close.png) center center no-repeat;
                background-size: 100%;
            }

#home-optimised-hero {
    position: relative;
    padding-bottom: 50px;
    overflow: hidden;
    /* Slick Slider custom styes */
}

@media (min-width: 668px) {
    .main-content #home-optimised-hero:first-child {
        margin-top: -50px;
    }
}

@media (max-width: 667px) {
    #home-optimised-hero.overview-active {
        overflow: visible;
    }
}

#home-optimised-hero.overview-active .optimised-solutions-overview {
    opacity: 1;
    visibility: visible;
}

@media screen and (min-width: 0\0) {
    #home-optimised-hero.overview-active .optimised-solutions-overview {
        display: block;
    }
}

#home-optimised-hero h2 {
    text-transform: uppercase;
}

    #home-optimised-hero h2 .category {
        display: block;
    }

#home-optimised-hero .dropdown {
    margin-bottom: 15px;
}

    #home-optimised-hero .dropdown .dropdown-header {
        background-color: transparent;
    }

    #home-optimised-hero .dropdown .dropdown-options {
        max-height: 310px;
        overflow-y: auto;
    }

#home-optimised-hero .recaptcha-wrapper {
    margin-left: 0;
}

#home-optimised-hero .trigger {
    position: relative;
    display: block;
    background-color: transparent;
    border: none;
    outline: none;
    z-index: 3;
}

@media (min-width: 668px) {
    #home-optimised-hero .carousel {
        margin-top: 145px;
    }
}

@media (max-width: 667px) {
    #home-optimised-hero .carousel {
        margin-top: 120px;
    }
}

#home-optimised-hero .carousel .slick-dots {
    top: -110px;
}

#home-optimised-hero .carousel:not(.slick-initialized) {
    height: 360px;
    overflow: hidden;
}

#home-optimised-hero .carousel .slick-track > li {
    position: relative;
    -moz-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
}

@media (min-width: 668px) {
    #home-optimised-hero .carousel .slick-track > li .slanted-line {
        position: relative;
    }

    _:-ms-fullscreen,
    :root #home-optimised-hero .carousel .slick-track > li .slanted-line {
        overflow-y: hidden;
    }

    #home-optimised-hero .carousel .slick-track > li .slanted-line:after {
        position: absolute;
        top: 0;
        left: calc(50% - 132px);
        height: 820px;
        border-right: 1px solid #363636;
        content: "";
        -moz-transform: skewX(8.5deg);
        -ms-transform: skewX(8.5deg);
        -webkit-transform: skewX(8.5deg);
        transform: skewX(8.5deg);
        transform-origin: 0 0;
    }
}

@media (min-width: 668px) and (max-width: 1024px) {
    #home-optimised-hero .carousel .slick-track > li {
        padding-left: 70px;
        padding-right: 70px;
    }
}

#home-optimised-hero .carousel .slick-track > li img {
    -moz-transition: -moz-transform 1s ease;
    -o-transition: -o-transform 1s ease;
    -webkit-transition: -webkit-transform 1s ease;
    transition: transform 1s ease;
}

#home-optimised-hero .carousel .slick-track > li .step-buttons {
    position: absolute;
    bottom: 0;
    left: 43%;
}

#home-optimised-hero .carousel .slick-track > li:not(.slick-current) {
    cursor: pointer;
    opacity: 0.3;
}

    #home-optimised-hero .carousel .slick-track > li:not(.slick-current):hover {
        opacity: 0.6;
    }

    #home-optimised-hero .carousel .slick-track > li:not(.slick-current) .slide-content .step1 .image-wrapper .image-skewer img {
        -moz-transform: skewX(-8.5deg) scale(0.9) translateX(80px);
        -ms-transform: skewX(-8.5deg) scale(0.9) translateX(80px);
        -webkit-transform: skewX(-8.5deg) scale(0.9) translateX(80px);
        transform: skewX(-8.5deg) scale(0.9) translateX(80px);
    }

#home-optimised-hero .carousel .slick-track > li.slick-current .slide-content .step1 .image-wrapper .image-skewer img {
    -moz-transform: skewX(-8.5deg) scale(1) translateX(0px);
    -ms-transform: skewX(-8.5deg) scale(1) translateX(0px);
    -webkit-transform: skewX(-8.5deg) scale(1) translateX(0px);
    transform: skewX(-8.5deg) scale(1) translateX(0px);
}

#home-optimised-hero .carousel .slick-track > li.previous,
#home-optimised-hero .carousel .slick-track > li.next {
    z-index: 5;
}

    #home-optimised-hero .carousel .slick-track > li.previous:hover .slide-content {
        -moz-transform: translateX(9%);
        -ms-transform: translateX(9%);
        -webkit-transform: translateX(9%);
        transform: translateX(9%);
    }

    #home-optimised-hero .carousel .slick-track > li.next .text-wrapper {
        left: 0;
    }

    #home-optimised-hero .carousel .slick-track > li.next:hover .slide-content {
        -moz-transform: translateX(-9%);
        -ms-transform: translateX(-9%);
        -webkit-transform: translateX(-9%);
        transform: translateX(-9%);
    }

#home-optimised-hero .carousel .slick-track > li .slide-content {
    max-width: 850px;
    margin: 0 auto;
    -moz-transition: -moz-transform 0.3s ease;
    -o-transition: -o-transform 0.3s ease;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
}

@media (max-width: 667px) {
    #home-optimised-hero .carousel .slick-track > li .slide-content {
        padding: 0 20px;
    }
}

@media (min-width: 668px) {
    #home-optimised-hero .carousel .slick-track > li .slide-content .image-wrapper {
        float: left;
        width: 50%;
        padding: 30px 10px 30px 0;
    }

        #home-optimised-hero .carousel .slick-track > li .slide-content .image-wrapper .image-skewer {
            position: relative;
            height: 315px;
        }

            #home-optimised-hero .carousel .slick-track > li .slide-content .image-wrapper .image-skewer img {
                position: relative;
                max-height: 100%;
            }
}

@media (max-width: 667px) {
    #home-optimised-hero .carousel .slick-track > li .slide-content .image-wrapper {
        width: 70%;
        margin: 0 auto 15px;
    }
}

@media (min-width: 668px) {
    #home-optimised-hero .carousel .slick-track > li .slide-content .text-wrapper {
        float: right;
        width: 50%;
        padding-left: 10px;
        overflow: hidden;
    }
}

@media (max-width: 667px) {
    #home-optimised-hero .carousel .slick-track > li .slide-content .text-wrapper h2 {
        margin-bottom: 15px;
        font-size: 32px;
    }

        #home-optimised-hero .carousel .slick-track > li .slide-content .text-wrapper h2 .category {
            font-size: 18px;
        }

        #home-optimised-hero .carousel .slick-track > li .slide-content .text-wrapper h2 strong {
            display: block;
        }

        #home-optimised-hero .carousel .slick-track > li .slide-content .text-wrapper h2 br {
            display: none;
        }
}

#home-optimised-hero .carousel .slick-track > li .slide-content .step-inner {
    *zoom: 1;
}

    #home-optimised-hero .carousel .slick-track > li .slide-content .step-inner:after {
        content: "";
        display: table;
        clear: both;
    }

@media (max-width: 667px) {
    #home-optimised-hero .carousel .slick-track > li .slide-content .step-inner {
        max-width: 380px;
        margin-left: auto;
        margin-right: auto;
    }
}

#home-optimised-hero .carousel .slick-track > li .slide-content .step1 .view-solution.active {
    opacity: 0;
    visibility: hidden;
}

#home-optimised-hero .carousel .slick-track > li .slide-content .step1 .solution-main-title {
    font-family: "Nord-Con", "tv_nord", Arial, Helvetica, sans-serif;
    line-height: 0.85;
    overflow-wrap: break-word;
    word-wrap: break-word;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    -moz-hyphens: auto;
    hyphens: auto;
}

@media (min-width: 1025px) {
    #home-optimised-hero .carousel .slick-track > li .slide-content .step1 .solution-main-title {
        font-size: 70px;
    }
}

@media (min-width: 668px) and (max-width: 1024px) {
    #home-optimised-hero .carousel .slick-track > li .slide-content .step1 .solution-main-title {
        font-size: 6vw;
    }
}

@media (max-width: 667px) {
    #home-optimised-hero .carousel .slick-track > li .slide-content .step1 .solution-main-title {
        font-size: 30px;
    }
}

#home-optimised-hero .carousel .slick-track > li .slide-content .step1 .solution-main-title b {
    display: block;
}

#home-optimised-hero .carousel .slick-track > li .slide-content .step1 .solution-main-title p {
    line-height: inherit;
}

@media (min-width: 668px) {
    #home-optimised-hero .carousel .slick-track > li .slide-content .step1 .image-wrapper {
        padding: 30px 10px 30px 0;
    }

        #home-optimised-hero .carousel .slick-track > li .slide-content .step1 .image-wrapper .image-skewer {
            position: relative;
            right: 70px;
        }

            #home-optimised-hero .carousel .slick-track > li .slide-content .step1 .image-wrapper .image-skewer img {
                position: relative;
                left: 70px;
            }

    #home-optimised-hero .carousel .slick-track > li .slide-content .step1 .text-wrapper {
        height: 360px;
        padding-top: 60px;
    }
}

@media (max-width: 667px) {
    #home-optimised-hero .carousel .slick-track > li .slide-content .step1 .image-wrapper .image-skewer {
        padding: 20px 0;
    }

        #home-optimised-hero .carousel .slick-track > li .slide-content .step1 .image-wrapper .image-skewer:after {
            position: absolute;
            top: 0;
            right: 0;
            height: 100%;
            border-right: 1px solid #363636;
            content: "";
        }
}

@media (min-width: 668px) {
    #home-optimised-hero .carousel .slick-track > li .slide-content .step2 .text-wrapper .editable-text-wrapper {
        height: 330px;
    }
}

#home-optimised-hero .carousel .slick-track > li .slide-content .step2 .text-wrapper .category {
    font-family: "Nord-Con", "tv_nord", Arial, Helvetica, sans-serif;
    font-weight: 300;
    text-transform: uppercase;
}

@media (min-width: 668px) {
    #home-optimised-hero .carousel .slick-track > li .slide-content .step2 .text-wrapper .category {
        font-size: 30px;
    }
}

@media (min-width: 668px) and (max-width: 1024px) {
    #home-optimised-hero .carousel .slick-track > li .slide-content .step2 .text-wrapper .category {
        font-size: 24px;
    }
}

@media (max-width: 667px) {
    #home-optimised-hero .carousel .slick-track > li .slide-content .step2 .text-wrapper .category {
        margin-bottom: 10px;
        font-size: 18px;
    }
}

#home-optimised-hero .carousel .slick-track > li .slide-content .step2 .text-wrapper .title {
    margin-bottom: 10px;
    color: #ce1141;
    font-family: "Nord-Con", "tv_nord", Arial, Helvetica, sans-serif;
    font-weight: bold;
    line-height: 0.9;
}

@media (min-width: 668px) {
    #home-optimised-hero .carousel .slick-track > li .slide-content .step2 .text-wrapper .title {
        font-size: 46px;
    }
}

@media (min-width: 668px) and (max-width: 1024px) {
    #home-optimised-hero .carousel .slick-track > li .slide-content .step2 .text-wrapper .title {
        font-size: 4.5vw;
    }
}

@media (max-width: 667px) {
    #home-optimised-hero .carousel .slick-track > li .slide-content .step2 .text-wrapper .title {
        font-size: 22px;
    }
}

#home-optimised-hero .carousel .slick-track > li .slide-content .step2 .text-wrapper a.action {
    display: inline-block;
    margin-bottom: 10px;
}

@media (min-width: 668px) {
    #home-optimised-hero .carousel .slick-track > li .slide-content .step2 .image-wrapper {
        padding: 30px 10px 30px 0;
    }

        #home-optimised-hero .carousel .slick-track > li .slide-content .step2 .image-wrapper .image-skewer {
            position: relative;
            right: 4px;
        }

            #home-optimised-hero .carousel .slick-track > li .slide-content .step2 .image-wrapper .image-skewer img {
                position: relative;
                left: 4px;
            }
}

@media (min-width: 668px) {
    #home-optimised-hero .carousel .slick-track > li .slide-content .step2 .step-inner {
        padding-top: 70px;
    }
}

.slick-loading #home-optimised-hero .slick-list {
    background: transparent url("../images/ajax-loader.gif") center center no-repeat;
}

#home-optimised-hero .slick-arrow {
    position: absolute;
    top: 0;
    width: 50px;
    height: 50px;
    background-color: transparent;
    border: none;
    color: transparent;
    cursor: pointer;
    font-size: 0px;
    text-indent: -119988px;
    overflow: hidden;
    text-align: left;
    text-transform: capitalize;
    outline: none;
}

    #home-optimised-hero .slick-arrow:before {
        position: absolute;
        left: 50%;
        top: 50%;
        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: -48em -16em;
        width: 0.375em;
        height: 0.5em;
        font-size: 35px;
        -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }

@media screen and (min-width: 0\0) {
    #home-optimised-hero .slick-arrow:before {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root #home-optimised-hero .slick-arrow:before {
    background-image: url(../images/icon-sprites-vector.svg);
}

@media (max-width: 667px) {
    #home-optimised-hero .slick-arrow:before {
        font-size: 35px;
    }
}

#home-optimised-hero .slick-arrow:hover:before {
    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: -50em -16em;
    width: 0.375em;
    height: 0.5em;
}

@media screen and (min-width: 0\0) {
    #home-optimised-hero .slick-arrow:hover:before {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root #home-optimised-hero .slick-arrow:hover:before {
    background-image: url(../images/icon-sprites-vector.svg);
}

#home-optimised-hero .slick-arrow.slick-disabled {
    opacity: 0.3;
    cursor: default;
    pointer-events: none;
}

#home-optimised-hero .slick-prev {
    left: 0px;
}

    #home-optimised-hero .slick-prev:before {
        -moz-transform: translate(-50%, -50%) scaleX(-1);
        -ms-transform: translate(-50%, -50%) scaleX(-1);
        -webkit-transform: translate(-50%, -50%) scaleX(-1);
        transform: translate(-50%, -50%) scaleX(-1);
        right: 0;
    }

#home-optimised-hero .slick-next {
    right: 0px;
}

#home-optimised-hero .slick-arrow {
    z-index: 1;
}

@media (min-width: 668px) {
    #home-optimised-hero .slick-arrow {
        top: 150px;
    }
}

@media (max-width: 667px) {
    #home-optimised-hero .slick-arrow {
        top: 23vw;
    }
}

@media (min-width: 1025px) {
    #home-optimised-hero .slick-prev {
        left: 30px;
    }
}

@media (min-width: 668px) and (max-width: 1024px) {
    #home-optimised-hero .slick-prev {
        left: 10px;
    }
}

@media (min-width: 1025px) {
    #home-optimised-hero .slick-next {
        right: 30px;
    }
}

@media (min-width: 668px) and (max-width: 1024px) {
    #home-optimised-hero .slick-next {
        right: 10px;
    }
}

#home-optimised-hero .slick-dots {
    position: absolute;
    left: 0;
    right: 0;
    top: 25px;
    font-size: 0;
    text-align: center;
}

@media (min-width: 668px) {
    #home-optimised-hero .slick-dots {
        position: absolute;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        top: 25px;
        font-size: 0;
        text-align: right;
        max-width: 1180px;
        padding-right: 100px;
        width: 100%;
    }
}

#home-optimised-hero .slick-dots li {
    display: inline-block;
    margin: 0 4px;
    vertical-align: top;
}

    #home-optimised-hero .slick-dots li button {
        display: block;
        height: 8px;
        width: 8px;
        background-color: #bfbfbf;
        cursor: pointer;
        text-indent: -119988px;
        overflow: hidden;
        text-align: left;
        text-transform: capitalize;
        outline: none;
    }

        #home-optimised-hero .slick-dots li button:hover {
            border-color: #ce1141;
        }

    #home-optimised-hero .slick-dots li.slick-active button {
        background: #ce1141;
        border: none;
    }

.li {
    position: relative;
}

@media (min-width: 668px) and (max-width: 1024px) {
    .li {
        padding-left: 70px;
        padding-right: 70px;
    }
}

.li .slide-content {
    max-width: 850px;
    margin: 0 auto;
    -moz-transition: -moz-transform 0.3s ease;
    -o-transition: -o-transform 0.3s ease;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
}

@media (max-width: 667px) {
    .li .slide-content {
        padding: 0 20px;
    }
}

.li .slide-content .step-inner {
    *zoom: 1;
    padding-top: 10px;
}

    .li .slide-content .step-inner:after {
        content: "";
        display: table;
        clear: both;
    }

@media (max-width: 667px) {
    .li .slide-content .step-inner {
        max-width: 380px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (min-width: 668px) {
    .li .slide-content .step-inner {
        padding-bottom: 75px;
    }
}

.li .slide-content .step-inner .contact-wrapper {
    position: relative;
    padding-top: 20px;
}

@media (min-width: 668px) {
    .li .slide-content .step-inner .contact-wrapper {
        width: 50%;
        margin-left: 50%;
        padding-left: 10px;
    }
}

@media (max-width: 667px) {
    .li .slide-content .step-inner .contact-wrapper {
        padding-left: 20px;
        padding-right: 20px;
    }
}

.li .slide-content .step-inner .contact-wrapper .form-wrapper label {
    padding: 0 0 5px 10px;
    font-size: 14px;
}

.li .slide-content .step-inner .contact-wrapper .form-wrapper input[type="text"],
.li .slide-content .step-inner .contact-wrapper .form-wrapper select {
    background-color: transparent;
    font-size: 14px;
}

.li .slide-content .step-inner .contact-wrapper .form-wrapper .EditingFormErrorLabel {
    margin-left: 10px;
}

.li .slide-content .step-inner .contact-wrapper .biz-form label,
.li .slide-content .step-inner .contact-wrapper .biz-form .control-label {
    top: 0;
    display: block;
    width: auto;
    margin-right: 0;
}

.li .slide-content .step-inner .contact-wrapper .biz-form .editing-form-control-nested-control {
    display: block;
    width: auto;
}

.li .slide-content .step-inner .contact-wrapper .biz-form .CheckBoxField label {
    padding-top: 4px !important;
    padding-left: 30px !important;
}

.li .slide-content .step-inner .contact-wrapper .biz-form textarea {
    background-color: transparent;
    min-height: 120px;
}

@media (min-width: 668px) {
    .li .slide-content .step-inner .contact-wrapper .biz-form input[type=submit] {
        margin-left: 0;
    }
}

.optimised-solutions-heading {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding-left: 15px;
    padding-right: 15px;
    text-align: center;
}

@media (min-width: 668px) {
    .optimised-solutions-heading {
        margin-top: 70px;
        z-index: 2;
    }
}

@media (min-width: 668px) and (max-width: 760px) {
    .optimised-solutions-heading {
        font-size: 36px;
    }
}

@media (max-width: 667px) {
    .optimised-solutions-heading {
        margin-top: 60px;
        font-size: 30px;
        line-height: 26px;
    }
}


/* ----- Home page / real results ----- */

@media (min-width: 1025px) {
    .real-results-title {
        display: inline-block;
        vertical-align: top;
        width: 25%;
        /*padding-top: 16px;*/
    }
}

@media (min-width: 668px) and (max-width: 1024px) {
    .real-results-title {
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
        margin-bottom: 20px;
    }
}

@media (max-width: 667px) {
    .real-results-title {
        width: 100%;
        margin-bottom: 10px;
    }
}

.search-filter-wrapper .rr-search-input {
    padding-right: 25px;
    background: transparent;
    border: 1px solid #b2b2b2;
}

    .search-filter-wrapper .rr-search-input::-webkit-input-placeholder {
        /* Chrome/Opera/Safari */
        color: #363636;
    }

    .search-filter-wrapper .rr-search-input::-moz-placeholder {
        /* Firefox 19+ */
        color: #363636;
    }

    .search-filter-wrapper .rr-search-input:-ms-input-placeholder {
        /* IE 10+ */
        color: #363636;
    }

    .search-filter-wrapper .rr-search-input:-moz-placeholder {
        /* Firefox 18- */
        color: #363636;
    }

.search-filter-wrapper .real-submit input {
    border: 1px solid #b2b2b2;
    color: #363636;
    background: transparent;
    padding: 0;
    width: 100%;
}

    .search-filter-wrapper .real-submit input:hover {
        color: #ce1141;
        border-color: #ce1141;
    }

.search-filter-wrapper .dropdown-header {
    border-bottom: 1px solid #b2b2b2;
    cursor: pointer;
    white-space: normal;
}

@media (min-width: 668px) {
    .search-filter-wrapper #searchButtonPH {
        display: none;
    }
}

@media (max-width: 667px) {
    .search-filter-wrapper #searchButtonPH {
        display: block;
        padding: 8px 10px;
        text-align: center;
        text-transform: uppercase;
        font-weight: 700;
        font-family: "Nord-Con", "tv_nord", Arial, Helvetica, sans-serif;
        font-size: 20px;
        color: #363636;
    }
}

@media (min-width: 668px) {
    .search-filter-wrapper .filters-wrapper {
        display: inline-block;
        width: 83.33333%;
        margin-top: 10px;
        padding: 10px 20px 10px 0;
    }
}

@media (min-width: 668px) {
    .search-filter-wrapper .filters .rr-category-search {
        display: inline-block;
        width: 44.44444%;
    }

    .search-filter-wrapper .filters .rr-search-region,
    .search-filter-wrapper .filters .rr-search-region + .select-dropdown {
        width: 27.77778%;
    }

    .search-filter-wrapper .filters .rr-search-date,
    .search-filter-wrapper .filters .rr-search-date + .select-dropdown {
        width: 25% !important;
    }

    .search-filter-wrapper .filters .dropdown ~ .dropdown {
        padding-left: 20px;
    }

        .search-filter-wrapper .filters .dropdown ~ .dropdown .dropdown-options {
            left: 20px;
            right: 0;
            width: auto;
        }
}

@media (max-width: 667px) {
    .search-filter-wrapper .filters {
        padding-left: 10px;
        padding-right: 10px;
    }
}

.search-filter-wrapper .filters select {
    background: transparent;
    border: none;
    border-bottom: 1px solid #b2b2b2;
}

.search-filter-wrapper .filters .dropdown {
    position: relative;
    height: auto;
}

    .search-filter-wrapper .filters .dropdown .filter {
        width: 100%;
    }

    .search-filter-wrapper .filters .dropdown .dropdown-options {
        position: absolute;
        width: 100%;
    }

.search-filter-wrapper .filters .mobile-label {
    display: none;
}

.search-filter-wrapper .clear-wrapper {
    display: inline-block;
    width: 16.66667%;
    vertical-align: top;
    margin-top: 10px;
    padding-top: 16px;
    text-align: center;
}

.search-filter-wrapper .clear-filters {
    background-color: transparent;
    font-weight: 500;
}

    .search-filter-wrapper .clear-filters .ico-close-small,
    .search-filter-wrapper .clear-filters .form-wrapper .clear-filters:after,
    .form-wrapper .search-filter-wrapper .clear-filters .clear-filters:after {
        margin-top: -2px;
        margin-left: 3px;
    }

.search-filter-wrapper .search .input-wrapper {
    width: 83.33333%;
    display: inline-block;
    padding-right: 20px;
    position: relative;
    float: left;
}

    .search-filter-wrapper .search .input-wrapper .single-clear {
        right: 20px;
    }

@media (max-width: 667px) {
    .search-filter-wrapper .search .input-wrapper .single-clear {
        display: none !important;
    }
}

.search-filter-wrapper .search .input-wrapper .rr-search-input {
    width: 100%;
}

.search-filter-wrapper .search .input-wrapper .ui-autocomplete {
    position: absolute;
    right: 20px;
    background-color: white;
    width: auto !important;
    z-index: 1;
    -webkit-box-shadow: 0px 10px 43px -3px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0px 10px 43px -3px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 10px 43px -3px rgba(0, 0, 0, 0.25);
    padding-left: 10px;
    padding-right: 10px;
}

@media (max-width: 667px) {
    .search-filter-wrapper .search .input-wrapper .ui-autocomplete {
        padding-left: 0;
        padding-right: 0;
        right: 0;
    }
}

.search-filter-wrapper .search .input-wrapper .ui-autocomplete .ui-menu-item {
    padding: 15px 0;
    position: relative;
    padding-right: 100px;
    cursor: pointer;
    border-bottom: 1px solid #d1d1d1;
}

    .search-filter-wrapper .search .input-wrapper .ui-autocomplete .ui-menu-item:hover {
        color: #ce1141;
    }

    .search-filter-wrapper .search .input-wrapper .ui-autocomplete .ui-menu-item .count {
        position: absolute;
        font-weight: 500;
        right: 0;
        font-size: 16px;
        text-align: right;
        width: 80px;
        vertical-align: top;
        text-align: right;
    }

@media (max-width: 667px) {
    .search-filter-wrapper .search .input-wrapper .ui-autocomplete .ui-menu-item {
        font-size: 12px;
        line-height: 16px;
        padding: 15px 10px;
        padding-right: 100px;
    }

        .search-filter-wrapper .search .input-wrapper .ui-autocomplete .ui-menu-item .count {
            font-size: 12px;
            line-height: 22px;
            text-align: left;
            top: 12px;
            right: 10px;
        }

        .search-filter-wrapper .search .input-wrapper .ui-autocomplete .ui-menu-item .count-results {
            display: none;
        }
}

.search-filter-wrapper .search .input-wrapper .ui-autocomplete .ui-title-item {
    display: block;
    padding-top: 6px;
    padding-bottom: 6px;
    cursor: default;
    line-height: 24px;
}

    .search-filter-wrapper .search .input-wrapper .ui-autocomplete .ui-title-item:hover {
        color: inherit;
    }

    .search-filter-wrapper .search .input-wrapper .ui-autocomplete .ui-title-item,
    .search-filter-wrapper .search .input-wrapper .ui-autocomplete .ui-title-item .count {
        font-weight: 500;
        font-size: 16px;
    }

        .search-filter-wrapper .search .input-wrapper .ui-autocomplete .ui-title-item .count {
            top: 10px;
            line-height: 16px;
        }

@media (max-width: 667px) {
    .search-filter-wrapper .search .input-wrapper .ui-autocomplete .ui-title-item,
    .search-filter-wrapper .search .input-wrapper .ui-autocomplete .ui-title-item .count {
        font-size: 12px;
    }
}

.search-filter-wrapper .search .real-submit {
    width: 16.66667%;
    display: inline-block;
}

.search-filter-wrapper .accordion {
    margin-left: 0;
    margin-right: 0;
}

@media (min-width: 668px) {
    .search-filter-wrapper .accordion .accordion-head {
        display: none;
    }
}

@media (max-width: 667px) {
    .search-filter-wrapper .accordion .accordion-head {
        padding: 8px 60px 8px 8px;
        border-top: 1px solid #c3c3c3;
        border-bottom: 1px solid #c3c3c3;
        border-left: 1px solid #c3c3c3;
    }

        .search-filter-wrapper .accordion .accordion-head:before {
            width: 40px;
            height: 40px;
            border: 1px solid #c3c3c3;
        }

        .search-filter-wrapper .accordion .accordion-head:after {
            top: 12px;
            right: 12px;
        }
}

@media (max-width: 667px) {
    .search-filter-wrapper .accordion .accordion-expanded .accordion-head {
        border-top: 1px solid #ce1141;
        border-bottom: none;
        border-left: 1px solid #ce1141;
        color: #ce1141;
    }

        .search-filter-wrapper .accordion .accordion-expanded .accordion-head:before {
            border: 1px solid #ce1141;
        }

    .search-filter-wrapper .accordion .accordion-expanded .accordion-body {
        border-top: none;
        border-bottom: 1px solid #ce1141;
        border-left: 1px solid #ce1141;
        border-right: 1px solid #ce1141;
    }
}

@media (min-width: 668px) {
    .search-filter-wrapper .accordion .accordion-body {
        display: block !important;
    }
}

@media (max-width: 667px) {
    .search-filter-wrapper .accordion .accordion-body {
        display: none;
        margin-top: 0;
        padding: 20px 3px 3px 3px;
    }
}

@media (min-width: 1025px) {
    .search-filter-wrapper {
        display: inline-block;
        width: 75%;
    }
}

@media (min-width: 668px) and (max-width: 1024px) {
    .search-filter-wrapper {
        display: inline-block;
        vertical-align: bottom;
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }

        .search-filter-wrapper .filters .dropdown + * + .dropdown {
            padding-left: 20px;
        }
}

@media (max-width: 667px) {
    .search-filter-wrapper {
        display: inline-block;
        vertical-align: bottom;
        width: 100%;
    }

        .search-filter-wrapper .search {
            position: relative;
            min-height: 40px;
            margin-bottom: 10px;
        }

            .search-filter-wrapper .search .input-wrapper {
                width: 100%;
                display: inline-block;
                padding-right: 0;
            }

                .search-filter-wrapper .search .input-wrapper .rr-search-input {
                    width: 100%;
                }

            .search-filter-wrapper .search .real-submit {
                width: 40px;
                display: inline;
                position: absolute;
                top: 0;
                right: 0;
                border-left: 1px solid #c3c3c3;
            }

                .search-filter-wrapper .search .real-submit:before {
                    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: -16em 0em;
                    width: 1.5em;
                    height: 1.5em;
                    position: absolute;
                    content: "";
                    -moz-transition: -moz-transform 0.2s ease, opacity 0.2s ease;
                    -o-transition: -o-transform 0.2s ease, opacity 0.2s ease;
                    -webkit-transition: -webkit-transform 0.2s ease, opacity 0.2s ease;
                    transition: transform 0.2s ease, opacity 0.2s ease;
                    top: 0;
                    bottom: 0;
                    left: 0;
                    right: 0;
                    margin: auto;
                    font-size: 1em;
                }
}

@media screen and (max-width: 667px) and (min-width: 0\0) {
    .search-filter-wrapper .search .real-submit:before {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

@media (max-width: 667px) {
    _:-ms-fullscreen,
    :root .search-filter-wrapper .search .real-submit:before {
        background-image: url(../images/icon-sprites-vector.svg);
    }

    .search-filter-wrapper .search .real-submit:hover:before {
        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: -18em 0em;
        width: 1.5em;
        height: 1.5em;
        position: absolute;
        content: "";
        -moz-transition: -moz-transform 0.2s ease, opacity 0.2s ease;
        -o-transition: -o-transform 0.2s ease, opacity 0.2s ease;
        -webkit-transition: -webkit-transform 0.2s ease, opacity 0.2s ease;
        transition: transform 0.2s ease, opacity 0.2s ease;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
        font-size: 1em;
    }
}

@media screen and (max-width: 667px) and (min-width: 0\0) {
    .search-filter-wrapper .search .real-submit:hover:before {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

@media (max-width: 667px) {
    _:-ms-fullscreen,
    :root .search-filter-wrapper .search .real-submit:hover:before {
        background-image: url(../images/icon-sprites-vector.svg);
    }

    .search-filter-wrapper .search .real-submit input {
        text-indent: -119988px;
        overflow: hidden;
        text-align: left;
        text-transform: capitalize;
        width: 40px;
        background: transparent url(../images/icon-search.png) center center no-repeat;
        padding: 0;
        opacity: 0;
    }

    .search-filter-wrapper .filters {
        width: 100%;
    }

        .search-filter-wrapper .filters .dropdown,
        .search-filter-wrapper .filters .rr-search-region + .select-dropdown,
        .search-filter-wrapper .filters .rr-search-date + .select-dropdown {
            width: 100%;
            margin-bottom: 10px;
        }

            .search-filter-wrapper .filters .dropdown .filter.dropdown,
            .search-filter-wrapper .filters .rr-search-region + .select-dropdown .filter.dropdown,
            .search-filter-wrapper .filters .rr-search-date + .select-dropdown .filter.dropdown {
                width: 100%;
                margin-bottom: 0;
            }

            .search-filter-wrapper .filters .dropdown .dropdown-header,
            .search-filter-wrapper .filters .rr-search-region + .select-dropdown .dropdown-header,
            .search-filter-wrapper .filters .rr-search-date + .select-dropdown .dropdown-header {
                border: 1px solid #c3c3c3;
                padding-left: 10px;
            }

                .search-filter-wrapper .filters .dropdown .dropdown-header:after,
                .search-filter-wrapper .filters .rr-search-region + .select-dropdown .dropdown-header:after,
                .search-filter-wrapper .filters .rr-search-date + .select-dropdown .dropdown-header:after {
                    right: 10px;
                }

            .search-filter-wrapper .filters .dropdown + * + .dropdown {
                padding-left: 0;
            }

                .search-filter-wrapper .filters .dropdown + * + .dropdown .dropdown-options {
                    left: 0px;
                }

        .search-filter-wrapper .filters .mobile-label,
        .search-filter-wrapper .filters .dropdown-header {
            font-size: 14px;
            line-height: 18px;
            color: #373a36;
        }

        .search-filter-wrapper .filters .mobile-label {
            display: block;
            margin-bottom: 5px;
            margin-left: 11px;
            font-weight: 500;
        }

        .search-filter-wrapper .filters .dropdown-header {
            font-weight: 400;
        }

    .search-filter-wrapper .clear-wrapper {
        display: block;
        width: 100%;
        padding-top: 0;
    }
}

.button-clear {
    font-size: 14px;
    position: relative;
}

    .button-clear:after {
        background: transparent url(../images/icon-clear.png) center center no-repeat;
        /*background-image: linear-gradient(transparent, transparent), url(../images/svg-weatherford.svg#closefilter);*/
        content: "";
        position: absolute;
        width: 9px;
        height: 9px;
        right: 0;
        top: 3px;
    }

.real-results-header {
    position: relative;
    margin-bottom: 40px;
    padding-top: 40px;
    z-index: 2;
}

    .real-results-header .real-results-title {
        font-family: "Nord-Con", "tv_nord", Arial, Helvetica, sans-serif;
        font-size: 24px;
    }

        .real-results-header .real-results-title h2 {
            font-size: 30px;
            line-height: 26px;
            text-transform: uppercase;
            font-weight: bold;
        }

@media (max-width: 667px) {
    .real-results-header {
        margin-left: 20px;
        margin-right: 20px;
    }
}

.real-results {
    position: relative;
}

.globe-wrapper-outer {
    position: relative;
}

@media (max-width: 667px) {
    .globe-wrapper-outer {
        z-index: -1;
    }
}

.globe-wrapper-inner {
    margin: 0 auto;
}

@media (min-width: 1025px) {
    .globe-wrapper-inner {
        width: 40.67797%;
        min-height: 505px;
    }
}

@media (min-width: 668px) and (max-width: 1024px) {
    .globe-wrapper-inner {
        width: 32.20339%;
    }
}

@media (max-width: 667px) {
    .globe-wrapper-inner {
        width: 60%;
        margin-bottom: 20px;
    }
}

@media (min-width: 668px) {
    .globe-wrapper-inner:after {
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 225px;
        height: 25px;
        background: transparent url(../images/globe-shadow.png) center center no-repeat;
        content: "";
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        z-index: -1;
    }
}

#globe {
    position: relative;
    z-index: 1;
}

@media (max-width: 667px) {
    .rr-search-results {
        margin-bottom: 70px;
    }
}

@media (min-width: 668px) and (max-width: 1024px) {
    .rr-search-results {
        min-height: 40px;
    }
}

.point {
    position: absolute;
    width: 16px;
    height: 16px;
    background-color: white;
    border-radius: 50%;
    -moz-transition: opacity 0.2s ease, -moz-transform 0.5s ease;
    -o-transition: opacity 0.2s ease, -o-transform 0.5s ease;
    -webkit-transition: opacity 0.2s ease, -webkit-transform 0.5s ease;
    transition: opacity 0.2s ease, transform 0.5s ease;
    z-index: 2;
}

@media (max-width: 667px) {
    .results-page {
        position: relative;
    }

        .results-page .slick-arrow {
            position: absolute;
            top: 0;
            width: 50px;
            height: 50px;
            background-color: transparent;
            border: none;
            color: transparent;
            cursor: pointer;
            font-size: 0px;
            text-indent: -119988px;
            overflow: hidden;
            text-align: left;
            text-transform: capitalize;
            outline: none;
        }

            .results-page .slick-arrow:before {
                position: absolute;
                left: 50%;
                top: 50%;
                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: -48em -16em;
                width: 0.375em;
                height: 0.5em;
                font-size: 35px;
                -moz-transform: translate(-50%, -50%);
                -ms-transform: translate(-50%, -50%);
                -webkit-transform: translate(-50%, -50%);
                transform: translate(-50%, -50%);
            }
}

@media screen and (max-width: 667px) and (min-width: 0\0) {
    .results-page .slick-arrow:before {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

@media (max-width: 667px) {
    _:-ms-fullscreen,
    :root .results-page .slick-arrow:before {
        background-image: url(../images/icon-sprites-vector.svg);
    }
}

@media (max-width: 667px) and (max-width: 667px) {
    .results-page .slick-arrow:before {
        font-size: 35px;
    }
}

@media (max-width: 667px) {
    .results-page .slick-arrow:hover:before {
        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: -50em -16em;
        width: 0.375em;
        height: 0.5em;
    }
}

@media screen and (max-width: 667px) and (min-width: 0\0) {
    .results-page .slick-arrow:hover:before {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

@media (max-width: 667px) {
    _:-ms-fullscreen,
    :root .results-page .slick-arrow:hover:before {
        background-image: url(../images/icon-sprites-vector.svg);
    }

    .results-page .slick-arrow.slick-disabled {
        opacity: 0.3;
        cursor: default;
        pointer-events: none;
    }

    .results-page .slick-prev {
        left: 0px;
    }

        .results-page .slick-prev:before {
            -moz-transform: translate(-50%, -50%) scaleX(-1);
            -ms-transform: translate(-50%, -50%) scaleX(-1);
            -webkit-transform: translate(-50%, -50%) scaleX(-1);
            transform: translate(-50%, -50%) scaleX(-1);
            right: 0;
        }

    .results-page .slick-next {
        right: 0px;
    }

    .results-page .slick-arrow {
        margin-top: -36%;
    }
}

.results-page:not(.active) {
    display: none;
}

.results-page .result {
    padding: 0;
    border-bottom: none;
}

@media (min-width: 1025px) {
    .results-page .result:nth-of-type(odd) .result-panel {
        top: 130px;
    }
}

@media (min-width: 1025px) {
    .results-page .result:nth-of-type(even) .result-panel {
        top: 240px;
    }
}

@media (min-width: 668px) and (max-width: 1024px) {
    .results-page .result:nth-of-type(even) .result-panel {
        right: 10px !important;
        left: auto !important;
    }
}

@media (min-width: 668px) and (max-width: 1024px) {
    .results-page .result:nth-of-type(even) .line {
        left: 0px !important;
    }
}

.results-page .result:nth-of-type(-n+2) .result-panel {
    left: 10px;
}

.results-page .result:nth-of-type(-n+2) .line {
    left: calc(100% - 10px);
}

.results-page .result:nth-of-type(n+3) .result-panel {
    right: 10px;
}

.results-page .result:nth-of-type(n+3) .line {
    left: 0;
}

.results-page .result.obscured .line,
.results-page .result.obscured .point {
    z-index: -1;
}

.results-page .result.active .line {
    background-color: #ce1141;
}

@media (max-width: 667px) {
    .results-page .result .point {
        display: none;
    }
}

.results-page .result .line {
    position: absolute;
    top: 46px;
    width: 200px;
    width: 100px;
    height: 2px;
    background-color: white;
    outline: 1px solid transparent;
    -moz-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    z-index: 2;
}

@media (max-width: 667px) {
    .results-page .result .line {
        display: none;
    }
}

.result-panel {
    font-size: 12px;
    line-height: 1.35;
}

@media (min-width: 668px) {
    .result-panel {
        position: absolute;
        width: 280px;
    }

        .result-panel:not(.active) .result-body {
            max-height: 0;
            opacity: 0;
        }
}

@media (min-width: 668px) and (max-width: 1024px) {
    .result-panel {
        top: 0;
    }

        .result-panel .result-panel-inner {
            z-index: 1 !important;
        }
}

@media (max-width: 667px) {
    .result-panel {
        margin-left: 10px;
        margin-right: 10px;
        box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.075);
    }
}

.result-panel:hover .result-header {
    background-color: #ce1141;
}

@media (min-width: 668px) {
    .result-panel:hover .result-header .result-icon:after {
        background-position: -24em -16em;
    }
}

.result-panel:hover .result-header .category,
.result-panel:hover .result-header .title,
.result-panel:hover .result-header .date {
    color: white;
}

.result-panel:hover .line {
    background-color: #ce1141;
}

.result-panel:hover + .point {
    background-color: #ce1141;
}

@media (min-width: 1025px) {
    .result-panel.active,
    .result-panel.active:hover {
        z-index: 4;
    }
}

.result-panel.active .result-header,
.result-panel.active:hover .result-header {
    background-color: #ce1141;
}

    .result-panel.active .result-header .result-icon:after,
    .result-panel.active:hover .result-header .result-icon:after {
        right: 16px;
        top: 37px;
        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: -10em -16em;
        width: 1.0625em;
        height: 1.0625em;
    }

@media screen and (min-width: 0\0) {
    .result-panel.active .result-header .result-icon:after,
    .result-panel.active:hover .result-header .result-icon:after {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .result-panel.active .result-header .result-icon:after,
:root .result-panel.active:hover .result-header .result-icon:after {
    background-image: url(../images/icon-sprites-vector.svg);
}

.result-panel.active .result-header .category,
.result-panel.active .result-header .title,
.result-panel.active .result-header .date,
.result-panel.active:hover .result-header .category,
.result-panel.active:hover .result-header .title,
.result-panel.active:hover .result-header .date {
    color: white;
}

.result-panel.active .line,
.result-panel.active:hover .line {
    background-color: #ce1141;
}

.result-panel.active + .point,
.result-panel.active:hover + .point {
    background-color: #ce1141;
}

.result-panel.active .result-panel-inner,
.result-panel.active:hover .result-panel-inner {
    z-index: 1;
}

.result-panel .result-panel-inner {
    position: relative;
    background-color: white;
    z-index: -1;
}

.result-panel .result-header {
    position: relative;
    padding: 7px 10px;
    cursor: pointer;
    line-height: 1.3;
    -moz-user-select: -moz-none;
    -ms-user-select: none;
    -webkit-user-select: none;
    user-select: none;
}

@media (min-width: 668px) {
    .result-panel .result-header {
        padding-right: 55px;
    }

        .result-panel .result-header .result-icon {
            border-left: 1px solid #e6e6e6;
            position: absolute;
            width: 50px;
            height: 100%;
            top: 0;
            right: 0;
        }

            .result-panel .result-header .result-icon:after {
                position: absolute;
                right: 18px;
                top: 34px;
                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: -22em -16em;
                width: 0.8125em;
                height: 1.4375em;
                font-size: 16px;
            }
}

@media screen and (min-width: 668px) and (min-width: 0\0) {
    .result-panel .result-header .result-icon:after {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

@media (min-width: 668px) {
    _:-ms-fullscreen,
    :root .result-panel .result-header .result-icon:after {
        background-image: url(../images/icon-sprites-vector.svg);
    }
}

@media (max-width: 667px) {
    .result-panel .result-header {
        background-color: #ce1141;
        color: white;
    }

        .result-panel .result-header .category,
        .result-panel .result-header .title,
        .result-panel .result-header .date {
            color: white;
        }
}

.result-panel .result-header .title {
    font-family: "Nord-Con", "tv_nord", Arial, Helvetica, sans-serif;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
}

@media (min-width: 668px) {
    .result-panel .result-header .title {
        color: #ce1141;
    }
}

.result-panel .result-header .date {
    color: #888;
}

@media (max-width: 667px) {
    .result-panel .result-header .date {
        display: none;
    }
}

@media (min-width: 668px) {
    .result-panel .result-body {
        max-height: 300px;
        overflow: hidden;
        transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
}

@media (max-width: 667px) {
    .result-panel .result-body .image-wrapper img {
        width: 100%;
    }
}

.result-panel .result-body .text-wrapper {
    padding: 10px 15px;
}

    .result-panel .result-body .text-wrapper p {
        margin-bottom: 10px;
    }

    .result-panel .result-body .text-wrapper .link-wrapper a {
        display: block;
        margin-bottom: 10px;
        padding-top: 2px;
        padding-left: 32px;
    }

.icon-link {
    padding-left: 20px;
    color: #ce1141;
    text-decoration: none;
}

    .icon-link.view {
        background: transparent url(../images/icon-view.png) left center no-repeat;
    }

    .icon-link.download {
        background: transparent url(../images/icon-download.png) left center no-repeat;
    }

.real-results-pager {
    margin: 15px 0;
    font-family: "roboto", Arial, Helvetica, sans-serif;
    font-size: 20px;
    text-align: center;
}

@media (max-width: 667px) {
    .real-results-pager {
        margin-top: 40px;
    }
}

.real-results-pager span {
    font-weight: 500;
}

.real-results-pager .results-showing {
    color: #ce1141;
}

.real-results-pager .pager-button {
    background-color: transparent;
    padding: 10px;
    margin: -10px;
}

@media (max-width: 667px) {
    .real-results-pager .pager-button {
        display: none;
    }
}

#globe-reel .reel-preloader {
    background-color: #ce1141 !important;
}

@media (max-width: 667px) {
    #globe-reel {
        pointer-events: none;
        cursor: default !important;
    }
}


/* ----- Results Carousel (mobile) ----- */

body:not(.results-modal-active) .results-modal {
    opacity: 0;
    -moz-transform: translateY(15px);
    -ms-transform: translateY(15px);
    -webkit-transform: translateY(15px);
    transform: translateY(15px);
    visibility: hidden;
}

.results-modal-active .results-modal {
    opacity: 1;
    visibility: visible;
}

.results-modal {
    position: fixed;
    left: 10%;
    right: 10%;
    top: 20%;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.16);
    -moz-transition: opacity 0.3s ease, -moz-transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s ease;
    -o-transition: opacity 0.3s ease, -o-transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s ease;
    -webkit-transition: opacity 0.3s ease, -webkit-transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s ease;
    transition: opacity 0.3s ease, transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s ease;
    z-index: 10;
}

    .results-modal .result-header {
        padding-right: 55px;
        background-color: #ce1141;
    }

        .results-modal .result-header .category,
        .results-modal .result-header .title,
        .results-modal .result-header .date {
            color: white;
        }

        .results-modal .result-header:after {
            position: absolute;
            right: 0;
            top: 0;
            width: 48px;
            height: 100%;
            border-left: 1px solid white;
            content: "";
            background: transparent url(../images/icon-close-white.png) center center no-repeat;
        }

@media (min-width: 668px) {
    .results-modal {
        display: none;
    }
}

@media (max-width: 667px) {
    .results-wrapper .result-panel {
        margin: 0 10px;
    }

        .results-wrapper .result-panel .result-body {
            display: none;
        }
}

.label {
    color: white;
    background-color: black;
    padding: 5px;
}

@media (max-width: 667px) {
    .label {
        display: none;
    }
}

@media (min-width: 1025px) and (max-width: 1199px) {
    .real-result-bleed {
        padding: 0 10px;
    }
}

#new-real-results, #real-results {
    min-height: 300px;
    position: relative;
    z-index: 0;
}

@media (min-width: 1025px) {
    #new-real-results, #real-results {
        padding-bottom: 60px;
    }
}


/* TEMP styles until we work out how to deal with large amounts of text thtat don't fit into the design */

.result-panel .result-header .category {
    max-height: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: bold;
}

.result-panel .result-header .title {
    display: block;
    /* Fallback for non-webkit */
    display: -webkit-box;
    /*max-width: 400px;*/
    height: 40px;
    /* Fallback for non-webkit */
    margin: 0 auto;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.real-results-pager {
    display: none;
    /* Hide until there are results */
}

@media (min-width: 668px) {
    .real-results-pager-mobile {
        display: none;
    }
}

@media (max-width: 667px) {
    .real-results-pager-mobile {
        font-size: 16px;
        font-weight: bold;
        margin-left: 20px;
    }

        .real-results-pager-mobile .results-showing-mobile {
            color: #ce1141;
        }
}

.no-results-overlay {
    position: relative;
    display: none;
    top: 100px;
    margin: 0 10%;
    background: white;
    z-index: 300;
    box-shadow: 0px 8px 30px 0px rgba(0, 0, 0, 0.22);
}

@media (min-width: 1025px) {
    .no-results-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        width: 58.33333%;
        margin: 50px auto auto auto;
        padding: 50px;
    }
}

@media (min-width: 668px) and (max-width: 1024px) {
    .no-results-overlay {
        top: 0;
        left: 0;
        right: 0;
        width: 75%;
        margin: -35% auto 50px auto;
        padding: 50px;
    }
}

@media (max-width: 667px) {
    .no-results-overlay {
        top: 0;
        padding: 50px 20px;
        margin: -64% 20px 80px;
        width: auto;
    }
}

.no-results-overlay h3 {
    margin-bottom: 40px;
    color: #ce1141;
    font-weight: bold;
    font-size: 20px;
    line-height: 18px;
    text-transform: uppercase;
    position: relative;
}

    .no-results-overlay h3:before {
        display: block;
        position: absolute;
        bottom: -15px;
        left: 0;
        width: 40px;
        height: 2px;
        border-top: 2px solid;
        border-color: inherit;
        content: "";
    }

.no-results-overlay .close-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
}

@media (max-width: 667px) {
    .no-results-overlay .close-overlay {
        right: 15px;
    }
}

.no-results-overlay .close-overlay:hover {
    cursor: pointer;
}

.no-results-overlay .close-overlay .close-icon {
    position: relative;
    width: 17px;
    height: 17px;
}

    .no-results-overlay .close-overlay .close-icon:before {
        content: "";
        position: absolute;
        left: 0;
        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: -12em -16em;
        width: 1.0625em;
        height: 1.0625em;
        -moz-transition: -moz-transform 0.2s ease, opacity 0.2s ease;
        -o-transition: -o-transform 0.2s ease, opacity 0.2s ease;
        -webkit-transition: -webkit-transform 0.2s ease, opacity 0.2s ease;
        transition: transform 0.2s ease, opacity 0.2s ease;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
        font-size: 1em;
    }

@media screen and (min-width: 0\0) {
    .no-results-overlay .close-overlay .close-icon:before {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .no-results-overlay .close-overlay .close-icon:before {
    background-image: url(../images/icon-sprites-vector.svg);
}

.no-results-overlay .close-overlay .close-icon:hover:before {
    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: -14em -16em;
    width: 1.0625em;
    height: 1.0625em;
    -moz-transition: -moz-transform 0.2s ease, opacity 0.2s ease;
    -o-transition: -o-transform 0.2s ease, opacity 0.2s ease;
    -webkit-transition: -webkit-transform 0.2s ease, opacity 0.2s ease;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

@media screen and (min-width: 0\0) {
    .no-results-overlay .close-overlay .close-icon:hover:before {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root .no-results-overlay .close-overlay .close-icon:hover:before {
    background-image: url(../images/icon-sprites-vector.svg);
}

@media (min-width: 668px) {
    #new-real-results .dropdown .dropdown-header,
    #real-results .dropdown .dropdown-header {
        height: auto;
        background-color: transparent;
        border-left: none;
        border-right: none;
        border-top: none;
        font-size: 14px;
    }
}

#new-real-results .dropdown .dropdown-options,
#real-results .dropdown .dropdown-options {
    max-height: none;
}

@media (max-width: 667px) {
    #new-real-results .rr-search-button,
    #real-results .rr-search-button {
        width: 100%;
    }
}

#point-mobile {
    display: none;
    background-color: #ce1141;
}

@media (max-width: 667px) {
    #point-mobile:after {
        position: absolute;
        top: 100%;
        left: 7px;
        width: 2px;
        height: 340px;
        background-color: #ce1141;
        content: "";
    }
}

@media (min-width: 668px) {
    #point-mobile {
        display: none !important;
    }
}


/* ----- Investor Events ----- */

#p_lt_ctl03_pageplaceholder_p_lt_ctl03_InvestorEventsSearchListing_DocumentListingUpdatePanel1 {
    padding-top: 50px;
}


/* ----- Investor News Content ----- */

.press-wrapper h1.page-title {
    margin-left: 0;
}

#press-release {
    color: #363636;
    font-size: 16px;
    font-family: "roboto", Arial, Helvetica, sans-serif;
    font-weight: 300;
    margin-top: -20px;
}

    #press-release p,
    #press-release span,
    #press-release ul,
    #press-release ol {
        color: #363636 !important;
        font-size: 16px !important;
        font-family: "roboto", Arial, Helvetica, sans-serif !important;
        font-weight: 300 !important;
        line-height: 22px;
    }

        #press-release p b,
        #press-release span b,
        #press-release ul b,
        #press-release ol b {
            font-weight: 500;
        }

    #press-release p,
    #press-release ul,
    #press-release ol {
        margin-bottom: 15px;
    }

    #press-release a:hover {
        color: #ce1141;
    }

    #press-release i {
        font-style: normal;
    }

    #press-release table {
        margin-bottom: 15px;
    }

        #press-release table,
        #press-release table span {
            font-size: 14px !important;
            font-family: "roboto", Arial, Helvetica, sans-serif !important;
            font-weight: 300 !important;
            line-height: 18px !important;
        }

    #press-release ol {
        margin-left: 20px;
        list-style-type: decimal;
    }

    #press-release ul li {
        position: relative;
        padding-left: 20px;
    }

        #press-release ul li:before {
            position: absolute;
            left: 5px;
            top: -1px;
            content: "-";
        }

    #press-release a[href*="http://phx.corporate-ir.net/External.File"]:before {
        display: inline-block;
        margin-right: 14px;
        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: -20em -8em;
        width: 1.625em;
        height: 1.875em;
        font-size: 16px;
        content: "";
        vertical-align: top;
    }

@media screen and (min-width: 0\0) {
    #press-release a[href*="http://phx.corporate-ir.net/External.File"]:before {
        background-image: url(../images/icon-sprites-fallback.png);
    }
}

_:-ms-fullscreen,
:root #press-release a[href*="http://phx.corporate-ir.net/External.File"]:before {
    background-image: url(../images/icon-sprites-vector.svg);
}

#press-release a[href*="http://phx.corporate-ir.net/External.File"]:hover:before {
    background-position: -22em -8em;
}

#press-release .release-date {
    margin-bottom: 10px;
}

#press-release .release-content td {
    padding: 0 !important;
}

#press-release .release-content .rich-text h2 {
    margin-top: 50px;
    margin-bottom: 40px;
}

@media (min-width: 668px) {
    #press-release .release-content .benefit-statement {
        font-size: 30px;
        line-height: 34px;
    }
}

@media (max-width: 667px) {
    #press-release .release-content .benefit-statement {
        font-size: 24px;
        line-height: 22px;
    }
}

#press-release .xn-content,
#press-release .release-body {
    padding-top: 20px;
}

#press-release .subhead {
    position: relative;
    margin-bottom: 30px;
    display: block;
    margin-top: 50px;
    font-weight: bold !important;
    font-family: "Nord-Con", sans-serif !important;
    font-size: 20px !important;
    text-transform: uppercase;
}

    #press-release .subhead:before {
        display: block;
        position: absolute;
        bottom: -15px;
        left: 0;
        width: 40px;
        height: 2px;
        border-top: 2px solid;
        border-color: inherit;
        content: "";
    }

    #press-release .subhead:before {
        bottom: -10px;
    }


/* ----- Media Release ----- */

.release-download {
    margin-bottom: 55px;
}


/* ----- Newsroom Listing ----- */

.media-listing .page-intro {
    padding-bottom: 30px;
    margin: 0 !important;
}

.newsroom-list .row {
    background: transparent;
}
.newsroom-list .rich-text {
    margin-top: 30px;
}

@media (max-width: 668px) {
    .newsroom-list .column + .column {
        margin-top: 90px;
    }
}

@media (min-width: 668px) {
    .newsroom-list .row {
        position: relative;
    }

        .newsroom-list .row:before {
            content: '';
            display: block;
            width: 1px;
            height: 100%;
            background: #e7e6e6;
            position: absolute;
            left: 50%;
            top: 0;
        }
}

.newsroom-list .column .section {
    padding: 0;
    background: transparent;
}

.newsroom-list .column .update .update-content {
    width: 100%;
}

    .newsroom-list .column .update .update-content a {
        text-decoration: underline;
    }

.newsroom-list .column .update:last-child {
    margin-bottom: 0;
}

@media (min-width: 668px) {
    .newsroom-list .column:first-child {
        padding-right: 30px;
    }

    .newsroom-list .column:last-child {
        padding-left: 30px;
    }
}

.main-content--ir-landing {
    position: relative;
    background: #282828;
    min-height: calc(100vh - 75px);
}

.main-wrapper--breadcrumbs-hide-false .main-content--ir-landing {
    padding-top: 190px;
}

.main-content--ir-landing .constrained {
    padding: 0 30px;
}

@media (max-width: 667px) {
    .main-content--ir-landing {
        padding-top: 30px !important;
    }
}

.ir-landing-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

@media (max-width: 667px) {
    .ir-landing-bg:after {
        content: '';
        display: block;
        width: 100%;
        height: 300px;
        position: absolute;
        bottom: 0;
        left: 0;
        opacity: 0.1;
        /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0+0,1+100 */
        background: -moz-linear-gradient(top, transparent 0%, black 100%);
        /* FF3.6-15 */
        background: -webkit-linear-gradient(top, transparent 0%, black 100%);
        /* Chrome10-25,Safari5.1-6 */
        background: linear-gradient(to bottom, transparent 0%, black 100%);
        /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#000000', GradientType=0);
        /* IE6-9 */
    }
}

.ir-landing-bg__item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    opacity: 0;
    transition: opacity 0.5s ease;
}

@media (max-width: 667px) {
    .ir-landing-bg__item {
        background-image: none !important;
    }
}

.ir-landing-bg__item.active {
    opacity: 1;
}

.ir-landing-bg__mobile {
    display: none;
    position: absolute;
    left: 0;
    top: auto !important;
    bottom: 0;
    width: 100%;
    height: 50px;
    padding-bottom: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

@media (max-width: 667px) {
    .ir-landing-bg__mobile {
        display: block;
    }
}

.ir-row {
    margin-left: -15px;
    margin-right: -15px;
    max-width: 825px;
    position: relative;
    z-index: 10;
    padding-bottom: 25px;
    overflow: visible;
}

    .ir-row:before,
    .ir-row:after {
        content: '';
        display: table;
        clear: both;
    }

.ir-title {
    padding-left: 15px;
    padding-right: 15px;
}

.ir-sidebar {
    float: left;
    padding-left: 15px;
    padding-right: 15px;
    position: relative;
    width: 100%;
}

@media (min-width: 668px) and (max-width: 1024px) {
    .ir-sidebar {
        width: 40%;
        right: 60%;
    }
}

@media (min-width: 1025px) {
    .ir-sidebar {
        width: 40%;
        right: 60%;
    }
}

@media (max-width: 667px) {
    .ir-sidebar {
        padding-bottom: 75%;
    }
}

.ir-content {
    float: left;
    position: relative;
    width: 100%;
}

@media (min-width: 668px) and (max-width: 1024px) {
    .ir-content {
        width: 60%;
        left: 40%;
        padding-left: 15px;
    }
}

@media (min-width: 1025px) {
    .ir-content {
        width: 60%;
        left: 40%;
        padding-left: 15px;
    }
}

@media (max-width: 667px) {
    .ir-content {
        padding-bottom: 50px;
    }
}

.ir-landing__header {
    position: relative;
    border-bottom: 1px solid #fff;
    margin-bottom: 48px;
    padding-bottom: 10px;
}

@media (max-width: 667px) {
    .ir-landing__header {
        margin-bottom: 30px;
    }
}

.ir-landing__header h1 {
    color: #fff;
    font-size: 24px;
    line-height: 26px;
    font-weight: bold;
    text-transform: uppercase;
}

.ir-navigation {
    position: relative;
    z-index: 10;
    margin-bottom: 50px;
}

@media (max-width: 667px) {
    .ir-navigation {
        display: none;
    }
}

.ir-navigation li {
    position: relative;
    margin-bottom: 10px;
}

    .ir-navigation li:before {
        content: '';
        width: 3px;
        height: 100%;
        position: absolute;
        left: -18px;
        top: 0;
        background: #ce1141;
        display: none;
    }

    .ir-navigation li:hover a {
        font-weight: bold;
    }

    .ir-navigation li a {
        color: #fff;
        font-size: 16px;
        line-height: 1;
        text-decoration: none;
    }

    .ir-navigation li.active:before {
        display: block;
    }

    .ir-navigation li.active a {
        font-weight: bold;
    }

.ir-navigation-mobile {
    padding: 0 15px;
    margin-bottom: 30px;
    position: relative;
    display: none;
}

@media (max-width: 667px) {
    .ir-navigation-mobile {
        display: block;
    }
}

.ir-navigation-mobile .slick-slide {
    padding: 0 75px 0 30px;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.ir-navigation-mobile .slick-prev,
.ir-navigation-mobile .slick-next {
    display: block;
    text-indent: -9999px;
    width: 30px;
    height: 30px;
    position: absolute;
    top: 50%;
    margin-top: -16px;
    background: none;
    z-index: 10;
}

    .ir-navigation-mobile .slick-prev:before,
    .ir-navigation-mobile .slick-next:before {
        content: '';
        display: block;
        width: 8px;
        height: 12px;
        position: absolute;
        left: 50%;
        top: 50%;
        margin-top: -6px;
        margin-left: -4px;
    }

.ir-navigation-mobile .slick-prev {
    left: -8px;
}

    .ir-navigation-mobile .slick-prev:before {
        background: url(../images/icon-sprites-fallback.png);
        background-size: 928px 448px;
        background-position: -481px -256px;
    }

.ir-navigation-mobile .slick-next {
    right: -8px;
}

    .ir-navigation-mobile .slick-next:before {
        background: url(../images/icon-sprites-fallback.png);
        background-size: 928px 448px;
        background-position: -577px -256px;
    }

.ir-navigation-mobile .ir-navigation-pagination {
    position: absolute;
    top: 50%;
    right: 40px;
    line-height: 22px;
    margin-top: -11px;
}

.ir-content {
    color: #fff;
}

.ir-content__section {
    margin: 0 15px;
}

    .ir-content__section .constrained {
        padding: 0 !important;
    }

.ir-content__header {
    padding-right: 150px;
    position: relative;
    border-top: 1px solid #fff;
    padding-top: 30px;
    margin-top: 30px;
    margin-bottom: 30px;
}

@media (max-width: 480px) {
    .ir-content__header {
        padding-right: 0;
    }
}

.ir-content__header:first-child {
    border: 0;
    padding-top: 0;
    margin-top: 0;
}

    .ir-content__header:first-child .link,
    .ir-content__header:first-child .list-actions a,
    .list-actions .ir-content__header:first-child a,
    .ir-content__header:first-child .links-document .links-document-actions a,
    .links-document .links-document-actions .ir-content__header:first-child a,
    .ir-content__header:first-child #press-release a[href*="http://phx.corporate-ir.net/External.File"],
    #press-release .ir-content__header:first-child a[href*="http://phx.corporate-ir.net/External.File"] {
        top: 3px !important;
    }

.ir-content__header h3 {
    color: #fff;
    font-size: 24px;
    line-height: 26px;
    font-weight: bold;
    text-transform: uppercase;
}

@media (max-width: 480px) {
    .ir-content__header h3 {
        font-size: 20px;
        text-decoration: underline;
        cursor: pointer;
    }
}

.ir-content__header p {
    font-weight: 400;
    font-size: 16px;
    margin: 0;
}

@media (max-width: 480px) {
    .ir-content__header p {
        margin-top: 15px;
    }
}

.ir-content__header .link,
.ir-content__header .list-actions a,
.list-actions .ir-content__header a,
.ir-content__header .links-document .links-document-actions a,
.links-document .links-document-actions .ir-content__header a,
.ir-content__header #press-release a[href*="http://phx.corporate-ir.net/External.File"],
#press-release .ir-content__header a[href*="http://phx.corporate-ir.net/External.File"] {
    position: absolute;
    right: 0;
    min-width: 125px;
    top: 33px;
    text-decoration: none !important;
    color: #fff !important;
}

    .ir-content__header .link:before,
    .ir-content__header .list-actions a:before,
    .list-actions .ir-content__header a:before,
    .ir-content__header .links-document .links-document-actions a:before,
    .links-document .links-document-actions .ir-content__header a:before,
    .ir-content__header #press-release a[href*="http://phx.corporate-ir.net/External.File"]:before,
    #press-release .ir-content__header a[href*="http://phx.corporate-ir.net/External.File"]:before {
        top: -3px;
        left: 3px;
        background-position: -352px -192px !important;
    }

    .ir-content__header .link:hover,
    .ir-content__header .list-actions a:hover,
    .list-actions .ir-content__header a:hover,
    .ir-content__header .links-document .links-document-actions a:hover,
    .links-document .links-document-actions .ir-content__header a:hover,
    .ir-content__header #press-release a[href*="http://phx.corporate-ir.net/External.File"]:hover,
    #press-release .ir-content__header a[href*="http://phx.corporate-ir.net/External.File"]:hover {
        text-decoration: underline !important;
    }

@media (max-width: 480px) {
    .ir-content__header .link,
    .ir-content__header .list-actions a,
    .list-actions .ir-content__header a,
    .ir-content__header .links-document .links-document-actions a,
    .links-document .links-document-actions .ir-content__header a,
    .ir-content__header #press-release a[href*="http://phx.corporate-ir.net/External.File"],
    #press-release .ir-content__header a[href*="http://phx.corporate-ir.net/External.File"] {
        display: none;
    }
}

.ir-content__header .link.link-external:before,
.ir-content__header .list-actions a.link-external:before,
.list-actions .ir-content__header a.link-external:before,
.ir-content__header .links-document .links-document-actions a.link-external:before,
.links-document .links-document-actions .ir-content__header a.link-external:before,
.ir-content__header #press-release a.link-external[href*="http://phx.corporate-ir.net/External.File"]:before,
#press-release .ir-content__header a.link-external[href*="http://phx.corporate-ir.net/External.File"]:before {
    background: url(../images/icon-sprites-fallback.png);
    background-position: -288px -192px !important;
    background-image: linear-gradient(transparent, transparent), url(../images/icon-sprites-vector.svg);
    background-size: 58em 28em;
}

.ir-content__item {
    display: flex;
    align-items: flex-start;
}

@media (max-width: 480px) {
    .ir-content__item {
        display: block;
    }
}

.ir-content__item .list-actions {
    width: 125px;
    flex-shrink: 0;
}

@media (max-width: 480px) {
    .ir-content__item .list-actions {
        width: 100%;
        margin-top: 15px;
    }
}

.ir-content__item .list-actions a:hover {
    color: #fff !important;
    text-decoration: underline !important;
}

    .ir-content__item .list-actions a:hover strong {
        text-decoration: none !important;
    }

.ir-content__item .ico-link {
    background-position: -352px -192px !important;
    margin-top: -1px;
    margin-left: 1px;
}

.ir-content__item .ico-link-external {
    background-position: -287px -192px !important;
    margin-top: -1px;
    margin-left: 1px;
}

.ir-content__item .ico-pdf {
    background-position: 0px -384px !important;
    position: relative;
    top: -2px;
}

.ir-content__item .ico-song {
    background-position: -479px -384px !important;
}

.ir-content__item .ico-microphone {
    background-position: -384px -384px !important;
}

.ir-content__item .ico-doc-white,
.ir-content__item .ico-excel-white {
    position: relative;
    top: -2px;
}

.ir-content__item-title {
    padding-right: 15px;
    width: 100%;
}

    .ir-content__item-title h6 {
        font-size: 16px;
        font-weight: 500;
    }

    .ir-content__item-title p {
        margin-bottom: 10px;
    }

        .ir-content__item-title p:last-child {
            margin-bottom: 0;
        }

    .ir-content__item-title padding {
        font-size: 16px;
        font-weight: 300;
    }

.ir-content .shell {
    padding: 0;
    max-width: 100%;
}

    .ir-content .shell .row-grid {
        margin: 0;
    }

.ir-content .corp-stock-large {
    padding: 0;
    margin-bottom: 10px;
    margin-top: -15px;
}

    .ir-content .corp-stock-large .corp-stock-meta {
        color: #fff;
        font-size: 16px;
        font-weight: 400;
    }

    .ir-content .corp-stock-large .corp-stock-price {
        color: #fff;
        font-size: 46px;
        margin-left: 50px;
    }

    .ir-content .corp-stock-large .corp-stock-taxes {
        display: block;
        height: 44px;
        margin-left: 50px;
        padding-left: 0;
    }

        .ir-content .corp-stock-large .corp-stock-taxes span {
            color: #008112 !important;
        }

    .ir-content .corp-stock-large .corp-stock-taxes--red span {
        color: #ce1141 !important;
    }

    .ir-content .corp-stock-large .ir-content__stock-info {
        display: flex;
        align-items: center;
    }

.ir-content .ir-content__stock-delay {
    font-size: 16px;
    font-weight: 300;
}

.ir-sidebar__ad {
    position: relative;
    color: #fff;
    background: #434742;
    overflow: hidden;
    margin: 0 0 20px 0;
}

@media (max-width: 667px) {
    .ir-sidebar__ad {
        -webkit-box-shadow: 0px 0px 46px 6px rgba(0, 0, 0, 0.35);
        -moz-box-shadow: 0px 0px 46px 6px rgba(0, 0, 0, 0.35);
        box-shadow: 0px 0px 46px 6px rgba(0, 0, 0, 0.35);
    }
}

.ir-sidebar__ad .ir-sidebar__ad-background {
    display: block;
    width: 120%;
    height: 120%;
    position: absolute;
    top: -10%;
    left: -10%;
    filter: blur(10px);
    opacity: 0.75;
}

@media (max-width: 667px) {
    .ir-sidebar__ad .ir-sidebar__ad-background {
        opacity: 1;
    }
}

.ir-sidebar__ad .ir-sidebar__ad-content {
    position: relative;
    z-index: 10;
    padding: 15px;
}

    .ir-sidebar__ad .ir-sidebar__ad-content h2 {
        font-size: 22px;
        text-transform: uppercase;
        margin-bottom: 10px;
    }

    .ir-sidebar__ad .ir-sidebar__ad-content p {
        margin-top: 5px;
    }

    .ir-sidebar__ad .ir-sidebar__ad-content a {
        font-size: 14px;
        display: inline-block;
        position: relative;
        text-decoration: none;
        padding-left: 35px;
        font-weight: 500;
    }

        .ir-sidebar__ad .ir-sidebar__ad-content a:before {
            content: '';
            display: block;
            position: absolute;
            left: 0;
            top: 50%;
            margin-top: -.75em;
            background: url(../images/icon-sprites-fallback.png);
            background-image: linear-gradient(transparent, transparent), url(../images/icon-sprites-vector.svg);
            background-size: 58em 28em;
            width: 1.5em;
            height: 1.5em;
            font-size: 16px;
            background-position: -352px -192px !important;
        }

        .ir-sidebar__ad .ir-sidebar__ad-content a:hover {
            color: #fff !important;
            text-decoration: underline;
        }

        .ir-sidebar__ad .ir-sidebar__ad-content a.icon-external:before {
            background-position: -288px -192px !important;
        }

.ir-sidebar__ad .ir-sidebar__ad-image {
    position: relative;
    height: 66px;
    width: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 10;
}


/* Select Fix */

.slick-slider {
    -webkit-user-select: text;
    -khtml-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

.slick-list.draggable {
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}


/* Hidden Sections in Admin */

.ir-content__section--hidden-True {
    position: relative;
}

    .ir-content__section--hidden-True:before {
        content: "\e75c";
        font-family: 'Core-icons';
        display: block;
        font-style: normal;
        font-weight: normal;
        font-variant: normal;
        text-transform: none;
        line-height: 1;
        position: absolute;
        color: #A3A2A2;
        bottom: 5px;
        background: #403e3d;
        padding: 8px;
        right: 5px;
        pointer-events: none;
        z-index: 100;
    }


/* MG fixes */
.page-header .header-content-wrapper .search, .page-header .header-content-wrapper .global {
    z-index: 10;
}
@media (min-width: 668px) {
    .page-header .header-buttons {
        z-index: 11;
    }
} 
.page-header .header-content-wrapper .quick-links .quick-link-list li:first-child .quick-link-inner .category {
    display: none;
}

.page-header .header-content-wrapper .quick-links .quick-link-group .quick-link-semi-title {
    display: block;
    width: 100%;
    background: #e6e6e6;
    padding: 4px 15px;
    font-family: "Nord-Con", "tv_nord", Arial, Helvetica, sans-serif;
    font-weight: bold;
    line-height: 17px;
    text-transform: uppercase;
    font-size: 16px;
    color: #000 !important;
    /* pointer-events: none; */
    position: absolute;
    top: 0;
    left: 0;
}
.light-text.text-image .link {
    border-color: #fff !important;
}
.light-text.text-image .link:hover {
    border-color: #efdf00 !important;
}
.light-text.text-image .aa-anchor-label {
    border-color: #fff !important;
}
.light-text.text-image .aa-anchor > .link:hover ~ .aa-anchor-label,
.light-text.text-image .aa-anchor > .link:hover ~ p {
    border-color: #efdf00 !important;
    color: #efdf00 !important;
}

.page-header .header-content-wrapper .quick-links .quick-link-list li .quick-link-inner .image {
    width: 50%;
}

@media (max-width: 667px) {
    .media-listing .page-intro {
        margin-left: 15px !important;
        margin-right: 15px !important;
    }

    .page-header .header-content-wrapper .quick-links .quick-link-group.column-three .quick-link-list li .quick-link-inner {
        height: 50px;
    }
    .page-header .header-content-wrapper .quick-links .quick-link-group.column-three .quick-link-list li .quick-link-inner .image {
        width: 100% !important;
        background-position: left top;
    }
}

@media (min-width: 668px) {
    .page-header .header-content-wrapper .quick-links .quick-link-group {
        position: relative;
    }

    .page-header .header-content-wrapper .quick-links .quick-link-list li .quick-link-inner {
        height: 75px;
    }

    .page-header .header-content-wrapper .quick-links .quick-link-group {
        padding-top: 25px;
    }

    .page-header .header-content-wrapper .quick-links .quick-link-group.column-one .quick-link-semi-title,
    .page-header .header-content-wrapper .quick-links .quick-link-group.column-two .quick-link-semi-title{
        z-index: 10;
    }

    .page-header .header-content-wrapper .quick-links .quick-link-group.column-one .quick-link-semi-title {
        border-right: 1px solid #b5b5b5;
    }

    .page-header .header-content-wrapper .quick-links .quick-link-group.column-three .quick-link-semi-title {
        border-left: 1px solid #b5b5b5;
    }

    .page-header .header-content-wrapper .quick-links .quick-link-group li.current-item:hover {
        background: transparent;
    }

    .page-header .header-content-wrapper .quick-links .quick-link-group li.current-item:hover .quick-link-inner:after {
        content: '';
        position: absolute;
        background: #527a8a;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
    }

    .page-header .header-content-wrapper .quick-links .quick-link-list-bg {
        background: #fff;
    }

    .page-header .header-content-wrapper .quick-links .quick-link-group li {
        background: transparent;
    }
}

@media (min-width: 668px) and (max-width: 801px ) {
    .page-header .header-content-wrapper .quick-links .quick-link-group .quick-link-semi-title {
        font-size: 12px;
        padding-left: 5px;
        padding-right: 5px;
    }

    .page-header .header-content-wrapper .quick-links .quick-link-list li .quick-link-inner .text-wrapper {
        padding-left: 5px;
        padding-right: 5px;
    }

    .page-header .header-content-wrapper .quick-links .quick-link-list li .quick-link-inner .text-wrapper h2 {
        font-size: 16px;
    }
}

.newsroom-list .column .update .update-content a,
.newsroom-list .rich-text a,
.event-content h6 a {
    color: #373a36 !important;
    text-decoration: none !important;
}
.newsroom-list .column .update .update-content a:hover,
.newsroom-list .rich-text a:hover,
.event-content h6 a:hover {
    color: #ce1141 !important;
    text-decoration: underline !important;
}

/* Standard Image Module */
.text-image .aa-anchor {
    position: relative;
}

.text-image .aa-anchor-label {
    position: relative;
    display: block;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 10px 10px 0;
    margin: 10px 0 30px 0;
    border-top: 2px solid #363636;
    border-bottom: 2px solid #363636;
    max-width: 90%;
}

.text-in-box.text-image .aa-anchor-label {
    border-color: white;
}

.text-image .aa-anchor > .link {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 0;
    margin: 0;
    z-index: 1;
}

.text-image .aa-anchor > .link:hover ~ .aa-anchor-label, .text-image .aa-anchor > .link:hover ~ p {
    color: #ce1141;
}

.text-in-box.text-image .aa-anchor > .link:hover ~ .aa-anchor-label, .text-in-box.text-image .aa-anchor > .link:hover ~ p {
    color: #efdf00;
}

.text-image .aa-anchor > .link:hover ~ .aa-anchor-label {
    border-color: #ce1141;
}

.text-in-box.text-image .aa-anchor > .link:hover ~ .aa-anchor-label {
    border-color: #efdf00;
}

.text-image .aa-anchor > .link:before {
    content: none;
}

.text-image-link,
.text-image-external-link,
.text-image .link,
.module-2-column.level-1 .link {
    padding: 0;
    font-weight: 600 !important;
    outline: none;
    border-bottom: 2px solid black;
    display: block;
    min-height: auto;
    line-height: 1.5;
    font-size: 14px;
    max-width: 90%;
    text-decoration: none;
}

.text-in-box.text-image .link {
    border-color: white;
}

.text-image .link:hover,
.module-2-column.level-1 .link:hover {
    text-decoration: none !important;
    border-color: #ce1141;
}

.text-in-box.text-image .link:hover {
    border-color: #efdf00;
}

.text-image .link:before,
.module-2-column.level-1 .link:before {
    content: none;
}
.module-2-column.level-1.black-background .link {
    border-color: #fff;
}
.module-2-column.level-1.black-background .link:hover {
    border-color: #efdf00;
}
.module.black-background .aa-anchor-label {
    border-color: #fff;
}
.module.black-background .link {
    border-color: #fff;
}
.module.black-background .aa-anchor-label:hover,
.module.black-background .link:hover {
    border-color: #efdf00;
}
.module.black-background .aa-anchor > .link:hover ~ .aa-anchor-label,
.module.black-background .aa-anchor > .link:hover ~ p {
    border-color: #efdf00 !important;
    color: #efdf00;
}
/* Page Intro Panel Changes */
@media (min-width: 1025px) {
    .page-intro.constrained-right-margin {
        margin-left: 15px;
    }

    .page-intro .rich-text {
        max-width: 730px;
    }

    .benefit-statement {
        font-size: 58px;
        line-height: 60px;
    }
}

@media (min-width: 1175px) {
    .page-intro.constrained-right-margin {
        margin-left: 0;
    }
}

.benefit-paragraph {
    font-size: 18px;
}
/*changes to text width on the Our Leadership page 20210406*/
.leadership-page .rich-text {
    max-width: 100%;
}

.leadership-page .member-extra-content>.row-grid>div {
    width: 100%;
}

/*changes to rich text when white text is selected 20210507*/
.rich-text.white-text {
    color: #ffffff;
}

/*changes to accordion widget on dark backgrounds 20210421*/

.accordion.light {
    background: rgba(0, 0, 0, 0.55);
    padding: 10px;
}
.accordion.light .accordion-head h3 {
    color: #ffffff !important;
}
.accordion.light .accordion-head {
    border-top: 1px solid #ffffff;
}
.accordion.light .accordion-head h3:after {
    background-color: #ffffff !important;
}
.accordion.light .accordion-head:before {
    border-top: 1px solid #ffffff;
    border: 1px solid #ffffff;
}
.accordion.light .accordion-expanded  .accordion-head:after {
    background-position: -18em -8em;
}
.accordion.light  .accordion-head:after {
    background-position: -12em -8em;
}
.accordion.light .accordion-head .text-wrapper {
    color: #ffffff !important;
}
.accordion.light .accordion-body {
    background: inherit;
}
.accordion.light .white-text {
    color: #ffffff;
}
.btn:focused {
    outline: none;
    box-shadow: none;
}
.fancybox-slide--iframe .fancybox-content {
    width: 500px !important;
    height: 605px !important;
    max-width: 90%;
    max-height: 90%;
    margin: 0;
    padding: 10px 30px;
}

.fancybox-iframe {
    height: 605px !important;
    overflow-y:scroll !important;
    overflow-x: hidden !important;
}

.dont-underline-anchors a,
.dont-underline-anchors a:hover {
    text-decoration: none;
}
