.stack {
    display: flex;
    flex-direction: column
}

.stack .stack-item {
    flex-basis: 100%;
    min-width: 0
}

@media (min-width:0)and (max-width:599px) {
    .stack.as-wide-right {
        display: block;
        flex-direction: unset
    }

    .stack.as-extra-wide-right .stack-item:first-child {
        order: 2
    }

    .stack.as-extra-wide-right .stack-item:last-child {
        order: 1
    }
}

@media (min-width:600px) {
    .stack.direction-row {
        flex-direction: row
    }

    .stack.direction-row.with-items-2 .stack-item {
        flex-basis: 50%
    }

    .stack.as-extra-wide-right .stack-item:last-child {
        flex-basis: 64.9122807018%;
        flex-grow: 0;
        flex-shrink: 0
    }
}

@media (min-width:1260px) {
    .stack.as-wide-right .stack-item:first-child {
        flex-basis: 327px;
        flex-grow: 0;
        flex-shrink: 0
    }

    .stack.as-wide-right .stack-item:last-child {
        flex-basis: auto
    }
}

:root {
    --app-background: #fff;
    --base-text-color: #0a0a0a;
    --primary-neutral-200: #edeef1;
    --primary-neutral-300: #dde0e8;
    --primary-neutral-400: #cecece;
    --primary-neutral-600: #76767a;
    --primary-neutral-700: #71717a;
    --primary-neutral-800: #505057;
    --primary-neutral-900: #31313b
}

.homepage-newsletter {
    --grid-col-gap: 8px;
    --grid-row-gap: 8px;
    background-color: #faf7f5;
    position: relative
}

.homepage-newsletter:before {
    background-color: #faf7f5;
    content: "";
    height: 100%;
    left: calc(-50vw - -50%);
    position: absolute;
    width: 100vw;
    z-index: -1
}

.homepage-newsletter .component-container {
    display: flex;
    flex-direction: column;
    gap: var(--grid-col-gap);
    justify-content: center;
    margin: auto;
    max-width: 552px;
    min-height: 189px;
    opacity: 1;
    padding: 16px 0;
    transition: opacity .5s ease
}

.homepage-newsletter p {
    margin: 0
}

.homepage-newsletter .title {
    font-size: .9375rem;
    line-height: 21px
}

.homepage-newsletter .success-title {
    font-size: 1.125rem;
    line-height: 25px
}

.homepage-newsletter .success-message {
    color: #31313b;
    font-size: .8125rem;
    line-height: 19px
}

.homepage-newsletter .success-button {
    margin-top: 23px
}

.homepage-newsletter .form {
    display: flex;
    gap: var(--grid-col-gap);
    width: 100%
}

.homepage-newsletter .form.with-error>input {
    border: 1px solid #e51716
}

.homepage-newsletter input {
    border: 1px solid #505057;
    border-radius: 4px;
    color: #505057;
    font-size: 1rem;
    height: 44px;
    padding: 10px 16px 10px 12px;
    width: 100%
}

.homepage-newsletter input:focus-visible {
    border-color: #002aff;
    outline: 1px solid #002aff
}

.homepage-newsletter input::placeholder {
    font-family: Garnett, Helvetica, Arial, sans-serif
}

.homepage-newsletter .input-password {
    align-items: center;
    display: flex;
    width: 100%
}

.homepage-newsletter .input-password span {
    color: #76767a;
    cursor: pointer;
    margin-left: -35px;
    margin-top: -2px;
    user-select: none
}

.homepage-newsletter .error-message {
    color: #e51716;
    font-size: .75rem;
    margin-bottom: -2px;
    margin-top: -6px
}

.homepage-newsletter .captcha-terms,
.homepage-newsletter .password-rules,
.homepage-newsletter .terms {
    font-size: .625rem;
    line-height: 14px
}

.homepage-newsletter .password-rules,
.homepage-newsletter .terms {
    color: #0a0a0a
}

.homepage-newsletter .password-rules a,
.homepage-newsletter .terms a {
    color: #0a0a0a;
    text-decoration: underline
}

.homepage-newsletter .captcha-terms {
    color: #71717a;
    font-size: .625rem
}

.homepage-newsletter .captcha-terms a {
    color: #71717a;
    text-decoration: underline
}

.homepage-newsletter .fullfilled {
    text-decoration: line-through
}

.homepage-newsletter button {
    background-color: #fff;
    background-color: #002aff;
    border: 1px solid #002aff;
    border-radius: 4px;
    color: #0a0a0a;
    color: #fff;
    cursor: pointer;
    font-size: .875rem;
    height: 43px;
    line-height: 1;
    padding: 0 14px 2px;
    position: relative;
    white-space: nowrap;
    width: fit-content;
    z-index: 1
}

.homepage-newsletter button:first-letter {
    text-transform: uppercase
}

.homepage-newsletter button:focus {
    outline-color: #02c
}

.homepage-newsletter button:hover {
    background-color: #faf7f5;
    background-color: #002aff;
    border-color: #002aff;
    color: #fff
}

.homepage-newsletter button.loading:before {
    background: #002aff;
    content: "";
    display: block;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%
}

.homepage-newsletter button.loading:after {
    animation: rotate-spinner .6s linear infinite;
    background-image: url(/public/assets/rebrand/loading-spinner.png);
    background-position: 50%;
    background-repeat: no-repeat;
    border-radius: 20px;
    content: "";
    height: 20px;
    left: calc(50% - 10px);
    position: absolute;
    top: calc(50% - 10px);
    width: 20px;
    z-index: 1
}

@keyframes rotate-spinner {
    0% {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(1turn)
    }
}

.homepage-newsletter.is-loading .component-container {
    opacity: 0
}

@media (min-width:1008px) {
    .homepage-newsletter:before {
        content: none
    }

    .homepage-newsletter .component-container {
        padding: 16px
    }

    .homepage-newsletter .form.create-account {
        flex-direction: column
    }

    .homepage-newsletter .form.create-account button {
        width: 100%
    }

    .homepage-newsletter button:hover,
    .homepage-newsletter button:hover:hover {
        background-color: #02c
    }
}

.section-heading {
    align-items: center;
    display: flex;
    justify-content: space-between
}

.section-heading .heading {
    font-size: 1.5rem;
    line-height: 2.025rem;
    margin-bottom: 8px
}

@media (min-width:1008px) {
    .section-heading .heading {
        font-size: 1.75rem;
        line-height: 2.3625rem
    }
}

:root {
    --app-background: #fff;
    --base-text-color: #0a0a0a;
    --primary-neutral-200: #edeef1;
    --primary-neutral-300: #dde0e8;
    --primary-neutral-400: #cecece;
    --primary-neutral-600: #76767a;
    --primary-neutral-700: #71717a;
    --primary-neutral-800: #505057;
    --primary-neutral-900: #31313b
}

.cta-more-link-arrow {
    align-items: center;
    color: #0a0a0a;
    column-gap: 4px;
    display: flex;
    min-height: 44px;
    padding: 16px 0 12px
}

.cta-more-link-arrow:hover,
.cta-more-link-arrow:hover .brand-arrow-circle-icon {
    color: #02c
}

