
/*==================================================
                        RESET CSS 
===================================================*/
html, body, applet, object, iframe,
h1, h2, h3, h4, h5, h6, blockquote, pre,
abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video
{
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
html {
    box-sizing: border-box;
}
*, *:before, *:after {
    box-sizing: inherit;
}
html {
    font-family: 'CircularSpotifyTxT-Book';
    font-size: 62.5%; /*Rem utility*/
    -webkit-text-size-adjust:none;/*Reset for text adjustemt on iphone*/
}
body {
    overflow-x: hidden;
    font-size: 1.6rem;
    color: #909496;
}
.ul_reset ol,
.ul_reset ul,
.slick-dots,
.module_error-container ul,
.module_message--error ul,
.module_error-container ol,
.module_speakers ul,
.module_speakers ol,
.nav--sitemap ul,
.nav--sitemap ol,
.layout_footer ol,
.layout_footer ul,
.layout_header ol,
.layout_header ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
ul, ol {
    list-style: circle;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
strong {
    font-weight: bold;
}
small {
    color: #999;
    font-size: 10px;
    line-height: 12px;
}
em {
    font-style: italic;
}

/*==================================================
                        ANIMATIONS 
===================================================*/
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/*==================================================
                        TYPOGRAPHY 
===================================================*/
h1, h2, h3, h4, h5, h6 {
    font-family: 'CircularSpotifyTxT-Bold';
    color: #000000;
}

h1 {
    font-size: 9.6rem;
    margin-bottom: 3rem;
}
@media only screen and (max-width: 800px) {
    h1 {
        padding: 50px 0px;
        font-size: 6.5rem;
        line-height: 1;
    }
}

@media only screen and (max-width: 480px) {
    h1 {
        font-size: 4.5rem;
        margin-bottom: 2.5rem;
    }
}
h2 {
    font-size: 3.2rem;
    margin-bottom: 3rem;
    text-transform: capitalize;
}
@media only screen and (max-width: 320px) {
    h2 {
        font-size: 2.4rem;
    }
}
h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
}
h4 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}
h5 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
}
a {
    text-decoration: none;
    color: #1ed760;
    word-break: break-word;
}
a:hover {
    color: #1bc156; 
}
p {
    line-height: 1.5;
    margin: 15px 0px;
}
@media only screen and (max-width: 320px) {
    p {
        font-size: 1.2rem;
    }
}
i {
    display: inline-block;
}
strong {
    font-weight: bold;
}
em {
    font-style: italic;
}
sub {
    vertical-align: sub;
    font-size: 0.8rem;
}
sup {
    vertical-align: super;
    font-size: 0.8rem;
}
/*==================================================
                        INPUTS 
===================================================*/
img {
    max-width: 100%;
}
input[type="checkbox"] {
    display: inline-block;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    height: 20px;
    width: 20px;
    margin: 0 7px 0 0;
    border: 1px solid;
    border-color: #dbdcde;
    vertical-align: baseline;
    cursor: pointer;
}
input[type="checkbox"]:checked {
    border: 1px solid;
}
input[type="checkbox"]:focus {
    outline: none;
}
input[type="radio"] {
    margin: 0 5px 0 0;
}
input[type="checkbox"] + label, input[type="radio"] + label {
    display: inline-block;
    cursor: pointer;
    line-height: 0.1;
}
input::-ms-clear {
    display: none;
}
/*CUSTOM INPUT STYLE*/
input[type='checkbox'] {
    display: none;
}
input[type='checkbox']:focus,
input[type='checkbox']:active {
    outline: none;
}
input[type='checkbox'] + label {
    position: relative;
    display: inline-block;
    transition: 0.3s all ease-in-out;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
input[type='checkbox'] + label:before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background: transparent;
    border: 1px solid #dbdcde;
    border-radius: 50%;
    margin-right: 7px;
}
input[type='checkbox']:checked + label:before {
    background: #1ed760;
    border: 1px solid #1ed760;
    margin-bottom: 3px;
    vertical-align: middle;
}
input[type='checkbox']:checked + label:after { 
    content: '';
    position: absolute;
    top: 7px;
    left: 7px;
    padding: 3px;
    background-color: #fff;
    border-radius: 50%;
}
iframe {
    width: 100%;
}

@media only screen and (max-width: 480px) {
    input + label {
        font-size: 1.2rem;
    }

    input[type='checkbox'] + label:before {
        width: 16px;
        height: 16px;
    }

    input[type='checkbox']:checked + label:after {
        top: 5px;
        left: 5px;
        padding: 2.8px;
    }
}



/*==================================================
                        HACKS AND FIXES 
===================================================*/
.clearfix {
    *zoom: 1;
}
.clearfix:before, .clearfix:after {
    content: " ";
    display: table;
}
.clearfix:after {
    clear: both;
}
/*Fix for icons resolution*/
i {
    font-family: 'q4-icons';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
/*Calendar Ui*/
.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
    width: initial;
}
.ui-datepicker-prev,
.ui-datepicker-next {
    cursor: pointer;
}
/*==================================================
                           LISTS 
===================================================*/
.list {
    margin: 16px 0;
    padding-left: 2rem;
    list-style-type: disc;
}
.list li {
    line-height: 2.4rem;
    line-height: 1.5rem;
}
.list--ordered {
    list-style-type: decimal;
}
.list--alpha {
    list-style-type: lower-alpha;
}
.list--roman {
    list-style-type: lower-roman;
}
.list--inside {
    list-style-position: inside;
}
.list--no-style {
    list-style-type: none;
}

/*==================================================
                   BUTTONS / INPUTS 
===================================================*/
textarea,
.input,
.upload,
.submit {
    display: inline-block;
    max-width: 100%;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: transparent;
    padding: 20px 15px;
    border: 1px solid #d9dadc;
    font-family: 'CircularSpotifyTxT-Book';
}
.submit {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    font-size: 1.4rem;
    font-family: 'Open Sans', sans-serif;
    padding: 15px 30px;
    display: inline;
    color: #fff;
    background-color: #1ed760;
    border: none;
    border-radius: 35px;
    transition: 0.3s all ease-in-out;
}
.submit:hover {
    background: #1bc156;
    box-shadow: none;
}

.input::-ms-clear, .textarea::-ms-clear, .dropdown::-ms-clear, .upload::-ms-clear, .submit::-ms-clear, .button::-ms-clear {
    display: none;
}
.submit, .button, .upload, .dropdown {
    cursor: pointer;
}
.submit, .button {
    text-transform: uppercase;
}
.textarea {
    width: 100%;
    resize: vertical;
}
.upload {
    line-height: 0;
}
.button {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    font-size: 1.4rem;
    font-family: 'CircularSpotifyTxT-Bold';
    padding: 15px 30px 12px 30px;
    display: inline-block;
    color: #fff;
    background-color: #1ed760;
    border: none;
    border-radius: 35px;
    transition: 0.3s all ease-in-out;
}
.button:hover {
    background: #1bc156;
    box-shadow: none;
    color: #fff;
}
.button--inverted {
    background: #006fba;
    color: #fff;
}
.button--inverted:hover {
    background: transparent;
    color: #006fba;
    box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}
.button--dark {
    border: 2px solid #fff;
    color: #fff;
}
.button--dark:hover {
    background: #fff;
    color: #222;
    box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}
.dropdown {
    padding: 16px 50px 15px 15px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: transparent url('../design/svg/dropdown-down.svg') no-repeat right 10px center;
    border: 1px solid #d9dadc;
    border-radius: 3px;
    font-family: 'CircularSpotifyTxT-Bold';
    font-size: 1.6rem;
}
.dropdown > option {
    text-align: center;
    font-family: 'CircularSpotifyTxT-Book';
}
.dropdown::-ms-expand {
    display: none;
}

/*==================================================
                          TABLES
===================================================*/
table {
    border-collapse: collapse;
}
.table {
    width: 100%;
    margin: 16px 0;
}
.table table {
    width: 100%;
}
.table thead th {
    text-align: left;
}
.table thead tr {
    border-bottom: 1px solid #000000;
}
.table tbody tr {
    border-bottom: 1px solid #d9dadc;
}
.table tbody tr td {
    color: #1ed760;
}
.table th, .table td, .table tr > .grid_col {
    margin: 0;
    padding: 15px 8px;
}
.table th {
    color: #000000;
    font-family: 'CircularSpotifyTxT-Bold';
}
.table--headless tr:nth-child(even) {
    background-color: transparent;
}
.table--headless tr:nth-child(odd) {
    background-color: #f6f6f6;
}
.table--headless tr:first-child {
    background-color: #006fba;
    text-align: left;
}
.table--headless tr:first-child td {
    color: #fff;
}
@media only screen and (max-width: 480px) {
    .table--responsive thead {
        display: none;
    }
    .table--responsive tbody {
        border-top: 1px solid #000;
        border-bottom: 1px solid #000;
    }
    .table--responsive td {
        display: block;
    }
    .table--responsive td:before {
        content: attr(data-heading) ": ";
        font-family: 'CircularSpotifyTxT-Bold';
    }
}

/*==================================================
                      SPECIAL BOXES
===================================================*/
.code {
    margin: 32px 0;
    padding: 20px 15px;
    background: #f6f6f6;
    border-left: 3px solid rgba(0, 111, 186, 0.5);
    font-family: monospace, serif;
    font-size: 14px;
    font-size: 0.875rem;
    word-break: break-all;
    word-wrap: break-word;
    white-space: pre;
    overflow: hidden;
}
.code_comment {
    opacity: 0.5;
}
.quote {
    margin: 32px 0;
    padding: 20px 15px;
    background: #f6f6f6;
    border-left: 3px solid rgba(241, 175, 15, 0.5);
    font-size: 14px;
    font-size: 0.875rem;
    font-style: italic;
}
.quote p:before {
    margin-right: 5px;
    font-family: "q4-icons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\eb1b";
}
.quote p:after {
    margin-left: 5px;
    font-family: "q4-icons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\eb1c";
}

/*==================================================
                      PANNELS
===================================================*/
.layout--home .pane--header {
    height: 615px;
    background-image: -moz-linear-gradient( -135deg, rgb(223,29,53) 0%, rgb(30,50,100) 100%);
    background-image: -webkit-linear-gradient( -135deg, rgb(223,29,53) 0%, rgb(30,50,100) 100%);
    background-image: -ms-linear-gradient( -135deg, rgb(223,29,53) 0%, rgb(30,50,100) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr= rgb(223,29,53), endColorstr= rgb(30,50,100) 100%);
}

