


.text--xxxl {
    font-size: 2.48832em;
    font-size: var(--text-xxxl)
}

h1,
.text--xxl {
    font-size: 2.0736em;
    font-size: var(--text-xxl)
}

h2,
.text--xl {
    font-size: 1.728em;
    font-size: var(--text-xl)
}

h3,
.text--lg {
    font-size: 1.44em;
    font-size: var(--text-lg)
}

h4,
.text--md {
    font-size: 1.2em;
    font-size: var(--text-md)
}

.text--sm,
small {
    font-size: .83333em;
    font-size: var(--text-sm)
}

.text--xs {
    font-size: .69444em;
    font-size: var(--text-xs)
}

a,
.link {
    color: #2a6df4;
    color: var(--color-primary);
    text-decoration: underline
}

mark {
    background-color: hsla(355, 90%, 61%, .2);
    background-color: hsla(var(--color-accent-h), var(--color-accent-s), var(--color-accent-l), 0.2);
    color: inherit
}

strong {
    font-weight: 700
}

s {
    text-decoration: line-through
}

u {
    text-decoration: underline
}

.text--subtle,
.text-component .text--subtle {
    color: #79797c;
    color: var(--color-contrast-medium)
}

.text--inherit,
.text-component .text--inherit {
    color: inherit
}

.text-component {
    --component-body-line-height: calc(var(--body-line-height)*var(--line-height-multiplier, 1));
    --component-heading-line-height: calc(var(--heading-line-height)*var(--line-height-multiplier, 1));
    --line-height-multiplier: 1;
    --text-vspace-multiplier: 1
}

.text-component h1,
.text-component h2,
.text-component h3,
.text-component h4 {
    line-height: 1.2;
    line-height: var(--component-heading-line-height);
    margin-bottom: .25rem;
    margin-bottom: calc(var(--space-xxxs)*var(--text-vspace-multiplier))
}

.text-component h2,
.text-component h3,
.text-component h4 {
    margin-top: .75rem;
    margin-top: calc(var(--space-sm)*var(--text-vspace-multiplier))
}

.text-component p,
.text-component blockquote,
.text-component ul li,
.text-component ol li {
    line-height: 1.4;
    line-height: var(--component-body-line-height);
    color: #313135;
    color: var(--color-contrast-high)
}

.text-component ul,
.text-component ol,
.text-component p,
.text-component blockquote,
.text-component .text-component__block,
.text-component .text-component__img {
    margin-bottom: .75rem;
    margin-bottom: calc(var(--space-sm)*var(--text-vspace-multiplier))
}

.text-component ul,
.text-component ol {
    padding-left: 1em
}

.text-component ul {
    list-style-type: disc
}

.text-component ol {
    list-style-type: decimal
}

.text-component em {
    font-style: italic
}

.text-component blockquote {
    padding-left: 1em;
    border-left: 4px solid #d3d3d4;
    border-left: 4px solid var(--color-contrast-low)
}

.text-component hr {
    background: #d3d3d4;
    background: var(--color-contrast-low);
    height: 1px;
    margin: 2rem auto;
    margin: calc(var(--space-lg)*var(--text-vspace-multiplier)) auto
}

.text-component>*:first-child {
    margin-top: 0
}

.text-component>*:last-child {
    margin-bottom: 0
}

.article.text-component {
    --line-height-multiplier: 1.13;
    --text-vspace-multiplier: 1.2
}

.text-component__block--full-width {
    width: 100vw;
    margin-left: calc(50% - 50vw)
}

.text-component__img {
    text-align: center
}

.text-component__img img {
    display: block;
    margin: 0 auto
}

.text-component__img figcaption {
    text-align: center;
    font-size: .83333em;
    font-size: var(--text-sm);
    color: #79797c;
    color: var(--color-contrast-medium);
    margin-top: .5rem;
    margin-top: var(--space-xs)
}

.text-component__block .text-component__img {
    margin-bottom: 0
}