.cta-more-link-arrow .icon-wrapper {
    font-size: 0
}

.cta-more-link-arrow .brand-arrow-circle-icon {
    color: #002aff;
    font-size: 16.5px
}

.cta-more-link-arrow .link-text {
    font-size: .75rem;
    line-height: 1.05rem
}

.cta-more-link-arrow .link-text-label {
    display: none
}

@media (min-width:1008px) {
    .cta-more-link-arrow {
        column-gap: 6px;
        padding-bottom: 12px
    }

    .cta-more-link-arrow .brand-arrow-circle-icon {
        font-size: 18px
    }

    .cta-more-link-arrow .link-text {
        font-size: .875rem;
        line-height: 1.225rem
    }

    .cta-more-link-arrow .link-text-label {
        display: inline
    }
}

.masthead {
    --main-height: 65px;
    position: relative
}

.masthead>section {
    background-color: #fff;
    border-bottom: 1px solid #cecece
}

.masthead a {
    color: #0a0a0a;
    text-decoration: none
}

.masthead .main-section {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-bottom: 9px;
    padding-top: 9px;
    z-index: 5777777
}

.masthead .top-section {
    align-items: center;
    border-top: none;
    display: flex;
    justify-content: center;
    vertical-align: middle
}

.masthead .bottom-section {
    border-bottom: 1px solid #cecece;
    padding-bottom: 12px;
    padding-top: 12px
}

.masthead .bottom-section:not(.grid-lines) {
    padding-left: 0;
    padding-right: 0
}

.masthead .cta-wrapper {
    --col-gap: 24px;
    align-items: center;
    align-self: center;
    column-gap: var(--col-gap);
    display: flex;
    flex-direction: row;
    font-size: 12px;
    height: 40px;
    justify-content: center;
    line-height: 16px;
    max-height: 40px
}

.masthead .newsletters-link,
.masthead .subscribe-link {
    align-items: center;
    height: 44px;
    justify-content: flex-start
}

.masthead .subscribe-link {
    color: #002aff;
    display: none
}

.masthead .subscribe-link:hover {
    color: #02c
}

.masthead .subscribe-link .brand-arrow-icon {
    font-size: 12px;
    margin: 1px 2.2px 0 0
}

.masthead .subscribe-link.is-hidden {
    opacity: 0;
    pointer-events: none
}

.masthead .newsletters-link {
    display: none
}

.masthead .logo-link {
    align-items: center;
    display: flex;
    justify-content: flex-start
}

.masthead .logo-inline {
    height: auto;
    max-width: 274px;
    width: calc(100vw - 112px)
}

.masthead .menu-button {
    align-items: center;
    background-color: #0a0a0a;
    border: none;
    border-radius: 40px;
    color: #fff;
    display: flex;
    font-size: 20px;
    height: 40px;
    justify-content: center;
    margin-left: -4px;
    padding: 0;
    width: 40px
}

.masthead .menu-button:hover {
    background-color: #31313b;
    cursor: pointer
}

.masthead .markets-banner {
    margin-right: calc(var(--masthead-padding)*-1);
    padding: 0
}

.masthead .sticky-section {
    display: none
}

.masthead.is-fixed.no-masthead-ad:not(:has(.vertical-nav)):not(:has(.bottom-section)):after {
    content: "";
    display: block;
    height: var(--main-height);
    width: 100%
}

.masthead.is-fixed.no-masthead-ad:not(:has(.vertical-nav)):not(:has(.top-section)):has(.bottom-section) .bottom-section {
    margin-top: var(--main-height)
}

.masthead.is-fixed.no-masthead-ad:has(.vertical-nav) .vertical-nav {
    margin-top: var(--main-height)
}

.masthead.is-fixed:not(.no-masthead-ad) .top-section {
    margin-bottom: var(--main-height)
}

.masthead.is-fixed .main-section {
    left: 0;
    position: fixed;
    top: 0;
    width: 100%
}

.masthead.is-fixed .sticky-section {
    display: block;
    left: 0;
    position: fixed;
    top: var(--main-height);
    width: 100%;
    z-index: 5666666
}

.masthead.is-fixed:has(.sticky-section) .masthead-ad.is-leave-behind:not(.is-disabled) .masthead-ad-wrapper [data-bi-ad] {
    position: relative;
    z-index: 2
}

.masthead.is-fixed:has(.sticky-section) .masthead-ad.is-leave-behind:not(.is-disabled) .masthead-ad-wrapper [data-bi-ad]:before {
    background-color: #fff;
    bottom: 100%;
    content: "";
    display: block;
    height: 100%;
    position: absolute;
    width: 100%;
    z-index: 1
}

:root {
    --app-background: #fff;
    --base-text-color: #0a0a0a;
    --primary-neutral-200: #edeef1;
    --primary-neutral-300: #dde0e8;
    --primary-neutral-400: #cecece;
    --primary-neutral-600: #76767a;
    --primary-neutral-700: #71717a;
    --primary-neutral-800: #505057;
    --primary-neutral-900: #31313b
}

.masthead.as-homepage {
    --main-height: 100px
}

.masthead.as-homepage .bottom-section {
    border-bottom: 1px solid #cecece;
    padding-bottom: 16px;
    padding-top: 24px
}

.masthead.as-homepage .subnav-section {
    display: none
}

.masthead.as-homepage .logo-inline {
    height: auto
}

.masthead.as-homepage.is-fixed .main-section {
    position: fixed;
    top: 0
}

.masthead-animation {
    animation-delay: calc(var(--scroll)*-1s);
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-iteration-count: 1;
    animation-play-state: paused;
    animation-timing-function: linear
}

@keyframes logo-animation {
    25% {
        -webkit-transform: scale(var(--logo-animation-scale-1));
        -moz-transform: scale(var(--logo-animation-scale-1));
        -o-transform: scale(var(--logo-animation-scale-1));
        transform: scale(var(--logo-animation-scale-1))
    }

    50% {
        -webkit-transform: scale(var(--logo-animation-scale-2));
        -moz-transform: scale(var(--logo-animation-scale-2));
        -o-transform: scale(var(--logo-animation-scale-2));
        transform: scale(var(--logo-animation-scale-2))
    }

    75% {
        -webkit-transform: scale(var(--logo-animation-scale-3));
        -moz-transform: scale(var(--logo-animation-scale-3));
        -o-transform: scale(var(--logo-animation-scale-3));
        transform: scale(var(--logo-animation-scale-3))
    }

    to {
        -webkit-transform: scale(var(--logo-animation-scale-4));
        -moz-transform: scale(var(--logo-animation-scale-4));
        -o-transform: scale(var(--logo-animation-scale-4));
        transform: scale(var(--logo-animation-scale-4))
    }
}

@keyframes main-animation {
    25% {
        padding-bottom: var(--main-animation-width-1);
        padding-top: var(--main-animation-width-1)
    }

    50% {
        padding-bottom: var(--main-animation-width-2);
        padding-top: var(--main-animation-width-2)
    }

    75% {
        padding-bottom: var(--main-animation-width-3);
        padding-top: var(--main-animation-width-3)
    }

    90% {
        padding-bottom: var(--main-animation-width-4);
        padding-top: var(--main-animation-width-4)
    }

    to {
        padding-bottom: var(--main-animation-width-5);
        padding-top: var(--main-animation-width-5)
    }
}