.pane--header {
    background: -webkit-linear-gradient(left, #45366f, #bd3a94); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(right, #45366f, #bd3a94); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(right, #45366f, #bd3a94); /* For Firefox 3.6 to 15 */
    background: -ms-linear-gradient(right, #45366f, #bd3a94);
    background: linear-gradient(to right, #45366f, #bd3a94); /* Standard syntax */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#45366f', endColorstr='#bd3a94');
    height: 360px;
}

.governance-page .pane--header {
    background-image: -moz-linear-gradient( 0deg, rgb(155,240,225) 0%, rgb(160,195,210) 100%);
    background-image: -webkit-linear-gradient( 0deg, rgb(155,240,225) 0%, rgb(160,195,210) 100%);
    background-image: -ms-linear-gradient( 0deg, rgb(155,240,225) 0%, rgb(160,195,210) 100%);
}

.locations-page .pane--header {
    background-image: -moz-linear-gradient( 0deg, rgb(255,205,210) 0%, rgb(30,50,100) 100%);
    background-image: -webkit-linear-gradient( 0deg, rgb(255,205,210) 0%, rgb(30,50,100) 100%);
    background-image: -ms-linear-gradient( 0deg, rgb(255,205,210) 0%, rgb(30,50,100) 100%);
}

.pane_inner {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0px 20px;
}

.layout--home .pane_inner {
    max-width: 1220px;
    margin: 0 auto;
    padding: 0px 20px;
}

.pane--navigation {
    background-color: #000000;
    width: 260px;
    position: fixed;
    z-index: 15;
    top: 0;
    right: -260px;
    bottom: 0;
    height: 100%;
    overflow: auto;
    transition: all 0.3s ease-in-out;
}

.js--mobile .pane--navigation {
    right: 0px;
    width: 100%;
}

.pane--navigation .pane_inner {
    padding: 40px 20px 30px;
}

.layout--home .pane--content {
    padding: 100px 0px;
}

.pane--content .pane_inner {
    padding-top: 45px;
}

.layout--home .pane--content .pane_inner {
    padding-top: 0px;
}

.pane--content .module_container--outer {
    padding-bottom: 120px;
}

.layout--home .pane--content .module_container--outer {
    padding-bottom: 0px;
}

.layout--home .pane--right {
    background-image: -moz-linear-gradient( -150deg, rgb(223,29,53) 0%, rgb(30,50,100) 100%);
    background-image: -webkit-linear-gradient( -150deg, rgb(223,29,53) 0%, rgb(30,50,100) 100%);
    background-image: -ms-linear-gradient( -150deg, rgb(223,29,53) 0%, rgb(30,50,100) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#1e3264', endColorstr='#df1d35');
    padding: 50px 0px 85px;
}

.pane--footer {
    padding: 75px 0px;
    background-color: #f6f6f7;
}

.pane--footer2,
.pane--credits {
    background-color: #000;
}

.pane--credits {
    padding-top: 60px;
}

.pane--footer2 {
    padding-top: 60px;
}

.pane--footer2 .pane_inner,
.pane--credits .pane_inner {
    padding: 0px 15px;
}

@media (max-width: 1024px) {
    .layout--home .pane--header {
        height: auto;
    }
}

@media (min-width: 1200px) {
    .pane--footer2 .pane_inner,
    .pane--credits .pane_inner {
        max-width: 1480px;
        padding: 0px 85px;
    }
}

@media (max-width: 768px) {
    .pane--content .module_container--outer {
        padding-bottom: 80px;
    }
}

@media (max-width: 739px) {
    .pane--footer2 {
        padding-top: 24px;
    }

    .pane--footer2 .pane_inner, 
    .pane--credits .pane_inner {
        padding: 0px 10px;
    }

    .pane--credits .pane_inner {
        padding-bottom: 32px;
    }
}


@media screen and (min-width: 740px) and (max-width: 999px) {
    .pane--footer2 .pane_inner, 
    .pane--credits .pane_inner {
        max-width: 721px;
    }

    .pane--credits .pane_inner {
        padding-bottom: 32px;
    }
}

@media only screen and (min-width: 1201px) {
    .pane--navigation {
        display: none;
    }
}

@media only screen and (max-width: 480px) {
    .layout--home .pane--header {
        min-height: 570px;
        height: 100%;
    }

    .layout--home .pane--content {
        padding: 50px 0px;
    }

    .pane--content .module_container--outer {
        padding-bottom: 45px;
    }

    .layout--home .pane--right {
        padding: 50px 0px 30px;
    }
}

/*==================================================
                      TOAST GRID
===================================================*/
.grid {
    list-style: none;
    margin-left: -20px;
}
.grid_col--1-of-1, .grid_col--2-of-2, .grid_col--3-of-3, .grid_col--4-of-4, .grid_col--5-of-5, .grid_col--6-of-6, .grid_col--8-of-8, .grid_col--12-of-12 {
    width: 100%;
}
.grid_col--1-of-2, .grid_col--2-of-4, .grid_col--3-of-6, .grid_col--4-of-8, .grid_col--6-of-12 {
    width: 50%;
}
.grid_col--1-of-3, .grid_col--2-of-6, .grid_col--4-of-12 {
    width: 33.33333%;
}
.grid_col--2-of-3, .grid_col--4-of-6, .grid_col--8-of-12 {
    width: 66.66667%;
}
.grid_col--1-of-4, .grid_col--2-of-8, .grid_col--3-of-12 {
    width: 25%;
}
.grid_col--3-of-4, .grid_col--6-of-8, .grid_col--9-of-12 {
    width: 75%;
}
.grid_col--push-1-of-1, .grid_col--push-2-of-2, .grid_col--push-3-of-3, .grid_col--push-4-of-4, .grid_col--push-5-of-5, .grid_col--push-6-of-6, .grid_col--push-8-of-8, .grid_col--push-12-of-12 {
    margin-left: 100%;
}
.grid_col--push-1-of-2, .grid_col--push-2-of-4, .grid_col--push-3-of-6, .grid_col--push-4-of-8, .grid_col--push-6-of-12 {
    margin-left: 50%;
}
.grid_col--push-1-of-3, .grid_col--push-2-of-6, .grid_col--push-4-of-12 {
    margin-left: 33.33333%;
}
.grid_col--push-2-of-3, .grid_col--push-4-of-6, .grid_col--push-8-of-12 {
    margin-left: 66.66667%;
}
.grid_col--push-1-of-4, .grid_col--push-2-of-8, .grid_col--push-3-of-12 {
    margin-left: 25%;
}
.grid_col--push-3-of-4, .grid_col--push-6-of-8, .grid_col--push-9-of-12 {
    margin-left: 75%;
}
.grid_col--pull-1-of-1, .grid_col--pull-2-of-2, .grid_col--pull-3-of-3, .grid_col--pull-4-of-4, .grid_col--pull-5-of-5, .grid_col--pull-6-of-6, .grid_col--pull-8-of-8, .grid_col--pull-12-of-12 {
    margin-left: -100%;
}
.grid_col--pull-1-of-2, .grid_col--pull-2-of-4, .grid_col--pull-3-of-6, .grid_col--pull-4-of-8, .grid_col--pull-6-of-12 {
    margin-left: -50%;
}
.grid_col--pull-1-of-3, .grid_col--pull-2-of-6, .grid_col--pull-4-of-12 {
    margin-left: -33.33333%;
}
.grid_col--pull-2-of-3, .grid_col--pull-4-of-6, .grid_col--pull-8-of-12 {
    margin-left: -66.66667%;
}
.grid_col--pull-1-of-4, .grid_col--pull-2-of-8, .grid_col--pull-3-of-12 {
    margin-left: -25%;
}
.grid_col--pull-3-of-4, .grid_col--pull-6-of-8, .grid_col--pull-9-of-12 {
    margin-left: -75%;
}
.grid_col--1-of-5 {
    width: 20%;
}
.grid_col--push-1-of-5 {
    margin-left: 20%;
}
.grid_col--pull-1-of-5 {
    margin-left: -20%;
}
.grid_col--2-of-5 {
    width: 40%;
}
.grid_col--push-2-of-5 {
    margin-left: 40%;
}
.grid_col--pull-2-of-5 {
    margin-left: -40%;
}
.grid_col--3-of-5 {
    width: 60%;
}
.grid_col--push-3-of-5 {
    margin-left: 60%;
}
.grid_col--pull-3-of-5 {
    margin-left: -60%;
}
.grid_col--4-of-5 {
    width: 80%;
}
.grid_col--push-4-of-5 {
    margin-left: 80%;
}
.grid_col--pull-4-of-5 {
    margin-left: -80%;
}
.grid_col--1-of-6 {
    width: 16.66667%;
}
.grid_col--push-1-of-6 {
    margin-left: 16.66667%;
}
.grid_col--pull-1-of-6 {
    margin-left: -16.66667%;
}
.grid_col--5-of-6 {
    width: 83.33333%;
}
.grid_col--push-5-of-6 {
    margin-left: 83.33333%;
}
.grid_col--pull-5-of-6 {
    margin-left: -83.33333%;
}
.grid_col--1-of-8 {
    width: 12.5%;
}
.grid_col--push-1-of-8 {
    margin-left: 12.5%;
}
.grid_col--pull-1-of-8 {
    margin-left: -12.5%;
}
.grid_col--3-of-8 {
    width: 37.5%;
}
.grid_col--push-3-of-8 {
    margin-left: 37.5%;
}
.grid_col--pull-3-of-8 {
    margin-left: -37.5%;
}
.grid_col--5-of-8 {
    width: 62.5%;
}
.grid_col--push-5-of-8 {
    margin-left: 62.5%;
}
.grid_col--pull-5-of-8 {
    margin-left: -62.5%;
}
.grid_col--7-of-8 {
    width: 87.5%;
}
.grid_col--push-7-of-8 {
    margin-left: 87.5%;
}
.grid_col--pull-7-of-8 {
    margin-left: -87.5%;
}
.grid_col--1-of-12 {
    width: 8.33333%;
}
.grid_col--push-1-of-12 {
    margin-left: 8.33333%;
}
.grid_col--pull-1-of-12 {
    margin-left: -8.33333%;
}
.grid_col--2-of-12 {
    width: 16.66667%;
}
.grid_col--push-2-of-12 {
    margin-left: 16.66667%;
}
.grid_col--pull-2-of-12 {
    margin-left: -16.66667%;
}
.grid_col--5-of-12 {
    width: 41.66667%;
}
.grid_col--push-5-of-12 {
    margin-left: 41.66667%;
}
.grid_col--pull-5-of-12 {
    margin-left: -41.66667%;
}
.grid_col--7-of-12 {
    width: 58.33333%;
}
.grid_col--push-7-of-12 {
    margin-left: 58.33333%;
}
.grid_col--pull-7-of-12 {
    margin-left: -58.33333%;
}
.grid_col--10-of-12 {
    width: 83.33333%;
}
.grid_col--push-10-of-12 {
    margin-left: 83.33333%;
}
.grid_col--pull-10-of-12 {
    margin-left: -83.33333%;
}
.grid_col--11-of-12 {
    width: 91.66667%;
}
.grid_col--push-11-of-12 {
    margin-left: 91.66667%;
}
.grid_col--pull-11-of-12 {
    margin-left: -91.66667%;
}
.grid_col {
    box-sizing: border-box;
    display: inline-block;
    margin-right: -.25em;
    min-height: 1px;
    padding-left: 20px;
    vertical-align: top;
}
@media (max-width: 480px) {
    .grid_col {
        display: block;
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }
}
@media (max-width: 1200px) and (min-width: 1024px) {
    .grid_col[class*="grid_col--lg-"] {
        display: inline-block;
        margin-right: -.24em;
    }
    .grid_col.grid_col--lg-1-of-1 {
        width: 100%;
    }
    .grid_col.grid_col--lg-1-of-2, .grid_col.grid_col--lg-2-of-4 {
        width: 50%;
    }
    .grid_col.grid_col--lg-1-of-3 {
        width: 33.33333%;
    }
    .grid_col.grid_col--lg-2-of-3 {
        width: 66.66667%;
    }
    .grid_col.grid_col--lg-1-of-4 {
        width: 25%;
    }
    .grid_col.grid_col--lg-3-of-4 {
        width: 75%;
    }
}
@media (max-width: 1024px) and (min-width: 768px) {
    .grid_col[class*="grid_col--lc-"] {
        display: inline-block;
        margin-right: -.24em;
    }
    .grid_col.grid_col--lc-1-of-1 {
        width: 100%;
    }
    .grid_col.grid_col--lc-1-of-2, .grid_col.grid_col--lc-2-of-4 {
        width: 50%;
    }
    .grid_col.grid_col--lc-1-of-3 {
        width: 33.33333%;
    }
    .grid_col.grid_col--lc-2-of-3 {
        width: 66.66667%;
    }
    .grid_col.grid_col--lc-1-of-4 {
        width: 25%;
    }
    .grid_col.grid_col--lc-3-of-4 {
        width: 75%;
    }
}
@media (max-width: 768px) and (min-width: 480px) {
    .grid_col[class*="grid_col--md-"] {
        display: inline-block;
        margin-right: -.24em;
    }
    .grid_col.grid_col--md-1-of-1 {
        width: 100%;
    }
    .grid_col.grid_col--md-1-of-2, .grid_col.grid_col--md-2-of-4 {
        width: 50%;
    }
    .grid_col.grid_col--md-1-of-3 {
        width: 33.33333%;
    }
    .grid_col.grid_col--md-2-of-3 {
        width: 66.66667%;
    }
    .grid_col.grid_col--md-1-of-4 {
        width: 25%;
    }
    .grid_col.grid_col--md-3-of-4 {
        width: 75%;
    }
}
@media (max-width: 480px) {
    .grid_col[class*="grid_col--sm-"] {
        display: inline-block;
        margin-right: -.24em;
    }
    .grid_col.grid_col--sm-1-of-2, .grid_col.grid_col--sm-2-of-4 {
        width: 50%;
    }
    .grid_col.grid_col--sm-1-of-3 {
        width: 33.33333%;
    }
    .grid_col.grid_col--sm-2-of-3 {
        width: 66.66667%;
    }
    .grid_col.grid_col--sm-1-of-4 {
        width: 25%;
    }
    .grid_col.grid_col--sm-3-of-4 {
        width: 75%;
    }
}
.grid_col--centered {
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.grid_col--d-first {
    float: left;
}
.grid_col--d-last {
    float: right;
}
.grid--no-gutter {
    margin-left: 0;
}
.grid--no-gutter .grid_col {
    padding-left: 0;
}
.grid--no-gutter .grid .grid_col {
    padding-left: 20px;
}
.grid--no-gutter .grid_col--span-all {
    margin-left: 0;
    width: 100%;
}
.grid--no-space .grid_col {
    margin-right: 0;
}
.grid_col--ab {
    vertical-align: bottom;
}
.grid_col--am {
    vertical-align: middle;
}

/*==================================================
                    UTILITY CLASSES
===================================================*/
.hidden {
    display: none !important;
}
.disabled {
    opacity: 0.1;
    border-color: #333333;
    color: #333333;
    transition: none;
    pointer-events: none;
}
.absolute {
    position: absolute;
}
.relative {
    position: relative;
}
.inline {
    display: inline;
}
.block {
    display: block;
}
.inline-block {
    display: inline-block;
}
.vtop {
    vertical-align: top;
}
.vmiddle {
    vertical-align: middle;
}
.vbottom {
    vertical-align: bottom;
}
.right {
    float: right;
}
.left {
    float: left;
}
.text-right {
    text-align: right;
}
.text-left {
    text-align: left;
}
.text-center {
    text-align: center;
}
.text-justify {
    text-align: justify;
}
.uppercase {
    text-transform: uppercase;
}
.lowercase {
    text-transform: lowercase;
}
.background--cover {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.background--brand {
    background-color: #006fba;
}
.background--alt-brand {
    background-color: #f1af0f;
}
.background--dark {
    background-color: #222;
}
.background--light {
    background-color: #fff;
}
.background--grey {
    background-color: #f6f6f6;
}
.background--success {
    background-color: #23a217;
}
.background--error {
    background-color: #ff4545;
}
.color--brand {
    color: #1ed760;
}
.color--dark {
    color: #222;
}
.color--grey {
    color: #f6f6f6;
}
.color--success,
.MessageSent p ,
.module_message.module_message--success {
    color: #5bb947;
    font-size: 1.6rem;
}
.color--error {
    color: #ff4545;
}
.dark {
    color: #fff;
}
.dark a {
    color: #fff;
}

/*Module Pager*/
.module_pager {
    cursor: pointer;
    text-align: center;
    padding-left: 0px;
}

.module_pager li {
    display: inline-block;
    padding: 0px 5px;
}

.module_pager li.pager-active {
    font-family: 'CircularSpotifyTxT-Bold';
}

.module_pager .pager-disabled {
    cursor: not-allowed;
}

/*==================================================
                    ACCESSIBILITY
===================================================*/
*:focus {
    outline: none;
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}
#maincontent:focus {
    outline: 0px;
}

/*==================================================
                    JAVASCRIPT
===================================================*/
.js--loading:after {
    position: relative;
    left: 50%;
    display: inline-block;
    margin: 16px 0 16px -25px;
    font-family: "q4-icons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\eb27";
    font-size: 50px;
    font-size: 3.125rem;
    animation: spin 0.8s infinite linear;
}
.js--hidden {
    display: none;
}
.js--visible {
    display: block;
}
.js--disabled {
    opacity: 0.1;
    border-color: #333333;
    color: #333333;
    transition: none;
    pointer-events: none;
}
.js--invalid input[type="text"], .js--invalid select {
    border: 1px solid #ff4545 !important;
}
.js--invalid input[type="checkbox"] {
    border-color: #ff4545 !important;
}

/*==================================
 ----------- MODULE CSS -----------
==================================*/
/*-------- All Module CSS --------*/
.module_header, .module_back-to-top, .module_anchor-target, .module_file-size, .module_file-type, .module_file-text, .module_view-all-link, .module_more {
    display: none;
}
.module_nav, .module_headline, .module_location, .module_speakers, .module_links, .module_body, .module_add-to-calendar, .module_options, .module_not-found {
    margin-bottom: 15px;
}
.module_links:last-child {
    margin-bottom: 0px;
}
.module_error-container {
    margin-bottom: 30px;
    color: #b72121;
}
.module_add-to-calendar-reveal {
    color: #1ed760;
    cursor: pointer;
}
.module_add-to-calendar-reveal:focus {
    text-decoration: underline;
}
.module_add-to-calendar-list {
    display: none;
}
.module_add-to-calendar-list:after {
    content: "Select your Calendar";
    display: block;
    margin-top: 15px;
    font-size: 1.4rem;
    text-align: center;
}
.fancybox-container .module_add-to-calendar-list {
    padding: 70px;
}
.module_add-to-calendar-item {
    display: inline-block;
    margin: 0 10px;
}
.module_add-to-calendar-item--ics {
    display: none;
}
.module_add-to-calendar-link {
    font-size: 24px;
    font-size: 2.4rem;
}
.module_add-to-calendar.js--hidden {
    display: none;
}
.module_actions, .module_pager {
    margin-top: 20px;
}
.module_date-time {
    margin-bottom: 12px;
    font-size: 1.2rem;
}
.module_error-container {
    display: block;
}
.module_error-container ul {
    padding-left: 18px;
    padding-left: 1.125rem;
    list-style-type: disc;
}
.module_error-container ul > li {
    line-height: 24px;
    line-height: 1.5rem;
}
.module_error-container > br {
    display: none;
}
.module_error-container > span {
    display: block;
    line-height: 24px;
    line-height: 1.5rem;
}
.module_error-container > span:before {
    font-family: "q4-icons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\ec6b";
    margin-right: 5px;
}
.module_headline {
    font-weight: normal;
}
.module_headline-link,
.module-event-details .module_details-title {
    font-size: 3.2rem;
    color: #000000;
    line-height: 1.2;
}
.module_headline-link:hover,
.module_headline-link:focus {
    color: #1bc156;
}
.module-event-details .module_links .module_link {
    font-size: 14px;
    text-transform: uppercase;
}
.module-event-details .module_links .module_link:after {
    color: #909496;
    font-family: 'CircularSpotifyTxT-Book';
    font-size: 1.4rem;
}
.module-event-details .module_links .module_link[href*=".pdf"]:after,
.module-event-details .module_links .module_link[href*=".PDF"]:after {
    content: ' / pdf';
}
.module-event-details .module_links .module_link[href*=".xlsx"]:after,
.module-event-details .module_links .module_link[href*=".XLSX"]:after {
    content: '/ xlsx';
}
.module-event-details .module_links .module_link[href*=".aspx"]:after,
.module-event-details .module_links .module_link[href*=".html"]:after,
.module-event-details .module_links .module_link[href*=".HTML"]:after {
    content: ' / html';
}
.module-event-details .module_links .module_webcast .module_link:after {
    content: ' / html';
}
.module-event-details i {
    color: #1ed760;
    vertical-align: top;
}
.module-event-details .module_add-to-calendar-reveal i {
    margin-top: -1px;
}
.module_image {
    display: inline-block;
    max-width: 30%;
    margin-bottom: 16px;
    margin-bottom: 1rem;
}
.module_image--right {
    float: right;
    margin-left: 32px;
    margin-left: 2rem;
}
.module_image--left {
    float: left;
    margin-right: 32px;
    margin-right: 2rem;
}
.module_introduction {
    margin-bottom: 35px;
}
.module_item {
    padding: 30px 0 10px;
}
.module_item ~ .module_item {
    border-top: 1px solid #d9dadc;
}
.module_label {
    display: inline-block;
    margin-bottom: 5px;
    font-size: 1.4rem;
}
.module_label + .module_required {
    font-size: 14px;
    font-size: 0.875rem;
}
.module_links > *, .module_links li, .module_links .module_presentation {
    display: inline;
}
.module_link {
    display: inline-block;
    margin: 0 15px 5px 0;
    font-size: 14px;
    text-transform: uppercase;
}
.module_link i, .module_link:before {
    display: inline-block;
    padding-right: 2px;
}
.module_link > .module_link-text, .module_link > i {
    vertical-align: top;
}
.module_link > i:before {
    display: block;
}
.module_link[style="DISPLAY:block;"], .module_link[style="display: block;"] {
    display: inline-block !important;
}
.module_loader {
    display: inline-block;
    animation: spin 1s linear infinite;
}
.module_message {
    display: block;
    margin: 16px 0;
}
.module_message[style$="hidden;"], .module_message:empty {
    display: none;
}
.module_message--success {
    color: #23a217;
}
.module_message--success:before {
    font-family: "q4-icons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\ed71";
    margin-right: 8px;
    margin-right: 0.5rem;
}
.module_message--error {
    color: #b72121;
}
.module_message--error:before {
    font-family: "q4-icons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\ed4f";
    margin-right: 8px;
    margin-right: 0.5rem;
}
.module_nav-link, .module_nav .ModuleYearLink, .module_nav-link:visited, .module_nav .ModuleYearLink:visited {
    display: inline-block;
    margin-right: 5px;
    padding: 15px 30px 12px 30px;
    color: #fff;
    background-color: #1ed760;
    font-size: 1.4rem;
    border: none;
    border-radius: 35px;
    transition: 0.3s all ease-in-out;
}
.module_nav-link.selected, .module_nav-link:hover, .module_nav-link.selected:visited, .module_nav .ModuleYearLink.selected, .module_nav .ModuleYearLink.selected:visited, .module_nav-link:visited.selected, .module_nav-link:visited.selected:visited, .module_nav .ModuleYearLink:visited.selected, .module_nav .ModuleYearLink:visited.selected:visited {
    background: #1bc156;
    color: #fff;
}
@media only screen and (max-width: 480px) {
    .module_nav-link, .module_nav .ModuleYearLink, .module_nav-link:visited, .module_nav .ModuleYearLink:visited {
        margin-bottom: 10px;
    }
}
.module_options-label, .module_options-select {
    margin-right: 10px;
}
@media only screen and (max-width: 768px) {
    .module_options-label, .module_options-select {
        display: block;
        margin-bottom: 10px;
    }
}
@media only screen and (max-width: 480px) {
    .module_options-select, .module_options-submit {
        display: block;
        margin-bottom: 10px;
    }
}
.module_pager a {
    color: #333333;
}
.module_pager a[href] {
    color: #006fba;
}
.module_reminder .module_input.module_reminder-period, .module_reminder .module_input.module_reminder-email {
    margin-right: 10px;
}
.module_reminder.js--reminded {
    display: none;
}
.module_required {
    color: #333333;
}
.module_required-text {
    font-size: 1.3rem;
    color: #333333;
}
.module_rss {
    float: right;
}
.module_speakers li {
    margin-bottom: 5px;
}
.module_view-all-link {
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: bold;
    text-transform: uppercase;
}
.module_input[type="text"], .module_input[type="email"], .module_input[type="file"], .module_dropdown, .module textarea.module_input {
    display: block;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    /* Text area demands width*/
    width: 100%;
    max-width: none;
    padding: 15px 20px;
    border: 1px solid #dddfdf;
    border-radius: 0;
    background-color: transparent;
    font-family: 'CircularSpotifyTxT-Book';
    font-size: 1.6rem;
    color: #2a3035;
}
.module_input[type="text"]::-ms-clear, .module_input[type="email"]::-ms-clear, .module_input[type="file"]::-ms-clear, .module_dropdown::-ms-clear, .module textarea.module_input::-ms-clear {
    display: none;
}
.module textarea.module_input {
    resize: vertical;
}
.module_input[type="file"], .module_dropdown {
    cursor: pointer;
}
.module_input[type="file"] {
    line-height: 1.6rem;
}
.module_input--brand[type="text"] {
    display: inline-block;
    width: auto;
    padding: 15px 20px;
    border: 2px solid #006fba;
    background: transparent;
}
.module_dropdown {
    background: transparent url('../design/svg/dropdown-down.svg') no-repeat right 10px center;

}
.module_dropdown:focus {
    background: transparent url('../design/svg/dropdown-up.svg') no-repeat right 10px center;
}
.module_dropdown::-ms-expand {
    display: none;
}
.module-details .module_date-time {
    margin-bottom: 15px;
}

/*------- Captcha Component ------*/
.CaptchaContainer {
    display: none;
}
.CaptchaContainer table tr:nth-child(1) {
    display: none;
}
.CaptchaContainer table tr:nth-child(2) td {
    padding-bottom: 20px;
}
.CaptchaContainer table tr:nth-child(3) td {
    padding-bottom: 5px;
    font-size: 1.4rem;
}
.CaptchaContainer table tr:nth-child(3) td span {
    display: none !important;
}
.CaptchaContainer table tr:nth-child(4) span {
    display: none !important;
}
.CaptchaContainer table tr td {
    padding-right: 10px;
}
@media only screen and (max-width: 768px) {
    .CaptchaContainer table tr td {
        padding-right: 0;
    }
}
.CaptchaContainer input[type="text"] {
    appearance: none;
    -webkit-appearance: none;
    display: block;
    max-width: none;
    padding: 15px 20px;
    border: none;
    border-radius: 0;
    background-color: #f6f6f6;
    font-size: 1.6rem;
}
.fancybox-container .CaptchaContainer table tr:nth-child(4) td {
    padding-bottom: 20px;
}
.fancybox-container .CaptchaContainer table tr td {
    padding-right: 0;
}

/*- Investment Calculator Widget -*/
.module-calculator_input:not(:last-of-type) {
    margin-bottom: 20px;
}
.module-calculator_input h4 {
    margin-bottom: 12px;
    margin-bottom: 0.75rem;
}
.module-calculator_input label {
    display: inline-block;
    font-size: 1.4rem;
    margin-bottom: 5px;
}
.module-calculator_input input[type="text"] {
    background-color: rgba(0, 0, 0, 0.05);
}
.module-calculator_input input[type="checkbox"] + label {
    margin: 0;
}
.module-calculator_input-row {
    padding-bottom: 10px;
}
.module-calculator_input-row input[type="text"] {
    margin-top: 10px;
    max-width: 300px;
}
.module-calculator_input-row--other input[type="text"] {
    display: none;
}
.module-calculator_input-row--other input[type="text"].js--revealed {
    display: block;
}
@media screen and (min-width: 1024px) {
    .module-calculator_popup-container {
        min-width: 920px;
    }
}
@media screen and (min-width: 481px) and (max-width: 768px) {
    .module-calculator_popup-container .table thead {
        display: none;
    }
    .module-calculator_popup-container .table tbody {
        border-top: 2px solid #006fba;
        border-bottom: 2px solid #006fba;
    }
    .module-calculator_popup-container .table td {
        display: block;
    }
    .module-calculator_popup-container .table td:before {
        content: attr(data-heading) ": ";
        font-weight: bold;
    }
}
.module-calculator_info td:first-child:before {
    content: none;
}

/*- Committee Composition Widget -*/
.module-committee .module_container--outer {
    padding-bottom: 85px;
}
@media only screen and (max-width: 768px) {
    .module-committee .module_container--desktop {
        display: none;
    }
}
.module-committee .module_container--tablet {
    display: none;
}
@media only screen and (max-width: 768px) {
    .module-committee .module_container--tablet {
        display: block;
    }
}
.module-committee .module_header {
    display: block;
    color: #000;
    font-family: 'CircularSpotifyTxT-Bold';
    border-bottom: 1px solid #000;
}
.module-committee .module_item {
    padding: 0;
}
.module-committee .grid_col {
    padding: 20px 15px;
    text-align: center;
}
.module-committee .grid_col:first-child {
    text-align: left;
}
.module-committee_category.js--active .module_header i:before {
    content: "\edc2";
}
.module-committee_custom-role {
    margin-left: 5px;
}
.module-committee_bio {
    padding: 0 15px 20px;
    text-align: left;
}
.module-committee_bio p {
    margin: 0;
}
.module-committee_bio p:not(:last-of-type) {
    margin-bottom: 16px;
}
.module-committee_legend-container {
    padding: 20px 15px;
}
.module-committee_legend {
    display: inline-block;
    margin-right: 30px;
}
.module-committee_legend i {
    margin-right: 5px;
}

/*----- Download List Module -----*/
.module-downloads .module_nav {
    display: none;
}
.module-downloads .module_item {
    padding: 15px 0;
}
.module-downloads_thumbnail, .module-downloads_description, .module-downloads_date {
    display: none;
}
.module-downloads_title-link {
    position: relative;
    display: block;
    margin: 0;
    padding-right: 20px;
}
.module-downloads_title-link:after {
    font-family: "q4-icons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\ef3e";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
}

/*--------- Event Module ---------*/
.module-event .module_location, .module-event .module_speakers h4, .module-event .module_body {
    display: none;
}

.module-event .module_links ul {
    padding-left: 0px;
}

.module-event-latest .module_container--content {
    margin-bottom: 20px;
}
.module-event-latest .module_item {
    margin: 10px 0;
    padding: 0 0 0 20px;
    border: none;
    text-align: left;
}
@media only screen and (max-width: 768px) {
    .module-event-latest .module_item:first-child {
        width: 100%;
    }
}
.module-event-latest .module_item-wrap {
    padding: 30px;
    background: #f6f6f6;
}
.module-event-latest .module_date-time {
    margin-bottom: 15px;
    font-weight: normal;
}
.module-event-latest .module_headline {
    line-height: 150%;
    font-weight: 200;
}
.module-event-latest .module_links {
    margin: 0;
}
.module-event-upcoming .module_nav,
.module-news .module_nav {
    display: none;
}
.module-event-upcoming .module_item {
    padding: 0 0 10px;
}
.module-event-upcoming .module_item ~ .module_item {
    padding: 30px 0 10px;
}
.module-event-upcoming .module_not-found {
    margin-bottom: 0px;
}
.module-event-calendar {
    display: table;
    width: 100%;
}
.module-event-calendar .module_title-and-rss h2 {
    float: left;
}
.module-event-calendar .module_title-and-rss .module_rss--top {
    float: right;
}
.module-event-calendar .module_container--content {
    position: relative;
}
.module-event-calendar_event-container {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    width: 0;
    height: 0;
    padding: 0;
    margin: 0;
    opacity: 0;
    transition: width 0s linear 0.35s, height 0s linear 0.35s, padding 0s linear 0.35s, opacity 0.25s ease-in-out 0s;
    z-index: 5;
}
.module-event-calendar_event-container.js--visible {
    width: 100%;
    height: 100%;
    padding: 50px 50px 20px;
    transition: width 0s linear 0s, height 0s linear 0s, padding 0s linear 0s, opacity 0.25s ease-in-out 0.1s;
    opacity: 1;
    z-index: 10;
    margin: 0px;
}
.module-event-calendar_calendar-container, .module-event-calendar_event-container {
    display: table-cell;
    width: 50%;
    text-align: center;
    vertical-align: middle;
}
.module-event-calendar_calendar-container {
    padding-right: 20px;
}
.module-event-calendar_event-container {
    padding: 50px;
    background-color: #f0f1f2;
}
.module-event-calendar_event-container .module_headline-link {
    font-size: 2.5rem;
}
.module-event-calendar_event-container .module_links .module_link {
    font-family: 'CircularSpotifyTxT-Bold';
}
.module-event-calendar_event-container .module_links .module_link i {
    vertical-align: top;
}
.module-event-calendar_splash i {
    font-size: 40px;
    color: #1ed760;
}
.module-event-calendar_splash p {
    font-size: 14px;
    line-height: 19.2px;
}
.module-event-calendar_controls {
    padding: 20px 15px;
    background-color: #45366f;
    font-weight: bold;
    color: #fff;
    z-index: 10;
    position: relative;
}
.module-event-calendar_previous-month, .module-event-calendar_month, .module-event-calendar_next-month {
    display: block;
}
.module-event-calendar_previous-month, .module-event-calendar_next-month {
    cursor: pointer;
}
.module-event-calendar_previous-month {
    float: left;
}
.module-event-calendar_next-month {
    float: right;
}
.module-event-calendar_day-container {
    border-bottom: 1px solid rgba(0, 111, 186, 0.2);
}
.module-event-calendar_day {
    position: relative;
    width: 14.285%;
    margin: 0;
    padding: 8px 0 25px;
    border-top: 1px solid rgba(0, 111, 186, 0.2);
    border-left: 1px solid rgba(0, 111, 186, 0.2);
}
.module-event-calendar_day.calendar-dow-6 {
    border-right: 1px solid rgba(0, 111, 186, 0.2);
}
.module-event-calendar_day--name {
    padding: 15px 0 10px;
    border: none;
}
.module-event-calendar_day--adjacent-month {
    color: rgba(51, 51, 51, 0.1);
}
.module-event-calendar_day--today {
    background: #f0f1f2;
}
.module-event-calendar_day--event {
    cursor: pointer;
}
.module-event-calendar_day--event:after {
    content: "";
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    height: 10px;
    width: 10px;
    background-color: #1ed760;
    border-radius: 100%;
}

.module-event-calendar_day--selected {
    background-color: #1ed760;
    color: #fff;
}
.module-event-calendar_day--selected:after {
    background-color: #fff;
}
@media only screen and (max-width: 480px) {
    .module-event-calendar_day {
        display: inline-block;
    }
}
.module-event-calendar .module_item {
    padding: 0;
}
.module-event-calendar .module_date-time, .module-event-calendar .module_headline {
    margin-bottom: 20px;
}
.module-event-calendar .module_links > div:not(:first-of-type) .module_link {
    padding-left: 15px;
    border-left: 1px solid #1ed760;
}
.module-event-calendar .module_add-to-calendar {
    margin: 0;
}
@media only screen and (max-width: 768px) {
    .module-event-calendar {
        display: block;
    }
    .module-event-calendar_calendar-container, .module-event-calendar_event-container {
        display: block;
        width: 100%;
    }
    .module-event-calendar_calendar-container {
        padding-right: 0;
    }
    .module-event-calendar_event-container {
        margin-top: 20px;
    }
}
.module-event .module_link[href$=".mp3"] i:before, .module-event .module_link[href$=".wmv"] i:before, .module-event-details .module_link[href$=".mp3"] i:before, .module-event-details .module_link[href$=".wmv"] i:before, .module-event-latest .module_link[href$=".mp3"] i:before, .module-event-latest .module_link[href$=".wmv"] i:before, .module-event-upcoming .module_link[href$=".mp3"] i:before, .module-event-upcoming .module_link[href$=".wmv"] i:before, .module-event-archive .module_link[href$=".mp3"] i:before, .module-event-archive .module_link[href$=".wmv"] i:before, .module-event-calendar .module_link[href$=".mp3"] i:before, .module-event-calendar .module_link[href$=".wmv"] i:before {
    content: "\e952";
}
.module-event .module_link[href$=".xls"] i:before, .module-event .module_link[href$=".csv"] i:before, .module-event-details .module_link[href$=".xls"] i:before, .module-event-details .module_link[href$=".csv"] i:before, .module-event-latest .module_link[href$=".xls"] i:before, .module-event-latest .module_link[href$=".csv"] i:before, .module-event-upcoming .module_link[href$=".xls"] i:before, .module-event-upcoming .module_link[href$=".csv"] i:before, .module-event-archive .module_link[href$=".xls"] i:before, .module-event-archive .module_link[href$=".csv"] i:before, .module-event-calendar .module_link[href$=".xls"] i:before, .module-event-calendar .module_link[href$=".csv"] i:before {
    content: "\eeae";
}
.module-event .module_link[href$=".mp4"] i:before, .module-event .module_link[href$=".flv"] i:before, .module-event .module_link[href$=".avi"] i:before, .module-event-details .module_link[href$=".mp4"] i:before, .module-event-details .module_link[href$=".flv"] i:before, .module-event-details .module_link[href$=".avi"] i:before, .module-event-latest .module_link[href$=".mp4"] i:before, .module-event-latest .module_link[href$=".flv"] i:before, .module-event-latest .module_link[href$=".avi"] i:before, .module-event-upcoming .module_link[href$=".mp4"] i:before, .module-event-upcoming .module_link[href$=".flv"] i:before, .module-event-upcoming .module_link[href$=".avi"] i:before, .module-event-archive .module_link[href$=".mp4"] i:before, .module-event-archive .module_link[href$=".flv"] i:before, .module-event-archive .module_link[href$=".avi"] i:before, .module-event-calendar .module_link[href$=".mp4"] i:before, .module-event-calendar .module_link[href$=".flv"] i:before, .module-event-calendar .module_link[href$=".avi"] i:before {
    content: "\e95e";
}
.module-event .module_link[href$=".html"]:not(.module_webcast-link) i:before, .module-event .module_link[href$=".aspx"]:not(.module_webcast-link) i:before, .module-event .module_link[href$=".htm"]:not(.module_webcast-link) i:before, .module-event .module_link[href$=".com"]:not(.module_webcast-link) i:before, .module-event-details .module_link[href$=".html"]:not(.module_webcast-link) i:before, .module-event-details .module_link[href$=".aspx"]:not(.module_webcast-link) i:before, .module-event-details .module_link[href$=".htm"]:not(.module_webcast-link) i:before, .module-event-details .module_link[href$=".com"]:not(.module_webcast-link) i:before, .module-event-latest .module_link[href$=".html"]:not(.module_webcast-link) i:before, .module-event-latest .module_link[href$=".aspx"]:not(.module_webcast-link) i:before, .module-event-latest .module_link[href$=".htm"]:not(.module_webcast-link) i:before, .module-event-latest .module_link[href$=".com"]:not(.module_webcast-link) i:before, .module-event-upcoming .module_link[href$=".html"]:not(.module_webcast-link) i:before, .module-event-upcoming .module_link[href$=".aspx"]:not(.module_webcast-link) i:before, .module-event-upcoming .module_link[href$=".htm"]:not(.module_webcast-link) i:before, .module-event-upcoming .module_link[href$=".com"]:not(.module_webcast-link) i:before, .module-event-archive .module_link[href$=".html"]:not(.module_webcast-link) i:before, .module-event-archive .module_link[href$=".aspx"]:not(.module_webcast-link) i:before, .module-event-archive .module_link[href$=".htm"]:not(.module_webcast-link) i:before, .module-event-archive .module_link[href$=".com"]:not(.module_webcast-link) i:before, .module-event-calendar .module_link[href$=".html"]:not(.module_webcast-link) i:before, .module-event-calendar .module_link[href$=".aspx"]:not(.module_webcast-link) i:before, .module-event-calendar .module_link[href$=".htm"]:not(.module_webcast-link) i:before, .module-event-calendar .module_link[href$=".com"]:not(.module_webcast-link) i:before {
    content: "\eecd";
}

/*--------Event Archive-------*/

.module-event-archive .module_item {
    padding-bottom: 35px;
}

.module-event-archive .module_item:last-child {
    border-bottom: 1px solid #d9dadc;
}

.module-event-archive .module_date-time {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.module-event-archive .module_headline {
    margin-bottom: 20px;
}

.module-event-archive .module_headline-link:hover {
    color: #1bc156;
}

.module-event-archive .module_links ul {
    padding-left: 0px;
}

.module-event-archive .module_links > *,
.module-event-details .module_links > * {
    font-family: 'CircularSpotifyTxT-Bold';
}

.module-event-archive .module_quarter-type,
.module-event--investor .module_quarter-type,
.module-event-details .module-event_prefix {
    color: #909496;
    font-family: 'CircularSpotifyTxT-Book';
    font-size: 1.4rem;
}
.module-event-details .module-event_prefix {
    margin-right: 10px;
}

.module-event-archive .module_financials .module_link.module_financial-link:before {
    font-family: 'q4-icons' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
/*.module-event-archive .module_financials .module_link.module_financial-link:before {
    content: "\eecd";
}
.module-event-archive .module_financials a[href*=".pdf"].module_link.module_financial-link:before,
.module-event-archive .module_financials a[href*=".PDF"].module_link.module_financial-link:before {
    content: "\e903";
}
.module-event-archive .module_financials .module_link.module_financial-link.webcast:before {
    content: "\e989";
}*/
.module-event-archive .module_links > div .module_link i,
.module-event-archive .module_links > div .module_link span,
.module-event-archive .module_links > ul .module_link i,
.module-event-archive .module_links > ul .module_link span {
    display: inline-block;
    vertical-align: top;
}

@media only screen and (max-width: 1024px) {
    .events-page .pane_left-and-content-container {
        margin: 0px 0px;
    }

    .events-page .pane--left {
        width: 100%;
        float: none;
        padding: 0px 0px;
    }

    .events-page .pane--content {
        width: 100%;
        float: none;
        padding: 0px 0px;
        margin-top: 45px;
    }
}


/*----------Upcoming Events----------*/
.module-event-upcoming .module_item {
    padding-bottom: 35px;
}

.module-event-upcoming .module_item:last-child {
    border-bottom: 1px solid #d9dadc;
}

.module-event-upcoming .module_date-time {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.module-event-upcoming .module_headline {
    margin-bottom: 20px;
}

.module-event-upcoming .module_headline-link:hover {
    color: #1bc156;
}

.module-event-upcoming .module_links ul {
    padding-left: 0px;
}

.module-event-upcoming .module_links > * {
    font-family: 'CircularSpotifyTxT-Bold';
}

.module-event-upcoming .module_quarter-type,
.module-event-calendar .module_quarter-type {
    color: #909496;
    font-family: 'CircularSpotifyTxT-Book';
}

.module-event-calendar .module_container--content .module-event-calendar_event-container .module_close {
    position: absolute;
    top: 30px;
    right: 30px;
    cursor: pointer;
}

/*---------- FAQ Module ----------*/
.module-faq .module_item {
    padding: 15px 23px;
    border-top: 1px solid #d9dadc;
    border-left: 1px solid #d9dadc;
    border-right: 1px solid #d9dadc;
    border-bottom: 1px solid #d9dadc;
}
.module-faq .module_item ~ .module_item {
    border-top: none;
}
.module-faq_question {
    margin-top: 0;
    margin-bottom: 0px;
    cursor: pointer;
    color: #22272b;
    font-family: 'CircularSpotifyTxT-Book';
}
.module_item.js--active .module-faq_question {
    font-family: 'CircularSpotifyTxT-Bold';
}
.module-faq_question:before {
    content: "\edc2";
    font-family: 'q4-icons' !important;
    float: right;
}
.module_item.js--active .module-faq_question:before {
    content: "\edba";
}
.module-faq_answer {
    margin-top: 20px;
}
.module-faq .toggle-all > a.button {
    display: inline-block;
    margin-bottom: 20px;
}
.module-faq_answer p {
    margin: 0;
    padding: 0px 0px 35px;
    color: #22272b;
}
.module-faq .toggle-all a:before {
    content: "Show all";
}
.module-faq .toggle-all.js--active a:before {
    content: "Hide all";
}

/*--- Financial Report Modules ---*/
.module-financial-quarter .module_filters {
    padding-left: 0px;
    list-style-type: none;
    float: left;
}

.module-financial-quarter .module_filters li {
    display: inline-block;
    text-transform: uppercase;
    padding: 0px 22px;
    font-size: 1.4rem;
    font-family: 'CircularSpotifyTxT-Bold';
    cursor: pointer;
}

.module-financial-quarter .module_filters li:hover span,
.module-financial-quarter .module_filters li.js--active span {
    color: #000;
    border-bottom: 3px solid #1ed760;
    padding-bottom: 6px;
}

.module-financial-quarter .module_filters li:first-child {
    padding-left: 0px;
}

.module-financial-quarter .module_filters li:last-child {
    padding-right: 0px;
}

.module-financial-quarter .module_options {
    float: right;
    margin-bottom: 60px;
}

.module-financial-year .module_cover {
    margin-bottom: 15px;
}
.module-financial-year .module_cover img {
    display: inline-block;
    border: 1px solid #d9dadc;
}
.module-financial-quarter .module_item ~ .module_item {
    border-top: none;
}
.module-financial-year .module_item {
    padding: 0;
}
.module-financial-year .module_item ~ .module_item {
    border: none;
}
.module-financial-year .module_links {
    margin: 0;
}
.module-financial-year .module-financial_year {
    text-align: center;
}

@media only screen and (max-width: 480px) {
    .module-financial-year .module-financial_year {
        margin-top: 20px;
    }

    .module-financial-year .module-financial_year:first-child {
        margin-top: 0px;
    }
}

.module-financial-quarter h2 {
    color: #000000;
}

.module-financial-quarter .module_item {
    padding: 0px;
}

.module-financial-quarter .module_links > * {
    display: block;
}

.module_links .module_quarter-content {
    padding-right: 95px;
}

.module_links .module_quarter-content > div:first-child {
    margin-bottom: 12px;
}

.module-financial-quarter .module_quarter-category,
.module-financial-quarter .module_quarter-date {
    display: inline-block;
}

.module-financial-quarter .module_quarter-category {
    font-size: 1.2rem;
    color: #1ed760;
    text-transform: uppercase;
    font-family: 'CircularSpotifyTxT-Bold';
    margin-right: 17px;
}

.module-financial-quarter .module_quarter-date {
    font-size: 1.2rem;
}

.module-financial-quarter .module_quarter-title a {
    font-size: 2rem;
    color: #000000;
    font-family: 'CircularSpotifyTxT-Bold';
}

.module-financial-quarter .module_quarter-type {
    font-size: 1.4rem;
    text-transform: uppercase;
}

.module-financial-quarter .module_link {
    margin: 0px;
    font-family: 'CircularSpotifyTxT-Bold';
}

.module-financial-quarter .module_quarter-wrapper {
    position: relative;
}
.module-financial-quarter .module_quarter-content {
    border-bottom: 1px solid #dddfdf;
    padding: 24px 0;
}

.module-financial-quarter .module_quarter-wrapper:nth-last-child(2) {
    margin-bottom: 0px;
}

.module-financial-quarter .module_quarter-download-btn {
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media only screen and (max-width: 920px) {
    .module-financial-quarter .module_filters {
        float: none;
        display: block;
    }

    .module-financial-quarter .module_options {
        float: none;
        display: block;
        margin: 30px 0px 60px 0px;
    }
}

@media only screen and (max-width: 600px) {
    .module-financial-quarter .module_filters li {
        padding: 0px 44px 0px 0px;
        margin: 10px 0px;
    }
}

@media only screen and (max-width: 480px) {
    .module-financial-quarter {
        margin-top: 40px;
    }

    .module-financial-quarter .module_quarter-category {
        font-size: 0.9rem;
    }

    .module-financial-quarter .module_quarter-date {
        font-size: 0.9em;
    }

    .module_links .module_quarter-content > div:first-child {
        margin-bottom: 6px;
    }

    .module-financial-quarter .module_quarter-title a {
        font-size: 1.5rem;
    }

    .module-financial-quarter .module_quarter-type {
        font-size: 1.1rem;
        text-transform: uppercase;
    }

    .module-financial-quarter .module_quarter-download-btn {
        display: none;
    }

    .module-financial-quarter .module_quarter-wrapper {
        padding-bottom: 24px;
        margin-bottom: 30px;
    }

    .module-financial-quarter .module_quarter-wrapper {
        padding-bottom: 15px;
        margin-bottom: 18px;
    }
}

.module-financial-table_header {
    color: #000;
    font-family: 'CircularSpotifyTxT-Bold';
    border-bottom: 1px solid #000;
}
.module-financial-table_header-year-container {
    text-align: center;
}
.module-financial-table_header-year, .module-financial-table_header-category.grid_col {
    padding: 20px 15px;
}
.module-financial-table_body-row {
    border-bottom: 1px solid #d9dadc;
}
.module-financial-table_body-row:last-child {
    border-bottom: none;
}
.module-financial-table_body-year-container {
    text-align: center;
}
.module-financial-table_body-year, .module-financial-table_body-category.grid_col {
    padding: 15px;
}
.module-financial-table_item {
    display: inline-block;
    margin-right: 15px;
    font-size: 1.8rem;
    font-weight: normal;
}
.module-financial-table_item ~ .module_item {
    margin-right: 5px;
}
.module-financial-table_item--empty {
    color: #d9dadc;
}
@media only screen and (max-width: 768px) {
    .module-financial-table_item {
        margin-right: 10px;
    }
}
@media only screen and (max-width: 480px) {
    .module-financial-table_item {
        margin: 5px;
    }
}
.module-financial-table .slick-slider {
    display: inline-block;
    padding: 0;
}
.module-financial-table .slick-slide:focus {
    outline: none;
}
.module-financial-table .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    cursor: pointer;
    z-index: 10;
    font-weight: bold;
}
.module-financial-table .slick-prev {
    left: 30px;
}
.module-financial-table .slick-next {
    right: 30px;
}
.module-financial-table .slick-disabled {
    opacity: 0.1;
    cursor: default;
}

@media only screen and (max-width: 480px) {
    .module-financial-table .slick-prev {
        left: 10px;
    }
    .module-financial-table .slick-next {
        right: 10px;
    }
}


/* Landing Page - Latest Quarterly Result Widget */
.module-latest-quarter h2 {
    color: #000000;
}

.module-latest-quarter .module_item {
    padding: 0px;
}

.module-latest-quarter .module_links > * {
    display: block;
}

.module_links .module_quarter-content > div:first-child {
    margin-bottom: 12px;
}

.module-latest-quarter .module_quarter-category,
.module-latest-quarter .module_quarter-date {
    display: inline-block;
}

.module-latest-quarter .module_quarter-category {
    font-size: 1.2rem;
    color: #1ed760;
    text-transform: uppercase;
    font-family: 'CircularSpotifyTxT-Bold';
    margin-right: 17px;
}

.module-latest-quarter .module_quarter-date {
    font-size: 1.2rem;
}

.module-latest-quarter .module_quarter-title a {
    font-size: 2rem;
    color: #000000;
    font-family: 'CircularSpotifyTxT-Bold';
}

.module-latest-quarter .module_quarter-type {
    font-size: 1.4rem;
    text-transform: uppercase;
}

.module-latest-quarter .module_link {
    margin: 0px;
    font-family: 'CircularSpotifyTxT-Bold';
}

.module-latest-quarter .module_quarter-wrapper {
    padding-bottom: 24px;
    border-bottom: 1px solid #dddfdf;
    margin-bottom: 30px;
    position: relative;
}

.module-latest-quarter .module_quarter-download-btn {
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media only screen and (max-width: 768px) {
    .module-latest-quarter {
        margin-top: 40px;
    }
}

@media only screen and (max-width: 480px) {

    .module_links .module_quarter-content > div:first-child {
        margin-bottom: 6px;
    }

    .module-latest-quarter .module_quarter-download-btn {
        display: none;
    }

    .module-latest-quarter .module_quarter-wrapper {
        padding-bottom: 24px;
        margin-bottom: 30px;
    }

    .module-latest-quarter .module_quarter-wrapper {
        padding-bottom: 15px;
        margin-bottom: 18px;
    }
}

@media only screen and (max-width: 320px) {
    .module-latest-quarter .module_quarter-category {
        font-size: 0.9rem;
    }

    .module-latest-quarter .module_quarter-date {
        font-size: 0.9em;
    }

    .module-latest-quarter .module_quarter-title a {
        font-size: 1.5rem;
    }

    .module-latest-quarter .module_quarter-type {
        font-size: 1.1rem;
        text-transform: uppercase;
    }
}

/*-------------Financial Quarter--------------*/


/*------Quick Facts-----*/
.module-quick-facts,
.module-quick-facts h2 {
    color: #fff;
}

.module-quick-facts .module_counter-wrapper {
    margin: 0px -10px;
}

.module-quick-facts .module_counter-wrapper > div:nth-last-child(1) .module_item,
.module-quick-facts .module_counter-wrapper > div:nth-last-child(2) .module_item {
    border-bottom: none;
}

.module-quick-facts .module_item {
    padding: 0px 0px 42px 0px;
    margin: 0px 10px 25px 10px;
    min-height: 260px;
    position: relative;
    border-bottom: 1px solid #fff;
}

.module-quick-facts .module-counter_headline,
.module-quick-facts .module-counter_period {
    display: block;
}

.module-quick-facts .module-counter_headline {
    margin-bottom: 6px
}

.module-quick-facts .module-counter_period {
    margin-bottom: 30px;
}

.module-quick-facts .module_counter-number {
    font-size: 12rem;
    font-family: 'CircularSpotifyTxT-Bold';
    display: inline-block;
    position: absolute;
    left: 0;
    top: 64px;
}

.module-quick-facts .module_counter-text {
    font-size: 3.2rem;
    display: inline-block;
    font-family: 'CircularSpotifyTxT-Book';
}

@media only screen and (max-width: 1024px) {
    .module-quick-facts .module_counter-wrapper > div:nth-last-child(2) .module_item {
        border-bottom: 1px solid #fff;
    }
}

@media only screen and (max-width: 768px) {
    .module-quick-facts .module-counter_headline,
    .module-counter_period {
        font-size: 1.2rem;
    }

    .module-quick-facts .module_counter-number {
        font-size: 9rem;
    }

    .module-quick-facts .module_counter-text {
        font-size: 2.4rem;
    }

    .module-quick-facts .module_item {
        min-height: 182px;
    }

    .module-quick-facts .module_counter-number {
        top: 57px;
    }

    .module-quick-facts .module_item {
        padding: 0px 0px 35px 0px;
    }

    .module-quick-facts .module_counter-wrapper > div:nth-last-child(1) .module_item,
    .module-quick-facts .module_counter-wrapper > div:nth-last-child(2) .module_item {
        border-bottom: none;
    }
}

@media only screen and (max-width: 560px) {
    .module-quick-facts .module_counter-wrapper > div {
        width: 100%;
    }

    .module-quick-facts .module_counter-wrapper > div:nth-last-child(2) .module_item {
        border-bottom: 1px solid #fff;
    }

    .module-quick-facts .module_counter-wrapper > div:nth-last-child(1) .module_item {
        padding-bottom: 0px;
        margin-bottom: 0px;
    }
}

/*------ Formbuilder Module ------*/
.module-form--custom .module_container--content {
    display: none;
}
.module-form--custom .module_container--content.js--visible {
    display: inline-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;
}
.MessageSent .module_container.module_container--inner p:before {
    font-family: "q4-icons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\ed71";
    margin-right: 8px;
    margin-right: 0.5rem;
}
.MessageSent .module_container.module_container--inner p {
    color: #23a217;
}
.module-form .module_container--captcha > div .ErrorMessage {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    font-size: 0.875rem;
    color: #b72121;
}
.module-form .module_container--captcha > div .ErrorMessage[style="visibility: hidden;"] {
    display: none;
}
.module-form_item {
    display: inline-block;
    width: 50%;
    margin-bottom: 20px;
    padding-left: 20px;
    vertical-align: top;
}
.module-form_item > label, .module-form_item legend {
    display: inline-block;
    margin-bottom: 5px;
    font-size: 14px;
    font-size: 0.875rem;
}
.module-form_item legend {
    float: left;
    margin-bottom: 15px;
    font-size: 16px;
    font-size: 1rem;
}
.module-form_item legend ~ ul {
    clear: both;
}
.module-form_item ul li:not(:last-of-type) {
    padding-bottom: 5px;
}
.module-form_item--document-request, .module-form_item--are-you-an-investor {
    width: 100%;
}
@media only screen and (max-width: 768px) {
    .module-form_item {
        width: 100%;
        padding-left: 0;
    }
}
.module-form_error-text {
    color: #b72121;
}
.module-form_error-text[style="visibility:hidden;"] {
    display: none;
}
.module-form .CaptchaContainer {
    display: block;
}
.module-form .CaptchaContainer input[type="text"] {
    width: 100%;
}

.module-glossary .module_header {
    display: block;
}
.module-glossary .module_header table {
    width: 100%;
    table-layout: fixed;
}
.module-glossary .module_header table a {
    color: #333333;
    font-weight: normal;
}
.module-glossary .module_header table a[href] {
    color: #006fba;
}

/*---------- Job Modules ---------*/
.module-job-details_description-container {
    margin-bottom: 35px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}
.module-job-details_description {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.module-job-details_description label {
    font-weight: normal;
}
.module-job-details_description input {
    width: auto;
    max-width: none;
    padding: 0;
    border: none;
    float: right;
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    font-size: 1rem;
    font-weight: 300;
    line-height: 0;
}
@media only screen and (max-width: 480px) {
    .module-job-details_description label:after {
        content: ":";
    }
    .module-job-details_description input {
        display: block;
        float: none;
        margin-top: 8px;
    }
}
.module-job-details .grid_col {
    padding: 15px 20px;
}
.module-job-application_table {
    display: block;
    width: 100%;
    margin-left: -20px;
    font-size: 0;
}
.module-job-application_table tr {
    display: inline-block;
    width: 50%;
    margin-bottom: 20px;
    padding-left: 20px;
    vertical-align: top;
    font-size: 16px;
    font-size: 1rem;
}
.module-job-application_table tr:last-child {
    margin-bottom: 0;
}
.module-job-application_table tr.module-job-application_cover-letter-text, .module-job-application_table tr.module-job-application_resume-text {
    width: 100%;
}
.module-job-application_table tr td {
    display: block;
    position: relative;
}
.module-job-application_table tr label {
    display: inline-block;
    margin-bottom: 5px;
    font-size: 14px;
    font-size: 0.875rem;
}
@media only screen and (max-width: 768px) {
    .module-job-application_table {
        margin-left: 0;
    }
    .module-job-application_table tr {
        width: 100%;
        padding-left: 0;
    }
}
.module-job-application .module_required {
    font-size: 14px;
    font-size: 0.875rem;
}

/*----- Miscellaneous Modules ----*/
.module-script {
    display: none;
}

.module-slideshow_viewer {
    display: inline-block;
    width: 100%;
    max-width: 640px;
}
@media only screen and (max-width: 480px) {
    .module-slideshow_viewer {
        max-width: 100%;
        overflow: hidden;
    }
}
.module-slideshow_link-container {
    margin-top: 25px;
}
.module-slideshow_link {
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: bold;
    text-transform: uppercase;
}
.module-slideshow iframe {
    width: 100%;
    max-width: 100%;
}

.module-rss p + h2 {
    margin: 40px 0 30px;
}

.module-rss .module_link > i {
    vertical-align: top;
}

/*==================================
 ------- Navigation Modules -------
==================================*/

/*----Main Navigation-----*/
.nav_close {
    display: none;
}
.nav--main {
    float: right;
    margin-top: 33px;
    position: relative;
    z-index: 100;
    transition: all 0.3s ease-in-out;
    opacity: 1;
}
.js--event .nav--main {
    opacity: 0;
}
.nav--main .level1 > li {
    display: inline-block;
    margin: 0px 20px;
    position: relative;
}
.nav--main > li:last-child {
    margin-right: 0px;
}
.nav--main li a {
    color: #fff;
    font-size: 1.6rem;
    font-family: 'CircularSpotifyTxT-Bold';
    text-transform: capitalize;
    cursor: pointer;
    padding-bottom: 6px;
}

.nav--main li.selected > a, .nav--main li.expanded > a, 
.nav--main li > a:hover, .nav--main li > a:focus {
    outline: none;
    border-bottom: 3px solid #fff;
}

.nav--main .level1 li ul {
    display: none;
    position: absolute;
    top: 140%;
    left: 0;
    width: 250px;
    padding-left: 20px;
    background-color: #B1348E;
}

.nav--main .level1 li.has-children.js--expanded > ul {
    display: block;
}

.nav--main .level1 .level2 {
    padding: 10px 0px 10px 20px;
}

.nav--main .level2 li a {
    font-size: 1.4rem;
    text-transform: capitalize;
    padding: 5px 0px;
    display: inline-block;
}

.nav--main .level1 > li:last-child .level2 {
    top: 100%;
    right: 0;
}

@media only screen and (max-width: 1220px) {
    .nav--main .level1 > li {
        margin: 0px 10px;
    }
}

@media only screen and (max-width: 1200px) {
    .nav--main{
        display: none;
    }
}

/*----Mobile Main Navigation-----*/
.module_mobile-close {
    width: 15px;
    height: 15px;
    color: #fff;
    position: absolute;
    right: 20px;
    top: 18px;
}

.nav--main-mobile li a {
    color: #fff;
    font-family: 'CircularSpotifyTxT-Bold';
}

.nav--main-mobile .level1 > li {
    display: block;
    padding-top: 15px;
}

.nav--main-mobile .level1 > li:last-child {
    padding-bottom: 0px;
}

.nav--main-mobile .level1 > li > a {
    font-size: 2.2rem;
    line-height: 1.36;
}

.nav--main-mobile .level1 > li:hover > a, .nav--main-mobile .level1 > li.selected > a,
.nav--main-mobile .level2 > li:hover > a, .nav--main-mobile .level2 > li.selected > a {
    color: #1ed760;
}

.nav--main-mobile .level2 {
    padding-top: 10px;
    display: none;
}

.nav--main-mobile .level1 li.has-children.sfHover > ul,
.nav--main-mobile .level1 li.has-children.js--expanded > ul {
    display: block;
}

.nav--main-mobile .level2 > li > a {
    font-size: 2rem;
    padding: 10px 0px 10px 15px;
    display: block;
}

.module-logo--mobile {
    position: absolute;
    left: 20px;
    bottom: 30px;
    display: block;
    width: 80px;
    height: 24px;
    background: url('../design/spotify-logo.svg') left center no-repeat;
}

/*----------Secondary Navigation-----------*/
.nav--secondary {
    background: #006fba;
    text-align: center;
    letter-spacing: 1.6px;
}
.nav--secondary .level1 > li.selected, .nav--secondary .level1 > li.expanded {
    display: block;
}
.nav--secondary .level1 > li.selected > a, .nav--secondary .level1 > li.expanded > a {
    display: none;
}
.nav--secondary .level2 {
    display: table;
    width: 100%;
}
.nav--secondary .level2 > li {
    position: relative;
    display: table-cell;
}
.nav--secondary .level2 > li:hover, .nav--secondary .level2 > li.selected, .nav--secondary .level2 > li.expanded {
    background: #005894;
}
.nav--secondary .level2 > li a {
    display: block;
    padding: 20px;
    font-size: 14px;
    font-size: 0.875rem;
}
.nav--secondary .level2 > li a:focus {
    outline: none;
}
.nav--secondary .level3 {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    width: 100%;
    min-width: 200px;
    border-top: 2px solid #fff;
}
.nav--secondary .level3 > li {
    text-align: left;
}
.nav--secondary .level3 > li a {
    background: #005894;
}
.nav--secondary .level3 > li a:hover, .nav--secondary .level3 > li a:focus {
    outline: none;
    background: #006fba;
}
.nav--secondary .level3 > li.selected a {
    background: #006fba;
}
@media only screen and (max-width: 1024px) {
    .nav--secondary {
        text-align: left;
    }
    .nav--secondary li {
        border-top: 1px solid rgba(0, 0, 0, 0.05);
    }
    .nav--secondary li.has-children > a:after {
        float: right;
        font-family: "q4-icons";
        speak: none;
        font-style: normal;
        font-weight: normal;
        font-variant: normal;
        text-transform: none;
        line-height: 1;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        content: "\edbe";
    }
    .nav--secondary li.js--expanded > a:after {
        content: "\edc2";
    }
    .nav--secondary a {
        display: block;
        text-transform: uppercase;
        font-weight: normal;
    }
    .nav--secondary .level1 > li {
        display: block;
    }
    .nav--secondary .level1 > li.selected a, .nav--secondary .level1 > li.expanded a {
        display: block;
    }
    .nav--secondary .level1 > li.js--expanded {
        background: #005894;
    }
    .nav--secondary .level1 > li.js--expanded a {
        display: block;
    }
    .nav--secondary .level1 > li.js--expanded .level2 {
        display: block;
    }
    .nav--secondary .level1 > li > a {
        padding: 20px;
    }
    .nav--secondary .level2 {
        display: none;
    }
    .nav--secondary .level2 > li {
        display: block;
    }
    .nav--secondary .level2 > li.js--expanded .level3 {
        display: block;
    }
    .nav--secondary .level2 > li > a {
        padding: 20px 20px 20px 48px;
        font-size: 16px;
        font-size: 1rem;
    }
    .nav--secondary .level3 {
        position: static;
        border: none;
    }
    .nav--secondary .level3 > li {
        display: block;
    }
    .nav--secondary .level3 > li > a {
        padding: 20px 20px 20px 72px;
        font-size: 16px;
        font-size: 1rem;
    }
}
@media screen and (max-width: 765px) and (orientation: landscape) {
    .nav--secondary {
        padding-bottom: 85px;
    }
}

@media only screen and (max-width: 1024px) {
    .nav--sitemap {
        max-width: none;
        padding-left: 20px;
        padding-right: 20px;
    }
}

.nav--sitemap {
    padding-bottom: 70px;
}
.module-sitemap .module_container--outer {
    padding-bottom: 45px;
}
.module-sitemap h2 {
    margin-bottom: 0px;
}
.nav--sitemap a {
    display: inline-block;
}
.nav--sitemap .level1 > li:not(:last-of-type) {
    margin-bottom: 35px;
}
.nav--sitemap .level1 > li > a, .nav--sitemap .level1 > li > a:visited {
    margin-bottom: 15px;
    font-size: 2.4rem;
    text-transform: uppercase;
}
.nav--sitemap .level2 > li, .nav--sitemap .level3 > li {
    padding: 5px 0;
}
.nav--sitemap .level2 > li > a, .nav--sitemap .level3 > li > a {
    padding-left: 20px;
    text-transform: uppercase;
}
.nav--sitemap .level2 > li > a {
    margin-bottom: 5px;
}
.nav--sitemap .level3 > li {
    padding-left: 15px;
}

/*-------- News Module CSS -------*/
.module-news .module_body {
    display: none;
}

.module-news .module_item:last-child .module_links {
    margin-bottom: 0px;
}

.module-news .module_not-found {
    margin-bottom: 0px;
}

.module-news .module_link-text {
    font-size: 14px;
    text-transform: uppercase;
    font-family: 'CircularSpotifyTxT-Bold';
}

.module-news-latest h2{
    color: #000000;
}
.module-news-latest .module_container--content {
    margin-bottom: 20px;
}
.module-news-latest .module_item {
    margin: 10px 0 20px;
    padding: 0 0 0 20px;
    border: none;
    text-align: left;
}

@media only screen and (max-width: 768px) {
    .module-news-latest .module_item:first-child {
        width: 100%;
    }
}
.module-news-latest .module_item-wrap {
    padding: 30px;
    background: #fff;
}
.module-news-latest .module_date-time {
    margin-bottom: 15px;
    font-weight: normal;
    color: #333333;
}
.module-news-latest .module_headline {
    line-height: 24px;
    line-height: 1.5rem;
    font-weight: 200;
}
.module-news-latest .module_links {
    margin: 0;
}
.module-news-latest .module_link {
    color: #006fba;
}
.module-news-details .module_view-all-link {
    display: block;
    margin-bottom: 25px;
}
.module-news-details .module_view-all-link--bottom {
    margin-top: 25px;
    margin-bottom: 0;
}

.module-news-details .module-details_title {
    font-size: 3.2rem;
    font-family: 'CircularSpotifyTxT-Book';
    line-height: 1.2;
}

.module-news-details .module_news-details_download {
    font-size: 14px;
    text-transform: uppercase;
    font-family: 'CircularSpotifyTxT-Bold';
}

.module-news-details_category {
    display: none;
}
.module-news-details ul {
    margin: 16px 0;
    padding-left: 32px;
    padding-left: 2rem;
    list-style-type: disc;
}
.module-news-details ul li {
    line-height: 24px;
    line-height: 1.5rem;
}

/*-------Module News Landing Page-------*/
.module-news-latest .module_item-wrap {
    padding: 0px;
}
.layout--home .module-news-latest .module_container--content {
    margin-bottom: 0px;
    padding-right: 55px;
}
.layout--home .module-news-latest .module_item {
    margin: 0px 0px 35px;
    padding: 0px 0px 20px;
    border-bottom: 1px solid #dddfdf;
}

.layout--home .module-news-latest .module_item:last-child {
    border-bottom: none;
    margin: 0px;
    padding: 0px;
}

.layout--home .module-news-latest .module_tag {
    font-size: 1.2rem;
    text-transform: uppercase;
    font-family: 'CircularSpotifyTxT-Bold';
    color: #1ed760;
    display: inline-block;
    margin-right: 4px;
}

.layout--home .module-news-latest .module_date-time {
    font-size: 1.2rem;
    display: inline-block;
    color: #909496;
    margin-bottom: 0px;
}

.layout--home .module-news-latest .module_headline {
    font-size: 3.2rem;
    color: #000000;
    font-family: 'CircularSpotifyTxT-Book';
    margin: 20px 0px 20px 0px;
    line-height: 1.2;
}

.layout--home .module-news-latest .module_body {
    margin-bottom: 0px;
}

@media only screen and (max-width: 768px) {
    .layout--home .module-news-latest .module_container--content {
        padding-right: 0px;
    }
}

@media only screen and (max-width: 480px) {
    .layout--home .module-news-latest .module_headline {
        font-size: 2.4rem;
    }
}

/*-----Module Tabs Governance Page------*/
.module_tab-navigation ul {
    margin: 0px;
    padding-left: 0px;
    list-style-type: none;
}

.module_tab-navigation li {
    display: inline-block;
    padding: 0px 10px;
}

.module_tab-navigation li a {
    padding: 10px 0px;
    font-size: 1.4rem;
    text-transform: uppercase;
    font-family: 'CircularSpotifyTxT-Bold';
    color: #909496;
    cursor: pointer;
    display: inline-block;
}

.module_tab-navigation li.js--expanded a {
    border-bottom: 3px solid #1ed760;
    color: #000;
}

.module_tab-navigation li:first-child {
    padding-left: 0px; 
}

.module_tab-navigation li:last-child {
    padding-right: 0px; 
}
@media screen and (max-width: 1200px) {
    .module_tab-navigation {
        display: none;
    }
}
@media only screen and (max-width: 1024px) {
    .module_tab-navigation li a {
        font-size: 1.2rem;
    }
}

@media only screen and (max-width: 768px) {
    .module_tab-navigation li {
        display: block;
    }

    .module_tab-navigation li {
        padding: 0px;
    }
}

/*------ Person List Module ------*/
.module-person .module_container--inner {
    display: flex;
    flex-wrap: wrap;
    margin: 0px -40px;
}

.module-person .module_item {
    padding: 0px 40px 45px;
    position: relative;
    margin-bottom: 55px;
    border-top: none;
}

.module-person .module_item:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 40px;
    right: 40px;
    height: 1px;
    background-color: #dddfdf;
}

.module-person .module-person_name {
    font-size: 3.2rem;
    font-family: 'CircularSpotifyTxT-Bold';
}

.module-person h3 {
    margin-bottom: 35px;
}

.module_comma {
    display: none;
}

.module-person_title-text {
    display: block;
    font-size: 1.4rem;
    color: #909496;
    text-transform: uppercase;
    margin-top: 10px;
}

.module-person p {
    color: #000;
}

@media (max-width: 768px) {
    .module-person .module_container--inner {
        margin: 0px -20px;
    }

    .module-person .module_item {
        padding: 0px 20px 35px;
        margin-bottom: 30px;
    }

    .module-person .module_item:before {
        left: 20px;
        right: 20px;
    }
}

@media (max-width: 768px) {
    .module-person .module-person_name {
        font-size: 2.2rem;
        font-family: 'CircularSpotifyTxT-Bold';
    }
}


/*-----Person Details----*/
.module-person-details .module_title {
    display: none;
}
.module-person-details .module_comma {
    display: none;
}
.module-person-details_photo-container, .module-person-details_name-container {
    display: inline-block;
    vertical-align: middle;
}
.module-person-details_photo-container {
    max-width: 30%;
    margin-right: 40px;
}
@media only screen and (max-width: 768px) {
    .module-person-details_photo-container {
        margin-right: 15px;
        margin-bottom: 35px;
    }
}
@media only screen and (max-width: 480px) {
    .module-person-details_photo-container {
        margin-right: 0;
        max-width: none;
    }
}
.module-person-details_name {
    display: block;
    margin-bottom: 10px;
    color: #000;
    font-family: 'CircularSpotifyTxT-Bold';
    font-size: 3.2rem;
}
.module-person-details_title {
    display: block;
    font-size: 24px;
    font-size: 1.5rem;
}
.module-person-details_description-container {
    margin-top: 40px;
}

.module-presentation .module_body {
    display: none;
}

/*------ Q4 Preview Toolbar ------*/
body.PreviewBody {
    margin: 0;
    background-position: 0;
}
body.PreviewBody .PreviewToolBar {
    position: fixed;
    top: 100%;
    bottom: auto;
    width: 100%;
    margin: 0;
    padding: 35px 20px;
    border: 0;
    background: #222;
    font-size: 0;
    text-align: left;
    color: #fff;
    z-index: 100;
}
body.PreviewBody .PreviewToolBar.js--open {
    top: auto;
    bottom: 0;
}
body.PreviewBody .PreviewToolBar .PreviewTrigger {
    position: absolute;
    top: 0;
    left: 10px;
    padding: 20px;
    background: #222;
    transform: translate(0, -100%);
    font-size: 24px;
    font-size: 1.5rem;
    cursor: pointer;
}
body.PreviewBody .PreviewToolBar .PreviewTrigger.js--active i:before {
    content: "\ed6d";
}
body.PreviewBody .PreviewToolBar .PreviewFloatLeft, body.PreviewBody .PreviewToolBar .PreviewDateControls {
    display: inline-block;
    vertical-align: middle;
}
body.PreviewBody .PreviewToolBar .PreviewFloatLeft:before, body.PreviewBody .PreviewToolBar .PreviewDateControls:before {
    font-size: 16px;
    font-size: 1rem;
    margin-right: 15px;
    line-height: 50px;
}
body.PreviewBody .PreviewToolBar .PreviewFloatLeft {
    float: none;
}
body.PreviewBody .PreviewToolBar .PreviewFloatLeft:before {
    content: "Select Preview Type:";
}
body.PreviewBody .PreviewToolBar .PreviewDateControls {
    float: right;
}
body.PreviewBody .PreviewToolBar .PreviewDateControls:before {
    content: "Select Preview Date:";
}
body.PreviewBody .PreviewToolBar img {
    display: none;
}
body.PreviewBody .PreviewToolBar input[type="radio"], body.PreviewBody .PreviewToolBar label, body.PreviewBody .PreviewToolBar input[type="text"],
body.PreviewBody .PreviewToolBar select, body.PreviewBody .PreviewToolBar input[type="submit"] {
    display: inline-block;
    margin-right: 5px;
    font-family: "Open Sans", sans-serif !important;
    font-weight: 300;
    font-size: 14px;
    font-size: 0.875rem;
    text-transform: uppercase;
    vertical-align: baseline;
}
body.PreviewBody .PreviewToolBar input[type="text"],
body.PreviewBody .PreviewToolBar select, body.PreviewBody .PreviewToolBar input[type="submit"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 15px 20px;
    border: 0;
    border-radius: 0;
}
body.PreviewBody .PreviewToolBar label + input[type="radio"] {
    margin-left: 15px;
}
body.PreviewBody .PreviewToolBar input[type="text"] {
    min-width: 110px;
}
body.PreviewBody .PreviewToolBar select {
    padding: 15px 35px 15px 20px;
    background: #fff url('../design/svg/q4-icon_chevron-down-black.svg') no-repeat right 10px center;
    background-size: 14px 14px;
}
body.PreviewBody .PreviewToolBar select::-ms-expand {
    display: none;
}
body.PreviewBody .PreviewToolBar input[type="submit"] {
    background: #006fba;
    color: #fff !important;
}
@media only screen and (max-width: 1024px) {
    body.PreviewBody .PreviewToolBar .PreviewFloatLeft, body.PreviewBody .PreviewToolBar .PreviewDateControls {
        display: block;
        float: none;
        margin-bottom: 15px;
    }
    body.PreviewBody .PreviewToolBar .PreviewFloatLeft:before, body.PreviewBody .PreviewToolBar .PreviewDateControls:before {
        display: block;
    }
}
@media only screen and (max-width: 768px) {
    body.PreviewBody .PreviewToolBar input[type="radio"], body.PreviewBody .PreviewToolBar label, body.PreviewBody .PreviewToolBar input[type="text"],
    body.PreviewBody .PreviewToolBar select, body.PreviewBody .PreviewToolBar input[type="submit"] {
        margin-bottom: 5px;
    }
}

/*-------- Search Modules --------*/
.module-search {
    position: relative;
    float: right;
    margin-top: 26px;
}
.module-search--desktop.module-search {
    width: 163px;
    transition: all 0.3s ease-in-out;
}
.js--event .module-search--desktop {
    width: 400px;
    background-color: #fff;
    border-radius: 20px;
}
.module-search_input[type="text"] {
    display: inline-block;
    width: 163px;
    padding: 7px 7px 7px 32px;
    border: none;
    background: transparent;
    font-size: 1.6rem;
    color: #fff;
    transition: all 300ms ease-in-out;
    position: relative;
    z-index: 10;
}

.js--event .module-search_input[type="text"] {
    padding: 10px 10px 10px 35px;
    position: static;
}

.js--event .module-search--desktop .module-search_input[type="text"] {
    width: 100%;
    color: #000;
}

.js--event .module-search--desktop .module-search_input[type="text"]::-webkit-input-placeholder {
    color: #000;
    opacity: 0.4;
}
.js--event .module-search--desktop .module-search_input[type="text"]:-moz-placeholder {
    color: #000;
    opacity: 0.4;
}
.js--event .module-search--desktop .module-search_input[type="text"]:-ms-input-placeholder {
    color: #000;
    opacity: 0.4;
}
.module-search_input[type="text"]::-webkit-input-placeholder {
    color: #fff;
    font-family: 'CircularSpotifyTxT-Bold';
    opacity: 1;
}

.module-search_input[type="text"]:-moz-placeholder {
    color: #fff;
    font-family: 'CircularSpotifyTxT-Bold';
    opacity: 1; 
}
.module-search_input[type="text"]::-moz-placeholder{
    color: #fff;
    font-family: 'CircularSpotifyTxT-Bold';
    opacity: 1; 
}
.module-search_input[type="text"]:-ms-input-placeholder {
    color: #fff;
    font-family: 'CircularSpotifyTxT-Bold';
    opacity: 1; 
}
.module-search_button {
    position: absolute;
    top: 6px;
    left: 7px;
    width: 20px;
    height: 20px;
    padding: 0;
    border: 0;
    background: transparent url('../design/svg/q4-icon_buttons.svg');
    background-size: 300%;
    background-position: 0px 20px;
    font-size: 0;
    cursor: pointer;
}
.js--event .module-search--desktop .module-search_button {
    background-position: 0px 40px;
    top: 8px;
}
.module-search-result_link {
    margin-bottom: 15px;
}
.module-search-result_description {
    display: block;
    margin-bottom: 15px;
}
.module-search-result_description:after {
    content: "...";
}
.module-search-result_description p {
    display: inline-block;
}
.module-search-result_url {
    display: none;
}

.module-search .module_search-icon {
    display: none;
    color: #fff;
    font-size: 1.8rem;
    padding-top: 5px;
}

.module-search--desktop .module-close-search {
    display: none;
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    line-height: 1;
}

.js--event .module-search--desktop .module-close-search {
    display: block;
    cursor: pointer;
}

.js--event .module-search--desktop .module-close-search:hover {
    color: #000;
}

.module-search--desktop .module-close-search:before {
    content: "\ed6d";
    font-family: 'q4-icons' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@media only screen and (max-width: 1220px) {
    .module-search {
        margin-left: 10px;
    }
}

@media only screen and (max-width: 1200px) {
    .module-search {
        margin: 22px 0px 0px 13px;
        z-index: 11!important;
    }

    .module-search .module_search-icon {
        display: block;
        width: 18px;
    }

    .module-search .module_search-icon.js--active {
        display: none;
    }

    .module-search .module_container--inner,
    .module-search {
        display: none;
        margin: 0px;
    }
    .module-search-mobile .module_container--inner,
    .module-search-mobile {
        display: inline-block;
    }
    .module-search-mobile {
        border: 1px solid rgba(255,255,255,0.4);
        border-radius: 5px;
        margin: 30px 0px 0px;
    }
    .module-search-mobile .module_search-icon {
        display: none;
    }
    .module-search-mobile  .module-search_input {
        width: 100%;
    }
    .module-search .module_container--inner.js--revealed {
        display: block;
        position: absolute;
        right: 100%;
        top: 100%;
        /*background-color: #000;*/
        width: 200px;
    }
}

/*-------- SEC Module CSS --------*/
.module-sec .module_options {
    position: relative;
}
.module-sec .module_options .module_rss--top {
    position: absolute;
    top: 0;
    right: 0;
}
.module-sec .module_header {
    display: block;
    border-bottom: 1px solid #000;
}
.module-sec .module_header-text {
    padding: 15px 8px;
    color: #22272b;
    font-family: 'CircularSpotifyTxT-Bold';
}
.module-sec .module_item {
    padding: 0;
}
.module-sec .module_item ~ .module_item {
    border-top: 1px solid #d9dadc;
}
.module-sec .module_item .grid_col {
    vertical-align: middle;
    padding: 15px 8px;
}
.module-sec .module_item .module-sec_filing {
    font-weight: bold;
}
.module-sec .module-sec_download-list {
    margin: 0px;
}
@media only screen and (max-width: 768px) {
    .module-sec .module_header {
        display: none;
    }
    .module-sec .module_header + .module_item {
        border-top: 2px solid #006fba;
    }
    .module-sec .module_item {
        padding: 15px 0;
    }
    .module-sec .module_item:first-child {
        border-top: 1px solid #d9dadc;
    }
    .module-sec .module_item:last-child {
        border-bottom: 1px solid #d9dadc;
    }
    .module-sec .module_item .grid_col {
        padding: 0 5px;
    }
    .module-sec .module_item + .module_footer {
        border-bottom: 2px solid #006fba;
    }
}
.module-sec_download-list-item {
    display: inline-block;
    font-size: 24px;
    font-size: 1.5rem;
}
.module-sec_download-list-item:not(:last-of-type) {
    margin-right: 5px;
}
.module-sec-details .module-sec-details_downloads-list {
    padding-left: 0px;
}
@media only screen and (max-width: 768px) {
    .module-sec_date, .module-sec_filer, .module-sec_filing, .module-sec_description {
        margin-bottom: 15px;
    }
}
.module-sec-details_date, .module-sec-details_description {
    margin-bottom: 15px;
}
.module-sec-details_download-list-item {
    display: inline-block;
    font-size: 24px;
    font-size: 1.5rem;
}
.module-sec-details_download-list-item:not(:last-of-type) {
    margin-right: 5px;
}

/*---- Accessibility Skip Link ---*/
.module-skip_link {
    position: absolute;
    top: -100px;
    left: 50%;
    padding: 15px 20px;
    background: transparent;
    color: white;
    transform: translate(-50%, 0);
    transition: 0.5s ease-in-out;
    z-index: 100;
}
.module-skip_link:focus, .module-skip_link:active, .module-skip_link:hover {
    top: 0;
    background: #0F5CA3;
    outline: 0;
}
.module-skip_link:visited {
    color: #fff;
}

/*------ Stock Chart Widget ------*/
.module-stock-chart .highcharts-legend-item:first-child text {
    cursor: default !important;
}
.module-stock-chart .highcharts-navigator-handle {
    stroke: rgba(0, 0, 0, 0.05);
    fill: #f2f2f2;
    cursor: ew-resize;
}
.module-stock-chart .highcharts-range-input rect {
    stroke: #cccccc;
    fill: #f2f2f2;
}
.module-stock-chart .highcharts-button rect, .module-stock-chart .highcharts-input-group rect {
    stroke-width: 0;
    fill: rgba(0, 0, 0, 0.05);
}
.module-stock-chart .highcharts-button text, .module-stock-chart .highcharts-input-group text {
    fill: #333333;
}
.module-stock-chart .highcharts-navigator-handle-right rect, .module-stock-chart .highcharts-navigator-handle-left rect {
    stroke-width: 0;
    fill: #006fba;
}
.module-stock-chart .highcharts-navigator-handle-right path, .module-stock-chart .highcharts-navigator-handle-left path {
    stroke: #fff;
}
.module-stock-chart .highcharts-container > svg > .highcharts-button {
    display: none;
}
/*------ BAnner Image Module -----*/
.module-banner-image {
    color: #fff;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    max-width: 500px;
}
.module-banner-image .module_container--outer {
    padding: 50px 70px;
}
@media screen and (max-width: 1024px) {
    .module-banner-image {
        position: static;
        transform: none;
        margin-bottom: 50px;
    }
}

/*------End BAnner Image Module -----*/
/*------ Stock Header Module -----*/
.module-stock-header {
    color: #fff;
    font-family: 'CircularSpotifyTxT-Bold';
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    min-height: 345px;
}

.module-stock-header .module_container--outer {
    padding: 50px 70px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.module-stock-header_description1 {
    font-size: 2rem;
    margin-bottom: 20px;
    display: block;
    text-transform: uppercase;
}

.module-stock-header_stock-price {
    display: block;
    font-size: 12rem;
    line-height: 1;
}
.module-stock-header_stock-price:before {
    content: '$';
}
.module-stock-header_change-wrapper {
    display: block;
}
.module-stock-header_change, .module-stock-header_percent-change {
    display: inline-block;
    font-size: 3.2rem;
    font-family: 'CircularSpotifyTxT-Book';
}
.module-stock-header_percent-change:before {
    content: '(';
}
.module-stock-header_percent-change:after {
    content: ')';
}
.module-stock-header_volume {
    display: none;
}
.module-stock-header_volume:before {
    content: 'Volume ';
}
.module-stock-header_description3 {
    display: block;
    font-size: 1.6rem;
    font-family: 'CircularSpotifyTxT-Book';
    margin-top: 30px;
}
.module-stock-header_volume-text {
    display: none;
}
.module-stock-header_date {
    display: block;
    margin-top: 3px;
    font-size: 1.6rem;
    font-family: 'CircularSpotifyTxT-Book';
}

@media only screen and (max-width: 1024px) {
    .module-stock-header {
        max-width: 100%;
        width: 100%;
        position: static;
        transform: translateY(0%);
        clear: both;
        padding: 50px 0px;
    }
}

@media only screen and (max-width: 800px) {
    .module-stock-header_stock-price {
        font-size: 8rem;
    }
}

@media only screen and (max-width: 480px) {
    .module-stock-header .module_container--outer {
        padding: 30px 30px;
    }
}

@media only screen and (max-width: 420px) {


    .module-stock-header_description1 {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .module-stock-header_stock-price {
        font-size: 4.2rem;
        display: block;
        margin-right: 0px;
    }

    .module-stock-header_change, .module-stock-header_percent-change {
        font-size: 2.4rem;
    }

    .module-stock-header_description3,
    .module-stock-header_date {
        font-size: 1rem;
    }
}

/*------ Stock Quote Module ------*/
.module-stock .module_options {
    margin-bottom: 30px;
}
.module-stock .module_container--content {
    border-top: 1px solid rgba(34, 34, 34, 0.2);
}
.module-stock_lookup-title {
    padding-left: 20px;
}
@media only screen and (max-width: 768px) {
    .module-stock_lookup-title {
        padding-left: 10px;
    }
}
@media only screen and (max-width: 480px) {
    .module-stock_lookup-title {
        padding-left: 5px;
    }
}
.module-stock_label, .module-stock_value {
    border-bottom: 1px solid rgba(34, 34, 34, 0.2);
}
.module-stock_label > span, .module-stock_value > span {
    display: block;
    padding: 15px 20px;
}
@media only screen and (max-width: 768px) {
    .module-stock_label > span, .module-stock_value > span {
        padding: 15px 10px;
    }
}
@media only screen and (max-width: 480px) {
    .module-stock_label > span, .module-stock_value > span {
        padding: 15px 0 15px 5px;
    }
}
.module-stock_label {
    font-weight: normal;
}
.module-stock_value .module-stock_price:before, .module-stock_value .module-stock_high:before, .module-stock_value .module-stock_low:before,
.module-stock_value .module-stock_open:before, .module-stock_value .module-stock_close:before,
.module-stock_value .module-stock_week-low:before, .module-stock_value .module-stock_week-high:before,
.module-stock_value .module-stock_previous-close:before {
    content: "$";
}
.module-stock_date {
    margin-top: 25px;
    font-size: 14px;
    font-size: 0.875rem;
    font-style: italic;
    text-align: right;
}
.module-stock_date-text {
    margin-right: 15px;
}

/*- MailingList Subscribe Module -*/
.module-subscribe_table {
    display: block;
    width: 100%;
    margin-bottom: 10px;
}
.module-subscribe_table tbody {
    width: 100%;
    display: block;
}
.module-subscribe_form {
    font-size: 0;
}
.module-subscribe_form tr {
    display: inline-block;
    width: 50%;
    margin-bottom: 20px;
    vertical-align: top;
    font-size: 1.6rem;
}
.module-subscribe_form tr:nth-child(even) {
    padding-left: 10px;
}
.module-subscribe_form tr:nth-child(odd) {
    padding-right: 10px;
}
.module-subscribe_form tr.module-subscribe_notes-text {
    margin: 0;
}
.module-subscribe_form tr.module-subscribe_notes-text, .module-subscribe_form tr.module-subscribe_notes-input {
    display: block;
    width: 100%;
    padding: 0;
}
@media only screen and (max-width: 768px) {
    .module-subscribe_form tr {
        width: 100%;
    }
    .module-subscribe_form tr:nth-child(even) {
        padding-left: 0;
    }
    .module-subscribe_form tr:nth-child(odd) {
        padding-right: 0;
    }
}
.module-subscribe_form td {
    display: block;
}
.module-subscribe_form label {
    display: inline-block;
    margin-bottom: 5px;
    font-size: 1.6rem;
    color: #000;
}
.module-subscribe_mailing-list tr.module-subscribe_list-header td {
    padding-bottom: 15px;
}
.module-subscribe_mailing-list tr table td {
    padding-bottom: 10px;
}
.module-subscribe_mailing-list tr table tr:last-child td {
    padding-bottom: 0;
}
.module-subscribe .module_required {
    font-size: 14px;
}
.module-subscribe .CaptchaContainer {
    width: 50%;
}
@media only screen and (max-width: 768px) {
    .module-subscribe .CaptchaContainer {
        width: 100%;
    }
}

/* MailingList Unsubscribe Module */
.module-unsubscribe_table {
    width: 50%;
}
@media only screen and (max-width: 768px) {
    .module-unsubscribe_table {
        width: 100%;
    }
}
.module-unsubscribe_table td {
    padding-right: 10px;
}
@media only screen and (max-width: 768px) {
    .module-unsubscribe_table td {
        padding-right: 0;
    }
}
.module-unsubscribe_table label {
    display: inline-block;
    font-size: 1.6rem;
    margin-bottom: 5px;
    color: #000;
}
.module-unsubscribe_table .module_input[type="text"] {
    background-color: #fff;
}

/*==================================
 ----------- LAYOUT CSS -----------
==================================*/
/*------- iframe layout CSS ------*/
.layout--iframe .pane--content .module {
    padding: 35px 0;
}
.layout--iframe .pane--content .module_container--outer {
    max-width: none;
}

/*==================================
 ----------- LANDING PAGE -----------
==================================*/
.pane--header .pane_inner {
    position: relative;
    height: 100%;
}

/*.layout--home .pane--header .pane_inner:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: url('../design/header-background.jpg');
  background-repeat: no-repeat;
  background-position: right;
  background-size: 45%;
}*/

.module-logo,
.module_logo-text,
.module-search,
.layout--home .module-header-text,
.layout_toggle {
    position: relative;
    z-index: 10;
}

@media only screen and (max-width: 801px) {
    .pane--header .pane_inner:before {
        display: none;
    }
}

/*-------Logo--------*/
.module-logo-and-text {
    float: left;
    margin-top: 20px;
}

.module-logo {
    display: inline-block;
    vertical-align: middle;
}

.module-logo img {
    max-width: 240px;
    width: 100%;
}

.module_logo-text {
    display: inline-block;
    vertical-align: middle;
    margin-bottom: 3px;

}

.module_logo-text a {
    color: #fff;
    font-size: 2.8rem;
    font-family: 'CircularSpotifyTxT-Light';
}

@media only screen and (max-width: 420px) {
    .module-logo img {
        max-width: 105px;
    }

    .module_logo-text a {
        font-size: 2.1rem;
    }
}

/*-------Mobile Toggle-------*/
.layout_toggle {
    width: 24px;
    height: 18px;
    float: right;
    margin-top: 28px;
    display: none;
}

@media only screen and (max-width: 1200px) {
    .layout_toggle {
        display: block;
    }
}

/*----------Banner Text----------*/
.layout--home .module-header-text {
    clear: both;
    max-width: 600px;
    margin-bottom: 50px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.layout--home .module-header-text h1 {
    color: #fff;
    line-height: 1;
    font-size: 4rem;
}

.layout--home .module-header-text p {
    color: #fff;
}

@media only screen and (max-width: 1120px) {
    .layout--home .module-header-text {
        max-width: 520px;
    }
}

@media only screen and (max-width: 1024px) {
    .layout--home .module-header-text {
        max-width: 100%;
        position: static;
        top: 0;
        transform: translateY(0);
        padding-top: 50px;
    }
}

@media only screen and (max-width: 800px) {
    .layout--home .module-header-text {
        padding-top:0;
    }
}

@media only screen and (max-width: 420px) {
    .layout--home .module-header-text {
        margin-bottom: 30px;
    }
}

/*--------Page Title--------*/
.module-page-title {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 5;
}

.module-page-title h1 {
    color: #fff;
    margin-bottom: 0px;
}

.module-page-title .module_container--outer {
    height: 100%;
    display: table;
    width: 100%;
}

.module-page-title .module_container--inner {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

/*==================================
 ----------- PANE FOOTER -----------
==================================*/

.pane--footer h2.module_title {
    color: #000000;
    margin-bottom: 20px;
}

/*---------Investor Contact----------*/
.module-contact {
    padding-right: 55px;
}

.module-contact a.button {
    display: inline-block;
    margin-top: 35px;
}

/*---------Footer Email Alerts----------*/

.module-subscribe--footer .module_required-text {
    display: none;
}

.module-subscribe--footer .module-subscribe_form.module-subscribe_table {
    margin-bottom: 0px;
}

.module-subscribe--footer .module-subscribe_form label {
    color: #000000;
}

.module-subscribe--footer .module-subscribe_form .module_required {
    display: none;
}

.module-subscribe--footer .module-subscribe_form tr {
    width: 75%;
}

.module-subscribe_email > td > label:after {
    content: ":";
}

.module-subscribe--footer .module-subscribe_email input[type="text"] {
    background-color: #fff;
    width: 100%;
}

.module-subscribe--footer .module-subscribe_mailing-list .module-subscribe_list-header {
    display: none;
}

.module-subscribe--footer .module-subscribe_mailing-list tr table tr:last-child td {
    padding-bottom: 10px;
}

.module-subscribe--footer .module-subscribe_mailing-list .module-subscribe_list td table tbody > tr {
    display: inline-block;
    margin-right: -4px;
}

.module-subscribe--footer .module-subscribe_mailing-list .module-subscribe_list input[type='checkbox'] + label:before {
    vertical-align: middle;
    margin-bottom: 5px;
}

.module-subscribe--footer .module-subscribe_mailing-list .module-subscribe_list td tr:not(last-of-type) td > label {
    margin-right: 15px;
}

@media only screen and (max-width: 768px) {
    .module-subscribe--footer {
        margin-top: 55px;
    }

    .module-contact {
        padding-right: 0px;
    }
}

/*---------Footer Quick Links---------*/
.module_logo-footer {
    padding-left: 18px;
    padding-right: 18px;
    width: 33.33333%;
    display: inline-block;
    margin-right: -0.25em;
}

.module_logo-footer a {
    display: block;
    width: 130px;
    height: 40px;
    background: url('../design/spotify-logo.svg') left center no-repeat;
}

.footer-mini-nav_wrapper {
    display: inline-block;
    width: 66.66667%;
    margin-right: -0.25em;
    vertical-align: top;
}

.module_footer-nav-and-logo .footer-mini-nav_content {
    display: inline-block;
    vertical-align: top;
    padding-left: 18px;
    padding-right: 18px;
    width: 33.33333%;
    margin-right: -0.25em;
}

/*.module_footer-nav-and-logo .footer-mini-nav_content.footer-mini-nav_content--1 {
  margin-left: 8.333333333333332%;
}*/

.module_footer-nav-and-logo h3 {
    font-size: 1.3rem;
    color: #919496;
    line-height: 1.54;
    font-family: 'CircularSpotifyTxT-Book';
    -webkit-letter-spacing: 1px;
    -moz-letter-spacing: 1px;
    -ms-letter-spacing: 1px;
    letter-spacing: 1px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.module_footer-nav-and-logo .level1 li {
    margin-top: 10px;
}

.module_footer-nav-and-logo .level1 li a {
    font-size: 1.6rem;
    color: #FFFFFF;
    line-height: 1.56;
    font-family: 'CircularSpotifyTxT-Book';
    text-decoration: none;
    font-weight: bold;
    -webkit-transition: 0.3s color cubic-bezier(0.215,0.610,0.355,1.000);
    transition: 0.3s color cubic-bezier(0.215,0.610,0.355,1.000);
    text-transform: capitalize;
}

.module_footer-nav-and-logo .level1 li a:hover {
    color: #1ed760;
}

@media only screen and (max-width: 1000px) {
    .module_logo-footer {
        padding-left: 15px;
        padding-right: 15px;
    }

    .module_logo-footer a {
        width: 78px;
        height: 24px;
    }

    .module_footer-nav-and-logo .footer-mini-nav_content {
        padding-left: 15px;
        padding-right: 15px;
    }
}


@media only screen and (max-width: 999px) {
    .module_footer-nav-and-logo {
        width: 100%;
    }

    .module_logo-footer {
        width: 16.666666666666664%;
    }

    .footer-mini-nav_wrapper {
        width: 83.33333333333334%;
    }
}

@media only screen and (max-width: 739px) {
    .footer-mini-nav_wrapper {
        width: 100%;
    }

    .module_logo-footer {
        width: 100%;
        display: block;
        padding-left: 10px;
        padding-right: 10px;
    }

    .module_footer-nav-and-logo .footer-mini-nav_content {
        width: 50%;
        margin-left: 0px;
        margin-top: 32px;
        padding-left: 10px;
        padding-right: 10px;
    }
}

/*--------Social Icons-------*/
.module_social-links-footer .module_container--outer {
    padding: 0px 18px;
}

.module_social-links-footer ul.module_social-links-footer {
    width: 100%;
    text-align: right;
}

.module_social-links-footer ul.module_social-links-footer li {
    display: inline-block;
    margin-right: 20px;
}

.module_social-links-footer ul.module_social-links-footer li:last-child {
    margin-right: 0px;
}

.module_social-links-footer ul.module_social-links-footer li .social-links-type {
    width: 40px;
    height: 40px;
    display: block;
    background-size: cover;
}

.module_social-links-footer ul.module_social-links-footer li .social-links--instagram {
    background: url('../design/svg/instagram.svg') left center no-repeat;
}

.module_social-links-footer ul.module_social-links-footer li .social-links--instagram:hover {
    background: url('../design/svg/instagram.svg') right center no-repeat;
}

.module_social-links-footer ul.module_social-links-footer li .social-links--twitter {
    background: url('../design/svg/twitter.svg') left center no-repeat;
}

.module_social-links-footer ul.module_social-links-footer li .social-links--twitter:hover {
    background: url('../design/svg/twitter.svg') right center no-repeat;
}

.module_social-links-footer ul.module_social-links-footer li .social-links--facebook {
    background: url('../design/svg/facebook.svg') left center no-repeat;
}

.module_social-links-footer ul.module_social-links-footer li .social-links--facebook:hover {
    background: url('../design/svg/facebook.svg') right center no-repeat;
}

@media only screen and (max-width: 999px) {
    .module_social-links-footer.grid_col {
        display: block;
        width: 100%
    }

    .module_social-links-footer ul.module_social-links-footer {
        text-align: left;
    }

    .module_social-links-footer .module_container--outer {
        margin-left: 16.666666666666664%;
        margin-top: 32px;
        padding-left: 10px;
        padding-right: 10px;
    }
}

.module_bottom-footer-links {
    display: inline-block;
    padding-left: 18px;
    padding-right: 18px;
    width: 41.66666666666667%;
    margin-bottom: 10px;
}

.module_bottom-footer-links ul.module_bottom-footer-links {
    width: 100%;
}

.module_bottom-footer-links ul.module_bottom-footer-links li {
    display: inline-block;
    vertical-align: top;
    margin-right: 28px;
}

.module_bottom-footer-links ul.module_bottom-footer-links li .module_icon {
    display: inline-block;
    width: 9px;
    height: 12px;
    display: none;
}

.module_bottom-footer-links ul.module_bottom-footer-links li .module-links_list-item-container {
    display: inline-block;
}

.module_bottom-footer-links ul.module_bottom-footer-links li a {
    color: #FFFFFF;
    font-family: 'CircularSpotifyTxT-Book';
    text-decoration: none;
    font-weight: bold;
    -webkit-transition: 0.3s color cubic-bezier(0.215,0.610,0.355,1.000);
    transition: 0.3s color cubic-bezier(0.215,0.610,0.355,1.000);
    font-size: 1.2rem;
    line-height: 1.25;
}

.module_bottom-footer-links ul.module_bottom-footer-links li a:hover {
    color: #1ed760;
}

@media only screen and (max-width:999px) {
    .module_bottom-footer-links {
        padding-right: 10px;
        padding-left: 10px;
        margin-bottom: 10px;
        width: 58.333333333333336%;
        margin-top: 30px;
    }
}

@media only screen and (max-width:739px) {
    .module_social-links-footer .module_container--outer {
        width: 100%;
        margin-left: 0px;
        margin-top: 32px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .module_bottom-footer-links {
        display: block;
        margin-top: 0px;
        width: 100%;
        padding-top: 18px;
        padding-left: 10px;
        padding-right: 10px;
        margin-left: 0px;
        margin-bottom: 0px;
        line-height: 1;
    }
}

.copyright {
    float: right;
    padding-left: 18px;
    padding-right: 18px;
    width: 33.33333333333333%;
    text-align: right;
    margin-top: -12px;
}

.copyright a {
    margin-bottom: 8px;
    display: inline-block;
    font-size: 1.2rem;
    color: #FFFFFF;
    line-height: initial;
    font-family: 'CircularSpotifyTxT-Book';
    font-weight: bold;
    display: block;
    text-align: right;
    text-transform: uppercase;
}

.module_country > a > * {
    vertical-align: bottom;
}

.module_country > a:hover {
    color: #2ebd59;
}

.module_country > a img {
    padding-left: 6px;
    max-width: 26px;
    height: 15px;
}

.copyright .copyright_year-content {
    display: inline-block;
    position: relative;
    font-size: 1.4rem;
    line-height: 1.4;
    color: #919496;
    font-family: 'CircularSpotifyTxT-Medium';
}
@media only screen and (max-width: 1000px) {
    .copyright .copyright_year-content {
        font-size: 1.2rem;
        line-height: 1.25;
    }
}

@media only screen and (max-width: 999px) {
    .copyright {
        float: none;
        width: 25%;
        display: inline-block;
        padding: 0px;
    }
}

@media only screen and (max-width: 739px) {
    .copyright {
        width: 100%;
        margin-top: 32px;
        padding-left: 10px;
        padding-right: 10px;
        float: none;
        text-align: left;
        line-height: 1;
    }

    .copyright a {
        text-align: left;
    }
}


/*----Locations Page----*/
.module_locations {
    color: #000;
}

.module_locations h3 {
    color: #909496;
    font-size: 1.4rem;
    text-transform: uppercase;
}

.module_locations p strong {
    font-size: 2rem;
}

.module_locations .grid--no-gutter {
    display: flex;
    flex-wrap: wrap;
    margin: 0px -20px;
}

.module_locations .grid--no-gutter > div {
    position: relative;
    padding: 50px 0px 35px;
}

.module_locations .grid--no-gutter > div:nth-child(1),
.module_locations .grid--no-gutter > div:nth-child(2), 
.module_locations .grid--no-gutter > div:nth-child(3), 
.module_locations .grid--no-gutter > div:nth-child(4),
.module_locations .grid--no-gutter > div:nth-child(5) {
    padding-top: 0px;
}

.module_locations .module-wrap {
    margin: 0px 20px;
}

.module_locations .module-wrap:before {
    content: '';
    height: 1px;
    background-color: #dddfdf;
    position: absolute;
    bottom: 0;
    left: 20px;
    right: 20px;
}

@media (max-width: 768px) {
    .module_locations .grid--no-gutter > div:nth-child(4),
    .module_locations .grid--no-gutter > div:nth-child(5) {
        padding-top: 50px;
    }
}

@media (max-width: 480px) {
    .module_locations .grid--no-gutter > div {
        padding-bottom: 15px;
    }

    .module_locations p strong {
        font-size: 1.6rem;
    }

    .module_locations .grid--no-gutter > div,
    .module_locations .grid--no-gutter > div:nth-child(3),
    .module_locations .grid--no-gutter > div:nth-child(4),
    .module_locations .grid--no-gutter > div:nth-child(5) {
        padding-top: 25px;
    }
}
.module-recent-documents_event-items .module_item:first-child {
    border-top: 1px solid #d9dadc;
}
.module-event--investor .module_body {
    display: block;
}
.module-event--investor .js--visible {
    display: block !important;
}
.module_body-float-image,
.module_body-container {
    width: 50%;
}
.module_body-image img {
    width: 100%;
}
.module-event--investor .module_item:nth-child(odd) .module_body-float-image {
    float: right;
    padding-left: 50px;
}
.module-event--investor .module_item:nth-child(even) .module_body-float-image {
    float: left;
    padding-right: 50px;
}
.module-event--investor .module_item:nth-child(even) .module_body-container {
    float: left;
}
@media screen and (max-width: 768px) {
    .module_body-float-image,
    .module_body-container {
        width: 100%;
    }
    .module-event--investor .module_item:nth-child(odd) .module_body-float-image {
        float: none;
        padding-left: 0;
    }
    .module-event--investor .module_item:nth-child(even) .module_body-float-image {
        float: none;
        padding-right: 0;
    }
    .module-event--investor .module_item:nth-child(even) .module_body-container {
        float: none;
    }
}
.module_pagination--more {
    list-style: none;
    padding: 0;
    margin:30px 0 0;
}
.module_pagination--more .pager-prev {
    display: none;
}
.module_pagination--more li {
    font-size: 1.4rem;
    font-family: 'CircularSpotifyTxT-Bold';
    padding: 15px 30px 12px 30px;
    display: inline-block;
    color: #fff;
    background-color: #1ed760;
    border: none;
    border-radius: 35px;
    transition: 0.3s all ease-in-out;
    cursor: pointer;
}
.module_pagination--more li:hover {
    background: #1bc156;
    box-shadow: none;
    color: #fff;
}

/*PAGE Investor Day 2018*/
.page-inv-day-2018 .pane--content .module_container--outer {
    padding-bottom: 60px;
}
.page-inv-day-2018 .pane--content .module-inv-day-videos .module_container--outer {
    padding-bottom:0;
}
.module-inv-day-videos_title {
    font-size: 26px;
    color: #000000;
    line-height: 1.2;
    margin-top: 25px;
    display: inline-block;
}
.module-inv-day-videos_item {
    padding-bottom:60px;
}