@media(min-width:37.5rem) {
    .text-component__block--left,
    .text-component__block--right,
    .text-component__img--left,
    .text-component__img--right {
        width: 45%
    }
    .text-component__block--left img,
    .text-component__block--right img,
    .text-component__img--left img,
    .text-component__img--right img {
        width: 100%
    }
    .text-component__block--left,
    .text-component__img--left {
        float: left;
        margin-right: .75rem;
        margin-right: calc(var(--space-sm)*var(--text-vspace-multiplier, 1))
    }
    .text-component__block--right,
    .text-component__img--right {
        float: right;
        margin-left: .75rem;
        margin-left: calc(var(--space-sm)*var(--text-vspace-multiplier, 1))
    }
}

@media(min-width:90rem) {
    .text-component__block--outset,
    .text-component__img--outset {
        width: calc(100% + 10.5rem);
        width: calc(100% + 2*var(--space-xxl))
    }
    .text-component__block--outset img,
    .text-component__img--outset img {
        width: 100%
    }
    .text-component__block--outset:not(.text-component__block--right),
    .text-component__img--outset:not(.text-component__img--right) {
        margin-left: -5.25rem;
        margin-left: calc(-1*var(--space-xxl))
    }
    .text-component__block--left,
    .text-component__block--right,
    .text-component__img--left,
    .text-component__img--right {
        width: 50%
    }
    .text-component__block--right.text-component__block--outset,
    .text-component__img--right.text-component__img--outset {
        margin-right: -5.25rem;
        margin-right: calc(-1*var(--space-xxl))
    }
}

.truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.text--center {
    text-align: center
}

.text--replace {
    overflow: hidden;
    color: transparent;
    text-indent: 100%;
    white-space: nowrap
}

:root {
    --icon-xxs: 12px;
    --icon-xs: 16px;
    --icon-sm: 24px;
    --icon-md: 32px;
    --icon-lg: 48px;
    --icon-xl: 64px;
    --icon-xxl: 128px
}

.icon {
    display: inline-block;
    color: #1c1c21;
    color: var(--color-contrast-higher);
    fill: currentColor;
    height: 1em;
    width: 1em;
    line-height: 1
}

.icon--xxs {
    font-size: 12px;
    font-size: var(--icon-xxs)
}

.icon--xs {
    font-size: 16px;
    font-size: var(--icon-xs)
}

.icon--sm {
    font-size: 24px;
    font-size: var(--icon-sm)
}

.icon--md {
    font-size: 32px;
    font-size: var(--icon-md)
}

.icon--lg {
    font-size: 48px;
    font-size: var(--icon-lg)
}

.icon--xl {
    font-size: 64px;
    font-size: var(--icon-xl)
}

.icon--xxl {
    font-size: 128px;
    font-size: var(--icon-xxl)
}

.icon-text {
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-align: center;
    align-items: center
}

.icon-text>*:nth-child(2) {
    margin-left: .375rem;
    margin-left: var(--space-xxs)
}