@media (min-width:0)and (max-width:599px) {
    .masthead.as-homepage .user-greeting {
        margin-bottom: 12px
    }
}

@media (min-width:600px) {
    .masthead .main-section {
        padding-bottom: 12px;
        padding-top: 12px
    }

    .masthead .subscribe-link {
        display: flex
    }

    .masthead .logo-inline {
        max-width: unset;
        width: 364px
    }

    .masthead.as-homepage .bottom-section {
        margin-bottom: -24px;
        padding-bottom: 40px
    }

    .masthead.as-homepage .logo-inline {
        height: 28px;
        width: auto
    }
}

@media (min-width:1003px)and (max-width:1128px) {

    .masthead.as-homepage .bottom-section,
    .masthead.as-homepage .main-section {
        padding-left: 24px;
        padding-right: 24px
    }
}

@media (min-width:1008px) {
    .masthead .subscribe-link {
        position: relative
    }

    .masthead .subscribe-link:after {
        background-image: linear-gradient(180deg, #0a0a0a 25%, hsla(0, 0%, 100%, 0) 0);
        background-position: 100%;
        background-repeat: repeat-y;
        background-size: 2px 4px;
        border: none;
        content: "";
        display: block;
        height: 100%;
        height: 16px;
        position: absolute;
        right: calc(var(--col-gap)/2*-1 + -1px);
        top: 50%;
        transform: translate3d(0, -50%, 0);
        width: 1px
    }

    .masthead .newsletters-link {
        display: inline-flex
    }

    .masthead .newsletters-link:hover {
        color: #505057
    }

    .masthead .logo-inline {
        width: 334px
    }

    .masthead.as-homepage .bottom-section {
        margin-bottom: -24px;
        padding-bottom: 48px
    }

    .masthead.as-homepage .subnav-section {
        display: flex;
        justify-content: flex-end
    }

    .masthead.as-homepage .logo-inline {
        height: 50px
    }

    .masthead.as-homepage .main-section {
        padding-bottom: 24px;
        padding-top: 24px
    }

    .masthead.as-homepage.is-fixed .main-animated {
        animation-name: main-animation
    }

    .masthead.as-homepage.is-fixed .logo-animated {
        animation-name: logo-animation;
        transform: scale(1);
        transform-origin: 0 50%;
        transition: transform .2s ease
    }

    html {
        --logo-animation-scale-1: 0.9;
        --logo-animation-scale-2: 0.83;
        --logo-animation-scale-3: 0.765;
        --logo-animation-scale-4: 0.72;
        --main-animation-width-1: 22px;
        --main-animation-width-2: 20px;
        --main-animation-width-3: 18px;
        --main-animation-width-4: 16px;
        --main-animation-width-5: 11px
    }
}

@media (min-width:1127px)and (max-width:1307px) {

    .masthead.as-homepage .bottom-section,
    .masthead.as-homepage .main-section {
        padding-left: calc(50% - 539.5px);
        padding-right: calc(50% - 539.5px)
    }
}

@media (min-width:1308px) {
    .masthead.is-fixed .sticky-section {
        display: none
    }
}

@media (max-width:1307px) {
    .masthead.is-fixed.no-masthead-ad:not(:has(.vertical-nav)):not(:has(.bottom-section)):has(.sticky-section):after {
        height: calc(var(--main-height) + 48px)
    }
}

@media (max-width:1007px) {

    .masthead.is-fixed.is-hidden-by-scroll:has(.sticky-section) .main-section,
    .masthead.is-fixed.is-hidden-by-scroll:has(.sticky-section) .sticky-section {
        transform: translate3d(0, calc(var(--main-height)*-1), 0)
    }
}

.masthead-ad {
    flex-direction: column;
    height: 125px;
    width: 100%
}

.masthead-ad,
.masthead-ad .masthead-ad-wrapper {
    align-items: center;
    background-color: #fafafa;
    display: flex;
    justify-content: center;
    z-index: 5666666
}

.masthead-ad .masthead-ad-wrapper.ad-label {
    position: relative
}

.masthead-ad .masthead-ad-wrapper.ad-label:before {
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate3d(-50%, -50%, 0)
}

.masthead-ad .masthead-ad-wrapper.ad-label:has([id^=google_ads_iframe_]):before {
    display: none
}

.masthead-ad [data-bi-ad] {
    max-height: 250px;
    min-height: 50px;
    min-width: 1px
}

.masthead-ad .close-icon-wrapper {
    align-items: center;
    cursor: pointer;
    display: none;
    height: 40px;
    justify-content: center;
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translate3d(0, -50%, 999px);
    width: 40px;
    z-index: 5999999
}

.masthead-ad .close-icon-wrapper .close-icon-circle,
.masthead-ad .close-icon-wrapper .jp-close-wrapper {
    align-items: center;
    background: #0a0a0a;
    border: 1px solid #fff;
    border-radius: 28px;
    display: flex !important;
    height: 28px;
    justify-content: center;
    position: relative;
    right: unset;
    width: 28px;
    z-index: inherit
}

.masthead-ad .close-icon-wrapper .jp-close-wrapper .close-icon {
    left: unset !important;
    right: unset !important;
    top: unset !important;
    transform: unset !important
}

.masthead-ad .close-icon-wrapper .close-icon {
    border-radius: 12px;
    cursor: pointer;
    height: 12px;
    transform: translateZ(999px);
    width: 12px;
    z-index: 5999999
}

.masthead-ad .close-icon-wrapper .close-icon path {
    fill: #fff
}

.masthead-ad.pre-render [id^=google_ads_iframe] {
    display: none
}

.masthead-ad:not(.is-tall):not(.is-marquee):not(.is-offscreen):not(.is-leave-behind) .masthead-ad-wrapper [data-bi-ad] {
    position: sticky;
    top: 0
}

.masthead-ad.is-marquee .masthead-ad-wrapper {
    position: relative;
    text-align: center;
    width: 100%
}

.masthead-ad.is-marquee [data-bi-ad] {
    height: 100%;
    max-height: 100%;
    max-width: 100%;
    width: 100%
}

.masthead-ad.is-marquee [data-bi-ad] [id^=google_ads_iframe] {
    height: 100%;
    max-height: 250px;
    width: 100%
}

.masthead-ad.is-marquee iframe {
    display: block;
    margin: 0 auto
}

.masthead-ad.is-leave-behind:not(.is-disabled) .close-icon-wrapper {
    display: flex
}

.masthead-ad.is-marquee:not(.is-offscreen) .masthead-ad-wrapper {
    height: 125px
}

.masthead-ad.is-offscreen:not(.is-disabled) .masthead-ad-wrapper {
    background-color: #fff;
    padding: 0
}

.masthead-ad.is-offscreen:not(.is-disabled) .masthead-ad-wrapper [data-bi-ad] {
    height: 50px
}

.masthead-ad.is-offscreen:not(.is-disabled).is-tall .masthead-ad-wrapper {
    transform: translate3d(0, -50%, 0)
}

.masthead-ad.is-offscreen.is-leave-behind:not(.is-disabled) .masthead-ad-wrapper {
    position: fixed;
    top: 0;
    transform: translate3d(0, var(--masthead-bottom), 0);
    width: 100%
}

.masthead-ad.is-offscreen.is-leave-behind:not(.is-disabled).is-hidden .masthead-ad-wrapper {
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease
}

@media (min-width:960px) {
    .masthead-ad {
        height: 270px;
        padding-bottom: 10px;
        padding-top: 10px
    }

    .masthead-ad .masthead-ad-wrapper {
        transform: translateZ(0)
    }

    .masthead-ad.is-marquee:not(.is-offscreen) .masthead-ad-wrapper {
        height: 250px
    }

    .masthead-ad.is-offscreen:not(.is-disabled) .masthead-ad-wrapper [data-bi-ad] {
        height: 90px
    }

    .masthead-ad.is-offscreen:not(.is-disabled).is-tall .masthead-ad-wrapper [data-bi-ad] {
        height: 250px
    }
}

:root {
    --app-background: #fff;
    --base-text-color: #0a0a0a;
    --primary-neutral-200: #edeef1;
    --primary-neutral-300: #dde0e8;
    --primary-neutral-400: #cecece;
    --primary-neutral-600: #76767a;
    --primary-neutral-700: #71717a;
    --primary-neutral-800: #505057;
    --primary-neutral-900: #31313b
}

.masthead-subnav {
    min-width: 100%;
    padding: 0
}

.masthead-subnav .subnav {
    --col-gap: 24px;
    display: flex;
    justify-content: flex-end;
    list-style: none;
    min-width: 100%
}

.masthead-subnav .subnav-item {
    align-items: center;
    display: flex;
    position: relative
}

.masthead-subnav .subnav-item:not(:first-child):before {
    background-image: linear-gradient(180deg, #0a0a0a 25%, hsla(0, 0%, 100%, 0) 0);
    background-position: 100%;
    background-repeat: repeat-y;
    background-size: 2px 4px;
    border: none;
    content: "";
    display: block;
    height: 16px;
    position: absolute;
    width: 1px
}

.masthead-subnav .subnav-item-link {
    align-items: center;
    display: flex;
    font-size: .875rem;
    height: 60px;
    line-height: 19.6px;
    padding: 0 calc(var(--col-gap)/2);
    position: relative
}

.masthead-subnav .subnav-item-link.search {
    height: 44px;
    padding-right: 0;
    width: 28px
}

.masthead-subnav .search-icon {
    height: 16.67px;
    width: 15.42px
}

.masthead-subnav .search-icon:hover .search-path {
    color: #505057
}

.masthead-subnav .dropdown {
    --ddn-gap: 16px;
    background-clip: padding-box;
    background-color: #faf7f5;
    border-radius: 2px;
    border-top: 1px solid transparent;
    display: flex;
    flex-direction: column;
    left: 0;
    list-style: none;
    min-width: 100%;
    opacity: 0;
    padding: var(--ddn-gap);
    pointer-events: none;
    position: absolute;
    row-gap: var(--ddn-gap);
    top: 100%;
    z-index: 5666666
}

.masthead-subnav .dropdown-item-link {
    align-items: center;
    display: flex;
    font-size: .75rem;
    line-height: 1.4;
    text-wrap-mode: nowrap
}

.masthead-subnav .dropdown-item-link:hover {
    color: #505057
}

.masthead-subnav .subnav-item:hover .dropdown {
    opacity: 1;
    pointer-events: all
}

.masthead-subnav .subnav-item:hover .subnav-item-link:not(.search):after {
    border-bottom: 4px solid #002aff;
    bottom: -1px;
    content: "";
    display: block;
    left: calc(var(--col-gap)/2);
    position: absolute;
    width: calc(100% - var(--col-gap))
}

:root {
    --app-background: #fff;
    --base-text-color: #0a0a0a;
    --primary-neutral-200: #edeef1;
    --primary-neutral-300: #dde0e8;
    --primary-neutral-400: #cecece;
    --primary-neutral-600: #76767a;
    --primary-neutral-700: #71717a;
    --primary-neutral-800: #505057;
    --primary-neutral-900: #31313b
}

.user-greeting {
    font-size: 0;
    margin: 0 0 8px;
    min-height: 24.3px
}

.user-greeting .label {
    display: inline-block;
    font-size: 1.125rem;
    height: 100%;
    line-height: 1.35
}

@media (min-width:1008px) {
    .user-greeting {
        min-height: 27px
    }

    .user-greeting .label {
        font-size: 1.25rem
    }
}

:root {
    --app-background: #fff;
    --base-text-color: #0a0a0a;
    --primary-neutral-200: #edeef1;
    --primary-neutral-300: #dde0e8;
    --primary-neutral-400: #cecece;
    --primary-neutral-600: #76767a;
    --primary-neutral-700: #71717a;
    --primary-neutral-800: #505057;
    --primary-neutral-900: #31313b
}

.markets-banner {
    display: flex;
    height: 26px;
    max-width: unset
}

.markets-banner .marquee {
    overflow: hidden
}

.markets-banner a {
    color: #0a0a0a;
    font-size: .75rem;
    line-height: 1.05rem;
    text-decoration: none
}

.markets-banner .ticker-container {
    margin-left: -6px
}

.markets-banner .ticker-wrapper {
    display: flex
}

.masthead .markets-banner {
    --marquee-padding: 24px;
    margin-left: calc(var(--marquee-padding)*-1);
    padding: 0
}

.masthead .markets-banner .marquee-spacer {
    width: calc(40px - var(--marquee-padding))
}

.masthead .markets-banner .ticker-container {
    margin-left: calc(var(--marquee-padding) - 6px)
}

.markets-banner [data-component-type=marquee].can-scroll .ticker-item {
    pointer-events: none
}

.markets-banner [data-component-type=marquee].can-scroll.pause-scroll .ticker-item {
    pointer-events: auto
}

.markets-banner .ticker-item {
    align-items: center;
    border-radius: 2px;
    column-gap: 4px;
    display: flex;
    margin-right: 0;
    padding: 6px 8px
}

.markets-banner .ticker-symbol {
    text-transform: uppercase
}

.markets-banner .ticker-arrow svg {
    height: 9px;
    vertical-align: baseline;
    width: 9px
}

.markets-banner .ticker-item.is-trending-even .ticker-arrow {
    display: none
}

.markets-banner .ticker-item.is-trending-up .ticker-arrow,
.markets-banner .ticker-item.is-trending-up .ticker-change {
    color: #1f7f51
}

.markets-banner .ticker-item.is-trending-down .ticker-arrow,
.markets-banner .ticker-item.is-trending-down .ticker-change {
    color: #e51716
}

.markets-banner .ticker-item.is-trending-down .ticker-arrow svg {
    transform: rotate(90deg)
}

.markets-banner.for-embed {
    pointer-events: none
}

.markets-banner .markets-sponsor {
    align-items: center;
    background-color: #fff;
    display: flex;
    justify-content: center;
    padding-top: 4px;
    position: relative
}

.markets-banner .markets-sponsor>.ad-wrapper {
    margin-right: 16px;
    max-height: 65px;
    width: 146px
}

@media (min-width:600px) {
    .markets-banner .ticker-item:hover {
        background-color: #faf7f5
    }

    .markets-banner .markets-sponsor>.ad-wrapper {
        margin-right: 24px
    }
}

@media (min-width:1308px) {
    .markets-banner .markets-sponsor>.ad-wrapper {
        margin-right: 0
    }
}

.marquee {
    height: 100%;
    width: 100%
}

.marquee .marquee-wrapper {
    display: flex;
    overflow-x: hidden;
    overflow-y: hidden
}

.marquee .marquee-scroller {
    display: inline-block;
    font-size: 0;
    white-space: nowrap
}

.marquee .marquee-scroller>* {
    display: inline-block
}

.marquee .marquee-spacer {
    height: 100%;
    width: 40px
}

.marquee .marquee-spacer:after {
    content: "";
    display: block;
    height: auto;
    width: 40px
}

.marquee .marquee-clone,
.marquee .marquee-spacer,
.marquee .marquee-static {
    display: none
}

.marquee[data-scroll-type=loop].can-scroll:not(.pause-scroll) .marquee-clone,
.marquee[data-scroll-type=loop].can-scroll:not(.pause-scroll) .marquee-spacer {
    display: inline-block
}

.marquee.can-scroll.pause-scroll {
    position: relative
}

.marquee.can-scroll.pause-scroll .marquee-wrapper {
    left: 0;
    min-height: 36px;
    position: absolute;
    width: 100%
}

.marquee.can-scroll.pause-scroll[data-scroll-type=slideup] .marquee-scroller {
    display: none
}

.marquee.can-scroll.pause-scroll[data-scroll-type=slideup] .marquee-static {
    display: inline-block
}

.marquee.can-scroll.pause-scroll[data-scroll-type=loop] .marquee-clone,
.marquee.can-scroll.pause-scroll[data-scroll-type=loop] .marquee-spacer {
    display: none
}

.marquee.can-scroll.pause-scroll .marquee-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none
}

.marquee.can-scroll.pause-scroll .marquee-wrapper::-webkit-scrollbar {
    background: transparent;
    width: 0
}

@media (min-width:960px) {
    .marquee.can-scroll.pause-scroll .marquee-wrapper {
        scrollbar-width: thin;
        -ms-overflow-style: unset
    }

    .marquee.can-scroll.pause-scroll .marquee-wrapper::-webkit-scrollbar {
        width: 8px
    }

    .marquee.can-scroll.pause-scroll .marquee-wrapper::-webkit-scrollbar-track {
        background-color: #e7e7e7;
        border: 1px solid #cacaca;
        border-radius: 6px;
        box-shadow: inset 0 0 6px rgba(0, 0, 0, .3)
    }

    .marquee.can-scroll.pause-scroll .marquee-wrapper::-webkit-scrollbar-thumb {
        background-color: #363636;
        border-radius: 6px
    }
}

:root {
    --app-background: #fff;
    --base-text-color: #0a0a0a;
    --primary-neutral-200: #edeef1;
    --primary-neutral-300: #dde0e8;
    --primary-neutral-400: #cecece;
    --primary-neutral-600: #76767a;
    --primary-neutral-700: #71717a;
    --primary-neutral-800: #505057;
    --primary-neutral-900: #31313b
}

.hamburger-menu {
    background-color: #faf7f5;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
    max-width: 360px;
    overflow-y: auto;
    padding: 16px 24px 8px;
    position: fixed;
    right: -360px;
    scrollbar-width: none;
    top: 0;
    transform: translateZ(0);
    transition: all .25s ease-in-out;
    width: 100%;
    z-index: 5888888
}

.hamburger-menu::-webkit-scrollbar {
    display: none
}

.hamburger-menu.active {
    right: 0
}

.hamburger-menu .hamburger-menu-content {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    row-gap: 16px
}

.hamburger-menu .hamburger-menu-top {
    align-items: center;
    display: flex;
    justify-content: space-between
}

.hamburger-menu .hamburger-menu-top .monogram-tap-target {
    align-items: center;
    display: flex;
    justify-content: center;
    padding: 5px 3px 5px 0
}

.hamburger-menu .hamburger-menu-top .logo-monogram {
    color: #0a0a0a;
    height: 34px;
    margin-top: 3px;
    width: 41px
}

.hamburger-menu .close-button {
    align-items: center;
    background: none;
    border: none;
    display: flex;
    height: 44px;
    justify-content: center;
    margin-right: -8px;
    padding: 0;
    width: 44px
}

.hamburger-menu .close-button .close-button-background {
    align-items: center;
    background: #0a0a0a;
    border: none;
    border-radius: 50%;
    display: flex;
    height: 40px;
    justify-content: center;
    width: 40px
}

.hamburger-menu .close-button:hover .close-button-background {
    background: #31313b
}

.hamburger-menu .close-button .close-icon {
    font-size: 20px
}

.hamburger-menu .close-button .close-icon path {
    fill: #fff
}

.hamburger-menu .close-button:hover {
    cursor: pointer
}

.hamburger-menu .ai-search-box {
    border: none;
    margin: 0;
    padding: 4px 0 0
}

.hamburger-menu .ai-search-box input {
    font-size: 1rem;
    height: 44px;
    padding-bottom: 0;
    padding-top: 0
}

.hamburger-menu .ai-search-box .input-holder-inner {
    border: 1px solid transparent
}

.hamburger-menu .ai-search-box .input-holder-inner:has(input:focus) {
    border: none
}

.hamburger-menu .ai-search-box .input-holder-inner .inline-button {
    align-items: center;
    display: flex;
    font-size: 20px;
    height: 44px;
    justify-content: center;
    right: 0;
    top: 0;
    width: 44px
}

.hamburger-menu .ai-search-box .input-holder-inner .inline-button:hover {
    color: #505057
}

.hamburger-menu .ai-search-box .input-holder-inner .ai-search-icon {
    flex-shrink: 0;
    height: 20px;
    width: 20px
}

.hamburger-menu .ai-search-box .trending-holder {
    display: none
}

.hamburger-menu .ai-search-box input:focus {
    border: 2px solid #002aff;
    height: 46px
}

.hamburger-menu .hamburger-menu-vertical-lists {
    --row-gap: 12px;
    display: flex;
    flex-direction: column;
    row-gap: var(--row-gap)
}

.hamburger-menu .accordion[data-group=menu] {
    width: 312px
}

.hamburger-menu .accordion[data-group=editions] .accordion-row:after {
    display: none
}

.hamburger-menu .accordion[data-group=editions] .accordion-item,
.hamburger-menu .accordion[data-group=editions] .accordion-item.without-link .accordion-button {
    font-size: .875rem;
    font-weight: 600
}

.hamburger-menu .accordion[data-group=editions] .accordion-item.without-link .accordion-button:hover {
    color: #505057
}

.hamburger-menu .accordion[data-group=editions] .accordion-button .chevron-down-icon {
    margin-left: 4px;
    top: 0
}

.hamburger-menu .accordion[data-group=editions] .accordion-link {
    font-weight: 500
}

.app-cta-wrapper {
    border-bottom: 1px solid #cecece;
    color: #0a0a0a;
    display: flex;
    justify-content: center;
    text-decoration: none
}

.app-cta-wrapper .logo-wrapper {
    align-content: center;
    color: #002aff;
    display: flex;
    flex-wrap: wrap;
    font-size: 1.125rem;
    justify-content: center;
    margin: auto 4px auto 0
}

.app-cta-wrapper .cta-text {
    font-size: .875rem;
    line-height: 2.75rem
}

.hamburger-menu-account-links {
    display: list-block;
    flex-direction: column;
    font-size: .875rem;
    line-height: 44px;
    margin-top: 16px
}

.hamburger-menu-account-links .subscribe-link .svg-icon {
    font-size: 16px;
    margin: 0 6px 0 -2px
}

.hamburger-menu-account-links .account-text,
.hamburger-menu-account-links .newsletter-link {
    color: #0a0a0a
}

.hamburger-menu-account-links .account-text:hover,
.hamburger-menu-account-links .newsletter-link:hover {
    color: #505057
}

.hamburger-menu-account-links .account-text,
.hamburger-menu-account-links .newsletter-link,
.hamburger-menu-account-links .subscribe-link {
    align-items: center;
    display: inline-flex;
    height: 44px;
    justify-content: flex-start
}

.hamburger-menu-footer {
    margin: 40px 8px 0
}

.social-media-follow {
    justify-content: center;
    margin: 0 auto
}

.social-media-follow .social-link:hover .svg-icon {
    color: #505057
}

@keyframes fade {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.ai-search-box {
    border-bottom: 1px solid #cecece;
    container-name: ai-search-box;
    container-type: inline-size;
    padding: 20px 0 16px
}

.ai-search-box,
.ai-search-box .big-button {
    font-family: Garnett, Helvetica, Arial, sans-serif
}

.ai-search-box .big-button {
    background: #002aff;
    border: none;
    border-radius: 24px;
    color: #fff;
    cursor: pointer;
    display: none;
    font-size: .8125rem;
    font-weight: 500;
    margin-left: 16px;
    padding: 12px 40px;
    width: fit-content
}

.ai-search-box .big-button:hover {
    background: #02c
}

.ai-search-box .input-holder {
    display: flex
}

.ai-search-box .input-holder-inner {
    display: flex;
    position: relative;
    width: 100%
}

.ai-search-box .input-holder-inner .inline-button {
    background: none;
    border: none;
    color: #0a0a0a;
    cursor: pointer;
    font-size: 25px;
    line-height: 1;
    position: absolute;
    right: 5px;
    top: 8px
}

.ai-search-box .input-holder-inner .inline-button:hover {
    color: #002aff
}

.ai-search-box a.tag {
    border-right: 1px solid #cecece;
    color: #0a0a0a;
    display: block;
    font-size: .875rem;
    font-weight: 400;
    padding-right: 16px
}

.ai-search-box a.tag:hover {
    color: #002aff
}

.ai-search-box .carousel-item:last-child a.tag {
    border-right: none;
    padding-right: 0
}

.ai-search-box input {
    border: 1px solid #76767a;
    border-radius: 4px;
    font-family: Garnett, Helvetica, Arial, sans-serif;
    font-size: .875rem;
    font-weight: 400;
    padding: 10px 12px;
    width: 100%
}

.ai-search-box input::placeholder {
    color: #76767a;
    font-weight: 400
}

.ai-search-box input:focus {
    -webkit-animation: fade .01s;
    -moz-animation: fade .01s;
    -o-animation: fade .01s;
    animation: fade .01s;
    border-color: #0a0a0a;
    box-shadow: inset 0 0 0 .5px #0a0a0a;
    outline: none
}

.ai-search-box .trending-holder {
    align-items: center;
    display: flex;
    margin-top: 12px
}

.ai-search-box .trending-holder svg {
    color: #002aff;
    flex-shrink: 0;
    margin-right: 8px
}

.ai-search-box .carousel-holder {
    width: calc(100% - 8px)
}

.ai-search-box .skeleton {
    align-items: center;
    background: rgba(237, 238, 241, .4);
    border: none !important;
    border-radius: .3125rem;
    color: transparent !important;
    display: block;
    min-width: 120px;
    overflow: hidden;
    pointer-events: none;
    position: relative
}

.ai-search-box .skeleton:after {
    animation: skeleton-shimmer 1s infinite;
    background-image: linear-gradient(90deg, hsla(0, 0%, 100%, 0), hsla(0, 0%, 100%, .2) 20%, hsla(0, 0%, 100%, .5) 60%, hsla(0, 0%, 100%, 0));
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transform: translateX(-100%)
}

@container ai-search-box (min-width: 650px) {
    .ai-search-box .big-button {
        display: block
    }
}

@keyframes skeleton-shimmer {
    to {
        transform: translateX(100%)
    }
}

@media (min-width:960px) {
    .ai-search-box {
        border-bottom: none;
        border-top: 1px solid #0a0a0a;
        margin-bottom: -32px;
        margin-top: 0;
        overflow: hidden
    }

    .ai-search-box .carousel-gradient {
        width: calc(100% - 24px)
    }
}

:root {
    --app-background: #fff;
    --base-text-color: #0a0a0a;
    --primary-neutral-200: #edeef1;
    --primary-neutral-300: #dde0e8;
    --primary-neutral-400: #cecece;
    --primary-neutral-600: #76767a;
    --primary-neutral-700: #71717a;
    --primary-neutral-800: #505057;
    --primary-neutral-900: #31313b
}

.accordion {
    display: grid
}

.accordion.level-0 {
    --row-gap: 12px;
    row-gap: var(--row-gap)
}

.accordion.level-0>.accordion-row {
    position: relative
}

.accordion.level-0>.accordion-row:after {
    background-image: linear-gradient(90deg, #71717a 25%, hsla(0, 0%, 100%, 0) 0);
    background-position: bottom;
    background-repeat: repeat-x;
    background-size: 4px 2px;
    border: none;
    bottom: calc(var(--row-gap)/2*-1 + -1px);
    content: "";
    display: block;
    height: 1px;
    position: absolute;
    width: 100%
}

.accordion.level-0 .accordion-button {
    align-items: center;
    display: flex;
    flex-grow: 1;
    justify-content: flex-end;
    order: 2;
    padding-right: 13px
}

.accordion.level-1 .accordion-row {
    line-height: 44px
}

.accordion.level-1 .accordion-item {
    gap: 0;
    justify-content: start;
    justify-self: start
}

.accordion.level-1 .accordion-link {
    display: inline-block;
    font-size: .875rem;
    font-weight: 600;
    line-height: 44px;
    margin-left: 16px
}

.accordion.level-1 .accordion-link.with-nested-accordion {
    margin-left: 0;
    order: 2
}

.accordion.level-1 .accordion-button {
    display: block;
    font-size: 10px;
    height: 44px;
    order: 1;
    padding: 0;
    width: 44px
}

.accordion.level-1 .accordion-row.active .arrow-filled-right {
    transform: rotate(90deg)
}

.accordion.level-2 .accordion-link {
    align-items: center;
    display: inline-flex;
    font-size: .875rem;
    font-weight: 500;
    line-height: 1.225rem;
    margin-left: 44px;
    min-height: 44px
}

.accordion .accordion-row {
    display: grid;
    font-size: 1.125rem;
    grid-template-rows: min-content 0fr;
    line-height: 44px;
    transition: grid-template-rows .2s ease-in
}

.accordion .accordion-row.active {
    grid-template-rows: min-content 1fr
}

.accordion .accordion-row.active .chevron-down-icon {
    transform: rotate(-180deg)
}

.accordion .accordion-row .accordion {
    overflow: hidden
}

.accordion .accordion-item {
    display: flex;
    font-weight: 500;
    gap: var(--row-gap);
    justify-content: space-between
}

.accordion .accordion-item.without-link {
    gap: 4px;
    justify-content: start
}

.accordion .accordion-item.without-link .accordion-button {
    flex-grow: 0;
    font-size: 16px;
    justify-content: start;
    padding: 0
}

.accordion .accordion-button {
    background: none;
    border: none
}

.accordion .accordion-link {
    min-width: 44px
}

.accordion .accordion-button,
.accordion .accordion-link {
    color: #0a0a0a
}

.accordion .svg-icon {
    transition: transform .2s ease-in-out
}

.accordion .chevron-down-icon {
    position: relative;
    top: -1px
}

.accordion .arrow-filled-right {
    position: relative;
    top: -2px
}

.accordion .arrow-filled-right.svg-icon {
    vertical-align: middle
}

@media (min-width:600px) {

    .accordion .accordion-button:hover,
    .accordion .accordion-link:hover {
        color: #505057;
        cursor: pointer
    }
}

.account-icon-component .account-icon-loader {
    bottom: 0;
    left: -10px;
    position: absolute;
    top: 0;
    width: 1px
}

.account-icon-component a.account-text-logged-in {
    font-size: 11px;
    letter-spacing: .24px;
    margin-right: 13px
}

.social-media-follow {
    column-gap: 0;
    display: flex;
    font-size: 1.25rem
}

.social-media-follow .svg-icon {
    height: 1em;
    width: 1em
}

.social-media-follow .social-link {
    align-items: center;
    color: #0a0a0a;
    display: flex;
    height: 44px;
    justify-content: center;
    width: 44px
}

:root {
    --app-background: #fff;
    --base-text-color: #0a0a0a;
    --primary-neutral-200: #edeef1;
    --primary-neutral-300: #dde0e8;
    --primary-neutral-400: #cecece;
    --primary-neutral-600: #76767a;
    --primary-neutral-700: #71717a;
    --primary-neutral-800: #505057;
    --primary-neutral-900: #31313b
}

.overlay {
    background: hsla(0, 0%, 4%, .5);
    height: 100vh;
    left: 0;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    top: 0;
    transition: opacity .3s ease-in-out;
    width: 100vw;
    z-index: 5777777
}

.overlay.active {
    opacity: 1;
    pointer-events: all
}

:root {
    --app-background: #fff;
    --base-text-color: #0a0a0a;
    --primary-neutral-200: #edeef1;
    --primary-neutral-300: #dde0e8;
    --primary-neutral-400: #cecece;
    --primary-neutral-600: #76767a;
    --primary-neutral-700: #71717a;
    --primary-neutral-800: #505057;
    --primary-neutral-900: #31313b
}

.footer {
    align-items: center;
    display: flex;
    flex-direction: column;
    font-size: .75rem;
    line-height: 1.05rem;
    margin: 48px 24px 0;
    padding: 0;
    --grid-row-gap: 24px;
    --grid-col-gap: 24px;
    --link-tap-height: 44.8px;
    column-gap: var(--grid-col-gap);
    position: relative;
    row-gap: 16px
}

.footer:after {
    background: #faf7f5;
    content: "";
    height: calc(100% + var(--grid-col-gap)*2);
    left: calc(-50vw - -50%);
    position: absolute;
    top: calc(var(--grid-col-gap)*-1);
    width: 100vw;
    z-index: -1
}

.footer.gradient {
    position: relative
}

.footer.gradient:before {
    background: linear-gradient(1turn, #fff 35.75%, hsla(0, 0%, 100%, 0) 136.29%);
    content: "";
    display: block;
    height: 225px;
    position: absolute;
    top: -225px;
    width: 100%
}

.footer.gradient,
.footer.paywall-drawer-visible {
    margin: 0
}

.footer.gradient section,
.footer.gradient:after,
.footer.paywall-drawer-visible section,
.footer.paywall-drawer-visible:after {
    display: none
}

.footer a {
    color: #0a0a0a
}

.footer a:hover {
    color: #505057
}

.footer>section {
    width: 100%
}

.footer .top-section {
    border-bottom: 1px solid #cecece;
    column-gap: var(--grid-col-gap);
    margin-bottom: calc(var(--grid-row-gap) - 16px);
    padding-bottom: var(--grid-row-gap)
}

.footer .top-section,
.footer .top-section .sub-section-right {
    display: flex;
    flex-direction: column;
    row-gap: var(--grid-row-gap)
}

.footer .top-section .sub-section-right {
    align-items: center
}

.footer .top-section>section {
    display: flex;
    justify-content: center
}

.footer .footer-logo {
    align-items: center;
    display: flex;
    width: 113px
}

.footer .app-store-icons {
    align-items: center;
    display: flex;
    gap: 10px;
    justify-content: space-between
}

.footer .app-store-icon {
    align-items: center;
    display: flex;
    height: 44px;
    width: 109px
}

.footer .brands-label {
    display: none
}

.footer .social {
    align-items: center;
    display: flex;
    gap: var(--grid-row-gap);
    justify-content: space-between
}

.footer .links-section {
    display: flex;
    flex-direction: column;
    row-gap: var(--grid-row-gap)
}

.footer .links-section .links-list-heading {
    margin-bottom: 8px
}

.footer .links-section .links-list-link {
    display: flex;
    justify-content: center;
    min-width: 44px;
    padding: 14px 0
}

.footer .links-section .links-list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    overflow: hidden;
    padding: 0;
    --grid-row-gap: 0;
    column-gap: var(--grid-col-gap);
    row-gap: var(--grid-row-gap)
}

.footer .links-section .links-list li {
    align-items: center;
    display: flex;
    margin: 0 -12px 0 0;
    padding: 0 12px 0 0;
    position: relative;
    white-space: nowrap
}

.footer .links-section .links-list li:before {
    background-image: linear-gradient(180deg, #71717a 25%, hsla(0, 0%, 100%, 0) 0);
    background-position: 0;
    background-repeat: repeat-y;
    background-size: 2px 4px;
    border: none;
    content: "";
    display: block;
    height: 100%;
    left: calc(var(--grid-col-gap)/2*-1 + -1px);
    max-height: 1.05rem;
    position: absolute;
    top: 50%;
    transform: translate3d(0, -50%, 0);
    width: 1px
}

.footer .links-section .sub-section-company,
.footer .links-section .sub-section-group,
.footer .links-section .sub-section-privacy {
    flex-basis: 100%
}

.footer .links-section .sub-section-group {
    display: flex;
    flex-direction: column;
    row-gap: var(--grid-row-gap)
}

.footer .links-section .links-list-wrapper {
    display: flex
}

.footer .links-section .links-list-wrapper .links-list:not(:first-child) {
    overflow: visible
}

.footer .links-section .sub-section-editions .links-list {
    margin-left: -12px
}

.footer .copyright-section {
    border-bottom: 1px solid #cecece;
    margin-top: 16px;
    padding-bottom: 16px;
    text-align: center
}

.footer .bottom-section {
    --grid-row-gap: 16px;
    flex-direction: column;
    row-gap: var(--grid-row-gap)
}

.footer .bottom-section,
.footer .bottom-section>.sub-section {
    align-items: center;
    column-gap: var(--grid-col-gap);
    display: flex
}

.footer .bottom-section>.sub-section {
    justify-content: space-between
}

.footer .brand-logo {
    align-items: flex-start;
    display: flex
}

.footer .brand-logo.lazy-holder {
    padding-top: 10px
}

.footer .brand-logo.insider-com {
    width: 71.16px
}

.footer .brand-logo.insider-logo {
    width: 79.2px
}

.footer .brand-logo.insider-inc {
    width: 69.75px
}

.footer .brand-logo.insider-tech {
    width: 43.38px
}

.footer .brand-logo.bi-de {
    width: 85.13px
}

.footer .brand-logo.insider-media {
    width: 33.84px
}

.footer .brand-logo.news-insider {
    width: 30.42px
}

.footer .brand-logo.silicon-alley-insider {
    width: 74.52px
}

@media (min-width:728px) {
    .footer .bottom-section {
        align-items: center;
        flex-direction: row;
        justify-content: center
    }
}

@media (min-width:1008px) {
    .footer {
        --link-tap-height: 32.8px
    }

    .footer .top-section,
    .footer .top-section .sub-section-right {
        flex-direction: row;
        justify-content: space-between
    }

    .footer .top-section .sub-section-right {
        column-gap: var(--grid-col-gap)
    }

    .footer .links-section .links-list-link {
        min-width: 32px;
        padding: 8px 0
    }

    .footer .links-section .sub-section-editions .links-list {
        margin-left: -6px
    }

    .footer .links-section {
        flex-direction: row
    }

    .footer .links-section .sub-section-editions,
    .footer .links-section .sub-section-privacy {
        flex-basis: 50%;
        flex-grow: 1
    }

    .footer .links-section .sub-section-editions .links-list,
    .footer .links-section .sub-section-privacy .links-list {
        column-gap: var(--grid-col-gap);
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        margin-right: 70px;
        max-height: calc(var(--link-tap-height)*7)
    }

    .footer .links-section .sub-section-editions li,
    .footer .links-section .sub-section-privacy li {
        flex-basis: calc(50% - 12px)
    }

    .footer .links-section .sub-section-company li,
    .footer .links-section .sub-section-other li,
    .footer .links-section .sub-section-privacy li {
        border: none;
        margin: 0;
        padding: 0
    }

    .footer .links-section .sub-section-company li:before,
    .footer .links-section .sub-section-other li:before,
    .footer .links-section .sub-section-privacy li:before {
        display: none
    }

    .footer .links-section .sub-section-editions .links-list {
        margin-right: 80px;
        max-height: calc(var(--link-tap-height)*3 + var(--grid-col-gap));
        max-width: 64px;
        --grid-col-gap: 8px
    }

    .footer .links-section .sub-section-editions li {
        border: none;
        flex-basis: calc(50% - var(--grid-col-gap));
        margin: 0;
        padding: 0
    }

    .footer .links-section .sub-section-editions li:before {
        display: none
    }

    .footer .links-section .sub-section-company,
    .footer .links-section .sub-section-group {
        flex-basis: 25%
    }

    .footer .links-section .sub-section-company .links-list,
    .footer .links-section .sub-section-other .links-list {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        row-gap: var(--grid-row-gap)
    }
}

@media (min-width:1008px)and (max-width:1307px) {
    .footer {
        margin-left: auto;
        margin-right: auto;
        max-width: 1079px;
        width: calc(100% - var(--grid-col-gap)*2)
    }
}

@media (min-width:1308px) {
    .footer {
        margin-left: calc(50% - 630px);
        margin-right: calc(50% - 630px)
    }

    .footer .links-section .sub-section-privacy .links-list {
        margin-right: 90px
    }

    .footer .links-section .sub-section-editions .links-list {
        margin-right: 110px
    }

    .footer .links-section .sub-section-privacy {
        flex-basis: 35%
    }

    .footer .links-section .sub-section-company {
        flex-basis: 20%
    }

    .footer .links-section .sub-section-group {
        flex-basis: 45%;
        flex-direction: row
    }

    .footer .links-section .sub-section-group .sub-section-editions,
    .footer .links-section .sub-section-group .sub-section-other {
        flex-basis: 50%
    }
}

@media (min-width:1950px) {
    .footer:after {
        left: 50%;
        max-width: 1950px;
        transform: translate3d(-50%, 0, 0)
    }
}

.jumper {
    background-color: #fff;
    border: none;
    border-radius: 3px;
    box-shadow: 0 0 0 1px rgba(9, 30, 66, .08), 0 2px 10px rgba(9, 30, 66, .08), 0 0 20px -4px rgba(9, 30, 66, .31);
    display: flex;
    flex-direction: column;
    left: 0;
    margin: 10px;
    padding: 10px 15px;
    position: fixed;
    top: -200px;
    transition: transform .3s cubic-bezier(.2, 0, 0, 1) 0s;
    width: 150px;
    z-index: 5999999
}

.jumper ol {
    list-style-type: none;
    margin-bottom: 0;
    padding-left: 15px
}

.jumper a {
    color: #0a0a0a
}

.jumper a:focus-visible {
    color: #002aff
}

.jumper.active {
    transform: translateY(200px)
}
/* new */

@keyframes ticker-scroll {
    from {
      transform: translateX(100%);
    }
    to {
      transform: translateX(-100%);
    }
  }
  
  .marquee-scroller {
    display: flex;
    white-space: nowrap;
    overflow: hidden;
  }
  
  .ticker-container {
    display: flex;
    animation: ticker-scroll 30s linear infinite;
  }
  
  @media (min-width: 768px) {
    .ticker-container {
      animation: none;
      transform: none;
    }
  }
  /* new logo */
  .masthead .logo-link{
    width: 585px;
    height: 50px;
  }
  a.sc-small svg{
    width: 60px;
    height: auto;
  }
  @media (max-width: 820px) {
    .masthead .logo-link{
        width: 318px;
        height: 50px;
      }
  }
  @media (max-width: 500px) {
    .masthead .logo-link{
        width: 250px;
        height: 50px;
      }
  }
  @media (max-width: 350px) {
    .masthead .logo-link{
        width: 232px;
        height: 50px;
      }
  }