/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/
/* Variables and Mixins */
:root {
    --evgRootFontSize: 10px;
}

@font-face {
    font-family: "Univers";
    src: url('../fonts/univers/2DE2A0_9_0.eot?#iefix') format("embedded-opentype"), url('../fonts/univers/2DE2A0_9_0.woff2') format("woff2"), url('../fonts/univers/2DE2A0_9_0.woff') format("woff"), url('../fonts/univers/2DE2A0_9_0.ttf') format("truetype");
    font-weight: 300;
    /* Light */
}

@font-face {
    font-family: "Univers";
    src: url('../fonts/univers/2DE2A0_6_0.eot?#iefix') format("embedded-opentype"), url('../fonts/univers/2DE2A0_6_0.woff2') format("woff2"), url('../fonts/univers/2DE2A0_6_0.woff') format("woff"), url('../fonts/univers/2DE2A0_6_0.ttf') format("truetype");
    font-weight: 400;
    /* Regular */
}

@font-face {
    font-family: "Univers";
    src: url('../fonts/univers/2DE2A0_5_0.eot?#iefix') format("embedded-opentype"), url('../fonts/univers/2DE2A0_5_0.woff2') format("woff2"), url('../fonts/univers/2DE2A0_5_0.woff') format("woff"), url('../fonts/univers/2DE2A0_5_0.ttf') format("truetype");
    font-weight: 700;
    /* Bold */
}

@font-face {
    font-family: "Univers";
    src: url('../fonts/univers/2DE2A0_3_0.eot?#iefix') format("embedded-opentype"), url('../fonts/univers/2DE2A0_3_0.woff2') format("woff2"), url('../fonts/univers/2DE2A0_3_0.woff') format("woff"), url('../fonts/univers/2DE2A0_3_0.ttf') format("truetype");
    font-weight: 900;
    /* Black */
}

/* Essentials */
/* ==================================
 ------------ RESET CSS -----------
================================== */
html {
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: var(--evgBodyFontSizeL);
    font-family: Arial, "sans-serif"
    /* HTML5 display-role reset for older browsers */
}

applet, object, iframe, h1, h2, h3, h4, h5, h6, blockquote, pre, abbr, acronym, address, big, cite, code, del, dfn, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, center, dl, dt, dd, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}

*, *::before, *::after {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
}

nav ol, nav ul:not(.list), .list--reset ol, .list--reset ul:not(.list) {
    margin: 0;
    padding: 0;
    list-style: none;
}

nav ol li, nav ul:not(.list) li, .list--reset ol li, .list--reset ul:not(.list) li {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote::before, blockquote::after, q::before, q::after {
    content: "";
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

strong {
    font-weight: 700;
}

em {
    font-style: italic;
}

sub, sup {
    font-size: 75%;
    line-height: 0;
}

sub {
    vertical-align: sub;
}

sup {
    vertical-align: super;
}

small {
    font-size: 70%;
    line-height: normal;
}

select:empty {
    display: none;
}

*::-webkit-input-placeholder {
    color: inherit;
    opacity: 1;
}

*::-moz-placeholder {
    color: inherit;
    opacity: 1;
}

*:-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

/* ---------- Animations ---------- */
@-webkit-keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/* ---------- Javascript ---------- */
.js--loading::after {
    position: relative;
    left: 50%;
    display: inline-block;
    margin: 10px;
    font-family: "q4-icons-legacy";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\eb27";
    font-size: 5rem;
    -webkit-animation: spin 0.8s infinite linear;
    animation: spin 0.8s infinite linear;
}

.js--hidden:not([data-accordion]) {
    display: none !important;
}

.js--hidden[data-accordion] {
    display: none;
}

.js--visible {
    display: block;
}

.js--disabled {
    opacity: 0.3;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
    pointer-events: none;
}

.js--invalid input[type="text"], .js--invalid select {
    border: 1px solid solid var(--evgErrorColor) !important;
}

.js--invalid input[type="checkbox"] {
    border-color: var(--evgErrorColor) !important;
}

/* ==================================
 --------- UTILITY CLASSES --------
================================== */
.hidden, [hidden], .js--hidden {
    display: none !important;
}

.evergreen--hidden, .evergreen-hidden {
    display: none;
}

.evergreen-sr-only, .sr-only {
    position: absolute !important;
    width: 1px solid !important;
    height: 1px solid !important;
    padding: 0 !important;
    margin: -1px solid !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    border: 0 !important;
}

.hidden:not([role="tabpanel"]) {
    display: none !important;
}

.hidden[role="tabpanel"] {
    display: none;
}

.disabled {
    opacity: 0.3;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
    pointer-events: none;
}

.absolute {
    position: absolute;
}

.relative {
    position: relative;
}

.inline {
    display: inline;
}

.block {
    display: block;
}

.inline-block {
    display: inline-block;
}

.vtop {
    vertical-align: top;
}

.vmiddle {
    vertical-align: middle;
}

.vbottom {
    vertical-align: bottom;
}

.right {
    float: right;
}

.left {
    float: left;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left !important;
}

.text-center {
    text-align: center;
}

.heading-right .module_title {
    text-align: right;
}

.heading-left .module_title {
    text-align: left;
}

.heading-center .module_title {
    text-align: center;
}

.text-justify {
    text-align: justify;
}

.uppercase {
    text-transform: uppercase;
}

.lowercase {
    text-transform: lowercase;
}

.underline {
    text-decoration: underline;
    text-decoration-line: underline;
    -webkit-text-decoration-line: underline;
}

.background--cover {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.background--brand {
    background-color: var(--evgPrimaryColor);
}

.background--alt-brand {
    background-color: var(--evgAltColor);
}

.background--dark {
    background-color: var(--evgDarkColor);
}

.background--light {
    background-color: var(--evgLightColor);
}

.background--grey {
    background-color: var(--evgGreyColor);
}

.background--success {
    background-color: var(--evgSuccessColor);
}

.background--error {
    background-color: var(--evgErrorColor);
}

.background--fixed {
    background-attachment: fixed;
}

@media only screen and (max-width: 1024px) {
    .background--fixed {
        background-attachment: scroll;
    }
}

.color--brand {
    color: var(--evgPrimaryColor);
}

.color--dark {
    color: var(--evgDarkColor);
}

.color--grey {
    color: var(--evgGreyColor);
}

.color--success {
    color: var(--evgSuccessColor);
}

.color--error {
    color: var(--evgErrorColor);
}

.dark {
    color: var(--evgLightColor) !important;
}

.dark a {
    color: var(--evgLightColor);
}

.dark .button--cta {
    color: var(--evgLightColor);
}

/* ==================================
 --------- ACCESSIBILITY ----------
================================== */
input:focus, select:focus, textarea:focus, button:focus, [href]:focus, [tabindex]:focus, [contentEditable="true"]:focus, .module_add-to-calendar-reveal:focus, a:focus, input[type="checkbox"]:focus + label::before, input[type="radio"]:focus + label::before, .radio--btn input[type="radio"]:focus + label {
    outline-width: 1px;
    outline-style: solid;
    outline-color: inherit;
    outline-offset: 2px;
}

.sr-only {
    position: absolute !important;
    width: 1px solid !important;
    height: 1px solid !important;
    padding: 0 !important;
    margin: -1px solid !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    border: 0 !important;
}

#maincontent:focus {
    outline: 0;
}

.tooltip {
    position: absolute;
    padding: 5px;
    font-family: Arial, sans-serif;
    color: black;
    background: white;
    line-height: normal;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    z-index: 200;
    font-size: 12px;
    white-space: nowrap;
    margin-left: 5px;
}

.tooltip[data-position="left"] {
    -webkit-transform: translate(-100%, -50%);
    -ms-transform: translate(-100%, -50%);
    transform: translate(-100%, -50%);
    margin-left: -5px;
}

.tooltip[aria-hidden="true"] {
    display: none;
}

.tooltip[aria-hidden="false"] {
    display: block;
}

@font-face {
    font-family: "evergreen-icons";
    src: url("fonts/evergreen-icons.woff2?fe0eiy") format("woff2"), url("fonts/evergreen-icons.ttf?fe0eiy") format("truetype"), url("fonts/evergreen-icons.woff?fe0eiy") format("woff"), url("fonts/evergreen-icons.svg?fe0eiy#evergreen-icons") format("svg");
    font-weight: normal;
    font-style: normal;
    font-display: block;
}

[class^="evergreen-icon-"], [class*=" evergreen-icon-"] {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: "evergreen-icons" !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.evergreen-icon-placeholder:before {
    content: "\e932";
}

.evergreen-icon-search1:before {
    content: "\e97f";
}

.evergreen-icon-arrow-right:before {
    content: "\e98f";
}

.evergreen-icon-arrow-left:before {
    content: "\e9a6";
}

.evergreen-icon-contact-2pt:before {
    content: "\e9d2";
}

.evergreen-icon-youtube:before {
    content: "\e92f";
}

.evergreen-icon-download-2:before {
    content: "\e92e";
}

.evergreen-icon-sustainability-bulb:before {
    content: "\e92b";
}

.evergreen-icon-sustainability-graph:before {
    content: "\e92c";
}

.evergreen-icon-sustainability-target:before {
    content: "\e92d";
}

.evergreen-icon-ppt:before {
    content: "\e925";
}

.evergreen-icon-search-2pt:before {
    content: "\e926";
}

.evergreen-icon-printer:before {
    content: "\e922";
}

.evergreen-icon-playarrow:before {
    content: "\e923";
}

.evergreen-icon-download-semi-circle:before {
    content: "\e924";
}

.evergreen-icon-add-to-calendar-4pt:before {
    content: "\e91f";
}

.evergreen-icon-checkmark:before {
    content: "\e920";
}

.evergreen-icon-calendar-4pt:before {
    content: "\e921";
}

.evergreen-icon-zip:before {
    content: "\e918";
}

.evergreen-icon-xls:before {
    content: "\e919";
}

.evergreen-icon-xbrl:before {
    content: "\e91a";
}

.evergreen-icon-txt:before {
    content: "\e91b";
}

.evergreen-icon-rtf:before {
    content: "\e91c";
}

.evergreen-icon-flv:before {
    content: "\e91d";
}

.evergreen-icon-html2:before {
    content: "\e91e";
}

.evergreen-icon-chairblack:before {
    content: "\e917";
}

.evergreen-icon-member:before {
    content: "\e916";
}

.evergreen-icon-lead-director:before {
    content: "\e914";
}

.evergreen-icon-chairman:before {
    content: "\e915";
}

.evergreen-icon-stroke-presentation:before {
    content: "\e913";
}

.evergreen-icon-stroke-webcast:before {
    content: "\e912";
}

.evergreen-icon-stroke-pdf:before {
    content: "\e911";
}

.evergreen-icon-download:before {
    content: "\e910";
}

.evergreen-icon-cta-arrow-up:before {
    content: "\e90c";
}

.evergreen-icon-cta-arrow-right:before {
    content: "\e90d";
}

.evergreen-icon-cta-arrow-down:before {
    content: "\e90e";
}

.evergreen-icon-cta-arrow-left:before {
    content: "\e90f";
}

.evergreen-icon-arrow_carrot-2right:before {
    content: "\e927";
}

.evergreen-icon-arrow_carrot-2left:before {
    content: "\e928";
}

.evergreen-icon-arrow_carrot-right:before {
    content: "\e929";
}

.evergreen-icon-arrow_carrot-left:before {
    content: "\e92a";
}

.evergreen-icon-home:before {
    content: "\e904";
}

.evergreen-icon-menu:before {
    content: "\ec71";
}

.evergreen-icon-plus:before {
    content: "\ed5d";
}

.evergreen-icon-minus:before {
    content: "\ed5e";
}

.evergreen-icon-cross:before {
    content: "\ed6d";
}

.evergreen-icon-check:before {
    content: "\ed72";
}

.evergreen-icon-play:before {
    content: "\ed85";
}

.evergreen-icon-pause2:before {
    content: "\ed86";
}

.evergreen-icon-chevron-up:before {
    content: "\edba";
}

.evergreen-icon-chevron-right:before {
    content: "\edbe";
}

.evergreen-icon-chevron-down:before {
    content: "\edc2";
}

.evergreen-icon-chevron-left:before {
    content: "\edc6";
}

.evergreen-icon-arrow-short-up:before {
    content: "\edc7";
}

.evergreen-icon-arrow-short-right:before {
    content: "\edc8";
}

.evergreen-icon-arrow-short-down:before {
    content: "\edc9";
}

.evergreen-icon-arrow-short-left:before {
    content: "\edca";
}

.evergreen-icon-webcast:before {
    content: "\e989";
}

.evergreen-icon-pdf:before {
    content: "\e900";
}

.evergreen-icon-html:before {
    content: "\eecd";
}

.evergreen-icon-tape:before {
    content: "\e952";
}

.evergreen-icon-link:before {
    content: "\ec9b";
}

.evergreen-icon-bell-line:before {
    content: "\ea57";
}

.evergreen-icon-bell-fill:before {
    content: "\e908";
}

.evergreen-icon-presentation:before {
    content: "\e95c";
}

.evergreen-icon-pie:before {
    content: "\eb81";
}

.evergreen-icon-file:before {
    content: "\eb81";
}

.evergreen-icon-video:before {
    content: "\e95e";
}

.evergreen-icon-bars:before {
    content: "\eb8a";
}

.evergreen-icon-text:before {
    content: "\e9a2";
}

.evergreen-icon-news:before {
    content: "\e9a2";
}

.evergreen-icon-transcript:before {
    content: "\e9a2";
}

.evergreen-icon-table:before {
    content: "\eeae";
}

.evergreen-icon-calendar:before {
    content: "\ea5f";
}

.evergreen-icon-image-line:before {
    content: "\e93c";
}

.evergreen-icon-image-fill:before {
    content: "\e93b";
}

.evergreen-icon-phone-fill:before {
    content: "\ea1d";
}

.evergreen-icon-phone-line:before {
    content: "\ea26";
}

.evergreen-icon-envelope-line:before {
    content: "\ea32";
}

.evergreen-icon-envelope-fill:before {
    content: "\ea34";
}

.evergreen-icon-location-fill:before {
    content: "\ea3c";
}

.evergreen-icon-location-line:before {
    content: "\ea3d";
}

.evergreen-icon-clock-line:before {
    content: "\ea4d";
}

.evergreen-icon-clock-fill:before {
    content: "\ea4e";
}

.evergreen-icon-printer-line:before {
    content: "\ea67";
}

.evergreen-icon-printer-fill:before {
    content: "\ea68";
}

.evergreen-icon-drawer-out:before {
    content: "\ea81";
}

.evergreen-icon-drawer-in:before {
    content: "\ea82";
}

.evergreen-icon-user-fill:before {
    content: "\eb08";
}

.evergreen-icon-user-line:before {
    content: "\eb09";
}

.evergreen-icon-briefcase-line:before {
    content: "\e909";
}

.evergreen-icon-briefcase-fill:before {
    content: "\ec03";
}

.evergreen-icon-quotes-left:before {
    content: "\eb1b";
}

.evergreen-icon-quotes-right:before {
    content: "\eb1c";
}

.evergreen-icon-spinner:before {
    content: "\eb27";
}

.evergreen-icon-search:before {
    content: "\e903";
}

.evergreen-icon-circle:before {
    content: "\ec6b";
}

.evergreen-icon-star-line:before {
    content: "\ece3";
}

.evergreen-icon-star-half:before {
    content: "\ece4";
}

.evergreen-icon-star-fill:before {
    content: "\ece5";
}

.evergreen-icon-warning-line:before {
    content: "\ed4f";
}

.evergreen-icon-warning-fill:before {
    content: "\ed50";
}

.evergreen-icon-share-external:before {
    content: "\eec8";
}

.evergreen-icon-instagram:before {
    content: "\e946";
}

.evergreen-icon-google:before {
    content: "\eeea";
}

.evergreen-icon-google-square:before {
    content: "\eeeb";
}

.evergreen-icon-facebook:before {
    content: "\eeef";
}

.evergreen-icon-facebook-square:before {
    content: "\eef0";
}

.evergreen-icon-twitter:before {
    content: "\eef5";
}

.evergreen-icon-apple:before {
    content: "\e90a";
}

.evergreen-icon-microsoft:before {
    content: "\e90b";
}

.evergreen-icon-rss:before {
    content: "\eefa";
}

.evergreen-icon-rss-square:before {
    content: "\eefb";
}

.evergreen-icon-vimeo:before {
    content: "\eeff";
}

.evergreen-icon-vimeo-square:before {
    content: "\ef00";
}

.evergreen-icon-flickr:before {
    content: "\ef02";
}

.evergreen-icon-flickr-square:before {
    content: "\ef04";
}

.evergreen-icon-linkedin:before {
    content: "\ef29";
}

.evergreen-icon-linkedin-square:before {
    content: "\ef28";
}

.evergreen-icon-glassdoor:before {
    content: "\e905";
}

.evergreen-icon-glassdoor-square:before {
    content: "\e906";
}

.evergreen-icon-share:before {
    content: "\eee0";
}

.evergreen-icon-file-pdf-line:before {
    content: "\ef3e";
}

.evergreen-icon-file-pdf-fill:before {
    content: "\e901";
}

.evergreen-icon-file-word-line:before {
    content: "\ef40";
}

.evergreen-icon-file-word-fill:before {
    content: "\e902";
}

.evergreen-icon-file-excel-line:before {
    content: "\ef41";
}

.evergreen-icon-file-excel-fill:before {
    content: "\e907";
}

.evergreen-icon-file-image-line:before {
    content: "\e9af";
}

.evergreen-icon-file-image-fill:before {
    content: "\e9b0";
}

.evergreen-icon-file-sound-line:before {
    content: "\e9b1";
}

.evergreen-icon-file-sound-fill:before {
    content: "\e9b2";
}

.evergreen-icon-file-play-line:before {
    content: "\e9b3";
}

.evergreen-icon-file-play-fill:before {
    content: "\e9b4";
}

.evergreen-icon-file-zip-line:before {
    content: "\e9b9";
}

.evergreen-icon-file-zip-fill:before {
    content: "\e9ba";
}

.evergreen-icon-file-xml-line:before {
    content: "\e9bb";
}

.evergreen-icon-file-html-line:before {
    content: "\e9bb";
}

.evergreen-icon-file-xml-fill:before {
    content: "\e9bc";
}

.evergreen-icon-file-html-fill:before {
    content: "\e9bc";
}

.evergreen-icon-file-presentation-line:before {
    content: "\e9bf";
}

.evergreen-icon-file-presentation-fill:before {
    content: "\e9c0";
}

.evergreen-icon-file-stats-line:before {
    content: "\e9c1";
}

.evergreen-icon-file-stats-fill:before {
    content: "\e9c2";
}

.evergreen-icon-file-spreadsheet-line:before {
    content: "\e9c5";
}

.evergreen-icon-file-spreadsheet-fill:before {
    content: "\e9c6";
}

.evergreen-icon-file-empty-line:before {
    content: "\e9a3";
}

.evergreen-icon-file-empty-fill:before {
    content: "\e9a4";
}

.evergreen-icon-stats-growth:before {
    content: "\eb90";
}

.evergreen-icon-notification:before {
    content: "\ed51";
}

.evergreen-icon-notification2:before {
    content: "\ed52";
}

.evergreen-icon-checkmark3:before {
    content: "\ed71";
}

.evergreen-icon-circle-up4:before {
    content: "\edf4";
}

.evergreen-icon-circle-down4:before {
    content: "\edf8";
}

@font-face {
    font-family: "q4-icons-legacy";
    /* stylelint-disable-line font-family-no-missing-generic-family-keyword */
    src: url("https://assets.web.q4inc.com/icons-v1/Q4studioclassic2018na1/q4-icons.eot?5j2dpc");
    src: url("https://assets.web.q4inc.com/icons-v1/Q4studioclassic2018na1/q4-icons.eot?5j2dpc#iefix") format("embedded-opentype"), url("https://assets.web.q4inc.com/icons-v1/Q4studioclassic2018na1/q4-icons.woff2?5j2dpc") format("woff2"), url("https://assets.web.q4inc.com/icons-v1/Q4studioclassic2018na1/q4-icons.ttf?5j2dpc") format("truetype"), url("https://assets.web.q4inc.com/icons-v1/Q4studioclassic2018na1/q4-icons.woff?5j2dpc") format("woff"), url("https://assets.web.q4inc.com/icons-v1/Q4studioclassic2018na1/q4-icons.svg?5j2dpc#q4-icons") format("svg");
    font-weight: normal;
    font-style: normal;
    font-display: block;
}

[class^="q4-icon_"]::before, [class*=" q4-icon_"]::before {
    font-family: "q4-icons-legacy" !important;
    /* stylelint-disable-line font-family-no-missing-generic-family-keyword */
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.q4-icon_sustainability-bulb::before {
    content: "\e92b";
}

.q4-icon_sustainability-graph::before {
    content: "\e92c";
}

.q4-icon_sustainability-target::before {
    content: "\e92d";
}

.q4-icon_ppt::before {
    content: "\e925";
}

.q4-icon_add-to-calendar-4pt::before {
    content: "\e91f";
}

.q4-icon_checkmark::before {
    content: "\e920";
}

.q4-icon_calendar-4pt::before {
    content: "\e921";
}

.q4-icon_zip::before {
    content: "\e918";
}

.q4-icon_xls::before {
    content: "\e919";
}

.q4-icon_xbrl::before {
    content: "\e91a";
}

.q4-icon_txt::before {
    content: "\e91b";
}

.q4-icon_rtf::before {
    content: "\e91c";
}

.q4-icon_flv::before {
    content: "\e91d";
}

.q4-icon_html2::before {
    content: "\e91e";
}

.q4-icon_chairblack::before {
    content: "\e917";
}

.q4-icon_member::before {
    content: "\e916";
}

.q4-icon_lead-director::before {
    content: "\e914";
}

.q4-icon_chairman::before {
    content: "\e915";
}

.q4-icon_stroke-presentation::before {
    content: "\e913";
}

.q4-icon_stroke-webcast::before {
    content: "\e912";
}

.q4-icon_stroke-pdf::before {
    content: "\e911";
}

.q4-icon_download::before {
    content: "\e910";
}

.q4-icon_cta-arrow-up::before {
    content: "\e90c";
}

.q4-icon_cta-arrow-right::before {
    content: "\e90d";
}

.q4-icon_cta-arrow-down::before {
    content: "\e90e";
}

.q4-icon_cta-arrow-left::before {
    content: "\e90f";
}

.q4-icon_arrow_carrot-2right::before {
    content: "\e927";
}

.q4-icon_arrow_carrot-2left::before {
    content: "\e928";
}

.q4-icon_arrow_carrot-right::before {
    content: "\e929";
}

.q4-icon_arrow_carrot-left::before {
    content: "\e92a";
}

.q4-icon_home::before {
    content: "\e904";
}

.q4-icon_menu::before {
    content: "\ec71";
}

.q4-icon_plus::before {
    content: "\ed5d";
}

.q4-icon_minus::before {
    content: "\ed5e";
}

.q4-icon_cross::before {
    content: "\ed6d";
}

.q4-icon_check::before {
    content: "\ed71";
}

.q4-icon_play::before {
    content: "\ed85";
}

.q4-icon_pause2::before {
    content: "\ed86";
}

.q4-icon_chevron-up::before {
    content: "\edba";
}

.q4-icon_chevron-right::before {
    content: "\edbe";
}

.q4-icon_chevron-down::before {
    content: "\edc2";
}

.q4-icon_chevron-left::before {
    content: "\edc6";
}

.q4-icon_arrow-up::before {
    content: "\edc7";
}

.q4-icon_arrow-right::before {
    content: "\edc8";
}

.q4-icon_arrow-down::before {
    content: "\edc9";
}

.q4-icon_arrow-left::before {
    content: "\edca";
}

.q4-icon_webcast::before {
    content: "\e989";
}

.q4-icon_pdf::before {
    content: "\e900";
}

.q4-icon_html::before {
    content: "\eecd";
}

.q4-icon_tape::before {
    content: "\e952";
}

.q4-icon_link::before {
    content: "\ec9b";
}

.q4-icon_bell-line::before {
    content: "\ea57";
}

.q4-icon_bell-fill::before {
    content: "\e908";
}

.q4-icon_presentation::before {
    content: "\e95c";
}

.q4-icon_pie::before {
    content: "\eb81";
}

.q4-icon_file::before {
    content: "\eb81";
}

.q4-icon_video::before {
    content: "\e95e";
}

.q4-icon_bars::before {
    content: "\eb8a";
}

.q4-icon_text::before {
    content: "\e99b";
}

.q4-icon_news::before {
    content: "\e99b";
}

.q4-icon_transcript::before {
    content: "\e99b";
}

.q4-icon_table::before {
    content: "\eeae";
}

.q4-icon_calendar::before {
    content: "\ea5f";
}

.q4-icon_image-line::before {
    content: "\e93c";
}

.q4-icon_image-fill::before {
    content: "\e93b";
}

.q4-icon_phone-fill::before {
    content: "\ea1d";
}

.q4-icon_phone-line::before {
    content: "\ea26";
}

.q4-icon_envelope-line::before {
    content: "\ea32";
}

.q4-icon_envelope-fill::before {
    content: "\ea34";
}

.q4-icon_location-fill::before {
    content: "\ea3c";
}

.q4-icon_location-line::before {
    content: "\ea3d";
}

.q4-icon_clock-line::before {
    content: "\ea4d";
}

.q4-icon_clock-fill::before {
    content: "\ea4e";
}

.q4-icon_printer-line::before {
    content: "\ea67";
}

.q4-icon_printer-fill::before {
    content: "\ea68";
}

.q4-icon_drawer-out::before {
    content: "\ea81";
}

.q4-icon_drawer-in::before {
    content: "\ea82";
}

.q4-icon_user-fill::before {
    content: "\eb08";
}

.q4-icon_user-line::before {
    content: "\eb09";
}

.q4-icon_briefcase-line::before {
    content: "\e909";
}

.q4-icon_briefcase-fill::before {
    content: "\ec03";
}

.q4-icon_quotes-left::before {
    content: "\eb1b";
}

.q4-icon_quotes-right::before {
    content: "\eb1c";
}

.q4-icon_spinner::before {
    content: "\eb27";
}

.q4-icon_search::before {
    content: "\e903";
}

.q4-icon_circle::before {
    content: "\ec6b";
}

.q4-icon_star-line::before {
    content: "\ece3";
}

.q4-icon_star-half::before {
    content: "\ece4";
}

.q4-icon_star-fill::before {
    content: "\ece5";
}

.q4-icon_warning-line::before {
    content: "\ed4f";
}

.q4-icon_warning-fill::before {
    content: "\ed50";
}

.q4-icon_share-external::before {
    content: "\eec8";
}

.q4-icon_instagram::before {
    content: "\e946";
}

.q4-icon_google::before {
    content: "\eeea";
}

.q4-icon_google-square::before {
    content: "\eeeb";
}

.q4-icon_facebook::before {
    content: "\eeef";
}

.q4-icon_facebook-square::before {
    content: "\eef0";
}

.q4-icon_twitter::before {
    content: "\eef5";
}

.q4-icon_apple::before {
    content: "\e90a";
}

.q4-icon_microsoft::before {
    content: "\e90b";
}

.q4-icon_youtube::before {
    content: "\eefc";
}

.q4-icon_rss::before {
    content: "\eefa";
}

.q4-icon_rss-square::before {
    content: "\eefb";
}

.q4-icon_vimeo::before {
    content: "\eeff";
}

.q4-icon_vimeo-square::before {
    content: "\ef00";
}

.q4-icon_flickr::before {
    content: "\ef02";
}

.q4-icon_flickr-square::before {
    content: "\ef04";
}

.q4-icon_linkedin::before {
    content: "\ef29";
}

.q4-icon_linkedin-square::before {
    content: "\ef28";
}

.q4-icon_glassdoor::before {
    content: "\e905";
}

.q4-icon_glassdoor-square::before {
    content: "\e906";
}

.q4-icon_share::before {
    content: "\eee0";
}

.q4-icon_file-pdf-line::before {
    content: "\ef3e";
}

.q4-icon_file-pdf-fill::before {
    content: "\e901";
}

.q4-icon_file-word-line::before {
    content: "\ef40";
}

.q4-icon_file-word-fill::before {
    content: "\e902";
}

.q4-icon_file-excel-line::before {
    content: "\ef41";
}

.q4-icon_file-excel-fill::before {
    content: "\e907";
}

.q4-icon_file-image-line::before {
    content: "\e9af";
}

.q4-icon_file-image-fill::before {
    content: "\e9b0";
}

.q4-icon_file-sound-line::before {
    content: "\e9b1";
}

.q4-icon_file-sound-fill::before {
    content: "\e9b2";
}

.q4-icon_file-play-line::before {
    content: "\e9b3";
}

.q4-icon_file-play-fill::before {
    content: "\e9b4";
}

.q4-icon_file-zip-line::before {
    content: "\e9b9";
}

.q4-icon_file-zip-fill::before {
    content: "\e9ba";
}

.q4-icon_file-xml-line::before {
    content: "\e9bb";
}

.q4-icon_file-html-line::before {
    content: "\e9bb";
}

.q4-icon_file-xml-fill::before {
    content: "\e9bc";
}

.q4-icon_file-html-fill::before {
    content: "\e9bc";
}

.q4-icon_file-presentation-line::before {
    content: "\e9bf";
}

.q4-icon_file-presentation-fill::before {
    content: "\e9c0";
}

.q4-icon_file-stats-line::before {
    content: "\e9c1";
}

.q4-icon_file-stats-fill::before {
    content: "\e9c2";
}

.q4-icon_file-spreadsheet-line::before {
    content: "\e9c5";
}

.q4-icon_file-spreadsheet-fill::before {
    content: "\e9c6";
}

/* ==================================
 ----- Q4 Modules Icons (Legacy)-----
================================== */
.evergreen-layout .q4icons .q4icons_icon::before {
    font-family: "q4-icons-legacy";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\e91e";
    font-size: 18px;
    vertical-align: middle;
    display: inline-block;
    padding-right: 4px;
    min-width: 16px !important;
    /* min-width because sometimes icons don't align properly */
    text-align: right;
}

.evergreen-layout .q4icons .module_rss-link .q4icons_icon::before, .evergreen-layout .q4icons .module_link-rss .q4icons_icon::before {
    content: "\eefa";
}

.evergreen-layout .q4icons .module_add-to-calendar-reveal .q4icons_icon::before {
    content: "\ea5f";
    padding-right: 5px;
}

.evergreen-layout .q4icons [href$=".mp3"] .q4icons_icon::before, .evergreen-layout .q4icons [href$=".wmv"] .q4icons_icon::before, .evergreen-layout .q4icons [href$=".MP3"] .q4icons_icon::before, .evergreen-layout .q4icons [href$=".WMV"] .q4icons_icon::before {
    content: "\e952";
}

.evergreen-layout .q4icons [href$=".xls"] .q4icons_icon::before, .evergreen-layout .q4icons [href$=".xlsx"] .q4icons_icon::before, .evergreen-layout .q4icons [href$=".csv"] .q4icons_icon::before, .evergreen-layout .q4icons [href$=".XLS"] .q4icons_icon::before, .evergreen-layout .q4icons [href$=".XLSX"] .q4icons_icon::before, .evergreen-layout .q4icons [href$=".CSV"] .q4icons_icon::before {
    content: "\eeae";
}

.evergreen-layout .q4icons [href$=".mp4"] .q4icons_icon::before, .evergreen-layout .q4icons [href$=".flv"] .q4icons_icon::before, .evergreen-layout .q4icons [href$=".avi"] .q4icons_icon::before, .evergreen-layout .q4icons [href$=".MP4"] .q4icons_icon::before, .evergreen-layout .q4icons [href$=".FLV"] .q4icons_icon::before, .evergreen-layout .q4icons [href$=".AVI"] .q4icons_icon::before {
    content: "\e95e";
}

.evergreen-layout .q4icons [href$=".pdf"] .q4icons_icon::before, .evergreen-layout .q4icons [href$=".PDF"] .q4icons_icon::before {
    content: "\e911";
}

.evergreen-layout .q4icons [href$=".ppt"] .q4icons_icon::before, .evergreen-layout .q4icons [href$=".PPT"] .q4icons_icon::before, .evergreen-layout .q4icons [href$=".pptx"] .q4icons_icon::before, .evergreen-layout .q4icons [href$=".PPTX"] .q4icons_icon::before {
    content: "\e925";
}

.evergreen-layout .q4icons .module_link-webcast .q4icons_icon::before, .evergreen-layout .q4icons .module_webcast-link .q4icons_icon::before {
    content: "\e912";
}

.evergreen-layout .q4icons .module_link-presentation .q4icons_icon::before {
    content: "\e913";
}

.evergreen-layout .q4icons .module_link-download .q4icons_icon::before {
    content: "\e910";
}

.evergreen-layout .q4icons .module_link-sec .q4icons_icon::before {
    content: "\e91e";
}

.evergreen-layout .q4icons .module_link-sec[href$=".pdf"] .q4icons_icon::before {
    content: "\e911";
}

.evergreen-layout .q4icons .module_link-sec[href$=".rtf"] .q4icons_icon::before {
    content: "\e91c";
}

.evergreen-layout .q4icons .module_link-sec[href$=".xls"] .q4icons_icon::before {
    content: "\e919";
}

.evergreen-layout .q4icons .module_link-sec[href$=".zip"] .q4icons_icon::before {
    content: "\e918";
}

.evergreen-layout .q4icons [href^="tel:"] .q4icons_icon::before {
    font-size: 1rem !important;
    vertical-align: text-bottom;
    font-family: "q4-icons-legacy";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\ea1d";
}

.evergreen-layout .q4icons [href^="mailto:"] .q4icons_icon::before {
    font-size: 1rem !important;
    vertical-align: text-bottom;
    font-family: "q4-icons-legacy";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\ea34";
}

/* ==================================
 --------- COOKIE MONSTER ----------
================================== */
.prevent-scroll {
    overflow: hidden;
}

.cm {
    position: fixed;
    z-index: 9999;
    font-size: 1.6rem;
    line-height: 1;
}

.cm_overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: transparent;
    pointer-events: none;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.cm_overlay.visible {
    pointer-events: visible;
    background-color: rgba(0, 0, 0, 0.5);
}

.cm_disclaimer {
    position: fixed;
    background-color: #fff;
    visibility: hidden;
    -webkit-transition: opacity 0.7s ease-in-out, visibility 0.7s ease-in-out;
    -o-transition: opacity 0.7s ease-in-out, visibility 0.7s ease-in-out;
    transition: opacity 0.7s ease-in-out, visibility 0.7s ease-in-out;
    -webkit-box-shadow: 1px solid 3px 18px 1px solid #333;
    box-shadow: 1px solid 3px 18px 1px solid #333;
    max-height: 100vh;
    overflow-y: auto;
}

.cm_disclaimer.fade-in {
    opacity: 0;
    z-index: -9999;
    -webkit-transition: visibility 0.5s ease-in-out, opacity 0.5s ease-in-out;
    -o-transition: visibility 0.5s ease-in-out, opacity 0.5s ease-in-out;
    transition: visibility 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

.cm_disclaimer.fade-in.visible {
    opacity: 1;
    z-index: 40;
    visibility: visible;
    -webkit-transition: visibility 0.5s ease-in-out, opacity 0.5s ease-in-out;
    -o-transition: visibility 0.5s ease-in-out, opacity 0.5s ease-in-out;
    transition: visibility 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

.cm_disclaimer.slide-up {
    bottom: -100%;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: bottom 0.7s ease-in-out, visibility 1s ease-in-out, opacity 0.5s ease-in-out;
    -o-transition: bottom 0.7s ease-in-out, visibility 1s ease-in-out, opacity 0.5s ease-in-out;
    transition: bottom 0.7s ease-in-out, visibility 1s ease-in-out, opacity 0.5s ease-in-out;
}

.cm_disclaimer.slide-up.visible {
    bottom: 0;
    opacity: 1;
    visibility: visible;
    -webkit-transition: bottom 0.7s ease-in-out, visibility 0.5s ease-in-out, opacity 1s ease-in-out;
    -o-transition: bottom 0.7s ease-in-out, visibility 0.5s ease-in-out, opacity 1s ease-in-out;
    transition: bottom 0.7s ease-in-out, visibility 0.5s ease-in-out, opacity 1s ease-in-out;
}

.cm_disclaimer-wrapper {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.cm_disclaimer-popup .cm_disclaimer-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.cm_disclaimer-banner {
    bottom: 0;
    width: 100%;
    padding: 15px 50px 15px 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.cm_disclaimer-popup {
    bottom: 10px;
    right: 10px;
    padding: 15px 10px;
    border-radius: 4px;
    max-width: 400px;
    -webkit-box-shadow: 1px solid 3px 4px 1px solid rgba(0, 0, 0, 0.5);
    box-shadow: 1px solid 3px 4px 1px solid rgba(0, 0, 0, 0.5);
}

.cm_disclaimer-popup .cm_disclaimer-buttons {
    margin-top: 20px;
    -ms-flex-item-align: normal;
    -ms-grid-row-align: normal;
    align-self: normal;
    padding: 0;
}

.cm_disclaimer-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    font-size: 1.4rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    white-space: nowrap;
    text-align: center;
    padding-left: 20px;
}

.cm_disclaimer-buttons .cm_button {
    text-transform: uppercase;
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.cm_disclaimer-buttons .cm_button:not(:last-child) {
    margin-bottom: 5px;
}

.cm_disclaimer-text h3 {
    margin-top: 0;
}

.cm_disclaimer-text p:last-child {
    margin-bottom: 0;
}

.cm_disclaimer-text a {
    text-decoration: underline;
    -webkit-text-decoration-line: underline;
    text-decoration-line: underline;
}

.cm_logo {
    position: fixed;
    bottom: 0;
    background-color: #fff;
    padding: 5px;
    width: 70px;
    height: 70px;
    left: 0;
    z-index: 10;
}

.cm_sidebar {
    max-width: 420px;
    width: 90%;
    padding: 20px;
    position: fixed;
    background-color: #fff;
    top: 0;
    bottom: 0;
    overflow-y: auto;
    visibility: hidden;
    -webkit-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
}

.cm_sidebar.visible {
    visibility: visible;
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    transition: -webkit-transform 0.3s ease-in-out;
    -o-transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.cm_sidebar--left {
    right: 100%;
}

.cm_sidebar--left.visible {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
}

.cm_sidebar--right {
    left: 100%;
}

.cm_sidebar--right.visible {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
}

.cm .pref_main, .cm .pref_necessary {
    margin-bottom: 20px;
}

.cm .pref_main .pref_button {
    margin-top: 15px;
}

.cm .pref_description {
    line-height: 1.5;
}

.cm .pref_opt-out {
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    border-radius: 4px;
    font-size: 1.4rem;
}

.cm .pref_opt-out.visible {
    max-height: 400px;
    padding: 10px 15px;
    margin-bottom: 15px;
    margin-top: 15px;
    background-color: rgba(0, 0, 0, 0.1);
    opacity: 1;
    visibility: visible;
    font-size: inherit;
    -webkit-transition: max-height 1s ease-in-out, opacity 0.7s ease-in-out, visibility 0.7s ease-in-out, font-size 0.3s ease-in-out;
    -o-transition: max-height 1s ease-in-out, opacity 0.7s ease-in-out, visibility 0.7s ease-in-out, font-size 0.3s ease-in-out;
    transition: max-height 1s ease-in-out, opacity 0.7s ease-in-out, visibility 0.7s ease-in-out, font-size 0.3s ease-in-out;
}

.cm .pref_opt-out .pref_heading {
    padding: 0;
    margin-bottom: 15px;
}

.cm .pref_opt-out .pref_opt-out-link {
    display: block;
    text-align: right;
}

.cm .optional .pref_heading {
    margin: 0;
}

.cm .optional .pref_description {
    margin: 16px 0 20px;
}

.cm .optional_party {
    position: relative;
    margin-bottom: 10px;
}

.cm .optional_switch {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 26px;
}

.cm [role="switch"] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    background: none;
    border: 0;
    border-radius: 5px;
    padding: 0;
    font: inherit;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.cm [role="switch"] .switch {
    position: relative;
    display: inline-block;
    background-color: #ec6a4c;
    border-radius: 35px;
    height: 26px;
    min-width: 48px;
    margin: 0 10px 0 auto;
}

.cm [role="switch"] .switch span {
    position: absolute;
    top: 3px;
    left: 2px;
    display: inline-block;
    border-radius: 35px;
    height: 20px;
    width: 20px;
    background: #fff;
}

.cm [role="switch"][aria-checked="true"] .switch span {
    left: 26px;
}

.cm [role="switch"] .on {
    display: none;
}

.cm [role="switch"] .off {
    display: inline;
}

.cm [role="switch"][aria-checked="true"] .on {
    display: inline;
}

.cm [role="switch"][aria-checked="true"] .off {
    display: none;
}

.cm [role="switch"]:focus, .cm [role="switch"]:hover {
    outline: 2px dotted #000;
    outline-offset: 2px;
    cursor: pointer;
}

.cm_close-button {
    position: absolute;
    top: 10px;
    right: 5px;
    width: 30px;
    height: 20px;
    opacity: 0.3;
    -webkit-transition: opacity 0.3s ease-in-out;
    -o-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
    background: none;
    border: none;
    cursor: pointer;
}

.cm_close-button:hover {
    opacity: 1;
    background: transparent;
    border: none;
}

.cm_close-button:focus {
    outline: thin dotted;
}

.cm_close-button::before, .cm_close-button::after {
    position: absolute;
    top: 2px;
    left: 15px;
    content: " ";
    height: 1.1em;
    width: 1px solid;
    background-color: #333;
}

.cm_close-button::before {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.cm_close-button::after {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

@media only screen and (max-width: 768px) {
    .cm_disclaimer-wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column;
        flex-flow: column;
    }

    .cm_disclaimer-banner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column;
        flex-flow: column;
        padding: 15px;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

    .cm_disclaimer-header {
        margin-bottom: 5px;
    }

    .cm_disclaimer-buttons {
        margin-top: 10px;
        width: 100%;
        padding: 0;
    }
}

/* ==================================
 --------- DATERANGEPICKER ----------
================================== */
.daterangepicker {
    position: absolute;
    color: var(--evgBodyFontColor);
    background-color: var(--evgLightColor);
    border-radius: 4px;
    border: 1px solid solid #ddd;
    width: 100vw;
    max-width: 500px;
    padding: 0;
    z-index: 150;
    display: none;
    font-family: var(--evgBodyFontFamily);
    font-size: 1.4rem;
    line-height: normal;
    margin-top: 5px;
}

.daterangepicker::before {
    content: "";
    position: absolute;
    width: 1px solid;
    background-color: #ddd;
    left: 50%;
    top: 0;
    bottom: 50px;
}

.daterangepicker.openscenter::before {
    left: 0;
    right: 0;
    width: 0;
    margin-left: auto;
    margin-right: auto;
}

.daterangepicker.openscenter::after {
    left: 0;
    right: 0;
    width: 0;
    margin-left: auto;
    margin-right: auto;
}

.daterangepicker .drp-calendar {
    display: none;
    max-width: 250px;
}

.daterangepicker .drp-calendar.left, .daterangepicker .drp-calendar.right {
    padding: 10px;
}

.daterangepicker.show-calendar .drp-calendar {
    display: block;
}

.daterangepicker.show-ranges.single.rtl .drp-calendar.left {
    border-right: 1px solid solid #ddd;
}

.daterangepicker.show-ranges.single.ltr .drp-calendar.left {
    border-left: 1px solid solid #ddd;
}

.daterangepicker.show-ranges.rtl .drp-calendar.right {
    border-right: 1px solid solid #ddd;
}

.daterangepicker.show-ranges.ltr .drp-calendar.right {
    border-left: 1px solid solid #ddd;
}

.daterangepicker.single .calendar-table {
    border: none;
}

.daterangepicker .calendar-table {
    position: relative;
    text-transform: uppercase;
    border: 1px solid solid var(--evgLightColor);
    border-radius: 4px;
    background-color: var(--evgLightColor);
    font-size: 1.2rem;
    font-weight: normal;
}

.daterangepicker .calendar-table table {
    width: 100%;
    margin: 0;
    border-spacing: 0;
    border-collapse: collapse;
}

.daterangepicker .calendar-table thead tr:first-child {
    height: 35px;
}

.daterangepicker .calendar-table td.week, .daterangepicker .calendar-table th.week {
    font-size: 80%;
    color: #ccc;
}

.daterangepicker .calendar-table th {
    line-height: 25px;
}

.daterangepicker .calendar-table th.month {
    line-height: 25px;
    text-transform: none;
    padding-bottom: 10px;
    font-size: 1.4rem;
    position: absolute;
    left: 10px;
}

.daterangepicker .calendar-table td {
    text-align: center;
    vertical-align: middle;
    min-width: 32px;
    width: 32px;
    height: 25px;
    font-size: 12px;
    border-radius: 4px;
    border: 1px solid solid transparent;
    white-space: nowrap;
    cursor: pointer;
    line-height: 25px;
}

.daterangepicker .calendar-table td.available:hover {
    background-color: #eee;
    border-color: transparent;
    color: inherit;
}

.daterangepicker .calendar-table td.off, .daterangepicker .calendar-table td.off.in-range, .daterangepicker .calendar-table td.off.start-date, .daterangepicker .calendar-table td.off.end-date {
    background-color: var(--evgLightColor);
    border-color: transparent;
    color: #999;
}

.daterangepicker .calendar-table td.in-range {
    background-color: rgba(var(--evgPrimaryColor), 0.3);
    border-color: transparent;
    color: var(--evgBodyFontColor);
    border-radius: 0;
}

.daterangepicker .calendar-table td.start-date {
    border-radius: 4px 0 0 4px;
}

.daterangepicker .calendar-table td.end-date {
    border-radius: 0 4px 4px 0;
}

.daterangepicker .calendar-table td.start-date.end-date {
    border-radius: 4px;
}

.daterangepicker .calendar-table td.active, .daterangepicker .calendar-table td.active:hover {
    background-color: var(--evgPrimaryColor);
    border-color: transparent;
    color: var(--evgLightColor);
}

.daterangepicker .calendar-table td.disabled {
    color: #999;
    cursor: not-allowed;
    text-decoration: line-through;
}

.daterangepicker .calendar-table .prev span, .daterangepicker .calendar-table .next span {
    position: absolute;
    top: 10px;
    right: 5px;
    line-height: 25px;
    width: 25px;
    text-align: center;
    vertical-align: top;
    display: inline-block;
    cursor: pointer;
}

.daterangepicker .calendar-table .prev span::before, .daterangepicker .calendar-table .next span::before {
    font-family: "q4-icons-legacy";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\edbe";
    vertical-align: top;
    color: var(--evgPrimaryColor);
}

.daterangepicker .calendar-table .prev span {
    right: 35px;
}

.daterangepicker .calendar-table .prev span::before {
    content: "\edc6";
}

.daterangepicker .drp-selected {
    display: inline-block;
    font-size: 12px;
    padding-right: 8px;
    vertical-align: top;
    line-height: 30px;
}

.daterangepicker.single .drp-selected {
    display: none;
}

.daterangepicker .drp-buttons {
    clear: both;
    text-align: right;
    padding: 10px;
    border-top: 1px solid solid #ddd;
    display: none;
    line-height: 30px;
    vertical-align: middle;
}

.daterangepicker .drp-buttons .button {
    padding: 5px 10px;
    text-transform: uppercase;
    border-radius: 3px;
    border: 0 none;
    margin-left: 15px;
    font-size: 1.4rem;
    height: 30px;
    vertical-align: top;
    display: inline-block;
    background-color: var(--evgPrimaryColor);
    color: var(--evgLightColor);
    min-width: auto;
}

.daterangepicker .drp-buttons .button--cancel {
    background-color: var(--evgGreyDarkColor);
    color: var(--evgLightColor);
}

.daterangepicker.show-calendar .drp-buttons {
    display: block;
}

.daterangepicker.auto-apply .drp-buttons {
    display: none;
}

.daterangepicker .drop-up {
    margin-top: -7px;
}

.daterangepicker .drop-up::before {
    top: initial;
    bottom: -7px;
    border-bottom: initial;
    border-top: 7px solid #ccc;
}

.daterangepicker .drop-up::after {
    top: initial;
    bottom: -6px;
    border-bottom: initial;
    border-top: 6px solid var(--evgLightColor);
}

.daterangepicker .ranges {
    float: none;
    text-align: left;
    margin: 0;
}

.daterangepicker .ranges ul {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    width: 100%;
}

.daterangepicker .ranges li {
    font-size: 12px;
    padding: 8px 12px;
    cursor: pointer;
}

.daterangepicker .ranges li:hover {
    background-color: #eee;
}

.daterangepicker .ranges li.active {
    background-color: #08c;
    color: var(--evgLightColor);
}

.daterangepicker select.monthselect, .daterangepicker select.yearselect {
    font-size: 12px;
    padding: 1px solid;
    height: auto;
    margin: 0;
    cursor: default;
}

.daterangepicker select.monthselect {
    margin-right: 2%;
    width: 56%;
}

.daterangepicker select.yearselect {
    width: 40%;
}

.daterangepicker select.hourselect, .daterangepicker select.minuteselect, .daterangepicker select.secondselect, .daterangepicker select.ampmselect {
    width: 50px;
    margin: 0 auto;
    background: #eee;
    border: 1px solid solid #eee;
    padding: 2px;
    outline: 0;
    font-size: 12px;
}

.daterangepicker option.disabled {
    color: #999;
    cursor: not-allowed;
    text-decoration: line-through;
}

.daterangepicker .calendar-time {
    text-align: center;
    margin: 4px auto 0 auto;
    line-height: 30px;
    position: relative;
}

.daterangepicker .calendar-time select.disabled {
    color: #ccc;
    cursor: not-allowed;
}

@media only screen and (max-width: 640px) {
    .daterangepicker {
        max-width: 300px;
    }

    .daterangepicker::before {
        content: none;
    }

    .daterangepicker .drp-calendar {
        max-width: none;
    }

    .daterangepicker .drp-calendar.left, .daterangepicker .drp-calendar.right {
        float: none;
    }

    .daterangepicker .drp-buttons {
        text-align: center;
    }

    .daterangepicker .drp-buttons .button--cancel {
        margin-left: 0;
    }

    .daterangepicker .drp-selected {
        display: block;
    }
}

body.compensate-for-scrollbar {
    overflow: hidden;
}

.fancybox-active {
    height: auto;
}

.fancybox-is-hidden {
    left: -9999px;
    margin: 0;
    position: absolute !important;
    top: -9999px;
    visibility: hidden;
}

.fancybox-container {
    -webkit-backface-visibility: hidden;
    height: 100%;
    left: 0;
    outline: none;
    position: fixed;
    -webkit-tap-highlight-color: transparent;
    top: 0;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    width: 100%;
    z-index: 99992;
}

.fancybox-container * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.fancybox-outer, .fancybox-inner, .fancybox-bg, .fancybox-stage {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.fancybox-outer {
    -webkit-overflow-scrolling: touch;
    overflow-y: auto;
}

.fancybox-bg {
    background: #1e1e1e;
    opacity: 0;
    -webkit-transition-duration: inherit;
    -o-transition-duration: inherit;
    transition-duration: inherit;
    -webkit-transition-property: opacity;
    -o-transition-property: opacity;
    transition-property: opacity;
    -webkit-transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
    -o-transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
    transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
}

.fancybox-is-open .fancybox-bg {
    opacity: 0.9;
    -webkit-transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
    -o-transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
    transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}

.fancybox-infobar, .fancybox-toolbar, .fancybox-caption, .fancybox-navigation .fancybox-button {
    direction: ltr;
    opacity: 0;
    position: absolute;
    -webkit-transition: opacity 0.25s ease, visibility 0s ease 0.25s;
    -o-transition: opacity 0.25s ease, visibility 0s ease 0.25s;
    transition: opacity 0.25s ease, visibility 0s ease 0.25s;
    visibility: hidden;
    z-index: 99997;
}

.fancybox-show-infobar .fancybox-infobar, .fancybox-show-toolbar .fancybox-toolbar, .fancybox-show-caption .fancybox-caption, .fancybox-show-nav .fancybox-navigation .fancybox-button {
    opacity: 1;
    -webkit-transition: opacity 0.25s ease 0s, visibility 0s ease 0s;
    -o-transition: opacity 0.25s ease 0s, visibility 0s ease 0s;
    transition: opacity 0.25s ease 0s, visibility 0s ease 0s;
    visibility: visible;
}

.fancybox-infobar {
    color: #ccc;
    font-size: 13px;
    -webkit-font-smoothing: subpixel-antialiased;
    height: 44px;
    left: 0;
    line-height: 44px;
    min-width: 44px;
    mix-blend-mode: difference;
    padding: 0 10px;
    pointer-events: none;
    top: 0;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.fancybox-toolbar {
    right: 0;
    top: 0;
}

.fancybox-stage {
    direction: ltr;
    overflow: visible;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    z-index: 99994;
}

.fancybox-is-open .fancybox-stage {
    overflow: hidden;
}

.fancybox-slide {
    -webkit-backface-visibility: hidden;
    /* Using without prefix would break IE11 */
    display: none;
    height: 100%;
    left: 0;
    outline: none;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    padding: 44px;
    position: absolute;
    text-align: center;
    top: 0;
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    -o-transition-property: transform, opacity;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform;
    white-space: normal;
    width: 100%;
    z-index: 99994;
}

.fancybox-slide::before {
    content: "";
    display: inline-block;
    font-size: 0;
    height: 100%;
    vertical-align: middle;
    width: 0;
}

.fancybox-is-sliding .fancybox-slide, .fancybox-slide--previous, .fancybox-slide--current, .fancybox-slide--next {
    display: block;
}

.fancybox-slide--image {
    overflow: hidden;
    padding: 44px 0;
}

.fancybox-slide--image::before {
    display: none;
}

.fancybox-slide--html {
    padding: 6px;
}

.fancybox-content {
    background: #fff;
    display: inline-block;
    margin: 0;
    max-width: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    padding: 44px;
    position: relative;
    text-align: left;
    vertical-align: middle;
}

.fancybox-slide--image .fancybox-content {
    -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
    animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
    -webkit-backface-visibility: hidden;
    background: transparent;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    left: 0;
    max-width: none;
    overflow: visible;
    padding: 0;
    position: absolute;
    top: 0;
    -ms-transform-origin: top left;
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    -o-transition-property: transform, opacity;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 99995;
}

.fancybox-can-zoomOut .fancybox-content {
    cursor: -webkit-zoom-out;
    cursor: zoom-out;
}

.fancybox-can-zoomIn .fancybox-content {
    cursor: -webkit-zoom-in;
    cursor: zoom-in;
}

.fancybox-can-swipe .fancybox-content, .fancybox-can-pan .fancybox-content {
    cursor: -webkit-grab;
    cursor: grab;
}

.fancybox-is-grabbing .fancybox-content {
    cursor: -webkit-grabbing;
    cursor: grabbing;
}

.fancybox-container [data-selectable="true"] {
    cursor: text;
}

.fancybox-image, .fancybox-spaceball {
    background: transparent;
    border: 0;
    height: 100%;
    left: 0;
    margin: 0;
    max-height: none;
    max-width: none;
    padding: 0;
    position: absolute;
    top: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 100%;
}

.fancybox-spaceball {
    z-index: 1;
}

.fancybox-slide--video .fancybox-content, .fancybox-slide--map .fancybox-content, .fancybox-slide--pdf .fancybox-content, .fancybox-slide--iframe .fancybox-content {
    height: 100%;
    overflow: visible;
    padding: 0;
    width: 100%;
}

.fancybox-slide--video .fancybox-content {
    background: #000;
}

.fancybox-slide--map .fancybox-content {
    background: #e5e3df;
}

.fancybox-slide--iframe .fancybox-content {
    background: #fff;
}

.fancybox-slide--iframe.fancybox-slide--request-meeting .fancybox-content {
    background: transparent;
}

.fancybox-video, .fancybox-iframe {
    background: transparent;
    border: 0;
    display: block;
    height: 100%;
    margin: 0;
    overflow: hidden;
    padding: 0;
    width: 100%;
}

.fancybox-iframe {
    left: 0;
    position: absolute;
    top: 0;
}

.fancybox-error {
    background: #fff;
    cursor: default;
    max-width: 400px;
    padding: 40px;
    width: 100%;
}

.fancybox-error p {
    color: #444;
    font-size: 16px;
    line-height: 20px;
    margin: 0;
    padding: 0;
}

.fancybox-button {
    background: rgba(30, 30, 30, 0.6);
    border: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    cursor: pointer;
    display: inline-block;
    height: 44px;
    margin: 0;
    padding: 10px;
    position: relative;
    -webkit-transition: color 0.2s;
    -o-transition: color 0.2s;
    transition: color 0.2s;
    vertical-align: top;
    visibility: inherit;
    width: 44px;
}

.fancybox-button, .fancybox-button:visited, .fancybox-button:link {
    color: #ccc;
}

.fancybox-button:hover {
    color: #fff;
}

.fancybox-button:focus {
    outline: none;
}

.fancybox-button.fancybox-focus {
    outline: 1px solid dotted;
}

.fancybox-button[disabled], .fancybox-button[disabled]:hover {
    color: #888;
    cursor: default;
    outline: none;
}

.fancybox-button div {
    height: 100%;
}

.fancybox-button svg {
    display: block;
    height: 100%;
    overflow: visible;
    position: relative;
    width: 100%;
}

.fancybox-button svg path {
    fill: currentcolor;
    stroke-width: 0;
}

.fancybox-button--play svg:nth-child(2), .fancybox-button--fsenter svg:nth-child(2) {
    display: none;
}

.fancybox-button--pause svg:nth-child(1), .fancybox-button--fsexit svg:nth-child(1) {
    display: none;
}

.fancybox-progress {
    background: #ff5268;
    height: 2px;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    -ms-transform: scaleX(0);
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -ms-transform-origin: 0;
    -webkit-transform-origin: 0;
    transform-origin: 0;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    -o-transition-property: transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-timing-function: linear;
    -o-transition-timing-function: linear;
    transition-timing-function: linear;
    z-index: 99998;
}

.fancybox-close-small {
    background: transparent;
    border: 0;
    border-radius: 0;
    color: #ccc;
    cursor: pointer;
    opacity: 0.8;
    padding: 8px;
    position: absolute;
    right: -12px;
    top: -44px;
    z-index: 401;
}

.fancybox-close-small:hover {
    color: #fff;
    opacity: 1;
}

.fancybox-slide--html .fancybox-close-small {
    color: currentcolor;
    padding: 10px;
    right: 0;
    top: 0;
}

.fancybox-slide--image.fancybox-is-scaling .fancybox-content {
    overflow: hidden;
}

.fancybox-is-scaling .fancybox-close-small, .fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small {
    display: none;
}

.fancybox-navigation .fancybox-button {
    background-clip: content-box;
    height: 100px;
    opacity: 0;
    position: absolute;
    top: calc(50% - 50px);
    width: 70px;
}

.fancybox-navigation .fancybox-button div {
    padding: 7px;
}

.fancybox-navigation .fancybox-button--arrow_left {
    left: 0;
    left: env(safe-area-inset-left);
    padding: 31px 26px 31px 6px;
}

.fancybox-navigation .fancybox-button--arrow_right {
    padding: 31px 6px 31px 26px;
    right: 0;
    right: env(safe-area-inset-right);
}

.fancybox-caption {
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.85)), color-stop(50%, rgba(0, 0, 0, 0.3)), color-stop(65%, rgba(0, 0, 0, 0.15)), color-stop(75.5%, rgba(0, 0, 0, 0.075)), color-stop(82.85%, rgba(0, 0, 0, 0.037)), color-stop(88%, rgba(0, 0, 0, 0.019)), to(rgba(0, 0, 0, 0)));
    background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.15) 65%, rgba(0, 0, 0, 0.075) 75.5%, rgba(0, 0, 0, 0.037) 82.85%, rgba(0, 0, 0, 0.019) 88%, rgba(0, 0, 0, 0) 100%);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.15) 65%, rgba(0, 0, 0, 0.075) 75.5%, rgba(0, 0, 0, 0.037) 82.85%, rgba(0, 0, 0, 0.019) 88%, rgba(0, 0, 0, 0) 100%);
    bottom: 0;
    color: #eee;
    font-size: 14px;
    font-weight: 400;
    left: 0;
    line-height: 1.5;
    padding: 75px 44px 25px 44px;
    pointer-events: none;
    right: 0;
    text-align: center;
    z-index: 99996;
}

.fancybox-caption--separate {
    margin-top: -50px;
}

.fancybox-caption_body {
    max-height: 50vh;
    overflow: auto;
    pointer-events: all;
}

.fancybox-caption a, .fancybox-caption a:link, .fancybox-caption a:visited {
    color: #ccc;
    text-decoration: none;
}

.fancybox-caption a:hover {
    color: #fff;
    text-decoration: underline;
}

.fancybox-loading {
    -webkit-animation: fancybox-rotate 1s linear infinite;
    animation: fancybox-rotate 1s linear infinite;
    background: transparent;
    border: 4px solid #888;
    border-bottom-color: #fff;
    border-radius: 50%;
    height: 50px;
    left: 50%;
    margin: -25px 0 0 -25px;
    opacity: 0.7;
    padding: 0;
    position: absolute;
    top: 50%;
    width: 50px;
    z-index: 99999;
}

@-webkit-keyframes fancybox-rotate {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes fancybox-rotate {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.fancybox-animated {
    -webkit-transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
    -o-transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
    transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
}

.fancybox-fx-slide.fancybox-slide--previous {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--next {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--current {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.fancybox-fx-fade.fancybox-slide--previous, .fancybox-fx-fade.fancybox-slide--next {
    opacity: 0;
    -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
    -o-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.fancybox-fx-fade.fancybox-slide--current {
    opacity: 1;
}

.fancybox-fx-zoom-in-out.fancybox-slide--previous {
    opacity: 0;
    -webkit-transform: scale3d(1.5, 1.5, 1.5);
    transform: scale3d(1.5, 1.5, 1.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--next {
    opacity: 0;
    -webkit-transform: scale3d(0.5, 0.5, 0.5);
    transform: scale3d(0.5, 0.5, 0.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--current {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
}

.fancybox-fx-rotate.fancybox-slide--previous {
    opacity: 0;
    -ms-transform: rotate(-360deg);
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
}

.fancybox-fx-rotate.fancybox-slide--next {
    opacity: 0;
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
}

.fancybox-fx-rotate.fancybox-slide--current {
    opacity: 1;
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
}

.fancybox-fx-circular.fancybox-slide--previous {
    opacity: 0;
    -webkit-transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
    transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--next {
    opacity: 0;
    -webkit-transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
    transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--current {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
    transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
}

.fancybox-fx-tube.fancybox-slide--previous {
    -webkit-transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
    transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
}

.fancybox-fx-tube.fancybox-slide--next {
    -webkit-transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
    transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
}

.fancybox-fx-tube.fancybox-slide--current {
    -webkit-transform: translate3d(0, 0, 0) scale(1);
    transform: translate3d(0, 0, 0) scale(1);
}

@media all and (max-width: 768px) {
    .fancybox-slide {
        padding-left: 6px;
        padding-right: 6px;
    }

    .fancybox-slide--image {
        padding: 6px 0;
    }

    .fancybox-close-small {
        right: -6px;
    }

    .fancybox-slide--image .fancybox-close-small {
        background: #4e4e4e;
        color: #f2f4f6;
        height: 36px;
        opacity: 1;
        padding: 6px;
        right: 0;
        top: 0;
        width: 36px;
    }

    .fancybox-caption {
        padding-left: 12px;
        padding-right: 12px;
    }
}

.fancybox-share {
    background: #f4f4f4;
    border-radius: 3px;
    max-width: 90%;
    padding: 30px;
    text-align: center;
}

.fancybox-share h1 {
    color: #222;
    font-size: 35px;
    font-weight: 700;
    margin: 0 0 20px 0;
}

.fancybox-share p {
    margin: 0;
    padding: 0;
}

.fancybox-share_button {
    border: 0;
    border-radius: 3px;
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    line-height: 40px;
    margin: 0 5px 10px 5px;
    min-width: 130px;
    padding: 0 15px;
    text-decoration: none;
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap;
}

.fancybox-share_button:visited, .fancybox-share_button:link {
    color: #fff;
}

.fancybox-share_button:hover {
    text-decoration: none;
}

.fancybox-share_button--fb {
    background: #3b5998;
}

.fancybox-share_button--fb:hover {
    background: #344e86;
}

.fancybox-share_button--pt {
    background: #bd081d;
}

.fancybox-share_button--pt:hover {
    background: #aa0719;
}

.fancybox-share_button--tw {
    background: #1da1f2;
}

.fancybox-share_button--tw:hover {
    background: #0d95e8;
}

.fancybox-share_button svg {
    height: 25px;
    margin-right: 7px;
    position: relative;
    top: -1px solid;
    vertical-align: middle;
    width: 25px;
}

.fancybox-share_button svg path {
    fill: #fff;
}

.fancybox-share_input {
    background: transparent;
    border: 0;
    border-bottom: 1px solid solid #d7d7d7;
    border-radius: 0;
    color: #5d5b5b;
    font-size: 14px;
    margin: 10px 0 0 0;
    outline: none;
    padding: 10px 15px;
    width: 100%;
}

.fancybox-thumbs {
    background: #ddd;
    bottom: 0;
    display: none;
    margin: 0;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    padding: 2px 2px 4px 2px;
    position: absolute;
    right: 0;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    top: 0;
    width: 212px;
    z-index: 99995;
}

.fancybox-thumbs-x {
    overflow-x: auto;
    overflow-y: hidden;
}

.fancybox-show-thumbs .fancybox-thumbs {
    display: block;
}

.fancybox-show-thumbs .fancybox-inner {
    right: 212px;
}

.fancybox-thumbs_list {
    font-size: 0;
    height: 100%;
    list-style: none;
    margin: 0;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 0;
    position: absolute;
    position: relative;
    white-space: nowrap;
    width: 100%;
}

.fancybox-thumbs-x .fancybox-thumbs_list {
    overflow: hidden;
}

.fancybox-thumbs-y .fancybox-thumbs_list::-webkit-scrollbar {
    width: 7px;
}

.fancybox-thumbs-y .fancybox-thumbs_list::-webkit-scrollbar-track {
    background: #fff;
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.fancybox-thumbs-y .fancybox-thumbs_list::-webkit-scrollbar-thumb {
    background: #2a2a2a;
    border-radius: 10px;
}

.fancybox-thumbs_list a {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    background-color: rgba(0, 0, 0, 0.1);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    cursor: pointer;
    float: left;
    height: 75px;
    margin: 2px;
    max-height: calc(100% - 8px);
    max-width: calc(50% - 4px);
    outline: none;
    overflow: hidden;
    padding: 0;
    position: relative;
    -webkit-tap-highlight-color: transparent;
    width: 100px;
}

.fancybox-thumbs_list a::before {
    border: 6px solid #ff5268;
    bottom: 0;
    content: "";
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -o-transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 99991;
}

.fancybox-thumbs_list a:focus::before {
    opacity: 0.5;
}

.fancybox-thumbs_list a.fancybox-thumbs-active::before {
    opacity: 1;
}

@media all and (max-width: 576px) {
    .fancybox-thumbs {
        width: 110px;
    }

    .fancybox-show-thumbs .fancybox-inner {
        right: 110px;
    }

    .fancybox-thumbs_list a {
        max-width: calc(100% - 10px);
    }
}

/* ==================================
   -------- Evergreen Fancybox --------
  ================================== */
.evergreen.fancybox-slide, .evergreen.evg-fancybox-slide {
    background-color: inherit;
}

.evergreen.fancybox-slide .fancybox-close-small, .evergreen.fancybox-slide .evg-fancybox-close-small, .evergreen.evg-fancybox-slide .fancybox-close-small, .evergreen.evg-fancybox-slide .evg-fancybox-close-small {
    font-size: 13px;
}

.evg-fancybox {
    /* Fix iOS */
    /* Close button on the top right corner of html content */
    /* Loading indicator */
    /* Caption */
    /* Navigation arrows */
    /* Transition effects */
    /* Thumbs */
}

.evg-fancybox-active {
    height: auto;
}

.evg-fancybox-is-hidden {
    left: -9999px;
    margin: 0;
    position: absolute !important;
    top: -9999px;
    visibility: hidden;
}

.evg-fancybox-container {
    -webkit-backface-visibility: hidden;
    height: 100%;
    left: 0;
    outline: none;
    position: fixed;
    -webkit-tap-highlight-color: transparent;
    top: 0;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    width: 100%;
    z-index: 99992;
}

.evg-fancybox-container * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.evg-fancybox-container [data-selectable="true"] {
    cursor: text;
}

.evg-fancybox-outer, .evg-fancybox-inner, .evg-fancybox-bg, .evg-fancybox-stage {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.evg-fancybox-outer {
    -webkit-overflow-scrolling: touch;
    overflow-y: auto;
}

.evg-fancybox-bg {
    background: #1e1e1e;
    opacity: 0;
    -webkit-transition-duration: inherit;
    -o-transition-duration: inherit;
    transition-duration: inherit;
    -webkit-transition-property: opacity;
    -o-transition-property: opacity;
    transition-property: opacity;
    -webkit-transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
    -o-transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
    transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
}

.evg-fancybox-is-open .evg-fancybox-bg {
    opacity: 0.9;
    -webkit-transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
    -o-transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
    transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}

.evg-fancybox-is-open .evg-fancybox-stage {
    overflow: hidden;
}

.evg-fancybox-infobar, .evg-fancybox-toolbar, .evg-fancybox-caption, .evg-fancybox-navigation .evg-fancybox-button {
    direction: ltr;
    opacity: 0;
    position: absolute;
    -webkit-transition: opacity 0.25s ease, visibility 0s ease 0.25s;
    -o-transition: opacity 0.25s ease, visibility 0s ease 0.25s;
    transition: opacity 0.25s ease, visibility 0s ease 0.25s;
    visibility: hidden;
    z-index: 99997;
}

.evg-fancybox-show-infobar .evg-fancybox-infobar, .evg-fancybox-show-toolbar .evg-fancybox-toolbar, .evg-fancybox-show-caption .evg-fancybox-caption, .evg-fancybox-show-nav .evg-fancybox-navigation .evg-fancybox-button {
    opacity: 1;
    -webkit-transition: opacity 0.25s ease 0s, visibility 0s ease 0s;
    -o-transition: opacity 0.25s ease 0s, visibility 0s ease 0s;
    transition: opacity 0.25s ease 0s, visibility 0s ease 0s;
    visibility: visible;
}

.evg-fancybox-infobar {
    color: #ccc;
    font-size: 13px;
    -webkit-font-smoothing: subpixel-antialiased;
    height: 44px;
    left: 0;
    line-height: 44px;
    min-width: 44px;
    mix-blend-mode: difference;
    padding: 0 10px;
    pointer-events: none;
    top: 0;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.evg-fancybox-toolbar {
    right: 0;
    top: 0;
}

.evg-fancybox-stage {
    direction: ltr;
    overflow: visible;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    z-index: 99994;
}

.evg-fancybox-slide {
    -webkit-backface-visibility: hidden;
    /* Using without prefix would break IE11 */
    display: none;
    height: 100%;
    left: 0;
    outline: none;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    padding: 44px;
    position: absolute;
    text-align: center;
    top: 0;
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    -o-transition-property: transform, opacity;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform;
    white-space: normal;
    width: 100%;
    z-index: 99994;
}

.evg-fancybox-slide::before {
    content: "";
    display: inline-block;
    font-size: 0;
    height: 100%;
    vertical-align: middle;
    width: 0;
}

.evg-fancybox-slide--previous, .evg-fancybox-slide--current, .evg-fancybox-slide--next {
    display: block;
}

.evg-fancybox-slide--image {
    overflow: hidden;
    padding: 44px 0;
}

.evg-fancybox-slide--image::before {
    display: none;
}

.evg-fancybox-slide--image .evg-fancybox-content {
    -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
    animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
    -webkit-backface-visibility: hidden;
    background: transparent;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    left: 0;
    max-width: none;
    overflow: visible;
    padding: 0;
    position: absolute;
    top: 0;
    -ms-transform-origin: top left;
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    -o-transition-property: transform, opacity;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 99995;
}

.evg-fancybox-slide--html {
    padding: 6px;
}

.evg-fancybox-slide--video .evg-fancybox-content, .evg-fancybox-slide--map .evg-fancybox-content, .evg-fancybox-slide--pdf .evg-fancybox-content, .evg-fancybox-slide--iframe .evg-fancybox-content {
    height: 100%;
    overflow: visible;
    padding: 0;
    width: 100%;
}

.evg-fancybox-slide--video .evg-fancybox-content {
    background: #000;
}

.evg-fancybox-slide--map .evg-fancybox-content {
    background: #e5e3df;
}

.evg-fancybox-slide--iframe .evg-fancybox-content {
    background: #fff;
}

.evg-fancybox-is-sliding .evg-fancybox-slide {
    display: block;
}

.evg-fancybox-content {
    background: #fff;
    display: inline-block;
    margin: 0;
    max-width: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    padding: 44px;
    position: relative;
    text-align: left;
    vertical-align: middle;
}

.evg-fancybox-can-zoomOut .evg-fancybox-content {
    cursor: -webkit-zoom-out;
    cursor: zoom-out;
}

.evg-fancybox-can-zoomIn .evg-fancybox-content {
    cursor: -webkit-zoom-in;
    cursor: zoom-in;
}

.evg-fancybox-can-swipe .evg-fancybox-content, .evg-fancybox-can-pan .evg-fancybox-content {
    cursor: -webkit-grab;
    cursor: grab;
}

.evg-fancybox-is-grabbing .evg-fancybox-content {
    cursor: -webkit-grabbing;
    cursor: grabbing;
}

.evg-fancybox-image, .evg-fancybox-spaceball {
    background: transparent;
    border: 0;
    height: 100%;
    left: 0;
    margin: 0;
    max-height: none;
    max-width: none;
    padding: 0;
    position: absolute;
    top: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 100%;
}

.evg-fancybox-spaceball {
    z-index: 1;
}

.evg-fancybox-video, .evg-fancybox-iframe {
    background: transparent;
    border: 0;
    display: block;
    height: 100%;
    margin: 0;
    overflow: hidden;
    padding: 0;
    width: 100%;
}

.evg-fancybox-iframe {
    left: 0;
    position: absolute;
    top: 0;
}

.evg-fancybox-error {
    background: #fff;
    cursor: default;
    max-width: 400px;
    padding: 40px;
    width: 100%;
}

.evg-fancybox-error p {
    color: #444;
    font-size: 16px;
    line-height: 20px;
    margin: 0;
    padding: 0;
}

.evg-fancybox-button {
    background: rgba(30, 30, 30, 0.6);
    border: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    cursor: pointer;
    display: inline-block;
    height: 44px;
    margin: 0;
    padding: 10px;
    position: relative;
    -webkit-transition: color 0.2s;
    -o-transition: color 0.2s;
    transition: color 0.2s;
    vertical-align: top;
    visibility: inherit;
    width: 44px;
    color: #ccc;
    /* Fix IE11 */
}

.evg-fancybox-button:visited, .evg-fancybox-button:link {
    color: #ccc;
}

.evg-fancybox-button:hover {
    color: #fff;
}

.evg-fancybox-button:focus {
    outline: none;
}

.evg-fancybox-button.evg-fancybox-focus {
    outline: 1px solid dotted;
}

.evg-fancybox-button[disabled], .evg-fancybox-button[disabled]:hover {
    color: #888;
    cursor: default;
    outline: none;
}

.evg-fancybox-button div {
    height: 100%;
}

.evg-fancybox-button svg {
    display: block;
    height: 100%;
    overflow: visible;
    position: relative;
    width: 100%;
}

.evg-fancybox-button svg path {
    fill: currentcolor;
    stroke-width: 0;
}

.evg-fancybox-button--play svg:nth-child(2), .evg-fancybox-button--fsenter svg:nth-child(2) {
    display: none;
}

.evg-fancybox-button--pause svg:nth-child(1), .evg-fancybox-button--fsexit svg:nth-child(1) {
    display: none;
}

.evg-fancybox-progress {
    background: #ff5268;
    height: 2px;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    -ms-transform: scaleX(0);
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -ms-transform-origin: 0;
    -webkit-transform-origin: 0;
    transform-origin: 0;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    -o-transition-property: transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-timing-function: linear;
    -o-transition-timing-function: linear;
    transition-timing-function: linear;
    z-index: 99998;
}

.evg-fancybox-close-small {
    background: transparent;
    border: 0;
    border-radius: 0;
    color: #ccc;
    cursor: pointer;
    opacity: 0.8;
    padding: 8px;
    position: absolute;
    right: -12px;
    top: -44px;
    z-index: 401;
}

.evg-fancybox-close-small:hover {
    color: #fff;
    opacity: 1;
}

.evg-fancybox--html .evg-fancybox-close-small {
    color: currentcolor;
    padding: 10px;
    right: 0;
    top: 0;
}

.evg-fancybox-loading {
    -webkit-animation: evg-fancybox-rotate 1s linear infinite;
    animation: evg-fancybox-rotate 1s linear infinite;
    background: transparent;
    border: 4px solid #888;
    border-bottom-color: #fff;
    border-radius: 50%;
    height: 50px;
    left: 50%;
    margin: -25px 0 0 -25px;
    opacity: 0.7;
    padding: 0;
    position: absolute;
    top: 50%;
    width: 50px;
    z-index: 99999;
}

.evg-fancybox-caption {
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.85)), color-stop(50%, rgba(0, 0, 0, 0.3)), color-stop(65%, rgba(0, 0, 0, 0.15)), color-stop(75.5%, rgba(0, 0, 0, 0.075)), color-stop(82.85%, rgba(0, 0, 0, 0.037)), color-stop(88%, rgba(0, 0, 0, 0.019)), to(rgba(0, 0, 0, 0)));
    background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.15) 65%, rgba(0, 0, 0, 0.075) 75.5%, rgba(0, 0, 0, 0.037) 82.85%, rgba(0, 0, 0, 0.019) 88%, rgba(0, 0, 0, 0) 100%);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.15) 65%, rgba(0, 0, 0, 0.075) 75.5%, rgba(0, 0, 0, 0.037) 82.85%, rgba(0, 0, 0, 0.019) 88%, rgba(0, 0, 0, 0) 100%);
    bottom: 0;
    color: #eee;
    font-size: 14px;
    font-weight: 400;
    left: 0;
    line-height: 1.5;
    padding: 75px 44px 25px 44px;
    pointer-events: none;
    right: 0;
    text-align: center;
    z-index: 99996;
}

.evg-fancybox-caption--separate {
    margin-top: -50px;
}

.evg-fancybox-caption_body {
    max-height: 50vh;
    overflow: auto;
    pointer-events: all;
}

.evg-fancybox-caption a, .evg-fancybox-caption a:link, .evg-fancybox-caption a:visited {
    color: #ccc;
    text-decoration: none;
}

.evg-fancybox-caption a:hover {
    color: #fff;
    text-decoration: underline;
}

.evg-fancybox-navigation .evg-fancybox-button {
    background-clip: content-box;
    height: 100px;
    opacity: 0;
    position: absolute;
    top: calc(50% - 50px);
    width: 70px;
}

.evg-fancybox-navigation .evg-fancybox-button--arrow_left {
    left: 0;
    left: env(safe-area-inset-left);
    padding: 31px 26px 31px 6px;
}

.evg-fancybox-navigation .evg-fancybox-button--arrow_right {
    padding: 31px 6px 31px 26px;
    right: 0;
    right: env(safe-area-inset-right);
}

.evg-fancybox-navigation .evg-fancybox-button div {
    padding: 7px;
}

.evg-fancybox-animated {
    -webkit-transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
    -o-transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
    transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
}

.evg-fancybox-thumbs {
    background: #ddd;
    bottom: 0;
    display: none;
    margin: 0;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    padding: 2px 2px 4px 2px;
    position: absolute;
    right: 0;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    top: 0;
    width: 212px;
    z-index: 99995;
}

.evg-fancybox-show-thumbs .evg-fancybox-thumbs {
    display: block;
}

.evg-fancybox-thumbs_list {
    font-size: 0;
    height: 100%;
    list-style: none;
    margin: 0;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 0;
    position: absolute;
    position: relative;
    white-space: nowrap;
    width: 100%;
}

.evg-fancybox-slide--iframe.evg-fancybox-slide--request-meeting .evg-fancybox-content {
    background: transparent;
}

.evg-fancybox-slide--image.evg-fancybox-is-scaling .evg-fancybox-content {
    overflow: hidden;
}

.evg-fancybox-is-scaling .evg-fancybox-close-small, .evg-fancybox-is-zoomable.evg-fancybox-can-pan .evg-fancybox-close-small {
    display: none;
}

@-webkit-keyframes evg-fancybox-rotate {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes evg-fancybox-rotate {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/* transitionEffect: slide */
.evg-fancybox-fx-slide.evg-fancybox-slide--previous {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
}

.evg-fancybox-fx-slide.evg-fancybox-slide--next {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
}

.evg-fancybox-fx-slide.evg-fancybox-slide--current {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

/* transitionEffect: fade */
.evg-fancybox-fx-fade.evg-fancybox-slide--previous, .evg-fancybox-fx-fade.evg-fancybox-slide--next {
    opacity: 0;
    -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
    -o-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.evg-fancybox-fx-fade.evg-fancybox-slide--current {
    opacity: 1;
}

/* transitionEffect: zoom-in-out */
.evg-fancybox-fx-zoom-in-out.evg-fancybox-slide--previous {
    opacity: 0;
    -webkit-transform: scale3d(1.5, 1.5, 1.5);
    transform: scale3d(1.5, 1.5, 1.5);
}

.evg-fancybox-fx-zoom-in-out.evg-fancybox-slide--next {
    opacity: 0;
    -webkit-transform: scale3d(0.5, 0.5, 0.5);
    transform: scale3d(0.5, 0.5, 0.5);
}

.evg-fancybox-fx-zoom-in-out.evg-fancybox-slide--current {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
}

/* transitionEffect: rotate */
.evg-fancybox-fx-rotate.evg-fancybox-slide--previous {
    opacity: 0;
    -ms-transform: rotate(-360deg);
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
}

.evg-fancybox-fx-rotate.evg-fancybox-slide--next {
    opacity: 0;
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
}

.evg-fancybox-fx-rotate.evg-fancybox-slide--current {
    opacity: 1;
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
}

/* transitionEffect: circular */
.evg-fancybox-fx-circular.evg-fancybox-slide--previous {
    opacity: 0;
    -webkit-transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
    transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
}

.evg-fancybox-fx-circular.evg-fancybox-slide--next {
    opacity: 0;
    -webkit-transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
    transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
}

.evg-fancybox-fx-circular.evg-fancybox-slide--current {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
    transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
}

/* transitionEffect: tube */
.evg-fancybox-fx-tube.evg-fancybox-slide--previous {
    -webkit-transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
    transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
}

.evg-fancybox-fx-tube.evg-fancybox-slide--next {
    -webkit-transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
    transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
}

.evg-fancybox-fx-tube.evg-fancybox-slide--current {
    -webkit-transform: translate3d(0, 0, 0) scale(1);
    transform: translate3d(0, 0, 0) scale(1);
}

/* Styling for Small-Screen Devices */
@media all and (max-width: 768px) {
    .evg-fancybox-slide {
        padding-left: 6px;
        padding-right: 6px;
    }

    .evg-fancybox-slide--image {
        padding: 6px 0;
    }

    .evg-fancybox-slide--image .evg-fancybox-close-small {
        background: #4e4e4e;
        color: #f2f4f6;
        height: 36px;
        opacity: 1;
        padding: 6px;
        right: 0;
        top: 0;
        width: 36px;
    }

    .evg-fancybox-close-small {
        right: -6px;
    }

    .evg-fancybox-slide--image .evg-fancybox-caption {
        padding-left: 12px;
        padding-right: 12px;
    }
}

/* Share */
.evg-fancybox-share {
    background: #f4f4f4;
    border-radius: 3px;
    max-width: 90%;
    padding: 30px;
    text-align: center;
}

.evg-fancybox-share_button {
    border: 0;
    border-radius: 3px;
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    line-height: 40px;
    margin: 0 5px 10px 5px;
    min-width: 130px;
    padding: 0 15px;
    text-decoration: none;
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap;
}

.evg-fancybox-share_button:visited, .evg-fancybox-share_button:link {
    color: #fff;
}

.evg-fancybox-share_button:hover {
    text-decoration: none;
}

.evg-fancybox-share_button--fb {
    background: #3b5998;
}

.evg-fancybox-share_button--fb:hover {
    background: #344e86;
}

.evg-fancybox-share_button--pt {
    background: #bd081d;
}

.evg-fancybox-share_button--pt:hover {
    background: #aa0719;
}

.evg-fancybox-share_button--tw {
    background: #1da1f2;
}

.evg-fancybox-share_button--tw:hover {
    background: #0d95e8;
}

.evg-fancybox-share_button svg {
    height: 25px;
    margin-right: 7px;
    position: relative;
    top: -1px solid;
    vertical-align: middle;
    width: 25px;
}

.evg-fancybox-share_button svg path {
    fill: #fff;
}

.evg-fancybox-share_input {
    background: transparent;
    border: 0;
    border-bottom: 1px solid solid #d7d7d7;
    border-radius: 0;
    color: #5d5b5b;
    font-size: 14px;
    margin: 10px 0 0 0;
    outline: none;
    padding: 10px 15px;
    width: 100%;
}

.evg-fancybox-share h1 {
    color: #222;
    font-size: 35px;
    font-weight: 700;
    margin: 0 0 20px 0;
}

.evg-fancybox-share p {
    margin: 0;
    padding: 0;
}

.evg-fancybox-thumbs-x {
    overflow-x: auto;
    overflow-y: hidden;
}

.evg-fancybox-show-thumbs .evg-fancybox-inner {
    right: 212px;
}

.evg-fancybox-thumbs-x .evg-fancybox-thumbs_list {
    overflow: hidden;
}

.evg-fancybox-thumbs-y .evg-fancybox-thumbs_list::-webkit-scrollbar {
    width: 7px;
}

.evg-fancybox-thumbs-y .evg-fancybox-thumbs_list::-webkit-scrollbar-track {
    background: #fff;
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.evg-fancybox-thumbs-y .evg-fancybox-thumbs_list::-webkit-scrollbar-thumb {
    background: #2a2a2a;
    border-radius: 10px;
}

.evg-fancybox-thumbs_list a {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    background-color: rgba(0, 0, 0, 0.1);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    cursor: pointer;
    float: left;
    height: 75px;
    margin: 2px;
    max-height: calc(100% - 8px);
    max-width: calc(50% - 4px);
    outline: none;
    overflow: hidden;
    padding: 0;
    position: relative;
    -webkit-tap-highlight-color: transparent;
    width: 100px;
}

.evg-fancybox-thumbs_list a::before {
    border: 6px solid #ff5268;
    bottom: 0;
    content: "";
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -o-transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 99991;
}

.evg-fancybox-thumbs_list a:focus::before {
    opacity: 0.5;
}

.evg-fancybox-thumbs_list a.evg-fancybox-thumbs-active::before {
    opacity: 1;
}

/* Styling for Small-Screen Devices */
@media all and (max-width: 576px) {
    .evg-fancybox-thumbs {
        width: 110px;
    }

    .evg-fancybox-show-thumbs .evg-fancybox-inner {
        right: 110px;
    }

    .evg-fancybox-thumbs_list a {
        max-width: calc(100% - 10px);
    }
}

/* ==================================
  ----------- TOAST GRID -----------
  ================================== */
.grid {
    list-style: none;
    margin-left: -20px;
}

.grid--flex {
    margin-left: -20px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.grid--flex_column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.grid--flex_row-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.grid--flex_column-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
}

.grid--flex_justify-start {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: start;
}

.grid--flex_justify-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
}

.grid--flex_justify-end {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    text-align: end;
}

.grid--flex_align-top {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.grid--flex_align-middle {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.grid--flex_align-bottom {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.grid--flex_space-around {
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

.grid--flex_space-between {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.grid--flex .grid_col {
    display: block;
    margin-right: 0;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}

.grid_col--12-of-12, .grid_col--8-of-8, .grid_col--7-of-7, .grid_col--6-of-6, .grid_col--5-of-5, .grid_col--4-of-4, .grid_col--3-of-3, .grid_col--2-of-2, .grid_col--1-of-1 {
    width: 100%;
}

.grid_col--6-of-12, .grid_col--4-of-8, .grid_col--3-of-6, .grid_col--2-of-4, .grid_col--1-of-2 {
    width: 50%;
}

.grid_col--4-of-12, .grid_col--2-of-6, .grid_col--1-of-3 {
    width: 33.3333333333%;
}

.grid_col--8-of-12, .grid_col--4-of-6, .grid_col--2-of-3 {
    width: 66.6666666667%;
}

.grid_col--3-of-12, .grid_col--2-of-8, .grid_col--1-of-4 {
    width: 25%;
}

.grid_col--9-of-12, .grid_col--6-of-8, .grid_col--3-of-4 {
    width: 75%;
}

.grid--flex .grid_col--12-of-12, .grid--flex .grid_col--8-of-8, .grid--flex .grid_col--7-of-7, .grid--flex .grid_col--6-of-6, .grid--flex .grid_col--5-of-5, .grid--flex .grid_col--4-of-4, .grid--flex .grid_col--3-of-3, .grid--flex .grid_col--2-of-2, .grid--flex .grid_col--1-of-1 {
    width: auto;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
}

.grid--flex .grid_col--6-of-12, .grid--flex .grid_col--4-of-8, .grid--flex .grid_col--3-of-6, .grid--flex .grid_col--2-of-4, .grid--flex .grid_col--1-of-2 {
    width: auto;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
}

.grid--flex .grid_col--4-of-12, .grid--flex .grid_col--2-of-6, .grid--flex .grid_col--1-of-3 {
    width: auto;
    -ms-flex-preferred-size: 33.3333333333%;
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
}

.grid--flex .grid_col--8-of-12, .grid--flex .grid_col--4-of-6, .grid--flex .grid_col--2-of-3 {
    width: auto;
    -ms-flex-preferred-size: 66.6666666667%;
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
}

.grid--flex .grid_col--3-of-12, .grid--flex .grid_col--2-of-8, .grid--flex .grid_col--1-of-4 {
    width: auto;
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
}

.grid--flex .grid_col--9-of-12, .grid--flex .grid_col--6-of-8, .grid--flex .grid_col--3-of-4 {
    width: auto;
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
}

.grid_col--push-12-of-12, .grid_col--push-8-of-8, .grid_col--push-7-of-7, .grid_col--push-6-of-6, .grid_col--push-5-of-5, .grid_col--push-4-of-4, .grid_col--push-3-of-3, .grid_col--push-2-of-2, .grid_col--push-1-of-1 {
    margin-left: 100%;
}

.grid_col--push-6-of-12, .grid_col--push-4-of-8, .grid_col--push-3-of-6, .grid_col--push-2-of-4, .grid_col--push-1-of-2 {
    margin-left: 50%;
}

.grid_col--push-4-of-12, .grid_col--push-2-of-6, .grid_col--push-1-of-3 {
    margin-left: 33.3333333333%;
}

.grid_col--push-8-of-12, .grid_col--push-4-of-6, .grid_col--push-2-of-3 {
    margin-left: 66.6666666667%;
}

.grid_col--push-3-of-12, .grid_col--push-2-of-8, .grid_col--push-1-of-4 {
    margin-left: 25%;
}

.grid_col--push-9-of-12, .grid_col--push-6-of-8, .grid_col--push-3-of-4 {
    margin-left: 75%;
}

.grid_col--pull-12-of-12, .grid_col--pull-8-of-8, .grid_col--pull-7-of-7, .grid_col--pull-6-of-6, .grid_col--pull-5-of-5, .grid_col--pull-4-of-4, .grid_col--pull-3-of-3, .grid_col--pull-2-of-2, .grid_col--pull-1-of-1 {
    margin-left: -100%;
}

.grid_col--pull-6-of-12, .grid_col--pull-4-of-8, .grid_col--pull-3-of-6, .grid_col--pull-2-of-4, .grid_col--pull-1-of-2 {
    margin-left: -50%;
}

.grid_col--pull-4-of-12, .grid_col--pull-2-of-6, .grid_col--pull-1-of-3 {
    margin-left: -33.3333333333%;
}

.grid_col--pull-8-of-12, .grid_col--pull-4-of-6, .grid_col--pull-2-of-3 {
    margin-left: -66.6666666667%;
}

.grid_col--pull-3-of-12, .grid_col--pull-2-of-8, .grid_col--pull-1-of-4 {
    margin-left: -25%;
}

.grid_col--pull-9-of-12, .grid_col--pull-6-of-8, .grid_col--pull-3-of-4 {
    margin-left: -75%;
}

.grid_col--1-of-5 {
    width: 20%;
}

.grid--flex .grid_col--1-of-5 {
    width: auto;
    -ms-flex-preferred-size: 20%;
    flex-basis: 20%;
    max-width: 20%;
}

.grid_col--push-1-of-5 {
    margin-left: 20%;
}

.grid_col--pull-1-of-5 {
    margin-left: -20%;
}

.grid_col--2-of-5 {
    width: 40%;
}

.grid--flex .grid_col--2-of-5 {
    width: auto;
    -ms-flex-preferred-size: 40%;
    flex-basis: 40%;
    max-width: 40%;
}

.grid_col--push-2-of-5 {
    margin-left: 40%;
}

.grid_col--pull-2-of-5 {
    margin-left: -40%;
}

.grid_col--3-of-5 {
    width: 60%;
}

.grid--flex .grid_col--3-of-5 {
    width: auto;
    -ms-flex-preferred-size: 60%;
    flex-basis: 60%;
    max-width: 60%;
}

.grid_col--push-3-of-5 {
    margin-left: 60%;
}

.grid_col--pull-3-of-5 {
    margin-left: -60%;
}

.grid_col--4-of-5 {
    width: 80%;
}

.grid--flex .grid_col--4-of-5 {
    width: auto;
    -ms-flex-preferred-size: 80%;
    flex-basis: 80%;
    max-width: 80%;
}

.grid_col--push-4-of-5 {
    margin-left: 80%;
}

.grid_col--pull-4-of-5 {
    margin-left: -80%;
}

.grid_col--1-of-6 {
    width: 16.6666666667%;
}

.grid--flex .grid_col--1-of-6 {
    width: auto;
    -ms-flex-preferred-size: 16.6666666667%;
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
}

.grid_col--push-1-of-6 {
    margin-left: 16.6666666667%;
}

.grid_col--pull-1-of-6 {
    margin-left: -16.6666666667%;
}

.grid_col--5-of-6 {
    width: 83.3333333333%;
}

.grid--flex .grid_col--5-of-6 {
    width: auto;
    -ms-flex-preferred-size: 83.3333333333%;
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
}

.grid_col--push-5-of-6 {
    margin-left: 83.3333333333%;
}

.grid_col--pull-5-of-6 {
    margin-left: -83.3333333333%;
}

.grid_col--1-of-7 {
    width: 14.2857142857%;
}

.grid--flex .grid_col--1-of-7 {
    width: auto;
    -ms-flex-preferred-size: 14.2857142857%;
    flex-basis: 14.2857142857%;
    max-width: 14.2857142857%;
}

.grid_col--push-1-of-7 {
    margin-left: 14.2857142857%;
}

.grid_col--pull-1-of-7 {
    margin-left: -14.2857142857%;
}

.grid_col--2-of-7 {
    width: 28.5714285714%;
}

.grid--flex .grid_col--2-of-7 {
    width: auto;
    -ms-flex-preferred-size: 28.5714285714%;
    flex-basis: 28.5714285714%;
    max-width: 28.5714285714%;
}

.grid_col--push-2-of-7 {
    margin-left: 28.5714285714%;
}

.grid_col--pull-2-of-7 {
    margin-left: -28.5714285714%;
}

.grid_col--3-of-7 {
    width: 42.8571428571%;
}

.grid--flex .grid_col--3-of-7 {
    width: auto;
    -ms-flex-preferred-size: 42.8571428571%;
    flex-basis: 42.8571428571%;
    max-width: 42.8571428571%;
}

.grid_col--push-3-of-7 {
    margin-left: 42.8571428571%;
}

.grid_col--pull-3-of-7 {
    margin-left: -42.8571428571%;
}

.grid_col--4-of-7 {
    width: 57.1428571429%;
}

.grid--flex .grid_col--4-of-7 {
    width: auto;
    -ms-flex-preferred-size: 57.1428571429%;
    flex-basis: 57.1428571429%;
    max-width: 57.1428571429%;
}

.grid_col--push-4-of-7 {
    margin-left: 57.1428571429%;
}

.grid_col--pull-4-of-7 {
    margin-left: -57.1428571429%;
}

.grid_col--5-of-7 {
    width: 71.4285714286%;
}

.grid--flex .grid_col--5-of-7 {
    width: auto;
    -ms-flex-preferred-size: 71.4285714286%;
    flex-basis: 71.4285714286%;
    max-width: 71.4285714286%;
}

.grid_col--push-5-of-7 {
    margin-left: 71.4285714286%;
}

.grid_col--pull-5-of-7 {
    margin-left: -71.4285714286%;
}

.grid_col--6-of-7 {
    width: 85.7142857143%;
}

.grid--flex .grid_col--6-of-7 {
    width: auto;
    -ms-flex-preferred-size: 85.7142857143%;
    flex-basis: 85.7142857143%;
    max-width: 85.7142857143%;
}

.grid_col--push-6-of-7 {
    margin-left: 85.7142857143%;
}

.grid_col--pull-6-of-7 {
    margin-left: -85.7142857143%;
}

.grid_col--1-of-8 {
    width: 12.5%;
}

.grid--flex .grid_col--1-of-8 {
    width: auto;
    -ms-flex-preferred-size: 12.5%;
    flex-basis: 12.5%;
    max-width: 12.5%;
}

.grid_col--push-1-of-8 {
    margin-left: 12.5%;
}

.grid_col--pull-1-of-8 {
    margin-left: -12.5%;
}

.grid_col--3-of-8 {
    width: 37.5%;
}

.grid--flex .grid_col--3-of-8 {
    width: auto;
    -ms-flex-preferred-size: 37.5%;
    flex-basis: 37.5%;
    max-width: 37.5%;
}

.grid_col--push-3-of-8 {
    margin-left: 37.5%;
}

.grid_col--pull-3-of-8 {
    margin-left: -37.5%;
}

.grid_col--5-of-8 {
    width: 62.5%;
}

.grid--flex .grid_col--5-of-8 {
    width: auto;
    -ms-flex-preferred-size: 62.5%;
    flex-basis: 62.5%;
    max-width: 62.5%;
}

.grid_col--push-5-of-8 {
    margin-left: 62.5%;
}

.grid_col--pull-5-of-8 {
    margin-left: -62.5%;
}

.grid_col--7-of-8 {
    width: 87.5%;
}

.grid--flex .grid_col--7-of-8 {
    width: auto;
    -ms-flex-preferred-size: 87.5%;
    flex-basis: 87.5%;
    max-width: 87.5%;
}

.grid_col--push-7-of-8 {
    margin-left: 87.5%;
}

.grid_col--pull-7-of-8 {
    margin-left: -87.5%;
}

.grid_col--1-of-12 {
    width: 8.3333333333%;
}

.grid--flex .grid_col--1-of-12 {
    width: auto;
    -ms-flex-preferred-size: 8.3333333333%;
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
}

.grid_col--push-1-of-12 {
    margin-left: 8.3333333333%;
}

.grid_col--pull-1-of-12 {
    margin-left: -8.3333333333%;
}

.grid_col--2-of-12 {
    width: 16.6666666667%;
}

.grid--flex .grid_col--2-of-12 {
    width: auto;
    -ms-flex-preferred-size: 16.6666666667%;
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
}

.grid_col--push-2-of-12 {
    margin-left: 16.6666666667%;
}

.grid_col--pull-2-of-12 {
    margin-left: -16.6666666667%;
}

.grid_col--5-of-12 {
    width: 41.6666666667%;
}

.grid--flex .grid_col--5-of-12 {
    width: auto;
    -ms-flex-preferred-size: 41.6666666667%;
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
}

.grid_col--push-5-of-12 {
    margin-left: 41.6666666667%;
}

.grid_col--pull-5-of-12 {
    margin-left: -41.6666666667%;
}

.grid_col--7-of-12 {
    width: 58.3333333333%;
}

.grid--flex .grid_col--7-of-12 {
    width: auto;
    -ms-flex-preferred-size: 58.3333333333%;
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
}

.grid_col--push-7-of-12 {
    margin-left: 58.3333333333%;
}

.grid_col--pull-7-of-12 {
    margin-left: -58.3333333333%;
}

.grid_col--10-of-12 {
    width: 83.3333333333%;
}

.grid--flex .grid_col--10-of-12 {
    width: auto;
    -ms-flex-preferred-size: 83.3333333333%;
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
}

.grid_col--push-10-of-12 {
    margin-left: 83.3333333333%;
}

.grid_col--pull-10-of-12 {
    margin-left: -83.3333333333%;
}

.grid_col--11-of-12 {
    width: 91.6666666667%;
}

.grid--flex .grid_col--11-of-12 {
    width: auto;
    -ms-flex-preferred-size: 91.6666666667%;
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
}

.grid_col--push-11-of-12 {
    margin-left: 91.6666666667%;
}

.grid_col--pull-11-of-12 {
    margin-left: -91.6666666667%;
}

.grid_col {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: inline-block;
    margin-right: -0.25em;
    min-height: 1px solid;
    padding-left: 20px;
    vertical-align: top;
}

@media (max-width: 480px) {
    .grid_col {
        display: block;
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }
}

@media (max-width: 1200px) and (min-width: 1025px) {
    .grid_col[class*="grid_col--lg-"] {
        display: inline-block;
        margin-right: -0.24em;
    }

    .grid--flex .grid_col[class*="grid_col--lg-"] {
        display: block;
        margin-right: 0;
    }

    .grid_col.grid_col--lg-1-of-1 {
        width: 100%;
    }

    .grid--flex .grid_col.grid_col--lg-1-of-1 {
        width: auto;
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        max-width: 100%;
    }

    .grid_col.grid_col--lg-1-of-2, .grid_col.grid_col--lg-2-of-4 {
        width: 50%;
    }

    .grid--flex .grid_col.grid_col--lg-1-of-2, .grid--flex .grid_col.grid_col--lg-2-of-4 {
        width: auto;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        max-width: 50%;
    }

    .grid_col.grid_col--lg-1-of-3 {
        width: 33.3333333333%;
    }

    .grid--flex .grid_col.grid_col--lg-1-of-2, .grid--flex .grid_col.grid_col--lg-2-of-4 {
        width: auto;
        -ms-flex-preferred-size: 33.3333333333%;
        flex-basis: 33.3333333333%;
        max-width: 33.3333333333%;
    }

    .grid_col.grid_col--lg-2-of-3 {
        width: 66.6666666667%;
    }

    .grid--flex .grid_col.grid_col--lg-2-of-3 {
        width: auto;
        -ms-flex-preferred-size: 66.6666666667%;
        flex-basis: 66.6666666667%;
        max-width: 66.6666666667%;
    }

    .grid_col.grid_col--lg-1-of-4 {
        width: 25%;
    }

    .grid--flex .grid_col.grid_col--lg-1-of-4 {
        width: auto;
        -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
        max-width: 25%;
    }

    .grid_col.grid_col--lg-3-of-4 {
        width: 75%;
    }

    .grid--flex .grid_col.grid_col--lg-3-of-4 {
        width: auto;
        -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
        max-width: 75%;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .grid_col[class*="grid_col--lc-"] {
        display: inline-block;
        margin-right: -0.24em;
    }

    .grid--flex .grid_col[class*="grid_col--lc-"] {
        display: block;
        margin-right: 0;
    }

    .grid_col.grid_col--lc-1-of-1 {
        width: 100%;
    }

    .grid--flex .grid_col.grid_col--lc-1-of-1 {
        width: auto;
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        max-width: 100%;
    }

    .grid_col.grid_col--lc-1-of-2, .grid_col.grid_col--lc-2-of-4 {
        width: 50%;
    }

    .grid--flex .grid_col.grid_col--lc-1-of-2, .grid--flex .grid_col.grid_col--lc-2-of-4 {
        width: auto;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        max-width: 50%;
    }

    .grid_col.grid_col--lc-1-of-3 {
        width: 33.3333333333%;
    }

    .grid--flex .grid_col.grid_col--lc-1-of-3 {
        width: auto;
        -ms-flex-preferred-size: 33.3333333333%;
        flex-basis: 33.3333333333%;
        max-width: 33.3333333333%;
    }

    .grid_col.grid_col--lc-2-of-3 {
        width: 66.6666666667%;
    }

    .grid--flex .grid_col.grid_col--lc-2-of-3 {
        width: auto;
        -ms-flex-preferred-size: 66.6666666667%;
        flex-basis: 66.6666666667%;
        max-width: 66.6666666667%;
    }

    .grid_col.grid_col--lc-1-of-4 {
        width: 25%;
    }

    .grid--flex .grid_col.grid_col--lc-1-of-4 {
        width: auto;
        -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
        max-width: 25%;
    }

    .grid_col.grid_col--lc-3-of-4 {
        width: 75%;
    }

    .grid--flex .grid_col.grid_col--lc-3-of-4 {
        width: auto;
        -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
        max-width: 75%;
    }
}

@media (max-width: 768px) and (min-width: 481px) {
    .grid_col[class*="grid_col--md-"] {
        display: inline-block;
        margin-right: -0.24em;
    }

    .grid--flex .grid_col[class*="grid_col--md-"] {
        display: block;
        margin-right: 0;
    }

    .grid_col.grid_col--md-1-of-1 {
        width: 100%;
    }

    .grid--flex .grid_col.grid_col--md-1-of-1 {
        width: auto;
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        max-width: 100%;
    }

    .grid_col.grid_col--md-1-of-2, .grid_col.grid_col--md-2-of-4 {
        width: 50%;
    }

    .grid--flex .grid_col.grid_col--md-1-of-2, .grid--flex .grid_col.grid_col--md-2-of-4 {
        width: auto;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        max-width: 50%;
    }

    .grid_col.grid_col--md-1-of-3 {
        width: 33.3333333333%;
    }

    .grid--flex .grid_col.grid_col--md-1-of-3 {
        width: auto;
        -ms-flex-preferred-size: 33.3333333333%;
        flex-basis: 33.3333333333%;
        max-width: 33.3333333333%;
    }

    .grid_col.grid_col--md-2-of-3 {
        width: 66.6666666667%;
    }

    .grid--flex .grid_col.grid_col--md-2-of-3 {
        width: auto;
        -ms-flex-preferred-size: 66.6666666667%;
        flex-basis: 66.6666666667%;
        max-width: 66.6666666667%;
    }

    .grid_col.grid_col--md-1-of-4 {
        width: 25%;
    }

    .grid--flex .grid_col.grid_col--md-1-of-4 {
        width: auto;
        -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
        max-width: 25%;
    }

    .grid_col.grid_col--md-3-of-4 {
        width: 75%;
    }

    .grid--flex .grid_col.grid_col--md-3-of-4 {
        width: auto;
        -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
        max-width: 75%;
    }
}

@media (max-width: 480px) {
    .grid_col[class*="grid_col--sm-"] {
        display: inline-block;
        margin-right: -0.24em;
    }

    .grid--flex .grid_col[class*="grid_col--sm-"] {
        display: block;
        margin-right: 0;
    }

    .grid_col.grid_col--sm-1-of-2, .grid_col.grid_col--sm-2-of-4 {
        width: 50%;
    }

    .grid--flex .grid_col.grid_col--sm-1-of-2, .grid--flex .grid_col.grid_col--sm-2-of-4 {
        width: auto;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        max-width: 50%;
    }

    .grid_col.grid_col--sm-1-of-3 {
        width: 33.3333333333%;
    }

    .grid--flex .grid_col.grid_col--sm-1-of-3 {
        width: auto;
        -ms-flex-preferred-size: 33.3333333333%;
        flex-basis: 33.3333333333%;
        max-width: 33.3333333333%;
    }

    .grid_col.grid_col--sm-2-of-3 {
        width: 66.6666666667%;
    }

    .grid--flex .grid_col.grid_col--sm-2-of-3 {
        width: auto;
        -ms-flex-preferred-size: 66.6666666667%;
        flex-basis: 66.6666666667%;
        max-width: 66.6666666667%;
    }

    .grid_col.grid_col--sm-1-of-4 {
        width: 25%;
    }

    .grid--flex .grid_col.grid_col--sm-1-of-4 {
        width: auto;
        -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
        max-width: 25%;
    }

    .grid_col.grid_col--sm-3-of-4 {
        width: 75%;
    }

    .grid--flex .grid_col.grid_col--sm-3-of-4 {
        width: auto;
        -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
        max-width: 75%;
    }

    .grid--flex .grid_col {
        width: auto;
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        max-width: 100%;
    }
}

.grid_col--centered {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.grid_col--d-first {
    float: left;
}

.grid--flex .grid_col--d-first {
    float: none;
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
}

.grid_col--d-last {
    float: right;
}

.grid--flex .grid_col--d-last {
    float: none;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
}

.grid--no-gutter {
    margin-left: 0;
}

.grid--no-gutter .grid_col {
    padding-left: 0;
}

.grid--no-gutter .grid_col--span-all {
    margin-left: 0;
    width: 100%;
}

.grid--gutter {
    margin-left: -20px;
}

.grid--gutter .grid_col {
    padding-left: 20px;
}

.grid--gutter-40 {
    margin-left: -40px;
}

.grid--gutter-40 .grid_col {
    padding-left: 40px;
}

.grid--no-space .grid_col {
    margin-right: 0;
}

.grid_col--ab {
    vertical-align: bottom;
}

.grid_col--am {
    vertical-align: middle;
}

/* ==================================
 ---------     Q4ICONS    ----------
 ------- MIGHT NOT BE NEEDED -------
================================== */
@font-face {
    font-family: "q4-icons-legacy--blank";
    /* stylelint-disable-line font-family-no-missing-generic-family-keyword */
    src: url("https://assets.web.q4inc.com/icons-v1/_Q4BlankTemplate/q4-icons.eot?ldwc0r");
    src: url("https://assets.web.q4inc.com/icons-v1/_Q4BlankTemplate/q4-icons.eot?ldwc0r#iefix") format("embedded-opentype"), url("https://assets.web.q4inc.com/icons-v1/_Q4BlankTemplate/q4-icons.woff2?ldwc0r") format("woff2"), url("https://assets.web.q4inc.com/icons-v1/_Q4BlankTemplate/q4-icons.ttf?ldwc0r") format("truetype"), url("https://assets.web.q4inc.com/icons-v1/_Q4BlankTemplate/q4-icons.woff?ldwc0r") format("woff"), url("https://assets.web.q4inc.com/icons-v1/_Q4BlankTemplate/q4-icons.svg?ldwc0r#q4-icons") format("svg");
    font-weight: normal;
    font-style: normal;
}

[class^="q4-icon-blank_"]::before, [class*=" q4-icon-blank_"]::before {
    font-family: "q4-icons-legacy--blank" !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.q4-icon-blank_chairman::before {
    content: "\e912";
}

.q4-icon-blank_lead-director::before {
    content: "\e913";
}

.q4-icon-blank_member::before {
    content: "\e914";
}

.q4-icon-blank_chairblack::before {
    content: "\e915";
}

.q4-icon-blank_calendar-4pt::before {
    content: "\e921";
}

.q4-icon-blank_checkmark::before {
    content: "\e90d";
}

.q4-icon-blank_add-to-calendar-4pt::before {
    content: "\e90e";
}

.q4-icon-blank_arrow_carrot-2right::before {
    content: "\e90c";
}

.q4-icon-blank_arrow_carrot-2left::before {
    content: "\e90f";
}

.q4-icon-blank_arrow_carrot-right::before {
    content: "\e910";
}

.q4-icon-blank_arrow_carrot-left::before {
    content: "\e911";
}

.q4-icon-blank_home::before {
    content: "\e904";
}

.q4-icon-blank_menu::before {
    content: "\ec71";
}

.q4-icon-blank_plus::before {
    content: "\ed5d";
}

.q4-icon-blank_minus::before {
    content: "\ed5e";
}

.q4-icon-blank_cross::before {
    content: "\ed6d";
}

.q4-icon-blank_check::before {
    content: "\ed71";
}

.q4-icon-blank_play::before {
    content: "\ed85";
}

.q4-icon-blank_pause2::before {
    content: "\ed86";
}

.q4-icon-blank_chevron-up::before {
    content: "\edba";
}

.q4-icon-blank_chevron-right::before {
    content: "\edbe";
}

.q4-icon-blank_chevron-down::before {
    content: "\edc2";
}

.q4-icon-blank_chevron-left::before {
    content: "\edc6";
}

.q4-icon-blank_arrow-up::before {
    content: "\edc7";
}

.q4-icon-blank_arrow-right::before {
    content: "\edc8";
}

.q4-icon-blank_arrow-down::before {
    content: "\edc9";
}

.q4-icon-blank_arrow-left::before {
    content: "\edca";
}

.q4-icon-blank_webcast::before {
    content: "\e989";
}

.q4-icon-blank_pdf::before {
    content: "\e900";
}

.q4-icon-blank_html::before {
    content: "\eecd";
}

.q4-icon-blank_tape::before {
    content: "\e952";
}

.q4-icon-blank_link::before {
    content: "\ec9b";
}

.q4-icon-blank_bell-line::before {
    content: "\ea57";
}

.q4-icon-blank_bell-fill::before {
    content: "\e908";
}

.q4-icon-blank_presentation::before {
    content: "\e95c";
}

.q4-icon-blank_pie::before {
    content: "\eb81";
}

.q4-icon-blank_file::before {
    content: "\eb81";
}

.q4-icon-blank_video::before {
    content: "\e95e";
}

.q4-icon-blank_bars::before {
    content: "\eb8a";
}

.q4-icon-blank_text::before {
    content: "\e99b";
}

.q4-icon-blank_news::before {
    content: "\e99b";
}

.q4-icon-blank_transcript::before {
    content: "\e99b";
}

.q4-icon-blank_table::before {
    content: "\eeae";
}

.q4-icon-blank_calendar::before {
    content: "\ea5f";
}

.q4-icon-blank_image-line::before {
    content: "\e93c";
}

.q4-icon-blank_image-fill::before {
    content: "\e93b";
}

.q4-icon-blank_phone-fill::before {
    content: "\ea1d";
}

.q4-icon-blank_phone-line::before {
    content: "\ea26";
}

.q4-icon-blank_envelope-line::before {
    content: "\ea32";
}

.q4-icon-blank_envelope-fill::before {
    content: "\ea34";
}

.q4-icon-blank_location-fill::before {
    content: "\ea3c";
}

.q4-icon-blank_location-line::before {
    content: "\ea3d";
}

.q4-icon-blank_clock-line::before {
    content: "\ea4d";
}

.q4-icon-blank_clock-fill::before {
    content: "\ea4e";
}

.q4-icon-blank_printer-line::before {
    content: "\ea67";
}

.q4-icon-blank_printer-fill::before {
    content: "\ea68";
}

.q4-icon-blank_drawer-out::before {
    content: "\ea81";
}

.q4-icon-blank_drawer-in::before {
    content: "\ea82";
}

.q4-icon-blank_user-fill::before {
    content: "\eb08";
}

.q4-icon-blank_user-line::before {
    content: "\eb09";
}

.q4-icon-blank_briefcase-line::before {
    content: "\e909";
}

.q4-icon-blank_briefcase-fill::before {
    content: "\ec03";
}

.q4-icon-blank_quotes-left::before {
    content: "\eb1b";
}

.q4-icon-blank_quotes-right::before {
    content: "\eb1c";
}

.q4-icon-blank_spinner::before {
    content: "\eb27";
}

.q4-icon-blank_search::before {
    content: "\e903";
    cursor: pointer;
}

.q4-icon-blank_circle::before {
    content: "\ec6b";
}

.q4-icon-blank_star-line::before {
    content: "\ece3";
}

.q4-icon-blank_star-half::before {
    content: "\ece4";
}

.q4-icon-blank_star-fill::before {
    content: "\ece5";
}

.q4-icon-blank_warning-line::before {
    content: "\ed4f";
}

.q4-icon-blank_warning-fill::before {
    content: "\ed50";
}

.q4-icon-blank_share-external::before {
    content: "\eec8";
}

.q4-icon-blank_instagram::before {
    content: "\e946";
}

.q4-icon-blank_google::before {
    content: "\eeea";
}

.q4-icon-blank_google-square::before {
    content: "\eeeb";
}

.q4-icon-blank_facebook::before {
    content: "\eeef";
}

.q4-icon-blank_facebook-square::before {
    content: "\eef0";
}

.q4-icon-blank_twitter::before {
    content: "\eef5";
}

.q4-icon-blank_apple::before {
    content: "\e90a";
}

.q4-icon-blank_microsoft::before {
    content: "\e90b";
}

.q4-icon-blank_youtube::before {
    content: "\eefc";
}

.q4-icon-blank_rss::before {
    content: "\eefa";
}

.q4-icon-blank_rss-square::before {
    content: "\eefb";
}

.q4-icon-blank_vimeo::before {
    content: "\eeff";
}

.q4-icon-blank_vimeo-square::before {
    content: "\ef00";
}

.q4-icon-blank_flickr::before {
    content: "\ef02";
}

.q4-icon-blank_flickr-square::before {
    content: "\ef04";
}

.q4-icon-blank_linkedin::before {
    content: "\ef29";
}

.q4-icon-blank_linkedin-square::before {
    content: "\ef28";
}

.q4-icon-blank_glassdoor::before {
    content: "\e905";
}

.q4-icon-blank_glassdoor-square::before {
    content: "\e906";
}

.q4-icon-blank_share::before {
    content: "\eee0";
}

.q4-icon-blank_file-pdf-line::before {
    content: "\ef3e";
}

.q4-icon-blank_file-pdf-fill::before {
    content: "\e901";
}

.q4-icon-blank_file-word-line::before {
    content: "\ef40";
}

.q4-icon-blank_file-word-fill::before {
    content: "\e902";
}

.q4-icon-blank_file-excel-line::before {
    content: "\ef41";
}

.q4-icon-blank_file-excel-fill::before {
    content: "\e907";
}

.q4-icon-blank_file-image-line::before {
    content: "\e9af";
}

.q4-icon-blank_file-image-fill::before {
    content: "\e9b0";
}

.q4-icon-blank_file-sound-line::before {
    content: "\e9b1";
}

.q4-icon-blank_file-sound-fill::before {
    content: "\e9b2";
}

.q4-icon-blank_file-play-line::before {
    content: "\e9b3";
}

.q4-icon-blank_file-play-fill::before {
    content: "\e9b4";
}

.q4-icon-blank_file-zip-line::before {
    content: "\e9b9";
}

.q4-icon-blank_file-zip-fill::before {
    content: "\e9ba";
}

.q4-icon-blank_file-xml-line::before {
    content: "\e9bb";
}

.q4-icon-blank_file-html-line::before {
    content: "\e9bb";
}

.q4-icon-blank_file-xml-fill::before {
    content: "\e9bc";
}

.q4-icon-blank_file-html-fill::before {
    content: "\e9bc";
}

.q4-icon-blank_file-presentation-line::before {
    content: "\e9bf";
}

.q4-icon-blank_file-presentation-fill::before {
    content: "\e9c0";
}

.q4-icon-blank_file-stats-line::before {
    content: "\e9c1";
}

.q4-icon-blank_file-stats-fill::before {
    content: "\e9c2";
}

.q4-icon-blank_file-spreadsheet-line::before {
    content: "\e9c5";
}

.q4-icon-blank_file-spreadsheet-fill::before {
    content: "\e9c6";
}

.q4-icon-blank_placeholder::before {
    content: "\e932";
}

.ui-helper-hidden {
    display: none;
}

.ui-helper-hidden-accessible {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px solid;
    margin: -1px solid;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px solid;
}

.ui-helper-reset {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    line-height: 1.3;
    text-decoration: none;
    font-size: 100%;
    list-style: none;
}

.ui-helper-clearfix::before, .ui-helper-clearfix::after {
    content: "";
    display: table;
    border-collapse: collapse;
}

.ui-helper-clearfix::after {
    clear: both;
}

.ui-helper-zfix {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    opacity: 0;
    filter: Alpha(opacity=0);
    /* support: IE8 */
}

.ui-front {
    z-index: 100;
}

.ui-state-disabled {
    cursor: default !important;
    pointer-events: none;
}

.ui-icon {
    display: inline-block;
    vertical-align: middle;
    margin-top: -0.25em;
    position: relative;
    overflow: hidden;
    background-repeat: no-repeat;
    font-size: 14px;
}

.ui-icon::before {
    font-family: "q4-icons-legacy";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\eecd";
    font-size: 14px;
    color: #000;
}

.ui-widget-icon-block {
    left: 50%;
    margin-left: -8px;
    display: block;
}

.ui-widget-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #aaa;
    opacity: 0.3;
    filter: Alpha(opacity=30);
}

.ui-datepicker {
    min-width: 300px;
    display: none;
}

@media only screen and (max-width: 480px) {
    .ui-datepicker {
        min-width: 240px;
    }
}

.ui-datepicker .ui-datepicker-header {
    position: relative;
    padding: 10px 25px;
}

.ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.ui-datepicker .ui-datepicker-prev {
    left: 5px;
}

.ui-datepicker .ui-datepicker-next {
    right: 5px;
}

.ui-datepicker .ui-datepicker-prev span::before {
    content: "\edc6";
}

.ui-datepicker .ui-datepicker-next span::before {
    content: "\edbe";
}

.ui-datepicker .ui-datepicker-title {
    text-align: center;
}

.ui-datepicker .ui-datepicker-title select {
    font-size: inherit;
    margin: 1px solid 0;
    cursor: pointer;
}

.ui-datepicker select.ui-datepicker-month {
    width: 55%;
    margin: 0 2.5%;
}

.ui-datepicker select.ui-datepicker-year {
    width: 35%;
    margin: 0 2.5%;
}

.ui-datepicker table {
    width: 100%;
    border-collapse: collapse;
}

.ui-datepicker th {
    padding: 10px;
    text-align: center;
    font-weight: bold;
    border: 0;
}

.ui-datepicker td {
    border: 0;
    padding: 1px solid;
}

.ui-datepicker td span, .ui-datepicker td a {
    display: block;
    padding: 5px;
    text-align: center;
    text-decoration: none;
}

.ui-datepicker .ui-datepicker-buttonpane {
    background-image: none;
    margin: 0.7em 0 0 0;
    padding: 0 0.2em;
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
}

.ui-datepicker .ui-datepicker-buttonpane button {
    float: right;
    margin: 0.5em 0.2em 0.4em;
    cursor: pointer;
    padding: 0.2em 0.6em 0.3em 0.6em;
    width: auto;
    overflow: visible;
}

.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
    float: left;
}

.ui-datepicker.ui-datepicker-multi {
    width: auto;
}

.ui-datepicker-multi .ui-datepicker-group {
    float: left;
}

.ui-datepicker-multi .ui-datepicker-group table {
    width: 95%;
    margin: 0 auto 0.4em;
}

.ui-datepicker-multi-2 .ui-datepicker-group {
    width: 50%;
}

.ui-datepicker-multi-3 .ui-datepicker-group {
    width: 33.3%;
}

.ui-datepicker-multi-4 .ui-datepicker-group {
    width: 25%;
}

.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header, .ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
    border-left-width: 0;
}

.ui-datepicker-multi .ui-datepicker-buttonpane {
    clear: left;
}

.ui-datepicker-row-break {
    clear: both;
    width: 100%;
    font-size: 0;
}

.ui-datepicker-rtl {
    direction: rtl;
}

.ui-datepicker-rtl .ui-datepicker-prev {
    right: 5px;
    left: auto;
}

.ui-datepicker-rtl .ui-datepicker-next {
    left: 5px;
    right: auto;
}

.ui-datepicker-rtl .ui-datepicker-buttonpane {
    clear: right;
}

.ui-datepicker-rtl .ui-datepicker-buttonpane button {
    float: left;
}

.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current, .ui-datepicker-rtl .ui-datepicker-group {
    float: right;
}

.ui-datepicker .ui-icon {
    display: block;
    overflow: hidden;
    background-repeat: no-repeat;
    font-size: 0;
    cursor: pointer;
}

.ui-widget {
    font-size: 14px;
    font-family: Arial, Helvetica, sans-serif;
}

.ui-widget .ui-widget {
    font-size: inherit;
}

.ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button {
    font-family: inherit;
    font-size: inherit;
}

.ui-widget-content {
    border: 1px solid solid #ddd;
    background: var(--evgLightColor);
    color: #000;
}

.ui-widget-content a {
    color: #000;
}

.ui-widget-header {
    background: #e9e9e9;
    color: #000;
    font-weight: bold;
}

.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active {
    background: #f6f6f6;
    font-weight: normal;
    color: #454545;
}

.ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited, a.ui-button, a.ui-button:link, a.ui-button:visited, .ui-button {
    color: #454545;
    text-decoration: none;
}

.ui-state-hover, .ui-widget-content .ui-state-hover, .ui-widget-header .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus, .ui-widget-header .ui-state-focus, .ui-button:hover, .ui-button:focus {
    background: #ededed;
    font-weight: normal;
    color: #2b2b2b;
}

.ui-state-hover a, .ui-state-hover a:hover, .ui-state-hover a:link, .ui-state-hover a:visited, .ui-state-focus a, .ui-state-focus a:hover, .ui-state-focus a:link, .ui-state-focus a:visited, a.ui-button:hover, a.ui-button:focus {
    color: #2b2b2b;
    text-decoration: none;
}

.ui-visual-focus {
    -webkit-box-shadow: 0 0 3px 1px solid #5e9ed6;
    box-shadow: 0 0 3px 1px solid #5e9ed6;
}

.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active, a.ui-button:active, .ui-button:active, .ui-button.ui-state-active:hover {
    background: #0073e7;
    font-weight: normal;
    color: #fff;
}

.ui-icon-background, .ui-state-active .ui-icon-background {
    border: #0073e7;
    background-color: #fff;
}

.ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited {
    background: #0073e7;
    color: #fff;
    text-decoration: none;
}

.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight {
    background: #fffa90;
    color: #000;
}

.ui-state-checked {
    background: #fffa90;
}

.ui-state-highlight a, .ui-widget-content .ui-state-highlight a, .ui-widget-header .ui-state-highlight a {
    color: #000;
}

.ui-state-error, .ui-widget-content .ui-state-error, .ui-widget-header .ui-state-error {
    background: #fddfdf;
    color: #5f3f3f;
}

.ui-state-error a, .ui-widget-content .ui-state-error a, .ui-widget-header .ui-state-error a {
    color: #5f3f3f;
}

.ui-state-error-text, .ui-widget-content .ui-state-error-text, .ui-widget-header .ui-state-error-text {
    color: #5f3f3f;
}

.ui-priority-primary, .ui-widget-content .ui-priority-primary, .ui-widget-header .ui-priority-primary {
    font-weight: bold;
}

.ui-priority-secondary, .ui-widget-content .ui-priority-secondary, .ui-widget-header .ui-priority-secondary {
    opacity: 0.7;
    filter: Alpha(opacity=70);
    /* support: IE8 */
    font-weight: normal;
}

.ui-state-disabled, .ui-widget-content .ui-state-disabled, .ui-widget-header .ui-state-disabled {
    opacity: 0.35;
    filter: Alpha(opacity=35);
    /* support: IE8 */
    background-image: none;
}

.ui-state-disabled .ui-icon {
    filter: Alpha(opacity=35);
    /* support: IE8 - See #6059 */
}

.ui-widget-shadow {
    -webkit-box-shadow: 0 0 5px #666;
    box-shadow: 0 0 5px #666;
}

.ui-widget-content.ui-autocomplete {
    max-height: 300px;
    background: var(--evgGreyColor);
    color: var(--evgBodyFontColor);
    overflow-y: scroll;
    list-style-type: none;
    padding: 0;
    border: 1px solid solid var(--evgPrimaryColor);
    max-width: 300px;
}

.ui-widget-content.ui-autocomplete .ui-menu-item {
    padding: 0;
}

.ui-widget-content.ui-autocomplete .ui-menu-item-wrapper {
    padding: 20px 15px;
}

.ui-widget-content.ui-autocomplete .ui-state-active {
    margin: 0;
    border: none;
    background: var(--evgPrimaryColor);
    font-weight: 300;
    color: var(--evgLightColor);
}

/* ==================================
 ----------- JVECTORMAP -----------
================================== */
svg {
    -ms-touch-action: none;
    touch-action: none;
}

.jvectormap-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    -ms-touch-action: none;
    touch-action: none;
}

.jvectormap-tip {
    position: absolute;
    display: none;
    border: solid 1px solid #cdcdcd;
    border-radius: 3px;
    background: #292929;
    color: white;
    font-family: sans-serif, Verdana;
    font-size: smaller;
    padding: 3px;
}

.jvectormap-zoomin, .jvectormap-zoomout, .jvectormap-goback {
    position: absolute;
    left: 10px;
    border-radius: 3px;
    background: #292929;
    padding: 3px;
    color: white;
    cursor: pointer;
    line-height: 10px;
    text-align: center;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}

.jvectormap-zoomin, .jvectormap-zoomout {
    width: 10px;
    height: 10px;
}

.jvectormap-zoomin {
    top: 10px;
}

.jvectormap-zoomout {
    top: 30px;
}

.jvectormap-goback {
    bottom: 10px;
    z-index: 1000;
    padding: 6px;
}

.jvectormap-spinner {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: center no-repeat url("data:image/gif;base64,R0lGODlhIAAgAPMAAP///wAAAMbGxoSEhLa2tpqamjY2NlZWVtjY2OTk5Ly8vB4eHgQEBAAAAAAAAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh/hpDcmVhdGVkIHdpdGggYWpheGxvYWQuaW5mbwAh+QQJCgAAACwAAAAAIAAgAAAE5xDISWlhperN52JLhSSdRgwVo1ICQZRUsiwHpTJT4iowNS8vyW2icCF6k8HMMBkCEDskxTBDAZwuAkkqIfxIQyhBQBFvAQSDITM5VDW6XNE4KagNh6Bgwe60smQUB3d4Rz1ZBApnFASDd0hihh12BkE9kjAJVlycXIg7CQIFA6SlnJ87paqbSKiKoqusnbMdmDC2tXQlkUhziYtyWTxIfy6BE8WJt5YJvpJivxNaGmLHT0VnOgSYf0dZXS7APdpB309RnHOG5gDqXGLDaC457D1zZ/V/nmOM82XiHRLYKhKP1oZmADdEAAAh+QQJCgAAACwAAAAAIAAgAAAE6hDISWlZpOrNp1lGNRSdRpDUolIGw5RUYhhHukqFu8DsrEyqnWThGvAmhVlteBvojpTDDBUEIFwMFBRAmBkSgOrBFZogCASwBDEY/CZSg7GSE0gSCjQBMVG023xWBhklAnoEdhQEfyNqMIcKjhRsjEdnezB+A4k8gTwJhFuiW4dokXiloUepBAp5qaKpp6+Ho7aWW54wl7obvEe0kRuoplCGepwSx2jJvqHEmGt6whJpGpfJCHmOoNHKaHx61WiSR92E4lbFoq+B6QDtuetcaBPnW6+O7wDHpIiK9SaVK5GgV543tzjgGcghAgAh+QQJCgAAACwAAAAAIAAgAAAE7hDISSkxpOrN5zFHNWRdhSiVoVLHspRUMoyUakyEe8PTPCATW9A14E0UvuAKMNAZKYUZCiBMuBakSQKG8G2FzUWox2AUtAQFcBKlVQoLgQReZhQlCIJesQXI5B0CBnUMOxMCenoCfTCEWBsJColTMANldx15BGs8B5wlCZ9Po6OJkwmRpnqkqnuSrayqfKmqpLajoiW5HJq7FL1Gr2mMMcKUMIiJgIemy7xZtJsTmsM4xHiKv5KMCXqfyUCJEonXPN2rAOIAmsfB3uPoAK++G+w48edZPK+M6hLJpQg484enXIdQFSS1u6UhksENEQAAIfkECQoAAAAsAAAAACAAIAAABOcQyEmpGKLqzWcZRVUQnZYg1aBSh2GUVEIQ2aQOE+G+cD4ntpWkZQj1JIiZIogDFFyHI0UxQwFugMSOFIPJftfVAEoZLBbcLEFhlQiqGp1Vd140AUklUN3eCA51C1EWMzMCezCBBmkxVIVHBWd3HHl9JQOIJSdSnJ0TDKChCwUJjoWMPaGqDKannasMo6WnM562R5YluZRwur0wpgqZE7NKUm+FNRPIhjBJxKZteWuIBMN4zRMIVIhffcgojwCF117i4nlLnY5ztRLsnOk+aV+oJY7V7m76PdkS4trKcdg0Zc0tTcKkRAAAIfkECQoAAAAsAAAAACAAIAAABO4QyEkpKqjqzScpRaVkXZWQEximw1BSCUEIlDohrft6cpKCk5xid5MNJTaAIkekKGQkWyKHkvhKsR7ARmitkAYDYRIbUQRQjWBwJRzChi9CRlBcY1UN4g0/VNB0AlcvcAYHRyZPdEQFYV8ccwR5HWxEJ02YmRMLnJ1xCYp0Y5idpQuhopmmC2KgojKasUQDk5BNAwwMOh2RtRq5uQuPZKGIJQIGwAwGf6I0JXMpC8C7kXWDBINFMxS4DKMAWVWAGYsAdNqW5uaRxkSKJOZKaU3tPOBZ4DuK2LATgJhkPJMgTwKCdFjyPHEnKxFCDhEAACH5BAkKAAAALAAAAAAgACAAAATzEMhJaVKp6s2nIkolIJ2WkBShpkVRWqqQrhLSEu9MZJKK9y1ZrqYK9WiClmvoUaF8gIQSNeF1Er4MNFn4SRSDARWroAIETg1iVwuHjYB1kYc1mwruwXKC9gmsJXliGxc+XiUCby9ydh1sOSdMkpMTBpaXBzsfhoc5l58Gm5yToAaZhaOUqjkDgCWNHAULCwOLaTmzswadEqggQwgHuQsHIoZCHQMMQgQGubVEcxOPFAcMDAYUA85eWARmfSRQCdcMe0zeP1AAygwLlJtPNAAL19DARdPzBOWSm1brJBi45soRAWQAAkrQIykShQ9wVhHCwCQCACH5BAkKAAAALAAAAAAgACAAAATrEMhJaVKp6s2nIkqFZF2VIBWhUsJaTokqUCoBq+E71SRQeyqUToLA7VxF0JDyIQh/MVVPMt1ECZlfcjZJ9mIKoaTl1MRIl5o4CUKXOwmyrCInCKqcWtvadL2SYhyASyNDJ0uIiRMDjI0Fd30/iI2UA5GSS5UDj2l6NoqgOgN4gksEBgYFf0FDqKgHnyZ9OX8HrgYHdHpcHQULXAS2qKpENRg7eAMLC7kTBaixUYFkKAzWAAnLC7FLVxLWDBLKCwaKTULgEwbLA4hJtOkSBNqITT3xEgfLpBtzE/jiuL04RGEBgwWhShRgQExHBAAh+QQJCgAAACwAAAAAIAAgAAAE7xDISWlSqerNpyJKhWRdlSAVoVLCWk6JKlAqAavhO9UkUHsqlE6CwO1cRdCQ8iEIfzFVTzLdRAmZX3I2SfZiCqGk5dTESJeaOAlClzsJsqwiJwiqnFrb2nS9kmIcgEsjQydLiIlHehhpejaIjzh9eomSjZR+ipslWIRLAgMDOR2DOqKogTB9pCUJBagDBXR6XB0EBkIIsaRsGGMMAxoDBgYHTKJiUYEGDAzHC9EACcUGkIgFzgwZ0QsSBcXHiQvOwgDdEwfFs0sDzt4S6BK4xYjkDOzn0unFeBzOBijIm1Dgmg5YFQwsCMjp1oJ8LyIAACH5BAkKAAAALAAAAAAgACAAAATwEMhJaVKp6s2nIkqFZF2VIBWhUsJaTokqUCoBq+E71SRQeyqUToLA7VxF0JDyIQh/MVVPMt1ECZlfcjZJ9mIKoaTl1MRIl5o4CUKXOwmyrCInCKqcWtvadL2SYhyASyNDJ0uIiUd6GGl6NoiPOH16iZKNlH6KmyWFOggHhEEvAwwMA0N9GBsEC6amhnVcEwavDAazGwIDaH1ipaYLBUTCGgQDA8NdHz0FpqgTBwsLqAbWAAnIA4FWKdMLGdYGEgraigbT0OITBcg5QwPT4xLrROZL6AuQAPUS7bxLpoWidY0JtxLHKhwwMJBTHgPKdEQAACH5BAkKAAAALAAAAAAgACAAAATrEMhJaVKp6s2nIkqFZF2VIBWhUsJaTokqUCoBq+E71SRQeyqUToLA7VxF0JDyIQh/MVVPMt1ECZlfcjZJ9mIKoaTl1MRIl5o4CUKXOwmyrCInCKqcWtvadL2SYhyASyNDJ0uIiUd6GAULDJCRiXo1CpGXDJOUjY+Yip9DhToJA4RBLwMLCwVDfRgbBAaqqoZ1XBMHswsHtxtFaH1iqaoGNgAIxRpbFAgfPQSqpbgGBqUD1wBXeCYp1AYZ19JJOYgH1KwA4UBvQwXUBxPqVD9L3sbp2BNk2xvvFPJd+MFCN6HAAIKgNggY0KtEBAAh+QQJCgAAACwAAAAAIAAgAAAE6BDISWlSqerNpyJKhWRdlSAVoVLCWk6JKlAqAavhO9UkUHsqlE6CwO1cRdCQ8iEIfzFVTzLdRAmZX3I2SfYIDMaAFdTESJeaEDAIMxYFqrOUaNW4E4ObYcCXaiBVEgULe0NJaxxtYksjh2NLkZISgDgJhHthkpU4mW6blRiYmZOlh4JWkDqILwUGBnE6TYEbCgevr0N1gH4At7gHiRpFaLNrrq8HNgAJA70AWxQIH1+vsYMDAzZQPC9VCNkDWUhGkuE5PxJNwiUK4UfLzOlD4WvzAHaoG9nxPi5d+jYUqfAhhykOFwJWiAAAIfkECQoAAAAsAAAAACAAIAAABPAQyElpUqnqzaciSoVkXVUMFaFSwlpOCcMYlErAavhOMnNLNo8KsZsMZItJEIDIFSkLGQoQTNhIsFehRww2CQLKF0tYGKYSg+ygsZIuNqJksKgbfgIGepNo2cIUB3V1B3IvNiBYNQaDSTtfhhx0CwVPI0UJe0+bm4g5VgcGoqOcnjmjqDSdnhgEoamcsZuXO1aWQy8KAwOAuTYYGwi7w5h+Kr0SJ8MFihpNbx+4Erq7BYBuzsdiH1jCAzoSfl0rVirNbRXlBBlLX+BP0XJLAPGzTkAuAOqb0WT5AH7OcdCm5B8TgRwSRKIHQtaLCwg1RAAAOwAAAAAAAAAAAA==");
}

.jvectormap-legend-title {
    font-weight: bold;
    font-size: 14px;
    text-align: center;
}

.jvectormap-legend-cnt {
    position: absolute;
}

.jvectormap-legend-cnt-h {
    bottom: 0;
    right: 0;
}

.jvectormap-legend-cnt-v {
    top: 0;
    right: 0;
}

.jvectormap-legend {
    background: black;
    color: white;
    border-radius: 3px;
}

.jvectormap-legend-cnt-h .jvectormap-legend {
    float: left;
    margin: 0 10px 10px 0;
    padding: 3px 3px 1px solid 3px;
}

.jvectormap-legend-cnt-h .jvectormap-legend .jvectormap-legend-tick {
    float: left;
}

.jvectormap-legend-cnt-v .jvectormap-legend {
    margin: 10px 10px 0 0;
    padding: 3px;
}

.jvectormap-legend-cnt-h .jvectormap-legend-tick {
    width: 40px;
}

.jvectormap-legend-cnt-h .jvectormap-legend-tick-sample {
    height: 15px;
}

.jvectormap-legend-cnt-v .jvectormap-legend-tick-sample {
    height: 20px;
    width: 20px;
    display: inline-block;
    vertical-align: middle;
}

.jvectormap-legend-tick-text {
    font-size: 12px;
}

.jvectormap-legend-cnt-h .jvectormap-legend-tick-text {
    text-align: center;
}

.jvectormap-legend-cnt-v .jvectormap-legend-tick-text {
    display: inline-block;
    vertical-align: middle;
    line-height: 20px;
    padding-left: 3px;
}

.mejs__offscreen {
    border: 0;
    clip: rect(1px solid, 1px solid, 1px solid, 1px solid);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    height: 1px solid;
    margin: -1px solid;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px solid;
    word-wrap: normal;
}

.mejs__container {
    background: #000;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-family: var(--evgBodyFontFamily);
    position: relative;
    text-align: left;
    text-indent: 0;
    vertical-align: top;
}

.mejs__container * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.mejs__container video::-webkit-media-controls, .mejs__container video::-webkit-media-controls-panel, .mejs__container video::-webkit-media-controls-panel-container, .mejs__container video::-webkit-media-controls-start-playback-button {
    -webkit-appearance: none;
    display: none !important;
}

.mejs__fill-container, .mejs__fill-container .mejs__container {
    height: 100%;
    width: 100%;
}

.mejs__fill-container {
    background: transparent;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.mejs__container:focus {
    outline: none;
}

.mejs__iframe-overlay {
    height: 100%;
    position: absolute;
    width: 100%;
}

.mejs__embed, .mejs__embed body {
    background: #000;
    height: 100%;
    margin: 0;
    overflow: hidden;
    padding: 0;
    width: 100%;
}

.mejs__fullscreen {
    overflow: hidden !important;
}

.mejs__container-fullscreen {
    bottom: 0;
    left: 0;
    overflow: hidden;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 1000;
}

.mejs__container-fullscreen .mejs__mediaelement, .mejs__container-fullscreen video {
    height: 100% !important;
    width: 100% !important;
}

.mejs__background {
    left: 0;
    position: absolute;
    top: 0;
}

.mejs__mediaelement {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 0;
}

.mejs__poster {
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    left: 0;
    position: absolute;
    top: 0;
    z-index: 1;
}

:root .mejs__poster-img {
    display: none;
}

.mejs__poster-img {
    border: 0;
    padding: 0;
}

.mejs__overlay {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    left: 0;
    position: absolute;
    top: 0;
}

.mejs__layer {
    z-index: 1;
}

.mejs__overlay-play {
    cursor: pointer;
}

.mejs__overlay-button {
    background: url('../design/svg/mejs-controls.svg') no-repeat;
    background-position: 0 -39px;
    height: 80px;
    width: 80px;
}

.mejs__overlay:hover > .mejs__overlay-button {
    background-position: -80px -39px;
}

.mejs__overlay-loading {
    height: 80px;
    width: 80px;
}

.mejs__overlay-loading-bg-img {
    -webkit-animation: mejs__loading-spinner 1s linear infinite;
    animation: mejs__loading-spinner 1s linear infinite;
    background: transparent url('../design/svg/mejs-controls.svg') -160px -40px no-repeat;
    display: block;
    height: 80px;
    width: 80px;
    z-index: 1;
}

@-webkit-keyframes mejs__loading-spinner {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes mejs__loading-spinner {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes mejs__loading-spinner {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.mejs__controls {
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 40px;
    left: 0;
    list-style-type: none;
    margin: 0;
    padding: 0 10px;
    position: absolute;
    width: 100%;
    z-index: 3;
}

.mejs__controls:not([style*="display: none"]) {
    background: rgba(255, 0, 0, 0.7);
    background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(0, 0, 0, 0.35)));
    background: -o-linear-gradient(transparent, rgba(0, 0, 0, 0.35));
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.35));
}

.mejs__button, .mejs__time, .mejs__time-rail {
    font-size: 10px;
    height: 40px;
    line-height: 10px;
    margin: 0;
    width: 32px;
}

.mejs__button > button {
    background: transparent url('../design/svg/mejs-controls.svg');
    border: 0;
    cursor: pointer;
    display: block;
    font-size: 0;
    height: 20px;
    line-height: 0;
    margin: 10px 6px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    text-decoration: none;
    width: 20px;
}

.mejs__button > button:focus {
    outline: dotted 1px solid #999;
}

.mejs__container-keyboard-inactive a, .mejs__container-keyboard-inactive a:focus, .mejs__container-keyboard-inactive button, .mejs__container-keyboard-inactive button:focus, .mejs__container-keyboard-inactive [role="slider"], .mejs__container-keyboard-inactive [role="slider"]:focus {
    outline: 0;
}

.mejs__time {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    color: #fff;
    font-size: 11px;
    font-weight: bold;
    height: 24px;
    overflow: hidden;
    padding: 16px 6px 0;
    text-align: center;
    width: auto;
}

.mejs__play > button {
    background-position: 0 0;
}

.mejs__pause > button {
    background-position: -20px 0;
}

.mejs__replay > button {
    background-position: -160px 0;
}

.mejs__time-rail {
    direction: ltr;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    height: 40px;
    margin: 0 10px;
    padding-top: 10px;
    position: relative;
}

.mejs__time-total, .mejs__time-buffering, .mejs__time-loaded, .mejs__time-current, .mejs__time-float, .mejs__time-hovered, .mejs__time-float-current, .mejs__time-float-corner, .mejs__time-marker {
    border-radius: 2px;
    cursor: pointer;
    display: block;
    height: 10px;
    position: absolute;
}

.mejs__time-total {
    background: rgba(255, 255, 255, 0.3);
    margin: 5px 0 0;
    width: 100%;
}

.mejs__time-buffering {
    -webkit-animation: buffering-stripes 2s linear infinite;
    animation: buffering-stripes 2s linear infinite;
    background: -o-linear-gradient(135deg, rgba(255, 255, 255, 0.4) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0.4) 75%, transparent 75%, transparent);
    background: linear-gradient(-45deg, rgba(255, 255, 255, 0.4) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0.4) 75%, transparent 75%, transparent);
    background-size: 15px 15px;
    width: 100%;
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
}

@-webkit-keyframes buffering-stripes {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 30px 0;
    }
}

@keyframes buffering-stripes {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 30px 0;
    }
}

@keyframes buffering-stripes {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 30px 0;
    }
}

.mejs__time-loaded {
    background: rgba(255, 255, 255, 0.3);
}

.mejs__time-current, .mejs__time-handle-content {
    background: rgba(255, 255, 255, 0.9);
}

.mejs__time-hovered {
    background: rgba(255, 255, 255, 0.5);
    z-index: 10;
    -webkit-transition: height 0.1s cubic-bezier(0.44, 0, 1, 1);
    -o-transition: height 0.1s cubic-bezier(0.44, 0, 1, 1);
    transition: height 0.1s cubic-bezier(0.44, 0, 1, 1);
}

.mejs__time-hovered.negative {
    background: rgba(0, 0, 0, 0.2);
}

.mejs__time-current, .mejs__time-buffering, .mejs__time-loaded, .mejs__time-hovered {
    left: 0;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transition: 0.15s ease-in all;
    -o-transition: 0.15s ease-in all;
    transition: 0.15s ease-in all;
    width: 100%;
}

.mejs__time-hovered.no-hover {
    -webkit-transform: scaleX(0) !important;
    -ms-transform: scaleX(0) !important;
    transform: scaleX(0) !important;
}

.mejs__time-handle, .mejs__time-handle-content {
    border: 4px solid transparent;
    cursor: pointer;
    left: 0;
    position: absolute;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    z-index: 11;
}

.mejs__time-handle-content {
    border: 4px solid rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    height: 10px;
    left: -7px;
    top: -4px;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    width: 10px;
}

.mejs__time-rail:hover .mejs__time-handle-content, .mejs__time-rail .mejs__time-handle-content:focus, .mejs__time-rail .mejs__time-handle-content:active {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.mejs__time-float {
    background: #eee;
    border: solid 1px solid #333;
    bottom: 100%;
    color: #111;
    display: none;
    height: 17px;
    margin-bottom: 9px;
    position: absolute;
    text-align: center;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 36px;
}

.mejs__time-float-current {
    display: block;
    left: 0;
    margin: 2px;
    text-align: center;
    width: 30px;
}

.mejs__time-float-corner {
    border: solid 5px #eee;
    border-color: #eee transparent transparent;
    border-radius: 0;
    display: block;
    height: 0;
    left: 50%;
    line-height: 0;
    position: absolute;
    top: 100%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 0;
}

.mejs__long-video .mejs__time-float {
    margin-left: -23px;
    width: 64px;
}

.mejs__long-video .mejs__time-float-current {
    width: 60px;
}

.mejs__broadcast {
    color: #fff;
    height: 10px;
    position: absolute;
    top: 15px;
    width: 100%;
}

.mejs__fullscreen-button > button {
    background-position: -80px 0;
}

.mejs__unfullscreen > button {
    background-position: -100px 0;
}

.mejs__mute > button {
    background-position: -60px 0;
}

.mejs__unmute > button {
    background-position: -40px 0;
}

.mejs__volume-button {
    position: relative;
}

.mejs__volume-button > .mejs__volume-slider {
    -webkit-backface-visibility: hidden;
    background: rgba(50, 50, 50, 0.7);
    border-radius: 0;
    bottom: 100%;
    display: none;
    height: 115px;
    left: 50%;
    margin: 0;
    position: absolute;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 25px;
    z-index: 1;
}

.mejs__volume-button:hover {
    border-radius: 0 0 4px 4px;
}

.mejs__volume-total {
    background: rgba(255, 255, 255, 0.5);
    height: 100px;
    left: 50%;
    margin: 0;
    position: absolute;
    top: 8px;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 2px;
}

.mejs__volume-current {
    background: rgba(255, 255, 255, 0.9);
    left: 0;
    margin: 0;
    position: absolute;
    width: 100%;
}

.mejs__volume-handle {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 1px solid;
    cursor: ns-resize;
    height: 6px;
    left: 50%;
    position: absolute;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 16px;
}

.mejs__horizontal-volume-slider {
    display: block;
    height: 36px;
    position: relative;
    vertical-align: middle;
    width: 56px;
}

.mejs__horizontal-volume-total {
    background: rgba(50, 50, 50, 0.8);
    border-radius: 2px;
    font-size: 1px solid;
    height: 8px;
    left: 0;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 16px;
    width: 50px;
}

.mejs__horizontal-volume-current {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    font-size: 1px solid;
    height: 100%;
    left: 0;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

.mejs__horizontal-volume-handle {
    display: none;
}

.mejs__captions-button, .mejs__chapters-button {
    position: relative;
}

.mejs__captions-button > button {
    background-position: -140px 0;
}

.mejs__chapters-button > button {
    background-position: -180px 0;
}

.mejs__captions-button > .mejs__captions-selector, .mejs__chapters-button > .mejs__chapters-selector {
    background: rgba(50, 50, 50, 0.7);
    border: solid 1px solid transparent;
    border-radius: 0;
    bottom: 100%;
    margin-right: -43px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    right: 50%;
    visibility: visible;
    width: 86px;
}

.mejs__chapters-button > .mejs__chapters-selector {
    margin-right: -55px;
    width: 110px;
}

.mejs__captions-selector-list, .mejs__chapters-selector-list {
    list-style-type: none !important;
    margin: 0;
    overflow: hidden;
    padding: 0;
}

.mejs__captions-selector-list-item, .mejs__chapters-selector-list-item {
    color: #fff;
    cursor: pointer;
    display: block;
    list-style-type: none !important;
    margin: 0 0 6px;
    overflow: hidden;
    padding: 0;
}

.mejs__captions-selector-list-item:hover, .mejs__chapters-selector-list-item:hover {
    background-color: #c8c8c8 !important;
    background-color: rgba(255, 255, 255, 0.4) !important;
}

.mejs__captions-selector-input, .mejs__chapters-selector-input {
    clear: both;
    float: left;
    left: -1000px;
    margin: 3px 3px 0 5px;
    position: absolute;
}

.mejs__captions-selector-label, .mejs__chapters-selector-label {
    cursor: pointer;
    float: left;
    font-size: 10px;
    line-height: 15px;
    padding: 4px 10px 0;
    width: 100%;
}

.mejs__captions-selected, .mejs__chapters-selected {
    color: #21f8f8;
}

.mejs__captions-translations {
    font-size: 10px;
    margin: 0 0 5px;
}

.mejs__captions-layer {
    bottom: 0;
    color: #fff;
    font-size: 16px;
    left: 0;
    line-height: 20px;
    position: absolute;
    text-align: center;
}

.mejs__captions-layer a {
    color: #fff;
    text-decoration: underline;
}

.mejs__captions-layer[lang="ar"] {
    font-size: 20px;
    font-weight: normal;
}

.mejs__captions-position {
    bottom: 15px;
    left: 0;
    position: absolute;
    width: 100%;
}

.mejs__captions-position-hover {
    bottom: 35px;
}

.mejs__captions-text, .mejs__captions-text * {
    background: rgba(20, 20, 20, 0.5);
    -webkit-box-shadow: 5px 0 0 rgba(20, 20, 20, 0.5), -5px 0 0 rgba(20, 20, 20, 0.5);
    box-shadow: 5px 0 0 rgba(20, 20, 20, 0.5), -5px 0 0 rgba(20, 20, 20, 0.5);
    padding: 0;
    white-space: pre-wrap;
}

.mejs__container.mejs__hide-cues video::-webkit-media-text-track-container {
    display: none;
}

.mejs__overlay-error {
    position: relative;
}

.mejs__overlay-error > img {
    left: 0;
    max-width: 100%;
    position: absolute;
    top: 0;
    z-index: -1;
}

.mejs__cannotplay, .mejs__cannotplay a {
    color: #fff;
    font-size: 0.8em;
}

.mejs__cannotplay {
    position: relative;
}

.mejs__cannotplay p, .mejs__cannotplay a {
    display: inline-block;
    padding: 0 15px;
    width: 100%;
}

/* ==================================
 ---------    SELECTBOX   ----------
================================== */
.sbHolder {
    border: solid 1px solid #000;
    font-size: 15px;
    font-size: 1em;
    font-weight: normal;
    height: 30px;
    position: relative;
    width: 200px;
}

.sbHolder.sbHolderDisabled {
    pointer-events: none;
    border: 1px solid solid #979797;
}

.sbHolder.sbHolderDisabled a, .sbHolder.sbHolderDisabled a.sbSelector {
    color: #979797;
}

.sbSelector {
    display: block;
    height: 30px;
    left: 0;
    line-height: 30px;
    outline: none;
    overflow: hidden;
    position: absolute;
    text-indent: 10px;
    top: 0;
    width: 170px;
}

.sbSelector:link, .sbSelector:visited, .sbSelector:hover {
    outline: none;
    text-decoration: none !important;
}

.sbToggle {
    float: right;
    margin: 5px;
    text-decoration: none !important;
}

.sbToggle::before {
    font-family: "q4-icons-legacy";
    display: inline-block;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\edc2";
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.sbToggle.sbToggleOpen::before {
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
}

.sbOptions {
    background-color: #fff;
    list-style: none;
    left: -1px solid;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 30px;
    width: 200px;
    z-index: 1;
    overflow-y: auto;
    -webkit-box-shadow: 0 5px 5px 0 rgba(68, 68, 68, 0.3);
    box-shadow: 0 5px 5px 0 rgba(68, 68, 68, 0.3);
}

.sbOptions li {
    padding: 0 15px;
}

.sbOptions li.last a {
    border-bottom: none;
}

.sbOptions a {
    border-bottom: solid 1px solid #f1f1f1;
    display: block;
    outline: none;
    padding: 15px 0;
}

.sbOptions a:link, .sbOptions a:visited {
    color: #545b62;
    text-decoration: none;
}

.sbOptions a:hover, .sbOptions a:focus, .sbOptions a.sbFocus {
    color: #105ca3;
}

.sbOptions .sbDisabled {
    border-bottom: dotted 1px solid #515151;
    color: #999;
    display: block;
    padding: 7px 0 7px 3px;
}

.sbOptions .sbGroup {
    border-bottom: dotted 1px solid #515151;
    color: #ebb52d;
    display: block;
    font-weight: bold;
    padding: 7px 0 7px 3px;
}

.sbOptions .sbSub {
    padding-left: 17px;
}

/* ==================================
 ---------    SLICKJS    ----------
================================== */
/* Slider - Legacy */
.slick-arrow {
    font-size: 13px;
    padding: 15px;
    position: absolute;
    top: calc(50% - 6.5px);
    border-width: 1px;
    border-style: solid;
    border-radius: 100%;
    border-color: var(--evgBodyFontColor);
    background-color: transparent;
    outline-color: var(--evgBodyFontColor) !important;
}

.slick-arrow::before {
    font-family: "q4-icons-legacy" !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px !important;
    color: var(--evgBodyFontColor);
}

.slick-arrow.slick-disabled {
    opacity: 0.3;
    pointer-events: none;
}

.slick-arrow.slick-hidden {
    display: none;
}

.slick-prev {
    left: 0;
}

.slick-prev::before {
    content: "\edc6";
}

.slick-next {
    right: 0;
}

.slick-next::before {
    content: "\edbe";
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
    width: 100%;
    padding: 0px 0px 30px 0px;
    overflow: hidden;
    width: auto;
}

.slick-list .module-inner-item {
    margin: 0 50px;
}

.slick-list:focus {
    outline: none;
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-dots {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.slick-dots li {
    display: inline-block;
    vertical-align: middle;
}

.slick-dots li:not(:last-child) {
    margin-right: 5px;
}

.slick-dots li button {
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 100%;
    background: var(--evgPrimaryColor);
    border: 1px solid var(--evgLightColor);
    outline-color: var(--evgLightColor) !important;
    width: 10px;
    height: 10px;
    opacity: 1;
    cursor: pointer;
    display: block;
}

.slick-dots li.slick-active button {
    opacity: 1;
    background: var(--evgLightColor);
}

.slick-slider {
    position: relative;
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
    padding: 0 20px;
}

.slick-slider .slick-track, .slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-slider .slick-track {
    position: relative;
    top: 0;
    left: 0;
    margin-left: auto;
    margin-right: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: stretch;
    -ms-flex-pack: stretch;
    justify-content: stretch;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

.slick-slider .slick-track::before, .slick-slider .slick-track::after {
    display: table;
    content: "";
}

.slick-slider .slick-track::after {
    clear: both;
}

[dir="rtl"] .slick-slider .slick-track {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    min-height: 1px solid;
}

.slick-slide > div:not([class]) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.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 solid transparent;
}

/* ==================================
 ----- EVERGREEN SLICKJS -------
================================== */
.evergreen-slider .slick-slider {
    position: relative;
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
    -webkit-touch-callout: none;
    -khtml-user-select: text;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.evergreen-slider .slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.evergreen-slider .slick-list:focus {
    outline: none;
}

.evergreen-slider .slick-list.dragging {
    cursor: pointer;
    cursor: hand;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.evergreen-slider .slick-slider .slick-track, .evergreen-slider .slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.evergreen-slider .slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
}

.evergreen-slider .slick-track:before, .evergreen-slider .slick-track:after {
    display: table;
    content: "";
}

.evergreen-slider .slick-track:after {
    clear: both;
}

.evergreen-slider .slick-loading .slick-track {
    visibility: hidden;
}

.evergreen-slider .slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px solid;
}

[dir="rtl"] .evergreen-slider .slick-slide {
    float: right;
}

.evergreen-slider .slick-slide img {
    display: block;
}

.evergreen-slider .slick-slide.slick-loading img {
    display: none;
}

.evergreen-slider .slick-slide.dragging img {
    pointer-events: none;
}

.evergreen-slider .slick-initialized .slick-slide {
    display: block;
}

.evergreen-slider .slick-loading .slick-slide {
    visibility: hidden;
}

.evergreen-slider .slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid solid transparent;
}

.evergreen-slider .slick-arrow.slick-hidden {
    display: none;
}

.evergreen-slider .slick-prev, .evergreen-slider .slick-next {
    position: absolute;
    display: block;
    line-height: 0px;
    font-size: 0px;
    cursor: pointer;
    background: transparent;
    color: transparent;
    top: 50%;
    margin-top: -10px\9;
    /*lte IE 8*/
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    padding: 0;
    border: none;
    outline: none;
}

.evergreen-slider .slick-prev:hover, .evergreen-slider .slick-prev:focus, .evergreen-slider .slick-next:hover, .evergreen-slider .slick-next:focus {
    outline: none;
    background: transparent;
    color: transparent;
}

.evergreen-slider .slick-prev:hover:before, .evergreen-slider .slick-prev:focus:before, .evergreen-slider .slick-next:hover:before, .evergreen-slider .slick-next:focus:before {
    opacity: 1;
}

.evergreen-slider .slick-prev.slick-disabled:before, .evergreen-slider .slick-next.slick-disabled:before {
    opacity: 0.25;
}

.evergreen-slider .slick-prev:before, .evergreen-slider .slick-next:before {
    font-family: "q4icons";
    font-size: 20px;
    line-height: 1;
    color: white;
    opacity: 0.75;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.evergreen-slider .slick-prev {
    left: -25px;
}

[dir="rtl"] .evergreen-slider .slick-prev {
    left: auto;
    right: -25px;
}

.evergreen-slider .slick-prev:before {
    content: "\e64c";
}

[dir="rtl"] .evergreen-slider .slick-prev:before {
    content: "\e64c";
}

.evergreen-slider .slick-next {
    right: -25px;
}

[dir="rtl"] .evergreen-slider .slick-next {
    left: -25px;
    right: auto;
}

.evergreen-slider .slick-next:before {
    content: "\e64f";
}

[dir="rtl"] .evergreen-slider .slick-next:before {
    content: "\e64f";
}

.evergreen-slider .slick-dots {
    position: absolute;
    bottom: -45px;
    list-style: none;
    display: block;
    text-align: center;
    padding: 0;
    width: 100%;
}

.evergreen-slider .slick-dots li {
    position: relative;
    display: inline-block;
    height: 20px;
    width: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}

.evergreen-slider .slick-dots li button {
    border: 0;
    background: transparent;
    display: block;
    height: 20px;
    width: 20px;
    outline: none;
    line-height: 0px;
    font-size: 0px;
    color: transparent;
    padding: 5px;
    cursor: pointer;
}

.evergreen-slider .slick-dots li button:hover, .evergreen-slider .slick-dots li button:focus {
    outline: none;
}

.evergreen-slider .slick-dots li button:hover:before, .evergreen-slider .slick-dots li button:focus:before {
    opacity: 1;
}

.evergreen-slider .slick-dots li button:before {
    position: absolute;
    top: 0;
    left: 0;
    content: "\e907";
    width: 20px;
    height: 20px;
    font-family: "q4icons";
    font-size: 6px;
    line-height: 20px;
    text-align: center;
    color: black;
    opacity: 0.25;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.evergreen-slider .slick-dots li.slick-active button:before {
    color: black;
    opacity: 0.75;
}

body {
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: none;
}

.evergreen-layout {
    /* ------------ COMMON ------------ */
    /* ------- HACKS AND FIXES ------- */
    /* ------- BUTTONS / INPUTS ------- */
    /* ------------ TABLES ------------ */
    /* --------- SPECIAL BOXES -------- */
}

.evergreen-layout img {
    max-width: 100%;
}

.evergreen-layout iframe {
    width: 100%;
}

.evergreen-layout .clearfix::before, .evergreen-layout .clearfix::after {
    content: " ";
    display: table;
}

.evergreen-layout .clearfix::after {
    clear: both;
}

.evergreen-layout *::-webkit-input-placeholder {
    color: inherit;
}

.evergreen-layout *::-moz-placeholder {
    color: inherit;
}

.evergreen-layout *::-ms-input-placeholder {
    color: inherit;
}

.evergreen-layout .input, .evergreen-layout .textarea, .evergreen-layout .dropdown, .evergreen-layout .upload, .evergreen-layout .submit, .evergreen-layout .button {
    display: inline-block;
    max-width: 100%;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.evergreen-layout .input::-ms-clear, .evergreen-layout .textarea::-ms-clear, .evergreen-layout .dropdown::-ms-clear, .evergreen-layout .upload::-ms-clear, .evergreen-layout .submit::-ms-clear, .evergreen-layout .button::-ms-clear {
    display: none;
}

.evergreen-layout .submit, .evergreen-layout .button, .evergreen-layout .upload, .evergreen-layout .dropdown {
    cursor: pointer;
}

.evergreen-layout .textarea {
    width: 100%;
    resize: vertical;
    min-height: 150px;
}

.evergreen-layout .upload {
    line-height: 0;
}

.evergreen-layout .input[aria-invalid="true"], .evergreen-layout .textarea[aria-invalid="true"], .evergreen-layout select[aria-invalid="true"] {
    border-color: var(--evgErrorColor);
    border-width: 2px;
}

.evergreen-layout .table {
    width: 100%;
    margin: 16px 0;
}

.evergreen-layout .table caption {
    caption-side: bottom;
    font-size: 1.2rem;
    border-top: 1px solid solid var(--evgGreyColor);
    border-bottom: 1px solid solid var(--evgGreyColor);
    padding: 5px;
}

.evergreen-layout .table th, .evergreen-layout .table td, .evergreen-layout .table tr > .grid_col {
    margin: 0;
    padding: 15px 10px;
}

.evergreen-layout .table th {
    font-weight: var(--fontWeight);
}

.evergreen-layout .table th[data-sorting="true"]:hover {
    cursor: pointer;
}

.evergreen-layout .table-wrapper {
    overflow-x: auto;
}

@media only screen and (max-width: 480px) {
    .evergreen-layout .table--responsive thead {
        display: none;
    }

    .evergreen-layout .table--responsive td {
        display: block;
    }

    .evergreen-layout .table--responsive td::before {
        content: attr(data-heading) ": ";
    }
}

.evergreen-layout .highcharts-data-table .table tbody th {
    color: var(--evgBodyFontColor);
    text-align: left;
}

.evergreen-layout .code {
    margin: 32px 0;
    padding: 20px 15px;
    background: var(--evgGreyColor);
    border-left: 3px solid rgba(var(--evgPrimaryColor), 0.5);
    font-family: monospace, serif;
    font-size: 1.4rem;
    word-break: break-all;
    word-wrap: break-word;
    white-space: pre;
    overflow: hidden;
}

.evergreen-layout .code_comment {
    opacity: 0.5;
}

.evergreen-layout .quote {
    margin: 32px 0;
    padding: 20px 15px;
    background: var(--evgGreyColor);
    border-left: 3px solid rgba(var(--evgAltColor), 0.5);
    font-size: 1.4rem;
    font-style: italic;
}

.evergreen-layout .quote p::before {
    margin-right: 5px;
    font-family: "q4-icons-legacy";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\eb1b";
}

.evergreen-layout .quote p::after {
    margin-left: 5px;
    font-family: "q4-icons-legacy";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\eb1c";
}

.evergreen-layout .evergreen-layout-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    /* min-height: 415px; */
    padding-top: 95px !important;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    z-index: 9999 !important;
}

.evergreen-layout .evergreen-layout-header::before {
    pointer-events: none;
}

.evergreen-layout .evergreen-layout-header .evergreen-pane--navigation {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 32px;
}

@media only screen and (max-width: 1024px) {
    .evergreen-layout .evergreen-layout-header .evergreen-pane--navigation {
        gap: 16px;
    }
}

.evergreen-layout .evergreen-layout-header .evergreen-pane .evergreen-section-item--logo {
    width: auto;
    height: auto;
    max-width: 250px;
}

.evergreen-layout .evergreen-layout-header .evergreen-pane .evergreen-section-item--logo img {
    -o-object-fit: unset;
    object-fit: unset;
    max-height: 60px !important;
}

/* .evergreen-layout .evergreen-layout-header .evergreen-section--navigation {
  z-index: 999;
  padding: 20px 0;
  transition: all 0.5s ease-in-out;
} */
.evergreen-layout .evergreen-layout-header .evergreen-section--navigation .evergreen-primary-navigation .evergreen-navigation-list--topMenu {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.evergreen-layout .evergreen-layout-header .evergreen-section--navigation .evergreen-primary-navigation .evergreen-navigation-list--innerMenu, .evergreen-layout .evergreen-layout-header .evergreen-section--navigation .evergreen-primary-navigation .evergreen-navigation--list--innerMenu {
    gap: 0;
}

.evergreen-layout .evergreen-layout-header .evergreen-section--navigation .evergreen-primary-navigation .evergreen-navigation-list--innerMenu li, .evergreen-layout .evergreen-layout-header .evergreen-section--navigation .evergreen-primary-navigation .evergreen-navigation--list--innerMenu li {
    padding: 8px 0;
    width: 100%;
}

.evergreen-layout .evergreen-layout-header .evergreen-section--navigation .evergreen-primary-navigation .evergreen-navigation-list--innerMenu li a, .evergreen-layout .evergreen-layout-header .evergreen-section--navigation .evergreen-primary-navigation .evergreen-navigation-list--innerMenu li button, .evergreen-layout .evergreen-layout-header .evergreen-section--navigation .evergreen-primary-navigation .evergreen-navigation--list--innerMenu li a, .evergreen-layout .evergreen-layout-header .evergreen-section--navigation .evergreen-primary-navigation .evergreen-navigation--list--innerMenu li button {
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 8px;
}

.evergreen-layout .evergreen-layout-header .evergreen-section--navigation .evergreen-primary-navigation .evergreen-navigation-list--innerMenu li button .evergreen-navigation-button-text, .evergreen-layout .evergreen-layout-header .evergreen-section--navigation .evergreen-primary-navigation .evergreen-navigation--list--innerMenu li button .evergreen-navigation-button-text {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.evergreen-layout .evergreen-layout-header .evergreen-section--navigation .evergreen-primary-navigation .evergreen-navigation-list--innerMenu::before, .evergreen-layout .evergreen-layout-header .evergreen-section--navigation .evergreen-primary-navigation .evergreen-navigation--list--innerMenu::before {
    content: "";
    border-bottom: 11px solid var(--evgNavigationsMainDropdownBackgroundColor);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    position: absolute;
    top: -10px;
    left: 15px;
}

.evergreen-layout .evergreen-layout-header .evergreen-section--navigation .evergreen-primary-navigation .evergreen-navigation-search .tooltip {
    top: 50%;
    bottom: unset;
}

.evergreen-layout .evergreen-layout-header .evergreen-section--navigation .evergreen-primary-navigation .evergreen-navigation-search .tooltip[aria-hidden="false"] {
    display: inline-block;
}

.evergreen-layout .evergreen-layout-header .evergreen-section--navigation .evergreen-primary-navigation .evergreen-navigation-search .tooltip[data-position="right"] {
    -webkit-transform: translate(100%, -50%);
    -ms-transform: translate(100%, -50%);
    transform: translate(100%, -50%);
}

.evergreen-layout .evergreen-layout-header .evergreen-section--navigation .evergreen-primary-navigation .evergreen-navigation-search input {
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    padding: 10px 35px 10px 15px;
    -webkit-box-shadow: 2px 2px 8px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 2px 2px 8px 0px rgba(0, 0, 0, 0.1);
}

.evergreen-layout .evergreen-layout-header .evergreen-section--navigation .evergreen-primary-navigation .evergreen-navigation-search input:focus {
    -webkit-box-shadow: 6px 4px 8px 4px rgba(0, 0, 0, 0.1);
    box-shadow: 6px 4px 8px 4px rgba(0, 0, 0, 0.1);
}

.evergreen-layout .evergreen-layout-header .evergreen-section--navigation .evergreen-primary-navigation .evergreen-navigation-search input.opened + .tooltip {
    right: unset;
}

.evergreen-layout .evergreen-layout-header .evergreen-section--banner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.evergreen-layout--scroll .evergreen-layout-header .evergreen-section.evergreen-section--navigation {
    /* padding: 0px 0 5px 0; */
    -webkit-box-shadow: rgba(40, 48, 51, 0.2) 0 2px 20px;
    box-shadow: rgba(40, 48, 51, 0.2) 0 2px 20px;
}

.evergreen {
    /**
  * Add this class to an image to make it fit within its fluid parent wrapper while maintaining
  * aspect ratio.
  */
    /* Prevent global.css and client.css adding background image on evergreen dropdown */
    /* ==================================
  ----- Evergreen Modules Icons ------
  ================================== */
    /* ==================================
   ----- Evergreen Base Module -------
  ================================== */
    /* Prevent global.css and client.css adding background image on evergreen links */
    /* ==================================
  ---- Evergreen Module Padding ----
  ================================== */
}

.evergreen .evergreen-img {
    max-width: 100%;
    height: auto;
    display: block;
}

.evergreen .evergreen-dropdown {
    background-image: none;
}

.evergreen .evergreen-dropdown-wrapper {
    display: inline-block;
}

.evergreen .evergreen-font--lighter, .evergreen .evergreen-font--lighter .evergreen-title .ModuleTitle {
    font-weight: lighter;
}

.evergreen .evergreen-font--normal, .evergreen .evergreen-font--normal .evergreen-title .ModuleTitle {
    font-weight: normal;
}

.evergreen .evergreen-font--bold, .evergreen .evergreen-font--bold .evergreen-title .ModuleTitle {
    font-weight: bold;
}

.evergreen [class*="evergreen-module-icon"]::before {
    font-family: "evergreen-icons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\e91e";
    font-size: inherit;
    vertical-align: middle;
    display: inline-block;
    padding-right: 5px;
    min-width: 25px;
    /* min-width because sometimes icons don't align properly */
    text-align: left;
}

.evergreen .evergreen-module-icon-rss::before {
    content: "\eefa";
}

.evergreen .evergreen-module-icon-calendar::before {
    content: "\ea5f";
    padding-right: 5px;
}

.evergreen [href$=".mp3"] .evergreen-module-icon::before, .evergreen [href$=".wmv"] .evergreen-module-icon::before, .evergreen [href$=".MP3"] .evergreen-module-icon::before, .evergreen [href$=".WMV"] .evergreen-module-icon::before {
    content: "\e952";
}

.evergreen [href$=".xls"] .evergreen-module-icon::before, .evergreen [href$=".xlsx"] .evergreen-module-icon::before, .evergreen [href$=".csv"] .evergreen-module-icon::before, .evergreen [href$=".XLS"] .evergreen-module-icon::before, .evergreen [href$=".XLSX"] .evergreen-module-icon::before, .evergreen [href$=".CSV"] .evergreen-module-icon::before {
    content: "\eeae";
}

.evergreen [href$=".mp4"] .evergreen-module-icon::before, .evergreen [href$=".flv"] .evergreen-module-icon::before, .evergreen [href$=".avi"] .evergreen-module-icon::before, .evergreen [href$=".MP4"] .evergreen-module-icon::before, .evergreen [href$=".FLV"] .evergreen-module-icon::before, .evergreen [href$=".AVI"] .evergreen-module-icon::before {
    content: "\e95e";
}

.evergreen [href$=".pdf"] .evergreen-module-icon::before, .evergreen [href$=".PDF"] .evergreen-module-icon::before {
    content: "\e911";
}

.evergreen [href$=".ppt"] .evergreen-module-icon::before, .evergreen [href$=".PPT"] .evergreen-module-icon::before, .evergreen [href$=".pptx"] .evergreen-module-icon::before, .evergreen [href$=".PPTX"] .evergreen-module-icon::before {
    content: "\e925";
}

.evergreen [href$=".rtf"] .evergreen-module-icon::before, .evergreen [href$=".RTF"] .evergreen-module-icon::before {
    content: "\e91c";
}

.evergreen [href$=".zip"] .evergreen-module-icon::before, .evergreen [href$=".ZIP"] .evergreen-module-icon::before {
    content: "\e918";
}

.evergreen [href^="tel:"] .evergreen-module-icon::before {
    font-size: 16px;
    vertical-align: text-bottom;
    font-family: "evergreen-icons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\ea1d";
}

.evergreen [href^="mailto:"] .evergreen-module-icon::before {
    font-size: 16px;
    vertical-align: text-bottom;
    font-family: "evergreen-icons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\ea34";
}

.evergreen .evergreen-module-icon-webcast::before {
    content: "\e912";
}

.evergreen .evergreen-module-icon-presentation::before {
    content: "\e913";
}

.evergreen .evergreen-module-icon-download::before {
    content: "\e910";
}

.evergreen .evergreen-module-icon-sec::before {
    content: "\e91e";
}

.evergreen .evergreen-module-icon-file-pdf-line::before {
    content: "\ef3e";
}

.evergreen .evergreen-module-icon-file-html-line::before {
    content: "\e9bb";
}

.evergreen .evergreen-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 30px;
    gap: 10px;
}

.evergreen .evergreen-container .evergreen-container-content {
    outline: none;
}

.evergreen .evergreen-header > .evergreen-title {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.evergreen .ModuleTitle {
    display: block;
}

.evergreen .evergreen-title.evergreen-title-left .ModuleTitle {
    text-align: left;
}

.evergreen .evergreen-title.evergreen-title-right .ModuleTitle {
    text-align: right;
}

.evergreen .evergreen-title.evergreen-title-center .ModuleTitle {
    text-align: center;
}

.evergreen .evergreen-font--transform-none, .evergreen .evergreen-font--transform-none.evergreen-title .ModuleTitle {
    text-transform: none;
}

.evergreen .evergreen-font--transform-uppercase, .evergreen .evergreen-font--transform-uppercase.evergreen-title .ModuleTitle {
    text-transform: uppercase;
}

.evergreen .evergreen-font--transform-capitalize, .evergreen .evergreen-font--transform-capitalize.evergreen-title .ModuleTitle {
    text-transform: capitalize;
}

.evergreen .evergreen-font--transform-lowercase, .evergreen .evergreen-font--transform-lowercase.evergreen-title .ModuleTitle {
    text-transform: lowercase;
}

.evergreen .evergreen-data-left {
    text-align: left;
    text-align: -webkit-left;
}

.evergreen .evergreen-data-right {
    text-align: right;
    text-align: -webkit-right;
}

.evergreen .evergreen-data-center {
    text-align: center;
    text-align: -webkit-center;
}

.evergreen a {
    text-decoration: none;
}

.evergreen .evergreen-dropdown-wrapper {
    position: relative;
}

.evergreen .evergreen-dropdown-wrapper:before {
    font-family: "evergreen-icons" !important;
    speak: never;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    font-size: 14px;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    content: "\edc2";
    position: absolute;
    top: 50%;
    right: 8px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    pointer-events: none;
}

.evergreen .evergreen-loader {
    margin: 0;
    display: inline-block;
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
}

.evergreen .evergreen-loader--text {
    display: block;
    text-align: center;
    width: auto;
    -webkit-animation: none;
    animation: none;
}

.evergreen span[class^="dot-"] {
    opacity: 0;
}

.evergreen .dot-one {
    -webkit-animation: dot-one 2s infinite linear;
    animation: dot-one 2s infinite linear;
}

.evergreen .dot-two {
    -webkit-animation: dot-two 2s infinite linear;
    animation: dot-two 2s infinite linear;
}

.evergreen .dot-three {
    -webkit-animation: dot-three 2s infinite linear;
    animation: dot-three 2s infinite linear;
}

@-webkit-keyframes dot-one {
    0% {
        opacity: 0;
    }

    15% {
        opacity: 0;
    }

    25% {
        opacity: 1;
    }

    100% {
        opacity: 1;
    }
}

@keyframes dot-one {
    0% {
        opacity: 0;
    }

    15% {
        opacity: 0;
    }

    25% {
        opacity: 1;
    }

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes dot-two {
    0% {
        opacity: 0;
    }

    25% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 1;
    }
}

@keyframes dot-two {
    0% {
        opacity: 0;
    }

    25% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes dot-three {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 0;
    }

    75% {
        opacity: 1;
    }

    100% {
        opacity: 1;
    }
}

@keyframes dot-three {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 0;
    }

    75% {
        opacity: 1;
    }

    100% {
        opacity: 1;
    }
}

.evergreen .evergreen-link:before {
    content: "";
    background-image: none;
}

.evergreen .evergreen-link--button [class^="evergreen-module-icon"], .evergreen .evergreen-link--button [class*=" evergreen-module-icon"], .evergreen .evergreen-link--text-only [class^="evergreen-module-icon"], .evergreen .evergreen-link--text-only [class*=" evergreen-module-icon"] {
    display: none;
}

.evergreen .evergreen-link--icon-only .evergreen-link-text {
    position: absolute !important;
    width: 1px solid !important;
    height: 1px solid !important;
    padding: 0 !important;
    margin: -1px solid !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    border: 0 !important;
}

.evergreen .evergreen-link-view-all:not(.evergreen-button):after {
    font-family: "evergreen-icons" !important;
    speak: never;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    content: "\e90d";
    padding-left: 10px;
}

.evergreen .evergreen-year-options-label, .evergreen .evergreen-tag-options-label {
    margin-right: 10px;
}

.evergreen .evergreen-container.evergreen-container--outer.evergreen-container--no-padding, .evergreen .evergreen-item-container.evergreen-item-container--no-padding, .evergreen .evergreen-item-container.evergreen-item--no-padding, .evergreen .evergreen-item-container.evergreen-container--no-padding, .evergreen .evergreen-accordion.accordion-item .evergreen-accordion-header.evergreen-accordion-header--no-padding button {
    padding-left: 0;
    padding-right: 0;
}

.evergreen .evergreen-container.evergreen-container--outer.evergreen-container--padding, .evergreen .evergreen-container.evergreen-container--outer.evergreen-container--has-padding, .evergreen .evergreen-accordion.accordion-item .evergreen-accordion-header.evergreen-accordion-header--padding button {
    padding-left: 20px;
    padding-right: 20px;
}

.evergreen .evergreen-item-container.evergreen-container--padding, .evergreen .evergreen-item-container.evergreen-item-container--has-padding {
    padding-left: 30px;
    padding-right: 30px;
}

.evergreen .p {
    --fontSize: var(--evgBodyFontSizeL);
    --fontFamily: var(--evgBodyFontFamily);
    --fontColor: var(--evgBodyFontColor);
    --fontWeight: var(--evgBodyFontWeight);
    --lineHeight: var(--evgBodyLineHeight);
    --capitalization: var(--evgBodyCapitalization);
}

.evergreen .h1 {
    --fontSize: var(--evgH1FontSizeL);
    --fontFamily: var(--evgH1FontFamily);
    --fontColor: var(--evgH1FontColor);
    --fontWeight: var(--evgH1FontWeight);
    --lineHeight: var(--evgH1LineHeight);
    --capitalization: var(--evgH1Capitalization);
}

.evergreen .h2 {
    --fontSize: var(--evgH2FontSizeL);
    --fontFamily: var(--evgH2FontFamily);
    --fontColor: var(--evgH2FontColor);
    --fontWeight: var(--evgH2FontWeight);
    --lineHeight: var(--evgH2LineHeight);
    --capitalization: var(--evgH2Capitalization);
}

.evergreen .h3 {
    --fontSize: var(--evgH3FontSizeL);
    --fontFamily: var(--evgH3FontFamily);
    --fontColor: var(--evgH3FontColor);
    --fontWeight: var(--evgH3FontWeight);
    --lineHeight: var(--evgH3LineHeight);
    --capitalization: var(--evgH3Capitalization);
}

.evergreen .h4 {
    --fontSize: var(--evgH4FontSizeL);
    --fontFamily: var(--evgH4FontFamily);
    --fontColor: var(--evgH4FontColor);
    --fontWeight: var(--evgH4FontWeight);
    --lineHeight: var(--evgH4LineHeight);
    --capitalization: var(--evgH4Capitalization);
}

.evergreen .h5 {
    --fontSize: var(--evgH5FontSizeL);
    --fontFamily: var(--evgH5FontFamily);
    --fontColor: var(--evgH5FontColor);
    --fontWeight: var(--evgH5FontWeight);
    --lineHeight: var(--evgH5LineHeight);
    --capitalization: var(--evgH5Capitalization);
}

.evergreen .p, .evergreen .h1, .evergreen .h2, .evergreen .h3, .evergreen .h4, .evergreen .h5 {
    font-size: var(--fontSize);
    font-family: var(--fontFamily);
    color: var(--fontColor);
    font-weight: var(--fontWeight);
    line-height: var(--lineHeight);
    text-transform: var(--capitalization);
}

.evergreen .evergreen-header:empty {
    display: none;
}

.evergreen.evergreen-text-editor .evergreen-item {
    padding: 0;
}

/* Components */
.evergreen-accordion h4 {
    margin: 0;
}

.evergreen-accordion h4 button {
    width: 100%;
    padding: 20px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.evergreen-accordion h4 button:focus {
    outline: 2px dotted grey;
    outline-offset: 2px;
}

.evergreen-accordion h4 button .evergreen-accordion-header-text {
    width: 100%;
}

.evergreen-accordion h4 button .evergreen-accordion-header-text > span {
    overflow-wrap: anywhere;
}

.evergreen-accordion h4 button .evergreen-accordion-header-text span.accordion-toggle-icon:last-child {
    margin-left: 10px;
}

.evergreen-accordion h4 button .evergreen-accordion-header-text span.accordion-toggle-icon:first-child {
    margin-right: 10px;
}

.evergreen-accordion .evergreen-accordion-content-text {
    padding: 15px;
    margin-bottom: 15px;
    overflow: hidden;
}

.evergreen-accordion .evergreen-accordion-content-text p {
    text-align: left;
    margin: 0;
}

.evergreen-accordion .evergreen-accordion-content-text p:empty {
    display: none;
    margin: 0;
    padding: 0;
}

.evergreen-accordion .evergreen-accordion-content-text p:not(:empty) + p:not(:empty) {
    margin-top: 1em;
}

.evergreen-accordion:last-child .evergreen-accordion-content-text {
    margin-bottom: 0;
}

.evergreen .accordion[class*="--all-button-right"] .toggle-all {
    text-align: right;
}

.evergreen-button, [class^="evergreen-button"] {
    /* Structure */
    display: inline-block;
    line-height: normal;
    white-space: nowrap;
    vertical-align: middle;
    text-align: center;
    cursor: pointer;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

/* Firefox: Get rid of the inner focus border */
.evergreen-button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

/* Inherit .evergreen-g styles */
.evergreen-button-group {
    letter-spacing: -0.31em;
    /* Webkit: collapse white-space between units */
    text-rendering: optimizespeed;
    /* Webkit: fixes text-rendering: optimizeLegibility */
}

.opera-only :-o-prefocus, .evergreen-button-group {
    word-spacing: -0.43em;
}

.evergreen-button-group .evergreen-button {
    letter-spacing: normal;
    word-spacing: normal;
    vertical-align: top;
    text-rendering: auto;
}

.evergreen-button {
    font-family: inherit;
    font-size: 100%;
    padding: 0.5em 1em;
    color: rgba(0, 0, 0, 0.8);
    border: none rgba(0, 0, 0, 0);
    background-color: #e6e6e6;
    text-decoration: none;
    border-radius: 2px;
}

.evergreen-button:focus {
    outline: 0;
}

.evergreen-button-active, .evergreen-button:active {
    -webkit-box-shadow: 0 0 0 1px solid rgba(0, 0, 0, 0.15) inset, 0 0 6px rgba(0, 0, 0, 0.2) inset;
    box-shadow: 0 0 0 1px solid rgba(0, 0, 0, 0.15) inset, 0 0 6px rgba(0, 0, 0, 0.2) inset;
    border-color: #000;
}

.evergreen-button[disabled], .evergreen-button-disabled, .evergreen-button-disabled:hover, .evergreen-button-disabled:focus, .evergreen-button-disabled:active {
    border: none;
    background-image: none;
    opacity: 0.4;
    cursor: not-allowed;
    -webkit-box-shadow: none;
    box-shadow: none;
    pointer-events: none;
}

.evergreen-button-hidden {
    display: none;
}

.evergreen-button-group .evergreen-button {
    margin: 0;
    border-radius: 0;
    border-right: 1px solid solid rgba(0, 0, 0, 0.2);
}

.evergreen-button-group .evergreen-button:first-child {
    border-top-left-radius: 2px;
    border-bottom-left-radius: 2px;
}

.evergreen-button-group .evergreen-button:last-child {
    border-top-right-radius: 2px;
    border-bottom-right-radius: 2px;
    border-right: none;
}

@media only screen and (max-width: 480px) {
    .evergreen-form button [type="submit"] {
        margin: 0.7em 0 0;
    }

    .evergreen-form input:not([type]), .evergreen-form input[type="text"], .evergreen-form input[type="password"], .evergreen-form input[type="email"], .evergreen-form input[type="url"], .evergreen-form input[type="date"], .evergreen-form input[type="month"], .evergreen-form input[type="time"], .evergreen-form input[type="datetime"], .evergreen-form input[type="datetime-local"], .evergreen-form input[type="week"], .evergreen-form input[type="number"], .evergreen-form input[type="search"], .evergreen-form input[type="tel"], .evergreen-form input[type="color"] {
        margin-bottom: 0.3em;
        display: block;
    }

    .evergreen-form label {
        margin-bottom: 0.3em;
        display: block;
    }

    .evergreen-form-aligned .evergreen-control-group label {
        margin-bottom: 0.3em;
        text-align: left;
        display: block;
        width: 100%;
    }

    .evergreen-form-aligned .evergreen-controls {
        margin: 1.5em 0 0 0;
    }

    .evergreen-form-message-inline, .evergreen-form-message {
        display: block;
        font-size: calc(var(--rootFontSize) * 0.75);
        /* Increased bottom padding to make it group with its related input element. */
        padding: 0.2em 0 0.8em;
    }

    .evergreen-group input:not([type]), .evergreen-group input[type="text"], .evergreen-group input[type="password"], .evergreen-group input[type="email"], .evergreen-group input[type="url"], .evergreen-group input[type="date"], .evergreen-group input[type="month"], .evergreen-group input[type="time"], .evergreen-group input[type="datetime"], .evergreen-group input[type="datetime-local"], .evergreen-group input[type="week"], .evergreen-group input[type="number"], .evergreen-group input[type="search"], .evergreen-group input[type="tel"], .evergreen-group input[type="color"] {
        margin-bottom: 0;
    }
}

/*csslint box-model:false*/
/*
Box-model set to false because we're setting a height on select elements, which
also have border and padding. This is done because some browsers don't render
the padding. We explicitly set the box-model for select elements to border-box,
so we can ignore the csslint warning.
*/
.evergreen-form {
    /*
    Need to separate out the :not() selector from the rest of the CSS 2.1 selectors
    since IE8 won't execute CSS that contains a CSS3 selector.
    */
    /* Chrome (as of v.32/34 on OS X) needs additional room for color to display. */
    /* May be able to remove this tweak as color inputs become more standardized across browsers. */
    /*
    Need to separate out the :not() selector from the rest of the CSS 2.1 selectors
    since IE8 won't execute CSS that contains a CSS3 selector.
    */
    /*
    Need to separate out the :not() selector from the rest of the CSS 2.1 selectors
    since IE8 won't execute CSS that contains a CSS3 selector.
    */
    /* Aligned Forms */
    /* Rounded Inputs */
    /* Grouped Inputs */
    /* Inline help for forms */
    /* Block help for forms */
}

.evergreen-form input[type="text"], .evergreen-form input[type="password"], .evergreen-form input[type="email"], .evergreen-form input[type="url"], .evergreen-form input[type="date"], .evergreen-form input[type="month"], .evergreen-form input[type="time"], .evergreen-form input[type="datetime"], .evergreen-form input[type="datetime-local"], .evergreen-form input[type="week"], .evergreen-form input[type="number"], .evergreen-form input[type="search"], .evergreen-form input[type="tel"], .evergreen-form input[type="color"], .evergreen-form select, .evergreen-form textarea {
    padding: 0.5em 0.6em;
    display: inline-block;
    border: 1px solid solid #ccc;
    -webkit-box-shadow: inset 0 1px solid 3px #ddd;
    box-shadow: inset 0 1px solid 3px #ddd;
    border-radius: 4px;
    vertical-align: middle;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.evergreen-form input[type="text"]:focus, .evergreen-form input[type="password"]:focus, .evergreen-form input[type="email"]:focus, .evergreen-form input[type="url"]:focus, .evergreen-form input[type="date"]:focus, .evergreen-form input[type="month"]:focus, .evergreen-form input[type="time"]:focus, .evergreen-form input[type="datetime"]:focus, .evergreen-form input[type="datetime-local"]:focus, .evergreen-form input[type="week"]:focus, .evergreen-form input[type="number"]:focus, .evergreen-form input[type="search"]:focus, .evergreen-form input[type="tel"]:focus, .evergreen-form input[type="color"]:focus, .evergreen-form select:focus, .evergreen-form textarea:focus {
    outline: 0;
    border-color: #129fea;
}

.evergreen-form input[type="text"][disabled], .evergreen-form input[type="password"][disabled], .evergreen-form input[type="email"][disabled], .evergreen-form input[type="url"][disabled], .evergreen-form input[type="date"][disabled], .evergreen-form input[type="month"][disabled], .evergreen-form input[type="time"][disabled], .evergreen-form input[type="datetime"][disabled], .evergreen-form input[type="datetime-local"][disabled], .evergreen-form input[type="week"][disabled], .evergreen-form input[type="number"][disabled], .evergreen-form input[type="search"][disabled], .evergreen-form input[type="tel"][disabled], .evergreen-form input[type="color"][disabled], .evergreen-form select[disabled], .evergreen-form textarea[disabled] {
    cursor: not-allowed;
    background-color: #eaeded;
    color: #cad2d3;
}

.evergreen-form input:not([type]) {
    padding: 0.5em 0.6em;
    display: inline-block;
    border: 1px solid solid #ccc;
    -webkit-box-shadow: inset 0 1px solid 3px #ddd;
    box-shadow: inset 0 1px solid 3px #ddd;
    border-radius: 4px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.evergreen-form input[type="color"] {
    padding: 0.2em 0.5em;
}

.evergreen-form input:not([type]):focus {
    outline: 0;
    border-color: #129fea;
}

.evergreen-form input[type="file"]:focus, .evergreen-form input[type="radio"]:focus, .evergreen-form input[type="checkbox"]:focus {
    outline: thin solid #129fea;
    outline: 1px solid auto #129fea;
}

.evergreen-form .evergreen-checkbox, .evergreen-form .evergreen-radio {
    margin: 0.5em 0;
    display: block;
}

.evergreen-form input[disabled]:not([type]) {
    cursor: not-allowed;
    background-color: #eaeded;
    color: #cad2d3;
}

.evergreen-form input[readonly], .evergreen-form select[readonly], .evergreen-form textarea[readonly] {
    background-color: #eee;
    /* menu hover bg color */
    color: #777;
    /* menu text color */
    border-color: #ccc;
}

.evergreen-form input:focus:invalid, .evergreen-form textarea:focus:invalid, .evergreen-form select:focus:invalid {
    color: #b94a48;
    border-color: #e9322d;
}

.evergreen-form input[type="file"]:focus:invalid:focus, .evergreen-form input[type="radio"]:focus:invalid:focus, .evergreen-form input[type="checkbox"]:focus:invalid:focus {
    outline-color: #e9322d;
}

.evergreen-form select {
    /* Normalizes the height; padding is not sufficient. */
    height: 2.25em;
    border: 1px solid solid #ccc;
    background-color: white;
}

.evergreen-form select[multiple] {
    height: auto;
}

.evergreen-form label {
    margin: 0.5em 0 0.2em;
}

.evergreen-form fieldset {
    margin: 0;
    padding: 0.35em 0 0.75em;
    border: 0;
}

.evergreen-form legend {
    display: block;
    width: 100%;
    padding: 0.3em 0;
    margin-bottom: 0.3em;
    color: #333;
    border-bottom: 1px solid solid #e5e5e5;
}

.evergreen-form-stacked {
    /*
      Need to separate out the :not() selector from the rest of the CSS 2.1 selectors
      since IE8 won't execute CSS that contains a CSS3 selector.
      */
}

.evergreen-form-stacked input[type="text"], .evergreen-form-stacked input[type="password"], .evergreen-form-stacked input[type="email"], .evergreen-form-stacked input[type="url"], .evergreen-form-stacked input[type="date"], .evergreen-form-stacked input[type="month"], .evergreen-form-stacked input[type="time"], .evergreen-form-stacked input[type="datetime"], .evergreen-form-stacked input[type="datetime-local"], .evergreen-form-stacked input[type="week"], .evergreen-form-stacked input[type="number"], .evergreen-form-stacked input[type="search"], .evergreen-form-stacked input[type="tel"], .evergreen-form-stacked input[type="color"], .evergreen-form-stacked input[type="file"], .evergreen-form-stacked select, .evergreen-form-stacked label, .evergreen-form-stacked textarea {
    display: block;
    margin: 0.25em 0;
}

.evergreen-form-stacked input:not([type]) {
    display: block;
    margin: 0.25em 0;
}

.evergreen-form-aligned input, .evergreen-form-aligned textarea, .evergreen-form-aligned select {
    display: inline-block;
    vertical-align: middle;
}

.evergreen-form-aligned textarea {
    vertical-align: top;
}

.evergreen-form-aligned .evergreen-control-group {
    margin-bottom: 0.5em;
}

.evergreen-form-aligned .evergreen-control-group label {
    text-align: right;
    display: inline-block;
    vertical-align: middle;
    width: 10em;
    margin: 0 1em 0 0;
}

.evergreen-form-aligned .evergreen-controls {
    margin: 1.5em 0 0 11em;
}

.evergreen-form-message-inline {
    display: inline-block;
    vertical-align: middle;
}

.evergreen-form input.evergreen-input-rounded, .evergreen-form .evergreen-input-rounded {
    border-radius: 2em;
    padding: 0.5em 1em;
}

.evergreen-form .evergreen-group {
    top: 1px solid;
    border-radius: 4px 4px 0 0;
    margin: 0;
}

.evergreen-form .evergreen-group fieldset {
    margin-bottom: 10px;
}

.evergreen-form .evergreen-group input, .evergreen-form .evergreen-group textarea {
    display: block;
    padding: 10px;
    margin: 0 0 -1px solid;
    border-radius: 0;
    position: relative;
    top: -1px solid;
}

.evergreen-form .evergreen-group input:focus, .evergreen-form .evergreen-group textarea:focus {
    z-index: 3;
}

.evergreen-form .evergreen-group input:first-child, .evergreen-form .evergreen-group textarea:first-child {
    top: 1px solid;
    border-radius: 4px 4px 0 0;
    margin: 0;
}

.evergreen-form .evergreen-group input:first-child:last-child, .evergreen-form .evergreen-group textarea:first-child:last-child {
    top: 1px solid;
    border-radius: 4px;
    margin: 0;
}

.evergreen-form .evergreen-group input:last-child, .evergreen-form .evergreen-group textarea:last-child {
    top: -2px;
    border-radius: 0 0 4px 4px;
    margin: 0;
}

.evergreen-form .evergreen-group button {
    margin: 0.35em 0;
}

.evergreen-form .evergreen-input-1 {
    width: 100%;
}

.evergreen-form .evergreen-input-3-4 {
    width: 75%;
}

.evergreen-form .evergreen-input-2-3 {
    width: 66%;
}

.evergreen-form .evergreen-input-1-2 {
    width: 50%;
}

.evergreen-form .evergreen-input-1-3 {
    width: 33%;
}

.evergreen-form .evergreen-input-1-4 {
    width: 25%;
}

.evergreen-form-message-inline {
    display: inline-block;
    padding-left: 0.3em;
    color: #666;
    vertical-align: middle;
    font-size: calc(var(--rootFontSize) * 0.875);
}

.evergreen-form-message {
    display: block;
    color: #666;
    font-size: calc(var(--rootFontSize) * 0.875);
}

.evergreen-g {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    /* Prevents distributing space between rows */
    -ms-flex-line-pack: start;
    align-content: flex-start;
}

.evergreen-u {
    display: inline-block;
    vertical-align: top;
}

.evergreen-g--gutter, .evergreen-u--gutter {
    margin-left: -20px;
}

.evergreen-g--gutter [class*="evergreen-g-"], .evergreen-g--gutter [class*="evergreen-gr-"], .evergreen-u--gutter [class*="evergreen-g-"], .evergreen-u--gutter [class*="evergreen-gr-"] {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-left: 20px;
}

/* /MOBILE */
.evergreen-g-1, .evergreen-g-1-1, .evergreen-g-1-2, .evergreen-g-1-3, .evergreen-g-2-3, .evergreen-g-1-4, .evergreen-g-3-4, .evergreen-g-1-5, .evergreen-g-2-5, .evergreen-g-3-5, .evergreen-g-4-5, .evergreen-g-5-5, .evergreen-g-1-6, .evergreen-g-5-6, .evergreen-g-1-8, .evergreen-g-3-8, .evergreen-g-5-8, .evergreen-g-7-8, .evergreen-g-1-12, .evergreen-g-5-12, .evergreen-g-7-12, .evergreen-g-11-12, .evergreen-g-1-24, .evergreen-g-2-24, .evergreen-g-3-24, .evergreen-g-4-24, .evergreen-g-5-24, .evergreen-g-6-24, .evergreen-g-7-24, .evergreen-g-8-24, .evergreen-g-9-24, .evergreen-g-10-24, .evergreen-g-11-24, .evergreen-g-12-24, .evergreen-g-13-24, .evergreen-g-14-24, .evergreen-g-15-24, .evergreen-g-16-24, .evergreen-g-17-24, .evergreen-g-18-24, .evergreen-g-19-24, .evergreen-g-20-24, .evergreen-g-21-24, .evergreen-g-22-24, .evergreen-g-23-24, .evergreen-g-24-24 {
    display: inline-block;
    letter-spacing: normal;
    word-spacing: normal;
    vertical-align: top;
    text-rendering: auto;
}

.evergreen-g-1-24 {
    width: 4.1667%;
}

.evergreen-g-1-12, .evergreen-g-2-24 {
    width: 8.3333%;
}

.evergreen-g-1-8, .evergreen-g-3-24 {
    width: 12.5%;
}

.evergreen-g-1-6, .evergreen-g-4-24 {
    width: 16.6667%;
}

.evergreen-g-1-5 {
    width: 20%;
}

.evergreen-g-5-24 {
    width: 20.8333%;
}

.evergreen-g-1-4, .evergreen-g-6-24 {
    width: 25%;
}

.evergreen-g-7-24 {
    width: 29.1667%;
}

.evergreen-g-1-3, .evergreen-g-8-24 {
    width: 33.3333%;
}

.evergreen-g-3-8, .evergreen-g-9-24 {
    width: 37.5%;
}

.evergreen-g-2-5 {
    width: 40%;
}

.evergreen-g-5-12, .evergreen-g-10-24 {
    width: 41.6667%;
}

.evergreen-g-11-24 {
    width: 45.8333%;
}

.evergreen-g-1-2, .evergreen-g-12-24 {
    width: 50%;
}

.evergreen-g-13-24 {
    width: 54.1667%;
}

.evergreen-g-7-12, .evergreen-g-14-24 {
    width: 58.3333%;
}

.evergreen-g-3-5 {
    width: 60%;
}

.evergreen-g-5-8, .evergreen-g-15-24 {
    width: 62.5%;
}

.evergreen-g-2-3, .evergreen-g-16-24 {
    width: 66.6667%;
}

.evergreen-g-17-24 {
    width: 70.8333%;
}

.evergreen-g-3-4, .evergreen-g-18-24 {
    width: 75%;
}

.evergreen-g-19-24 {
    width: 79.1667%;
}

.evergreen-g-4-5 {
    width: 80%;
}

.evergreen-g-5-6, .evergreen-g-20-24 {
    width: 83.3333%;
}

.evergreen-g-7-8, .evergreen-g-21-24 {
    width: 87.5%;
}

.evergreen-g-11-12, .evergreen-g-22-24 {
    width: 91.6667%;
}

.evergreen-g-23-24 {
    width: 95.8333%;
}

.evergreen-g-1, .evergreen-g-1-1, .evergreen-g-5-5, .evergreen-g-24-24 {
    width: 100%;
}

@media screen and (min-width: 480px) {
    .evergreen-gr-sm-1, .evergreen-gr-sm-1-1, .evergreen-gr-sm-1-2, .evergreen-gr-sm-1-3, .evergreen-gr-sm-2-3, .evergreen-gr-sm-1-4, .evergreen-gr-sm-3-4, .evergreen-gr-sm-1-5, .evergreen-gr-sm-2-5, .evergreen-gr-sm-3-5, .evergreen-gr-sm-4-5, .evergreen-gr-sm-5-5, .evergreen-gr-sm-1-6, .evergreen-gr-sm-5-6, .evergreen-gr-sm-1-8, .evergreen-gr-sm-3-8, .evergreen-gr-sm-5-8, .evergreen-gr-sm-7-8, .evergreen-gr-sm-1-12, .evergreen-gr-sm-5-12, .evergreen-gr-sm-7-12, .evergreen-gr-sm-11-12, .evergreen-gr-sm-1-24, .evergreen-gr-sm-2-24, .evergreen-gr-sm-3-24, .evergreen-gr-sm-4-24, .evergreen-gr-sm-5-24, .evergreen-gr-sm-6-24, .evergreen-gr-sm-7-24, .evergreen-gr-sm-8-24, .evergreen-gr-sm-9-24, .evergreen-gr-sm-10-24, .evergreen-gr-sm-11-24, .evergreen-gr-sm-12-24, .evergreen-gr-sm-13-24, .evergreen-gr-sm-14-24, .evergreen-gr-sm-15-24, .evergreen-gr-sm-16-24, .evergreen-gr-sm-17-24, .evergreen-gr-sm-18-24, .evergreen-gr-sm-19-24, .evergreen-gr-sm-20-24, .evergreen-gr-sm-21-24, .evergreen-gr-sm-22-24, .evergreen-gr-sm-23-24, .evergreen-gr-sm-24-24 {
        display: inline-block;
        letter-spacing: normal;
        word-spacing: normal;
        vertical-align: top;
        text-rendering: auto;
    }

    .evergreen-gr-sm-1-24 {
        width: 4.1667%;
    }

    .evergreen-gr-sm-1-12, .evergreen-gr-sm-2-24 {
        width: 8.3333%;
    }

    .evergreen-gr-sm-1-8, .evergreen-gr-sm-3-24 {
        width: 12.5%;
    }

    .evergreen-gr-sm-1-6, .evergreen-gr-sm-4-24 {
        width: 16.6667%;
    }

    .evergreen-gr-sm-1-5 {
        width: 20%;
    }

    .evergreen-gr-sm-5-24 {
        width: 20.8333%;
    }

    .evergreen-gr-sm-1-4, .evergreen-gr-sm-6-24 {
        width: 25%;
    }

    .evergreen-gr-sm-7-24 {
        width: 29.1667%;
    }

    .evergreen-gr-sm-1-3, .evergreen-gr-sm-8-24 {
        width: 33.3333%;
    }

    .evergreen-gr-sm-3-8, .evergreen-gr-sm-9-24 {
        width: 37.5%;
    }

    .evergreen-gr-sm-2-5 {
        width: 40%;
    }

    .evergreen-gr-sm-5-12, .evergreen-gr-sm-10-24 {
        width: 41.6667%;
    }

    .evergreen-gr-sm-11-24 {
        width: 45.8333%;
    }

    .evergreen-gr-sm-1-2, .evergreen-gr-sm-12-24 {
        width: 50%;
    }

    .evergreen-gr-sm-13-24 {
        width: 54.1667%;
    }

    .evergreen-gr-sm-7-12, .evergreen-gr-sm-14-24 {
        width: 58.3333%;
    }

    .evergreen-gr-sm-3-5 {
        width: 60%;
    }

    .evergreen-gr-sm-5-8, .evergreen-gr-sm-15-24 {
        width: 62.5%;
    }

    .evergreen-gr-sm-2-3, .evergreen-gr-sm-16-24 {
        width: 66.6667%;
    }

    .evergreen-gr-sm-17-24 {
        width: 70.8333%;
    }

    .evergreen-gr-sm-3-4, .evergreen-gr-sm-18-24 {
        width: 75%;
    }

    .evergreen-gr-sm-19-24 {
        width: 79.1667%;
    }

    .evergreen-gr-sm-4-5 {
        width: 80%;
    }

    .evergreen-gr-sm-5-6, .evergreen-gr-sm-20-24 {
        width: 83.3333%;
    }

    .evergreen-gr-sm-7-8, .evergreen-gr-sm-21-24 {
        width: 87.5%;
    }

    .evergreen-gr-sm-11-12, .evergreen-gr-sm-22-24 {
        width: 91.6667%;
    }

    .evergreen-gr-sm-23-24 {
        width: 95.8333%;
    }

    .evergreen-gr-sm-1, .evergreen-gr-sm-1-1, .evergreen-gr-sm-5-5, .evergreen-gr-sm-24-24 {
        width: 100%;
    }
}

@media screen and (min-width: 768px) {
    .evergreen-gr-md-1, .evergreen-gr-md-1-1, .evergreen-gr-md-1-2, .evergreen-gr-md-1-3, .evergreen-gr-md-2-3, .evergreen-gr-md-1-4, .evergreen-gr-md-3-4, .evergreen-gr-md-1-5, .evergreen-gr-md-2-5, .evergreen-gr-md-3-5, .evergreen-gr-md-4-5, .evergreen-gr-md-5-5, .evergreen-gr-md-1-6, .evergreen-gr-md-5-6, .evergreen-gr-md-1-8, .evergreen-gr-md-3-8, .evergreen-gr-md-5-8, .evergreen-gr-md-7-8, .evergreen-gr-md-1-12, .evergreen-gr-md-5-12, .evergreen-gr-md-7-12, .evergreen-gr-md-11-12, .evergreen-gr-md-1-24, .evergreen-gr-md-2-24, .evergreen-gr-md-3-24, .evergreen-gr-md-4-24, .evergreen-gr-md-5-24, .evergreen-gr-md-6-24, .evergreen-gr-md-7-24, .evergreen-gr-md-8-24, .evergreen-gr-md-9-24, .evergreen-gr-md-10-24, .evergreen-gr-md-11-24, .evergreen-gr-md-12-24, .evergreen-gr-md-13-24, .evergreen-gr-md-14-24, .evergreen-gr-md-15-24, .evergreen-gr-md-16-24, .evergreen-gr-md-17-24, .evergreen-gr-md-18-24, .evergreen-gr-md-19-24, .evergreen-gr-md-20-24, .evergreen-gr-md-21-24, .evergreen-gr-md-22-24, .evergreen-gr-md-23-24, .evergreen-gr-md-24-24 {
        display: inline-block;
        letter-spacing: normal;
        word-spacing: normal;
        vertical-align: top;
        text-rendering: auto;
    }

    .evergreen-gr-md-1-24 {
        width: 4.1667%;
    }

    .evergreen-gr-md-1-12, .evergreen-gr-md-2-24 {
        width: 8.3333%;
    }

    .evergreen-gr-md-1-8, .evergreen-gr-md-3-24 {
        width: 12.5%;
    }

    .evergreen-gr-md-1-6, .evergreen-gr-md-4-24 {
        width: 16.6667%;
    }

    .evergreen-gr-md-1-5 {
        width: 20%;
    }

    .evergreen-gr-md-5-24 {
        width: 20.8333%;
    }

    .evergreen-gr-md-1-4, .evergreen-gr-md-6-24 {
        width: 25%;
    }

    .evergreen-gr-md-7-24 {
        width: 29.1667%;
    }

    .evergreen-gr-md-1-3, .evergreen-gr-md-8-24 {
        width: 33.3333%;
    }

    .evergreen-gr-md-3-8, .evergreen-gr-md-9-24 {
        width: 37.5%;
    }

    .evergreen-gr-md-2-5 {
        width: 40%;
    }

    .evergreen-gr-md-5-12, .evergreen-gr-md-10-24 {
        width: 41.6667%;
    }

    .evergreen-gr-md-11-24 {
        width: 45.8333%;
    }

    .evergreen-gr-md-1-2, .evergreen-gr-md-12-24 {
        width: 50%;
    }

    .evergreen-gr-md-13-24 {
        width: 54.1667%;
    }

    .evergreen-gr-md-7-12, .evergreen-gr-md-14-24 {
        width: 58.3333%;
    }

    .evergreen-gr-md-3-5 {
        width: 60%;
    }

    .evergreen-gr-md-5-8, .evergreen-gr-md-15-24 {
        width: 62.5%;
    }

    .evergreen-gr-md-2-3, .evergreen-gr-md-16-24 {
        width: 66.6667%;
    }

    .evergreen-gr-md-17-24 {
        width: 70.8333%;
    }

    .evergreen-gr-md-3-4, .evergreen-gr-md-18-24 {
        width: 75%;
    }

    .evergreen-gr-md-19-24 {
        width: 79.1667%;
    }

    .evergreen-gr-md-4-5 {
        width: 80%;
    }

    .evergreen-gr-md-5-6, .evergreen-gr-md-20-24 {
        width: 83.3333%;
    }

    .evergreen-gr-md-7-8, .evergreen-gr-md-21-24 {
        width: 87.5%;
    }

    .evergreen-gr-md-11-12, .evergreen-gr-md-22-24 {
        width: 91.6667%;
    }

    .evergreen-gr-md-23-24 {
        width: 95.8333%;
    }

    .evergreen-gr-md-1, .evergreen-gr-md-1-1, .evergreen-gr-md-5-5, .evergreen-gr-md-24-24 {
        width: 100%;
    }
}

@media screen and (min-width: 1024px) {
    .evergreen-gr-lc-1, .evergreen-gr-lc-1-1, .evergreen-gr-lc-1-2, .evergreen-gr-lc-1-3, .evergreen-gr-lc-2-3, .evergreen-gr-lc-1-4, .evergreen-gr-lc-3-4, .evergreen-gr-lc-1-5, .evergreen-gr-lc-2-5, .evergreen-gr-lc-3-5, .evergreen-gr-lc-4-5, .evergreen-gr-lc-5-5, .evergreen-gr-lc-1-6, .evergreen-gr-lc-5-6, .evergreen-gr-lc-1-8, .evergreen-gr-lc-3-8, .evergreen-gr-lc-5-8, .evergreen-gr-lc-7-8, .evergreen-gr-lc-1-12, .evergreen-gr-lc-5-12, .evergreen-gr-lc-7-12, .evergreen-gr-lc-11-12, .evergreen-gr-lc-1-24, .evergreen-gr-lc-2-24, .evergreen-gr-lc-3-24, .evergreen-gr-lc-4-24, .evergreen-gr-lc-5-24, .evergreen-gr-lc-6-24, .evergreen-gr-lc-7-24, .evergreen-gr-lc-8-24, .evergreen-gr-lc-9-24, .evergreen-gr-lc-10-24, .evergreen-gr-lc-11-24, .evergreen-gr-lc-12-24, .evergreen-gr-lc-13-24, .evergreen-gr-lc-14-24, .evergreen-gr-lc-15-24, .evergreen-gr-lc-16-24, .evergreen-gr-lc-17-24, .evergreen-gr-lc-18-24, .evergreen-gr-lc-19-24, .evergreen-gr-lc-20-24, .evergreen-gr-lc-21-24, .evergreen-gr-lc-22-24, .evergreen-gr-lc-23-24, .evergreen-gr-lc-24-24 {
        display: inline-block;
        letter-spacing: normal;
        word-spacing: normal;
        vertical-align: top;
        text-rendering: auto;
    }

    .evergreen-gr-lc-1-24 {
        width: 4.1667%;
    }

    .evergreen-gr-lc-1-12, .evergreen-gr-lc-2-24 {
        width: 8.3333%;
    }

    .evergreen-gr-lc-1-8, .evergreen-gr-lc-3-24 {
        width: 12.5%;
    }

    .evergreen-gr-lc-1-6, .evergreen-gr-lc-4-24 {
        width: 16.6667%;
    }

    .evergreen-gr-lc-1-5 {
        width: 20%;
    }

    .evergreen-gr-lc-5-24 {
        width: 20.8333%;
    }

    .evergreen-gr-lc-1-4, .evergreen-gr-lc-6-24 {
        width: 25%;
    }

    .evergreen-gr-lc-7-24 {
        width: 29.1667%;
    }

    .evergreen-gr-lc-1-3, .evergreen-gr-lc-8-24 {
        width: 33.3333%;
    }

    .evergreen-gr-lc-3-8, .evergreen-gr-lc-9-24 {
        width: 37.5%;
    }

    .evergreen-gr-lc-2-5 {
        width: 40%;
    }

    .evergreen-gr-lc-5-12, .evergreen-gr-lc-10-24 {
        width: 41.6667%;
    }

    .evergreen-gr-lc-11-24 {
        width: 45.8333%;
    }

    .evergreen-gr-lc-1-2, .evergreen-gr-lc-12-24 {
        width: 50%;
    }

    .evergreen-gr-lc-13-24 {
        width: 54.1667%;
    }

    .evergreen-gr-lc-7-12, .evergreen-gr-lc-14-24 {
        width: 58.3333%;
    }

    .evergreen-gr-lc-3-5 {
        width: 60%;
    }

    .evergreen-gr-lc-5-8, .evergreen-gr-lc-15-24 {
        width: 62.5%;
    }

    .evergreen-gr-lc-2-3, .evergreen-gr-lc-16-24 {
        width: 66.6667%;
    }

    .evergreen-gr-lc-17-24 {
        width: 70.8333%;
    }

    .evergreen-gr-lc-3-4, .evergreen-gr-lc-18-24 {
        width: 75%;
    }

    .evergreen-gr-lc-19-24 {
        width: 79.1667%;
    }

    .evergreen-gr-lc-4-5 {
        width: 80%;
    }

    .evergreen-gr-lc-5-6, .evergreen-gr-lc-20-24 {
        width: 83.3333%;
    }

    .evergreen-gr-lc-7-8, .evergreen-gr-lc-21-24 {
        width: 87.5%;
    }

    .evergreen-gr-lc-11-12, .evergreen-gr-lc-22-24 {
        width: 91.6667%;
    }

    .evergreen-gr-lc-23-24 {
        width: 95.8333%;
    }

    .evergreen-gr-lc-1, .evergreen-gr-lc-1-1, .evergreen-gr-lc-5-5, .evergreen-gr-lc-24-24 {
        width: 100%;
    }
}

@media screen and (min-width: 1200px) {
    .evergreen-gr-lg-1, .evergreen-gr-lg-1-1, .evergreen-gr-lg-1-2, .evergreen-gr-lg-1-3, .evergreen-gr-lg-2-3, .evergreen-gr-lg-1-4, .evergreen-gr-lg-3-4, .evergreen-gr-lg-1-5, .evergreen-gr-lg-2-5, .evergreen-gr-lg-3-5, .evergreen-gr-lg-4-5, .evergreen-gr-lg-5-5, .evergreen-gr-lg-1-6, .evergreen-gr-lg-5-6, .evergreen-gr-lg-1-8, .evergreen-gr-lg-3-8, .evergreen-gr-lg-5-8, .evergreen-gr-lg-7-8, .evergreen-gr-lg-1-12, .evergreen-gr-lg-5-12, .evergreen-gr-lg-7-12, .evergreen-gr-lg-11-12, .evergreen-gr-lg-1-24, .evergreen-gr-lg-2-24, .evergreen-gr-lg-3-24, .evergreen-gr-lg-4-24, .evergreen-gr-lg-5-24, .evergreen-gr-lg-6-24, .evergreen-gr-lg-7-24, .evergreen-gr-lg-8-24, .evergreen-gr-lg-9-24, .evergreen-gr-lg-10-24, .evergreen-gr-lg-11-24, .evergreen-gr-lg-12-24, .evergreen-gr-lg-13-24, .evergreen-gr-lg-14-24, .evergreen-gr-lg-15-24, .evergreen-gr-lg-16-24, .evergreen-gr-lg-17-24, .evergreen-gr-lg-18-24, .evergreen-gr-lg-19-24, .evergreen-gr-lg-20-24, .evergreen-gr-lg-21-24, .evergreen-gr-lg-22-24, .evergreen-gr-lg-23-24, .evergreen-gr-lg-24-24 {
        display: inline-block;
        letter-spacing: normal;
        word-spacing: normal;
        vertical-align: top;
        text-rendering: auto;
    }

    .evergreen-gr-lg-1-24 {
        width: 4.1667%;
    }

    .evergreen-gr-lg-1-12, .evergreen-gr-lg-2-24 {
        width: 8.3333%;
    }

    .evergreen-gr-lg-1-8, .evergreen-gr-lg-3-24 {
        width: 12.5%;
    }

    .evergreen-gr-lg-1-6, .evergreen-gr-lg-4-24 {
        width: 16.6667%;
    }

    .evergreen-gr-lg-1-5 {
        width: 20%;
    }

    .evergreen-gr-lg-5-24 {
        width: 20.8333%;
    }

    .evergreen-gr-lg-1-4, .evergreen-gr-lg-6-24 {
        width: 25%;
    }

    .evergreen-gr-lg-7-24 {
        width: 29.1667%;
    }

    .evergreen-gr-lg-1-3, .evergreen-gr-lg-8-24 {
        width: 33.3333%;
    }

    .evergreen-gr-lg-3-8, .evergreen-gr-lg-9-24 {
        width: 37.5%;
    }

    .evergreen-gr-lg-2-5 {
        width: 40%;
    }

    .evergreen-gr-lg-5-12, .evergreen-gr-lg-10-24 {
        width: 41.6667%;
    }

    .evergreen-gr-lg-11-24 {
        width: 45.8333%;
    }

    .evergreen-gr-lg-1-2, .evergreen-gr-lg-12-24 {
        width: 50%;
    }

    .evergreen-gr-lg-13-24 {
        width: 54.1667%;
    }

    .evergreen-gr-lg-7-12, .evergreen-gr-lg-14-24 {
        width: 58.3333%;
    }

    .evergreen-gr-lg-3-5 {
        width: 60%;
    }

    .evergreen-gr-lg-5-8, .evergreen-gr-lg-15-24 {
        width: 62.5%;
    }

    .evergreen-gr-lg-2-3, .evergreen-gr-lg-16-24 {
        width: 66.6667%;
    }

    .evergreen-gr-lg-17-24 {
        width: 70.8333%;
    }

    .evergreen-gr-lg-3-4, .evergreen-gr-lg-18-24 {
        width: 75%;
    }

    .evergreen-gr-lg-19-24 {
        width: 79.1667%;
    }

    .evergreen-gr-lg-4-5 {
        width: 80%;
    }

    .evergreen-gr-lg-5-6, .evergreen-gr-lg-20-24 {
        width: 83.3333%;
    }

    .evergreen-gr-lg-7-8, .evergreen-gr-lg-21-24 {
        width: 87.5%;
    }

    .evergreen-gr-lg-11-12, .evergreen-gr-lg-22-24 {
        width: 91.6667%;
    }

    .evergreen-gr-lg-23-24 {
        width: 95.8333%;
    }

    .evergreen-gr-lg-1, .evergreen-gr-lg-1-1, .evergreen-gr-lg-5-5, .evergreen-gr-lg-24-24 {
        width: 100%;
    }
}

@media screen and (min-width: 1280px) {
    .evergreen-gr-xl-1, .evergreen-gr-xl-1-1, .evergreen-gr-xl-1-2, .evergreen-gr-xl-1-3, .evergreen-gr-xl-2-3, .evergreen-gr-xl-1-4, .evergreen-gr-xl-3-4, .evergreen-gr-xl-1-5, .evergreen-gr-xl-2-5, .evergreen-gr-xl-3-5, .evergreen-gr-xl-4-5, .evergreen-gr-xl-5-5, .evergreen-gr-xl-1-6, .evergreen-gr-xl-5-6, .evergreen-gr-xl-1-8, .evergreen-gr-xl-3-8, .evergreen-gr-xl-5-8, .evergreen-gr-xl-7-8, .evergreen-gr-xl-1-12, .evergreen-gr-xl-5-12, .evergreen-gr-xl-7-12, .evergreen-gr-xl-11-12, .evergreen-gr-xl-1-24, .evergreen-gr-xl-2-24, .evergreen-gr-xl-3-24, .evergreen-gr-xl-4-24, .evergreen-gr-xl-5-24, .evergreen-gr-xl-6-24, .evergreen-gr-xl-7-24, .evergreen-gr-xl-8-24, .evergreen-gr-xl-9-24, .evergreen-gr-xl-10-24, .evergreen-gr-xl-11-24, .evergreen-gr-xl-12-24, .evergreen-gr-xl-13-24, .evergreen-gr-xl-14-24, .evergreen-gr-xl-15-24, .evergreen-gr-xl-16-24, .evergreen-gr-xl-17-24, .evergreen-gr-xl-18-24, .evergreen-gr-xl-19-24, .evergreen-gr-xl-20-24, .evergreen-gr-xl-21-24, .evergreen-gr-xl-22-24, .evergreen-gr-xl-23-24, .evergreen-gr-xl-24-24 {
        display: inline-block;
        letter-spacing: normal;
        word-spacing: normal;
        vertical-align: top;
        text-rendering: auto;
    }

    .evergreen-gr-xl-1-24 {
        width: 4.1667%;
    }

    .evergreen-gr-xl-1-12, .evergreen-gr-xl-2-24 {
        width: 8.3333%;
    }

    .evergreen-gr-xl-1-8, .evergreen-gr-xl-3-24 {
        width: 12.5%;
    }

    .evergreen-gr-xl-1-6, .evergreen-gr-xl-4-24 {
        width: 16.6667%;
    }

    .evergreen-gr-xl-1-5 {
        width: 20%;
    }

    .evergreen-gr-xl-5-24 {
        width: 20.8333%;
    }

    .evergreen-gr-xl-1-4, .evergreen-gr-xl-6-24 {
        width: 25%;
    }

    .evergreen-gr-xl-7-24 {
        width: 29.1667%;
    }

    .evergreen-gr-xl-1-3, .evergreen-gr-xl-8-24 {
        width: 33.3333%;
    }

    .evergreen-gr-xl-3-8, .evergreen-gr-xl-9-24 {
        width: 37.5%;
    }

    .evergreen-gr-xl-2-5 {
        width: 40%;
    }

    .evergreen-gr-xl-5-12, .evergreen-gr-xl-10-24 {
        width: 41.6667%;
    }

    .evergreen-gr-xl-11-24 {
        width: 45.8333%;
    }

    .evergreen-gr-xl-1-2, .evergreen-gr-xl-12-24 {
        width: 50%;
    }

    .evergreen-gr-xl-13-24 {
        width: 54.1667%;
    }

    .evergreen-gr-xl-7-12, .evergreen-gr-xl-14-24 {
        width: 58.3333%;
    }

    .evergreen-gr-xl-3-5 {
        width: 60%;
    }

    .evergreen-gr-xl-5-8, .evergreen-gr-xl-15-24 {
        width: 62.5%;
    }

    .evergreen-gr-xl-2-3, .evergreen-gr-xl-16-24 {
        width: 66.6667%;
    }

    .evergreen-gr-xl-17-24 {
        width: 70.8333%;
    }

    .evergreen-gr-xl-3-4, .evergreen-gr-xl-18-24 {
        width: 75%;
    }

    .evergreen-gr-xl-19-24 {
        width: 79.1667%;
    }

    .evergreen-gr-xl-4-5 {
        width: 80%;
    }

    .evergreen-gr-xl-5-6, .evergreen-gr-xl-20-24 {
        width: 83.3333%;
    }

    .evergreen-gr-xl-7-8, .evergreen-gr-xl-21-24 {
        width: 87.5%;
    }

    .evergreen-gr-xl-11-12, .evergreen-gr-xl-22-24 {
        width: 91.6667%;
    }

    .evergreen-gr-xl-23-24 {
        width: 95.8333%;
    }

    .evergreen-gr-xl-1, .evergreen-gr-xl-1-1, .evergreen-gr-xl-5-5, .evergreen-gr-xl-24-24 {
        width: 100%;
    }
}

@media screen and (min-width: 1920px) {
    .evergreen-gr-xxl-1, .evergreen-gr-xxl-1-1, .evergreen-gr-xxl-1-2, .evergreen-gr-xxl-1-3, .evergreen-gr-xxl-2-3, .evergreen-gr-xxl-1-4, .evergreen-gr-xxl-3-4, .evergreen-gr-xxl-1-5, .evergreen-gr-xxl-2-5, .evergreen-gr-xxl-3-5, .evergreen-gr-xxl-4-5, .evergreen-gr-xxl-5-5, .evergreen-gr-xxl-1-6, .evergreen-gr-xxl-5-6, .evergreen-gr-xxl-1-8, .evergreen-gr-xxl-3-8, .evergreen-gr-xxl-5-8, .evergreen-gr-xxl-7-8, .evergreen-gr-xxl-1-12, .evergreen-gr-xxl-5-12, .evergreen-gr-xxl-7-12, .evergreen-gr-xxl-11-12, .evergreen-gr-xxl-1-24, .evergreen-gr-xxl-2-24, .evergreen-gr-xxl-3-24, .evergreen-gr-xxl-4-24, .evergreen-gr-xxl-5-24, .evergreen-gr-xxl-6-24, .evergreen-gr-xxl-7-24, .evergreen-gr-xxl-8-24, .evergreen-gr-xxl-9-24, .evergreen-gr-xxl-10-24, .evergreen-gr-xxl-11-24, .evergreen-gr-xxl-12-24, .evergreen-gr-xxl-13-24, .evergreen-gr-xxl-14-24, .evergreen-gr-xxl-15-24, .evergreen-gr-xxl-16-24, .evergreen-gr-xxl-17-24, .evergreen-gr-xxl-18-24, .evergreen-gr-xxl-19-24, .evergreen-gr-xxl-20-24, .evergreen-gr-xxl-21-24, .evergreen-gr-xxl-22-24, .evergreen-gr-xxl-23-24, .evergreen-gr-xxl-24-24 {
        display: inline-block;
        letter-spacing: normal;
        word-spacing: normal;
        vertical-align: top;
        text-rendering: auto;
    }

    .evergreen-gr-xxl-1-24 {
        width: 4.1667%;
    }

    .evergreen-gr-xxl-1-12, .evergreen-gr-xxl-2-24 {
        width: 8.3333%;
    }

    .evergreen-gr-xxl-1-8, .evergreen-gr-xxl-3-24 {
        width: 12.5%;
    }

    .evergreen-gr-xxl-1-6, .evergreen-gr-xxl-4-24 {
        width: 16.6667%;
    }

    .evergreen-gr-xxl-1-5 {
        width: 20%;
    }

    .evergreen-gr-xxl-5-24 {
        width: 20.8333%;
    }

    .evergreen-gr-xxl-1-4, .evergreen-gr-xxl-6-24 {
        width: 25%;
    }

    .evergreen-gr-xxl-7-24 {
        width: 29.1667%;
    }

    .evergreen-gr-xxl-1-3, .evergreen-gr-xxl-8-24 {
        width: 33.3333%;
    }

    .evergreen-gr-xxl-3-8, .evergreen-gr-xxl-9-24 {
        width: 37.5%;
    }

    .evergreen-gr-xxl-2-5 {
        width: 40%;
    }

    .evergreen-gr-xxl-5-12, .evergreen-gr-xxl-10-24 {
        width: 41.6667%;
    }

    .evergreen-gr-xxl-11-24 {
        width: 45.8333%;
    }

    .evergreen-gr-xxl-1-2, .evergreen-gr-xxl-12-24 {
        width: 50%;
    }

    .evergreen-gr-xxl-13-24 {
        width: 54.1667%;
    }

    .evergreen-gr-xxl-7-12, .evergreen-gr-xxl-14-24 {
        width: 58.3333%;
    }

    .evergreen-gr-xxl-3-5 {
        width: 60%;
    }

    .evergreen-gr-xxl-5-8, .evergreen-gr-xxl-15-24 {
        width: 62.5%;
    }

    .evergreen-gr-xxl-2-3, .evergreen-gr-xxl-16-24 {
        width: 66.6667%;
    }

    .evergreen-gr-xxl-17-24 {
        width: 70.8333%;
    }

    .evergreen-gr-xxl-3-4, .evergreen-gr-xxl-18-24 {
        width: 75%;
    }

    .evergreen-gr-xxl-19-24 {
        width: 79.1667%;
    }

    .evergreen-gr-xxl-4-5 {
        width: 80%;
    }

    .evergreen-gr-xxl-5-6, .evergreen-gr-xxl-20-24 {
        width: 83.3333%;
    }

    .evergreen-gr-xxl-7-8, .evergreen-gr-xxl-21-24 {
        width: 87.5%;
    }

    .evergreen-gr-xxl-11-12, .evergreen-gr-xxl-22-24 {
        width: 91.6667%;
    }

    .evergreen-gr-xxl-23-24 {
        width: 95.8333%;
    }

    .evergreen-gr-xxl-1, .evergreen-gr-xxl-1-1, .evergreen-gr-xxl-5-5, .evergreen-gr-xxl-24-24 {
        width: 100%;
    }
}

@media screen and (min-width: 2650px) {
    .evergreen-gr-xxxl-1, .evergreen-gr-xxxl-1-1, .evergreen-gr-xxxl-1-2, .evergreen-gr-xxxl-1-3, .evergreen-gr-xxxl-2-3, .evergreen-gr-xxxl-1-4, .evergreen-gr-xxxl-3-4, .evergreen-gr-xxxl-1-5, .evergreen-gr-xxxl-2-5, .evergreen-gr-xxxl-3-5, .evergreen-gr-xxxl-4-5, .evergreen-gr-xxxl-5-5, .evergreen-gr-xxxl-1-6, .evergreen-gr-xxxl-5-6, .evergreen-gr-xxxl-1-8, .evergreen-gr-xxxl-3-8, .evergreen-gr-xxxl-5-8, .evergreen-gr-xxxl-7-8, .evergreen-gr-xxxl-1-12, .evergreen-gr-xxxl-5-12, .evergreen-gr-xxxl-7-12, .evergreen-gr-xxxl-11-12, .evergreen-gr-xxxl-1-24, .evergreen-gr-xxxl-2-24, .evergreen-gr-xxxl-3-24, .evergreen-gr-xxxl-4-24, .evergreen-gr-xxxl-5-24, .evergreen-gr-xxxl-6-24, .evergreen-gr-xxxl-7-24, .evergreen-gr-xxxl-8-24, .evergreen-gr-xxxl-9-24, .evergreen-gr-xxxl-10-24, .evergreen-gr-xxxl-11-24, .evergreen-gr-xxxl-12-24, .evergreen-gr-xxxl-13-24, .evergreen-gr-xxxl-14-24, .evergreen-gr-xxxl-15-24, .evergreen-gr-xxxl-16-24, .evergreen-gr-xxxl-17-24, .evergreen-gr-xxxl-18-24, .evergreen-gr-xxxl-19-24, .evergreen-gr-xxxl-20-24, .evergreen-gr-xxxl-21-24, .evergreen-gr-xxxl-22-24, .evergreen-gr-xxxl-23-24, .evergreen-gr-xxxl-24-24 {
        display: inline-block;
        letter-spacing: normal;
        word-spacing: normal;
        vertical-align: top;
        text-rendering: auto;
    }

    .evergreen-gr-xxxl-1-24 {
        width: 4.1667%;
    }

    .evergreen-gr-xxxl-1-12, .evergreen-gr-xxxl-2-24 {
        width: 8.3333%;
    }

    .evergreen-gr-xxxl-1-8, .evergreen-gr-xxxl-3-24 {
        width: 12.5%;
    }

    .evergreen-gr-xxxl-1-6, .evergreen-gr-xxxl-4-24 {
        width: 16.6667%;
    }

    .evergreen-gr-xxxl-1-5 {
        width: 20%;
    }

    .evergreen-gr-xxxl-5-24 {
        width: 20.8333%;
    }

    .evergreen-gr-xxxl-1-4, .evergreen-gr-xxxl-6-24 {
        width: 25%;
    }

    .evergreen-gr-xxxl-7-24 {
        width: 29.1667%;
    }

    .evergreen-gr-xxxl-1-3, .evergreen-gr-xxxl-8-24 {
        width: 33.3333%;
    }

    .evergreen-gr-xxxl-3-8, .evergreen-gr-xxxl-9-24 {
        width: 37.5%;
    }

    .evergreen-gr-xxxl-2-5 {
        width: 40%;
    }

    .evergreen-gr-xxxl-5-12, .evergreen-gr-xxxl-10-24 {
        width: 41.6667%;
    }

    .evergreen-gr-xxxl-11-24 {
        width: 45.8333%;
    }

    .evergreen-gr-xxxl-1-2, .evergreen-gr-xxxl-12-24 {
        width: 50%;
    }

    .evergreen-gr-xxxl-13-24 {
        width: 54.1667%;
    }

    .evergreen-gr-xxxl-7-12, .evergreen-gr-xxxl-14-24 {
        width: 58.3333%;
    }

    .evergreen-gr-xxxl-3-5 {
        width: 60%;
    }

    .evergreen-gr-xxxl-5-8, .evergreen-gr-xxxl-15-24 {
        width: 62.5%;
    }

    .evergreen-gr-xxxl-2-3, .evergreen-gr-xxxl-16-24 {
        width: 66.6667%;
    }

    .evergreen-gr-xxxl-17-24 {
        width: 70.8333%;
    }

    .evergreen-gr-xxxl-3-4, .evergreen-gr-xxxl-18-24 {
        width: 75%;
    }

    .evergreen-gr-xxxl-19-24 {
        width: 79.1667%;
    }

    .evergreen-gr-xxxl-4-5 {
        width: 80%;
    }

    .evergreen-gr-xxxl-5-6, .evergreen-gr-xxxl-20-24 {
        width: 83.3333%;
    }

    .evergreen-gr-xxxl-7-8, .evergreen-gr-xxxl-21-24 {
        width: 87.5%;
    }

    .evergreen-gr-xxxl-11-12, .evergreen-gr-xxxl-22-24 {
        width: 91.6667%;
    }

    .evergreen-gr-xxxl-23-24 {
        width: 95.8333%;
    }

    .evergreen-gr-xxxl-1, .evergreen-gr-xxxl-1-1, .evergreen-gr-xxxl-5-5, .evergreen-gr-xxxl-24-24 {
        width: 100%;
    }
}

@media screen and (min-width: 3840px) {
    .evergreen-gr-x4k-1, .evergreen-gr-x4k-1-1, .evergreen-gr-x4k-1-2, .evergreen-gr-x4k-1-3, .evergreen-gr-x4k-2-3, .evergreen-gr-x4k-1-4, .evergreen-gr-x4k-3-4, .evergreen-gr-x4k-1-5, .evergreen-gr-x4k-2-5, .evergreen-gr-x4k-3-5, .evergreen-gr-x4k-4-5, .evergreen-gr-x4k-5-5, .evergreen-gr-x4k-1-6, .evergreen-gr-x4k-5-6, .evergreen-gr-x4k-1-8, .evergreen-gr-x4k-3-8, .evergreen-gr-x4k-5-8, .evergreen-gr-x4k-7-8, .evergreen-gr-x4k-1-12, .evergreen-gr-x4k-5-12, .evergreen-gr-x4k-7-12, .evergreen-gr-x4k-11-12, .evergreen-gr-x4k-1-24, .evergreen-gr-x4k-2-24, .evergreen-gr-x4k-3-24, .evergreen-gr-x4k-4-24, .evergreen-gr-x4k-5-24, .evergreen-gr-x4k-6-24, .evergreen-gr-x4k-7-24, .evergreen-gr-x4k-8-24, .evergreen-gr-x4k-9-24, .evergreen-gr-x4k-10-24, .evergreen-gr-x4k-11-24, .evergreen-gr-x4k-12-24, .evergreen-gr-x4k-13-24, .evergreen-gr-x4k-14-24, .evergreen-gr-x4k-15-24, .evergreen-gr-x4k-16-24, .evergreen-gr-x4k-17-24, .evergreen-gr-x4k-18-24, .evergreen-gr-x4k-19-24, .evergreen-gr-x4k-20-24, .evergreen-gr-x4k-21-24, .evergreen-gr-x4k-22-24, .evergreen-gr-x4k-23-24, .evergreen-gr-x4k-24-24 {
        display: inline-block;
        letter-spacing: normal;
        word-spacing: normal;
        vertical-align: top;
        text-rendering: auto;
    }

    .evergreen-gr-x4k-1-24 {
        width: 4.1667%;
    }

    .evergreen-gr-x4k-1-12, .evergreen-gr-x4k-2-24 {
        width: 8.3333%;
    }

    .evergreen-gr-x4k-1-8, .evergreen-gr-x4k-3-24 {
        width: 12.5%;
    }

    .evergreen-gr-x4k-1-6, .evergreen-gr-x4k-4-24 {
        width: 16.6667%;
    }

    .evergreen-gr-x4k-1-5 {
        width: 20%;
    }

    .evergreen-gr-x4k-5-24 {
        width: 20.8333%;
    }

    .evergreen-gr-x4k-1-4, .evergreen-gr-x4k-6-24 {
        width: 25%;
    }

    .evergreen-gr-x4k-7-24 {
        width: 29.1667%;
    }

    .evergreen-gr-x4k-1-3, .evergreen-gr-x4k-8-24 {
        width: 33.3333%;
    }

    .evergreen-gr-x4k-3-8, .evergreen-gr-x4k-9-24 {
        width: 37.5%;
    }

    .evergreen-gr-x4k-2-5 {
        width: 40%;
    }

    .evergreen-gr-x4k-5-12, .evergreen-gr-x4k-10-24 {
        width: 41.6667%;
    }

    .evergreen-gr-x4k-11-24 {
        width: 45.8333%;
    }

    .evergreen-gr-x4k-1-2, .evergreen-gr-x4k-12-24 {
        width: 50%;
    }

    .evergreen-gr-x4k-13-24 {
        width: 54.1667%;
    }

    .evergreen-gr-x4k-7-12, .evergreen-gr-x4k-14-24 {
        width: 58.3333%;
    }

    .evergreen-gr-x4k-3-5 {
        width: 60%;
    }

    .evergreen-gr-x4k-5-8, .evergreen-gr-x4k-15-24 {
        width: 62.5%;
    }

    .evergreen-gr-x4k-2-3, .evergreen-gr-x4k-16-24 {
        width: 66.6667%;
    }

    .evergreen-gr-x4k-17-24 {
        width: 70.8333%;
    }

    .evergreen-gr-x4k-3-4, .evergreen-gr-x4k-18-24 {
        width: 75%;
    }

    .evergreen-gr-x4k-19-24 {
        width: 79.1667%;
    }

    .evergreen-gr-x4k-4-5 {
        width: 80%;
    }

    .evergreen-gr-x4k-5-6, .evergreen-gr-x4k-20-24 {
        width: 83.3333%;
    }

    .evergreen-gr-x4k-7-8, .evergreen-gr-x4k-21-24 {
        width: 87.5%;
    }

    .evergreen-gr-x4k-11-12, .evergreen-gr-x4k-22-24 {
        width: 91.6667%;
    }

    .evergreen-gr-x4k-23-24 {
        width: 95.8333%;
    }

    .evergreen-gr-x4k-1, .evergreen-gr-x4k-1-1, .evergreen-gr-x4k-5-5, .evergreen-gr-x4k-24-24 {
        width: 100%;
    }
}

.evergreen-grid.evergreen-grid-container {
    display: -ms-grid;
    display: grid;
    gap: 20px;
    -ms-grid-columns: 1fr 20px 1fr 20px 1fr 20px 1fr 20px 1fr 20px 1fr 20px 1fr 20px 1fr 20px 1fr 20px 1fr 20px 1fr 20px 1fr 20px 1fr 20px 1fr 20px 1fr 20px 1fr 20px 1fr 20px 1fr 20px 1fr 20px 1fr 20px 1fr 20px 1fr 20px 1fr 20px 1fr;
    grid-template-columns: repeat(24, 1fr);
    padding: 0 20px;
    margin: 0 auto;
    max-width: 1230px;
}

@media screen and (max-width: 480px) {
    .evergreen-grid.evergreen-grid-container {
        row-gap: 20px;
        -webkit-column-gap: 0;
        -moz-column-gap: 0;
        column-gap: 0;
    }
}

.evergreen-grid.evergreen-grid-container .evergreen-grid-col > div {
    height: 100%;
}

/* DEFAULT */
/* 100% */
.evergreen-grid-col.evergreen-grid-1-1, .evergreen-grid-col.evergreen-grid-24-24 {
    grid-column-start: span 24;
}

/* 75% */
.evergreen-grid-col.evergreen-grid-3-4, .evergreen-grid-col.evergreen-grid-18-24 {
    grid-column-start: span 18;
}

/* 66% */
.evergreen-grid-col.evergreen-grid-2-3, .evergreen-grid-col.evergreen-grid-16-24 {
    grid-column-start: span 16;
}

/* 50% */
.evergreen-grid-col.evergreen-grid-1-2, .evergreen-grid-col.evergreen-grid-12-24 {
    grid-column-start: span 12;
}

/* 33% */
.evergreen-grid-col.evergreen-grid-1-3, .evergreen-grid-col.evergreen-grid-8-24 {
    grid-column-start: span 8;
}

/* 25% */
.evergreen-grid-col.evergreen-grid-1-4, .evergreen-grid-col.evergreen-grid-6-24 {
    grid-column-start: span 6;
}

/* /DEFAULT */
/* DESKTOP */
@media (min-width: 1025px) {
    /* 100% */ .evergreen-grid-col.evergreen-grid-lg-1-1, .evergreen-grid-col.evergreen-grid-lg-24-24 {
        grid-column-start: span 24;
    }

    /* 75% */
    .evergreen-grid-col.evergreen-grid-lg-3-4, .evergreen-grid-col.evergreen-grid-lg-18-24 {
        grid-column-start: span 18;
    }

    /* 66% */
    .evergreen-grid-col.evergreen-grid-lg-2-3, .evergreen-grid-col.evergreen-grid-lg-16-24 {
        grid-column-start: span 16;
    }

    /* 50% */
    .evergreen-grid-col.evergreen-grid-lg-1-2, .evergreen-grid-col.evergreen-grid-lg-12-24 {
        grid-column-start: span 12;
    }

    /* 33% */
    .evergreen-grid-col.evergreen-grid-lg-1-3, .evergreen-grid-col.evergreen-grid-lg-8-24 {
        grid-column-start: span 8;
    }

    /* 25% */
    .evergreen-grid-col.evergreen-grid-lg-1-4, .evergreen-grid-col.evergreen-grid-lg-6-24 {
        grid-column-start: span 6;
    }
}

/* TABLET */
@media (max-width: 1024px) and (min-width: 481px) {
    /* 100% */ .evergreen-grid-col.evergreen-grid-md-1-1, .evergreen-grid-col.evergreen-grid-md-24-24 {
        grid-column-start: span 24;
    }

    /* 75% */
    .evergreen-grid-col.evergreen-grid-md-3-4, .evergreen-grid-col.evergreen-grid-md-18-24 {
        grid-column-start: span 18;
    }

    /* 66% */
    .evergreen-grid-col.evergreen-grid-md-2-3, .evergreen-grid-col.evergreen-grid-md-16-24 {
        grid-column-start: span 16;
    }

    /* 50% */
    .evergreen-grid-col.evergreen-grid-md-1-2, .evergreen-grid-col.evergreen-grid-md-12-24 {
        grid-column-start: span 12;
    }

    /* 33% */
    .evergreen-grid-col.evergreen-grid-md-1-3, .evergreen-grid-col.evergreen-grid-md-8-24 {
        grid-column-start: span 8;
    }

    /* 25% */
    .evergreen-grid-col.evergreen-grid-md-1-4, .evergreen-grid-col.evergreen-grid-md-6-24 {
        grid-column-start: span 6;
    }
}

/* /TABLET */
/* MOBILE */
@media (max-width: 480px) {
    /* 100% */ .evergreen-grid-col.evergreen-grid-sm-1-1, .evergreen-grid-col.evergreen-grid-sm-24-24 {
        grid-column-start: span 24;
    }

    /* 75% */
    .evergreen-grid-col.evergreen-grid-sm-3-4, .evergreen-grid-col.evergreen-grid-sm-18-24 {
        grid-column-start: span 18;
    }

    /* 66% */
    .evergreen-grid-col.evergreen-grid-sm-2-3, .evergreen-grid-col.evergreen-grid-sm-16-24 {
        grid-column-start: span 16;
    }

    /* 50% */
    .evergreen-grid-col.evergreen-grid-sm-1-2, .evergreen-grid-col.evergreen-grid-sm-12-24 {
        grid-column-start: span 12;
    }

    /* 33% */
    .evergreen-grid-col.evergreen-grid-sm-1-3, .evergreen-grid-col.evergreen-grid-sm-8-24 {
        grid-column-start: span 8;
    }

    /* 25% */
    .evergreen-grid-col.evergreen-grid-sm-1-4, .evergreen-grid-col.evergreen-grid-sm-6-24 {
        grid-column-start: span 6;
    }
}

.evergreen .evergreen-text-area, .evergreen textarea {
    --fontFamily: var(--evgInputFontFamily);
    --fontColor: var(--evgInputFontColor);
    --fontSize: var(--evgInputFontSizeL);
    --placeholderFontColor: var(--evgInputPlaceholderColor);
    --fontWeight: var(--evgInputFontWeight);
    --lineHeight: var(--evgInputFontLineHeight);
    --capitalization: var(--evgInputFontCapitalization);
    --borderColor: var(--evgInputBorderColor);
    --borderFocusColor: var(--evgInputBorderFocusColor);
    --borderRadius: var(--evgInputBorderRadius);
    --backgroundColor: var(--evgInputBackgroundColor);
    font-family: var(--fontFamily);
    font-size: var(--fontSize);
    color: var(--fontColor);
    font-weight: var(--fontWeight);
    line-height: var(--lineHeight);
    text-transform: var(--capitalization);
    border: 1px solid solid var(--borderColor);
    border-radius: var(--borderRadius);
    background-color: var(--backgroundColor);
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.evergreen input[type="checkbox"] + label, .evergreen input[type="radio"] + label {
    --fontFamily: var(--evgRadioCheckboxFontFamily);
    --fontSize: var(--evgRadioCheckboxFontSizeL);
    --fontSizeM: var(--evgRadioCheckboxFontSizeM);
    --fontSizeS: var(--evgRadioCheckboxFontSizeS);
    --fontColor: var(--evgRadioCheckboxFontColor);
    --fontWeight: var(--evgRadioCheckboxFontWeight);
    --lineHeight: var(--evgRadioCheckboxFontLineHeight);
    --capitalization: var(--evgRadioCheckboxFontCapitalization);
    margin-left: 15px;
    cursor: pointer;
}

@media only screen and (max-width: 1024px) {
    .evergreen input[type="checkbox"] + label, .evergreen input[type="radio"] + label {
        font-size: var(--fontSizeM);
    }
}

@media only screen and (max-width: 480px) {
    .evergreen input[type="checkbox"] + label, .evergreen input[type="radio"] + label {
        font-size: var(--fontSizeS);
    }
}

.evergreen input[type="checkbox"], .evergreen input[type="radio"] {
    -moz-appearance: none;
    -webkit-appearance: none;
    -o-appearance: none;
    appearance: none;
    margin: 0;
    vertical-align: middle;
    display: inline-block;
    width: 12px;
    height: 12px;
    border-style: solid;
    border-width: 1px solid;
    cursor: pointer;
}

.evergreen input[type="checkbox"] {
    --borderColor: var(--evgRadioCheckboxBorderColor);
    --borderColorActive: var(--evgRadioCheckboxBorderActiveColor);
    --borderRadius: var(--evgRadioCheckboxBorderRadius);
    --fillStyle: var(--evgRadioCheckboxFillStyle);
    --fillColor: var(--evgRadioCheckboxFillColor);
    --fillColorActive: var(--evgRadioCheckboxFillActiveColor);
    border-color: var(--borderColor);
    border-radius: var(--borderRadius);
    background-color: var(--fillColor);
}

.evergreen input[type="checkbox"]:checked {
    border-color: var(--borderColorActive);
    background-color: var(--fillColorActive);
}

.evergreen input[type="radio"] {
    --borderColor: var(--evgRadioCheckboxSecondaryBorderColor);
    --borderColorActive: var(--evgRadioCheckboxSecondaryBorderActiveColor);
    --fillStyle: var(--evgRadioCheckboxSecondaryFillStyle);
    --fillColor: var(--evgRadioCheckboxSecondaryFillColor);
    --fillColorActive: var(--evgRadioCheckboxSecondaryFillActiveColor);
    background-color: var(--fillColor);
    border-radius: 50%;
}

.evergreen input[type="radio"]:checked {
    border-color: var(--borderColorActive);
    background-color: var(--fillColorActive);
}

/* ==================================
 --------- Evergreen Pager ----------
================================== */
.evergreen-pager {
    margin: 15px 0;
}

.evergreen-pager-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.evergreen-pager-list-item {
    display: inline-block;
    vertical-align: top;
    margin: 5px 0;
}

.evergreen-pager-list-item:not(:last-child) button {
    margin-right: 5px;
}

.evergreen-pager-dots {
    margin-right: 5px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 1px solid solid var(--evgPrimaryColor, #0f5ca3);
    color: var(--evgPrimaryColor, #0f5ca3);
    background-color: #fff;
    border-radius: 3px;
    width: 35px;
    height: 35px;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    line-height: 35px;
    text-align: center;
    cursor: default;
}

.evergreen-pager-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--evgLightColor, #fff);
    border: 1px solid solid var(--evgPrimaryColor, #0f5ca3);
    border-radius: 3px;
    color: var(--evgPrimaryColor, #0f5ca3);
    width: 35px;
    height: 35px;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: all 0.25s;
    -o-transition: all 0.25s;
    transition: all 0.25s;
    cursor: pointer;
}

.evergreen-pager-button:not(.js--disabled):hover {
    color: var(--evgLightColor, #fff);
    background-color: var(--evgPrimaryColor, #0f5ca3);
}

.evergreen-pager-button:not(.js--disabled):focus, .evergreen-pager-button:not(.js--disabled):focus-visible {
    outline-color: var(--evgDarkColor, #0f5ca3);
}

.evergreen-pager-button.js--active {
    color: var(--evgLightColor, #fff);
    background-color: var(--evgPrimaryColor, #0f5ca3);
    pointer-events: none;
}

.evergreen-pager-button.js--disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.evergreen-pager-button [class^="evergreen-icon-"], .evergreen-pager-button [class*=" evergreen-icon"] {
    color: inherit;
    font-size: 10px;
    pointer-events: none;
}

.evergreen-table {
    /* Remove spacing between table cells (from Normalize.css) */
    border-collapse: collapse;
    border-spacing: 0;
    empty-cells: show;
}

.evergreen-table caption {
    padding: 1em 0;
    text-align: center;
}

.evergreen-table td, .evergreen-table th {
    margin: 0;
    overflow: visible;
    /* to make this where the title is really long work */
    padding: 0.5em 1em;
    /* cell padding */
}

.evergreen-table thead {
    text-align: left;
    vertical-align: bottom;
}

.evergreen-table-bordered tbody > tr:last-child > td {
    border-bottom-width: 0;
}

.evergreen-layout table {
    width: 100%;
    text-align: left;
}

.evergreen-layout table td, .evergreen-layout table th {
    padding: 15px 10px;
}

.evergreen-layout table thead, .evergreen-layout table thead tr {
    --fontSize: var(--headingFontSize);
    --fontColor: var(--headingFontColor);
    --fontWeight: var(--headingFontWeight);
    --lineHeight: var(--headingLineHeight);
    --capitalization: var(--headingCapitalization);
    --backgroundColor: var(--headerBackgroundColor);
    font-size: var(--fontSize);
    font-family: var(--fontFamily);
    font-weight: var(--headingFontWeight);
    color: var(--headingFontColor);
    text-transform: var(--headingCapitalization);
    background-color: var(--headerBackgroundColor);
}

.evergreen-layout table.evergreen-table--alt, .evergreen-layout .evergreen-table--alt {
    text-align: left;
}

.evergreen-layout table.evergreen-table--alt tr:not(:last-child), .evergreen-layout .evergreen-table--alt tr:not(:last-child) {
    background-color: var(--rowBackgroundColor);
    border-bottom: 1px solid solid var(--evgTableBorderColor, rgba(0, 0, 0, 0.1));
}

.evergreen-layout table.evergreen-table--alt td, .evergreen-layout table.evergreen-table--alt th, .evergreen-layout .evergreen-table--alt td, .evergreen-layout .evergreen-table--alt th {
    --fontSize: var(--evgTableSecondaryFontSizeL);
    --fontWeight: var(--evgTableSecondaryFontWeight);
    --capitalization: var(--evgTableSecondaryFontCapitalization, none);
    font-size: var(--fontSize);
    font-weight: var(--fontWeight);
    text-transform: var(--capitalization);
    padding: 20px 15px;
}

@media only screen and (max-width: 1024px) {
    .evergreen-layout table.evergreen-table--alt td, .evergreen-layout table.evergreen-table--alt th, .evergreen-layout .evergreen-table--alt td, .evergreen-layout .evergreen-table--alt th {
        --fontSize: var(--evgTableSecondaryFontSizeM);
        font-size: var(--fontSize);
    }
}

@media only screen and (max-width: 480px) {
    .evergreen-layout table.evergreen-table--alt td, .evergreen-layout table.evergreen-table--alt th, .evergreen-layout .evergreen-table--alt td, .evergreen-layout .evergreen-table--alt th {
        --fontSize: var(--evgTableSecondaryFontSizeS);
        font-size: var(--fontSize);
        padding: 15px 8px;
    }
}

.evergreen-layout table.evergreen-table--alt th, .evergreen-layout .evergreen-table--alt th {
    color: var(--evgTableSecondaryFontAltColor);
    background-color: var(--evgTableBackgroundAltColor);
}

.evergreen-layout table.evergreen-table--alt caption, .evergreen-layout .evergreen-table--alt caption {
    caption-side: bottom;
    padding: 5px 15px;
    font-size: calc(var(--evgRootFontSize) * 1.2);
    border-bottom: 1px solid solid var(--evgTableBorderColor, rgba(0, 0, 0, 0.1));
    border-top: 1px solid solid var(--evgTableBorderColor, rgba(0, 0, 0, 0.1));
    color: var(--evgTableSecondaryFontAltColor);
    background-color: var(--evgTableBackgroundAltColor);
}

/* Modules */
/* ==================================
 ----------- MODULE CSS -----------
================================== */
/* -------- All Module CSS -------- */
.module_header, .module_back-to-top, .module_anchor-target, .module_file-size, .module_file-type, .module_file-text {
    display: none;
}

.module_nav, .module_headline, .module_location, .module_speakers, .module_links, .module_body, .module_options, .module_not-found {
    margin-bottom: 10px;
}

.module_add-to-calendar-reveal {
    color: var(--evgAltColor);
    cursor: pointer;
}

.module_add-to-calendar-reveal:hover {
    color: var(--evgPrimaryColor);
}

.module_add-to-calendar-list {
    display: none;
}

.module_add-to-calendar-list::after {
    content: "Select your Calendar";
    display: block;
    margin-top: 15px;
    text-align: center;
}

.fancybox-container .module_add-to-calendar-list {
    padding: 0 30px;
}

.module_add-to-calendar-item {
    display: inline-block;
    margin: 0 10px;
}

.module_add-to-calendar-item--ics {
    display: none;
}

.module_add-to-calendar.js--hidden {
    display: none;
}

.module_actions, .module_pager {
    margin-top: 20px;
}

.module_date-time {
    margin-bottom: 5px;
    font-weight: 400;
    color: var(--evgPrimaryColor);
}

.module_error-container {
    color: var(--evgErrorColor);
    display: block;
    margin-bottom: 30px;
}

.module_error-container ul {
    padding-left: 18px;
    list-style-type: disc;
}

.module_error-container ul > li {
    line-height: 1.5;
}

.module_error-container > br {
    display: none;
}

.module_error-container > span {
    display: block;
    line-height: 1.5;
}

.module_error-container > span::before {
    font-family: "q4-icons-legacy";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\ec6b";
    margin-right: 5px;
}

.module_headline {
    line-height: 1.5;
}

.module_headline-link {
    color: var(--evgBodyFontColor);
}

.module_image {
    display: inline-block;
    max-width: 30%;
    margin-bottom: 16px;
}

.module_image--right {
    float: right;
    margin-left: 32px;
}

.module_image--left {
    float: left;
    margin-right: 32px;
}

.module_introduction {
    margin-bottom: 35px;
}

.module_item {
    padding-top: 30px;
    padding-bottom: 10px;
}

.module_label {
    display: inline-block;
    margin-bottom: 5px;
}

.module_links > *, .module_links li, .module_links .module_presentation {
    display: inline;
}

@media only screen and (max-width: 480px) {
    .module_links > *, .module_links li, .module_links .module_presentation {
        display: block;
    }
}

.module_links.module_links--stack > *, .module_links.module_links--stack li, .module_links.module_links--stack .module_presentation {
    display: block;
}

.module_link {
    display: inline-block;
    vertical-align: middle;
    margin: 0 15px 10px 0;
}

.module_link > .module_link-text, .module_link > i, .module_link > span {
    vertical-align: middle;
}

.module_link[style="DISPLAY:block;"], .module_link[style="display: block;"] {
    display: inline-block !important;
}

.module_loader {
    margin: 0;
    display: inline-block;
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
}

.module_message {
    display: block;
    margin: 16px 0;
}

.module_message[style$="hidden;"], .module_message:empty {
    display: none;
}

.module_message--success {
    color: var(--evgSuccessColor);
}

.module_message--success::before {
    font-family: "q4-icons-legacy";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\ed71";
    margin-right: 5px;
}

.module_message--error {
    color: var(--evgErrorColor);
}

.module_message--error::before {
    font-family: "q4-icons-legacy";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\ed4f";
    margin-right: 5px;
}

.module_message--validation_error {
    margin: 0;
}

.module_nav-link, .module_nav .ModuleYearLink, .module_nav-link:visited, .module_nav .ModuleYearLink:visited {
    display: inline-block;
    margin-right: 5px;
    padding: 15px 20px;
    border: 2px solid var(--evgPrimaryColor);
    color: var(--evgBodyFontColor);
    font-weight: normal;
}

.module_nav-link.selected, .module_nav-link.selected:visited, .module_nav .ModuleYearLink.selected, .module_nav .ModuleYearLink.selected:visited, .module_nav-link.selected:visited, .module_nav-link.selected:visited:visited, .module_nav .ModuleYearLink.selected:visited, .module_nav .ModuleYearLink.selected:visited:visited {
    background-color: var(--evgPrimaryColor);
    color: var(--evgLightColor);
}

@media only screen and (max-width: 480px) {
    .module_nav-link, .module_nav .ModuleYearLink, .module_nav-link:visited, .module_nav .ModuleYearLink:visited {
        margin-bottom: 10px;
    }
}

.module_options {
    margin-bottom: 30px;
}

@media only screen and (max-width: 480px) {
    .module_options-label, .module_options-select, .module_options-submit {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }
}

.module_pager a {
    color: var(--evgBodyFontColor);
}

.module_pager a[href] {
    color: var(--evgPrimaryColor);
}

.module_reminder .module_label {
    margin-right: 10px;
}

.module_reminder.js--reminded {
    display: none;
}

.module_required {
    color: var(--evgBodyFontColor);
}

.module_required-text {
    color: var(--evgBodyFontColor);
}

.module_rss {
    float: right;
    margin-top: 10px;
}

.module_speakers li {
    margin-bottom: 5px;
}

.module_title {
    font-family: var(--evgModuleNameFontFamily);
    font-size: var(--evgModuleNameFontSizeL);
    font-weight: var(--evgModuleNameFontWeight);
    line-height: var(--evgModuleNameFontLineHeight);
    text-transform: var(--evgModuleNameFontCapitalization);
    text-align: var(--evgModuleNameFontAlignment);
    color: var(--evgModuleNameFontColor);
    margin-bottom: 30px;
}

@media only screen and (max-width: 768px) {
    .module_title {
        font-size: var(--evgModuleNameFontSizeM);
    }
}

@media only screen and (max-width: 480px) {
    .module_title {
        font-size: var(--evgModuleNameFontSizeS);
    }
}

.module_view-all-link {
    font-weight: bold;
    text-transform: uppercase;
}

.module_input[type="text"], .module_input[type="email"], .module_input[type="file"], .module_dropdown, .module textarea.module_input {
    padding: 8px;
}

.module_input[type="text"]::-ms-clear, .module_input[type="email"]::-ms-clear, .module_input[type="file"]::-ms-clear, .module_dropdown::-ms-clear, .module textarea.module_input::-ms-clear {
    display: none;
}

.module_input[type="text"]:-ms-input-placeholder, .module_input[type="email"]:-ms-input-placeholder, .module_input[type="file"]:-ms-input-placeholder, .module_dropdown:-ms-input-placeholder, .module textarea.module_input:-ms-input-placeholder {
    color: var(--evgDarkColor) !important;
}

.module textarea.module_input {
    resize: vertical;
    min-height: 150px;
}

.module_input[type="file"], .module_dropdown {
    cursor: pointer;
}

.module_input[type="file"] {
    line-height: 1;
}

.module_input--brand-alt[type="text"] {
    display: inline-block;
    width: auto;
    border: 1px solid solid var(--evgAltColor);
    background: transparent;
}

.module_dropdown {
    --fontFamily: var(--evgInputFontFamily);
    --fontColor: var(--evgInputFontColor);
    --fontSize: var(--evgInputFontSizeL);
    --placeholderFontColor: var(--evgInputPlaceholderColor);
    --fontWeight: var(--evgInputFontWeight);
    --lineHeight: var(--evgInputFontLineHeight);
    --capitalization: var(--evgInputFontCapitalization);
    --borderColor: var(--evgInputBorderColor);
    --borderFocusColor: var(--evgInputBorderFocusColor);
    --borderRadius: var(--evgInputBorderRadius);
    --backgroundColor: var(--evgInputBackgroundColor);
    font-family: var(--fontFamily);
    font-size: var(--fontSize);
    color: var(--fontColor);
    font-weight: var(--fontWeight);
    line-height: var(--lineHeight);
    text-transform: var(--capitalization);
    border: 1px solid solid var(--borderColor);
    border-radius: var(--borderRadius);
    background-color: var(--backgroundColor);
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.module_dropdown::-ms-expand {
    display: none;
}

.module-details .module_date-time {
    color: var(--evgPrimaryColor);
    margin-bottom: 15px;
}

.module-disclaimer {
    padding: 20px 0;
}

.module-disclaimer_link {
    cursor: pointer;
    font: inherit;
    text-decoration: underline;
    text-align: left;
    border: 0;
    background: transparent;
    padding: 0;
}

.evergreen.module--thin {
    padding-top: 25px;
    padding-bottom: 25px;
}

.evergreen.module--thin-top {
    padding-top: 25px;
}

.evergreen.module--thin-bottom {
    padding-bottom: 25px;
}

.evergreen.module--thick {
    padding-top: 75px;
    padding-bottom: 75px;
}

.evergreen.module--thick-top {
    padding-top: 75px;
}

.evergreen.module--thick-bottom {
    padding-bottom: 75px;
}

.evergreen.module--no-padding {
    padding-top: 0;
    padding-bottom: 0;
}

.evergreen.module--no-padding-top {
    padding-top: 0;
}

.evergreen.module--no-padding-bottom {
    padding-bottom: 0;
}

/* - Investment Calculator Widget - */
.evergreen .evergreen-stock-calculator.js--loading::after {
    left: auto;
    margin: 10px 0;
}

.evergreen .evergreen-stock-calculator .evergreen-dropdown-wrapper {
    margin-right: 10px;
}

@media only screen and (max-width: 768px) {
    .evergreen .evergreen-stock-calculator .evergreen-dropdown-wrapper {
        margin-right: 0;
        width: 100%;
    }

    .evergreen .evergreen-stock-calculator .evergreen-dropdown-wrapper select {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        width: 100%;
    }
}

.evergreen .evergreen-stock-calculator fieldset {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
}

@media only screen and (max-width: 768px) {
    .evergreen .evergreen-stock-calculator fieldset {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.evergreen .evergreen-stock-calculator .module-calculator_input {
    position: relative;
    margin-right: 20px;
    margin-bottom: 20px;
}

.evergreen .evergreen-stock-calculator .module-calculator_input input.hasDatepicker[type="text"] {
    padding-right: 30px;
}

.evergreen .evergreen-stock-calculator .module-calculator_input input:focus + button {
    color: var(--evgInputBorderFocusColor);
}

.evergreen .evergreen-stock-calculator .module-calculator_input button {
    font-size: 1.125em;
    background: transparent;
    padding: 0;
    border: none;
    line-height: 1;
    position: absolute;
    right: 10px;
    color: var(--evgInputBorderColor);
    cursor: pointer;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.evergreen .evergreen-stock-calculator .module-calculator_input label {
    margin-right: 5px;
}

@media screen and (max-width: 768px) {
    .evergreen .evergreen-stock-calculator .module-calculator_input label {
        display: block;
        text-align: left;
        margin-right: 0;
        margin-bottom: 5px;
    }
}

@media screen and (max-width: 768px) {
    .evergreen .evergreen-stock-calculator .module-calculator_input {
        width: 100%;
        margin-right: 0;
    }

    .evergreen .evergreen-stock-calculator .module-calculator_input input {
        width: 100%;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }
}

.evergreen .module-calculator_popup-container h2 {
    margin-top: 0;
    color: inherit;
}

@media screen and (min-width: 1024px) {
    .evergreen .module-calculator_popup-container {
        min-width: 920px;
    }
}

@media screen and (min-width: 481px) and (max-width: 768px) {
    .evergreen .module-calculator_popup-container .table thead {
        display: none;
    }

    .evergreen .module-calculator_popup-container .table tbody {
        border-top: 2px solid var(--evgPrimaryColor);
        border-bottom: 2px solid var(--evgPrimaryColor);
    }

    .evergreen .module-calculator_popup-container .table td {
        display: block;
    }

    .evergreen .module-calculator_popup-container .table td::before {
        content: attr(data-heading) ": ";
        font-weight: bold;
    }
}

.evergreen .module-calculator_info td:first-child::before {
    content: none;
}

/* - Committee Composition Widget - */
.evergreen .module-committee th {
    font-weight: inherit;
}

.evergreen .module-committee .module_container--desktop .module_header {
    display: table-header-group;
}

@media only screen and (max-width: 768px) {
    .evergreen .module-committee .module_container--desktop {
        display: none;
    }
}

.evergreen .module-committee .module_container--tablet {
    display: none;
}

@media only screen and (max-width: 768px) {
    .evergreen .module-committee .module_container--tablet {
        display: block;
    }
}

.evergreen .module-committee .module_container--tablet .module-committee_name {
    padding: 10px 0;
    display: inline-block;
}

.evergreen .module-committee .module_container--tablet .module-committee_icon {
    padding: 10px 0 10px 25px;
    display: inline-block;
    text-align: center;
}

.evergreen .module-committee .module_container--tablet .module_header {
    border: 0 none;
}

.evergreen .module-committee .module_container--tablet .module_items-container .grid_col {
    padding: 0;
}

.evergreen .module-committee .module_header {
    display: block;
}

.evergreen .module-committee .module_item {
    padding: 0;
}

.evergreen .module-committee .module_items-container {
    padding: 15px;
    margin: 0 0 15px 0;
}

.evergreen .module-committee .grid_col {
    padding: 20px 15px;
    text-align: center;
}

.evergreen .module-committee .grid_col:first-child {
    text-align: left;
}

.evergreen .module-committee_category.js--active .module_header .module-committee_trigger::before {
    content: "\edba";
}

.evergreen .module-committee_custom-role {
    margin-left: 5px;
}

.evergreen .module-committee_bio {
    padding: 0 15px 20px;
    text-align: left;
}

.evergreen .module-committee_bio p {
    margin: 0;
}

.evergreen .module-committee_bio p:not(:last-of-type) {
    margin-bottom: 16px;
}

.evergreen .module-committee_legend-container {
    padding: 20px 15px;
}

.evergreen .module-committee_legend {
    display: inline-block;
    margin-right: 30px;
    margin-bottom: 5px;
}

.evergreen .module-committee_legend [class*="q4-icon_"] {
    margin-right: 5px;
}

/* ----- Download List Module ----- */
.evergreen.module-downloads .module_nav {
    display: none;
}

.evergreen.module-downloads .module_item {
    padding: 15px 0;
}

.evergreen.module-downloads .module-downloads_thumbnail, .evergreen.module-downloads .module-downloads_description, .evergreen.module-downloads .module-downloads_date {
    display: none;
}

.evergreen.module-downloads .module-downloads_title {
    position: relative;
}

.evergreen.module-downloads .module-downloads_title-link {
    margin: 0 40px 0 0;
}

.evergreen.module-downloads .q4icons_icon {
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

/* --- Financial Report Modules --- */
.module-financial-table_link, .module-financial-tablelink-text, .module-financial-table a {
    --fontSize: var(--evgHyperlinkFontSizeL);
    --fontFamily: var(--evgHyperlinkFontFamily);
    --fontColor: var(--evgHyperlinkFontColor);
    --fontWeight: var(--evgHyperlinkFontWeight);
    --fontStyle: var(--evgHyperlinkFontStyle);
    --lineHeight: var(--evgHyperlinkFontLineHeight);
    --capitalization: var(--evgHyperlinkFontCapitalization);
    --textDecoration: var(--evgHyperlinkDecorationTextDecoration);
    --textDecorationColor: var(--evgHyperlinkDecorationTextDecorationColor);
    font-size: var(--fontSize);
    font-family: var(--fontFamily);
    font-style: var(--fontStyle);
    color: var(--fontColor);
    font-weight: var(--fontWeight);
    line-height: var(--lineHeight);
    text-transform: var(--capitalization);
    -webkit-text-decoration: var(--textDecoration);
    text-decoration: var(--textDecoration);
    -webkit-text-decoration-color: var(--textDecorationColor);
    text-decoration-color: var(--textDecorationColor);
    -webkit-transition-property: color, -webkit-text-decoration;
    transition-property: color, -webkit-text-decoration;
    -o-transition-property: color, text-decoration;
    transition-property: color, text-decoration;
    transition-property: color, text-decoration, -webkit-text-decoration;
    -webkit-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-in-out;
    -o-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
}

.module-financial-table_link:hover, .module-financial-tablelink-text:hover, .module-financial-table a:hover {
    --fontColor: var(--evgHyperlinkFontHoverColor);
    --textDecoration: var(--evgHyperlinkDecorationTextDecorationHover);
    --textDecorationColor: var(--evgHyperlinkDecorationTextDecorationHoverColor);
    color: var(--fontColor);
    -webkit-text-decoration: var(--textDecoration);
    text-decoration: var(--textDecoration);
    -webkit-text-decoration-color: var(--textDecorationColor);
    text-decoration-color: var(--textDecorationColor);
}

.module-financial-table_link:focus, .module-financial-tablelink-text:focus, .module-financial-table a:focus, .module-financial-table_link:focus-visible, .module-financial-tablelink-text:focus-visible, .module-financial-table a:focus-visible {
    --fontColor: var(--evgHyperlinkFontFocusColor);
    --textDecoration: var(--evgHyperlinkDecorationTextDecorationFocus);
    --textDecorationColor: var(--evgHyperlinkDecorationTextDecorationFocusColor);
    color: var(--fontColor);
    -webkit-text-decoration: var(--textDecoration);
    text-decoration: var(--textDecoration);
    -webkit-text-decoration-color: var(--textDecorationColor);
    text-decoration-color: var(--textDecorationColor);
}

.module-sec_filling-link, .module-sec a {
    --fontSize: var(--evgHyperlinkFontSizeL);
    --fontFamily: var(--evgHyperlinkFontFamily);
    --fontColor: var(--evgHyperlinkFontColor);
    --fontWeight: var(--evgHyperlinkFontWeight);
    --fontStyle: var(--evgHyperlinkFontStyle);
    --lineHeight: var(--evgHyperlinkFontLineHeight);
    --capitalization: var(--evgHyperlinkFontCapitalization);
    --textDecoration: var(--evgHyperlinkDecorationTextDecoration);
    --textDecorationColor: var(--evgHyperlinkDecorationTextDecorationColor);
    font-size: var(--fontSize);
    font-family: var(--fontFamily);
    font-style: var(--fontStyle);
    color: var(--fontColor);
    font-weight: var(--fontWeight);
    line-height: var(--lineHeight);
    text-transform: var(--capitalization);
    -webkit-text-decoration: var(--textDecoration);
    text-decoration: var(--textDecoration);
    -webkit-text-decoration-color: var(--textDecorationColor);
    text-decoration-color: var(--textDecorationColor);
    -webkit-transition-property: color, -webkit-text-decoration;
    transition-property: color, -webkit-text-decoration;
    -o-transition-property: color, text-decoration;
    transition-property: color, text-decoration;
    transition-property: color, text-decoration, -webkit-text-decoration;
    -webkit-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-in-out;
    -o-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
}

.module-sec_filling-link:hover, .module-sec a:hover {
    --fontColor: var(--evgHyperlinkFontHoverColor);
    --textDecoration: var(--evgHyperlinkDecorationTextDecorationHover);
    --textDecorationColor: var(--evgHyperlinkDecorationTextDecorationHoverColor);
    color: var(--fontColor);
    -webkit-text-decoration: var(--textDecoration);
    text-decoration: var(--textDecoration);
    -webkit-text-decoration-color: var(--textDecorationColor);
    text-decoration-color: var(--textDecorationColor);
}

.module-sec_filling-link:focus, .module-sec a:focus, .module-sec_filling-link:focus-visible, .module-sec a:focus-visible {
    --fontColor: var(--evgHyperlinkFontFocusColor);
    --textDecoration: var(--evgHyperlinkDecorationTextDecorationFocus);
    --textDecorationColor: var(--evgHyperlinkDecorationTextDecorationFocusColor);
    color: var(--fontColor);
    -webkit-text-decoration: var(--textDecoration);
    text-decoration: var(--textDecoration);
    -webkit-text-decoration-color: var(--textDecorationColor);
    text-decoration-color: var(--textDecorationColor);
}

.evergreen .module-financial-year .module_options {
    text-align: left;
}

.evergreen .module-financial-year .module_cover {
    margin-bottom: 15px;
}

.evergreen .module-financial-year .module_cover img {
    display: inline-block;
    vertical-align: top;
    border: 1px solid solid var(--evgAltColor);
}

.module-financial-year .module-financial_annual-archive .module_cover img {
    max-width: 180px;
}

@media only screen and (max-width: 1024px) {
    .module-financial-year .module-financial_annual-archive .module_cover img {
        max-width: none;
    }
}

.evergreen .module-financial-year .module_item {
    padding: 0;
}

.evergreen .module-financial-year .module_item ~ .module_item {
    border: none;
}

.evergreen .module-financial-year .module_links {
    margin: 0;
}

.evergreen .module-financial-year .module-financial_year {
    text-align: center;
}

@media only screen and (max-width: 768px) {
    .evergreen .module-financial-year .module-financial_annual-archive {
        margin-top: 25px;
    }
}

.evergreen .module-financial-quarter .module_item {
    padding: 0;
    border-top: 1px solid solid rgba(0, 0, 0, 0.1);
}

.evergreen .module-financial-quarter .module_item:last-child {
    border-bottom: 1px solid solid rgba(0, 0, 0, 0.1);
}

.evergreen .module-financial-quarter .module_item h3 button:focus {
    outline: 2px dotted grey;
}

.evergreen .module-financial-quarter .module_item.js--active h3 {
    color: var(--evgPrimaryColor);
}

.evergreen .module-financial-quarter .module_item.js--active h3 button::before {
    content: "\edba";
}

.evergreen .module-financial-quarter .module_links {
    background-color: var(--evgGreyColor);
    margin: 0 0 15px 0;
    padding: 15px;
}

.evergreen .module-financial-quarter .module_links > .grid_col {
    display: inline-block;
    padding-right: 20px;
}

.evergreen .module-financial-quarter .module_link {
    margin-bottom: 10px;
    font-size: 1.6rem;
    font-weight: normal;
    text-transform: none;
}

.evergreen .module-financial-quarter .module-financial_year-text {
    padding: 0;
    margin: 0;
    color: var(--evgAltColor);
    text-transform: uppercase;
    font-size: 1.4rem;
    font-weight: bold;
    cursor: pointer;
}

.evergreen .module-financial-quarter .module-financial_year-text button {
    all: inherit;
    width: 100%;
    padding: 20px 0;
}

.evergreen .module-financial-quarter .module-financial_year-text button::before {
    float: right;
    font-family: "q4-icons-legacy";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\edc2";
}

.evergreen .module-financial-table {
    --fontFamily: var(--evgTableFontFamily);
    --headingFontSize: var(--evgTableFontSizeL);
    --headingFontColor: var(--evgTableFontColor);
    --headingFontWeight: var(--evgTableFontWeight);
    --headingLineHeight: var(--evgTableFontLineHeight);
    --headingCapitalization: var(--evgTableFontCapitalization);
    --headerBackgroundColor: var(--evgTableBackgroundColor);
    --categoryFontColor: var(--evgTableSecondaryFontAltColor);
    --categoryBackgroundColor: var(--evgTableBackgroundAltColor);
    --rowFontSize: var(--evgTableSecondaryFontSizeL);
    --rowFontColor: var(--evgTableSecondaryFontColor);
    --rowFontWeight: var(--evgTableSecondaryFontWeight);
    --rowCapitalization: var(--evgTableSecondaryFontCapitalization);
    --rowBackgroundColor: var(--evgTableSecondaryBackgroundColor);
    --rowAltBackgroundColor: var(--evgTableZebra);
    --border: var(--evgTableRowUnderline);
    --borderColor: var(--evgTableBorderColor);
    --borderRadius: var(--evgTableBorderRadius);
    font-family: var(--fontFamily);
}

.evergreen .module-financial-table .module_container--content {
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.evergreen .module-financial-table table {
    width: 100%;
}

.evergreen .module-financial-table table.evergreen-table tbody, .evergreen .module-financial-table table.evergreen-table tr {
    border: none;
}

.evergreen .module-financial-table table.evergreen-table .trow {
    border-bottom: 1px solid solid var(--borderColor);
}

.evergreen .module-financial-table table tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.evergreen .module-financial-table table td.module-financial-table_item.visible-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
    padding: 20px 37px;
}

.evergreen .module-financial-table table td.module-financial-table_item.visible-track span {
    margin-left: 5px;
    margin-right: 5px;
    margin-bottom: 10px;
}

@media only screen and (max-width: 540px) {
    .evergreen .module-financial-table table td.module-financial-table_item.visible-track span {
        width: 50%;
        margin: 0 0 10px;
    }
}

.evergreen .module-financial-table table .module-financial-table_column-year {
    opacity: 0;
    visibility: hidden;
    position: relative;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    z-index: 1;
    -webkit-transition: opacity 600ms ease-in, visibility 600ms ease-in, -webkit-transform 500ms ease;
    transition: opacity 600ms ease-in, visibility 600ms ease-in, -webkit-transform 500ms ease;
    -o-transition: transform 500ms ease, opacity 600ms ease-in, visibility 600ms ease-in;
    transition: transform 500ms ease, opacity 600ms ease-in, visibility 600ms ease-in;
    transition: transform 500ms ease, opacity 600ms ease-in, visibility 600ms ease-in, -webkit-transform 500ms ease;
}

.evergreen .module-financial-table table .module-financial-table_column-year.visible-track {
    opacity: 1;
    display: block;
    visibility: visible;
}

.evergreen .module-financial-table_column {
    padding: 20px 15px;
    width: 25%;
}

.evergreen .module-financial-table_column-year {
    text-align: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.evergreen .module-financial-table_column-report {
    --fontSize: var(--rowFontSize);
    --fontWeight: var(--rowFontWeight);
    --fontCapitalization: var(--rowCapitalization);
    display: inline-block;
    position: relative;
    z-index: 2;
    background-color: var(--categoryBackgroundColor);
    color: var(--categoryFontColor);
    font-size: var(--fontSize);
    font-weight: var(--fontWeight);
    text-align: left;
}

@media only screen and (max-width: 1024px) {
    .evergreen .module-financial-table_column-report {
        --fontSize: var(--evgTableSecondaryFontSizeM);
    }
}

@media only screen and (max-width: 480px) {
    .evergreen .module-financial-table_column-report {
        --fontSize: var(--evgTableSecondaryFontSizeS);
    }
}

.evergreen .module-financial-table_column.doc:not(:last-child) {
    margin-right: 15px;
}

.evergreen .module-financial-table_container-years {
    display: inline-block;
    width: 100%;
    position: relative;
    overflow: hidden;
    border: none;
}

.evergreen .module-financial-table .doc-link--missing:hover {
    cursor: not-allowed;
}

.evergreen .module-financial-table .doc-missing {
    opacity: 0.3;
}

.evergreen .module-financial-table_header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: var(--headerBackgroundColor);
    color: var(--headingFontColor);
    font-size: var(--headingFontSize);
    font-weight: var(--headingFontWeight);
    line-height: var(--headingLineHeight);
    text-transform: var(--headingCapitalization);
}

.evergreen .module-financial-table_header th {
    color: var(--headingFontColor);
    font-size: var(--headingFontSize);
    font-weight: var(--headingFontWeight);
    line-height: var(--headingLineHeight);
    text-transform: var(--headingCapitalization);
}

.evergreen .module-financial-table_header td {
    border: none;
    padding: 0;
}

.evergreen .module-financial-table_header-year {
    padding: 20px 15px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}

.evergreen .module-financial-table_header .module-financial-table_track {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}

.evergreen .module-financial-table_track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    will-change: transform;
    -webkit-transition: -webkit-transform 500ms ease;
    transition: -webkit-transform 500ms ease;
    -o-transition: transform 500ms ease;
    transition: transform 500ms ease;
    transition: transform 500ms ease, -webkit-transform 500ms ease;
    z-index: 1;
}

.evergreen .module-financial-table_track-arrow {
    background: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    background-color: transparent;
    border: none;
    color: white;
    font-size: 100%;
    position: absolute;
    top: 18px;
    z-index: 3;
}

.evergreen .module-financial-table_track-arrow:not(.module-financial-table_track-arrow--disabled) {
    cursor: pointer;
}

.evergreen .module-financial-table_track-arrow--disabled {
    opacity: 0.3;
}

.evergreen .module-financial-table_track-arrow--left {
    left: 20px;
}

.evergreen .module-financial-table_track-arrow--right {
    right: 20px;
}

.evergreen .module-financial-mashup .grid_col {
    margin-right: 0;
}

.evergreen .module-financial-mashup_item {
    margin-left: 0;
    padding: 20px 20px 20px 0;
    border: 1px solid solid var(--evgBodyFontColor);
}

.evergreen .module-financial-mashup_item .grid_col > :first-child {
    margin-top: 0;
}

@media screen and (min-width: calc(768px + 1px solid)) {
    .evergreen .module-financial-mashup .module_options {
        margin-bottom: 0;
    }
}

.evergreen .module-financial-mashup .module_body {
    max-height: 300px;
    overflow: hidden;
    position: relative;
}

.evergreen .module-financial-mashup .module_body > *:first-child, .evergreen .module-financial-mashup .module_body > style + p {
    margin-top: 0;
}

.evergreen .module-financial-mashup .module_body::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 50px;
    z-index: 1;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.5)), color-stop(70%, white), to(white));
    background: -o-linear-gradient(top, rgba(255, 255, 255, 0.5) 0%, white 70%, white 100%);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5) 0%, white 70%, white 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#70ffffff", endColorstr="#ffffff", GradientType=0);
}

.evergreen .module-financial-mashup h4, .evergreen .module-financial-mashup .h4 {
    margin-top: 16px;
}

.evergreen .module-financial-mashup .module-financial-mashup_documents .module_links + h4, .evergreen .module-financial-mashup .module-financial-mashup_documents .module_links + .h4 {
    margin-top: 30px;
}

.evergreen .module-financial-mashup .module-financial-mashup_documents .module_links > div {
    background-color: var(--evgGreyColor);
    padding: 15px;
    margin-bottom: 1px solid;
}

.evergreen .module-financial-mashup .module-financial-mashup_documents .module_links .module_link {
    margin: 0;
}

.evergreen .module-financial-mashup .button {
    width: 100%;
    min-width: auto;
    border-bottom: 0;
    outline-offset: 2px;
    outline-color: var(--evgPrimaryColor);
}

.evergreen .module-financial-mashup .button.js--selected {
    background: var(--evgAltColor);
    color: #fff;
}

@media only screen and (min-width: calc(768px + 1px solid)) {
    .evergreen .module-financial-mashup .module_options--mobile {
        display: none;
    }
}

@media only screen and (max-width: 768px) {
    .evergreen .module-financial-mashup .module_options--desktop {
        display: none;
    }
}

/* Module FInancial Latest Fix */
.module-financial-latest {
    background-image: url('../design/banner/donaldson/landing-hero.jpg') !important;
    background-attachment: scroll !important;
    position: relative;
}

@media all and (max-width: 768px) {
    .module-financial-latest {
        background-position-x: 65% !important;
    }
}

/* Overlay */
.module-financial-latest::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.6);
}

.module-financial-latest .evergreen-container--outer {
    position: relative;
}

.module-financial-latest .grid_col {
    margin-bottom: 25px;
}

.module-financial-latest .module_link {
    color: var(--evgAltColor);
    margin: 0;
}

.module-financial-latest .module_link .q4icons_icon::before {
    display: inline-block;
    font-size: 50px !important;
    padding: 0 !important;
    width: 92px;
    height: 92px;
    line-height: 92px !important;
    text-align: center !important;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 100%;
    -webkit-transition: background-color 0.25s ease-in-out;
    -o-transition: background-color 0.25s ease-in-out;
    transition: background-color 0.25s ease-in-out;
    border: 1px solid var(--evgAltColor);
}

.module-financial-latest .module_link.module_link-presentation .q4icons_icon::before {
    content: "\e913" !important;
}

.module-financial-latest .module_link:hover .q4icons_icon::before {
    background-color: var(--evgBrand1Color);
    border: 1px solid var(--evgBodyFontColor);
}

.module-financial-latest .module_link:hover {
    color: var(--evgBodyFontColor);
    text-decoration: underline;
}

.module-financial-latest .module_link-text {
    display: block;
    margin: 15px 0 0;
    font-size: 16px;
    text-transform: none;
    line-height: 1;
}

.module-financial-latest .module-financial_type-text {
    margin-top: 10px;
    font-size: var(--evgH1FontSizeL);
    line-height: 1;
    font-weight: normal;
}

.module-financial-latest .module-financial_year-text {
    margin-top: 15px;
    font-size: var(--evgH3FontSizeL);
    line-height: 1;
    letter-spacing: 2px;
}

@media only screen and (max-width: 1024px) {
    .module-financial-latest .module_links {
        border-left: 0;
    }

    .module-financial-latest .module_link {
        margin: 0 0 15px;
    }

    .module-financial-latest .grid_col {
        vertical-align: middle;
    }
}

.module-financial-latest .button--cta:hover {
    color: var(--evgLightColor);
    text-decoration: underline;
    -webkit-text-decoration-line: underline;
    text-decoration-line: underline;
}

@media only screen and (max-width: 768px) {
    .module-financial-latest .module_item > div:first-child {
        margin-bottom: 30px;
    }
}

/* Module FInancial Latest Fix */
/* ------ Formbuilder Module ------ */
.module-form--custom .module_container--content {
    display: none;
}

.module-form--custom .module_container--content.js--visible {
    display: block;
}

.module-form .module_container--content {
    margin-left: -20px;
}

@media only screen and (max-width: 768px) {
    .module-form .module_container--content {
        margin-left: 0;
    }
}

.module-form .module_error-container li[style="visibility: hidden;"] {
    display: none;
}

.module-form .module_required {
    margin-left: 3px;
}

.module-form .module_container--captcha > div {
    margin: 0;
    padding: 0;
}

.module-form .module_container--captcha > div .ErrorMessage {
    display: block;
    margin-top: 10px;
    font-size: 1.4rem;
    color: var(--evgErrorColor);
}

.module-form .module_container--captcha > div .ErrorMessage[style="visibility: hidden;"] {
    display: none;
}

.module-form .module_actions button[type="submit"] {
    padding: 0;
    margin: 0;
    border: none;
}

.module-form_item {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 50%;
    margin-bottom: 20px;
    padding-left: 20px;
    vertical-align: top;
}

.module-form_item > label, .module-form_item legend {
    display: inline-block;
    margin-bottom: 5px;
}

.module-form_item legend {
    float: left;
    margin-bottom: 15px;
}

.module-form_item legend ~ ul {
    clear: both;
    padding-left: 10px;
}

.module-form_item ul li:not(:last-of-type) {
    padding-bottom: 5px;
}

.module-form_item--document-request, .module-form_item--are-you-an-investor {
    width: 100%;
}

.module-form_item--document-request legend, .module-form_item--are-you-an-investor legend {
    --fontFamily: var(--evgRadioCheckboxFontFamily);
    --fontSize: var(--evgRadioCheckboxFontSizeL);
    --fontSizeM: var(--evgRadioCheckboxFontSizeM);
    --fontSizeS: var(--evgRadioCheckboxFontSizeS);
    --fontColor: var(--evgRadioCheckboxFontColor);
    --fontWeight: var(--evgRadioCheckboxFontWeight);
    --lineHeight: var(--evgRadioCheckboxFontLineHeight);
    --capitalization: var(--evgRadioCheckboxFontCapitalization);
}

@media only screen and (max-width: 768px) {
    .module-form_item {
        width: 100%;
        padding-left: 0;
    }
}

.module-form_error-text {
    color: var(--evgErrorColor);
    margin: 0 0 15px 0;
}

.module-form_error-text[style*="visibility:hidden"], .module-form_error-text[style*="visibility: hidden"] {
    display: none;
}

.module-form .CaptchaContainer {
    display: block;
}

.module-form .CaptchaContainer input[type="text"] {
    width: 100%;
}

.fancybox-slide--form .fancybox-content {
    margin: 10px auto;
    max-width: 1000px;
    width: 80% !important;
    height: calc(100% - 20px);
    overflow: visible;
}

@media only screen and (max-width: 480px) {
    .fancybox-slide--form .fancybox-content {
        width: 95% !important;
    }
}

.fancybox-slide--form_confirmation .fancybox-content {
    max-width: 700px;
}

.fancybox-slide--form .fancybox-button--close {
    display: none;
}

/* ---------- Job Modules --------- */
.evergreen .module-job-details_description-container {
    margin-bottom: 35px;
    border-top: 1px solid solid var(--evgDarkenColor);
}

.evergreen .module-job-details_description {
    border-bottom: 1px solid solid var(--evgDarkenColor);
}

.evergreen .module-job-details_description label {
    font-weight: normal;
}

.evergreen .module-job-details_description input {
    width: auto;
    max-width: none;
    padding: 0;
    border: none;
    float: right;
    font-family: var(--evgBodyFontFamily);
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 0;
}

@media only screen and (max-width: 480px) {
    .evergreen .module-job-details_description label::after {
        content: ":";
    }

    .evergreen .module-job-details_description input {
        display: block;
        float: none;
        margin-top: 5px;
    }
}

.evergreen .module-job-details .grid_col {
    padding: 15px 20px;
}

.evergreen .module-job-application_table {
    display: block;
    width: 100%;
    margin-left: -20px;
    font-size: 0;
}

.evergreen .module-job-application_table tr {
    display: inline-block;
    width: 50%;
    margin-bottom: 20px;
    padding-left: 20px;
    vertical-align: top;
    font-size: 1.6rem;
}

.evergreen .module-job-application_table tr:last-child {
    margin-bottom: 0;
}

.evergreen .module-job-application_table tr.module-job-application_cover-letter-text, .evergreen .module-job-application_table tr.module-job-application_resume-text {
    width: 100%;
}

.evergreen .module-job-application_table tr td {
    display: block;
    position: relative;
}

.evergreen .module-job-application_table tr label {
    display: inline-block;
    margin-bottom: 5px;
    font-size: 1.4rem;
}

@media only screen and (max-width: 768px) {
    .evergreen .module-job-application_table {
        margin-left: 0;
    }

    .evergreen .module-job-application_table tr {
        width: 100%;
        padding-left: 0;
    }
}

.evergreen .module-job-application .module_required {
    font-size: 1.4rem;
}

/* ----- Miscellaneous Modules ---- */
.evergreen-layout .module-script {
    display: none;
}

.evergreen-layout .module-rss p + h2 {
    margin: 40px 0 30px;
}

/* ==================================
 ---------- NEW NAV START ----------
================================== */
.evergreen-layout .evergreen.module-nav, .evergreen-layout .evergreen.module-logo {
    padding: 0;
}

.evergreen-layout .nav--mobile {
    display: none;
    max-width: 380px;
    width: 75%;
    padding: 20px 20px 60px 20px;
    background-color: var(--evgLightColor);
    border-top: 2px solid var(--evgGreyColor);
    overflow-y: auto;
    position: fixed;
    z-index: 2000;
    will-change: transform;
    top: 0;
    height: 100%;
    -webkit-box-shadow: rgba(0, 0, 0, 0.2) 0 8px 24px;
    box-shadow: rgba(0, 0, 0, 0.2) 0 8px 24px;
}

.evergreen-layout .nav--mobile.right {
    right: 0;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
}

.evergreen-layout .nav--mobile.left {
    left: 0;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
}

.js--mobile .evergreen-layout .nav--mobile {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}

@media only screen and (min-width: 1230px) {
    .evergreen-layout .nav--mobile {
        display: none;
    }
}

.evergreen-layout .nav--mobile--toggle {
    display: none;
    font-size: 3.4rem;
    color: var(--evgDarkColor);
    background: transparent;
    border: 0 none;
    margin: 0;
    padding: 0;
    outline-color: var(--evgDarkColor);
    position: absolute;
    top: 15px;
}

.evergreen-layout .nav--mobile--toggle [class^="q4-icon_"]:focus, .evergreen-layout .nav--mobile--toggle [class*=" q4-icon_"]:focus {
    outline: none;
}

.js--header-small .evergreen-layout .nav--mobile--toggle {
    color: var(--evgDarkColor);
}

@media only screen and (max-width: 1230px) {
    .evergreen-layout .nav--mobile--toggle {
        display: block;
    }
}

.evergreen-layout .nav--mobile--toggle.right {
    right: 20px;
}

.evergreen-layout .nav--mobile--inner_toggle_container .nav--mobile--toggle {
    position: static;
    color: var(--evgBodyFontColor);
    float: none;
}

.evergreen-layout .nav--mobile--inner_toggle_container .nav--mobile--toggle.right {
    margin-left: auto;
}

.evergreen-layout .nav--mobile--inner_toggle_container .nav--mobile--toggle [class^="q4-icon_"]::before, .evergreen-layout .nav--mobile--inner_toggle_container .nav--mobile--toggle [class*=" q4-icon_"]::before {
    font-size: 2.5rem;
    content: "\ed6d";
}

.evergreen-layout .nav--mobile--search_container {
    display: block;
    position: relative;
    border: none;
    border-bottom: 1px solid solid rgba(var(--evgLightColor), 0.1);
    background: transparent;
    color: var(--evgLightColor);
    font-size: 1.4rem;
    margin: 20px 0 20px 0;
    padding: 0;
    min-height: 36px;
    background-color: var(--evgPrimaryColor);
}

.evergreen-layout .nav--mobile--search_container--input {
    -webkit-box-shadow: 0 0 0 30px var(--evgPrimaryColor) inset !important;
    -webkit-text-fill-color: var(--evgLightColor) !important;
    border: none;
    position: absolute;
    left: 0;
    padding: 10px 35px 10px 15px;
    width: 100%;
    color: var(--evgLightColor) !important;
    text-transform: uppercase;
    font-size: 14px;
    -webkit-appearance: none;
}

.evergreen-layout .nav--mobile--search_container--btn {
    position: absolute;
    right: 0;
    font-size: 15px;
    color: var(--evgLightColor);
    background-color: transparent;
    border: none;
    padding: 10px 15px;
}

.evergreen-layout .nav--mobile--expand--topMenu--menuItem, .evergreen-layout .nav--mobile--panel--topMenu--menuItem {
    display: block;
    position: relative;
    vertical-align: middle;
}

.evergreen-layout .nav--mobile--expand--topMenu--menuItem .link, .evergreen-layout .nav--mobile--expand--topMenu--menuItem .button, .evergreen-layout .nav--mobile--panel--topMenu--menuItem .link, .evergreen-layout .nav--mobile--panel--topMenu--menuItem .button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 10px 0;
    margin: 0 10px;
    width: calc(100% - 20px);
    font-weight: normal;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background-color: transparent;
    color: var(--evgDarkColor);
}

.evergreen-layout .nav--mobile--expand--topMenu--menuItem.selected > a .icon, .evergreen-layout .nav--mobile--expand--topMenu--menuItem.selected > a .text, .evergreen-layout .nav--mobile--expand--topMenu--menuItem.selected > button .icon, .evergreen-layout .nav--mobile--expand--topMenu--menuItem.selected > button .text, .evergreen-layout .nav--mobile--expand--topMenu--menuItem.expanded > a .icon, .evergreen-layout .nav--mobile--expand--topMenu--menuItem.expanded > a .text, .evergreen-layout .nav--mobile--expand--topMenu--menuItem.expanded > button .icon, .evergreen-layout .nav--mobile--expand--topMenu--menuItem.expanded > button .text, .evergreen-layout .nav--mobile--panel--topMenu--menuItem.selected > a .icon, .evergreen-layout .nav--mobile--panel--topMenu--menuItem.selected > a .text, .evergreen-layout .nav--mobile--panel--topMenu--menuItem.selected > button .icon, .evergreen-layout .nav--mobile--panel--topMenu--menuItem.selected > button .text, .evergreen-layout .nav--mobile--panel--topMenu--menuItem.expanded > a .icon, .evergreen-layout .nav--mobile--panel--topMenu--menuItem.expanded > a .text, .evergreen-layout .nav--mobile--panel--topMenu--menuItem.expanded > button .icon, .evergreen-layout .nav--mobile--panel--topMenu--menuItem.expanded > button .text {
    font-weight: bold;
    color: var(--evgPrimaryColor);
}

.evergreen-layout .nav--mobile--expand--topMenu--menuItem .button, .evergreen-layout .nav--mobile--panel--topMenu--menuItem .button {
    border: none;
    font-family: inherit;
    font-size: inherit;
    font-style: inherit;
    min-width: auto;
}

.evergreen-layout .nav--mobile--expand--topMenu--menuItem .button .text, .evergreen-layout .nav--mobile--panel--topMenu--menuItem .button .text {
    display: inline-block;
}

.evergreen-layout .nav--mobile--expand--topMenu--menuItem .button .icon, .evergreen-layout .nav--mobile--panel--topMenu--menuItem .button .icon {
    margin-left: 5px;
    display: inline-block;
}

.evergreen-layout .nav--mobile--expand--innerMenu, .evergreen-layout .nav--mobile--panel--innerMenu {
    margin-left: 25px !important;
}

.evergreen-layout .nav--mobile--panel--topMenu--menuItem {
    position: static;
    display: block;
}

.evergreen-layout .nav--mobile--panel--innerMenu {
    margin-left: 0 !important;
    will-change: transform;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding: 20px 30px 60px 20px !important;
    background-color: var(--evgLightColor);
    border-top: 2px solid var(--evgGreyColor);
    overflow-y: auto;
}

.evergreen-layout .nav--mobile--panel--innerMenu.right {
    right: 0;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
}

.evergreen-layout .nav--mobile--panel--innerMenu.left {
    left: 0;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
}

.evergreen-layout .nav--mobile--panel--innerMenu--menuItem {
    position: static;
}

.evergreen-layout .nav--mobile--panel--innerMenu--menuItem.selected > a .icon, .evergreen-layout .nav--mobile--panel--innerMenu--menuItem.selected > a .text, .evergreen-layout .nav--mobile--panel--innerMenu--menuItem.selected > button .icon, .evergreen-layout .nav--mobile--panel--innerMenu--menuItem.selected > button .text, .evergreen-layout .nav--mobile--panel--innerMenu--menuItem.expanded > a .icon, .evergreen-layout .nav--mobile--panel--innerMenu--menuItem.expanded > a .text, .evergreen-layout .nav--mobile--panel--innerMenu--menuItem.expanded > button .icon, .evergreen-layout .nav--mobile--panel--innerMenu--menuItem.expanded > button .text {
    font-weight: bold;
    color: var(--evgPrimaryColor);
}

.evergreen-layout .nav--mobile--panel--innerMenu .panel-control .button {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
}

.evergreen-layout .nav--mobile--panel--innerMenu .panel-control .button .icon {
    margin-left: 0;
    margin-right: 5px;
}

.evergreen-layout .nav--desktop {
    font-size: 1.4rem;
}

@media only screen and (max-width: 1230px) {
    .evergreen-layout .nav--desktop {
        display: none !important;
    }
}

.evergreen-layout .nav--desktop.hoz {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.evergreen-layout .nav--desktop--search_container {
    position: relative;
    font-size: 1.4rem;
    font-family: var(--evgBodyFontFamily);
    font-style: italic;
    color: var(--evgAltColor);
}

.evergreen-layout .nav--desktop--search_container--input {
    display: none;
    background-color: var(--evgLightColor);
    -webkit-box-shadow: 0 0 0 30px rgba(255, 255, 255, 0) inset !important;
    -webkit-text-fill-color: var(--evgAltColor) !important;
    border: none;
    border-bottom: 1px solid solid rgba(255, 255, 255, 0.1);
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    padding: 10px 35px 10px 15px;
    font-family: var(--evgBodyFontFamily);
    font-style: italic;
}

.evergreen-layout .nav--desktop--search_container--input:focus {
    outline-color: var(--evgAltColor);
}

.evergreen-layout .nav--desktop--search_container--btn {
    position: relative;
    top: 5px;
    font-size: 15px;
    color: var(--evgAltColor);
    background-color: transparent;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
}

.evergreen-layout .nav--desktop li.selected, .evergreen-layout .nav--desktop li.expanded {
    background-image: -webkit-gradient(linear, left top, right top, color-stop(33%, var(--evgBodyFontColor)), color-stop(0%, rgba(255, 255, 255, 0)));
    background-image: -o-linear-gradient(left, var(--evgBodyFontColor) 33%, rgba(255, 255, 255, 0) 0%);
    background-image: linear-gradient(to right, var(--evgBodyFontColor) 33%, rgba(255, 255, 255, 0) 0%);
    background-position: bottom;
    background-size: 7px 2px;
    background-repeat: repeat-x;
}

.js--header-small .evergreen-layout .nav--desktop li.selected, .js--header-small .evergreen-layout .nav--desktop li.expanded {
    background-image: -webkit-gradient(linear, left top, right top, color-stop(33%, var(--evgBodyFontColor)), color-stop(0%, rgba(255, 255, 255, 0)));
    background-image: -o-linear-gradient(left, var(--evgBodyFontColor) 33%, rgba(255, 255, 255, 0) 0%);
    background-image: linear-gradient(to right, var(--evgBodyFontColor) 33%, rgba(255, 255, 255, 0) 0%);
    background-position: bottom;
    background-size: 7px 2px;
    background-repeat: repeat-x;
}

.evergreen-layout .nav--desktop--list--topMenu {
    margin: 0 15px !important;
    width: 100%;
}

.evergreen-layout .nav--desktop--list--topMenu--menuItem {
    display: inline-block;
    position: relative;
    vertical-align: middle;
    margin: 0 15px;
}

.evergreen-layout .nav--desktop--list--topMenu--menuItem .link, .evergreen-layout .nav--desktop--list--topMenu--menuItem .button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding: 10px 0;
    margin: 0 5px;
    width: 100%;
    color: var(--evgDarkColor);
    font-weight: normal;
    font-size: 13px;
    letter-spacing: 0.5px;
    font-family: var(--evgBodyFontFamily), Arial, "sans serif";
    background: transparent;
    text-transform: uppercase;
}

.js--header-small .evergreen-layout .nav--desktop--list--topMenu--menuItem .link, .js--header-small .evergreen-layout .nav--desktop--list--topMenu--menuItem .button {
    color: var(--evgBodyFontColor);
}

@media only screen and (max-width: 1200px) {
    .evergreen-layout .nav--desktop--list--topMenu--menuItem .link, .evergreen-layout .nav--desktop--list--topMenu--menuItem .button {
        text-align: center;
        padding: 10px 5px;
        margin: 0;
        letter-spacing: 0;
    }
}

.evergreen-layout .nav--desktop--list--topMenu--menuItem .button {
    border: none;
    font-family: inherit;
    font-style: inherit;
    min-width: auto;
}

.evergreen-layout .nav--desktop--list--topMenu--menuItem .button .text {
    display: inline-block;
}

.evergreen-layout .nav--desktop--list--topMenu--menuItem .button .icon {
    margin-left: 5px;
    display: inline-block;
    font-size: 0.75rem;
}

.evergreen-layout .nav--desktop--list--innerMenu {
    display: none;
    border-width: 0 1px solid;
    border-style: solid;
    -o-border-image: -o-linear-gradient(bottom, rgba(181, 176, 172, 0.4), rgba(0, 0, 0, 0)) 1 100%;
    border-image: -webkit-gradient(linear, left bottom, left top, from(rgba(181, 176, 172, 0.4)), to(rgba(0, 0, 0, 0))) 1 100%;
    border-image: linear-gradient(to top, rgba(181, 176, 172, 0.4), rgba(0, 0, 0, 0)) 1 100%;
    border-top: none;
    background-color: var(--evgPrimaryColor);
    outline-color: var(--evgLightColor);
    position: absolute;
}

.evergreen-layout .nav--desktop--list--innerMenu.level1 {
    padding: 10px 0;
}

.evergreen-layout .nav--desktop--list--innerMenu .link, .evergreen-layout .nav--desktop--list--innerMenu .button {
    padding: 10px 10px;
    margin: 0 10px;
    color: var(--evgLightColor);
    text-transform: none;
}

.js--header-small .evergreen-layout .nav--desktop--list--innerMenu .link, .js--header-small .evergreen-layout .nav--desktop--list--innerMenu .button {
    color: var(--evgLightColor);
}

.evergreen-layout .nav--desktop--list--innerMenu .link:focus, .evergreen-layout .nav--desktop--list--innerMenu .button:focus {
    outline-color: var(--evgLightColor);
}

.evergreen-layout .nav--desktop--list--innerMenu::before {
    content: "";
    border-bottom: 11px solid var(--evgPrimaryColor);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    position: absolute;
    top: -10px;
    left: 15px;
}

/* ------ Navigation Modules ------ */
.evergreen-layout .nav_close {
    display: none;
}

.evergreen-layout .nav_guide {
    position: absolute;
    width: 1px solid;
    height: 1px solid;
    padding: 0;
    margin: -1px solid;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

@media only screen and (max-width: 1024px) {
    .evergreen-layout .nav_guide {
        display: none;
    }
}

.evergreen-layout .nav a[tabindex="-1"]:focus {
    /* navigation needs this for accessibility purpose  */
    outline-width: 2px !important;
    outline-style: dotted !important;
    outline-color: inherit !important;
}

.evergreen-layout .nav--main {
    text-align: right;
    font-size: 1.3rem;
}

.evergreen-layout .nav--main button.submenu-trigger {
    /* removing default button styling for dropdown menu buttons */
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    font-family: inherit;
    font-size: inherit;
}

.evergreen-layout .nav--main li {
    display: inline-block;
    position: relative;
}

.evergreen-layout .nav--main li a {
    display: block;
    padding: 10px 5px;
    color: var(--evgBodyFontColor);
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media only screen and (max-width: 1200px) {
    .evergreen-layout .nav--main li a {
        text-transform: none;
        letter-spacing: 0;
    }
}

.evergreen-layout .nav--main li.selected > a, .evergreen-layout .nav--main li.expanded:not(.home) > a, .evergreen-layout .nav--main li a:hover, .evergreen-layout .nav--main li a:focus, .evergreen-layout .nav--main li button:focus a {
    color: var(--evgPrimaryColor);
}

.evergreen-layout .nav--main .level2 {
    display: inline-block;
    vertical-align: top;
}

.evergreen-layout .nav--main .level2 > li {
    padding: 10px 0;
}

.evergreen-layout .nav--main .level3 {
    display: none;
    background-color: var(--evgPrimaryColor);
    padding: 20px 10px;
    text-align: left;
    white-space: nowrap;
    position: absolute;
    z-index: 200;
    left: calc(50% - 30px);
    top: 100%;
    min-width: 200px;
}

.evergreen-layout .nav--main .level3::before {
    content: "";
    border-bottom: 11px solid var(--evgPrimaryColor);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    position: absolute;
    top: -10px;
    left: 15px;
}

.nav--main li:last-child > .level3 {
    right: calc(50% - 30px);
    left: auto;
}

.nav--main li:last-child > .level3::before {
    left: auto;
    right: 15px;
}

.nav--main li.sfHover > .level3 {
    display: block;
}

.evergreen-layout .nav--main .level3 li {
    display: block;
}

.evergreen-layout .nav--main .level3 li.selected > a, .evergreen-layout .nav--main .level3 li.expanded > a {
    color: var(--evgLightColor);
}

.evergreen-layout .nav--main .level3 a {
    color: var(--evgLightColor);
    padding: 10px;
    text-transform: none;
}

.evergreen-layout .nav--main .level3 a:hover, .evergreen-layout .nav--main .level3 a:focus {
    color: var(--evgLightColor);
    text-decoration: underline;
    -webkit-text-decoration-line: underline;
    text-decoration-line: underline;
}

.evergreen-layout .nav--main .js--expanded .level3 {
    display: block;
}

.evergreen-layout .nav--secondary {
    background: var(--evgPrimaryColor);
    text-align: center;
    line-height: 1.25;
    letter-spacing: 1px solid;
}

.js--sticky .nav--secondary {
    position: fixed;
    width: 100%;
    z-index: 200;
    -webkit-box-shadow: rgba(var(--evgDarkColor), 0.2) 0 2px 20px;
    box-shadow: rgba(var(--evgDarkColor), 0.2) 0 2px 20px;
}

@media only screen and (max-width: 1024px) {
    .evergreen-layout .nav--secondary {
        display: none;
    }
}

.evergreen-layout .nav--secondary .level1 {
    max-width: 1220px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

@media only screen and (max-width: 1024px) {
    .evergreen-layout .nav--secondary .level1 {
        max-width: none;
        padding-left: 0;
        padding-right: 0;
    }
}

.evergreen-layout .nav--secondary .level1 > li {
    display: none;
    line-height: 1;
}

.evergreen-layout .nav--secondary .level1 > li.selected, .evergreen-layout .nav--secondary .level1 > li.expanded {
    display: block;
}

.evergreen-layout .nav--secondary .level1 > li.selected > a, .evergreen-layout .nav--secondary .level1 > li.expanded > a {
    display: none;
}

.evergreen-layout .nav--secondary .level2 > li {
    display: none;
    line-height: 1;
}

.evergreen-layout .nav--secondary .level2 > li.selected, .evergreen-layout .nav--secondary .level2 > li.expanded {
    display: block;
}

.evergreen-layout .nav--secondary .level2 > li.selected > a, .evergreen-layout .nav--secondary .level2 > li.expanded > a {
    display: none;
}

.evergreen-layout .nav--secondary .level2 > li.has-children:focus .level3[style*="none"] {
    display: block !important;
}

.evergreen-layout .nav--secondary .level3 {
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media screen and (min-width: 1025px) {
    .evergreen-layout .nav--secondary .level3 {
        /* to override superfish on desktop */ display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
        opacity: 1 !important;
    }
}

.evergreen-layout .nav--secondary .level3 > li {
    display: inline-block;
    vertical-align: top;
    line-height: 1;
}

.evergreen-layout .nav--secondary .level3 > li a {
    color: var(--evgLightColor);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 15px 25px;
}

.evergreen-layout .nav--sitemap, .module-sitemap {
    max-width: 1220px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 50px;
    padding-bottom: 50px;
}

.evergreen-layout .nav--sitemap a {
    display: inline-block;
    font-family: var(--evgHyperlinkFontFamily);
    font-weight: var(--evgHyperlinkFontWeight);
    font-style: var(--evgHyperlinkFontStyle);
    line-height: var(--evgHyperlinkFontLineHeight);
    text-transform: var(--evgHyperlinkFontCapitalization);
    font-size: var(--evgHyperlinkFontSizeL);
    -webkit-text-decoration: var(--evgHyperlinkDecorationTextDecoration);
    text-decoration: var(--evgHyperlinkDecorationTextDecoration);
    -webkit-text-decoration-color: var(--evgHyperlinkDecorationTextDecorationColor);
    text-decoration-color: var(--evgHyperlinkDecorationTextDecorationColor);
    color: var(--evgHyperlinkFontColor);
}

.evergreen-layout .nav--sitemap a:hover {
    color: var(--evgHyperlinkFontHoverColor);
    -webkit-text-decoration: var(--evgHyperlinkDecorationTextDecorationHover);
    text-decoration: var(--evgHyperlinkDecorationTextDecorationHover);
    -webkit-text-decoration-color: var(--evgHyperlinkDecorationTextDecorationHoverColor);
    text-decoration-color: var(--evgHyperlinkDecorationTextDecorationHoverColor);
}

.evergreen-layout .nav--sitemap a:focus {
    color: var(--evgHyperlinkFontFocusColor);
    -webkit-text-decoration: var(--evgHyperlinkDecorationTextDecorationFocus);
    text-decoration: var(--evgHyperlinkDecorationTextDecorationFocus);
    -webkit-text-decoration-color: var(--evgHyperlinkDecorationTextDecorationFocusColor);
    text-decoration-color: var(--evgHyperlinkDecorationTextDecorationFocusColor);
}

.evergreen-layout .nav--sitemap .level3 > li {
    padding: 5px 0 5px 15px;
    line-height: 1;
}

.evergreen-layout .nav--sitemap .level2 > li > a {
    margin-bottom: 5px !important;
}

/*
.evergreen-layout .nav--sitemap .level1 > li > a, 
.evergreen-layout .nav--sitemap .level1 > li > a:visited,
.evergreen-layout .nav--sitemap .level2 > li > a,
.evergreen-layout .nav--sitemap .level2 > li > a:visited {
  margin-bottom: 40px;
  font-size: 24px;
  line-height: 1;
  color: #283033;
  text-transform: uppercase;
}

.evergreen-layout .nav--sitemap .level1 > li:not(:last-of-type),
.nav--sitemap .level2 > li:not(:last-of-type){
    margin-bottom: 35px;
    line-height: 1;
}

.evergreen-layout .nav--sitemap .level3 > li > a {
  font-size: 14px;
  line-height: 1;
  font-weight: bold;
  text-transform: uppercase;
}
*/
/* ---------- Pager ---------- */
.evergreen .pager, .evergreen .pager_list {
    --fontFamily: var(--evgPaginationFontFamily);
    --fontSize: var(--evgPaginationFontSizeL);
    --fontColor: var(--evgPaginationFontColor);
    --fontAltColor: var(--evgPaginationFontAltColor);
    --fontHoverColor: var(--evgPaginationFontHoverColor);
    --fontWeight: var(--evgPaginationFontWeight);
    --borderColor: var(--evgPaginationBorderColor);
    --borderHoverColor: var(--evgPaginationBorderHoverColor);
    --borderActiveColor: var(--evgPaginationBorderActiveColor);
    --borderRadius: var(--evgPaginationBorderRadius);
    --backgroundColor: var(--evgPaginationBackgroundColor);
    --backgroundHoverColor: var(--evgPaginationBackgroundHoverColor);
    --backgroundActiveColor: var(--evgPaginationBackgroundActiveColor);
}

.evergreen .pager {
    margin: 15px 0;
}

.evergreen .pager_list {
    padding: 0;
}

.evergreen .pager_list-item {
    display: inline-block;
    vertical-align: top;
    margin: 5px 0;
}

.evergreen .pager_list-item:not(:last-child) button {
    margin-right: 5px;
}

.evergreen .pager_dots {
    margin-right: 5px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 1px solid solid var(--borderColor);
    border-radius: var(--borderRadius, 0);
    color: var(--fontColor);
    background-color: var(--backgroundColor);
    width: 35px;
    height: 35px;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    line-height: 35px;
    text-align: center;
    cursor: default;
}

.evergreen .pager_button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 35px;
    height: 35px;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: all 0.25s;
    -o-transition: all 0.25s;
    transition: all 0.25s;
    background-color: var(--backgroundColor);
    border: 1px solid solid var(--borderColor);
    border-radius: var(--borderRadius, 0);
    color: var(--fontColor);
    font-family: var(--fontFamily);
    font-size: var(--fontSize);
    font-weight: var(--fontWeight);
    text-decoration: none;
    text-transform: none;
    cursor: pointer;
}

.evergreen .pager_button:not(.js--disabled):hover {
    background-color: var(--backgroundHoverColor);
    border-color: var(--borderHoverColor);
    color: var(--fontHoverColor);
}

.evergreen .pager_button:not(.js--disabled):focus {
    background-color: var(--backgroundHoverColor);
    border-color: var(--borderHoverColor);
    color: var(--fontHoverColor);
}

.evergreen .pager_button.js--active {
    background-color: var(--backgroundActiveColor);
    border-color: var(--borderActiveColor);
    color: var(--fontAltColor);
}

.evergreen .pager_button.js--disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.evergreen .pager_button [class^="q4-icon_"], .evergreen .pager_button [class*=" q4-icon_"] {
    color: inherit;
    font-size: 70%;
    pointer-events: none;
}

/* -------- Search Results: Accessible Datepicker -------- */
.ui-datepicker.ui-widget {
    padding: 5px;
}

.ui-datepicker .ui-datepicker-buttonpane button {
    padding: 5px 10px;
    text-transform: uppercase;
    border-radius: 3px;
    border: 0 none;
    margin-left: 15px;
    font-size: 14px;
    font-weight: normal;
    height: 30px;
    vertical-align: top;
    display: inline-block;
    background-color: var(--evgPrimaryColor);
    outline-color: var(--evgPrimaryColor);
    color: var(--evgLightColor);
    min-width: auto;
    font-family: var(--evgBodyFontFamily);
}

.ui-datepicker .ui-widget-header {
    background: var(--evgLightColor);
}

.ui-datepicker .ui-state-active, .ui-datepicker.ui-widget-content .ui-state-active, .ui-datepicker .ui-widget-header .ui-state-active, .ui-datepicker a.ui-button:active, .ui-datepicker .ui-button:active, .ui-datepicker .ui-button.ui-state-active:hover, .ui-datepicker .ui-state-active a, .ui-datepicker .ui-state-active a:link, .ui-datepicker .ui-state-active a:visited {
    background-color: var(--evgPrimaryColor);
}

.evergreen {
    /* reduce input width... */
    /* to make room for button */
    /* button icon ('module-search-results .form_field--date:after' content copied to this style and then removed since new datepicker trigger exists) */
    /* -------- Search Modules -------- */
}

.evergreen .module-search-results .form_field--date .form_input {
    width: calc(100% - 40px);
    vertical-align: top;
    display: inline-block;
    height: 45px;
}

.evergreen .module-search-results .ui-datepicker-trigger {
    width: 40px;
    vertical-align: top;
    display: inline-block;
    height: 45px;
    background: var(--evgLightColor);
    border: 1px solid var(--evgDropdownBorderColor);
    border-left: none;
}

_::-webkit-full-page-media, _:future, :root .evergreen .module-search-results .ui-datepicker-trigger {
    /* For Safari only */
    margin: 2px 0;
}

.evergreen .module-search-results .ui-datepicker-trigger:hover {
    cursor: pointer;
}

.evergreen .q4-icon_calendar-results::before {
    content: "\e921";
    font-size: 16px;
    color: var(--evgPrimaryColor);
}

.evergreen .module-search_toggle {
    margin: 0;
    font-size: 1.6rem;
    position: absolute;
    right: 15px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    color: var(--evgAltColor);
    cursor: pointer;
}

.evergreen .module-search_toggle.js--active {
    color: var(--evgPrimaryColor);
}

.evergreen .module-search_input[type="text"] {
    opacity: 0;
    visibility: hidden;
    border-color: var(--evgPrimaryColor);
    background-color: var(--evgPrimaryColor);
    color: var(--evgLightColor);
    width: 100%;
    max-width: 380px;
    padding: 15px 20px;
    margin: 0;
    font-size: 1.8rem;
    text-transform: uppercase;
    position: absolute;
    top: calc(100% + 25px);
    right: 25px;
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.js--header-small .evergreen .module-search_input[type="text"] {
    top: 100%;
}

.evergreen .module-search_input.js--revealed[type="text"] {
    opacity: 1;
    visibility: visible;
}

.evergreen .module-search_button {
    display: none;
    position: absolute;
    top: 10px;
    right: 10px;
    width: 15px;
    height: 15px;
    padding: 0;
    border: 0;
    background: transparent url('../design/svg/q4-icon_buttons.svg');
    background-position: 0 -100%;
    background-size: 300%;
    font-size: 0;
    cursor: pointer;
}

.evergreen .module-search-results {
    max-width: 1180px;
    margin: 0 auto;
    padding-left: 25px;
    padding-right: 25px;
}

.evergreen .module-search-results .form_fields-right input {
    width: 100%;
    border-color: z;
    color: #979797;
}

.evergreen .module-search-results .form_field {
    margin-bottom: 25px;
}

.evergreen .module-search-results .form_field--date {
    position: relative;
}

.evergreen .module-search-results .form_field--search {
    margin-bottom: 35px;
}

.evergreen .module-search-results .form_select {
    width: 100%;
    display: block !important;
}

.evergreen .module-search-results .form_select + .sbHolder {
    display: none;
}

.evergreen .module-search-results .form_input {
    display: block;
}

.evergreen .module-search-results .form_field--search input {
    padding: 8px 32px 8px 8px;
    width: 100%;
}

.evergreen .module-search-results_link {
    margin-bottom: 20px;
    display: inline-block;
}

.evergreen .module-search-results_item {
    -webkit-box-shadow: inset 0 1px solid 0 0 rgba(204, 201, 196, 0.3), inset 0 -1px solid 0 0 rgba(204, 201, 196, 0.3);
    box-shadow: inset 0 1px solid 0 0 rgba(204, 201, 196, 0.3), inset 0 -1px solid 0 0 rgba(204, 201, 196, 0.3);
    padding: 30px 0;
}

.evergreen .module-search-results_url, .evergreen .module-search-results_result a {
    word-wrap: break-word;
}

.evergreen .module-search-results_url {
    display: none;
}

.evergreen .module-search-results_result::after {
    content: "";
    display: table;
    clear: both;
}

.evergreen .module-search-results_description {
    text-shadow: 0 1px solid 0 #fff;
}

.evergreen .module-search-results_summary {
    color: #545b62;
    margin: 0 0 30px;
}

.evergreen .module-search-results_pager {
    float: right;
}

.evergreen .module-search-results .pager_text {
    display: none;
}

.evergreen .module-search-results .daterangepicker .calendar-table .prev span {
    top: 5px;
}

.evergreen .module-search-results .daterangepicker .calendar-table .prev span::before {
    content: "\e90f";
    font-size: 16px;
}

.evergreen .module-search-results .daterangepicker .calendar-table .next span {
    top: 5px;
}

.evergreen .module-search-results .daterangepicker .calendar-table .next span::before {
    content: "\e90d";
    font-size: 16px;
}

.evergreen .module-search-results .evergreen-dropdown-wrapper {
    width: 100%;
}

@media only screen and (max-width: 768px) {
    .evergreen .module-search-results .form-fields-right .grid_col {
        padding-left: 0;
    }

    .evergreen .module-search-results .form-fields--pages {
        margin-top: 25px;
        display: block;
        width: 100%;
    }

    .evergreen .module-search-results .form-fields--search {
        width: 100%;
    }
}

@media only screen and (max-width: 500px) {
    .evergreen .module-search-results .form_field.form_field--date {
        overflow: visible;
    }
}

/* -------- SEC Module CSS -------- */
.evergreen .module-sec .module_options-label, .evergreen .module-sec .evergreen-dropdown-wrapper {
    margin-right: 10px;
}

@media only screen and (max-width: 768px) {
    .evergreen .module-sec .module_options-label, .evergreen .module-sec .evergreen-dropdown-wrapper {
        width: 100%;
        display: block;
        margin: 10px 0;
    }

    .evergreen .module-sec .module_options-label select, .evergreen .module-sec .evergreen-dropdown-wrapper select {
        width: 100%;
    }
}

.evergreen .module-sec .module_header {
    display: block;
}

.evergreen .module-sec .module_header-text {
    padding: 15px 8px;
}

.evergreen .module-sec .module_table {
    width: 100%;
}

.evergreen .module-sec .module_table caption {
    caption-side: bottom;
    text-align: left;
    padding: 8px 8px;
    font-size: calc(var(--evgRootFontSize) * 1.2);
    border-top: 1px solid solid rgba(0, 0, 0, 0.1);
}

.evergreen .module-sec .module_item .module-sec_filing {
    font-weight: bold;
}

.evergreen .module-sec .module_download-list-item {
    display: inline-block;
}

@media only screen and (max-width: 768px) {
    .evergreen .module-sec .module_options select {
        display: block;
        margin: 10px 0;
    }

    .evergreen .module-sec .module_download-list-item {
        display: block;
        text-align: center;
        margin-bottom: 12px;
    }
}

.evergreen .module-sec .module_link-sec {
    margin: 0;
}

@media only screen and (max-width: 480px) {
    .evergreen .module-sec .module_rss {
        margin-bottom: 10px;
    }
}

/* ---- Accessibility Skip Link --- */
.evergreen.module-skip {
    padding: 0;
}

.evergreen.module-skip .module-skip_link {
    position: absolute;
    top: -100px;
    left: 50%;
    padding: 15px 20px;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    z-index: 9999;
    width: 100%;
    text-align: center;
}

.evergreen.module-skip .module-skip_link:focus, .evergreen.module-skip .module-skip_link:active {
    top: 0;
}

/* ------ Slider ------ */
.evergreen .module-slider .module_container--outer {
    display: table;
    width: 100%;
    table-layout: fixed;
}

.evergreen .module-slider .module_container--inner {
    display: table-cell;
    vertical-align: middle;
    height: 390px;
}

.evergreen .module-slider .slick-slider {
    padding: 0 40px;
}

.evergreen .module-slider .slick-slider .slick-slide {
    float: none;
    display: inline-block;
    vertical-align: middle;
    padding: 0 5px;
}

.evergreen .module-slider .slick-arrow::before {
    font-size: 30px;
}

.evergreen .module-slider .module_add-to-calendar-reveal {
    color: var(--evgLightColor);
}

.evergreen .module-slider .module-slider_title h1 {
    margin: 0;
}

.evergreen .module-slider .module_loader {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.evergreen .module-slider_description {
    font-size: 2.4rem;
    margin-top: 10px;
}

.evergreen .module-slider_description .module_date-time {
    font-size: inherit;
}

.evergreen .module-slider_description p {
    margin: 10px 0;
}

.evergreen .module-slider_description p:first-child {
    margin-top: 0;
    margin-bottom: 10px;
}

.evergreen .module-slider_description .module_links {
    margin-top: 10px;
    margin-bottom: 0;
}

/* ------ Stock Chart Widget ------ */
.evergreen.module-stock-chart .js--hidden[data-highcharts-chart] {
    display: block !important;
    max-height: 0;
    overflow: hidden;
}

.evergreen.module-stock-chart .highcharts-header {
    padding: 0 !important;
}

.evergreen.module-stock-chart .highcharts-legend {
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
}

.evergreen.module-stock-chart .highcharts-legend > rect {
    fill: none;
}

.evergreen.module-stock-chart .highcharts-legend-item text[style*="#CCC"] {
    fill: #767676 !important;
    color: #767676 !important;
}

.evergreen.module-stock-chart .highcharts-legend-item rect[fill="#CCC"] {
    fill: #767676 !important;
}

.evergreen.module-stock-chart .highcharts-legend-item:first-child path {
    stroke: #000;
}

.evergreen.module-stock-chart .highcharts-legend-item:first-child text {
    cursor: default !important;
    color: #000 !important;
    fill: #000 !important;
}

.evergreen.module-stock-chart .highcharts-yaxis-grid path {
    stroke: var(--evgStockChartStockChartDividerColor);
}

.evergreen.module-stock-chart .highcharts-series-0 {
    stroke: #000;
}

.evergreen.module-stock-chart .highcharts-series-0 path:first-child {
    stroke: #000;
}

.evergreen.module-stock-chart .highcharts-series-group .highcharts-series-2 path {
    stroke: #000;
    stroke-width: 2px;
}

.evergreen.module-stock-chart .highcharts-navigator-handle {
    stroke: var(--evgStockChartStockChartTimelineSelectorColor);
    fill: var(--evgStockChartStockChartTimelineSelectorColor);
    cursor: ew-resize;
}

.evergreen.module-stock-chart .highcharts-navigator-handle-right rect, .evergreen.module-stock-chart .highcharts-navigator-handle-left rect {
    stroke-width: 0;
    fill: var(--evgStockChartStockChartTimelineSelectorColor);
}

.evergreen.module-stock-chart .highcharts-navigator-handle-right path, .evergreen.module-stock-chart .highcharts-navigator-handle-left path {
    stroke: var(--evgStockChartStockChartTimelineSelectorColor);
}

.evergreen.module-stock-chart .highcharts-scrollbar g:first-of-type rect, .evergreen.module-stock-chart .highcharts-scrollbar-thumb {
    fill: var(--evgStockChartStockChartTimelineSelectorColor);
    stroke: var(--evgStockChartStockChartTimelineSelectorColor);
}

.evergreen.module-stock-chart .highcharts-range-selector {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}

.evergreen.module-stock-chart .highcharts-range-input rect {
    stroke: #ccc;
    fill: #f2f2f2;
}

.evergreen.module-stock-chart .highcharts-button rect, .evergreen.module-stock-chart .highcharts-input-group rect {
    stroke-width: 0;
    fill: var(--evgDarkenColor);
}

.evergreen.module-stock-chart .highcharts-button text {
    --fontFamily: var(--evgH5FontFamily);
    --fontSize: var(--evgH5FontSizeL);
    --fontSizeM: var(--evgH5FontSizeM);
    --fontSizeS: var(--evgH5FontSizeS);
    --fontColor: var(--evgH5FontColor);
    --fontWeight: var(--evgH5FontWeight);
    --lineHeight: var(--evgH5LineHeight);
    --capitalization: var(--evgH5Capitalization);
    font-family: var(--fontFamily) !important;
    font-size: var(--fontSize) !important;
    font-weight: var(--fontWeight) !important;
    line-height: var(--lineHeight) !important;
    text-transform: var(--capitalization) !important;
    color: var(--fontColor) !important;
    fill: var(--fontColor) !important;
}

@media only screen and (max-width: 1024px) {
    .evergreen.module-stock-chart .highcharts-button text {
        font-size: var(--fontSizeM);
    }
}

@media only screen and (max-width: 480px) {
    .evergreen.module-stock-chart .highcharts-button text {
        font-size: var(--fontSizeS);
    }
}

.evergreen.module-stock-chart .highcharts-input-group text {
    fill: var(--evgBodyFontColor);
}

.evergreen.module-stock-chart .highcharts-container > svg > .highcharts-button {
    display: none;
}

.evergreen.module-stock-chart .highcharts-data-table-button, .evergreen.module-stock-chart .highcharts-data-table-button button {
    background: none;
    border: none;
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    text-transform: uppercase;
    padding: 15px;
    width: 100%;
    text-align: left;
    cursor: pointer;
}

.evergreen.module-stock-chart .highcharts-table-caption {
    display: none;
}

@media screen and (max-width: 768px) {
    .evergreen.module-stock-chart_accessible-datepickers {
        display: none;
    }
}

.evergreen.module-stock-datatable_accessible-datepicker--from > span {
    margin-left: 0 !important;
}

@media screen and (max-width: 400px) {
    .evergreen.module-stock-datatable_accessible-datepicker {
        display: block;
    }

    .evergreen.module-stock-datatable_accessible-datepicker > span {
        margin-left: 0 !important;
    }

    .evergreen.module-stock-datatable_accessible-datepicker--from {
        padding-top: 10px;
        margin-bottom: 10px;
    }
}

.evergreen.module-stock-chart #highcharts-screen-reader-region-before-0 {
    margin-bottom: 8px;
}

/* ------ Stock Header Module ----- */
/* Stock header fixes start*/
.module-stock-header {
    text-align: right;
    margin: 50px 0;
    background: transparent !important;
}

@media only screen and (max-width: 768px) {
    .module-stock-header {
        text-align: left;
        margin: 0;
    }
}

.module-stock-header .evergreen-container--outer {
    padding: 10px 0px;
    width: 100%;
    position: relative;
}

@media only screen and (max-width: 768px) {
    .module-stock-header .evergreen-container--outer {
        display: block;
        text-align: left;
        padding: 20px;
        min-height: unset;
        width: unset;
    }
}

.module-stock-header_link {
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.module-stock-header_description1 {
    display: block;
    font-size: 22px;
    margin: 15px 0;
    color: var(--evgLightColor);
    line-height: 1;
}

@media only screen and (max-width: 768px) {
    .module-stock-header_description1 {
        text-align: center;
        margin: 0;
    }
}

@media only screen and (max-width: 480px) {
    .module-stock-header_description1 {
        text-align: left;
    }
}

.module-stock-header_stock-price {
    display: block;
    margin-bottom: 8px;
    font-size: 45px;
    color: var(--evgLightColor);
    line-height: 1;
}

.module-stock-header_stock-price::before {
    content: "$";
    margin-right: 10px;
}

@media only screen and (max-width: 768px) {
    .module-stock-header_stock-price {
        text-align: center;
    }
}

@media only screen and (max-width: 480px) {
    .module-stock-header_stock-price {
        text-align: left;
    }
}

.module-stock-header_change, .module-stock-header_percent-change {
    display: inline-block;
    margin: 10px 0;
    font-size: 20px;
    color: var(--evgLightColor);
    line-height: 1;
}

@media only screen and (max-width: 768px) {
    .module-stock-header_change, .module-stock-header_percent-change {
        margin: 0;
    }
}

.module-stock-header_percent-change::before {
    content: "(";
}

.module-stock-header_percent-change .module-stock-header_indicator {
    display: none;
}

.module-stock-header_percent-change::after {
    content: ")";
}

.module-stock-header_volume {
    display: none;
    margin-bottom: 32px;
    color: var(--evgLightColor);
    line-height: 1;
}

.module-stock-header_volume::before {
    content: "Volume ";
    font-weight: bold;
}

.module-stock-header_description3, .module-stock-header_date {
    display: inline;
    font-size: 12px;
    margin: 10px 0;
    color: var(--evgLightColor);
    line-height: 1;
}

.module-stock-header_volume-text {
    display: none;
    color: var(--evgLightColor);
    line-height: 1;
}

/* Stock header fixes end*/
.evergreen .evergreen-table-stock-change-up {
    color: var(--evgSuccessColor);
}

.evergreen .evergreen-table-stock-change-down {
    color: var(--evgErrorColor);
}

.evergreen .evergreen-stock-historical .evergreen-dropdown-wrapper {
    margin-right: 10px;
}

@media only screen and (max-width: 768px) {
    .evergreen .evergreen-stock-historical .evergreen-dropdown-wrapper {
        margin-right: 0;
        width: 100%;
    }

    .evergreen .evergreen-stock-historical .evergreen-dropdown-wrapper select {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        width: 100%;
    }
}

.evergreen .evergreen-stock-historical .module_options {
    margin-bottom: 30px;
}

.evergreen .evergreen-stock-historical .module_options-fieldset {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
}

.evergreen .evergreen-stock-historical .module_options-legend {
    margin-right: 10px;
    line-height: 1.55;
    float: left;
}

@media only screen and (max-width: 768px) {
    .evergreen .evergreen-stock-historical .module_options-fieldset {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .evergreen .evergreen-stock-historical .module_options-label, .evergreen .evergreen-stock-historical .module_options-legend, .evergreen .evergreen-stock-historical .module_options-submit {
        width: 100%;
        margin-bottom: 10px;
        margin-right: 0;
    }
}

@media only screen and (max-width: 768px) {
    .evergreen .module-stock.module-stock-historical .module-stock_empty {
        display: none;
    }
}

.evergreen .module-stock_lookup-title {
    display: none;
}

.evergreen .module-stock_up {
    color: var(--evgSuccessColor);
}

.evergreen .module-stock_down {
    color: var(--evgErrorColor);
}

.evergreen .module-stock_date {
    margin-top: 25px;
    text-align: right;
    font-style: italic;
    font-size: 1.4rem;
}

.evergreen .module-stock-historical {
    font-size: 1.4rem;
}

@media only screen and (max-width: 768px) {
    .evergreen .module-stock-historical .module_options-label, .evergreen .module-stock-historical .module_options-select, .evergreen .module-stock-historical .module_options-submit {
        display: block;
        width: 100%;
        margin-bottom: 10px;
        margin-right: 0;
    }
}

.evergreen .module-stock-historical .module_options-select {
    margin-right: 0;
}

.evergreen .module-stock-historical .module_options-legend {
    margin-right: 10px;
    line-height: 1.55;
    float: left;
}

@media only screen and (max-width: 768px) {
    .evergreen .module-stock-historical .module_options-legend {
        margin-bottom: 10px;
        margin-right: 0;
    }
}

.evergreen .module-stock-historical .module_options-fieldset {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
}

.evergreen .module-stock-historical .module_container--content {
    text-align: left;
}

.evergreen .module-stock .stock-historical-range .module_options > *:not(:last-of-type) {
    margin-bottom: 20px;
}

/* - MailingList Subscribe Module - */
.evergreen.module-subscribe table, .evergreen.module-subscribe tbody, .evergreen.module-subscribe tr, .evergreen.module-subscribe td {
    background: none;
    border: none;
    padding: 0;
}

.evergreen.module-subscribe input[type="email"] {
    width: 100%;
}

.evergreen.module-subscribe button[type="submit"] {
    padding: 0;
    margin: 0;
    border: none;
}

.evergreen.module-subscribe .module-subscribe_table {
    display: block;
    width: 100%;
    margin-bottom: 10px;
}

.evergreen.module-subscribe .module-subscribe_table tbody {
    width: 100%;
    display: block;
}

.evergreen.module-subscribe .module-subscribe_form {
    font-size: 0;
}

.evergreen.module-subscribe .module-subscribe_form tr {
    display: inline-block;
    width: 50%;
    margin-bottom: 20px;
    vertical-align: top;
}

.evergreen.module-subscribe .module-subscribe_form tr:nth-child(even) {
    padding-left: 10px;
}

.evergreen.module-subscribe .module-subscribe_form tr:nth-child(odd) {
    padding-right: 10px;
}

.evergreen.module-subscribe .module-subscribe_form tr.module-subscribe_notes-text {
    margin: 0;
}

.evergreen.module-subscribe .module-subscribe_form tr.module-subscribe_notes-text, .evergreen.module-subscribe .module-subscribe_form tr.module-subscribe_notes-input {
    display: block;
    width: 100%;
    padding: 0;
}

@media only screen and (max-width: 768px) {
    .evergreen.module-subscribe .module-subscribe_form tr {
        width: 100%;
    }

    .evergreen.module-subscribe .module-subscribe_form tr:nth-child(even) {
        padding-left: 0;
    }

    .evergreen.module-subscribe .module-subscribe_form tr:nth-child(odd) {
        padding-right: 0;
    }
}

.evergreen.module-subscribe .module-subscribe_form td {
    display: block;
}

.evergreen.module-subscribe .module-subscribe_form label {
    display: inline-block;
    margin-bottom: 5px;
}

.evergreen.module-subscribe .module-subscribe_mailing-list tr.module-subscribe_list-header td {
    padding-bottom: 15px;
}

.evergreen.module-subscribe .module-subscribe_mailing-list tr.module-subscribe_list-header td label {
    --fontFamily: var(--evgRadioCheckboxFontFamily);
    --fontSize: var(--evgRadioCheckboxFontSizeL);
    --fontSizeM: var(--evgRadioCheckboxFontSizeM);
    --fontSizeS: var(--evgRadioCheckboxFontSizeS);
    --fontColor: var(--evgRadioCheckboxFontColor);
    --fontWeight: var(--evgRadioCheckboxFontWeight);
    --lineHeight: var(--evgRadioCheckboxFontLineHeight);
    --capitalization: var(--evgRadioCheckboxFontCapitalization);
}

.evergreen.module-subscribe .module-subscribe_mailing-list tr table td {
    padding-bottom: 10px;
}

.evergreen.module-subscribe .module-subscribe_mailing-list tr table tr:last-child td {
    padding-bottom: 0;
}

.evergreen.module-subscribe .module-subscribe_unsubscribe {
    display: none;
}

.evergreen-pane--footer .evergreen.module-subscribe {
    --evgInputFontLineHeight: 2.1;
    --evgButtonPaddingVerticalPadding: 15px;
}

.evergreen-pane--footer .evergreen.module-subscribe .module-subscribe_form {
    padding-right: 195px;
}

.evergreen-pane--footer .evergreen.module-subscribe .module_introduction {
    display: none;
}

.evergreen-pane--footer .evergreen.module-subscribe .module-subscribe_list table tr {
    display: inline-block;
    vertical-align: top;
    width: 50%;
}

.evergreen-pane--footer .evergreen.module-subscribe .module-subscribe_mailing-list tr table td {
    padding-bottom: 0;
}

.evergreen-pane--footer .evergreen.module-subscribe .module-subscribe_email label {
    position: absolute !important;
    width: 1px solid !important;
    height: 1px solid !important;
    padding: 0 !important;
    margin: -1px solid !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    border: 0 !important;
}

.evergreen-pane--footer .evergreen.module-subscribe .module-subscribe_list-header, .evergreen-pane--footer .evergreen.module-subscribe .module-subscribe_email .module_required {
    display: none;
}

.evergreen-pane--footer .evergreen.module-subscribe .module_actions {
    margin: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    max-width: 165px;
    text-align: center;
}

.evergreen-pane--footer .evergreen.module-subscribe .module-subscribe_table-wrap {
    position: relative;
}

.evergreen-pane--footer .evergreen.module-subscribe .module-subscribe_form tr {
    width: 100%;
}

@media only screen and (max-width: 480px) {
    .evergreen-pane--footer .evergreen.module-subscribe .module_actions {
        position: relative;
    }

    .evergreen-pane--footer .evergreen.module-subscribe .module-subscribe_list table tr {
        width: auto;
        display: block;
    }

    .evergreen-pane--footer .evergreen.module-subscribe .module-subscribe_form {
        padding-right: 0;
    }
}

/* MailingList Unsubscribe Module */
.evergreen.module-unsubscribe table, .evergreen.module-unsubscribe tbody, .evergreen.module-unsubscribe tr, .evergreen.module-unsubscribe td {
    background: none;
    border: none;
    padding: 0;
}

.evergreen.module-unsubscribe input[type="email"] {
    width: 100%;
}

.evergreen.module-unsubscribe button[type="submit"] {
    padding: 0;
    margin: 0;
    border: none;
}

.evergreen.module-unsubscribe .module-unsubscribe_table {
    width: 50%;
}

@media only screen and (max-width: 768px) {
    .evergreen.module-unsubscribe .module-unsubscribe_table {
        width: 100%;
    }
}

.evergreen.module-unsubscribe .module-unsubscribe_table td {
    padding-right: 10px;
}

@media only screen and (max-width: 768px) {
    .evergreen.module-unsubscribe .module-unsubscribe_table td {
        padding-right: 0;
    }
}

.evergreen.module-unsubscribe .module-unsubscribe_table label {
    display: inline-block;
    margin-bottom: 5px;
}

/* ==================================
 ----- Evergreen Event Details Module -------
================================== */
.evergreen-event-details-item {
    margin-left: auto;
    margin-right: auto;
}

.evergreen-event-details-item.evergreen-container--padding {
    padding: 50px 20px 50px 20px;
}

.evergreen-event-details-item > .evergreen-event-headline {
    margin: 24px 0 16px 0;
}

.evergreen-event-details-item > .evergreen-event-date-time {
    margin-bottom: 15px;
}

.evergreen-event-details-item > .evergreen-event-location {
    margin-bottom: 10px;
}

.evergreen-event-details-item > .evergreen-event-attachments-container {
    margin: 0 15px 10px 0;
}

.evergreen-event-details-item > .evergreen-event-body {
    margin-bottom: 15px;
}

.evergreen-event-details-item .evergreen-event-attachments {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
}

.evergreen-event-details-item .evergreen-event-link-text {
    white-space: break-spaces;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
}

/* ==================================
 ----- Evergreen Event Module -------
================================== */
.evergreen-event-filter {
    margin-bottom: 30px;
}

.evergreen-event-item {
    margin-bottom: 10px;
}

.evergreen-event-attachments {
    display: -ms-grid;
    display: grid;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -ms-grid-columns: auto 15px auto;
    grid-template-columns: auto auto;
    row-gap: 10px;
    -webkit-column-gap: 15px;
    -moz-column-gap: 15px;
    column-gap: 15px;
    -ms-grid-row-align: center;
    align-self: center;
    margin-bottom: 10px;
}

.evergreen-event-attachment {
    text-decoration: none;
}

.evergreen-event-link, .evergreen-event-view-all-link {
    -webkit-transition-property: color, background-color;
    -o-transition-property: color, background-color;
    transition-property: color, background-color;
    -webkit-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-in-out;
    -o-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
}

.evergreen-event-attachment .evergreen-event-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    overflow-wrap: anywhere;
}

.evergreen-event-attachment .evergreen-event-link--text-with-icon .evergreen-event-link-text {
    -ms-flex-item-align: end;
    -ms-grid-row-align: end;
    align-self: end;
}

.evergreen-event-link--text-with-icon:hover, .evergreen-event-link--text-only:hover {
    text-decoration: underline;
    -webkit-text-decoration-line: underline;
    text-decoration-line: underline;
}

.evergreen-event-date-time {
    margin-bottom: 5px;
    overflow-wrap: anywhere;
}

.evergreen-event-headline, .evergreen-event-location {
    margin-bottom: 10px;
    overflow-wrap: anywhere;
}

.evergreen-event-view-all-wrapper {
    margin: 15px 0;
}

.evergreen-event-view-all-link:not(.button):not(.evergreen-button):after {
    font-family: "evergreen-icons" !important;
    speak: never;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    content: "\e90d";
    padding-left: 10px;
}

.evergreen-event-attachment .evergreen-event-link--button {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.evergreen-event-attachment .evergreen-event-link--button [class^="evergreen-module-icon"], .evergreen-event-attachment .evergreen-event-link--button [class*=" evergreen-module-icon"], .evergreen-event-attachment .evergreen-event-link--text-only [class^="evergreen-module-icon"], .evergreen-event-attachment .evergreen-event-link--text-only [class*=" evergreen-module-icon"], .evergreen-event-attachment .evergreen-event-link--icon-only [class*="-text"] {
    display: none;
}

.evergreen-event-attachments-position-bottom {
    width: 100%;
}

.evergreen-event-attachments-position-bottom .evergreen-event-attachments {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 10px 15px;
}

@media screen and (max-width: 480px) {
    .evergreen-event-attachments-position-bottom .evergreen-event-attachments {
        display: -ms-grid;
        display: grid;
    }

    .evergreen-event-attachments {
        -ms-grid-columns: auto;
        grid-template-columns: auto;
        margin-top: 16px;
        gap: 10px;
    }
}

@media screen and (min-width: 1025px) {
    .evergreen-event-attachments-position-right .evergreen-event-attachments {
        margin-left: auto;
    }

    .evergreen-event-attachments-position-right .evergreen-event-attachments .evergreen-event-attachment:only-child {
        -ms-grid-column-span: 2;
        grid-column: span 2;
    }
}

.evergreen-event-add-to-calendar-list > ul {
    padding: 0 30px;
}

.evergreen-event-add-to-calendar-item {
    display: inline-block;
    margin: 0 10px;
}

.evergreen-event-add-to-calendar-item--ics {
    display: none;
}

.evergreen-event-add-to-calendar-link {
    font-size: 24px;
}

.evergreen-event-add-to-calendar.js--hidden {
    display: none;
}

.evergreen-event-add-to-calendar-list {
    text-align: center;
    padding: 50px 50px;
}

/* ==================================
 ----- Evergreen FAQ Module -------
================================== */
.evergreen-faq .toggle-all {
    margin-bottom: 30px;
}

.evergreen-faq .evergreen-accordion .evergreen-faq-question {
    margin: 0;
}

/* ====================================================
 ----- Evergreen Financial Accordion Module -------
==================================================== */
.evergreen-financial-accordion-container .evergreen-year-options {
    margin-bottom: 30px;
}

.evergreen-financial-accordion-links-container-inner {
    display: -ms-grid;
    display: grid;
    gap: 10px 25px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
}

.evergreen-financial-accordion-links-container--vertical {
    -ms-grid-columns: auto;
    grid-template-columns: auto;
}

.evergreen-financial-accordion-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.evergreen-financial-accordion-links-container--horizontal .evergreen-financial-accordion-link:not(.evergreen-link--icon-only) {
    width: 100%;
}

.evergreen-financial-accordion-links-container--horizontal .evergreen-financial-accordion-link-text {
    white-space: normal;
}

@media (max-width: 480px) {
    .evergreen-financial-accordion-links-container--horizontal {
        -ms-grid-columns: auto;
        grid-template-columns: auto;
    }
}

@media (min-width: 481px) and (max-width: 1024px) {
    .evergreen-financial-accordion-links-container--horizontal {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
  }
  
  @media (min-width: 1025px) {
    .evergreen-financial-accordion-links-container--horizontal {
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
    }
  }

.evergreen-financial-accordion-links-container--empty {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -ms-flex-line-pack: center;
    align-content: center;
}

.evergreen-financial-accordion-links-container--empty .evergreen-financial-accordion-empty-warning {
    text-align: center;
}

.evergreen-financial-gallery-no-items {
    text-align: center;
}

.evergreen-financial-gallery-item-image-container {
    width: 100%;
    height: 300px;
}

.evergreen-financial-gallery-item-image-container--no-image {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 2px solid;
}

.evergreen-financial-gallery-item-image-container--no-image.evergreen-icon-placeholder::before {
    font-size: 72px;
}

.evergreen-financial-gallery-item-image-container img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.evergreen-financial-gallery-item-links-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-top: 20px;
}

.evergreen-financial-gallery-item-links-container a.evergreen-financial-gallery-link {
    margin-bottom: 5px;
}

.evergreen-financial-gallery-view-more {
    margin-top: 30px;
}

.evergreen-financial-gallery-view-more--left {
    text-align: left;
}

.evergreen-financial-gallery-view-more--right {
    text-align: right;
}

.evergreen-financial-gallery-view-more--center {
    text-align: center;
}

.evergreen-financial-gallery .evergreen-container.evergreen-container-content {
    min-width: 230px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 25px 1fr 25px 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    -webkit-column-gap: 25px;
    -moz-column-gap: 25px;
    column-gap: 25px;
    row-gap: 30px;
}

@media screen and (max-width: 480px) {
    .evergreen-financial-gallery .evergreen-container.evergreen-container-content {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }
}

.evergreen-financial-table .evergreen-container--inner {
    overflow: hidden;
}

.evergreen-financial-table .evergreen-financial-table-container {
    position: relative;
}

.evergreen-financial-table table {
    display: table;
    width: 100%;
    table-layout: fixed;
}

.evergreen-financial-table .evergreen-financial-table-header {
    position: relative;
}

.evergreen-financial-table .evergreen-financial-table-header-row > td, .evergreen-financial-table .evergreen-financial-table-body-row > th {
    position: relative;
    z-index: 2;
    background: inherit;
}

.evergreen-financial-table .evergreen-financial-table-header-year {
    padding: 20px 15px;
    -webkit-transition: opacity 600ms ease-in, visibility 600ms ease-in, -webkit-transform 500ms ease;
    transition: opacity 600ms ease-in, visibility 600ms ease-in, -webkit-transform 500ms ease;
    -o-transition: transform 500ms ease, opacity 600ms ease-in, visibility 600ms ease-in;
    transition: transform 500ms ease, opacity 600ms ease-in, visibility 600ms ease-in;
    transition: transform 500ms ease, opacity 600ms ease-in, visibility 600ms ease-in, -webkit-transform 500ms ease;
    visibility: visible;
    opacity: 1;
    text-align: center;
}

.evergreen-financial-table .evergreen-financial-table-header-year--hidden {
    opacity: 0;
    visibility: hidden;
}

.evergreen-financial-table th.evergreen-financial-table-category {
    text-align: left;
}

.evergreen-financial-table .evergreen-financial-table-document {
    padding: 20px 37px;
    -webkit-transition: opacity 600ms ease-in, visibility 600ms ease-in, -webkit-transform 500ms ease;
    transition: opacity 600ms ease-in, visibility 600ms ease-in, -webkit-transform 500ms ease;
    -o-transition: transform 500ms ease, opacity 600ms ease-in, visibility 600ms ease-in;
    transition: transform 500ms ease, opacity 600ms ease-in, visibility 600ms ease-in;
    transition: transform 500ms ease, opacity 600ms ease-in, visibility 600ms ease-in, -webkit-transform 500ms ease;
    visibility: visible;
    opacity: 1;
}

.evergreen-financial-table .evergreen-financial-table-document > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
}

.evergreen-financial-table .evergreen-financial-table-document--hidden {
    opacity: 0;
    visibility: hidden;
}

.evergreen-financial-table .evergreen-financial-table-document-link {
    margin: 0 5px;
    padding-bottom: 10px;
}

.evergreen-financial-table .evergreen-financial-table-document-link--disabled {
    cursor: no-drop;
    opacity: 0.3;
    pointer-events: none;
}

@media screen and (max-width: 480px) {
    .evergreen-financial-table .evergreen-financial-table-document-span {
        /*width: 50%;*/
        text-align: center;
    }
}

.evergreen-financial-table .evergreen-financial-table-arrow {
    background: none;
    border: none;
    position: absolute;
    z-index: 3;
    top: 20px;
}

.evergreen-financial-table .evergreen-financial-table-arrow--disabled {
    opacity: 0.3;
    pointer-events: none;
}

.evergreen-financial-table .evergreen-financial-table-no-items {
    text-align: center;
}

/* ==================================
----- Evergreen News Module -------
================================== */
.evergreen-news-filter {
    margin-bottom: 30px;
}

.evergreen-news-filter.evergreen-news-filter--dropdowns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 15px;
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px;
}

.evergreen-container--news .evergreen-header {
    position: relative;
}

.evergreen-container--news .evergreen-tabs {
    margin-bottom: 24px;
}

.evergreen-container--news .evergreen-year-options {
    margin-right: 30px;
}

.evergreen-container--news .evergreen-year-options, .evergreen-container--news .evergreen-tag-options {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 4px;
}

.evergreen-news-item:not(.evergreen-item--card) {
    margin-bottom: 10px;
}

.evergreen-news-date {
    margin-bottom: 5px;
    overflow-wrap: anywhere;
}

.evergreen-news-headline {
    margin-bottom: 10px;
    overflow-wrap: anywhere;
}

.evergreen-news-headline-link {
    display: block;
    margin-bottom: 5px;
}

.evergreen-news-attachments {
    display: -ms-grid;
    display: grid;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -ms-grid-columns: auto 15px auto;
    grid-template-columns: auto auto;
    row-gap: 10px;
    -webkit-column-gap: 15px;
    -moz-column-gap: 15px;
    column-gap: 15px;
    -ms-grid-row-align: center;
    align-self: center;
    margin-bottom: 10px;
}

.evergreen-news-attachment {
    text-decoration: none;
}

.evergreen-news-link, .evergreen-news-view-all-link {
    -webkit-transition-property: color, background-color;
    -o-transition-property: color, background-color;
    transition-property: color, background-color;
    -webkit-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-in-out;
    -o-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
}

.evergreen-news-attachment .evergreen-news-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    overflow-wrap: anywhere;
}

/* Prevent global.css and client.css from adding background image on news details links */
.evergreen-news-attachment .evergreen-news-link:before {
    content: "";
    background-image: none;
}

.evergreen-news-attachment .evergreen-news-link--text-with-icon .evergreen-news-link-text {
    -ms-flex-item-align: end;
    -ms-grid-row-align: end;
    align-self: end;
}

.evergreen-news-link--text-with-icon:hover, .evergreen-news-link--text-only:hover {
    text-decoration: underline;
    -webkit-text-decoration-line: underline;
    text-decoration-line: underline;
}

.evergreen-news-view-all-wrapper {
    margin: 15px 0;
}

.evergreen-news-view-all-link:not(.button):not(.evergreen-button):after {
    font-family: "evergreen-icons" !important;
    speak: never;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    content: "\e90d";
    padding-left: 10px;
}

.evergreen-news-attachment .evergreen-news-link--button {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.evergreen-news-attachment .evergreen-news-link--button [class^="evergreen-module-icon"], .evergreen-news-attachment .evergreen-news-link--button [class*=" evergreen-module-icon"], .evergreen-news-attachment .evergreen-news-link--text-only [class^="evergreen-module-icon"], .evergreen-news-attachment .evergreen-news-link--text-only [class*=" evergreen-module-icon"], .evergreen-news-attachment .evergreen-news-link--icon-only [class*="-text"] {
    display: none;
}

.evergreen-news-attachments-position-none, .evergreen-news-card-attachments-position-none {
    display: none;
}

.evergreen-news-attachments-position-bottom {
    width: 100%;
}

.evergreen-news-attachments-position-bottom .evergreen-news-attachments {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 10px 15px;
}

.evergreen-news-view-all-left, .evergreen-news-item-data-left > div:first-child {
    text-align: left;
}

.evergreen-news-view-all-center, .evergreen-news-item-data-center > div:first-child {
    text-align: center;
}

.evergreen-news-view-all-right, .evergreen-news-item-data-right > div:first-child {
    text-align: right;
}

.evergreen-news-item-data-center .evergreen-news-attachments:not(.evergreen-news-card-attachments-position-none), .evergreen-news-item-data-right .evergreen-news-attachments:not(.evergreen-news-card-attachments-position-none) {
    display: block;
    width: auto;
}

.evergreen-news-item-data-center .evergreen-news-attachments .evergreen-news-attachment {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.evergreen-news-item-data-right .evergreen-news-attachments .evergreen-news-attachment {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.evergreen-news-item-data-center .evergreen-news-read-more-container {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.evergreen-news-item-data-right .evergreen-news-attachments .evergreen-news-link:not(.evergreen-button), .evergreen-news-item-data-right .evergreen-news-read-more-container {
    -webkit-box-pack: right;
    -ms-flex-pack: right;
    justify-content: right;
}

/* News -- Card Layout */
.evergreen-news {
    --gridCardTemplate: repeat(auto-fit, minmax(max(100px, (100% - 20px * (3))/4), 1fr));
}

.evergreen-news-content.evergreen-news-content-card.evergreen-grid {
    padding: 0;
    -ms-grid-columns: var(--gridCardTemplate);
    grid-template-columns: var(--gridCardTemplate);
}

.evergreen-news-content-card .evergreen-item--card.evergreen-item--has-padding, .evergreen-news-content-card .evergreen-item--card.evergreen-item--padding {
    padding: 20px;
}

.evergreen-news-content-card .evergreen-item--card.evergreen-item--no-padding {
    padding: 0;
}

.evergreen-news-content-card .evergreen-news-item-wrap {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.evergreen-news-content-card .evergreen-news-read-more-container {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    margin-bottom: 10px;
}

@media screen and (max-width: 480px) {
    .evergreen-news {
        --gridCardTemplate: auto;
    }

    .evergreen-news-attachments {
        -ms-grid-columns: auto;
        grid-template-columns: auto;
        margin-top: 16px;
        gap: 10px;
    }
}

@media screen and (min-width: 481px) and (max-width: 1024px) {
    .evergreen-news {
        --gridCardTemplate: auto auto;
    }
}

@media screen and (min-width: 1025px) {
    .evergreen-news-attachments-position-right .evergreen-news-attachments {
        margin-left: auto;
    }

    .evergreen-news-attachments-position-right .evergreen-news-attachments .evergreen-news-attachment:only-child {
        -ms-grid-column-span: 2;
        grid-column: span 2;
    }
}

/* ==================================
----- Evergreen News Details Module -------
================================== */
.evergreen-news-details-item {
    margin-left: auto;
    margin-right: auto;
}

.evergreen-news-details-item.evergreen-container--padding {
    padding: 50px 20px 50px 20px;
}

.evergreen-news-details-item > .evergreen-news-view-all-wrapper {
    margin: 0 10px 10px 0;
}

.evergreen-news-details-item > .evergreen-news-headline {
    margin: 24px 0 16px 0;
}

.evergreen-news-details-item > .evergreen-news-date-time {
    margin-bottom: 14px;
}

.evergreen-news-details-item > .evergreen-news-attachments-container {
    margin-bottom: 20px;
}

.evergreen-news-details-item > .evergreen-news-body {
    margin: 16px 0 16px;
}

.evergreen-news-details-item > .evergreen-news-multimedia-container > .evergreen-news-multimedia-title {
    margin: 16px 0 16px;
}

.evergreen-news-details-item > .evergreen-news-multimedia-item {
    padding-right: 20px;
}

.evergreen-news-details-item > .evergreen-news-multimedia-image {
    padding: 5px 10px 5px 0px;
}

.evergreen-news-details-item .evergreen-news-multimedia-sizes-title {
    margin-top: 16px;
}

.evergreen-news-details-item .evergreen-news-multimedia-size {
    margin-top: 10px;
}

.evergreen-news-details-item > .evergreen-news-view-all-wrapper-bottom {
    margin: 10px 10px 0 0;
}

.evergreen-news-details-item .evergreen-news-attachments {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
}

.evergreen-news-details-item .evergreen-news-link-text {
    white-space: break-spaces;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
}

.evergreen-news-details-item .evergreen-news-attachments-container.evergreen-data-left .evergreen-news-attachments {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.evergreen-news-details-item .evergreen-news-attachments-container.evergreen-data-right .evergreen-news-attachments {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.evergreen-news-details-item .evergreen-news-attachments-container.evergreen-data-center .evergreen-news-attachments {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media screen and (max-width: 768px) {
    .evergreen-news-details-item > .evergreen-news-body table {
        max-width: 100%;
        overflow-x: auto;
        display: block;
    }
}

.evergreen-news-content .evergreen-loader:not(.evergreen-loader--text) {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.evergreen-news-filter {
    margin-bottom: 30px;
}

.evergreen-news-filter.evergreen-news-filter--dropdowns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 15px;
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px;
}

.evergreen-container--news .evergreen-header {
    position: relative;
}

.evergreen-container--news .evergreen-tabs {
    margin-bottom: 24px;
}

/* ==================================
 ----- Evergreen PDF Viewer Module -------
================================== */
.evergreen-pdfviewer-container.evergreen-grid {
    -webkit-column-gap: 0;
    -moz-column-gap: 0;
    column-gap: 0;
    padding: 0;
}

.evergreen-pdfviewer-container .evergreen-pdfviewer-info .evergreen-item-date-time {
    margin-bottom: 5px;
}

.evergreen-pdfviewer-container .evergreen-pdfviewer-info .evergreen-item-title-container {
    margin-bottom: 15px;
}

.evergreen-pdfviewer-container .evergreen-pdfviewer-info .evergreen-pdfviewer-link-container {
    margin-bottom: 10px;
    margin-right: 15px;
}

/* Info Bottom */
.evergreen-pdfviewer-container--info-bottom .evergreen-pdfviewer-viewer {
    -ms-grid-row: 1;
    grid-row-start: 1;
}

.evergreen-pdfviewer-container--info-bottom .evergreen-pdfviewer-info {
    -ms-grid-row: 2;
    grid-row-start: 2;
}

/* Info Top */
.evergreen-pdfviewer-container--info-top .evergreen-pdfviewer-viewer {
    -ms-grid-row: 2;
    grid-row-start: 2;
}

.evergreen-pdfviewer-container--info-top .evergreen-pdfviewer-info {
    -ms-grid-row: 1;
    grid-row-start: 1;
}

/* Info Left */
.evergreen-pdfviewer-container--info-left .evergreen-pdfviewer-viewer {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
}

.evergreen-pdfviewer-container--info-left .evergreen-pdfviewer-info {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
}

.evergreen-pdfviewer-container--info-left .evergreen-pdfviewer-info {
    padding-right: 20px;
}

.evergreen-pdfviewer-container--info-right .evergreen-pdfviewer-info {
    padding-left: 20px;
}

.evergreen-pdfviewer-container--info-top > [class*="evergreen-pdfviewer-"], .evergreen-pdfviewer-container--info-bottom > [class*="evergreen-pdfviewer-"] {
    grid-column-start: span 24;
}

.evergreen-pdfviewer-container--info-left .evergreen-pdfviewer-viewer, .evergreen-pdfviewer-container--info-right .evergreen-pdfviewer-viewer {
    grid-column-start: span 13;
}

.evergreen-pdfviewer-container--info-left .evergreen-pdfviewer-info, .evergreen-pdfviewer-container--info-right .evergreen-pdfviewer-info {
    grid-column-start: span 11;
}

.evergreen-pdfviewer-container--info-left .evergreen-pdfviewer-info, .evergreen-pdfviewer-container--info-right .evergreen-pdfviewer-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.evergreen-pdfviewer-container--info-left .evergreen-pdfviewer-info .evergreen-pdfviewer-view-all-wrapper, .evergreen-pdfviewer-container--info-right .evergreen-pdfviewer-info .evergreen-pdfviewer-view-all-wrapper {
    margin-top: auto;
}

/* ==================================
 ----- Evergreen Person Module -------
================================== */
/* Accordion Layout */
.evergreen-person .toggle-all {
    margin-bottom: 30px;
}

.evergreen-person .evergreen-accordion .evergreen-container-padding {
    padding: 0 20px;
}

.evergreen-person .evergreen-accordion .evergreen-person-header-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.evergreen-person .evergreen-accordion .evergreen-person-header-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.evergreen-person .evergreen-accordion .evergreen-person-header-right span:first-child {
    margin-right: 10px;
}

.evergreen-person .evergreen-accordion .evergreen-person-description {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.evergreen-person .evergreen-accordion .evergreen-person-description .evergreen-person-image-circle, .evergreen-person .evergreen-accordion .evergreen-person-description .evergreen-person-image-original {
    text-align: center;
    width: 100%;
    -webkit-box-flex: 25%;
    -ms-flex: 25%;
    flex: 25%;
}

.evergreen-person .evergreen-accordion .evergreen-person-description .evergreen-person-image-circle img, .evergreen-person .evergreen-accordion .evergreen-person-description .evergreen-person-image-original img {
    width: 100%;
}

.evergreen-person .evergreen-accordion .evergreen-person-description .evergreen-person-bio {
    -webkit-box-flex: 75%;
    -ms-flex: 75%;
    flex: 75%;
    margin-left: 25px;
}

.evergreen-person .evergreen-accordion .evergreen-accordion-content-text {
    padding: 4px;
    margin-bottom: 0;
}

.evergreen-person .evergreen-accordion .evergreen-accordion-content {
    padding: 15px;
    margin-bottom: 15px;
}

.evergreen-person .evergreen-accordion:last-child .evergreen-accordion-content {
    margin-bottom: 0;
}

@media screen and (max-width: 768px) {
    .evergreen-person .evergreen-accordion .evergreen-person-description {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .evergreen-person .evergreen-accordion .evergreen-person-description .evergreen-person-image-circle, .evergreen-person .evergreen-accordion .evergreen-person-description .evergreen-person-image-original {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        margin-right: 0;
        margin-bottom: 25px;
        width: auto;
    }

    .evergreen-person .evergreen-accordion .evergreen-person-description .evergreen-person-bio {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        margin-left: 0;
    }
}

/* Carousel Layout */
/* Carousel -- Slider */
.evergreen-person .evergreen-carousel-arrow {
    font-size: 13px;
    padding: 15px;
    position: absolute;
    top: calc(50% - 6.5px);
    border-width: 1px solid;
    border-style: solid;
    border-radius: 100%;
    background-color: transparent;
}

.evergreen-person .evergreen-carousel-arrow-right {
    right: 0;
}

.evergreen-person .evergreen-carousel-items {
    margin-bottom: 30px;
    position: relative;
    padding: 0;
}

.evergreen-person .evergreen-carousel-items .slick-list {
    padding: 50px 0px 30px 0px;
    margin: 0 60px 0 60px;
    overflow: hidden;
    width: auto;
}

.evergreen-person .evergreen-carousel-slider-item-container {
    padding: 2px;
}

.evergreen-person .evergreen-carousel-person-slider-item {
    display: inline-block;
    outline-color: grey;
    margin: 0 4px;
}

.evergreen-person .evergreen-carousel-person-slider-item button {
    width: 100%;
    padding: 0;
    display: inline-block;
    background: transparent;
    border: transparent;
    text-align: center;
    cursor: pointer;
}

.evergreen-person .evergreen-carousel-person-slider-item .evergreen-person-image-circle img, .evergreen-person .evergreen-carousel-person-slider-item .evergreen-person-image-original img {
    display: inline-block;
    vertical-align: top;
    margin: 0 auto;
    padding: 5px;
    height: 275px;
    -o-object-fit: cover;
    object-fit: cover;
}

.evergreen-person .evergreen-carousel-slider-item-text {
    overflow-wrap: anywhere;
}

.evergreen-person .evergreen-carousel-person-slider-item .evergreen-person-name {
    margin-bottom: 5px;
}

.evergreen-person .evergreen-carousel-person-slider-item div.evergreen-person-name:nth-child(2) {
    margin-top: 24px;
}

.evergreen-person .evergreen-carousel-person-slider-item .evergreen-person-title {
    margin-bottom: 16px;
}

/* Carousel -- Display */
.evergreen-person .evergreen-carousel-person-display-item {
    outline: none;
    display: inline-block;
}

@media screen and (max-width: 768px) {
    .evergreen-person .evergreen-carousel-person-display-item > .evergreen-grid {
        display: block;
    }

    .evergreen-person .evergreen-carousel-person-display-item .evergreen-carousel-display-item-image {
        margin-bottom: 24px;
    }
}

.evergreen-person .evergreen-carousel-person-display-item .evergreen-carousel-display-item-image {
    text-align: center;
}

.evergreen-person .evergreen-carousel-person-display-item .evergreen-carousel-display-item-image img {
    margin: 0 auto;
    height: 360px;
    -o-object-fit: cover;
    object-fit: cover;
}

.evergreen-person .evergreen-carousel-person-display-item .evergreen-person-description:only-child {
    padding-left: 0;
}

.evergreen-person .evergreen-carousel-person-display-item .evergreen-person-description:only-child {
    width: 100%;
}

.evergreen-person .evergreen-carousel-person-display-item .evergreen-person-bio {
    margin-top: 16px;
}

.evergreen-person .evergreen-carousel-person-display-item .evergreen-person-bio p {
    text-align: left;
    margin: 0;
}

.evergreen-person .evergreen-carousel-person-display-item .evergreen-person-bio p:empty {
    display: none;
    margin: 0;
    padding: 0;
}

.evergreen-person .evergreen-carousel-person-display-item .evergreen-person-bio p:not(:empty) + p:not(:empty) {
    margin-top: 1em;
}

/* Carousel -- ImageStyling */
.evergreen-person .evergreen-accordion-content .evergreen-person-image-circle img, .evergreen-person .evergreen-carousel-person-slider-item .evergreen-person-image-circle img, .evergreen-person .evergreen-carousel-person-display-item .evergreen-person-image-circle img {
    border-radius: 100%;
}

.evergreen-person .evergreen-carousel-person-display-item .evergreen-carousel-display-item-image img {
    margin: 0 auto;
}

/* ==================================
 --- Evergreen Presentation Module --
================================== */
.evergreen-presentation-filter {
    margin-bottom: 30px;
}

.evergreen-presentation-item {
    margin-bottom: 10px;
}

.evergreen-presentation-attachment {
    margin-bottom: 10px;
    text-decoration: none;
}

.evergreen-presentation-link--text-with-icon {
    line-height: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.evergreen-presentation-link--icon-only .evergreen-presentation-link-text {
    position: absolute !important;
    width: 1px solid !important;
    height: 1px solid !important;
    padding: 0 !important;
    margin: -1px solid !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    border: 0 !important;
}

.evergreen-presentation-date-time {
    margin-bottom: 5px;
}

.evergreen-presentation-headline {
    margin-bottom: 10px;
}

.evergreen-presentation-view-all-wrapper {
    margin: 15px 0;
}

.evergreen-presentation-view-all-link:not(.button):not(.evergreen-button):after {
    font-family: "evergreen-icons" !important;
    speak: never;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    content: "\e90d";
    padding-left: 10px;
}

.evergreen-presentation-attachment .evergreen-presentation-link--button {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.evergreen-presentation-attachment .evergreen-module-icon:before {
    min-width: unset;
}

.evergreen-presentation-attachment .evergreen-presentation-link--button .evergreen-module-icon, .evergreen-presentation-attachment .evergreen-presentation-link--text-only .evergreen-module-icon {
    display: none;
}

.evergreen-presentation-item-wrap-position-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.evergreen-presentation-item-wrap-position-right .evergreen-presentation-item-header {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding-right: 12px;
}

.evergreen-presentation-item-wrap-position-right .evergreen-presentation-attachment {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

@media screen and (max-width: 480px) {
    .evergreen-presentation-item-wrap-position-right {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
}

/* ==============================================
----- Evergreen Primary Navigation Module -------
================================================= */
/* Container */
.evergreen-primary-navigation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.evergreen-primary-navigation .evergreen-primary-navigation-data {
    display: none;
}

/* ==============================================
---------------- DESKTOP STYLING ----------------
================================================= */
/*--- Container ----*/
.evergreen-primary-navigation .evergreen-primary-navigation-desktop-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.evergreen-primary-navigation .evergreen-primary-navigation-desktop-container ul[class*="--topMenu"] {
    -webkit-box-pack: left;
    -ms-flex-pack: left;
    justify-content: left;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.evergreen-primary-navigation .evergreen-primary-navigation-desktop-container ul.level0 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-column-gap: 16px;
    -moz-column-gap: 16px;
    column-gap: 16px;
    row-gap: 8px;
    padding-left: 0;
}

.evergreen-primary-navigation .evergreen-primary-navigation-desktop-container ul[class*="level"] {
    padding-left: 0;
}

/* List Items */
.evergreen-primary-navigation .evergreen-primary-navigation-desktop-container ul li {
    position: relative;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    list-style: none;
    display: inline-block;
}

.evergreen-primary-navigation .evergreen-primary-navigation-desktop-container ul li > button, .evergreen-primary-navigation .evergreen-primary-navigation-desktop-container ul li > a {
    background: none;
    border: none;
    padding: 8px 0;
    min-width: -webkit-fit-content;
    min-width: -moz-fit-content;
    min-width: fit-content;
    line-height: 1;
    font-size: 14px;
    display: block;
    text-transform: none;
    text-align: inherit;
    cursor: pointer;
}

/* Sub List Items */
.evergreen-primary-navigation .evergreen-primary-navigation-desktop-container ul[class*="list--innerMenu"] {
    background: white;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 8px;
    -webkit-box-shadow: 1px solid 2px 4px 0px rgba(0, 0, 0, 0.25);
    box-shadow: 1px solid 2px 4px 0px rgba(0, 0, 0, 0.25);
    row-gap: 8px;
    max-width: 200px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
}

.evergreen-primary-navigation .evergreen-primary-navigation-desktop-container ul[class*="list--innerMenu"] li {
    padding: 0 8px;
}

.evergreen-primary-navigation .evergreen-primary-navigation-desktop-container ul[class*="list--innerMenu"] li > button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.evergreen-primary-navigation .evergreen-primary-navigation-desktop-container ul li[class*="innerMenu--menuItem"] {
    display: block;
}

/* Selected Item */
.evergreen-primary-navigation .evergreen-primary-navigation-desktop-container ul li.selected, .evergreen-primary-navigation .evergreen-primary-navigation-desktop-container ul li.expanded {
    border-bottom-width: 1px solid;
    border-bottom-color: #000;
    border-bottom-style: solid;
}

/* Search */
.evergreen-primary-navigation .evergreen-primary-navigation-desktop-container > div {
    margin-left: 16px;
    background: none;
    border: none;
}

.evergreen-primary-navigation .evergreen-primary-navigation-desktop-container > div > button {
    display: block;
    background: none;
    border: none;
    min-width: -webkit-fit-content;
    min-width: -moz-fit-content;
    min-width: fit-content;
    line-height: 1;
    font-size: 14px;
    padding: 0;
}

.evergreen-primary-navigation .evergreen-primary-navigation-desktop-container > div > button > span {
    padding: 8px 0 8px 10px;
}

.evergreen-primary-navigation .evergreen-primary-navigation-desktop-container .evergreen-navigation-search {
    position: relative;
}

.evergreen-primary-navigation .evergreen-primary-navigation-desktop-container .evergreen-navigation-search .evergreen-navigation-search--btn {
    cursor: pointer;
    float: right;
}

.evergreen-primary-navigation .evergreen-primary-navigation-desktop-container .evergreen-navigation-search input {
    border: none;
    margin-top: 12px;
}

/* Tooltip */
.evergreen-primary-navigation .evergreen-primary-navigation-desktop-container .tooltip {
    position: absolute;
    white-space: nowrap;
    background: none;
    bottom: 100%;
    font-size: 12px;
    margin-left: -5px;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

.evergreen-primary-navigation .evergreen-primary-navigation-desktop-container .evergreen-navigation-search--input.opened + .tooltip {
    right: 0;
}

.evergreen-primary-navigation .tooltip[aria-hidden="true"] {
    display: none;
}

/* ==============================================
---------------- MOBILE STYLING ----------------
================================================= */
/* Container */
body.evergreen-primary-navigation--mobile-active {
    overflow: hidden;
}

.evergreen-primary-navigation .evergreen-navigation-mobile {
    -webkit-transition: -webkit-transform 0.5s ease-in-out 0s;
    transition: -webkit-transform 0.5s ease-in-out 0s;
    -o-transition: transform 0.5s ease-in-out 0s;
    transition: transform 0.5s ease-in-out 0s;
    transition: transform 0.5s ease-in-out 0s, -webkit-transform 0.5s ease-in-out 0s;
    position: fixed;
    top: 0;
    background-color: #fff;
    overflow-y: auto;
    z-index: 9998;
    height: 100%;
    -webkit-box-shadow: rgba(0, 0, 0, 0.2) 0 8px 24px;
    box-shadow: rgba(0, 0, 0, 0.2) 0 8px 24px;
    max-width: 380px;
    width: 75%;
    padding: 20px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    overflow-x: hidden;
}

.evergreen-primary-navigation .evergreen-navigation-mobile.right {
    right: 0;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
}

.evergreen-primary-navigation .evergreen-navigation-mobile--open .evergreen-navigation-mobile.right {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}

.evergreen-primary-navigation .evergreen-primary-navigation-mobile-container::before {
    content: "";
    display: block;
    position: fixed;
    width: 100%;
    opacity: 0;
    z-index: 9997;
    top: 0;
    bottom: 0;
    left: 0;
    background: -webkit-gradient(linear, left top, left bottom, from(#000), to(#434343));
    background: -o-linear-gradient(top, #000, #434343);
    background: linear-gradient(180deg, #000, #434343);
    visibility: hidden;
    -webkit-transition: 0.4s cubic-bezier(0.22, 0.61, 0.36, 1) 0.1s;
    -o-transition: 0.4s cubic-bezier(0.22, 0.61, 0.36, 1) 0.1s;
    transition: 0.4s cubic-bezier(0.22, 0.61, 0.36, 1) 0.1s;
}

/* Toggle Button */
.evergreen-primary-navigation .evergreen-primary-navigation-mobile-toggle {
    background: none;
    border: none;
    color: #000;
    cursor: pointer;
    font-size: 35px;
    -ms-flex-item-align: end;
    -ms-grid-row-align: end;
    align-self: end;
}

.evergreen-primary-navigation .evergreen-navigation-mobile--inner_toggle_container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.evergreen-primary-navigation .evergreen-navigation-mobile--inner_toggle_container span {
    font-size: 25px;
}

/* Search */
.evergreen-primary-navigation .evergreen-navigation-mobile_search-container {
    margin: 24px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.evergreen-primary-navigation .evergreen-navigation-mobile_search-container input {
    -webkit-box-shadow: 0 0 0 30px #06607f inset;
    box-shadow: 0 0 0 30px #06607f inset;
    padding: 10px 80px 10px 10px;
    width: 100%;
    border: none;
}

.evergreen-primary-navigation .evergreen-navigation-mobile_search-container button {
    position: absolute;
    right: 0;
    background: none;
    border: none;
    font-size: 15px;
    margin-right: 35px;
}

/* Link Styling */
.evergreen-primary-navigation .evergreen-navigation-mobile ul {
    padding: 0 35px 0 10px;
}

.evergreen-primary-navigation .evergreen-navigation-mobile ul li {
    list-style-type: none;
    padding: 10px 0;
}

.evergreen-primary-navigation .evergreen-navigation-mobile ul li > button, .evergreen-primary-navigation .evergreen-navigation-mobile ul li > a {
    background: none;
    border: none;
    padding: 8px 0;
    min-width: -webkit-fit-content;
    min-width: -moz-fit-content;
    min-width: fit-content;
    line-height: 1;
    font-size: 14px;
    display: block;
    text-transform: none;
    text-align: inherit;
    cursor: pointer;
}

.evergreen-primary-navigation .evergreen-navigation-mobile ul li > button {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.evergreen-primary-navigation .evergreen-navigation-mobile ul li > button > span:first-child {
    text-align: left;
}

.evergreen-primary-navigation .evergreen-navigation-mobile ul li > button > span:last-child {
    margin-left: auto;
}

/* Sub List Items */
.evergreen-primary-navigation .evergreen-navigation-mobile ul[class*="panel--innerMenu"] {
    position: absolute;
    height: 100%;
    left: 0px;
    top: 0px;
    right: 0px;
    -webkit-transition: -webkit-transform 0.5s ease-in-out 0s;
    transition: -webkit-transform 0.5s ease-in-out 0s;
    -o-transition: transform 0.5s ease-in-out 0s;
    transition: transform 0.5s ease-in-out 0s;
    transition: transform 0.5s ease-in-out 0s, -webkit-transform 0.5s ease-in-out 0s;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    background-color: #fff;
    padding: 20px;
}

.evergreen-primary-navigation .evergreen-navigation-mobile ul[class*="panel--innerMenu"] > li.panel-control {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.evergreen-primary-navigation .evergreen-navigation-mobile ul[class*="panel--innerMenu"] > li.panel-control > button {
    color: black;
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.evergreen-primary-navigation .evergreen-navigation-mobile ul[class*="panel--innerMenu"] > li.panel-control > button .evergreen-navigation-button-text, .evergreen-primary-navigation .evergreen-navigation-mobile ul[class*="panel--innerMenu"] > li.panel-control > button .evergreen-navigation-button-icon {
    font-size: 16px;
    text-decoration: none;
    vertical-align: middle;
}

/* Media Queries */
@media (max-width: 768px) {
    .evergreen-primary-navigation .evergreen-navigation-mobile {
        max-width: 360px;
    }
}

@media (max-width: 1024px) {
    .evergreen-primary-navigation .evergreen-primary-navigation-desktop-container {
        display: none;
    }

    .evergreen-primary-navigation .evergreen-primary-navigation-mobile-container.evergreen-navigation-mobile--open::before {
        opacity: 0.9;
        visibility: visible;
    }
}

@media (min-width: 1025px) {
    .evergreen-primary-navigation > button, .evergreen-primary-navigation .evergreen-container .evergreen-navigation-mobile {
        display: none;
    }
}

/* ==================================
 ----- Evergreen Quick Link Module -------
================================== */
.evergreen-quick-link .evergreen-container.evergreen-container-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 10px;
}

.evergreen-quick-link .evergreen-container.evergreen-container-content.evergreen-quick-link-layout--horizontal {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.evergreen-quick-link .evergreen-container.evergreen-container-content.evergreen-quick-link-layout--vertical {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.evergreen-quick-link .evergreen-item.evergreen-event-item.evergreen-item-container {
    padding: 0;
    margin: 0;
}

.evergreen-quick-link .evergreen-quick-link-separator.evergreen-link {
    pointer-events: none;
}

/* ==============================================
----- Evergreen secondary Navigation Module -------
================================================= */
/* Container */
.evergreen-secondary-navigation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.evergreen-secondary-navigation .evergreen-secondary-navigation-data {
    display: none;
}

/* ==============================================
---------------- DESKTOP STYLING ----------------
================================================= */
/*--- Container ----*/
.evergreen-secondary-navigation .evergreen-secondary-navigation-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.evergreen-secondary-navigation .evergreen-secondary-navigation-container ul[class*="--topMenu"] {
    -webkit-box-pack: left;
    -ms-flex-pack: left;
    justify-content: left;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.evergreen-secondary-navigation .evergreen-secondary-navigation-container ul.level0 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-left: 0;
}

.evergreen-secondary-navigation .evergreen-secondary-navigation-container ul[class*="level"] {
    padding-left: 0;
}

/* List Items */
.evergreen-secondary-navigation .evergreen-secondary-navigation-container ul li {
    position: relative;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    list-style: none;
    display: inline-block;
}

.evergreen-secondary-navigation .evergreen-secondary-navigation-container ul li.selected, .evergreen-secondary-navigation .evergreen-secondary-navigation-container ul li.expanded {
    border: none;
}

.evergreen-secondary-navigation .evergreen-secondary-navigation-container ul li > a {
    background: none;
    border: none;
    padding: 0;
    min-width: -webkit-fit-content;
    min-width: -moz-fit-content;
    min-width: fit-content;
    line-height: 1;
    font-size: 14px;
    display: block;
    text-transform: none;
    text-align: inherit;
    cursor: pointer;
    padding: 15px 25px;
}

/* Media Queries */
@media (max-width: 1024px) {
    .evergreen-secondary-navigation .evergreen-secondary-navigation-container {
        display: none;
    }
}

/* ==================================
 ----- Evergreen Slider Module -------
================================== */
.evergreen-slider {
    --dotDimensions: 10px;
}

.evergreen-slider .evergreen-container--inner.slider-inner-container--left {
    text-align: left;
}

.evergreen-slider .evergreen-container--inner.slider-inner-container--center {
    text-align: center;
}

.evergreen-slider .evergreen-container--inner.slider-inner-container--right {
    text-align: right;
}

.evergreen-slider .slick-list {
    padding: 50px 0px 30px 0px;
    margin: 0 60px 0 60px;
    overflow: hidden;
    width: auto;
}

.evergreen-slider .evergreen-slider-arrow {
    font-size: 13px;
    padding: 15px;
    position: absolute;
    top: calc(50% - 6.5px);
    border-width: 1px solid;
    border-style: solid;
    border-radius: 100%;
    background-color: transparent;
}

.evergreen-slider .evergreen-slider-arrow--left {
    left: 0;
}

.evergreen-slider .evergreen-slider-arrow--right {
    right: 0;
}

.evergreen-slider .evergreen-slider-bottom-controls {
    vertical-align: middle;
    padding: 0 60px;
}

.evergreen-slider .slick_autoplay-ctrl button {
    background: transparent;
    border: none;
    vertical-align: middle;
    cursor: pointer;
}

.evergreen-slider .evergreen-slider-dots {
    list-style-type: none;
    position: relative;
    bottom: 0;
    display: inline;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 0;
    margin: 0;
}

.evergreen-slider .evergreen-slider-dots li {
    width: var(--dotDimensions);
    height: var(--dotDimensions);
    margin: 0 2.5px;
    vertical-align: middle;
    position: relative;
    display: inline-block;
    padding: 0;
    cursor: pointer;
}

.evergreen-slider .evergreen-slider-dots button {
    background: transparent;
    background-color: var(--evgLightenColor, #aaa);
    width: 100%;
    height: 100%;
    padding: 0;
    border: 1px solid solid var(--evgLightColor, #fff);
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    cursor: pointer;
}

.evergreen-slider .evergreen-slider-dots button::before {
    width: var(--dotDimensions);
    height: var(--dotDimensions);
}

.evergreen-slider .evergreen-slider-dots .slick-active button {
    background-color: var(--evgLightColor, #fff);
}

/* Banner pane update */
.evergreen-pane .Header2PaneDiv:has(.HeaderPane2Div1) {
    position: relative;
    max-width: 1220px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

@supports (-webkit-appearance: none) and (stroke-color: transparent) {
    .evergreen-news-item-wrap .evergreen-link, .evergreen-event-attachments .evergreen-link, .evergreen-container--inner.evergreen-item a, .evergreen-link-view-all.evergreen-link, #_ctrl0_FooterPane-footer-pane-main_ctl10_divModuleContainer.evergreen .evergreen-link, .evergreen-layout-footer .evergreen-grid.evergreen-grid-container .contact-footer a {
        text-decoration: underline !important;
        text-decoration-style: dotted !important;
    }
}

.module-home-cta .module_container-download--widget .grid_col {
    margin-right: 0px;
}

.module-why-invest_column h3 {
    color: #0081C6;
}

/* Bug 71 */
.evergreen-primary-navigation .evergreen-primary-navigation-desktop-container ul.level0 .evergreen-navigation-list--topMenu--menuItem:first-child {
    display: none;
}

/* Bug 74 */
.evergreen-pane--banner h1.evergreen-page-title {
    font-size: 44px !important;
    font-weight: 400 !important;
    letter-spacing: -.03em !important;
    line-height: 1.1em !important;
}

@media screen and (max-width: 579px) {
    .evergreen-pane--banner h1.evergreen-page-title {
        font-size: 10vw !important;
    }
}

.evergreen .evergreen-title, .evergreen .evergreen-title .ModuleTitle, .evergreen h3 {
    letter-spacing: -.03em;
}

/* Bug 73 */
.evergreen-pane--banner .evergreen-container--outer {
    max-width: 100% !important;
}

/* Bug 78 */
.evergreen-stock-summary .evergreen-stock-summary-layout .evergreen-stock-summary-price-wrap * {
    font-size: 40px !important;
}

@media screen and (max-width: 1200px) {
    .evergreen-stock-summary .evergreen-stock-summary-layout .evergreen-stock-summary-price-wrap * {
        font-size: 6vw !important;
    }
}

@media screen and (max-width: 700px) {
    .evergreen-stock-summary .evergreen-stock-summary-layout.evergreen-stock-summary-layout--details .evergreen-stock-summary-price-wrap {
        display: block !important;
    }

    .evergreen-stock-summary .evergreen-stock-summary-layout .evergreen-stock-summary-price-wrap * {
        font-size: 8vw !important;
    }
}

/* Bug 65 */
@media screen and (min-width: 1025px) {
    .evergreen-layout .evergreen-section.evergreen-section--navigation .evergreen-primary-navigation-menu--primary {
        display: none;
    }

    .evergreen-pane.evergreen-pane--navigation .NavigationPaneDiv {
        max-width: 1220px;
        margin: 0 auto;
    }

    .evergreen-layout .evergreen-layout-header .evergreen-section--navigation .evergreen-pane.evergreen-pane--navigation * {
        background: transparent;
    }

    .evergreen-layout .evergreen-layout-header .evergreen-section--navigation .evergreen-pane.evergreen-pane--navigation {
        background: #0181c6;
        background: #0a78b2;
        padding: 7px 20px;
    }

    .evergreen-layout .evergreen-layout-header .evergreen-section--navigation .module-logo img {
        -webkit-filter: brightness(0) invert(1);
        filter: brightness(0) invert(1);
        margin-top: 10px;
    }

    .evergreen-layout .nav--desktop--list--topMenu--menuItem .link, .evergreen-layout .nav--desktop--list--topMenu--menuItem .button {
        font-family: var(--evgNavigationsMainLinkFontFamily), Arial, "sans serif";
        font-size: var(--evgNavigationsMainLinkFontSize);
        font-weight: var(--evgNavigationsMainLinkFontWeight);
        line-height: var(--evgNavigationsMainLinkLineHeight);
        font-style: var(--evgNavigationsMainLinkFontStyle);
        text-transform: var(--evgNavigationsMainLinkCapitalization);
        color: var(--evgLightColor);
    }

    .evergreen-layout .evergreen-layout-header .evergreen-section--navigation .evergreen-pane.evergreen-pane--navigation .module-logo {
        width: 250px;
    }

    .evergreen-layout .evergreen-layout-header .evergreen-section--navigation .evergreen-pane.evergreen-pane--navigation .nav--desktop--container {
        width: calc(100% - 250px);
    }

    div#navDesktopSearch, .evergreen-layout .nav--desktop--search_container--btn, .evergreen-layout .nav--desktop--search_container--btn span {
        width: 30px;
        min-width: unset;
        padding-left: 0;
        padding-right: 0;
        border: none;
    }

    .evergreen-layout .nav--desktop--search_container--btn span {
        color: var(--evgLightColor);
    }

    span#search-tip {
        color: var(--evgLightColor);
    }

    input#navDesktopSearchInput {
        background: var(--evgNavigationsMainSearchBackgroundColor);
        color: var(--evgNavigationsMainSearchFontColor);
        font-size: var(--evgNavigationsMainSearchFontSizeL);
        font-style: normal;
    }

    .evergreen-layout .nav--desktop--list--topMenu.level0 {
        text-align: center;
    }

    .evergreen-layout .nav--desktop--list--topMenu.level0 .level1 {
        text-align: left;
        background: #ffffff !important;
    }

    .evergreen-layout .nav--desktop--list--innerMenu::before {
        border-bottom: 11px solid var(--evgLightColor) !important;
    }

    .evergreen-layout .nav--desktop--list--innerMenu .link, .evergreen-layout .nav--desktop--list--innerMenu .button {
        color: var(--evgPrimaryColor);
        text-decoration-color: var(--evgNavigationsMainDropdownLinkTextDecorationColor);
        font-size: var(--evgNavigationsMainDropdownLinkFontSizeL);
        text-transform: var(--evgNavigationsMainDropdownLinkFontCapitalization);
        font-family: var(--evgNavigationsMainDropdownLinkFontFamily);
        font-weight: var(--evgNavigationsMainDropdownLinkFontWeight);
        font-style: var(--evgNavigationsMainDropdownLinkFontStyle);
    }

    .evergreen-layout .nav--desktop {
        display: flex !important;
    }

    .evergreen-layout .nav--mobile--toggle.right {
        display: none !important;
    }

    .evergreen-layout .nav--desktop--list--topMenu--menuItem a.link:hover, .evergreen-layout .nav--desktop--list--topMenu--menuItem.selected a.link, .evergreen-layout .nav--desktop--list--topMenu--menuItem.expanded a.link {
        text-decoration: underline;
    }
}

@media screen and (max-width: 1024px) {
    .evergreen-pane.evergreen-pane--navigation .NavigationPaneDiv div:has(.nav-data), .evergreen-pane.evergreen-pane--navigation .NavigationPaneDiv div:has(.nav--desktop--container), .evergreen-pane.evergreen-pane--navigation .NavigationPaneDiv div:has(.module-logo) {
        display: none !important;
    }

    .evergreen-primary-navigation .evergreen-primary-navigation-menu-container {
        background: #0181c6 !important;
    }

    .evergreen-primary-navigation .evergreen-primary-navigation-menu-logo {
        -webkit-filter: brightness(0) invert(1);
        filter: brightness(0) invert(1);
    }

    .evergreen-primary-navigation button.evergreen-primary-navigation-mobile-toggle {
        color: var(--evgLightColor) !important;
        position: relative;
        top: -10px;
    }
}

.highcharts-background {
    fill: var(--evgGreyColor);
}

.highcharts-data-table table tbody tr {
    background: var(--evgGreyColor) !important;
    border-bottom: 1px solid var(--evgTableBorderColor, rgba(0, 0, 0, 0.1)) !important;
}

.evergreen-pane--footer .evergreen-mailing-list-submit-button input:hover {
    border-color: var(--borderFocusColor) !important;
}

.evergreen-financial-details_report-link {
    justify-content: flex-start !important;
}

.evergreen-financial-details_report-link span[class*="evergreen-icon"] {
    display: none;
}

.evergreen-financial-details_report-link .evergreen-link {
    text-decoration: unset !important;
}

.evergreen-financial-details_report-link .evergreen-link:hover {
    text-decoration: underline !important;
}

.nav--sitemap li {
    padding: 20px;
}

.nav--sitemap li > a {
    --evgLinkFontSizeL: 30px;
    --fontWeight: normal;
    --fontColor: var(--evgHyperlinkFontColor);
    font-family: var(--fontFamily);
    font-size: var(--evgLinkFontSizeL) !important;
    font-weight: var(--fontWeight);
    line-height: var(--lineHeight);
    text-transform: var(--capitalization);
    font-style: var(--fontStyle);
    color: var(--fontColor);
}

.nav--sitemap .level2 li {
    padding: 3px 20px 3px 20px;
}

.nav--sitemap a:focus {
    font-weight: 700;
}

.nav--sitemap li .level2 a {
    --evgLinkFontSizeL: 17px;
}

.nav--desktop--list--topMenu--menuItem.has-innerMenu a .text{
    font-size:16px;
}

.module-stock-header .evergreen-container--inner{
    text-align: center;
}

.module-stock-header .evergreen-container--outer{
    max-width: 500px;

}

.info-section.grid{
    border-top: 1px solid white;
    border-bottom: 1px solid white;
    align-items: center;
    display: flex;
    flex-direction: row;
}

@media screen and (max-width: 768px) {
    .info-section.grid{
        display: flex;
        flex-direction: row;
        flex-direction: column;
        gap: 10px;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        padding: unset;
        padding-top: 10px;
        padding-bottom: 10px;
    }
}

.info-section  .module-stock-header_description1{
    font-family: "Univers";
    font-size: 30px;
    font-weight: 400;
}

.info-section  .module-stock-header_stock-price{
    font-family: "Univers";
    font-size: 30px;
    font-weight: 400;
    margin: unset;
    text-align: center;
}

.info-section .module-stock-header_change.module-stock-header_up{
    font-family: "Univers";
    font-size: 30px;
    font-weight: 400;
    margin: unset;
}

.info-section  .grid_col--1-of-3:nth-of-type(1){
    max-width: 300px;
}

.info-section  .grid_col--1-of-3:nth-of-type(2){
    max-width: 150px;
}

.info-section  .grid_col--1-of-3:nth-of-type(3){
    width: 230px;
}



.module-stock-header_footer{
    padding-left: 0px;
    text-align: center;
}

.module-stock-header_footer .module-stock-header_date{
    font-family: "Univers";
    font-size: 14px;
    font-weight: 400;
}

@media screen and (max-width: 768px) {
    .evergreen-layout .evergreen-layout-header{
        height: 700px;
    }

    .info-section .module-stock-header_description1{
        text-align: center;
    }
}

.slick-slider .slick-track a.evergreen-button{
    border-radius: 30px;
    background-color: white !important;
    color: #000000 !important;
}

@media only screen and (max-width: 480px){
    
.slick-slider .slick-track a.evergreen-button{
    font-size: 15px;
    min-width: unset;
}
}


    @media only screen and (max-width: 480px){
        .evergreen.module-slider{
            padding: 0;
        }
    }


.slick-slider .slick-track a.evergreen-button:hover{
    text-decoration: none !important;

    background-color: #0181c6 !important;
    color: white !important;
}

.module-stock-header{
    padding-top: 0px !important;
    margin-top: 0px !important;
    padding-bottom: 0px;
}

h1:first-letter {
    text-transform: capitalize !important;
}


.module-sitemap p a {
    color: #00457C;
}

.module-sitemap p a:hover {
    color: #000;
}


/*  fix mailing list issue start */
.PageFinancialsAnnualReports
  span#_ctrl0_FooterPane_footer-pane-main_ctl10_chkLists {
  display: flex !important;
  flex-wrap: wrap;
  row-gap: 10px;
}

.PageFinancialsAnnualReports
  span#_ctrl0_FooterPane_footer-pane-main_ctl10_chkLists
  .evergreen-checkbox {
  width: 50%;
}

@media only screen and (max-width: 480px) {
  .PageFinancialsAnnualReports
    span#_ctrl0_FooterPane_footer-pane-main_ctl10_chkLists
    .evergreen-checkbox {
    width: 100%;
  }

  .PageFinancialsAnnualReports
    span#_ctrl0_FooterPane_footer-pane-main_ctl10_chkLists {
    margin-bottom: 20px;
  }
}

/*  fix mailing list issue end */