.icon-text .icon {
    color: inherit;
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.icon-text.icon-text--gap-none>*:nth-child(2) {
    margin-left: 0
}

.icon-text.icon-text--gap-xxxs>*:nth-child(2) {
    margin-left: .25rem;
    margin-left: var(--space-xxxs)
}

.icon-text.icon-text--gap-xxxxs>*:nth-child(2) {
    margin-left: .125rem;
    margin-left: var(--space-xxxxs)
}

.icon-text--space-between {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.icon--is-spinning {
    -webkit-animation: icon-spin 1s infinite linear;
    animation: icon-spin 1s infinite linear
}

@-webkit-keyframes icon-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes icon-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

.icon use {
    color: inherit;
    fill: currentColor
}

:root {
    --btn-font-size: 1em;
    --btn-sm: calc(var(--btn-font-size) - 0.2em);
    --btn-md: calc(var(--btn-font-size) + 0.2em);
    --btn-lg: calc(var(--btn-font-size) + 0.4em)
}

.btn {
    display: -ms-inline-flexbox;
    display: inline-flex;
    position: relative;
    white-space: nowrap;
    text-decoration: none;
    line-height: 1;
    padding: .5em .75em;
    padding: var(--space-xs) var(--space-sm);
    border-radius: .25em;
    font-size: 1em;
    font-size: var(--btn-font-size);
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center
}

.btn--primary {
    background-color: #2a6df4;
    background-color: var(--color-primary);
    color: #fff;
    color: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.btn--subtle {
    color: #1c1c21;
    color: var(--color-contrast-higher);
    border: 1px solid #d3d3d4;
    border: 1px solid var(--color-contrast-low)
}

.btn--accent {
    background-color: #f54251;
    background-color: var(--color-accent);
    color: #fff;
    color: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.btn--disabled {
    cursor: not-allowed;
    box-shadow: none;
    opacity: .6
}

.btn--sm {
    font-size: .8em;
    font-size: var(--btn-sm)
}

.btn--md {
    font-size: 1.2em;
    font-size: var(--btn-md)
}

.btn--lg {
    font-size: 1.4em;
    font-size: var(--btn-lg)
}

.btn--full-width {
    display: -ms-flexbox;
    display: flex;
    width: 100%
}

.btn .icon {
    color: inherit;
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.btn--icon-text {
    -ms-flex-align: center;
    align-items: center
}

.btn--icon-text>*:nth-child(2) {
    margin-left: .375rem;
    margin-left: var(--space-xxs)
}

.btn--icon {
    padding: .5rem;
    padding: var(--space-xs)
}

.form-control {
    padding: .5em .75em;
    padding: var(--space-xs) var(--space-sm);
    background: #fff;
    background: var(--color-bg);
    border: 2px solid #d3d3d4;
    border: 2px solid var(--color-contrast-low);
    width: 100%
}

.form-control:focus {
    outline: none;
    border-color: #2a6df4;
    border-color: var(--color-primary);
    --color-shadow: hsla(220, 90%, 56%, 0.2);
    --color-shadow: hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.2);
    box-shadow: undefined;
    box-shadow: 0 0 0 3px var(--color-shadow)
}

.form-control:focus:focus {
    box-shadow: 0 0 0 3px hsla(220, 90%, 56%, .2);
    box-shadow: 0 0 0 3px var(--color-shadow)
}

.form-control::-webkit-input-placeholder {
    color: #79797c;
    color: var(--color-contrast-medium)
}

.form-control::-moz-placeholder {
    opacity: 1;
    color: #79797c;
    color: var(--color-contrast-medium)
}

.form-control:-ms-input-placeholder {
    color: #79797c;
    color: var(--color-contrast-medium)
}

.form-control:-moz-placeholder {
    color: #79797c;
    color: var(--color-contrast-medium)
}

.form-control[disabled],
.form-control[readonly] {
    cursor: not-allowed
}

.form-control[aria-invalid=true] {
    border-color: #f54251;
    border-color: var(--color-error)
}

.form-control[aria-invalid=true]:focus {
    --color-shadow: hsla(355, 90%, 61%, 0.2);
    --color-shadow: hsla(var(--color-error-h), var(--color-error-s), var(--color-error-l), 0.2);
    box-shadow: undefined;
    box-shadow: 0 0 0 3px var(--color-shadow)
}

.form-control[aria-invalid=true]:focus:focus {
    box-shadow: 0 0 0 3px hsla(355, 90%, 61%, .2);
    box-shadow: 0 0 0 3px var(--color-shadow)
}

.form-legend {
    color: #1c1c21;
    color: var(--color-contrast-higher);
    line-height: 1.2;
    font-size: 1.2em;
    font-size: var(--text-md);
    margin-bottom: .375rem;
    margin-bottom: var(--space-xxs)
}

.form-label {
    display: inline-block;
    font-size: .83333em;
    font-size: var(--text-sm);
    margin-bottom: .25rem;
    margin-bottom: var(--space-xxxs)
}

.form__msg-error {
    background-color: #f54251;
    background-color: var(--color-error);
    color: #fff;
    color: var(--color-white);
    font-size: .83333em;
    font-size: var(--text-sm);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding: .5rem;
    padding: var(--space-xs);
    margin-top: .75rem;
    margin-top: var(--space-sm);
    border-radius: .25em;
    position: absolute;
    clip: rect(1px, 1px, 1px, 1px)
}

.form__msg-error::before {
    content: '';
    position: absolute;
    left: .75rem;
    left: var(--space-sm);
    top: 0;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
    width: 0;
    height: 0;
    border: 8px solid transparent;
    border-bottom-color: #f54251;
    border-bottom-color: var(--color-error)
}

.form__msg-error--is-visible {
    position: relative;
    clip: auto
}

.radio-list>*,
.checkbox-list>* {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: baseline;
    align-items: baseline;
    margin-bottom: .375rem;
    margin-bottom: var(--space-xxs)
}

.radio-list>*:last-of-type,
.checkbox-list>*:last-of-type {
    margin-bottom: 0
}

.radio-list label,
.checkbox-list label {
    line-height: 1.4;
    line-height: var(--body-line-height);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.radio-list input,
.checkbox-list input {
    vertical-align: top;
    margin-right: .25rem;
    margin-right: var(--space-xxxs);
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.radio-list.radio-list--inline,
.radio-list.checkbox-list--inline,
.checkbox-list.radio-list--inline,
.checkbox-list.checkbox-list--inline {
    display: -ms-flexbox;
    display: flex;
    margin-bottom: -1.25rem;
    margin-bottom: calc(-1*var(--space-md))
}

.radio-list.radio-list--inline>*,
.radio-list.checkbox-list--inline>*,
.checkbox-list.radio-list--inline>*,
.checkbox-list.checkbox-list--inline>* {
    margin: 0 1.25rem 1.25rem 0;
    margin: 0 var(--space-md) var(--space-md) 0
}

:root {
    --zindex-header: 2;
    --zindex-popover: 4;
    --zindex-fixed-element: 5;
    --zindex-overlay: 10
}

@media not all and (min-width:30rem) {
    .display--xs {
        display: none!important
    }
}

@media(min-width:30rem) {
    .hide--xs {
        display: none!important
    }
}

@media not all and (min-width:37.5rem) {
    .display--sm {
        display: none!important
    }
}

@media(min-width:37.5rem) {
    .hide--sm {
        display: none!important
    }
}

@media not all and (min-width:64rem) {
    .display--md {
        display: none!important
    }
}

@media(min-width:64rem) {
    .hide--md {
        display: none!important
    }
}

@media not all and (min-width:80rem) {
    .display--lg {
        display: none!important
    }
}

@media(min-width:80rem) {
    .hide--lg {
        display: none!important
    }
}

@media not all and (min-width:90rem) {
    .display--xl {
        display: none!important
    }
}

@media(min-width:90rem) {
    .hide--xl {
        display: none!important
    }
}

:root {
    --display: block
}

.is-visible {
    display: block!important;
    display: var(--display)!important
}

.is-hidden {
    display: none!important
}

.sr-only {
    position: absolute;
    clip: rect(1px, 1px, 1px, 1px);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    width: 1px;
    height: 1px;
    overflow: hidden;
    padding: 0;
    border: 0;
    white-space: nowrap
}

.cd-demo-container {
    width: calc(100% - 2.5rem);
    margin-left: auto;
    margin-right: auto;
    padding: 1.25rem 0;
    max-width: 64rem
}

.cd-demo-container--xxxs {
    max-width: 20rem
}

.cd-demo-container--xxs {
    max-width: 30rem
}

.cd-demo-container--xs {
    max-width: 37.5rem
}

.cd-demo-container--sm {
    max-width: 45rem
}

.cd-demo-container--lg {
    max-width: 80rem
}

.cd-demo-container--full-width {
    width: 100%;
    max-width: none
}

.cd-demo--padding-xl {
    padding: 2rem 0
}

.cd-demo--padding-xxl {
    padding: 3.25rem 0
}

.cd-demo-container--center-x {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center
}

@media(min-width:64rem) {
    .cd-demo--padding-xl {
        padding: 3.25rem 0
    }
    .cd-demo--padding-xxl {
        padding: 5.25rem 0
    }
}

.cd-demo-container--is-hidden {
    display: none
}

.cd-demo-font {
    font-family: -apple-system, BlinkMacSystemFont, Roboto, sans-serif!important
}

.cd-demo-item--is-hidden {
    display: none
}

.cd-demo-item--selected {
    -webkit-animation: demoItemSelected .5s;
    animation: demoItemSelected .5s
}

@-webkit-keyframes demoItemSelected {
    0%,
    50% {
        outline: 2px solid #2a6df4;
        outline: 2px solid var(--color-primary)
    }
    100% {
        outline: 2px solid transparent
    }
}

@keyframes demoItemSelected {
    0%,
    50% {
        outline: 2px solid #2a6df4;
        outline: 2px solid var(--color-primary)
    }
    100% {
        outline: 2px solid transparent
    }
}

.cd-demo__title {
    font-size: 1.2rem;
    font-family: -apple-system, BlinkMacSystemFont, Roboto, sans-serif!important;
    margin-bottom: .75rem;
    color: #1c1c21;
    color: var(--color-contrast-higher)
}

.cd-demo-divider {
    height: 1px;
    background-color: #d3d3d4;
    background-color: var(--color-contrast-low);
    margin: 1.25rem 0
}

.cd-demo-switch {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center
}

.cd-demo-switch__inner {
    display: -ms-flexbox;
    display: flex
}

.cd-demo-switch__inner button {
    background-color: transparent;
    padding: 0;
    border: 0;
    border-radius: 0;
    color: inherit;
    line-height: inherit;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-size: .875rem;
    font-family: -apple-system, BlinkMacSystemFont, Roboto, sans-serif!important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding: .25rem .375rem;
    border: 1px solid #d3d3d4;
    border: 1px solid var(--color-contrast-low);
    color: #1c1c21;
    color: var(--color-contrast-higher)
}

.cd-demo-switch__inner button:focus {
    outline: 2px solid #1c1c21;
    outline: 2px solid var(--color-contrast-higher);
    outline-offset: 2px;
    position: relative;
    z-index: 1
}

.cd-demo-switch__inner button:first-child {
    border-right: none;
    border-radius: 3px 0 0 3px
}

.cd-demo-switch__inner button:last-child {
    border-left: none;
    border-radius: 0 3px 3px 0
}

.cd-demo-switch__inner button.is-selected {
    background-color: #1c1c21;
    background-color: var(--color-contrast-higher);
    color: #fff;
    color: var(--color-bg);
    border-color: #1c1c21;
    border-color: var(--color-contrast-higher)
}

.cd-demo__viewport-size {
    position: fixed;
    display: none;
    top: 0;
    right: 0;
    padding: 10px;
    z-index: 99;
    font-size: .8rem;
    background-color: rgba(255, 255, 255, .92);
    color: rgba(0, 0, 0, .85);
    font-family: -apple-system, BlinkMacSystemFont, Roboto, sans-serif!important
}

.cd-demo-margin-top,
.cd-demo-margin-top--md {
    margin-top: 1.25rem
}

.cd-demo-margin-top--xxxs {
    margin-top: .25rem
}

.cd-demo-margin-top--xxs {
    margin-top: .375rem
}

.cd-demo-margin-top--xs {
    margin-top: .5rem
}

.cd-demo-margin-top--sm {
    margin-top: .75rem
}

.cd-demo-margin-top--lg {
    margin-top: 2rem
}

.cd-demo-margin-top--xl {
    margin-top: 3.25rem
}

.cd-demo-margin-top--xxl {
    margin-top: 5.25rem
}

.cd-demo-margin-top--xxxl {
    margin-top: 8.5rem
}

.cd-demo-margin-bottom,
.cd-demo-margin-bottom--md {
    margin-bottom: 1.25rem
}

.cd-demo-margin-bottom--xxxs {
    margin-bottom: .25rem
}

.cd-demo-margin-bottom--xxs {
    margin-bottom: .375rem
}

.cd-demo-margin-bottom--xs {
    margin-bottom: .5rem
}

.cd-demo-margin-bottom--sm {
    margin-bottom: .75rem
}

.cd-demo-margin-bottom--lg {
    margin-bottom: 2rem
}

.cd-demo-margin-bottom--xl {
    margin-bottom: 3.25rem
}

.cd-demo-margin-bottom--xxl {
    margin-bottom: 5.25rem
}

.cd-demo-margin-bottom--xxxl {
    margin-bottom: 8.5rem
}

.language-picker {
    display: inline-block;
    position: relative
}


.flag-innerss .language-picker__form {
    display: none
}

.language-picker__button .icon {
    height: 16px;
    width: 16px;
    margin-left: .25rem;
    margin-left: var(--space-xxxs);
    display: none;
}

.language-picker__dropdown {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    background-color: #fff;
    background-color: var(--color-bg);
    box-shadow: 0 1px 1px rgba(0, 0, 0, .2), 0 1px 8px rgba(0, 0, 0, .1);
    box-shadow: var(--shadow-sm);
    padding: .375rem 0;
    padding: var(--space-xxs) 0;
    border-radius: .25em;
    z-index: 4;
    z-index: var(--zindex-popover);
    --space-unit: 1rem;
    --space-xxxxs: 0.125rem;
    --space-xxxs: 0.25rem;
    --space-xxs: 0.375rem;
    --space-xs: 0.5rem;
    --space-sm: 0.75rem;
    --space-md: 1.25rem;
    --space-lg: 2rem;
    --space-xl: 3.25rem;
    --space-xxl: 5.25rem;
    --space-xxxl: 8.5rem;
    --space-xxxxl: 13.75rem;
    --component-padding: 1.25rem;
    --component-padding: var(--space-md);
    font-size: 1rem;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s .2s, opacity .2s, -webkit-transform .2s ease-out;
    transition: visibility 0s .2s, opacity .2s, transform .2s ease-out;
    transition: visibility 0s .2s, opacity .2s, transform .2s ease-out, -webkit-transform .2s ease-out
}

.language-picker__button[aria-expanded=true]+.language-picker__dropdown {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(4px);
    -ms-transform: translateY(4px);
    transform: translateY(4px);
    transition: opacity .2s, -webkit-transform .2s ease-out;
    transition: opacity .2s, transform .2s ease-out;
    transition: opacity .2s, transform .2s ease-out, -webkit-transform .2s ease-out
}

.language-picker__item {
    text-decoration: none;
    padding: .5em 2em .5em 1.25em;
    padding: var(--space-xs) var(--space-lg) var(--space-xs) var(--space-md);
    color: #313135;
    color: var(--color-contrast-high)
}

.language-picker__item span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.language-picker__item:hover {
    background-color: #f2f2f2;
    background-color: var(--color-contrast-lower)
}


.language-picker__flag {
    display: block;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center
}

.language-picker__flag::before {
    display: inline-block;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    content: '';
    height: 16px;
    width: 27px;
    margin-right: .375rem;
    margin-right: var(--space-xxs);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center
}

.language-picker__dropdown .language-picker__flag::before {
    margin-right: .5rem;
    margin-right: var(--space-xs)
}


.language-picker__flag--english::before {
    background-image: url(../img/us-flag.svg);
    background-position: center;
    background-size: 100%;
    object-fit: contain;
    
}

.language-picker__flag--francais::before {
    background-image: url(../img/canada-flag.svg);
    background-position: center;
    background-size: 100%;
    object-fit: contain;
}


.language-picker--hide-label .language-picker__button .icon {
    margin-left: 0
}

.language-picker--hide-label .language-picker__button em {
    display: none
}

.language-picker--hide-label .language-picker__button .language-picker__flag::before {
    margin-right: .25rem;
    margin-right: var(--space-xxxs)
}
/* ============= */

.flag-innerss{
    width: 93px;
    /* background-color: red; */
    background-image: url(../img/angle-down.svg);
    background-repeat: no-repeat;
    background-position: 95% 50%;
}
.language-picker__flag {
	display: block;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	width: 93px;
    height: 36px !important;
    /* padding-top: 10px; */

}
.language-picker{
  
    font-style: normal;
    font-weight: 400;
    line-height: normal;


}

.language-picker__list a{
    color: #000;
    text-align: center;
    font-family: Rubik;
    font-size: 17px;
    display: block;
    font-style: inherit !important;
    padding: 10px 12px;
    background: #FFF;
    border-radius: 9px;
    width: 100%;
    display: flex;
    align-items: center;
}
.language-picker__label.language-picker__flag {
    color: #000;
    text-align: center;
    font-family: Rubik;
    font-size: 17px;
    font-style: inherit !important;
    font-style: normal !important;
  }
  .language-picker__label.language-picker__flag em{

    font-style: inherit !important;
    font-style: normal !important;
    margin-left: 5px;

  }
#language-picker-select-dropdown {
    border:1px solid #A4A4A4;
    border-radius: 9px;
    padding: 0px;
    padding-top: 5px;
    background-color: #fff;
    z-index: 999;
    font-style: inherit !important;
  }


  .btn--subtles{
    border-radius: 41px;
    /* border: 1px solid #A4A4A4; */
    /* background: #FFF; */
    background-color: transparent;
    padding: 10px 15px;
    font-style: inherit !important;

  }


  .language-picker__dropdown {
    position: absolute;
    left: 10px;
    top: 111%;
    font-style: inherit !important;
  }