@-webkit-keyframes andes-pi-circular-rotate {
    100% {
        transform: rotate(1turn);
    }
}

@-webkit-keyframes andes-pi-circular-dash {
    0% {
        stroke-dasharray: 1, 150;
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -35;
    }

    100% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -124;
    }
}

@-webkit-keyframes andes-pi-circular-dash-reduce-motion {
    0% {
        opacity: 0;
        stroke-dasharray: 90, 150;
        stroke-dashoffset: 0;
    }

    10% {
        opacity: 1;
        stroke-dasharray: 90, 150;
        stroke-dashoffset: 0;
    }

    60% {
        opacity: 1;
        stroke-dasharray: 90, 150;
        stroke-dashoffset: 0;
    }

    100% {
        opacity: 0;
        stroke-dasharray: 90, 150;
        stroke-dashoffset: 0;
    }
}

@-webkit-keyframes andes-button-start-width-animation {
    0% {
        width: 0px;
    }

    100% {
        width: 90%;
    }
}

@-webkit-keyframes andes-button-start-width-animation-reduce-motion {
    0% {
        width: 0px;
    }

    30% {
        width: 30%;
    }

    60% {
        width: 60%;
    }

    100% {
        width: 90%;
    }
}

@-webkit-keyframes translateInButtonSpinner {
    0% {
        opacity: 0;
        transform: translateY(60%);
    }

    40% {
        opacity: 0.4;
        transform: translateY(50%);
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

@-webkit-keyframes translateOutButtonSpinner {
    0% {
        opacity: 1;
    }

    80% {
        opacity: 0.5;
        transform: translateY(-30%);
    }

    90% {
        transform: translateY(-40%);
    }

    100% {
        opacity: 0;
        transform: translateY(-60%);
    }
}

@-webkit-keyframes translateInButtonSpinnerComplete {
    0% {
        opacity: 0;
        transform: translateY(65%);
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

@-webkit-keyframes translateInButtonSpinnerCompleteMedium {
    0% {
        transform: translateY(50%);
    }

    100% {
        transform: translateY(calc(-50% + 13px));
    }
}

@-webkit-keyframes translateInButtonSpinnerCompleteSmall {
    0% {
        transform: translateY(50%);
    }

    100% {
        transform: translateY(calc(-50% + 10px));
    }
}

@-webkit-keyframes animation-indeterminate {
    0% {
        left: 0px;
        width: 5%;
    }

    50% {
        left: 15%;
        width: 60%;
    }

    100% {
        left: 101%;
        width: 0px;
    }
}

@-webkit-keyframes show-valid-ckeck {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.andes-form-control--indeterminate .andes-form-control__border {
    height: 2px;
}

.andes-form-control--indeterminate .andes-form-control__border::after {
    animation: 1s linear 0s infinite normal none running animation-indeterminate;
    background-color: var(--andes-color-blue-500, #3483fa);
    content: "";
    height: 2px;
    position: absolute;
    transform: scaleX(1);
}

@keyframes animation-indeterminate {
    0% {
        left: 0px;
        width: 5%;
    }

    50% {
        left: 15%;
        width: 60%;
    }

    100% {
        left: 101%;
        width: 0px;
    }
}

.andes-form-control--disabled .andes-form-control__field {
    color: rgba(0, 0, 0, 0.55);
    cursor: not-allowed;
}

.andes-form-control--disabled .andes-form-control__border {
    background-color: transparent;
    background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.25) 0px, rgba(0, 0, 0, 0.25) 50%, transparent 0px);
    background-position: 0px top;
    background-repeat: repeat-x;
    background-size: 6px 100%;
}

.andes-form-control--disabled .andes-form-control__border::after {
    display: none;
}

.andes-form-control--completed .andes-form-control__validated-icon {
    animation: 0.5s ease 0.5s 1 normal forwards running show-valid-ckeck;
    opacity: 0;
    position: absolute;
    right: 0px;
    top: 1.5625em;
}

@keyframes show-valid-ckeck {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.andes-widther {
    width: 256px;
}

.andes-width--25 {
    max-width: none;
    width: 25%;
}

.andes-width--50 {
    max-width: none;
    width: 50%;
}

.andes-width--75 {
    max-width: none;
    width: 75%;
}

.andes-width--100 {
    max-width: none;
    width: 100%;
}

.andes-width--150 {
    max-width: none;
    width: 150%;
}

.andes-width--200 {
    max-width: none;
    width: 200%;
}

.andes-form-control--textfield .andes-form-control__label {
    color: var(--andes-textfield-color-label-default, rgba(0, 0, 0, .9));
    cursor: text;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    margin: 0px 6px 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.2s ease-out;
    white-space: nowrap;
    width: unset;
    transform: unset !important;
}

.andes-form-control--textfield.andes-form-control:hover .andes-form-control__label {
    color: var(--andes-textfield-color-label-default, rgba(0, 0, 0, .9)) !important;
}

.andes-form-control--textfield .andes-form-control__control {
    align-items: center;
    background-color: var(--andes-textfield-color-fill-default, #fff);
    border-radius: 6px;
    box-shadow: 0 0 0 1px var(--andes-textfield-color-border-default, rgba(0, 0, 0, .25));
    display: flex;
    font-size: 16px;
    min-height: 48px;
}

.andes-form-control--textfield .andes-form-control__control:hover {
    box-shadow: 0 0 0 1px var(--andes-textfield-color-border-hover, rgba(0, 0, 0, .55));
}

.andes-form-control--textfield .andes-form-control__control:active {
    box-shadow: 0 0 0 1px var(--andes-textfield-color-border-active, var(--andes-color-blue-500, #3483fa));
}

.andes-form-control--textfield .andes-form-control__control {
    margin: 4px 0px;
}

.andes-form-control--textfield .andes-form-control__control .andes-form-control__control {
    margin: inherit;
}

.andes-form-control--textfield .andes-form-control__field:focus {
    box-shadow: none;
}

.andes-form-control--textfield .andes-form-control__field:focus-visible {
    box-shadow: none;
}

.andes-form-control--textfield .andes-form-control__field::-webkit-input-placeholder {
    opacity: 1;
}

.andes-form-control--textfield .andes-form-control__field::placeholder {
    color: var(--andes-textfield-color-placeholder-default, rgba(0, 0, 0, .55));
    font-size: 16px;
    opacity: 1;
}

.andes-form-control--textfield .andes-form-control__field::-webkit-input-placeholder {
    color: var(--andes-textfield-color-placeholder-default, rgba(0, 0, 0, .55));
    font-size: 16px;
}

.andes-form-control--textfield .andes-form-control__field {
    border-radius: 6px;
    color: var(--andes-textfield-color-input-text-default, rgba(0, 0, 0, .9));
    font-size: 16px;
    height: 32px;
    line-height: 20px;
    margin: 0px;
    padding: 8px 12px;
}

.andes-form-control--textfield .andes-form-control__field--multiline {
    height: unset;
}

.andes-form-control--textfield-with-prefix .andes-form-control__field {
    padding-left: 8px;
}

.andes-form-control--textfield-with-suffix .andes-form-control__field {
    padding-right: 8px;
}

.andes-form-control--textfield .andes-form-control__message {
    font-size: 13px;
    margin-top: 0px;
}

.andes-form-control--textfield .andes-form-control__bottom {
    display: flex;
    font-size: 13px;
    margin: 4px 6px 0px;
}

.andes-form-control--textfield .andes-form-control__bottom .andes-form-control--internal-helper {
    flex: 1 1 0%;
}

.andes-form-control--focused .andes-form-control__control {
    border-color: transparent;
    box-shadow: 0 0 0 2px var(--andes-textfield-color-border-active, var(--andes-color-blue-500, #3483fa));
    outline: none;
}

.andes-form-control__control.visible-focused {
    border-color: transparent;
    box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--andes-color-blue-600, #2968c8), 0 0 0 5px var(--andes-color-blue-300, rgba(65, 137, 230, .3)), inset 0 0 0 2px var(--andes-color-blue-500, #3483fa);
    outline: none;
}

.andes-form-control--textfield:hover .andes-form-control__label {
    color: rgba(0, 0, 0, 0.9) !important;
}

.andes-form-control__label,
.andes-form-control__message {
    font-family: "Proxima Nova", -apple-system, Roboto, Arial, sans-serif;
}

.sr-only {
    border: 0px;
    clip: rect(0px, 0px, 0px, 0px);
    clip-path: inset(50%);
    height: 1px;
    margin: 0px -1px -1px 0px;
    overflow: hidden;
    padding: 0px;
    position: absolute;
    width: 1px;
}

.andes-dropdown--form .andes-dropdown__label,
.andes-dropdown--form-native .andes-dropdown__label {
    -webkit-font-smoothing: antialiased;
    box-sizing: border-box;
    color: var(--andes-dropdown-color-label-default, rgba(0, 0, 0, .9));
    display: block;
    font-family: "Proxima Nova", -apple-system, Roboto, Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    margin-bottom: 4px;
    padding: 0px 6px;
    text-align: start;
    width: 100%;
}

.andes-dropdown--form .andes-dropdown__helper,
.andes-dropdown--form-native .andes-dropdown__helper {
    margin-top: 4px;
    padding: 0px 6px;
    width: 100%;
}

.andes-dropdown--form .andes-dropdown__trigger-wrapper,
.andes-dropdown--form-native .andes-dropdown__trigger-wrapper {
    height: 48px;
    position: relative;
}

.andes-dropdown--form .andes-dropdown__trigger,
.andes-dropdown--form-native .andes-dropdown__trigger {
    -webkit-font-smoothing: antialiased;
    background-color: var(--andes-dropdown-color-fill-default, #fff);
    border: 0px;
    border-radius: 6px;
    box-shadow: 0 0 0 1px var(--andes-dropdown-color-border-default, rgba(0, 0, 0, .25));
    box-sizing: border-box;
    display: block;
    font-family: "Proxima Nova", -apple-system, Roboto, Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    height: 48px;
    line-height: 1.25;
    margin: 0px;
    outline: none;
    padding: 8px 8px 8px 12px;
    text-align: start;
    width: 100%;
}

.andes-dropdown--form .andes-dropdown__chevron,
.andes-dropdown--form-native .andes-dropdown__chevron {
    box-sizing: border-box;
    color: var(--andes-dropdown-color-chevron-default, var(--andes-color-blue-500, #3483fa));
    display: flex;
    height: 20px;
    margin-left: 12px;
    width: 20px;
}

.andes-dropdown--form .andes-dropdown__trigger:active,
.andes-dropdown--form .andes-dropdown__trigger:focus:not(:focus-visible),
.andes-dropdown--form-native .andes-dropdown__trigger:active,
.andes-dropdown--form-native .andes-dropdown__trigger:focus:not(:focus-visible),
.andes-dropdown--form-native.andes-dropdown--open .andes-floating-menu .andes-dropdown__trigger,
.andes-dropdown--form.andes-dropdown--open .andes-floating-menu .andes-dropdown__trigger {
    box-shadow: 0 0 0 2px var(--andes-dropdown-color-border-active, var(--andes-color-blue-500, #3483fa));
}

.andes-dropdown--form .andes-dropdown__trigger:active .andes-dropdown__chevron,
.andes-dropdown--form .andes-dropdown__trigger:focus:not(:focus-visible) .andes-dropdown__chevron,
.andes-dropdown--form-native .andes-dropdown__trigger:active .andes-dropdown__chevron,
.andes-dropdown--form-native .andes-dropdown__trigger:focus:not(:focus-visible) .andes-dropdown__chevron,
.andes-dropdown--form-native.andes-dropdown--open .andes-floating-menu .andes-dropdown__trigger .andes-dropdown__chevron,
.andes-dropdown--form.andes-dropdown--open .andes-floating-menu .andes-dropdown__trigger .andes-dropdown__chevron {
    color: var(--andes-dropdown-color-chevron-active, var(--andes-color-blue-700, #1f4e96));
}

.andes-dropdown--form .andes-dropdown__trigger:focus-visible,
.andes-dropdown--form .andes-dropdown__trigger:focus-visible:hover,
.andes-dropdown--form-native .andes-dropdown__trigger:focus-visible,
.andes-dropdown--form-native .andes-dropdown__trigger:focus-visible:hover {
    box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--andes-color-blue-600, #2968c8), 0 0 0 5px var(--andes-color-blue-300, rgba(65, 137, 230, .3)), inset 0 0 0 2px var(--andes-color-blue-500, #3483fa);
}

.andes-dropdown--form-native.andes-dropdown--error .andes-dropdown__label,
.andes-dropdown--form.andes-dropdown--error .andes-dropdown__label {
    color: var(--andes-dropdown-color-label-error, #f23d4f);
}

.andes-dropdown--form-native.andes-dropdown--error .andes-dropdown__trigger,
.andes-dropdown--form-native.andes-dropdown--error .andes-dropdown__trigger:hover,
.andes-dropdown--form.andes-dropdown--error .andes-dropdown__trigger,
.andes-dropdown--form.andes-dropdown--error .andes-dropdown__trigger:hover {
    box-shadow: 0 0 0 1px var(--andes-dropdown-color-border-error, #f23d4f);
}

.andes-dropdown--form-native.andes-dropdown--error .andes-dropdown__trigger:active,
.andes-dropdown--form-native.andes-dropdown--error .andes-dropdown__trigger:focus:not(:focus-visible),
.andes-dropdown--form-native.andes-dropdown--error.andes-dropdown--open .andes-floating-menu .andes-dropdown__trigger,
.andes-dropdown--form.andes-dropdown--error .andes-dropdown__trigger:active,
.andes-dropdown--form.andes-dropdown--error .andes-dropdown__trigger:focus:not(:focus-visible),
.andes-dropdown--form.andes-dropdown--error.andes-dropdown--open .andes-floating-menu .andes-dropdown__trigger {
    box-shadow: 0 0 0 2px var(--andes-dropdown-color-border-error, #f23d4f);
}

.andes-dropdown--form-native.andes-dropdown--error .andes-dropdown__trigger:focus-visible,
.andes-dropdown--form.andes-dropdown--error .andes-dropdown__trigger:focus-visible {
    box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--andes-color-blue-600, #2968c8), 0 0 0 5px var(--andes-color-blue-300, rgba(65, 137, 230, .3)), inset 0 0 0 2px var(--andes-dropdown-color-border-error, #f23d4f);
}

.andes-dropdown--form-native.andes-dropdown--disabled .andes-dropdown__label,
.andes-dropdown--form.andes-dropdown--disabled .andes-dropdown__label {
    color: var(--andes-dropdown-color-label-disabled, rgba(0, 0, 0, .25));
}

.andes-dropdown--form-native.andes-dropdown--disabled .andes-dropdown__trigger,
.andes-dropdown--form-native.andes-dropdown--disabled .andes-dropdown__trigger:hover,
.andes-dropdown--form.andes-dropdown--disabled .andes-dropdown__trigger,
.andes-dropdown--form.andes-dropdown--disabled .andes-dropdown__trigger:hover {
    background-color: var(--andes-dropdown-color-fill-disabled, rgba(0, 0, 0, .04));
    box-shadow: none;
    outline: 1px dashed var(--andes-dropdown-color-border-disabled, rgba(0, 0, 0, .25));
    outline-offset: -1px;
}

.andes-dropdown--form-native.andes-dropdown--disabled .andes-dropdown__trigger .andes-dropdown__chevron,
.andes-dropdown--form-native.andes-dropdown--disabled .andes-dropdown__trigger:hover .andes-dropdown__chevron,
.andes-dropdown--form.andes-dropdown--disabled .andes-dropdown__trigger .andes-dropdown__chevron,
.andes-dropdown--form.andes-dropdown--disabled .andes-dropdown__trigger:hover .andes-dropdown__chevron {
    color: var(--andes-dropdown-color-chevron-disabled, rgba(0, 0, 0, .25));
}

.andes-dropdown--form-native.andes-dropdown--disabled .andes-dropdown__trigger .andes-dropdown__display-values,
.andes-dropdown--form-native.andes-dropdown--disabled .andes-dropdown__trigger:hover .andes-dropdown__display-values,
.andes-dropdown--form.andes-dropdown--disabled .andes-dropdown__trigger .andes-dropdown__display-values,
.andes-dropdown--form.andes-dropdown--disabled .andes-dropdown__trigger:hover .andes-dropdown__display-values {
    color: var(--andes-dropdown-color-value-disabled, rgba(0, 0, 0, .25));
}

.andes-dropdown .andes-floating-menu .andes-popper {
    opacity: 0;
}

.andes-dropdown .andes-floating-menu.andes-floating-menu--show .andes-popper {
    opacity: 1;
}

.andes-dropdown.andes-dropdown--form .andes-floating-menu--search .andes-form-control__trigger {
    margin: 0px;
}

.andes-dropdown.andes-dropdown--bottom .andes-floating-menu--show .andes-popper {
    margin-top: 6px;
}

.andes-dropdown--standalone .andes-dropdown__trigger:focus {
    box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--andes-color-blue-600, #2968c8), 0 0 0 5px var(--andes-color-blue-300, rgba(65, 137, 230, .3));
    outline: none;
}

.andes-dropdown--standalone .andes-dropdown__trigger:focus-visible {
    box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--andes-color-blue-600, #2968c8), 0 0 0 5px var(--andes-color-blue-300, rgba(65, 137, 230, .3));
    outline: none;
}

.andes-dropdown--standalone .andes-dropdown__trigger:focus:not(:focus-visible) {
    box-shadow: none;
    outline: none;
}

.andes-dropdown--standalone .andes-dropdown__trigger {
    -webkit-font-smoothing: antialiased;
    align-items: center;
    background-color: transparent;
    border: 0px;
    border-radius: 0px;
    box-shadow: none;
    box-sizing: border-box;
    display: flex;
    font-family: "Proxima Nova", -apple-system, Roboto, Arial, sans-serif;
    margin: 0px;
    max-width: 100%;
    outline: 0px;
}

.andes-dropdown--standalone .andes-dropdown__display-values {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
}

.andes-dropdown--standalone .andes-dropdown__display-values,
.andes-dropdown--standalone .andes-dropdown__trigger {
    color: var(--andes-dropdown-standalone-color-value-default, rgba(0, 0, 0, .9));
    font-weight: 400;
    line-height: 1;
}

.andes-dropdown--standalone .andes-dropdown__arrow {
    box-sizing: border-box;
    display: flex;
    height: 12px;
    margin-left: 2px;
    width: 12px;
}

.andes-dropdown--standalone .andes-dropdown--open .andes-dropdown__arrow {
    transform: rotate(180deg);
}

.andes-dropdown--standalone .andes-dropdown__arrow>svg {
    color: var(--andes-dropdown-standalone-color-chevron-default, rgba(0, 0, 0, .55));
}

.andes-dropdown--standalone:active .andes-dropdown__arrow>svg {
    color: var(--andes-dropdown-standalone-color-chevron-active, rgba(0, 0, 0, .9));
}

.andes-dropdown--standalone.andes-dropdown--disabled .andes-dropdown__display-values,
.andes-dropdown--standalone.andes-dropdown--disabled .andes-dropdown__trigger {
    color: var(--andes-dropdown-standalone-color-value-disabled, rgba(0, 0, 0, .25));
    cursor: default;
}

.andes-dropdown--standalone.andes-dropdown--disabled .andes-dropdown__arrow>svg {
    color: var(--andes-dropdown-standalone-color-chevron-disabled, rgba(0, 0, 0, .25));
}

.andes-dropdown--standalone.andes-dropdown--bottom .andes-floating-menu--show .andes-popper {
    margin-top: -8px;
}

.andes-dropdown--standalone.andes-dropdown--large .andes-dropdown__trigger {
    font-size: 18px;
    height: 40px;
    padding: 11px 8px;
}

.andes-tag {
    align-items: center;
    background-color: var(--andes-tag-color-fill-default, hsla(0, 0%, 100%, 0));
    border: 1.2px solid var(--andes-tag-color-border-default, rgba(0, 0, 0, .25));
    box-sizing: border-box;
    display: inline-flex;
    font-family: "Proxima Nova", -apple-system, Roboto, Arial, sans-serif;
    font-weight: 400;
    user-select: none;
    width: auto;
}

.andes-tag--small {
    border-radius: 1em;
    font-size: 12px;
    height: 2em;
    padding: 0px 0.333333em;
}

.andes-tag--small .andes-tag__label {
    font-size: inherit;
    padding: 0px 0.333333em;
}

.andes-tag--small .andes-tag__close {
    font-size: inherit;
    height: 1.33333em;
    margin-left: -0.166667em;
    width: 1.33333em;
}

.andes-tag--small .andes-tag__child {
    padding: 0px 0.333333em;
}

.andes-tag--small .andes-tag__avatar {
    height: 1.33333em;
    width: 1.33333em;
}

.andes-tag--small .andes-tag__avatar-text-container {
    font-size: 0.666667em;
}

.andes-tag--large {
    border-radius: 1.14286em;
    font-size: 14px;
    height: 2.28571em;
    padding: 0px 0.285714em;
}

.andes-tag--large .andes-tag__label {
    font-size: inherit;
    padding: 0px 0.571429em;
}

.andes-tag--large .andes-tag__close {
    font-size: inherit;
    height: 1.71429em;
    margin-left: -0.285714em;
    width: 1.71429em;
}

.andes-tag--large .andes-tag__child {
    padding: 0px 0.571429em;
}

.andes-tag--large .andes-tag__avatar {
    height: 1.71429em;
    width: 1.71429em;
}

.andes-tag--large .andes-tag__avatar-text-container {
    font-size: 0.857143em;
}

.andes-tag__custom-icon {
    color: var(--andes-tag-color-icon-default, rgba(0, 0, 0, .9));
    margin-left: 4px;
}

.andes-tag__custom-icon svg {
    color: currentcolor;
    vertical-align: sub;
}

.andes-tag__child,
.andes-tag__label {
    color: var(--andes-tag-color-text-default, rgba(0, 0, 0, .9));
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.andes-tag__close {
    align-items: center;
    background-color: rgba(255, 255, 255, 0);
    border: 0px;
    border-radius: 50%;
    color: var(--andes-tag-color-close-default, rgba(0, 0, 0, .55));
    cursor: pointer;
    display: flex;
    justify-content: center;
    outline: none;
    padding: 0px;
    transition: background-color 0.1s ease-out;
}

.andes-tag__close:hover {
    color: var(--andes-tag-color-close-hover, rgba(0, 0, 0, .8));
}

.andes-tag__close:active {
    color: var(--andes-tag-color-close-active, rgba(0, 0, 0, .9));
}

.andes-tag__close:focus {
    box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--andes-color-blue-600, #2968c8), 0 0 0 5px var(--andes-color-blue-300, rgba(65, 137, 230, .3));
    outline: none;
}

.andes-tag__close:focus-visible {
    box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--andes-color-blue-600, #2968c8), 0 0 0 5px var(--andes-color-blue-300, rgba(65, 137, 230, .3));
    outline: none;
}

.andes-tag__close:focus:not(:focus-visible) {
    box-shadow: none;
    outline: none;
}

.andes-tag--disabled {
    background-color: var(--andes-tag-color-fill-disabled, hsla(0, 0%, 100%, 0));
    border-color: var(--andes-tag-color-border-disabled, rgba(0, 0, 0, .1));
}

.andes-tag--disabled .andes-tag__custom-icon {
    color: var(--andes-tag-color-icon-disabled, rgba(0, 0, 0, .25));
}

.andes-tag--disabled .andes-tag__custom-icon svg {
    color: currentcolor;
}

.andes-tag--disabled .andes-tag__label {
    color: var(--andes-tag-color-text-disabled, rgba(0, 0, 0, .25));
}

.andes-tag--disabled .andes-tag__close {
    cursor: default;
}

.andes-tag--disabled .andes-tag__close svg {
    color: var(--andes-tag-color-close-disabled, rgba(0, 0, 0, .25));
}

.andes-tag--disabled .andes-tag__close:hover {
    background-color: rgba(255, 255, 255, 0);
}

.andes-tag .andes-tag--internal-thumbnail {
    border: 0px;
    height: 24px;
    width: 24px;
}

.andes-tag .andes-tag--internal-thumbnail.andes-thumbnail__image {
    background-color: rgba(255, 255, 255, 0);
}

.andes-tag .andes-tag--internal-thumbnail.andes-thumbnail__image img {
    height: 100%;
    object-fit: contain;
    width: 100%;
}

.andes-tag .andes-tag--internal-thumbnail.andes-thumbnail__image svg {
    height: 14px;
    width: 14px;
}

.andes-tag--clickable:focus {
    box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--andes-color-blue-600, #2968c8), 0 0 0 5px var(--andes-color-blue-300, rgba(65, 137, 230, .3));
    outline: none;
}

.andes-tag--clickable:focus-visible {
    box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--andes-color-blue-600, #2968c8), 0 0 0 5px var(--andes-color-blue-300, rgba(65, 137, 230, .3));
    outline: none;
}

.andes-tag--clickable:focus:not(:focus-visible) {
    box-shadow: none;
    outline: none;
}

.andes-tag--clickable {
    cursor: pointer;
}

.andes-tag--clickable:hover {
    background-color: var(--andes-tag-color-fill-hover, rgba(0, 0, 0, .04));
}

.andes-tag--clickable:active {
    background-color: var(--andes-tag-color-fill-active, rgba(0, 0, 0, .1));
}

.andes-tag__icon-container {
    align-items: center;
    display: flex;
    justify-content: center;
}

.andes-tag-collapsed__list {
    list-style: none;
    margin: 0px;
    padding: 0px;
}

.andes-tag-collapsed__list-main {
    display: flex;
    width: min-content;
}

.andes-tag-collapsed__list-item {
    display: inline-flex;
}

.andes-tag-collapsed__wrap {
    position: relative;
    width: fit-content;
}

.andes-tag-collapsed__more {
    background-color: var(--andes-color-fill-primary, #fff);
    border-radius: 6px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 6px 16px 0px;
    display: block;
    padding: 8px;
    width: 200px;
}

.andes-tag-collapsed__more .andes-tag--large {
    margin: 4px;
}

.andes-tag-collapsed__more .andes-tag--small {
    margin: 3px;
}

.andes-tag-collapsed__more .andes-tag__label {
    max-width: 148px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.andes-tag-collapsed .andes-tag--large {
    margin-right: 8px;
}

.andes-tag-collapsed .andes-tag--small {
    margin-right: 6px;
}

.andes-badge--xsmall.andes-badge--pill-icon {
    border-radius: 50%;
    height: 12px;
    min-width: 12px;
    width: 12px;
}

.andes-badge--xsmall.andes-badge--pill-icon svg {
    height: 12px;
    width: 12px;
}

.andes-badge--small {
    line-height: 4px;
}

.andes-badge--small .andes-badge__content {
    font-size: 11px;
    line-height: 4px;
    padding: 6px;
}

.andes-badge--small.andes-badge--rounded-top-left {
    border-top-left-radius: 8px;
}

.andes-badge--small.andes-badge--rounded-top-right {
    border-top-right-radius: 8px;
}

.andes-badge--small.andes-badge--rounded-bottom-left {
    border-bottom-left-radius: 8px;
}

.andes-badge--small.andes-badge--rounded-bottom-right {
    border-bottom-right-radius: 8px;
}

.andes-badge--small.andes-badge--pill-icon {
    border-radius: 50%;
    height: 16px;
    min-width: 16px;
    width: 16px;
}

.andes-badge--small.andes-badge--pill-icon svg {
    height: 16px;
    width: 16px;
}

.andes-badge--large.andes-badge--rounded-top-left {
    border-top-left-radius: 12px;
}

.andes-badge--large.andes-badge--rounded-top-right {
    border-top-right-radius: 12px;
}

.andes-badge--large.andes-badge--rounded-bottom-left {
    border-bottom-left-radius: 12px;
}

.andes-badge--large.andes-badge--rounded-bottom-right {
    border-bottom-right-radius: 12px;
}

.andes-badge--pill {
    display: inline-block;
    font-family: "Proxima Nova", -apple-system, Roboto, Arial, sans-serif;
    font-size: 12px;
    line-height: 8px;
    overflow: hidden;
    position: relative;
    text-align: center;
}

.andes-badge--pill-icon {
    border-radius: 50%;
    height: 24px;
    min-width: 24px;
    overflow: hidden;
    position: relative;
    width: 24px;
}

.andes-badge--pill-icon .andes-badge__icon {
    height: 100%;
    width: 100%;
}

.andes-badge__content {
    color: rgb(255, 255, 255);
    font-weight: 600;
    margin: 0px;
    padding: 8px;
}

.andes-badge--dot {
    border-radius: 50%;
    display: inline-block;
    height: 8px;
    position: relative;
    width: 8px;
}

.andes-badge--gray {
    background: var(--andes-badge-loud-color-fill-neutral, #737373);
}

.andes-badge--gray .andes-badge__content {
    color: var(--andes-badge-loud-color-text-neutral, #fff);
}

.andes-badge--gray .andes-badge__icon,
.andes-badge--gray .andes-badge__icon-inner,
.andes-badge--gray svg {
    color: var(--andes-badge-loud-color-icon-neutral, #fff);
}

.andes-badge--gray--quiet {
    background: var(--andes-badge-quiet-color-fill-neutral, rgba(0, 0, 0, .1));
    border: 0px;
}

.andes-badge--gray--quiet.andes-badge--generic.andes-badge--pill {
    background: rgba(0, 0, 0, 0.07);
}

.andes-badge--gray--quiet.andes-badge--generic.andes-badge--pill .andes-badge__content {
    color: rgba(0, 0, 0, 0.55);
}

.andes-badge--gray--quiet .andes-badge__content {
    color: var(--andes-badge-quiet-color-text-neutral, rgba(0, 0, 0, .55));
}

.andes-badge--gray--quiet .andes-badge__icon,
.andes-badge--gray--quiet .andes-badge__icon-inner,
.andes-badge--gray--quiet svg {
    color: var(--andes-badge-quiet-color-icon-neutral, rgba(0, 0, 0, .55));
}

.andes-badge--gray--quiet.andes-badge--dot {
    background: var(--andes-badge-dot-quiet-color-fill-neutral, rgba(0, 0, 0, .25));
}

.andes-badge--gray.andes-badge--color-on-background {
    background: var(--andes-badge-loud-color-fill-neutral-on-complex-bg, #1a1a1a);
}

.andes-badge--gray.andes-badge--color-on-background .andes-badge__content {
    color: var(--andes-badge-loud-color-text-neutral-on-complex-bg, #fff);
}

.andes-badge--gray.andes-badge--color-on-background .andes-badge__icon,
.andes-badge--gray.andes-badge--color-on-background .andes-badge__icon-inner,
.andes-badge--gray.andes-badge--color-on-background svg {
    color: var(--andes-badge-loud-color-icon-neutral-on-complex-bg, #fff);
}

.andes-badge--red {
    background: var(--andes-badge-loud-color-fill-negative, #f23d4f);
}

.andes-badge--red .andes-badge__content {
    color: var(--andes-badge-loud-color-text-negative, #fff);
}

.andes-badge--red .andes-badge__icon,
.andes-badge--red .andes-badge__icon-inner,
.andes-badge--red svg {
    color: var(--andes-badge-loud-color-icon-negative, #fff);
}

.andes-badge--red--quiet {
    background: var(--andes-badge-quiet-color-fill-negative, rgba(242, 61, 79, .1));
    border: 0px;
}

.andes-badge--red--quiet.andes-badge--generic.andes-badge--pill {
    background: rgba(0, 0, 0, 0.07);
}

.andes-badge--red--quiet.andes-badge--generic.andes-badge--pill .andes-badge__content {
    color: rgba(0, 0, 0, 0.55);
}

.andes-badge--red--quiet .andes-badge__content {
    color: var(--andes-badge-quiet-color-text-negative, #f23d4f);
}

.andes-badge--red--quiet .andes-badge__icon,
.andes-badge--red--quiet .andes-badge__icon-inner,
.andes-badge--red--quiet svg {
    color: var(--andes-badge-quiet-color-icon-negative, #f23d4f);
}

.andes-badge--red--quiet.andes-badge--dot {
    background: var(--andes-badge-dot-quiet-color-fill-negative, rgba(242, 61, 79, .4));
}

.andes-badge--red.andes-badge--color-on-background {
    background: var(--andes-badge-loud-color-fill-negative-on-complex-bg, #d12440);
}

.andes-badge--red.andes-badge--color-on-background .andes-badge__content {
    color: var(--andes-badge-loud-color-text-negative-on-complex-bg, #fff);
}

.andes-badge--red.andes-badge--color-on-background .andes-badge__icon,
.andes-badge--red.andes-badge--color-on-background .andes-badge__icon-inner,
.andes-badge--red.andes-badge--color-on-background svg {
    color: var(--andes-badge-loud-color-icon-negative-on-complex-bg, #fff);
}

.andes-badge--accent {
    background: var(--andes-badge-loud-color-fill-informative, var(--andes-color-blue-500, #3483fa));
}

.andes-badge--accent .andes-badge__content {
    color: var(--andes-badge-loud-color-text-informative, #fff);
}

.andes-badge--accent .andes-badge__icon,
.andes-badge--accent .andes-badge__icon-inner,
.andes-badge--accent svg {
    color: var(--andes-badge-loud-color-icon-informative, #fff);
}

.andes-badge--accent--quiet {
    background: var(--andes-badge-quiet-color-fill-informative, var(--andes-color-blue-100, rgba(65, 137, 230, .1)));
    border: 0px;
}

.andes-badge--accent--quiet.andes-badge--generic.andes-badge--pill {
    background: rgba(0, 0, 0, 0.07);
}

.andes-badge--accent--quiet.andes-badge--generic.andes-badge--pill .andes-badge__content {
    color: rgba(0, 0, 0, 0.55);
}

.andes-badge--accent--quiet .andes-badge__content {
    color: var(--andes-badge-quiet-color-text-informative, var(--andes-color-blue-500, #3483fa));
}

.andes-badge--accent--quiet .andes-badge__icon,
.andes-badge--accent--quiet .andes-badge__icon-inner,
.andes-badge--accent--quiet svg {
    color: var(--andes-badge-quiet-color-icon-informative, var(--andes-color-blue-500, #3483fa));
}

.andes-badge--accent--quiet.andes-badge--dot {
    background: var(--andes-badge-dot-quiet-color-fill-informative, var(--andes-color-blue-400, rgba(65, 137, 230, .4)));
}

.andes-badge--accent.andes-badge--color-on-background {
    background: var(--andes-badge-loud-color-fill-informative-on-complex-bg, var(--andes-color-blue-600, #2968c8));
}

.andes-badge--accent.andes-badge--color-on-background .andes-badge__content {
    color: var(--andes-badge-loud-color-text-informative-on-complex-bg, #fff);
}

.andes-badge--accent.andes-badge--color-on-background .andes-badge__icon,
.andes-badge--accent.andes-badge--color-on-background .andes-badge__icon-inner,
.andes-badge--accent.andes-badge--color-on-background svg {
    color: var(--andes-badge-loud-color-icon-informative-on-complex-bg, #fff);
}

.andes-badge--green {
    background: var(--andes-badge-loud-color-fill-positive, #00a650);
}

.andes-badge--green .andes-badge__content {
    color: var(--andes-badge-loud-color-text-positive, #fff);
}

.andes-badge--green .andes-badge__icon,
.andes-badge--green .andes-badge__icon-inner,
.andes-badge--green svg {
    color: var(--andes-badge-loud-color-icon-positive, #fff);
}

.andes-badge--green--quiet {
    background: var(--andes-badge-quiet-color-fill-positive, rgba(0, 166, 80, .1));
    border: 0px;
}

.andes-badge--green--quiet.andes-badge--generic.andes-badge--pill {
    background: rgba(0, 0, 0, 0.07);
}

.andes-badge--green--quiet.andes-badge--generic.andes-badge--pill .andes-badge__content {
    color: rgba(0, 0, 0, 0.55);
}

.andes-badge--green--quiet .andes-badge__content {
    color: var(--andes-badge-quiet-color-text-positive, #00a650);
}

.andes-badge--green--quiet .andes-badge__icon,
.andes-badge--green--quiet .andes-badge__icon-inner,
.andes-badge--green--quiet svg {
    color: var(--andes-badge-quiet-color-icon-positive, #00a650);
}

.andes-badge--green--quiet.andes-badge--dot {
    background: var(--andes-badge-dot-quiet-color-fill-positive, rgba(0, 166, 80, .4));
}

.andes-badge--green.andes-badge--color-on-background {
    background: var(--andes-badge-loud-color-fill-positive-on-complex-bg, #008744);
}

.andes-badge--green.andes-badge--color-on-background .andes-badge__content {
    color: var(--andes-badge-loud-color-text-positive-on-complex-bg, #fff);
}

.andes-badge--green.andes-badge--color-on-background .andes-badge__icon,
.andes-badge--green.andes-badge--color-on-background .andes-badge__icon-inner,
.andes-badge--green.andes-badge--color-on-background svg {
    color: var(--andes-badge-loud-color-icon-positive-on-complex-bg, #fff);
}

.andes-badge--orange {
    background: var(--andes-badge-loud-color-fill-caution, #f73);
}

.andes-badge--orange .andes-badge__content {
    color: var(--andes-badge-loud-color-text-caution, #fff);
}

.andes-badge--orange .andes-badge__icon,
.andes-badge--orange .andes-badge__icon-inner,
.andes-badge--orange svg {
    color: var(--andes-badge-loud-color-icon-caution, #fff);
}

.andes-badge--orange--quiet {
    background: var(--andes-badge-quiet-color-fill-caution, rgba(255, 119, 51, .1));
    border: 0px;
}

.andes-badge--orange--quiet.andes-badge--generic.andes-badge--pill {
    background: rgba(0, 0, 0, 0.07);
}

.andes-badge--orange--quiet.andes-badge--generic.andes-badge--pill .andes-badge__content {
    color: rgba(0, 0, 0, 0.55);
}

.andes-badge--orange--quiet .andes-badge__content {
    color: var(--andes-badge-quiet-color-text-caution, #f73);
}

.andes-badge--orange--quiet .andes-badge__icon,
.andes-badge--orange--quiet .andes-badge__icon-inner,
.andes-badge--orange--quiet svg {
    color: var(--andes-badge-quiet-color-icon-caution, #f73);
}

.andes-badge--orange--quiet.andes-badge--dot {
    background: var(--andes-badge-dot-quiet-color-fill-caution, rgba(255, 119, 51, .4));
}

.andes-badge--orange.andes-badge--color-on-background {
    background: var(--andes-badge-loud-color-fill-caution-on-complex-bg, #e6540b);
}

.andes-badge--orange.andes-badge--color-on-background .andes-badge__content {
    color: var(--andes-badge-loud-color-text-caution-on-complex-bg, #fff);
}

.andes-badge--orange.andes-badge--color-on-background .andes-badge__icon,
.andes-badge--orange.andes-badge--color-on-background .andes-badge__icon-inner,
.andes-badge--orange.andes-badge--color-on-background svg {
    color: var(--andes-badge-loud-color-icon-caution-on-complex-bg, #fff);
}

.andes-badge--inverted {
    background: var(--andes-badge-loud-color-fill-inverse, #fff);
}

.andes-badge--inverted .andes-badge__content {
    color: var(--andes-badge-loud-color-text-inverse, rgba(0, 0, 0, .9));
}

.andes-badge--inverted .andes-badge__icon,
.andes-badge--inverted .andes-badge__icon-inner,
.andes-badge--inverted svg {
    color: var(--andes-badge-loud-color-icon-inverse, rgba(0, 0, 0, .9));
}

.andes-badge--inverted--quiet {
    border: 0px;
}

.andes-badge--inverted--quiet.andes-badge--generic.andes-badge--pill {
    background: rgba(0, 0, 0, 0.07);
}

.andes-badge--inverted--quiet.andes-badge--generic.andes-badge--pill .andes-badge__content {
    color: rgba(0, 0, 0, 0.55);
}

.andes-checkbox--indeterminate .andes-checkbox__input:checked:hover::after,
.andes-checkbox--indeterminate .andes-checkbox__input:indeterminate:hover::after {
    background-color: var(--andes-checkbox-color-indeterminate-fill-default, var(--andes-color-blue-500, #3483fa));
}

@media (min-width: 768px) {

    .andes-checkbox--indeterminate .andes-checkbox__input:checked:hover::after,
    .andes-checkbox--indeterminate .andes-checkbox__input:indeterminate:hover::after {
        background-color: var(--andes-checkbox-color-indeterminate-fill-hover, var(--andes-color-blue-600, #2968c8));
    }
}

.andes-checkbox--indeterminate .andes-checkbox__input:checked::after,
.andes-checkbox--indeterminate .andes-checkbox__input:indeterminate::after {
    background-color: var(--andes-checkbox-color-indeterminate-fill-default, var(--andes-color-blue-500, #3483fa));
    border-width: 0px;
}

.andes-checkbox--indeterminate .andes-checkbox__input:checked~.andes-checkbox__icon,
.andes-checkbox--indeterminate .andes-checkbox__input:indeterminate~.andes-checkbox__icon {
    color: var(--andes-checkbox-color-icon-default, #fff);
    visibility: visible;
}

.andes-checkbox--indeterminate .andes-checkbox__input:checked:active::after,
.andes-checkbox--indeterminate .andes-checkbox__input:indeterminate:active::after {
    background-color: var(--andes-checkbox-color-indeterminate-fill-active, var(--andes-color-blue-700, #1f4e96));
}

.andes-checkbox--indeterminate .andes-checkbox__input:checked:disabled::after,
.andes-checkbox--indeterminate .andes-checkbox__input:indeterminate:disabled::after {
    background-color: var(--andes-checkbox-color-indeterminate-fill-disabled, rgba(0, 0, 0, .1));
}

.andes-checkbox--indeterminate .andes-checkbox__input:checked:disabled~.andes-checkbox__icon,
.andes-checkbox--indeterminate .andes-checkbox__input:indeterminate:disabled~.andes-checkbox__icon {
    color: var(--andes-checkbox-color-icon-disabled, rgba(0, 0, 0, .25));
}

.andes-checkbox--highlight .andes-checkbox__input:hover::before {
    background-color: var(--andes-checkbox-highlight-color-fill-default, var(--andes-color-blue-200, rgba(65, 137, 230, .2)));
}

.andes-checkbox--highlight .andes-checkbox__input:hover::after {
    border-color: var(--andes-checkbox-highlight-color-unselected-border-default, var(--andes-color-blue-500, #3483fa));
}

.andes-checkbox--highlight .andes-checkbox__input:checked:hover::before {
    background-color: var(--andes-checkbox-highlight-color-fill-default, var(--andes-color-blue-200, rgba(65, 137, 230, .2)));
}

.andes-checkbox--highlight .andes-checkbox__input:checked:hover::after {
    background-color: var(--andes-checkbox-highlight-color-selected-fill-default, var(--andes-color-blue-500, #3483fa));
}

.andes-checkbox--highlight.andes-checkbox--indeterminate .andes-checkbox__input:checked:hover::before,
.andes-checkbox--highlight.andes-checkbox--indeterminate .andes-checkbox__input:indeterminate:hover::before {
    background-color: var(--andes-checkbox-highlight-color-fill-default, var(--andes-color-blue-200, rgba(65, 137, 230, .2)));
}

.andes-checkbox--highlight.andes-checkbox--indeterminate .andes-checkbox__input:checked:hover::after,
.andes-checkbox--highlight.andes-checkbox--indeterminate .andes-checkbox__input:indeterminate:hover::after {
    background-color: var(--andes-checkbox-highlight-color-indeterminate-fill-default, var(--andes-color-blue-500, #3483fa));
}

@media (min-width: 768px) {
    .andes-checkbox--highlight .andes-checkbox__input:hover::before {
        background-color: var(--andes-checkbox-highlight-color-fill-default, var(--andes-color-blue-200, rgba(65, 137, 230, .2)));
    }

    .andes-checkbox--highlight .andes-checkbox__input:hover::after {
        border-color: var(--andes-checkbox-highlight-color-unselected-border-hover, var(--andes-color-blue-600, #2968c8));
    }

    .andes-checkbox--highlight .andes-checkbox__input:checked:hover::before {
        background-color: var(--andes-checkbox-highlight-color-fill-default, var(--andes-color-blue-200, rgba(65, 137, 230, .2)));
    }

    .andes-checkbox--highlight .andes-checkbox__input:checked:hover::after {
        background-color: var(--andes-checkbox-highlight-color-selected-fill-hover, var(--andes-color-blue-600, #2968c8));
    }

    .andes-checkbox--highlight.andes-checkbox--indeterminate .andes-checkbox__input:checked:hover::before,
    .andes-checkbox--highlight.andes-checkbox--indeterminate .andes-checkbox__input:indeterminate:hover::before {
        background-color: var(--andes-checkbox-highlight-color-fill-default, var(--andes-color-blue-200, rgba(65, 137, 230, .2)));
    }

    .andes-checkbox--highlight.andes-checkbox--indeterminate .andes-checkbox__input:checked:hover::after,
    .andes-checkbox--highlight.andes-checkbox--indeterminate .andes-checkbox__input:indeterminate:hover::after {
        background-color: var(--andes-checkbox-highlight-color-indeterminate-fill-hover, var(--andes-color-blue-600, #2968c8));
    }
}

.andes-checkbox--highlight .andes-checkbox__checkbox,
.andes-checkbox--highlight .andes-checkbox__input,
.andes-checkbox--highlight .andes-checkbox__input::before {
    height: 28px;
    width: 28px;
}

.andes-checkbox--highlight .andes-checkbox__icon,
.andes-checkbox--highlight .andes-checkbox__input::after {
    margin: auto;
}

.andes-checkbox--highlight .andes-checkbox__checkbox {
    margin: 2px 0px;
}

.andes-checkbox--highlight .andes-checkbox__label {
    color: var(--andes-checkbox-highlight-color-text-default, rgba(0, 0, 0, .9));
    margin-top: 6px;
}

.andes-checkbox--highlight .andes-checkbox__input::before {
    background-color: var(--andes-checkbox-highlight-color-fill-default, var(--andes-color-blue-200, rgba(65, 137, 230, .2)));
    border-radius: 3px;
    content: "";
    display: inline-flex;
    inset: 0px;
    position: absolute;
}

.andes-checkbox--highlight .andes-checkbox__input::after {
    background-color: var(--andes-checkbox-highlight-color-unselected-fill-default, #fff);
    border-color: var(--andes-checkbox-highlight-color-unselected-border-default, var(--andes-color-blue-500, #3483fa));
}

.andes-checkbox--highlight .andes-checkbox__input:active::before {
    background-color: var(--andes-checkbox-highlight-color-fill-default, var(--andes-color-blue-200, rgba(65, 137, 230, .2)));
}

.andes-checkbox--highlight .andes-checkbox__input:active::after {
    border-color: var(--andes-checkbox-highlight-color-unselected-border-active, var(--andes-color-blue-700, #1f4e96));
}

.andes-checkbox--highlight .andes-checkbox__input:disabled::before {
    background-color: var(--andes-checkbox-highlight-color-fill-disabled, rgba(0, 0, 0, .04));
}

.andes-checkbox--highlight .andes-checkbox__input:disabled::after {
    background-color: var(--andes-checkbox-highlight-color-unselected-fill-disabled, #fff);
    border-color: var(--andes-checkbox-highlight-color-unselected-border-disabled, rgba(0, 0, 0, .25));
}

.andes-checkbox--highlight .andes-checkbox__input:checked::before {
    background-color: var(--andes-checkbox-highlight-color-fill-default, var(--andes-color-blue-200, rgba(65, 137, 230, .2)));
}

.andes-checkbox--highlight .andes-checkbox__input:checked::after {
    background-color: var(--andes-checkbox-highlight-color-selected-fill-default, var(--andes-color-blue-500, #3483fa));
    border-width: 0px;
}

.andes-checkbox--highlight .andes-checkbox__input:checked:active::before {
    background-color: var(--andes-checkbox-highlight-color-fill-default, var(--andes-color-blue-200, rgba(65, 137, 230, .2)));
}

.andes-checkbox--highlight .andes-checkbox__input:checked:active::after {
    background-color: var(--andes-checkbox-highlight-color-selected-fill-active, var(--andes-color-blue-700, #1f4e96));
}

.andes-checkbox--highlight .andes-checkbox__input:checked:disabled::before {
    background-color: var(--andes-checkbox-highlight-color-fill-disabled, rgba(0, 0, 0, .04));
}

.andes-checkbox--highlight .andes-checkbox__input:checked:disabled::after {
    background-color: var(--andes-checkbox-highlight-color-selected-fill-disabled, rgba(0, 0, 0, .25));
}

.andes-checkbox--highlight.andes-checkbox--error .andes-checkbox__input:not(:checked)::before {
    background-color: var(--andes-checkbox-highlight-color-fill-error, rgba(242, 61, 79, .3));
}

.andes-checkbox--highlight.andes-checkbox--error .andes-checkbox__input:not(:checked)::after {
    background-color: var(--andes-checkbox-highlight-color-unselected-fill-default, #fff);
    border-color: var(--andes-checkbox-highlight-color-unselected-border-error, #f23d4f);
}

.andes-checkbox--highlight.andes-checkbox--error .andes-checkbox__label {
    color: var(--andes-checkbox-highlight-color-text-error, rgba(0, 0, 0, .9));
}

.andes-checkbox--highlight.andes-checkbox--disabled .andes-checkbox__label {
    color: var(--andes-checkbox-highlight-color-text-disabled, rgba(0, 0, 0, .25));
}

.andes-checkbox--highlight.andes-checkbox--indeterminate .andes-checkbox__input:checked::before,
.andes-checkbox--highlight.andes-checkbox--indeterminate .andes-checkbox__input:indeterminate::before {
    background-color: var(--andes-checkbox-highlight-color-fill-default, var(--andes-color-blue-200, rgba(65, 137, 230, .2)));
}

.andes-checkbox--highlight.andes-checkbox--indeterminate .andes-checkbox__input:checked::after,
.andes-checkbox--highlight.andes-checkbox--indeterminate .andes-checkbox__input:indeterminate::after {
    background-color: var(--andes-checkbox-highlight-color-indeterminate-fill-default, var(--andes-color-blue-500, #3483fa));
}

.andes-checkbox--highlight.andes-checkbox--indeterminate .andes-checkbox__input:checked:active::before,
.andes-checkbox--highlight.andes-checkbox--indeterminate .andes-checkbox__input:indeterminate:active::before {
    background-color: var(--andes-checkbox-highlight-color-fill-default, var(--andes-color-blue-200, rgba(65, 137, 230, .2)));
}

.andes-checkbox--highlight.andes-checkbox--indeterminate .andes-checkbox__input:checked:active::after,
.andes-checkbox--highlight.andes-checkbox--indeterminate .andes-checkbox__input:indeterminate:active::after {
    background-color: var(--andes-checkbox-highlight-color-indeterminate-fill-active, var(--andes-color-blue-700, #1f4e96));
}

.andes-checkbox--highlight.andes-checkbox--indeterminate .andes-checkbox__input:checked:disabled::before,
.andes-checkbox--highlight.andes-checkbox--indeterminate .andes-checkbox__input:indeterminate:disabled::before {
    background-color: var(--andes-checkbox-highlight-color-fill-disabled, rgba(0, 0, 0, .04));
}

.andes-checkbox--highlight.andes-checkbox--indeterminate .andes-checkbox__input:checked:disabled::after,
.andes-checkbox--highlight.andes-checkbox--indeterminate .andes-checkbox__input:indeterminate:disabled::after {
    background-color: var(--andes-checkbox-highlight-color-indeterminate-fill-disabled, rgba(0, 0, 0, .25));
}

.andes-checkbox--error .andes-checkbox__input:not(:checked)::after {
    background-color: var(--andes-checkbox-color-unselected-fill-default, #fff);
    border-color: var(--andes-checkbox-color-unselected-border-error, #f23d4f);
}

.andes-checkbox--error .andes-checkbox__label {
    color: var(--andes-checkbox-color-text-error, rgba(0, 0, 0, .9));
}

.andes-form-control {
    display: block;
    font-family: "Proxima Nova", -apple-system, Roboto, Arial, sans-serif;
    font-size: 18px;
    font-weight: 400;
    position: relative;
    -webkit-font-smoothing: antialiased;
    text-align: left;
}

.andes-form-control__control {
    position: relative;
}

.andes-form-control__border,
.andes-form-control__control,
.andes-form-control__field,
.andes-form-control__label,
.andes-form-control__message {
    display: block;
    width: 100%;
}

.andes-form-control__label {
    color: rgba(0, 0, 0, 0.55);
    font-size: 1em;
    line-height: 1;
    transition: transform 0.2s ease-out, color, -webkit-transform;
}

.andes-form-control__label-fixed {
    transform: scale(0.777778) translateY(-135%) !important;
}

.andes-form-control__field {
    background: transparent;
    border: 0px;
    color: rgba(0, 0, 0, 0.9);
    font-family: inherit;
    font-size: inherit;
    line-height: normal;
    margin: 8px 0px 4px;
    overflow: hidden;
    padding: 0px;
    resize: none;
}

.andes-form-control__border {
    background-color: rgba(0, 0, 0, 0.25);
    height: 1px;
    position: relative;
    width: 100%;
}

.andes-form-control__border::after {
    content: "";
    height: 2px;
    position: absolute;
    transform: scaleX(0);
    transition: transform 0.25s, -webkit-transform 0.25s;
    width: 100%;
}

.andes-form-control:hover .andes-form-control__label {
    color: rgba(0, 0, 0, 0.55);
}

.andes-form-control:hover .andes-form-control__border::after {
    background-color: rgba(0, 0, 0, 0.25);
    transform: scaleX(1);
}

.andes-form-control__field:focus {
    outline: 0px;
}

.andes-form-control--focused .andes-form-control__border::after,
.andes-form-control__field:focus+.andes-form-control__border::after {
    transform: scaleX(1);
    background-color: var(--andes-color-blue-500, var(--andes-color-blue-500, #3483fa)) !important;
}

.andes-form-control--floated .andes-form-control__label,
.andes-form-control--focused .andes-form-control__label {
    cursor: text;
}

@media (min-width: 768px) {
    .andes-checkbox__input:hover::after {
        background-color: var(--andes-checkbox-color-unselected-fill-default, #fff);
        border-color: var(--andes-checkbox-color-unselected-border-default, rgba(0, 0, 0, .25));
    }

    .andes-checkbox__input:checked:hover::after {
        background-color: var(--andes-checkbox-color-selected-fill-default, var(--andes-color-blue-500, #3483fa));
    }

    .andes-checkbox__input:hover::after {
        background-color: var(--andes-checkbox-color-unselected-fill-default, #fff);
        border-color: var(--andes-checkbox-color-unselected-border-hover, rgba(0, 0, 0, .55));
    }

    .andes-checkbox__input:checked:hover::after {
        background-color: var(--andes-checkbox-color-selected-fill-hover, var(--andes-color-blue-600, #2968c8));
    }
}

.andes-checkbox {
    -webkit-font-smoothing: antialiased;
    align-items: flex-start;
    cursor: pointer;
    display: inline-flex;
    font-family: "Proxima Nova", -apple-system, Roboto, Arial, sans-serif;
    font-size: 16px;
}

.andes-checkbox__checkbox,
.andes-checkbox__icon,
.andes-checkbox__input,
.andes-checkbox__input::after {
    height: 16px;
    width: 16px;
}

.andes-checkbox__checkbox {
    box-sizing: border-box;
    display: inline-flex;
    margin: 2px 0px;
    position: relative;
}

.andes-checkbox__input:focus {
    box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--andes-color-blue-600, #2968c8), 0 0 0 5px var(--andes-color-blue-300, rgba(65, 137, 230, .3));
    outline: none;
}

.andes-checkbox__input:focus-visible {
    box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--andes-color-blue-600, #2968c8), 0 0 0 5px var(--andes-color-blue-300, rgba(65, 137, 230, .3));
    outline: none;
}

.andes-checkbox__input:focus:not(:focus-visible) {
    box-shadow: none;
    outline: none;
}

.andes-checkbox__input {
    align-items: center;
    appearance: none;
    border-radius: 3px;
    box-sizing: border-box;
    cursor: pointer;
    display: flex;
    justify-content: center;
    margin: 0px;
    outline: none;
}

.andes-checkbox__input::after {
    place-self: center;
    border-color: var(--andes-checkbox-color-unselected-border-default, rgba(0, 0, 0, .25));
    border-radius: 3px;
    border-style: solid;
    border-width: 2px;
    box-sizing: border-box;
    content: "";
    display: inline-block;
    inset: 0px;
    position: absolute;
}

.andes-checkbox__input:active::after,
.andes-checkbox__input::after {
    background-color: var(--andes-checkbox-color-unselected-fill-default, #fff);
}

.andes-checkbox__input:active::after {
    border-color: var(--andes-checkbox-color-unselected-border-active, rgba(0, 0, 0, .55));
}

.andes-checkbox__input:disabled {
    background-color: inherit;
    cursor: not-allowed;
}

.andes-checkbox__input:disabled::after {
    background-color: var(--andes-checkbox-color-unselected-fill-disabled, #fff);
    border-color: var(--andes-checkbox-color-unselected-border-disabled, rgba(0, 0, 0, .1));
}

.andes-checkbox__input:checked~.andes-checkbox__icon {
    visibility: visible;
}

.andes-checkbox__input:checked::after {
    background-color: var(--andes-checkbox-color-selected-fill-default, var(--andes-color-blue-500, #3483fa));
    border-width: 0px;
}

.andes-checkbox__input:checked~.andes-checkbox__icon {
    color: var(--andes-checkbox-color-icon-default, #fff);
}

.andes-checkbox__input:checked:active::after {
    background-color: var(--andes-checkbox-color-selected-fill-active, var(--andes-color-blue-700, #1f4e96));
}

.andes-checkbox__input:checked:disabled::after {
    background-color: var(--andes-checkbox-color-selected-fill-disabled, rgba(0, 0, 0, .1));
}

.andes-checkbox__input:checked:disabled~.andes-checkbox__icon {
    color: var(--andes-checkbox-color-icon-disabled, rgba(0, 0, 0, .25));
}

.andes-checkbox__icon {
    place-self: center;
    box-sizing: border-box;
    display: inline-flex;
    inset: 0px;
    pointer-events: none;
    position: absolute;
    visibility: hidden;
}

.andes-checkbox__label {
    color: var(--andes-checkbox-color-text-default, rgba(0, 0, 0, .9));
    font-family: "Proxima Nova", -apple-system, Roboto, Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.25;
    margin: 0px 0px 0px 12px;
}

.andes-checkbox--label-left {
    flex-direction: row-reverse;
}

.andes-checkbox--label-left .andes-checkbox__label {
    margin: 0px 12px 0px 0px;
}

.andes-checkbox--disabled {
    cursor: not-allowed;
}

.andes-checkbox--disabled .andes-checkbox__label {
    color: var(--andes-checkbox-color-text-disabled, rgba(0, 0, 0, .25));
}

.andes-floating-menu.andes-floating-menu--multiple .andes-checkbox {
    align-self: center;
    min-height: 20px;
    min-width: 20px;
    padding: 0px 16px 0px 0px;
    pointer-events: none;
}

.andes-floating-menu.andes-floating-menu--multiple .andes-list__item-with-secondary.andes-list__item--size-medium .andes-checkbox {
    top: -0.85em;
}

.andes-floating-menu.andes-floating-menu--multiple .andes-list__item-with-secondary.andes-list__item--size-large .andes-checkbox {
    top: -1em;
}

.andes-floating-menu.andes-floating-menu--multiple .andes-list__item-with-image.andes-list__item--size-large .andes-checkbox,
.andes-floating-menu.andes-floating-menu--multiple .andes-list__item-with-image.andes-list__item--size-medium .andes-checkbox {
    top: 0px;
}

.andes-floating-menu.andes-floating-menu--multiple .andes-list__item-asset,
.andes-floating-menu.andes-floating-menu--multiple .andes-list__item-selection-control {
    display: flex;
}

.andes-helper {
    box-sizing: border-box;
    color: var(--andes-helper-color-text-default, rgba(0, 0, 0, .55));
    display: inline-flex;
    font-family: "Proxima Nova", -apple-system, Roboto, Arial, sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 18px;
}

.andes-helper__badge {
    box-sizing: inherit;
    display: flex;
    margin-right: 4px;
    padding-top: 3px;
}

.andes-helper__label {
    box-sizing: inherit;
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
}

.andes-helper--caution {
    color: var(--andes-helper-color-text-caution, rgba(0, 0, 0, .55));
}

.andes-helper--error {
    color: var(--andes-helper-color-text-error, #f23d4f);
    font-weight: 600;
}

.andes-dropdown--form .andes-dropdown__trigger:hover,
.andes-dropdown--form-native .andes-dropdown__trigger:hover {
    box-shadow: 0 0 0 1px var(--andes-dropdown-color-border-default, rgba(0, 0, 0, .25));
}

.andes-dropdown--form .andes-dropdown__trigger:hover .andes-dropdown__chevron,
.andes-dropdown--form-native .andes-dropdown__trigger:hover .andes-dropdown__chevron {
    color: var(--andes-dropdown-color-chevron-default, var(--andes-color-blue-500, #3483fa));
}

@media (min-width: 768px) {

    .andes-dropdown--form .andes-dropdown__trigger:hover,
    .andes-dropdown--form-native .andes-dropdown__trigger:hover {
        box-shadow: 0 0 0 1px var(--andes-dropdown-color-border-hover, rgba(0, 0, 0, .55));
    }

    .andes-dropdown--form .andes-dropdown__trigger:hover .andes-dropdown__chevron,
    .andes-dropdown--form-native .andes-dropdown__trigger:hover .andes-dropdown__chevron {
        color: var(--andes-dropdown-color-chevron-hover, var(--andes-color-blue-600, #2968c8));
    }
}

.andes-dropdown--form .andes-dropdown__display-values,
.andes-dropdown--form .andes-dropdown__placeholder,
.andes-dropdown--form .andes-dropdown__trigger-content {
    align-items: center;
    box-sizing: border-box;
    display: flex;
    height: 32px;
    justify-content: flex-start;
    width: 100%;
}

.andes-dropdown--form .andes-dropdown__display-values,
.andes-dropdown--form .andes-dropdown__placeholder {
    flex-grow: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.andes-dropdown--form .andes-dropdown__display-values {
    color: var(--andes-dropdown-color-value-default, rgba(0, 0, 0, .9));
}

.andes-dropdown--form .andes-dropdown__placeholder {
    color: var(--andes-dropdown-color-placeholder-default, rgba(0, 0, 0, .55));
}

.andes-dropdown--form.andes-dropdown--open .andes-dropdown__chevron {
    transform: rotate(180deg);
}

.andes-dropdown--form.andes-dropdown--multiple .andes-floating-menu--show .andes-popper {
    margin-top: 6px;
}

.andes-dropdown--form.andes-dropdown--multiple .andes-dropdown__display-container {
    display: inline-flex;
    left: 12px;
    position: absolute;
    top: 12px;
}

.andes-dropdown--form-native .andes-dropdown__trigger:hover~.andes-dropdown__chevron {
    color: var(--andes-dropdown-color-chevron-default, var(--andes-color-blue-500, #3483fa));
}

@media (min-width: 768px) {
    .andes-dropdown--form-native .andes-dropdown__trigger:hover~.andes-dropdown__chevron {
        color: var(--andes-dropdown-color-chevron-hover, var(--andes-color-blue-600, #2968c8));
    }
}

@supports ((-webkit-appearance:none) or (appearance:none)) {
    .andes-dropdown--form-native .andes-dropdown__trigger-reset {
        appearance: none;
        background: none;
    }
}

.andes-dropdown--form-native .andes-dropdown__trigger {
    padding-right: 40px;
}

.andes-dropdown--form-native .andes-dropdown__chevron {
    pointer-events: none;
    position: absolute;
    right: 12px;
    top: 14px;
}

.andes-dropdown--form-native.andes-dropdown--disabled .andes-dropdown__trigger~.andes-dropdown__chevron {
    color: var(--andes-dropdown-color-chevron-disabled, rgba(0, 0, 0, .25));
}

.andes-dropdown--standalone.andes-dropdown--medium .andes-dropdown__trigger {
    font-size: 16px;
    height: 32px;
    padding: 8px;
}

.andes-dropdown--standalone.andes-dropdown--small .andes-dropdown__trigger {
    font-size: 14px;
    height: 24px;
    padding: 5px 8px;
}

.andes-form-control--numeric.andes-form-control--error .andes-form-control__label,
.andes-form-control--numeric.andes-form-control--error.andes-form-control:hover .andes-form-control__label,
.andes-form-control--textfield.andes-form-control--error .andes-form-control__label,
.andes-form-control--textfield.andes-form-control--error.andes-form-control:hover .andes-form-control__label {
    color: var(--andes-textfield-color-label-error, #f23d4f) !important;
}

.andes-form-control--numeric.andes-form-control--error .andes-form-control__control,
.andes-form-control--textfield.andes-form-control--error .andes-form-control__control {
    box-shadow: 0 0 0 1px var(--andes-textfield-color-border-error, #f23d4f);
}

.andes-form-control--numeric.andes-form-control--error .andes-form-control__error-icon,
.andes-form-control--textfield.andes-form-control--error .andes-form-control__error-icon {
    background-color: rgb(242, 61, 79);
    border-radius: 50%;
    font-size: 13px;
    height: 12px;
    line-height: 1;
    margin-right: 6px;
    width: 12px;
}

.andes-form-control--numeric.andes-form-control--error.andes-form-control--focused .andes-form-control__control,
.andes-form-control--textfield.andes-form-control--error.andes-form-control--focused .andes-form-control__control {
    border-color: transparent;
    box-shadow: 0 0 0 2px var(--andes-textfield-color-border-error, #f23d4f);
    outline: none;
}

.andes-form-control--numeric-wrapper .andes-form-control--visible-focused.andes-form-control--error .andes-form-control__control,
.andes-form-control--numeric.andes-form-control--error.andes-form-control--focused .andes-form-control__control.visible-focused,
.andes-form-control--textfield.andes-form-control--error.andes-form-control--focused .andes-form-control__control.visible-focused {
    box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--andes-color-blue-600, #2968c8), 0 0 0 5px var(--andes-color-blue-300, rgba(65, 137, 230, .3)), inset 0 0 0 2px var(--andes-textfield-color-border-error, #f23d4f);
}

.andes-form-control--numeric-wrapper .andes-form-control--visible-focused.andes-form-control--error .andes-form-control__control {
    box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--andes-color-blue-600, #2968c8), 0 0 0 5px var(--andes-color-blue-300, rgba(65, 137, 230, .3)), inset 0 0 0 2px var(--andes-textfield-color-border-error, #f23d4f);
}

.andes-form-control--completed.andes-form-control--textfield .andes-form-control__validated-icon {
    color: var(--andes-textfield-color-validated, #00a650);
    display: block;
    margin-right: 12px;
    position: unset;
}

.andes-form-control--completed.andes-form-control--textfield .andes-form-control__validated-icon svg {
    color: var(--andes-textfield-color-validated, #00a650);
    vertical-align: sub;
}

.andes-form-control--textfield .andes-form-control__clear-icon:focus {
    box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--andes-color-blue-600, #2968c8), 0 0 0 5px var(--andes-color-blue-300, rgba(65, 137, 230, .3));
    outline: none;
}

.andes-form-control--textfield .andes-form-control__clear-icon:focus-visible {
    box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--andes-color-blue-600, #2968c8), 0 0 0 5px var(--andes-color-blue-300, rgba(65, 137, 230, .3));
    outline: none;
}

.andes-form-control--textfield .andes-form-control__clear-icon:focus:not(:focus-visible) {
    box-shadow: none;
    outline: none;
}

.andes-form-control--textfield .andes-form-control__clear-icon {
    align-items: center;
    background-color: transparent;
    border: 0px;
    color: var(--andes-textfield-color-clear-default, rgba(0, 0, 0, .55));
    cursor: pointer;
    display: flex;
    font-size: 13px;
    margin-right: 12px;
    padding: 0px;
}

.andes-form-control--textfield .andes-form-control__clear-icon:hover {
    color: var(--andes-textfield-color-clear-hover, rgba(0, 0, 0, .8));
}

.andes-form-control--textfield .andes-form-control__clear-icon:active {
    color: var(--andes-textfield-color-clear-active, rgba(0, 0, 0, .9));
}

.andes-form-control--textfield.andes-form-control--disabled .andes-form-control__label {
    color: var(--andes-textfield-color-label-disabled, rgba(0, 0, 0, .25)) !important;
}

.andes-form-control--textfield.andes-form-control--disabled .andes-form-control__split-button {
    border-right: 1px solid var(--andes-textfield-split-color-divider-disabled, rgba(0, 0, 0, .25));
    cursor: not-allowed;
}

.andes-form-control--textfield.andes-form-control--disabled .andes-form-control__split-button .andes-form-control__split-button-content {
    color: var(--andes-textfield-color-label-disabled, rgba(0, 0, 0, .25));
}

.andes-form-control--textfield.andes-form-control--disabled .andes-form-control__control {
    background-color: var(--andes-textfield-color-fill-disabled, rgba(0, 0, 0, .04));
    border: 1px dashed var(--andes-textfield-color-border-disabled, rgba(0, 0, 0, .25));
    box-shadow: none;
}

.andes-form-control--textfield.andes-form-control--disabled .andes-form-control__field {
    color: var(--andes-textfield-color-input-text-disabled, var(--andes-textfield-color-label-disabled, rgba(0, 0, 0, .25)));
}

.andes-form-control--textfield.andes-form-control--disabled .andes-form-control__field.andes-form-control__split-field {
    cursor: not-allowed;
}

.andes-form-control--textfield.andes-form-control--disabled .andes-form-control__field.andes-form-control__split-field .andes-form-control__control {
    background-color: transparent;
    border: 0px;
}

.andes-form-control--textfield.andes-form-control--disabled .andes-form-control__embedded .andes-checkbox .andes-checkbox__label {
    color: var(--andes-textfield-color-text-checkbox-disabled, var(--andes-textfield-color-label-disabled, rgba(0, 0, 0, .25)));
}

.andes-form-control--textfield.andes-form-control--readonly .andes-form-control__label {
    color: var(--andes-textfield-color-label-read-only, rgba(0, 0, 0, .55));
}

.andes-form-control--textfield.andes-form-control--readonly .andes-form-control__control {
    background-color: var(--andes-textfield-color-fill-read-only, hsla(0, 0%, 100%, 0));
    box-shadow: 0 0 0 1px var(--andes-textfield-color-border-read-only, hsla(0, 0%, 100%, 0));
}

.andes-form-control--textfield.andes-form-control--readonly .andes-form-control__field {
    padding-left: 6px;
    -webkit-text-fill-color: rgba(0, 0, 0, 0.9);
    opacity: 1;
}

.andes-form-control--textfield.andes-form-control--readonly .andes-form-control__field.andes-form-control__split-field {
    cursor: default;
}

.andes-form-control--countdown .andes-form-control__countdown {
    color: rgba(0, 0, 0, 0.55);
    float: right;
    font-size: 13px;
    text-align: right;
}

.andes-form-control--textfield-progress {
    height: 18px;
    margin-right: 12px;
    stroke-width: 6px;
    width: 18px;
}

.andes-form-control--textfield .andes-form-control__field {
    flex-grow: 1;
    width: auto;
}

.andes-form-control--textfield .andes-button--transparent {
    margin: 8px 12px 8px 0px;
    width: max-content;
}

.andes-form-control--textfield .andes-checkbox--embedded {
    display: inline-block;
    margin: 0px 18px 3px 6px;
}

.andes-form-control--textfield .andes-checkbox--embedded .andes-checkbox__input:focus {
    box-shadow: none;
}

.andes-form-control--textfield .andes-checkbox--embedded .andes-checkbox__input:focus-visible {
    box-shadow: none;
}

.andes-form-control--textfield .andes-checkbox--embedded .andes-checkbox__input {
    top: 5px;
}

.andes-form-control--textfield .andes-checkbox--embedded .andes-checkbox__input::before {
    line-height: 0;
    top: 75%;
}

.andes-form-control--textfield .andes-checkbox--embedded .andes-checkbox__input:focus-visible::before {
    box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--andes-color-blue-600, #2968c8), 0 0 0 5px var(--andes-color-blue-300, rgba(65, 137, 230, .3));
}

.andes-form-control--textfield .andes-checkbox--embedded .andes-checkbox__input:focus-visible::after {
    opacity: 0;
}

.andes-form-control--textfield .andes-form-control__embedded {
    align-items: center;
    display: flex;
    z-index: 1;
}

.andes-form-control--textfield .andes-form-control__embedded .andes-tooltip__trigger {
    display: flex;
}

.andes-form-control--textfield .andes-form-control__embedded .andes-tooltip__trigger .andes-button--transparent {
    border-width: 0px;
    margin-right: 12px;
    padding-left: 0px;
    padding-right: 0px;
}

.andes-form-control--textfield .andes-form-control__embedded .andes-checkbox {
    margin-left: 0px;
    margin-right: 12px;
}

.andes-form-control--textfield .andes-form-control__embedded .andes-checkbox .andes-checkbox__label {
    color: var(--andes-textfield-color-text-checkbox-default, rgba(0, 0, 0, .9));
    text-wrap: nowrap;
}

.andes-form-control--textfield .andes-form-control__embedded .andes-button--transparent {
    margin-right: 8px;
}

.andes-form-control--textfield .andes-form-control__embedded .andes-tooltip__trigger .andes-button__content path {
    fill: var(--andes-textfield-color-tooltip-default, var(--andes-color-blue-500, #3483fa)) !important;
}

.andes-form-control--textfield .andes-form-control__embedded .andes-tooltip__trigger:hover .andes-button__content path {
    fill: var(--andes-textfield-color-tooltip-hover, var(--andes-color-blue-600, #2968c8)) !important;
}

.andes-form-control--textfield .andes-form-control__embedded .andes-tooltip__trigger:active .andes-button__content path {
    fill: var(--andes-textfield-color-tooltip-active, var(--andes-color-blue-700, #1f4e96)) !important;
}

.andes-form-control--numeric {
    display: flex;
    flex-direction: column;
}

.andes-form-control--numeric .andes-form-control--focused .andes-form-control__control {
    border-color: transparent;
    box-shadow: 0 0 0 2px var(--andes-textfield-color-border-active, var(--andes-color-blue-500, #3483fa));
    outline: none;
}

.andes-form-control--numeric .andes-form-control--visible-focused .andes-form-control__control {
    border-color: transparent;
    box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--andes-color-blue-600, #2968c8), 0 0 0 5px var(--andes-color-blue-300, rgba(65, 137, 230, .3)), inset 0 0 0 2px var(--andes-color-blue-500, #3483fa);
    outline: none;
}

.andes-form-control--numeric:hover .andes-form-control__message {
    opacity: 1;
}

.andes-form-control--numeric .andes-form-control {
    padding-top: 0px;
}

.andes-form-control--numeric .andes-form-control__label {
    color: rgba(0, 0, 0, 0.9);
    cursor: text;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    margin: 0px 0px 4px 6px;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.2s ease-out;
    white-space: nowrap;
    transform: unset !important;
}

.andes-form-control--numeric-wrapper {
    display: flex;
    flex-flow: wrap;
}

.andes-form-control--numeric .andes-form-control--textfield {
    width: 38px;
}

.andes-form-control--numeric .andes-form-control__field {
    text-align: center;
    width: 100%;
}

.andes-form-control--numeric .andes-form-control__field::-webkit-inner-spin-button {
    appearance: none;
}

.andes-form-control--numeric .andes-form-control__textfield-space {
    margin-right: 8px;
}

.andes-form-control--numeric .andes-form-control__textfield-space--big {
    margin-right: 16px;
}

.andes-form-control--numeric .andes-form-control__textfield-space:last-child {
    margin-right: 0px;
}

.andes-form-control--numeric .andes-form-control__message {
    font-size: 13px;
    margin-top: 0px;
}

.andes-form-control--numeric .andes-form-control__bottom {
    align-items: center;
    display: flex;
    font-size: 13px;
    margin: 4px 0px 0px 6px;
}

.andes-form-control--textfield:last-child {
    margin-right: 0px;
}

.andes-form-control--centered .andes-form-control--numeric-wrapper {
    margin: 0px auto;
}

.andes-form-control__prefix,
.andes-form-control__suffix {
    align-items: center;
    display: flex;
    font-size: 16px;
    opacity: 1;
    transition: opacity 0.2s ease-out;
    white-space: nowrap;
}

.andes-form-control__suffix {
    color: var(--andes-textfield-color-suffix-default, rgba(0, 0, 0, .55));
    margin-right: 12px;
    text-align: right;
}

.andes-form-control__prefix {
    color: var(--andes-textfield-color-prefix-default, rgba(0, 0, 0, .55));
    margin-left: 12px;
    text-align: left;
}

.andes-form-control--disabled .andes-form-control__prefix {
    color: var(--andes-textfield-color-prefix-disabled, rgba(0, 0, 0, .25));
}

.andes-form-control--disabled .andes-form-control__suffix {
    color: var(--andes-textfield-color-suffix-disabled, rgba(0, 0, 0, .25));
}

.andes-form-control--centered .andes-form-control__label {
    margin-left: 0px;
    text-align: center;
    transform-origin: inherit;
}

.andes-form-control--centered .andes-form-control__field,
.andes-form-control--centered .andes-form-control__message {
    text-align: center;
}

.andes-form-control--centered .andes-form-control__bottom {
    margin-left: 0px;
}

.andes-form-control--centered .andes-form-control__field::-webkit-input-placeholder {
    text-align: center;
}

.andes-form-control--centered .andes-form-control__field::placeholder {
    text-align: center;
}

.andes-form-control--sectioned .andes-form-control__control {
    display: flex;
}

.andes-form-control--password.andes-form-control--focused .andes-form-control__control {
    border-color: transparent;
    box-shadow: 0 0 0 2px var(--andes-textfield-color-border-active, var(--andes-color-blue-500, #3483fa));
    outline: none;
}

.andes-form-control--password.andes-form-control--focused .andes-form-control__control.visible-focused {
    box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--andes-color-blue-600, #2968c8), 0 0 0 5px var(--andes-color-blue-300, rgba(65, 137, 230, .3)), inset 0 0 0 2px var(--andes-color-blue-500, #3483fa);
}

.andes-form-control--password .andes-form-control__message {
    opacity: 1;
}

.andes-form-control__password-embedded {
    align-items: center;
    color: var(--andes-textfield-password-color-icon-default, rgba(0, 0, 0, .55));
    display: flex;
    padding-right: 12px;
    position: relative;
}

.andes-form-control__password-embedded:hover {
    color: var(--andes-textfield-password-color-icon-hover, rgba(0, 0, 0, .8));
}

.andes-form-control__password-embedded:active {
    color: var(--andes-textfield-password-color-icon-active, rgba(0, 0, 0, .9));
}

.andes-form-control__password-checkbox:focus {
    box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--andes-color-blue-600, #2968c8), 0 0 0 5px var(--andes-color-blue-300, rgba(65, 137, 230, .3));
    outline: none;
}

.andes-form-control__password-checkbox:focus-visible {
    box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--andes-color-blue-600, #2968c8), 0 0 0 5px var(--andes-color-blue-300, rgba(65, 137, 230, .3));
    outline: none;
}

.andes-form-control__password-checkbox:focus:not(:focus-visible) {
    box-shadow: none;
    outline: none;
}

.andes-form-control__password-checkbox {
    appearance: none;
    cursor: pointer;
    height: 23px;
    margin-right: 12px;
    position: absolute;
    right: 0px;
    width: 23px;
}

.andes-form-control__password-value {
    color: rgba(0, 0, 0, 0.9);
}

.andes-form-control__password-value.hide {
    display: none;
}

.andes-form-control__password-icon {
    align-items: center;
    display: flex;
}

.andes-form-control__field.andes-form-control__split-field {
    cursor: text;
    height: 48px;
    padding: 0px 12px;
}

.andes-form-control__field.andes-form-control__split-field.andes-form-control__split-field--readonly.andes-form-control__split-field--left {
    padding-left: 0px;
}

.andes-form-control__field.andes-form-control__split-field .andes-form-control__control {
    border-radius: 0px;
    box-shadow: none;
}

.andes-form-control__field.andes-form-control__split-field .andes-form-control__control input {
    padding: 0px;
}

.andes-form-control__field.andes-form-control__split-field.andes-form-control--focused>.andes-form-control__control {
    box-shadow: none;
}

.andes-form-control--split>.andes-form-control__control {
    height: 36px;
}

.andes-form-control--split .andes-form-control__control:last-child :last-child {
    margin-right: 0px;
}

.andes-form-control--split .andes-form-control__field {
    padding: 6px 12px 6px 8px;
}

.andes-form-control--split .andes-form-control__embedded {
    padding-right: 0px;
}

.andes-form-control--split .andes-form-control__embedded .andes-tooltip__trigger .andes-button--transparent {
    margin-right: 0px;
}

.andes-form-control--split .andes-form-control__control--visible-focused {
    box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--andes-color-blue-600, #2968c8), 0 0 0 5px var(--andes-color-blue-300, rgba(65, 137, 230, .3)), inset 0 0 0 2px var(--andes-color-blue-500, #3483fa);
}

.andes-form-control--split .andes-form-control__control--visible-focused .andes-form-control__control {
    background-color: transparent;
}

.andes-form-control__split-button {
    align-items: center;
    border-right: 1px solid var(--andes-textfield-split-color-divider-default, rgba(0, 0, 0, .1));
    cursor: pointer;
    display: flex;
    height: 36px;
    padding: 0px 0px 0px 8px;
}

.andes-form-control__split-button--right {
    border-left: 1px solid var(--andes-textfield-split-color-divider-default, rgba(0, 0, 0, .1));
    border-right: 0px;
    padding: 0px 4px 0px 2px;
}

.andes-form-control__split-button--readonly {
    border: 0px;
    cursor: default;
    margin-left: 3px;
    padding-right: 0px;
    pointer-events: none;
}

.andes-form-control__split-button--readonly .andes-dropdown__standalone-arrow {
    display: none;
}

.andes-form-control__split-button.andes-dropdown.andes-dropdown--standalone .andes-floating-menu .andes-dropdown__trigger {
    background-color: transparent;
    border: 0px;
    font-size: 16px;
    padding: 4px 9px 5px 2px;
}

.andes-form-control__split-button.andes-dropdown.andes-dropdown--standalone .andes-floating-menu .andes-dropdown__trigger .andes-dropdown__display-values {
    margin-left: 1px;
    margin-right: 4px;
}

.andes-form-control__split-button.andes-dropdown.andes-dropdown--standalone .andes-dropdown__standalone-arrow {
    height: 16px;
    padding-bottom: 1px;
    transform: scale(1.5);
    width: 16px;
}

.andes-form-control__split-button.andes-dropdown.andes-dropdown--standalone.andes-dropdown--open .andes-dropdown__standalone-arrow {
    transform: scale(1.5) rotate(180deg);
}

.andes-form-control--disabled.andes-form-control__split-button .andes-floating-menu .andes-dropdown__trigger {
    color: var(--andes-textfield-color-label-disabled, rgba(0, 0, 0, .25));
    cursor: not-allowed;
}

.andes-form-control--disabled.andes-form-control__split-button .andes-floating-menu .andes-dropdown__trigger .andes-dropdown__standalone-arrow path {
    fill: var(--andes-textfield-color-label-disabled, rgba(0, 0, 0, .25));
}

.andes-form-control--disabled.andes-form-control__split-button.andes-form-control__split-button--readonly .andes-floating-menu .andes-dropdown__trigger {
    color: rgba(0, 0, 0, 0.9);
    cursor: not-allowed;
    padding-right: 0px;
}

.andes-form-control__split-button-content {
    color: rgba(0, 0, 0, 0.9);
    font-size: 16px;
    margin-right: 4px;
    outline: 0px;
    white-space: nowrap;
}

.andes-form-control__split-button-content--icon {
    margin-right: 6px;
}

.andes-form-control__split-button-content--icon-disabled {
    opacity: 0.4;
}

.andes-form-control__bottom.andes-form-control--medium {
    margin-left: 4px;
    margin-right: 4px;
}

.andes-form-control__bottom.andes-form-control--medium .andes-form-control__message {
    font-size: 10px;
    line-height: 14px;
}

.andes-form-control__bottom.andes-form-control--medium .andes-form-control--countdown .andes-form-control__countdown,
.andes-form-control__bottom.andes-form-control--medium .andes-form-control__countdown {
    font-size: 10px;
}

.andes-form-control--textfield.andes-form-control--medium {
    font-size: 14px;
    padding: 4px 8px;
}

.andes-form-control--textfield.andes-form-control--medium label .andes-form-control__label {
    font-size: 12px;
    margin-left: 4px;
    margin-right: 4px;
}

.andes-form-control--textfield.andes-form-control--medium .andes-form-control__clear-icon,
.andes-form-control--textfield.andes-form-control--medium .andes-form-control__validated-icon {
    margin: 0px 8px 0px 12px;
}

.andes-form-control--textfield.andes-form-control--medium .andes-form-control__clear-icon svg,
.andes-form-control--textfield.andes-form-control--medium .andes-form-control__validated-icon svg {
    height: 12px;
    width: 12px;
}

.andes-form-control--textfield.andes-form-control--medium .andes-form-control__prefix,
.andes-form-control--textfield.andes-form-control--medium .andes-form-control__suffix {
    font-size: 14px;
}

.andes-form-control--textfield.andes-form-control--medium .andes-form-control__control {
    font-size: 12px;
    height: 32px;
    line-height: 18px;
    margin: 4px 0px;
    min-height: 32px;
}

.andes-form-control--textfield.andes-form-control--medium .andes-form-control__control .andes-form-control--textfield-progress.andes-progress-indicator-circular {
    height: 16px;
    margin: 0px 8px;
    width: 16px;
}

.andes-form-control--textfield.andes-form-control--medium .andes-form-control__field {
    border-radius: 4px;
    font-size: 14px;
    height: 24px;
    padding: 4px 8px;
}

.andes-form-control--textfield.andes-form-control--medium .andes-form-control__field::-webkit-input-placeholder {
    font-size: 14px;
}

.andes-form-control--textfield.andes-form-control--medium .andes-form-control__field::placeholder {
    font-size: 14px;
}

.andes-form-control--numeric.andes-form-control--warning .andes-form-control__error-icon,
.andes-form-control--textfield.andes-form-control--warning .andes-form-control__error-icon {
    background-color: rgb(255, 119, 51);
    border-radius: 50%;
    font-size: 13px;
    height: 12px;
    line-height: 1;
    margin-right: 6px;
    width: 12px;
}

.andes-form-control__message {
    color: rgba(0, 0, 0, 0.55);
    font-size: 14px;
    line-height: 1em;
    margin-top: 0.333333em;
    min-height: 14px;
    opacity: 1;
    text-align: left;
    transition: opacity 0.15s ease-out;
}

.andes-form-control--focused .andes-form-control__message {
    opacity: 1;
}

.andes-form-control--error .andes-form-control__message {
    color: rgb(240, 68, 73);
    font-weight: 600;
    opacity: 1;
}

.andes-form-control--error.andes-form-control--focused .andes-form-control__border::after {
    transform: scaleX(1);
    background-color: rgb(240, 68, 73) !important;
}

.andes-form-control--error .andes-form-control__border {
    background-color: rgb(240, 68, 73);
}

.andes-form-control--error .andes-form-control__border::after {
    transform: scaleX(0);
    background-color: rgb(240, 68, 73) !important;
}

@-webkit-keyframes andes-snackbar-show {
    0% {
        opacity: 0;
        transform: translate3d(0px, 100%, 0px);
    }

    100% {
        opacity: 1;
    }
}

@keyframes andes-snackbar-show {
    0% {
        opacity: 0;
        transform: translate3d(0px, 100%, 0px);
    }

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes andes-snackbar-hide {
    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translate3d(0px, 100%, 0px);
    }
}

@keyframes andes-snackbar-hide {
    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translate3d(0px, 100%, 0px);
    }
}

.andes-snackbar {
    align-items: center;
    animation-duration: 0.5s;
    background-color: var(--andes-snackbar-color-fill, #1a1a1a);
    bottom: 0px;
    color: var(--andes-snackbar-color-text, #fff);
    display: flex;
    flex-flow: row;
    font-family: "Proxima Nova", -apple-system, Roboto, Arial, sans-serif;
    font-weight: 400;
    justify-content: space-between;
    position: fixed;
    z-index: 1021;
}

.andes-snackbar__action:focus {
    box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--andes-color-blue-600, #2968c8), 0 0 0 5px var(--andes-color-blue-300, rgba(65, 137, 230, .3));
    outline: none;
}

.andes-snackbar__action:focus-visible {
    box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--andes-color-blue-600, #2968c8), 0 0 0 5px var(--andes-color-blue-300, rgba(65, 137, 230, .3));
    outline: none;
}

.andes-snackbar__action:focus:not(:focus-visible) {
    box-shadow: none;
    outline: none;
}

.andes-snackbar__action {
    background-color: transparent;
    border: 0px;
    color: var(--andes-snackbar-action-color-text-default, #fff);
    font-family: "Proxima Nova", -apple-system, Roboto, Arial, sans-serif;
    font-size: inherit;
    font-weight: 600;
    text-align: right;
    text-transform: uppercase;
    white-space: nowrap;
    -webkit-font-smoothing: antialiased;
    box-sizing: border-box;
    cursor: pointer;
    display: flex;
    line-height: 1.25;
    text-decoration: none;
}

.andes-snackbar__message {
    color: var(--andes-snackbar-color-text, #fff);
    margin: 0px;
}

.andes-snackbar--bottom {
    align-items: flex-start;
    flex-flow: column wrap;
}

@media (prefers-reduced-motion: no-preference) {
    .andes-snackbar--animate-show {
        animation-name: andes-snackbar-show;
    }

    .andes-snackbar--animate-hide {
        animation-fill-mode: forwards;
        animation-name: andes-snackbar-hide;
    }
}

.andes-snackbar {
    border-radius: 0.428571em;
    bottom: 1.14286em;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 6px 16px 0px;
    flex-wrap: wrap;
    left: 0px;
    line-height: 1.14286em;
    margin: 0px 0.571429em;
    right: 0px;
}

.andes-snackbar__action {
    border-radius: 0.428571em;
    font-size: 14px;
    margin: 0.571429em;
    padding: 0.5em 0.571429em;
}

.andes-snackbar__message {
    font-size: 14px;
    padding: 1.14286em;
}

.andes-snackbar__children {
    padding-bottom: 1.14286em;
    padding-left: 1.14286em;
}

.andes-snackbar--bottom.andes-snackbar--with-action .andes-snackbar__message {
    line-height: 1.57143em;
    padding-bottom: 0px;
}

@media (min-width: 768px) {
    .andes-snackbar {
        border-radius: 0.375em;
        bottom: 2em;
        flex-wrap: nowrap;
        line-height: 1em;
        margin-left: auto;
        margin-right: auto;
        max-width: 37.5em;
    }

    .andes-snackbar__action {
        border-radius: 0.375em;
        font-size: 16px;
        margin: 0.75em;
        padding: 0.625em 0.75em;
    }

    .andes-snackbar__message {
        font-size: 16px;
        padding: 1.5em;
    }

    .andes-snackbar__children {
        padding-bottom: 1.5em;
        padding-left: 1.5em;
    }

    .andes-snackbar--bottom .andes-snackbar__action {
        margin-bottom: 0.25em;
        margin-left: 16px;
        margin-top: 0.25em;
        padding-left: 0.5em;
    }

    .andes-snackbar--bottom .andes-snackbar__message {
        line-height: 1.375em;
        padding-bottom: 0.5em;
    }
}

.andes-snackbar--positive {
    background-color: var(--andes-snackbar-color-fill-positive, #00a650);
}

.andes-snackbar--positive,
.andes-snackbar--positive .andes-snackbar__message {
    color: var(--andes-snackbar-color-text-positive, #fff);
}

.andes-snackbar--positive .andes-snackbar__action {
    color: var(--andes-snackbar-action-color-text-positive-default, #fff);
}

.andes-snackbar--negative {
    background-color: var(--andes-snackbar-color-fill-negative, #f23d4f);
}

.andes-snackbar--negative,
.andes-snackbar--negative .andes-snackbar__message {
    color: var(--andes-snackbar-color-text-negative, #fff);
}

.andes-snackbar--negative .andes-snackbar__action {
    color: var(--andes-snackbar-action-color-text-negative-default, #fff);
}

input:focus-visible {
    box-shadow: none;
}

input:focus {
    box-shadow: none;
}

input:-webkit-autofill,
input:-webkit-autofill:active,
input:-webkit-autofill:focus,
input:-webkit-autofill:focus-visible,
input:-webkit-autofill:hover {
    box-shadow: rgb(255, 255, 255) 0px 0px 0px 30px inset !important;
}

.login-form__input--password #password:-webkit-autofill {
    animation-duration: 0.1s;
    animation-name: auto-fill-start;
}

@-webkit-keyframes auto-fill-start {
    0% {}

    100% {}
}

@keyframes auto-fill-start {
    0% {}

    100% {}
}

.login-form__input .andes-form-control__control.visible-focused {
    box-shadow: rgb(52, 131, 250) 0px 0px 0px 0.125em;
}

body,
html {
    font-size: 16px !important;
}

body {
    background: rgb(255, 255, 255);
    min-width: unset;
}

[role="contentinfo"] .nav-footer {
    display: none !important;
}

.nav-header .nav-header-menu-wrapper::after {
    display: none;
}

.nav-header::before {
    content: none;
}

.nav-header .nav-bounds {
    justify-content: space-between;
}

body[data-site="MP"] .nav-header .nav-bounds {
    min-height: 3.125rem;
}

body[data-site="TI"] .nav-header,
body[data-site="TL"] .nav-header {
    background: rgb(255, 255, 255);
}

body[data-site="TM"] .nav-header {
    background: rgb(255, 230, 0);
}

.nav-header.nav-header--cbt {
    background: rgb(255, 241, 89);
}

.grecaptcha-badge {
    display: none !important;
}

body[data-site="MP"] .nav-header {
    background-color: var(--andes-color-fill-brand, var(--andes-color-yellow-500, #ffe600));
}

body[data-site="MS"] .nav-header {
    background-color: rgb(217, 84, 94);
}

.nav-header-cbt__content {
    display: none;
}

.nav-header-cbt__links-icons {
    border-left: 0px;
}

.nav-footer-cbt.nav-footer {
    display: none;
}

.nav-header-cbt {
    background-color: rgb(255, 230, 0);
}

body[data-site="PI"] .nav-footer {
    display: none;
}

@media only screen and (min-width: 768px) {
    body {
        background: rgb(237, 237, 237);
    }

    .nav-header {
        border-bottom: 0px;
        box-shadow: none;
    }

    #nav-header-menu {
        height: inherit;
        margin: 0px;
        min-width: inherit;
        padding: 0px;
        position: inherit;
    }

    #nav-header-menu>a {
        border-left: 0px;
        left: unset;
        position: unset;
    }

    #nav-header-menu>a.option-help {
        border-left: 0px;
    }

    .andes-button {
        width: 100%;
    }

    body[data-site="TI"] #nav-header-menu [for="nav-header-user-switch"]:hover i::before,
    body[data-site="TI"] #nav-header-menu a:hover,
    body[data-site="TI"] #nav-header-menu a:hover i::before,
    body[data-site="TI"] #nav-header-menu i::before,
    body[data-site="TI"] [for="nav-header-user-switch"]:hover,
    body[data-site="TL"] #nav-header-menu [for="nav-header-user-switch"]:hover i::before,
    body[data-site="TL"] #nav-header-menu a:hover,
    body[data-site="TL"] #nav-header-menu a:hover i::before,
    body[data-site="TL"] #nav-header-menu i::before,
    body[data-site="TL"] [for="nav-header-user-switch"]:hover,
    body[data-site="TM"] #nav-header-menu [for="nav-header-user-switch"]:hover i::before,
    body[data-site="TM"] #nav-header-menu a:hover,
    body[data-site="TM"] #nav-header-menu a:hover i::before,
    body[data-site="TM"] #nav-header-menu i::before,
    body[data-site="TM"] [for="nav-header-user-switch"]:hover {
        color: rgb(51, 51, 51);
    }

    body[data-site="TM"] .nav-logo {
        background-size: 7.5rem 1.5rem;
        height: 1.5rem;
        margin: 0.5rem 0px;
        width: 7.5rem;
    }

    body[data-site="MP"] {
        background-color: rgb(238, 238, 238);
    }

    body[data-site="MP"] .nav-logo {
        background-image: url("https://http2.mlstatic.com/frontend-assets/auth-login-frontend/4ea367c6c0eedeb0ae63.svg");
    }

    body[data-site="MP"] .option-help-tablet {
        height: auto;
    }

    body[data-site="MP"] .option-help-icon {
        fill: var(--andes-color-text-brand, rgba(0, 0, 0, .9));
    }

    body[data-site="MP"] .nav-icon-help::before {
        content: "";
    }

    body[data-site="MP"] .nav-header-menu-wrapper ::after {
        content: none;
    }
}

@media screen and (min-width: 1024px) {
    #nav-header-menu {
        margin: auto;
    }

    .nav-header {
        height: 3.5rem;
    }

    .nav-header #nav-header-menu {
        align-items: center;
        display: flex;
        height: 3.5rem;
        padding: 0px 12px;
    }

    .nav-header #nav-header-menu .option-help {
        line-height: inherit;
        padding-bottom: 4px;
    }

    .nav-header .nav-header-guest .option-help-tablet {
        height: auto;
    }

    .platform-ml #nav-header-menu {
        height: unset;
        margin: 0px;
        min-width: unset;
        padding: 0px;
        position: unset;
    }

    .platform-ml #nav-header-menu>a {
        left: unset;
        position: unset;
    }

    .nav-header-cbt__content {
        display: flex;
    }
}

.recaptcha-container {
    display: none;
}

.recaptcha-container--error {
    display: block;
    margin: 0px auto;
    min-height: 4.875rem;
    position: relative;
    width: 17rem;
}

.recaptcha-container .g-recaptcha {
    min-height: 4.875rem;
}

.recaptcha-container .g-recaptcha,
.recaptcha-container .g-recaptcha-no-script {
    transform: scale(0.89);
    transform-origin: 0px 0px;
}

.recaptcha-container .g-recaptcha-no-script {
    margin-bottom: -3.75rem;
}

.recaptcha-spinner {
    left: 50%;
    margin-left: -1.5rem;
    position: absolute;
    top: 1.75rem;
    z-index: 0;
}

.recaptcha__container {
    margin: 1rem 0px 0px;
}

.recaptcha__widget {
    height: 4.875rem;
    margin: 0.375rem 0px;
    width: 19rem;
}

.recaptcha__spinner {
    align-items: center;
    display: flex;
    justify-content: center;
}

.recaptcha__spinner--hide {
    display: none;
}

.recaptcha__error-icon {
    margin: 0px 0.375rem;
}

.recaptcha__container .recaptcha__error-message {
    align-items: center;
    display: flex;
}

.recaptcha__container .recaptcha__error-message.andes-typography {
    font-weight: 600;
}

.andes-ui-typography {
    -webkit-font-smoothing: antialiased;
    font-feature-settings: "case";
}

h1.andes-ui-typography,
h2.andes-ui-typography,
h3.andes-ui-typography,
h4.andes-ui-typography,
h5.andes-ui-typography,
h6.andes-ui-typography,
p.andes-ui-typography {
    margin: 0px;
}

.andes-ui-typography-body-xsmall-default {
    font-weight: var(--andes-text-body-weight-default, var(--andes-text-body-weight-default, var(--andes-font-weight-regular, 400)));
}

.andes-ui-typography-body-xsmall-default,
.andes-ui-typography-body-xsmall-emphasis {
    font-family: var(--andes-text-body-family-default, var(--andes-text-body-family-default, var(--andes-font-family-inter, inter)));
    font-size: var(--andes-text-body-size-xsmall, var(--andes-text-body-size-xsmall, var(--andes-font-size-10, .625rem)));
    font-style: normal;
    letter-spacing: var(--andes-text-body-letter-spacing-default, var(--andes-text-body-letter-spacing-default, var(--andes-font-letter-spacing-0, 0)));
    line-height: var(--andes-text-body-line-height-xsmall, var(--andes-text-body-line-height-xsmall, var(--andes-font-line-height-12, .75rem)));
    text-decoration: none;
}

.andes-ui-typography-body-xsmall-emphasis {
    font-weight: var(--andes-text-body-weight-emphasis, var(--andes-text-body-weight-emphasis, var(--andes-font-weight-semibold, 600)));
}

.andes-ui-typography-body-xsmall-textlink {
    font-size: var(--andes-text-body-size-xsmall, var(--andes-text-body-size-xsmall, var(--andes-font-size-10, .625rem)));
    font-weight: var(--andes-text-body-weight-emphasis, var(--andes-text-body-weight-emphasis, var(--andes-font-weight-semibold, 600)));
    line-height: var(--andes-text-body-line-height-xsmall, var(--andes-text-body-line-height-xsmall, var(--andes-font-line-height-12, .75rem)));
    text-decoration-line: underline;
    text-decoration-skip-ink: none;
    text-decoration-style: solid;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

.andes-ui-typography-body-small-default,
.andes-ui-typography-body-xsmall-textlink {
    font-family: var(--andes-text-body-family-default, var(--andes-text-body-family-default, var(--andes-font-family-inter, inter)));
    font-style: normal;
    letter-spacing: var(--andes-text-body-letter-spacing-default, var(--andes-text-body-letter-spacing-default, var(--andes-font-letter-spacing-0, 0)));
}

.andes-ui-typography-body-small-default {
    font-size: var(--andes-text-body-size-small, var(--andes-text-body-size-small, var(--andes-font-size-12, .75rem)));
    font-weight: var(--andes-text-body-weight-default, var(--andes-text-body-weight-default, var(--andes-font-weight-regular, 400)));
    line-height: var(--andes-text-body-line-height-small, var(--andes-text-body-line-height-small, var(--andes-font-line-height-16, 1rem)));
    text-decoration: none;
}

.andes-ui-typography-body-small-emphasis {
    text-decoration: none;
}

.andes-ui-typography-body-small-emphasis,
.andes-ui-typography-body-small-textlink {
    font-family: var(--andes-text-body-family-default, var(--andes-text-body-family-default, var(--andes-font-family-inter, inter)));
    font-size: var(--andes-text-body-size-small, var(--andes-text-body-size-small, var(--andes-font-size-12, .75rem)));
    font-style: normal;
    font-weight: var(--andes-text-body-weight-emphasis, var(--andes-text-body-weight-emphasis, var(--andes-font-weight-semibold, 600)));
    letter-spacing: var(--andes-text-body-letter-spacing-default, var(--andes-text-body-letter-spacing-default, var(--andes-font-letter-spacing-0, 0)));
    line-height: var(--andes-text-body-line-height-small, var(--andes-text-body-line-height-small, var(--andes-font-line-height-16, 1rem)));
}

.andes-ui-typography-body-small-textlink {
    text-decoration-line: underline;
    text-decoration-skip-ink: none;
    text-decoration-style: solid;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

.andes-ui-typography-body-medium-default {
    font-weight: var(--andes-text-body-weight-default, var(--andes-text-body-weight-default, var(--andes-font-weight-regular, 400)));
}

.andes-ui-typography-body-medium-default,
.andes-ui-typography-body-medium-emphasis {
    font-family: var(--andes-text-body-family-default, var(--andes-text-body-family-default, var(--andes-font-family-inter, inter)));
    font-size: var(--andes-text-body-size-medium, var(--andes-text-body-size-medium, var(--andes-font-size-14, .875rem)));
    font-style: normal;
    letter-spacing: var(--andes-text-body-letter-spacing-default, var(--andes-text-body-letter-spacing-default, var(--andes-font-letter-spacing-0, 0)));
    line-height: var(--andes-text-body-line-height-medium, var(--andes-text-body-line-height-medium, var(--andes-font-line-height-18, 1.125rem)));
    text-decoration: none;
}

.andes-ui-typography-body-medium-emphasis {
    font-weight: var(--andes-text-body-weight-emphasis, var(--andes-text-body-weight-emphasis, var(--andes-font-weight-semibold, 600)));
}

.andes-ui-typography-body-medium-textlink {
    font-size: var(--andes-text-body-size-medium, var(--andes-text-body-size-medium, var(--andes-font-size-14, .875rem)));
    font-weight: var(--andes-text-body-weight-emphasis, var(--andes-text-body-weight-emphasis, var(--andes-font-weight-semibold, 600)));
    line-height: var(--andes-text-body-line-height-medium, var(--andes-text-body-line-height-medium, var(--andes-font-line-height-18, 1.125rem)));
    text-decoration-line: underline;
    text-decoration-skip-ink: none;
    text-decoration-style: solid;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

.andes-ui-typography-body-large-default,
.andes-ui-typography-body-medium-textlink {
    font-family: var(--andes-text-body-family-default, var(--andes-text-body-family-default, var(--andes-font-family-inter, inter)));
    font-style: normal;
    letter-spacing: var(--andes-text-body-letter-spacing-default, var(--andes-text-body-letter-spacing-default, var(--andes-font-letter-spacing-0, 0)));
}

.andes-ui-typography-body-large-default {
    font-size: var(--andes-text-body-size-large, var(--andes-text-body-size-large, var(--andes-font-size-16, 1rem)));
    font-weight: var(--andes-text-body-weight-default, var(--andes-text-body-weight-default, var(--andes-font-weight-regular, 400)));
    line-height: var(--andes-text-body-line-height-large, var(--andes-text-body-line-height-large, var(--andes-font-line-height-20, 1.25rem)));
    text-decoration: none;
}

.andes-ui-typography-body-large-emphasis {
    text-decoration: none;
}

.andes-ui-typography-body-large-emphasis,
.andes-ui-typography-body-large-textlink {
    font-family: var(--andes-text-body-family-default, var(--andes-text-body-family-default, var(--andes-font-family-inter, inter)));
    font-size: var(--andes-text-body-size-large, var(--andes-text-body-size-large, var(--andes-font-size-16, 1rem)));
    font-style: normal;
    font-weight: var(--andes-text-body-weight-emphasis, var(--andes-text-body-weight-emphasis, var(--andes-font-weight-semibold, 600)));
    letter-spacing: var(--andes-text-body-letter-spacing-default, var(--andes-text-body-letter-spacing-default, var(--andes-font-letter-spacing-0, 0)));
    line-height: var(--andes-text-body-line-height-large, var(--andes-text-body-line-height-large, var(--andes-font-line-height-20, 1.25rem)));
}

.andes-ui-typography-body-large-textlink {
    text-decoration-line: underline;
    text-decoration-skip-ink: none;
    text-decoration-style: solid;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

.andes-ui-typography-display-xsmall-default {
    font-weight: var(--andes-text-display-weight-default, var(--andes-text-display-weight-default, var(--andes-font-weight-bold, 700)));
}

.andes-ui-typography-display-xsmall-default,
.andes-ui-typography-display-xsmall-narrow {
    font-family: var(--andes-text-display-family-default, var(--andes-text-display-family-default, var(--andes-font-family-inter, inter)));
    font-size: var(--andes-text-display-size-xsmall, var(--andes-text-display-size-xsmall, var(--andes-font-size-40, 2.5rem)));
    font-style: normal;
    letter-spacing: var(--andes-text-display-letter-spacing-default, var(--andes-text-display-letter-spacing-default, var(--andes-font-letter-spacing-negative-1, -.063rem)));
    line-height: var(--andes-text-display-line-height-xsmall, var(--andes-text-display-line-height-xsmall, var(--andes-font-line-height-48, 3rem)));
    text-decoration: none;
}

.andes-ui-typography-display-xsmall-narrow {
    font-weight: var(--andes-text-display-weight-narrow, var(--andes-text-display-weight-narrow, var(--andes-font-weight-semibold, 600)));
}

.andes-ui-typography-display-small-default {
    font-weight: var(--andes-text-display-weight-default, var(--andes-text-display-weight-default, var(--andes-font-weight-bold, 700)));
}

.andes-ui-typography-display-small-default,
.andes-ui-typography-display-small-narrow {
    font-family: var(--andes-text-display-family-default, var(--andes-text-display-family-default, var(--andes-font-family-inter, inter)));
    font-size: var(--andes-text-display-size-small, var(--andes-text-display-size-small, var(--andes-font-size-48, 3rem)));
    font-style: normal;
    letter-spacing: var(--andes-text-display-letter-spacing-default, var(--andes-text-display-letter-spacing-default, var(--andes-font-letter-spacing-negative-1, -.063rem)));
    line-height: var(--andes-text-display-line-height-small, var(--andes-text-display-line-height-small, var(--andes-font-line-height-56, 3.5rem)));
    text-decoration: none;
}

.andes-ui-typography-display-small-narrow {
    font-weight: var(--andes-text-display-weight-narrow, var(--andes-text-display-weight-narrow, var(--andes-font-weight-semibold, 600)));
}

.andes-ui-typography-display-medium-default {
    font-weight: var(--andes-text-display-weight-default, var(--andes-text-display-weight-default, var(--andes-font-weight-bold, 700)));
}

.andes-ui-typography-display-medium-default,
.andes-ui-typography-display-medium-narrow {
    font-family: var(--andes-text-display-family-default, var(--andes-text-display-family-default, var(--andes-font-family-inter, inter)));
    font-size: var(--andes-text-display-size-medium, var(--andes-text-display-size-medium, var(--andes-font-size-56, 3.5rem)));
    font-style: normal;
    letter-spacing: var(--andes-text-display-letter-spacing-default, var(--andes-text-display-letter-spacing-default, var(--andes-font-letter-spacing-negative-1, -.063rem)));
    line-height: var(--andes-text-display-line-height-medium, var(--andes-text-display-line-height-medium, var(--andes-font-line-height-66, 4.125rem)));
    text-decoration: none;
}

.andes-ui-typography-display-medium-narrow {
    font-weight: var(--andes-text-display-weight-narrow, var(--andes-text-display-weight-narrow, var(--andes-font-weight-semibold, 600)));
}

.andes-ui-typography-heading-tiny-default {
    font-weight: var(--andes-text-heading-weight-default, var(--andes-text-heading-weight-default, var(--andes-font-weight-bold, 700)));
}

.andes-ui-typography-heading-tiny-default,
.andes-ui-typography-heading-tiny-narrow {
    font-family: var(--andes-text-heading-family-default, var(--andes-text-heading-family-default, var(--andes-font-family-inter, inter)));
    font-size: var(--andes-text-heading-size-tiny, var(--andes-text-heading-size-tiny, var(--andes-font-size-10, .625rem)));
    font-style: normal;
    letter-spacing: var(--andes-text-heading-letter-spacing-default, var(--andes-text-heading-letter-spacing-default, var(--andes-font-letter-spacing-0, 0)));
    line-height: var(--andes-text-heading-line-height-tiny, var(--andes-text-heading-line-height-tiny, var(--andes-font-line-height-12, .75rem)));
    text-decoration: none;
}

.andes-ui-typography-heading-tiny-narrow {
    font-weight: var(--andes-text-heading-weight-narrow, var(--andes-text-heading-weight-narrow, var(--andes-font-weight-semibold, 600)));
}

.andes-ui-typography-heading-xsmall-default {
    font-weight: var(--andes-text-heading-weight-default, var(--andes-text-heading-weight-default, var(--andes-font-weight-bold, 700)));
}

.andes-ui-typography-heading-xsmall-default,
.andes-ui-typography-heading-xsmall-narrow {
    font-family: var(--andes-text-heading-family-default, var(--andes-text-heading-family-default, var(--andes-font-family-inter, inter)));
    font-size: var(--andes-text-heading-size-xsmall, var(--andes-text-heading-size-xsmall, var(--andes-font-size-12, .75rem)));
    font-style: normal;
    letter-spacing: var(--andes-text-heading-letter-spacing-default, var(--andes-text-heading-letter-spacing-default, var(--andes-font-letter-spacing-0, 0)));
    line-height: var(--andes-text-heading-line-height-xsmall, var(--andes-text-heading-line-height-xsmall, var(--andes-font-line-height-16, 1rem)));
    text-decoration: none;
}

.andes-ui-typography-heading-xsmall-narrow {
    font-weight: var(--andes-text-heading-weight-narrow, var(--andes-text-heading-weight-narrow, var(--andes-font-weight-semibold, 600)));
}

.andes-ui-typography-heading-small-default {
    font-weight: var(--andes-text-heading-weight-default, var(--andes-text-heading-weight-default, var(--andes-font-weight-bold, 700)));
}

.andes-ui-typography-heading-small-default,
.andes-ui-typography-heading-small-narrow {
    font-family: var(--andes-text-heading-family-default, var(--andes-text-heading-family-default, var(--andes-font-family-inter, inter)));
    font-size: var(--andes-text-heading-size-small, var(--andes-text-heading-size-small, var(--andes-font-size-14, .875rem)));
    font-style: normal;
    letter-spacing: var(--andes-text-heading-letter-spacing-default, var(--andes-text-heading-letter-spacing-default, var(--andes-font-letter-spacing-0, 0)));
    line-height: var(--andes-text-heading-line-height-small, var(--andes-text-heading-line-height-small, var(--andes-font-line-height-18, 1.125rem)));
    text-decoration: none;
}

.andes-ui-typography-heading-small-narrow {
    font-weight: var(--andes-text-heading-weight-narrow, var(--andes-text-heading-weight-narrow, var(--andes-font-weight-semibold, 600)));
}

.andes-ui-typography-heading-medium-default {
    font-weight: var(--andes-text-heading-weight-default, var(--andes-text-heading-weight-default, var(--andes-font-weight-bold, 700)));
}

.andes-ui-typography-heading-medium-default,
.andes-ui-typography-heading-medium-narrow {
    font-family: var(--andes-text-heading-family-default, var(--andes-text-heading-family-default, var(--andes-font-family-inter, inter)));
    font-size: var(--andes-text-heading-size-medium, var(--andes-text-heading-size-medium, var(--andes-font-size-16, 1rem)));
    font-style: normal;
    letter-spacing: var(--andes-text-heading-letter-spacing-default, var(--andes-text-heading-letter-spacing-default, var(--andes-font-letter-spacing-0, 0)));
    line-height: var(--andes-text-heading-line-height-medium, var(--andes-text-heading-line-height-medium, var(--andes-font-line-height-20, 1.25rem)));
    text-decoration: none;
}

.andes-ui-typography-heading-medium-narrow {
    font-weight: var(--andes-text-heading-weight-narrow, var(--andes-text-heading-weight-narrow, var(--andes-font-weight-semibold, 600)));
}

.andes-ui-typography-heading-large-default {
    font-weight: var(--andes-text-heading-weight-default, var(--andes-text-heading-weight-default, var(--andes-font-weight-bold, 700)));
}

.andes-ui-typography-heading-large-default,
.andes-ui-typography-heading-large-narrow {
    font-family: var(--andes-text-heading-family-default, var(--andes-text-heading-family-default, var(--andes-font-family-inter, inter)));
    font-size: var(--andes-text-heading-size-large, var(--andes-text-heading-size-large, var(--andes-font-size-18, 1.125rem)));
    font-style: normal;
    letter-spacing: var(--andes-text-heading-letter-spacing-default, var(--andes-text-heading-letter-spacing-default, var(--andes-font-letter-spacing-0, 0)));
    line-height: var(--andes-text-heading-line-height-large, var(--andes-text-heading-line-height-large, var(--andes-font-line-height-22, 1.375rem)));
    text-decoration: none;
}

.andes-ui-typography-heading-large-narrow {
    font-weight: var(--andes-text-heading-weight-narrow, var(--andes-text-heading-weight-narrow, var(--andes-font-weight-semibold, 600)));
}

.andes-ui-typography-heading-xlarge-default {
    font-weight: var(--andes-text-heading-weight-default, var(--andes-text-heading-weight-default, var(--andes-font-weight-bold, 700)));
}

.andes-ui-typography-heading-xlarge-default,
.andes-ui-typography-heading-xlarge-narrow {
    font-family: var(--andes-text-heading-family-default, var(--andes-text-heading-family-default, var(--andes-font-family-inter, inter)));
    font-size: var(--andes-text-heading-size-xlarge, var(--andes-text-heading-size-xlarge, var(--andes-font-size-20, 1.25rem)));
    font-style: normal;
    letter-spacing: var(--andes-text-heading-letter-spacing-default, var(--andes-text-heading-letter-spacing-default, var(--andes-font-letter-spacing-0, 0)));
    line-height: var(--andes-text-heading-line-height-xlarge, var(--andes-text-heading-line-height-xlarge, var(--andes-font-line-height-24, 1.5rem)));
    text-decoration: none;
}

.andes-ui-typography-heading-xlarge-narrow {
    font-weight: var(--andes-text-heading-weight-narrow, var(--andes-text-heading-weight-narrow, var(--andes-font-weight-semibold, 600)));
}

.andes-ui-typography-heading-huge-default {
    font-weight: var(--andes-text-heading-weight-default, var(--andes-text-heading-weight-default, var(--andes-font-weight-bold, 700)));
}

.andes-ui-typography-heading-huge-default,
.andes-ui-typography-heading-huge-narrow {
    font-family: var(--andes-text-heading-family-default, var(--andes-text-heading-family-default, var(--andes-font-family-inter, inter)));
    font-size: var(--andes-text-heading-size-huge, var(--andes-text-heading-size-huge, var(--andes-font-size-24, 1.5rem)));
    font-style: normal;
    letter-spacing: var(--andes-text-heading-letter-spacing-default, var(--andes-text-heading-letter-spacing-default, var(--andes-font-letter-spacing-0, 0)));
    line-height: var(--andes-text-heading-line-height-huge, var(--andes-text-heading-line-height-huge, var(--andes-font-line-height-28, 1.75rem)));
    text-decoration: none;
}

.andes-ui-typography-heading-huge-narrow {
    font-weight: var(--andes-text-heading-weight-narrow, var(--andes-text-heading-weight-narrow, var(--andes-font-weight-semibold, 600)));
}

.andes-ui-typography-heading-xhuge-default {
    font-weight: var(--andes-text-heading-weight-default, var(--andes-text-heading-weight-default, var(--andes-font-weight-bold, 700)));
}

.andes-ui-typography-heading-xhuge-default,
.andes-ui-typography-heading-xhuge-narrow {
    font-family: var(--andes-text-heading-family-default, var(--andes-text-heading-family-default, var(--andes-font-family-inter, inter)));
    font-size: var(--andes-text-heading-size-xhuge, var(--andes-text-heading-size-xhuge, var(--andes-font-size-28, 1.75rem)));
    font-style: normal;
    letter-spacing: var(--andes-text-heading-letter-spacing-default, var(--andes-text-heading-letter-spacing-default, var(--andes-font-letter-spacing-0, 0)));
    line-height: var(--andes-text-heading-line-height-xhuge, var(--andes-text-heading-line-height-xhuge, var(--andes-font-line-height-34, 2.125rem)));
    text-decoration: none;
}

.andes-ui-typography-heading-xhuge-narrow {
    font-weight: var(--andes-text-heading-weight-narrow, var(--andes-text-heading-weight-narrow, var(--andes-font-weight-semibold, 600)));
}

.andes-ui-typography-heading-mega-default {
    font-weight: var(--andes-text-heading-weight-default, var(--andes-text-heading-weight-default, var(--andes-font-weight-bold, 700)));
}

.andes-ui-typography-heading-mega-default,
.andes-ui-typography-heading-mega-narrow {
    font-family: var(--andes-text-heading-family-default, var(--andes-text-heading-family-default, var(--andes-font-family-inter, inter)));
    font-size: var(--andes-text-heading-size-mega, var(--andes-text-heading-size-mega, var(--andes-font-size-32, 2rem)));
    font-style: normal;
    letter-spacing: var(--andes-text-heading-letter-spacing-default, var(--andes-text-heading-letter-spacing-default, var(--andes-font-letter-spacing-0, 0)));
    line-height: var(--andes-text-heading-line-height-mega, var(--andes-text-heading-line-height-mega, var(--andes-font-line-height-40, 2.5rem)));
    text-decoration: none;
}

.andes-ui-typography-heading-mega-narrow {
    font-weight: var(--andes-text-heading-weight-narrow, var(--andes-text-heading-weight-narrow, var(--andes-font-weight-semibold, 600)));
}

.andes-ui-typography-internal-components-header-title {
    font-family: var(--andes-header-text-title-family-default, var(--andes-header-text-title-family-default, var(--andes-font-family-inter, inter)));
    font-size: var(--andes-header-text-title-size-default, var(--andes-header-text-title-size-default, var(--andes-font-size-24, 1.5rem)));
    font-style: normal;
    letter-spacing: var(--andes-header-text-title-letter-spacing-default, var(--andes-header-text-title-letter-spacing-default, var(--andes-font-letter-spacing-0, 0)));
    line-height: var(--andes-header-text-title-line-height-default, var(--andes-header-text-title-line-height-default, var(--andes-font-line-height-28, 1.75rem)));
    text-decoration: none;
}

.andes-ui-typography-internal-components-header-screen-task {
    font-family: var(--andes-header-text-screen-task-family-default, var(--andes-header-text-screen-task-family-default, var(--andes-font-family-inter, inter)));
    font-size: var(--andes-header-text-screen-task-size-default, var(--andes-header-text-screen-task-size-default, var(--andes-font-size-18, 1.125rem)));
    font-style: normal;
    letter-spacing: var(--andes-header-text-screen-task-letter-spacing-default, var(--andes-header-text-screen-task-letter-spacing-default, var(--andes-font-letter-spacing-0, 0)));
    line-height: var(--andes-header-text-screen-task-line-height-default, var(--andes-header-text-screen-task-line-height-default, var(--andes-font-line-height-22, 1.375rem)));
    text-decoration: none;
}

.andes-ui-typography--color-primary {
    color: var(--andes-color-text-primary, var(--andes-color-text-primary, var(--andes-color-gray-900, #282834)));
}

.andes-ui-typography--color-secondary {
    color: var(--andes-color-text-secondary, var(--andes-color-text-secondary, var(--andes-color-gray-700, #646587)));
}

.andes-ui-typography--color-inverse {
    color: var(--andes-color-text-inverse, var(--andes-color-text-inverse, var(--andes-color-white-alpha-100, #fff)));
}

.andes-ui-typography--color-accent {
    color: var(--andes-color-text-accent, var(--andes-color-text-accent, var(--andes-color-blue-700, #434ce4)));
}

.andes-ui-typography--color-accent-loud-on-fill {
    color: var(--andes-color-text-accent-loud-on-fill, var(--andes-color-text-accent-loud-on-fill, var(--andes-color-white-alpha-100, #fff)));
}

.andes-ui-typography--color-accent-quiet-on-fill {
    color: var(--andes-color-text-accent-quiet-on-fill, var(--andes-color-text-accent-quiet-on-fill, var(--andes-color-blue-700, #434ce4)));
}

.andes-ui-typography--color-disabled {
    color: var(--andes-color-text-disabled, var(--andes-color-text-disabled, var(--andes-color-gray-500, #9c9ebf)));
}

.andes-ui-typography--color-informative {
    color: var(--andes-color-feedback-text-informative-loud, var(--andes-color-feedback-text-informative-loud, var(--andes-color-blue-700, #434ce4)));
}

.andes-ui-typography--color-informative-loud-on-fill {
    color: var(--andes-color-feedback-text-informative-loud-on-fill, var(--andes-color-feedback-text-informative-loud-on-fill, var(--andes-color-white-alpha-100, #fff)));
}

.andes-ui-typography--color-informative-quiet-on-fill {
    color: var(--andes-color-feedback-text-informative-quiet-on-fill, var(--andes-color-feedback-text-informative-quiet-on-fill, var(--andes-color-blue-900, #272c96)));
}

.andes-ui-typography--color-positive {
    color: var(--andes-color-feedback-text-positive-loud, var(--andes-color-feedback-text-positive-loud, var(--andes-color-green-700, #1f8923)));
}

.andes-ui-typography--color-positive-loud-on-fill {
    color: var(--andes-color-feedback-text-positive-loud-on-fill, var(--andes-color-feedback-text-positive-loud-on-fill, var(--andes-color-white-alpha-100, #fff)));
}

.andes-ui-typography--color-positive-quiet-on-fill {
    color: var(--andes-color-feedback-text-positive-quiet-on-fill, var(--andes-color-feedback-text-positive-quiet-on-fill, var(--andes-color-green-900, #124515)));
}

.andes-ui-typography--color-caution {
    color: var(--andes-color-feedback-text-caution-loud, var(--andes-color-feedback-text-caution-loud, var(--andes-color-orange-700, #d74009)));
}

.andes-ui-typography--color-caution-loud-on-fill {
    color: var(--andes-color-feedback-text-caution-loud-on-fill, var(--andes-color-feedback-text-caution-loud-on-fill, var(--andes-color-white-alpha-100, #fff)));
}

.andes-ui-typography--color-caution-quiet-on-fill {
    color: var(--andes-color-feedback-text-caution-quiet-on-fill, var(--andes-color-feedback-text-caution-quiet-on-fill, var(--andes-color-orange-900, #942700)));
}

.andes-ui-typography--color-negative {
    color: var(--andes-color-feedback-text-negative-loud, var(--andes-color-feedback-text-negative-loud, var(--andes-color-red-800, #c4031d)));
}

.andes-ui-typography--color-negative-loud-on-fill {
    color: var(--andes-color-feedback-text-negative-loud-on-fill, var(--andes-color-feedback-text-negative-loud-on-fill, var(--andes-color-white-alpha-100, #fff)));
}

.andes-ui-typography--color-negative-quiet-on-fill {
    color: var(--andes-color-feedback-text-negative-quiet-on-fill, var(--andes-color-feedback-text-negative-quiet-on-fill, var(--andes-color-red-900, #9e0015)));
}

.andes-ui-typography--color-neutral-loud-on-fill {
    color: var(--andes-color-feedback-text-neutral-loud-on-fill, var(--andes-color-feedback-text-neutral-loud-on-fill, var(--andes-color-white-alpha-100, #fff)));
}

.andes-ui-typography--color-neutral-quiet-on-fill {
    color: var(--andes-color-feedback-text-neutral-quiet-on-fill, var(--andes-color-feedback-text-neutral-quiet-on-fill, var(--andes-color-gray-900, #282834)));
}

.andes-ui-typography--color-link {
    color: var(--andes-color-text-link-idle, var(--andes-color-text-link-idle, var(--andes-color-blue-700, #434ce4)));
}

@media (pointer: fine) {
    .andes-ui-typography--color-link:hover {
        color: var(--andes-color-text-link-hover, var(--andes-color-text-link-hover, var(--andes-color-blue-800, #353ac5)));
    }
}

.andes-ui-typography--color-link:active {
    color: var(--andes-color-text-link-active, var(--andes-color-text-link-active, var(--andes-color-blue-900, #272c96)));
}

.andes-ui-typography--color-link-inverse {
    color: var(--andes-color-text-link-idle-inverse, var(--andes-color-text-link-idle-inverse, var(--andes-color-white-alpha-100, #fff)));
}

@media (pointer: fine) {
    .andes-ui-typography--color-link-inverse:hover {
        color: var(--andes-color-text-link-hover-inverse, var(--andes-color-text-link-hover-inverse, var(--andes-color-white-alpha-90, hsla(0, 0%, 100%, .9))));
    }
}

.andes-ui-typography--color-link-inverse:active {
    color: var(--andes-color-text-link-active-inverse, var(--andes-color-text-link-active-inverse, var(--andes-color-white-alpha-80, hsla(0, 0%, 100%, .8))));
}

.andes-ui-typography--color-selected {
    color: var(--andes-color-selected-text-idle, var(--andes-color-selected-text-idle, var(--andes-color-blue-700, #434ce4)));
}

.andes-ui-typography--color-selected:active {
    color: var(--andes-color-selected-text-active, var(--andes-color-selected-text-active, var(--andes-color-blue-900, #272c96)));
}

@media (pointer: fine) {
    .andes-ui-typography--color-selected:hover {
        color: var(--andes-color-selected-text-hover, var(--andes-color-selected-text-hover, var(--andes-color-blue-800, #353ac5)));
    }
}

.andes-ui-header {
    display: contents;
}

.andes-ui-header__content_wrapper {
    align-items: center;
    background-color: var(--andes-header-color-fill-default, var(--andes-header-color-fill-default, var(--andes-color-transparent, hsla(0, 0%, 100%, 0))));
    bottom: auto;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: var(--andes-size-height-xlarge, var(--andes-size-height-xlarge, var(--andes-dimensions-56, 56px)));
    padding: var(--andes-spacing-padding-micro, var(--andes-spacing-padding-micro, var(--andes-dimensions-12, 12px))) var(--andes-spacing-gap-xtiny, var(--andes-spacing-gap-xtiny, var(--andes-dimensions-16, 16px)));
    position: sticky;
    top: 0px;
    z-index: 1020;
}

.andes-ui-header__content_wrapper .andes-ui-button--quiet {
    background-color: var(--andes-header-button-color-fill-default, var(--andes-header-button-color-fill-default, var(--andes-color-blue-100, #e9f1ff)));
}

.andes-ui-header__content_wrapper .andes-ui-button--quiet .andes-ui-button__icon svg {
    color: var(--andes-header-button-color-icon-default, var(--andes-header-button-color-icon-default, var(--andes-color-blue-700, #434ce4)));
}

.andes-ui-header__content {
    align-items: center;
    align-self: stretch;
    display: flex;
    gap: var(--andes-spacing-gap-xmicro, var(--andes-spacing-gap-xmicro, var(--andes-dimensions-8, 8px)));
}

.andes-ui-header__title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    flex: 1 1 0%;
    -webkit-line-clamp: 1;
    opacity: var(--andes-header-app-bar-opacity, 1);
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (prefers-reduced-motion: no-preference) {
    .andes-ui-header__title {
        transition: opacity 0.3s ease-in-out;
    }
}

.andes-ui-header__right-content {
    gap: var(--andes-spacing-gap-xmicro, var(--andes-spacing-gap-xmicro, var(--andes-dimensions-8, 8px)));
}

.andes-ui-header__headline,
.andes-ui-header__right-content {
    align-items: center;
    display: flex;
}

.andes-ui-header__headline {
    align-self: stretch;
    padding: var(--andes-spacing-padding-xmicro, var(--andes-spacing-padding-xmicro, var(--andes-dimensions-8, 8px))) var(--andes-spacing-gap-xtiny, var(--andes-spacing-gap-xtiny, var(--andes-dimensions-16, 16px)));
}

.andes-ui-header__headline__title {
    color: var(--andes-header-color-text-default, var(--andes-header-color-text-default, var(--andes-color-white-alpha-100, #fff)));
    flex: 1 1 0%;
    opacity: var(--andes-header-headline-opacity, 1);
}

@media (prefers-reduced-motion: no-preference) {
    .andes-ui-header__headline__title {
        transition: opacity 0.3s ease-in-out;
    }
}

.andes-ui-header--on-scroll.andes-ui-header--on-fill .andes-ui-header__content_wrapper {
    backdrop-filter: blur(calc(var(--andes-glass-blur-default, var(--andes-glass-blur-default, 16px))/2));
    background-color: var(--andes-header-color-fill-on-fill-on-scroll, var(--andes-header-color-fill-on-fill-on-scroll, var(--andes-color-black-alpha-20, rgba(40, 40, 52, .2))));
}

.andes-ui-header--on-scroll.andes-ui-header--on-fill .andes-ui-header__title .andes-ui-typography {
    color: var(--andes-header-color-text-on-fill, var(--andes-header-color-text-on-fill, var(--andes-color-white-alpha-100, #fff)));
}

.andes-ui-header--on-scroll .andes-ui-header__content_wrapper {
    backdrop-filter: blur(calc(var(--andes-glass-blur-default, var(--andes-glass-blur-default, 16px))/2));
    background-color: var(--andes-header-color-fill-default-on-scroll, var(--andes-header-color-fill-default-on-scroll, var(--andes-color-white-alpha-60, hsla(0, 0%, 100%, .6))));
}

.andes-ui-header--on-fill .andes-ui-header__content_wrapper {
    background-color: var(--andes-header-color-fill-on-fill, var(--andes-header-color-fill-on-fill, var(--andes-color-transparent, hsla(0, 0%, 100%, 0))));
}

.andes-ui-header--on-fill .andes-ui-header__headline__title .andes-ui-typography {
    color: var(--andes-header-color-text-on-fill, var(--andes-header-color-text-on-fill, var(--andes-color-white-alpha-100, #fff)));
}

.andes-ui-header--on-fill .andes-ui-button--quiet {
    background-color: var(--andes-header-button-color-fill-on-fill, var(--andes-header-button-color-fill-on-fill, var(--andes-color-black-alpha-30, rgba(40, 40, 52, .3))));
}

.andes-ui-header--on-fill .andes-ui-button--quiet .andes-ui-button__icon svg {
    color: var(--andes-header-button-color-icon-on-fill, var(--andes-header-button-color-icon-on-fill, var(--andes-color-white-alpha-100, #fff)));
}

.andes-ui-header--without-title .andes-ui-header__content {
    align-self: end;
}

.andes-ui-header--level1 .andes-ui-header__content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    min-width: 0px;
}

.andes-ui-header--level1 .andes-ui-header__left-content {
    align-items: flex-start;
    display: flex;
    gap: var(--andes-spacing-gap-xmicro, var(--andes-spacing-gap-xmicro, var(--andes-dimensions-8, 8px)));
}

.andes-ui-header--level1 .andes-ui-header__right-content {
    justify-content: flex-end;
    min-width: var(--andes-size-width-actions-medium, var(--andes-size-width-actions-medium, var(--andes-dimensions-40, 40px)));
}

.andes-ui-header--level1 .andes-ui-header__title {
    text-align: center;
}

.andes-ui-header--level1:has(.andes-ui-header__right-content > :nth-child(2):last-child) .andes-ui-header__content {
    grid-template-columns: minmax(auto, 1fr) 1fr minmax(auto, 1fr);
}

.andes-ui-header--level1:has(.andes-ui-header__right-content > :nth-child(2):last-child) .andes-ui-header__right-content {
    margin-left: var(--andes-spacing-gap-xmicro, var(--andes-spacing-gap-xmicro, var(--andes-dimensions-8, 8px)));
}

.andes-ui-header--level1.andes-ui-header--without-title:has(.andes-ui-header__right-content > :first-child:last-child, .andes-ui-header__right-content > :nth-child(2):last-child, .andes-ui-header__left-content) .andes-ui-header__content {
    grid-template-columns: 1fr 1fr;
    width: 100%;
}

.andes-ui-header--webview .andes-ui-header__content_wrapper {
    padding-top: calc(var(--andes-spacing-padding-micro, var(--andes-spacing-padding-micro, var(--andes-dimensions-12, 12px))) + env(safe-area-inset-top, var(--andes-size-height-small, var(--andes-dimensions-32, 32px))));
}

.andes-ui-header__headline {
    display: none;
}

.andes-x-layout--webview {
    display: flex;
    flex-direction: column;
    height: 100dvh;
}

.andes-x-layout--webview__header {
    flex-shrink: 0;
}

.andes-x-layout--webview__content {
    flex: 1 1 0%;
    min-height: 0px;
}

@font-face {
    font-display: swap;
    font-family: Inter;
    font-style: normal;
    font-weight: 400;
    src: url("https://http2.mlstatic.com/frontend-assets/andes-library-test/fonts/inter-regular.woff2") format("woff2");
}

@font-face {
    font-display: swap;
    font-family: Inter;
    font-style: normal;
    font-weight: 600;
    src: url("https://http2.mlstatic.com/frontend-assets/andes-library-test/fonts/inter-semi-bold.woff2") format("woff2");
}

@font-face {
    font-display: swap;
    font-family: Inter;
    font-style: normal;
    font-weight: 700;
    src: url("https://http2.mlstatic.com/frontend-assets/andes-library-test/fonts/inter-bold.woff2") format("woff2");
}

.container {
    height: 100%;
    position: relative;
}

.login-form__row {
    margin: 0.625rem 0px;
    min-height: 3.75rem;
    padding: 1.3125rem 0px 0px;
    position: relative;
    text-align: left;
}

.login-form__row--landscape {
    margin: 0px;
    padding-top: 0px;
    width: 25.5rem;
}

.login-form__input {
    position: relative;
    z-index: 10;
}

.recaptcha-terms__container {
    color: rgb(102, 102, 102);
    font-size: 0.75rem;
    margin: 0px 0px 0.5rem;
    text-align: center;
}

.recaptcha-terms__links {
    font-size: 0.625rem;
}

a {
    color: var(--andes-color-blue-500, var(--andes-color-blue-500, #3483fa));
    text-decoration: none;
}

@media only screen and (max-height: 481px) {
    .wrap {
        height: 86%;
        min-height: 23.125rem;
    }
}

.sr-only {
    font-size: 0px;
}

.andes-card--padding-0>.andes-card__overlap>.andes-card__content,
.andes-card--padding-0>.andes-card__overlap>.andes-card__footer,
.andes-card--padding-0>.andes-card__overlap>.andes-card__header {
    padding: 0px;
}

.andes-card--padding-16>.andes-card__overlap>.andes-card__content,
.andes-card--padding-16>.andes-card__overlap>.andes-card__footer,
.andes-card--padding-16>.andes-card__overlap>.andes-card__header {
    padding: 16px;
}

.andes-card--padding-24>.andes-card__overlap>.andes-card__content,
.andes-card--padding-24>.andes-card__overlap>.andes-card__footer,
.andes-card--padding-24>.andes-card__overlap>.andes-card__header {
    padding: 24px;
}

.andes-card--padding-32>.andes-card__overlap>.andes-card__content,
.andes-card--padding-32>.andes-card__overlap>.andes-card__footer,
.andes-card--padding-32>.andes-card__overlap>.andes-card__header {
    padding: 32px;
}

.andes-card--padding-40>.andes-card__overlap>.andes-card__content,
.andes-card--padding-40>.andes-card__overlap>.andes-card__footer,
.andes-card--padding-40>.andes-card__overlap>.andes-card__header {
    padding: 40px;
}

.andes-card {
    background-color: rgb(255, 255, 255);
    border: none;
    border-radius: 6px;
    box-sizing: border-box;
    color: rgba(0, 0, 0, 0.9);
    display: block;
    font-family: "Proxima Nova", -apple-system, Roboto, Arial, sans-serif;
    font-size: 16px;
    margin: 0px;
    outline: none;
    padding: 0px;
    text-decoration: none;
}

.andes-card__overlap> :first-child {
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

.andes-card__overlap> :last-child {
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
}

.andes-card--elevated {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 6px 16px 0px;
}

.andes-card--elevated:focus-visible {
    box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--andes-color-blue-600, #2968c8), 0 0 0 5px var(--andes-color-blue-300, rgba(65, 137, 230, .3)), 0 6px 16px 0 rgba(0, 0, 0, .1);
}

.andes-card--flat {
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 2px 0px;
}

.andes-card--flat:focus-visible {
    box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--andes-color-blue-600, #2968c8), 0 0 0 5px var(--andes-color-blue-300, rgba(65, 137, 230, .3)), 0 1px 2px 0 rgba(0, 0, 0, .12);
}

.andes-card--outline {
    border: 1px solid var(--andes-card-color-border, rgba(0, 0, 0, .1));
}

.andes-card--outline:focus-visible {
    box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--andes-color-blue-600, #2968c8), 0 0 0 5px var(--andes-color-blue-300, rgba(65, 137, 230, .3));
}

.andes-card--none .andes-card__content {
    position: relative;
}

.andes-card--none>.andes-card__overlap>.andes-card__content::before {
    content: "";
    display: block;
    height: 100%;
    left: 0px;
    position: absolute;
    top: 0px;
    width: 4px;
}

.andes-card--none .andes-card__content:first-child::before {
    border-top-left-radius: 6px;
}

.andes-card--none .andes-card__content:last-child::before {
    border-bottom-left-radius: 6px;
}

@media (min-width: 768px) {
    .andes-card__footer--common:hover .andes-card__footer-arrow {
        color: var(--andes-card-extended-footer-color-chevron-hover, var(--andes-color-blue-600, #2968c8));
    }
}

.andes-card__header {
    padding-bottom: 14px;
}

.andes-card__header--border {
    border-bottom: 1px solid var(--andes-card-extended-header-color-border, rgba(0, 0, 0, .1));
}

.andes-card__header-title {
    color: var(--andes-card-extended-header-color-title, rgba(0, 0, 0, .9));
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    margin: 0px;
    padding: 0px;
}

.andes-card__footer {
    padding-top: 14px;
}

.andes-card__footer--common:focus {
    box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--andes-color-blue-600, #2968c8), 0 0 0 5px var(--andes-color-blue-300, rgba(65, 137, 230, .3));
    outline: none;
}

.andes-card__footer--common:focus-visible {
    box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--andes-color-blue-600, #2968c8), 0 0 0 5px var(--andes-color-blue-300, rgba(65, 137, 230, .3));
    outline: none;
}

.andes-card__footer--common:focus:not(:focus-visible) {
    box-shadow: none;
    outline: none;
}

.andes-card__footer--common {
    text-decoration: none;
}

.andes-card__footer--common:active .andes-card__footer-arrow {
    color: var(--andes-card-extended-footer-color-chevron-active, var(--andes-color-blue-700, #1f4e96));
}

.andes-card__footer--link {
    display: block;
}

.andes-card__footer--button {
    background-color: transparent;
    border-bottom-width: 0px;
    border-left-color: transparent;
    border-right-color: transparent;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    border-top-width: 0px;
    cursor: pointer;
    text-align: left;
    width: 100%;
}

.andes-card__footer--border {
    border-top: 1px solid var(--andes-card-extended-footer-color-border, rgba(0, 0, 0, .1));
}

.andes-card__footer-arrow {
    color: var(--andes-card-extended-footer-color-chevron-default, var(--andes-color-blue-500, #3483fa));
    display: block;
    float: right;
    height: 20px;
    width: 20px;
}

.andes-card--informative .andes-card__content {
    position: relative;
}

.andes-card--informative>.andes-card__overlap>.andes-card__content::before {
    background: var(--andes-card-pipe-color-fill-informative, var(--andes-color-blue-500, #3483fa));
    content: "";
    display: block;
    height: 100%;
    left: 0px;
    position: absolute;
    top: 0px;
    width: 4px;
}

.andes-card--informative .andes-card__content:first-child::before {
    border-top-left-radius: 6px;
}

.andes-card--informative .andes-card__content:last-child::before {
    border-bottom-left-radius: 6px;
}

.andes-card--positive .andes-card__content {
    position: relative;
}

.andes-card--positive>.andes-card__overlap>.andes-card__content::before {
    background: var(--andes-card-pipe-color-fill-positive, #00a650);
    content: "";
    display: block;
    height: 100%;
    left: 0px;
    position: absolute;
    top: 0px;
    width: 4px;
}

.andes-card--positive .andes-card__content:first-child::before {
    border-top-left-radius: 6px;
}

.andes-card--positive .andes-card__content:last-child::before {
    border-bottom-left-radius: 6px;
}

.andes-card--caution .andes-card__content {
    position: relative;
}

.andes-card--caution>.andes-card__overlap>.andes-card__content::before {
    background: var(--andes-card-pipe-color-fill-caution, #f73);
    content: "";
    display: block;
    height: 100%;
    left: 0px;
    position: absolute;
    top: 0px;
    width: 4px;
}

.andes-card--caution .andes-card__content:first-child::before {
    border-top-left-radius: 6px;
}

.andes-card--caution .andes-card__content:last-child::before {
    border-bottom-left-radius: 6px;
}

.andes-card--negative .andes-card__content {
    position: relative;
}

.andes-card--negative>.andes-card__overlap>.andes-card__content::before {
    background: var(--andes-card-pipe-color-fill-negative, #f23d4f);
    content: "";
    display: block;
    height: 100%;
    left: 0px;
    position: absolute;
    top: 0px;
    width: 4px;
}

.andes-card--negative .andes-card__content:first-child::before {
    border-top-left-radius: 6px;
}

.andes-card--negative .andes-card__content:last-child::before {
    border-bottom-left-radius: 6px;
}

.andes-card--custom-color .andes-card__content {
    position: relative;
}

.andes-card--custom-color>.andes-card__overlap>.andes-card__content::before {
    background: var(--andes-card-pipe-color-fill-informative);
    content: "";
    display: block;
    height: 100%;
    left: 0px;
    position: absolute;
    top: 0px;
    width: 4px;
}

.andes-card--custom-color .andes-card__content:first-child::before {
    border-top-left-radius: 6px;
}

.andes-card--custom-color .andes-card__content:last-child::before {
    border-bottom-left-radius: 6px;
}

@media (min-width: 768px) {
    .andes-card--primary:is(button, a[href], [tabindex]):not([hidden], [tabindex="-1"], [disabled]):hover>.andes-card__overlap {
        background-color: var(--andes-card-color-surface-primary-hover, rgba(0, 0, 0, .04));
    }
}

.andes-card--primary {
    background-color: var(--andes-card-container-color-surface-primary, #fff);
}

.andes-card--primary .andes-card__overlap {
    background-color: var(--andes-card-color-surface-primary-default, transparent);
}

.andes-card--primary:is(button, a[href], [tabindex]):not([hidden], [tabindex="-1"], [disabled]):active>.andes-card__overlap {
    background-color: var(--andes-card-color-surface-primary-active, rgba(0, 0, 0, .07));
}

@media (min-width: 768px) {
    .andes-card--secondary:is(button, a[href], [tabindex]):not([hidden], [tabindex="-1"], [disabled]):hover .andes-card__overlap {
        background-color: var(--andes-card-color-surface-secondary-hover, rgba(0, 0, 0, .04));
    }
}

.andes-card--secondary {
    background-color: var(--andes-card-container-color-surface-secondary, #f5f5f5);
}

.andes-card--secondary .andes-card__overlap {
    background-color: var(--andes-card-color-surface-secondary-default, transparent);
}

.andes-card--secondary:is(button, a[href], [tabindex]):not([hidden], [tabindex="-1"], [disabled]):active .andes-card__overlap {
    background-color: var(--andes-card-color-surface-secondary-active, rgba(0, 0, 0, .07));
}

@media (min-width: 768px) {
    .andes-card--tertiary:is(button, a[href], [tabindex]):not([hidden], [tabindex="-1"], [disabled]):hover .andes-card__overlap {
        background-color: var(--andes-card-color-surface-tertiary-hover, rgba(0, 0, 0, .04));
    }
}

.andes-card--tertiary {
    background-color: var(--andes-card-container-color-surface-tertiary, #ededed);
}

.andes-card--tertiary .andes-card__overlap {
    background-color: var(--andes-card-color-surface-tertiary-default, transparent);
}

.andes-card--tertiary:is(button, a[href], [tabindex]):not([hidden], [tabindex="-1"], [disabled]):active .andes-card__overlap {
    background-color: var(--andes-card-color-surface-tertiary-active, rgba(0, 0, 0, .07));
}

.grid-view__container>.grid-view__main>.grid-view__section--headers>p.andes-typography--size-s.grid-view__subtitle {
    margin: 0px 0px 0.5rem;
}

.grid-view__container>.grid-view__main>.grid-view__section--headers>h1.grid-view__title {
    margin: 0px;
}

.grid-view__container>.grid-view__main>.grid-view__section--headers>p.grid-view__description {
    margin: 0.5rem 0px 0px;
    max-width: 22rem;
}

@media screen and (min-width: 1024px) {
    .grid-view__container>.grid-view__main>.grid-view__section--headers>p.andes-typography--size-s.grid-view__subtitle {
        margin: 0px;
    }
}

.cx-widget,
.cx-widget:focus:not(:focus-visible) {
    backface-visibility: hidden;
    background-color: rgb(255, 255, 255);
    bottom: 0px;
    box-shadow: rgba(0, 0, 0, 0.07) 0px 0px 1px 1px, rgba(0, 0, 0, 0.15) 0px 20px 25px 0px;
    display: flex;
    opacity: 1;
    position: fixed;
    right: -360px;
    transform: translateZ(0px) translateZ(0px);
    transition: transform 325ms ease-in-out, opacity 0.1s ease-out, top 0.1s, bottom 0.1s, -webkit-transform 325ms ease-in-out;
    width: 360px;
    z-index: 9000;
}

.cx-widget *,
.cx-widget:focus:not(:focus-visible) * {
    border: 0px;
    box-sizing: border-box;
    font-family: "Proxima Nova", sans-serif;
    font-size: 16px;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
}

.cx-widget.cx-widget--visible,
.cx-widget:focus:not(:focus-visible).cx-widget--visible {
    transform: translateZ(0px) translateZ(0px) translateX(-360px);
}

.cx-widget.cx-widget--fake-destroy,
.cx-widget:focus:not(:focus-visible).cx-widget--fake-destroy {
    opacity: 0;
}

.cx-widget.cx-widget--collapsed,
.cx-widget:focus:not(:focus-visible).cx-widget--collapsed {
    bottom: 0px !important;
}

.cx-widget.cx-widget--collapsed .cx-widget__protection-band,
.cx-widget:focus:not(:focus-visible).cx-widget--collapsed .cx-widget__protection-band {
    opacity: 1;
}

.cx-widget.cx-widget--collapsed .cx-widget__container .cx-widget-iframe,
.cx-widget:focus:not(:focus-visible).cx-widget--collapsed .cx-widget__container .cx-widget-iframe {
    z-index: -1;
}

.cx-widget.cx-widget--collapsed .cx-widget__title-container .cx-widget__title,
.cx-widget:focus:not(:focus-visible).cx-widget--collapsed .cx-widget__title-container .cx-widget__title {
    opacity: 1;
    transform: translateZ(0px) translateZ(0px) translateY(45%);
}

.cx-widget.cx-widget--collapsed .cx-widget__actions .button-minimize,
.cx-widget:focus:not(:focus-visible).cx-widget--collapsed .cx-widget__actions .button-minimize {
    opacity: 0;
    pointer-events: none;
}

.cx-widget.cx-widget--collapsed .cx-widget__actions .button-close,
.cx-widget:focus:not(:focus-visible).cx-widget--collapsed .cx-widget__actions .button-close {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2732%27 height=%2732%27 viewBox=%270 0 32 32%27%3E%3Cpath fill=%27%23fff%27 d=%27M17.12 15.71 22.41 21 21 22.41l-5.29-5.29-5.3 5.29L9 21l5.29-5.29L9 10.41 10.41 9l5.3 5.29L21 9l1.41 1.41z%27/%3E%3C/svg%3E");
}

.cx-widget .cx-widget__title-container,
.cx-widget:focus:not(:focus-visible) .cx-widget__title-container {
    cursor: pointer;
    height: 64px;
    left: 0px;
    margin: 0px;
    padding: 16px 0px 16px 32px;
    position: absolute;
    vertical-align: top;
    width: 250px;
}

.cx-widget .cx-widget__title-container .cx-widget__title,
.cx-widget:focus:not(:focus-visible) .cx-widget__title-container .cx-widget__title {
    color: rgb(255, 255, 255);
    font-weight: 500;
    line-height: 1;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    text-overflow: ellipsis;
    transform: translateZ(0px) translateZ(0px) translateY(20%);
    transition: transform 0.2s ease-in 0.3s, opacity 325ms 0.3s, -webkit-transform 0.2s ease-in 0.3s;
    white-space: nowrap;
    width: 90%;
}

.cx-widget .cx-widget__actions,
.cx-widget:focus:not(:focus-visible) .cx-widget__actions {
    height: 64px;
    padding: 16px 16px 16px 0px;
    position: absolute;
    right: 0px;
    text-align: right;
    vertical-align: top;
    width: 110px;
    z-index: 9003;
}

.cx-widget .cx-widget__actions .button-close,
.cx-widget .cx-widget__actions .button-minimize,
.cx-widget:focus:not(:focus-visible) .cx-widget__actions .button-close,
.cx-widget:focus:not(:focus-visible) .cx-widget__actions .button-minimize {
    cursor: pointer;
    display: inline-block;
    height: 32px;
    width: 32px;
}

.cx-widget .cx-widget__actions .button-minimize,
.cx-widget:focus:not(:focus-visible) .cx-widget__actions .button-minimize {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2732%27 height=%2732%27 viewBox=%270 0 32 32%27%3E%3Cpath fill=%27%233483fa%27 d=%27m16 18.59 6.29-6.3 1.42 1.42-7.71 7.7-7.71-7.7 1.42-1.42z%27/%3E%3C/svg%3E");
    margin-right: 8px;
}

.cx-widget .cx-widget__actions .button-minimize.button-minimize--white,
.cx-widget:focus:not(:focus-visible) .cx-widget__actions .button-minimize.button-minimize--white {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2732%27 height=%2732%27 viewBox=%270 0 32 32%27%3E%3Cpath fill=%27%23fff%27 d=%27m16 18.59 6.29-6.3 1.42 1.42-7.71 7.7-7.71-7.7 1.42-1.42z%27/%3E%3C/svg%3E");
}

.cx-widget .cx-widget__actions .button-close,
.cx-widget:focus:not(:focus-visible) .cx-widget__actions .button-close {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2732%27 height=%2732%27 viewBox=%270 0 32 32%27%3E%3Cpath fill=%27%233483fa%27 d=%27M17.12 15.71 22.41 21 21 22.41l-5.29-5.29-5.3 5.29L9 21l5.29-5.29L9 10.41 10.41 9l5.3 5.29L21 9l1.41 1.41z%27/%3E%3C/svg%3E");
}

.cx-widget .cx-widget__actions .button-close.button-close--white,
.cx-widget:focus:not(:focus-visible) .cx-widget__actions .button-close.button-close--white {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2732%27 height=%2732%27 viewBox=%270 0 32 32%27%3E%3Cpath fill=%27%23fff%27 d=%27M17.12 15.71 22.41 21 21 22.41l-5.29-5.29-5.3 5.29L9 21l5.29-5.29L9 10.41 10.41 9l5.3 5.29L21 9l1.41 1.41z%27/%3E%3C/svg%3E");
}

.cx-widget .cx-widget__container,
.cx-widget:focus:not(:focus-visible) .cx-widget__container {
    height: calc(100% - 64px);
    margin-top: 64px;
}

.cx-widget .cx-widget__container .cx-widget-iframe,
.cx-widget:focus:not(:focus-visible) .cx-widget__container .cx-widget-iframe {
    height: 100%;
    margin-top: -64px;
    overflow: hidden;
    position: absolute;
    width: 100%;
    z-index: 9001;
}

.cx-widget .cx-widget__protection-band,
.cx-widget:focus:not(:focus-visible) .cx-widget__protection-band {
    height: 64px;
    left: 0px;
    opacity: 0;
    position: absolute;
    right: 0px;
    top: 0px;
    transform: translateZ(0px) translateZ(0px);
    transition: opacity 0.15s ease-in;
}

.cx-loading--block {
    background: rgb(255, 255, 255);
    position: absolute;
    transform: translateZ(0px) translateZ(0px);
    z-index: 9002;
}

.cx-loading--block .cx-loading__container {
    z-index: 9004;
}

.cx-loading--hidden .cx-loading__mask,
.cx-loading--hidden.cx-loading--block {
    opacity: 0;
    top: -9999px;
}

.cx-loading--block,
.cx-loading__mask {
    height: 100%;
    left: 0px;
    top: 0px;
    width: 100%;
}

.cx-loading--block .cx-loading__container {
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
}

.cx-loading__mask {
    background-color: rgba(255, 255, 255, 0.9);
    position: absolute;
}

.cx-loading__spinner {
    animation: 2s linear 0s infinite normal none running cx-loading-rotate;
    height: 32px;
    position: relative;
    transform-origin: center center;
    width: 32px;
}

.cx-loading__spinner.cx-loading__spinner--large {
    height: 64px;
    width: 64px;
}

.cx-loading__spinner-path {
    animation: 1.5s ease-in-out 0s infinite normal none running cx-loading-dash, 6s ease-in-out 0s infinite normal none running cx-loading-color;
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -10;
    stroke-linecap: round;
    transform: translateZ(0px) translateZ(0px);
}

@-webkit-keyframes cx-loading-rotate {
    100% {
        transform: rotate(1turn);
    }
}

@keyframes cx-loading-rotate {
    100% {
        transform: rotate(1turn);
    }
}

@-webkit-keyframes cx-loading-dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35px;
    }

    100% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -124px;
    }
}

@keyframes cx-loading-dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35px;
    }

    100% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -124px;
    }
}

@media screen and (max-width: 480px) {
    .cx-widget.cx-widget--visible {
        width: 100%;
    }
}

.grid-view__main>.grid-view__section--help>.grid-view__help-section>.grid-view__help-link {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    display: block;
    font-weight: 700;
    padding: 1rem;
    text-align: center;
    text-decoration: none;
}

@media (min-width: 1024px) {
    .grid-view__main>.grid-view__section--help>.grid-view__help-section>.grid-view__help-link {
        border: none;
        font-weight: 400;
        margin-top: 1.5rem;
        padding: 0px;
        text-align: start;
    }
}

.grid-view__main>.grid-view__section--help>.grid-view__help-section {
    width: 100%;
}

@media (min-width: 1024px) {
    .grid-view__main>.grid-view__section--help>.grid-view__help-section {
        width: fit-content;
    }
}

.andes-thumbnail--16 {
    height: 14px;
    width: 14px;
}

.andes-thumbnail--16,
.andes-thumbnail--24 {
    align-items: center;
    border: 1px solid var(--andes-thumbnail-color-border-default, rgba(0, 0, 0, .1));
    display: flex;
    justify-content: center;
}

.andes-thumbnail--24 {
    height: 22px;
    width: 22px;
}

.andes-thumbnail--32 {
    height: 30px;
    width: 30px;
}

.andes-thumbnail--32,
.andes-thumbnail--40 {
    align-items: center;
    border: 1px solid var(--andes-thumbnail-color-border-default, rgba(0, 0, 0, .1));
    display: flex;
    justify-content: center;
}

.andes-thumbnail--40 {
    height: 38px;
    width: 38px;
}

.andes-thumbnail--48 {
    height: 46px;
    width: 46px;
}

.andes-thumbnail--48,
.andes-thumbnail--56 {
    align-items: center;
    border: 1px solid var(--andes-thumbnail-color-border-default, rgba(0, 0, 0, .1));
    display: flex;
    justify-content: center;
}

.andes-thumbnail--56 {
    height: 54px;
    width: 54px;
}

.andes-thumbnail--64 {
    height: 62px;
    width: 62px;
}

.andes-thumbnail--64,
.andes-thumbnail--72 {
    align-items: center;
    border: 1px solid var(--andes-thumbnail-color-border-default, rgba(0, 0, 0, .1));
    display: flex;
    justify-content: center;
}

.andes-thumbnail--72 {
    height: 70px;
    width: 70px;
}

.andes-thumbnail--80 {
    height: 78px;
    width: 78px;
}

.andes-thumbnail--80,
.andes-thumbnail--96 {
    align-items: center;
    border: 1px solid var(--andes-thumbnail-color-border-default, rgba(0, 0, 0, .1));
    display: flex;
    justify-content: center;
}

.andes-thumbnail--96 {
    height: 94px;
    width: 94px;
}

.andes-thumbnail {
    box-sizing: initial;
    color: rgba(0, 0, 0, 0.9);
    font-family: "Proxima Nova", -apple-system, Roboto, Arial, sans-serif;
    font-weight: 400;
    line-height: 1;
}

.andes-thumbnail.andes-thumbnail--16 {
    font-size: 8px;
}

.andes-thumbnail.andes-thumbnail--24 {
    font-size: 11px;
}

.andes-thumbnail.andes-thumbnail--32 {
    font-size: 14px;
}

.andes-thumbnail.andes-thumbnail--40 {
    font-size: 16px;
}

.andes-thumbnail.andes-thumbnail--48 {
    font-size: 20px;
}

.andes-thumbnail.andes-thumbnail--56 {
    font-size: 24px;
}

.andes-thumbnail.andes-thumbnail--64 {
    font-size: 28px;
}

.andes-thumbnail.andes-thumbnail--72 {
    font-size: 32px;
}

.andes-thumbnail.andes-thumbnail--80,
.andes-thumbnail.andes-thumbnail--96 {
    font-size: 36px;
}

.andes-thumbnail>img {
    height: auto;
    max-width: 100%;
    width: auto;
}

.andes-thumbnail__image {
    background-color: var(--andes-thumbnail-image-color-fill-default, #fff);
}

.andes-thumbnail__image--disabled img {
    opacity: 0.4;
}

.andes-thumbnail--circle {
    border-radius: 50%;
    overflow: hidden;
}

.andes-thumbnail--square {
    overflow: hidden;
}

.andes-thumbnail--square.andes-thumbnail--16,
.andes-thumbnail--square.andes-thumbnail--24,
.andes-thumbnail--square.andes-thumbnail--32 {
    border-radius: 3px;
}

.andes-thumbnail--square.andes-thumbnail--40,
.andes-thumbnail--square.andes-thumbnail--48,
.andes-thumbnail--square.andes-thumbnail--56,
.andes-thumbnail--square.andes-thumbnail--64 {
    border-radius: 4px;
}

.andes-thumbnail--square.andes-thumbnail--72,
.andes-thumbnail--square.andes-thumbnail--80 {
    border-radius: 5px;
}

.andes-thumbnail--square.andes-thumbnail--96 {
    border-radius: 6px;
}

.andes-thumbnail__badge {
    border: 0px;
}

.andes-thumbnail--64.andes-thumbnail__badge-gray,
.andes-thumbnail--72.andes-thumbnail__badge-gray,
.andes-thumbnail--80.andes-thumbnail__badge-gray {
    border: 3px solid rgb(191, 191, 191);
    box-sizing: border-box;
    color: rgb(191, 191, 191);
}

.andes-thumbnail--24.andes-thumbnail__badge-gray,
.andes-thumbnail--32.andes-thumbnail__badge-gray,
.andes-thumbnail--40.andes-thumbnail__badge-gray,
.andes-thumbnail--48.andes-thumbnail__badge-gray,
.andes-thumbnail--56.andes-thumbnail__badge-gray {
    border: 2px solid rgb(191, 191, 191);
    box-sizing: border-box;
    color: rgb(191, 191, 191);
}

.andes-thumbnail__badge-gray svg {
    color: rgb(191, 191, 191);
}

.andes-thumbnail--64.andes-thumbnail__badge-neutral,
.andes-thumbnail--72.andes-thumbnail__badge-neutral,
.andes-thumbnail--80.andes-thumbnail__badge-neutral {
    border: 3px solid rgb(191, 191, 191);
    box-sizing: border-box;
    color: rgb(191, 191, 191);
}

.andes-thumbnail--24.andes-thumbnail__badge-neutral,
.andes-thumbnail--32.andes-thumbnail__badge-neutral,
.andes-thumbnail--40.andes-thumbnail__badge-neutral,
.andes-thumbnail--48.andes-thumbnail__badge-neutral,
.andes-thumbnail--56.andes-thumbnail__badge-neutral {
    border: 2px solid rgb(191, 191, 191);
    box-sizing: border-box;
    color: rgb(191, 191, 191);
}

.andes-thumbnail__badge-neutral svg {
    color: rgb(191, 191, 191);
}

.andes-thumbnail--64.andes-thumbnail__badge-accent,
.andes-thumbnail--72.andes-thumbnail__badge-accent,
.andes-thumbnail--80.andes-thumbnail__badge-accent {
    border: 3px solid var(--andes-thumbnail-badge-color-border-informative, var(--andes-color-blue-500, #3483fa));
    box-sizing: border-box;
    color: var(--andes-thumbnail-badge-color-text-informative, var(--andes-color-blue-500, #3483fa));
}

.andes-thumbnail--24.andes-thumbnail__badge-accent,
.andes-thumbnail--32.andes-thumbnail__badge-accent,
.andes-thumbnail--40.andes-thumbnail__badge-accent,
.andes-thumbnail--48.andes-thumbnail__badge-accent,
.andes-thumbnail--56.andes-thumbnail__badge-accent {
    border: 2px solid var(--andes-thumbnail-badge-color-border-informative, var(--andes-color-blue-500, #3483fa));
    box-sizing: border-box;
    color: var(--andes-thumbnail-badge-color-text-informative, var(--andes-color-blue-500, #3483fa));
}

.andes-thumbnail__badge-accent svg {
    color: var(--andes-thumbnail-badge-color-icon-informative, var(--andes-color-blue-500, #3483fa));
}

.andes-thumbnail--64.andes-thumbnail__badge-informative,
.andes-thumbnail--72.andes-thumbnail__badge-informative,
.andes-thumbnail--80.andes-thumbnail__badge-informative {
    border: 3px solid var(--andes-thumbnail-badge-color-border-informative, var(--andes-color-blue-500, #3483fa));
    box-sizing: border-box;
    color: var(--andes-thumbnail-badge-color-text-informative, var(--andes-color-blue-500, #3483fa));
}

.andes-thumbnail--24.andes-thumbnail__badge-informative,
.andes-thumbnail--32.andes-thumbnail__badge-informative,
.andes-thumbnail--40.andes-thumbnail__badge-informative,
.andes-thumbnail--48.andes-thumbnail__badge-informative,
.andes-thumbnail--56.andes-thumbnail__badge-informative {
    border: 2px solid var(--andes-thumbnail-badge-color-border-informative, var(--andes-color-blue-500, #3483fa));
    box-sizing: border-box;
    color: var(--andes-thumbnail-badge-color-text-informative, var(--andes-color-blue-500, #3483fa));
}

.andes-thumbnail__badge-informative svg {
    color: var(--andes-thumbnail-badge-color-icon-informative, var(--andes-color-blue-500, #3483fa));
}

.andes-thumbnail--64.andes-thumbnail__badge-green,
.andes-thumbnail--72.andes-thumbnail__badge-green,
.andes-thumbnail--80.andes-thumbnail__badge-green {
    border: 3px solid var(--andes-thumbnail-badge-color-border-positive, #00a650);
    box-sizing: border-box;
    color: var(--andes-thumbnail-badge-color-text-positive, #00a650);
}

.andes-thumbnail--24.andes-thumbnail__badge-green,
.andes-thumbnail--32.andes-thumbnail__badge-green,
.andes-thumbnail--40.andes-thumbnail__badge-green,
.andes-thumbnail--48.andes-thumbnail__badge-green,
.andes-thumbnail--56.andes-thumbnail__badge-green {
    border: 2px solid var(--andes-thumbnail-badge-color-border-positive, #00a650);
    box-sizing: border-box;
    color: var(--andes-thumbnail-badge-color-text-positive, #00a650);
}

.andes-thumbnail__badge-green svg {
    color: var(--andes-thumbnail-badge-color-icon-positive, #00a650);
}

.andes-thumbnail--64.andes-thumbnail__badge-positive,
.andes-thumbnail--72.andes-thumbnail__badge-positive,
.andes-thumbnail--80.andes-thumbnail__badge-positive {
    border: 3px solid var(--andes-thumbnail-badge-color-border-positive, #00a650);
    box-sizing: border-box;
    color: var(--andes-thumbnail-badge-color-text-positive, #00a650);
}

.andes-thumbnail--24.andes-thumbnail__badge-positive,
.andes-thumbnail--32.andes-thumbnail__badge-positive,
.andes-thumbnail--40.andes-thumbnail__badge-positive,
.andes-thumbnail--48.andes-thumbnail__badge-positive,
.andes-thumbnail--56.andes-thumbnail__badge-positive {
    border: 2px solid var(--andes-thumbnail-badge-color-border-positive, #00a650);
    box-sizing: border-box;
    color: var(--andes-thumbnail-badge-color-text-positive, #00a650);
}

.andes-thumbnail__badge-positive svg {
    color: var(--andes-thumbnail-badge-color-icon-positive, #00a650);
}

.andes-thumbnail--64.andes-thumbnail__badge-orange,
.andes-thumbnail--72.andes-thumbnail__badge-orange,
.andes-thumbnail--80.andes-thumbnail__badge-orange {
    border: 3px solid var(--andes-thumbnail-badge-color-border-caution, #f73);
    box-sizing: border-box;
    color: var(--andes-thumbnail-badge-color-text-caution, #f73);
}

.andes-thumbnail--24.andes-thumbnail__badge-orange,
.andes-thumbnail--32.andes-thumbnail__badge-orange,
.andes-thumbnail--40.andes-thumbnail__badge-orange,
.andes-thumbnail--48.andes-thumbnail__badge-orange,
.andes-thumbnail--56.andes-thumbnail__badge-orange {
    border: 2px solid var(--andes-thumbnail-badge-color-border-caution, #f73);
    box-sizing: border-box;
    color: var(--andes-thumbnail-badge-color-text-caution, #f73);
}

.andes-thumbnail__badge-orange svg {
    color: var(--andes-thumbnail-badge-color-icon-caution, #f73);
}

.andes-thumbnail--64.andes-thumbnail__badge-caution,
.andes-thumbnail--72.andes-thumbnail__badge-caution,
.andes-thumbnail--80.andes-thumbnail__badge-caution {
    border: 3px solid var(--andes-thumbnail-badge-color-border-caution, #f73);
    box-sizing: border-box;
    color: var(--andes-thumbnail-badge-color-text-caution, #f73);
}

.andes-thumbnail--24.andes-thumbnail__badge-caution,
.andes-thumbnail--32.andes-thumbnail__badge-caution,
.andes-thumbnail--40.andes-thumbnail__badge-caution,
.andes-thumbnail--48.andes-thumbnail__badge-caution,
.andes-thumbnail--56.andes-thumbnail__badge-caution {
    border: 2px solid var(--andes-thumbnail-badge-color-border-caution, #f73);
    box-sizing: border-box;
    color: var(--andes-thumbnail-badge-color-text-caution, #f73);
}

.andes-thumbnail__badge-caution svg {
    color: var(--andes-thumbnail-badge-color-icon-caution, #f73);
}

.andes-thumbnail--64.andes-thumbnail__badge-red,
.andes-thumbnail--72.andes-thumbnail__badge-red,
.andes-thumbnail--80.andes-thumbnail__badge-red {
    border: 3px solid var(--andes-thumbnail-badge-color-border-negative, #f23d4f);
    box-sizing: border-box;
    color: var(--andes-thumbnail-badge-color-text-negative, #f23d4f);
}

.andes-thumbnail--24.andes-thumbnail__badge-red,
.andes-thumbnail--32.andes-thumbnail__badge-red,
.andes-thumbnail--40.andes-thumbnail__badge-red,
.andes-thumbnail--48.andes-thumbnail__badge-red,
.andes-thumbnail--56.andes-thumbnail__badge-red {
    border: 2px solid var(--andes-thumbnail-badge-color-border-negative, #f23d4f);
    box-sizing: border-box;
    color: var(--andes-thumbnail-badge-color-text-negative, #f23d4f);
}

.andes-thumbnail__badge-red svg {
    color: var(--andes-thumbnail-badge-color-icon-negative, #f23d4f);
}

.andes-thumbnail--64.andes-thumbnail__badge-negative,
.andes-thumbnail--72.andes-thumbnail__badge-negative,
.andes-thumbnail--80.andes-thumbnail__badge-negative {
    border: 3px solid var(--andes-thumbnail-badge-color-border-negative, #f23d4f);
    box-sizing: border-box;
    color: var(--andes-thumbnail-badge-color-text-negative, #f23d4f);
}

.andes-thumbnail--24.andes-thumbnail__badge-negative,
.andes-thumbnail--32.andes-thumbnail__badge-negative,
.andes-thumbnail--40.andes-thumbnail__badge-negative,
.andes-thumbnail--48.andes-thumbnail__badge-negative,
.andes-thumbnail--56.andes-thumbnail__badge-negative {
    border: 2px solid var(--andes-thumbnail-badge-color-border-negative, #f23d4f);
    box-sizing: border-box;
    color: var(--andes-thumbnail-badge-color-text-negative, #f23d4f);
}

.andes-thumbnail__badge-negative svg {
    color: var(--andes-thumbnail-badge-color-icon-negative, #f23d4f);
}

.andes-thumbnail--color-on-background .andes-thumbnail__badge-accent,
.andes-thumbnail--color-on-background .andes-thumbnail__badge-informative {
    border-color: var(--andes-thumbnail-badge-color-border-informative-on-complex-bg, var(--andes-color-blue-600, #2968c8));
}

.andes-thumbnail--color-on-background .andes-thumbnail__badge-green,
.andes-thumbnail--color-on-background .andes-thumbnail__badge-positive {
    border-color: var(--andes-thumbnail-badge-color-border-positive-on-complex-bg, #008744);
}

.andes-thumbnail--color-on-background .andes-thumbnail__badge-caution,
.andes-thumbnail--color-on-background .andes-thumbnail__badge-orange {
    border-color: var(--andes-thumbnail-badge-color-border-caution-on-complex-bg, #e6540b);
}

.andes-thumbnail--color-on-background .andes-thumbnail__badge-negative,
.andes-thumbnail--color-on-background .andes-thumbnail__badge-red {
    border-color: var(--andes-thumbnail-badge-color-border-negative-on-complex-bg, #d12440);
}

.andes-thumbnail__badge .andes-badge {
    position: relative;
}

.andes-thumbnail--24+.andes-badge--dot {
    left: 16px;
    top: -16px;
}

.andes-thumbnail--32+.andes-badge--dot {
    left: 22px;
    top: -16px;
}

.andes-thumbnail--40+.andes-badge--pill {
    left: 24px;
    top: -16px;
}

.andes-thumbnail--48+.andes-badge--pill {
    left: 32px;
    top: -16px;
}

.andes-thumbnail--56+.andes-badge--pill {
    left: 40px;
    top: -16px;
}

.andes-thumbnail--64+.andes-badge--pill {
    left: 40px;
    top: -24px;
}

.andes-thumbnail--72+.andes-badge--pill {
    left: 48px;
    top: -24px;
}

.andes-thumbnail--80+.andes-badge--pill {
    left: 56px;
    top: -24px;
}

.andes-thumbnail--mute,
.andes-thumbnail--neutral {
    background-color: var(--andes-thumbnail-mute-color-fill-default, #fff);
    color: var(--andes-thumbnail-mute-color-text-default, rgba(0, 0, 0, .9));
}

.andes-thumbnail--mute-disabled,
.andes-thumbnail--neutral-disabled {
    background-color: var(--andes-thumbnail-mute-color-fill-disabled, #fff);
    color: var(--andes-thumbnail-mute-color-text-disabled, rgba(0, 0, 0, .25));
}

.andes-thumbnail--loud {
    background-color: var(--andes-thumbnail-loud-color-fill-default, var(--andes-color-blue-500, #3483fa));
    border-color: var(--andes-thumbnail-loud-color-fill-default, var(--andes-color-blue-500, #3483fa));
    color: var(--andes-thumbnail-loud-color-text-default, #fff);
}

.andes-thumbnail--quiet {
    background-color: var(--andes-thumbnail-quiet-color-fill-default, var(--andes-color-blue-100, rgba(65, 137, 230, .1)));
    border-color: var(--andes-thumbnail-quiet-color-fill-default, var(--andes-color-blue-100, rgba(65, 137, 230, .1)));
    color: var(--andes-thumbnail-quiet-color-text-default, var(--andes-color-blue-500, #3483fa));
}

.andes-thumbnail--loud-disabled {
    background-color: var(--andes-thumbnail-loud-color-fill-disabled, rgba(0, 0, 0, .1));
    border-color: transparent;
    color: var(--andes-thumbnail-loud-color-text-disabled, rgba(0, 0, 0, .25));
}

.andes-thumbnail--quiet-disabled {
    background-color: var(--andes-thumbnail-quiet-color-fill-disabled, rgba(0, 0, 0, .1));
    border-color: transparent;
    color: var(--andes-thumbnail-quiet-color-text-disabled, rgba(0, 0, 0, .25));
}

.andes-thumbnail__icon.andes-thumbnail--loud {
    color: var(--andes-thumbnail-loud-color-icon-default, #fff);
}

.andes-thumbnail__icon.andes-thumbnail--loud-disabled {
    color: var(--andes-thumbnail-loud-color-icon-disabled, rgba(0, 0, 0, .25));
}

.andes-thumbnail__icon.andes-thumbnail--quiet {
    color: var(--andes-thumbnail-quiet-color-icon-default, var(--andes-color-blue-500, #3483fa));
}

.andes-thumbnail__icon.andes-thumbnail--quiet-disabled {
    color: var(--andes-thumbnail-quiet-color-icon-disabled, rgba(0, 0, 0, .25));
}

.andes-thumbnail__icon.andes-thumbnail--mute,
.andes-thumbnail__icon.andes-thumbnail--neutral {
    color: var(--andes-thumbnail-mute-color-icon-default, rgba(0, 0, 0, .9));
}

.andes-thumbnail__icon.andes-thumbnail--mute-disabled,
.andes-thumbnail__icon.andes-thumbnail--neutral-disabled {
    color: var(--andes-thumbnail-mute-color-icon-disabled, rgba(0, 0, 0, .25));
}

.andes-thumbnail-multiple--grid {
    place-content: space-between;
    background-color: var(--andes-thumbnail-grid-color-fill, rgba(0, 0, 0, .04));
    border-radius: 5px;
    box-sizing: border-box;
    color: rgba(0, 0, 0, 0.55);
    display: flex;
    flex-wrap: wrap;
    font-family: "Proxima Nova", -apple-system, Roboto, Arial, sans-serif;
}

.andes-thumbnail-multiple--grid:nth-child(3) {
    flex-grow: 2;
}

.andes-thumbnail-multiple--grid-40 {
    height: 40px;
    width: 40px;
}

.andes-thumbnail-multiple--grid-40 .andes-thumbnail-multiple--overflow {
    background-color: var(--andes-thumbnail-grid-overflow-color-fill, #ededed);
    border-color: var(--andes-thumbnail-grid-overflow-color-border, rgba(0, 0, 0, .1));
    color: var(--andes-thumbnail-grid-overflow-color-text, rgba(0, 0, 0, .55));
}

.andes-thumbnail-multiple--grid-48 {
    height: 48px;
    width: 48px;
}

.andes-thumbnail-multiple--grid-48 .andes-thumbnail-multiple--overflow {
    background-color: var(--andes-thumbnail-grid-overflow-color-fill, #ededed);
    border-color: var(--andes-thumbnail-grid-overflow-color-border, rgba(0, 0, 0, .1));
    color: var(--andes-thumbnail-grid-overflow-color-text, rgba(0, 0, 0, .55));
}

.andes-thumbnail-multiple--grid-56 {
    height: 56px;
    width: 56px;
}

.andes-thumbnail-multiple--grid-56 .andes-thumbnail-multiple--overflow {
    background-color: var(--andes-thumbnail-grid-overflow-color-fill, #ededed);
    border-color: var(--andes-thumbnail-grid-overflow-color-border, rgba(0, 0, 0, .1));
    color: var(--andes-thumbnail-grid-overflow-color-text, rgba(0, 0, 0, .55));
}

.andes-thumbnail-multiple--grid-64 {
    height: 64px;
    width: 64px;
}

.andes-thumbnail-multiple--grid-64 .andes-thumbnail-multiple--overflow {
    background-color: var(--andes-thumbnail-grid-overflow-color-fill, #ededed);
    border-color: var(--andes-thumbnail-grid-overflow-color-border, rgba(0, 0, 0, .1));
    color: var(--andes-thumbnail-grid-overflow-color-text, rgba(0, 0, 0, .55));
}

.andes-thumbnail-multiple--grid-72 {
    height: 72px;
    width: 72px;
}

.andes-thumbnail-multiple--grid-72 .andes-thumbnail-multiple--overflow {
    background-color: var(--andes-thumbnail-grid-overflow-color-fill, #ededed);
    border-color: var(--andes-thumbnail-grid-overflow-color-border, rgba(0, 0, 0, .1));
    color: var(--andes-thumbnail-grid-overflow-color-text, rgba(0, 0, 0, .55));
}

.andes-thumbnail-multiple--grid-80 {
    height: 80px;
    width: 80px;
}

.andes-thumbnail-multiple--grid-80 .andes-thumbnail-multiple--overflow {
    background-color: var(--andes-thumbnail-grid-overflow-color-fill, #ededed);
    border-color: var(--andes-thumbnail-grid-overflow-color-border, rgba(0, 0, 0, .1));
    color: var(--andes-thumbnail-grid-overflow-color-text, rgba(0, 0, 0, .55));
}

.andes-thumbnail-multiple--grid-48 {
    place-content: space-around;
}

.andes-thumbnail-multiple--grid-40,
.andes-thumbnail-multiple--grid-48,
.andes-thumbnail-multiple--grid-56 {
    border-radius: 4px;
    padding: 3px;
}

.andes-thumbnail-multiple--grid-64 {
    border-radius: 4px;
    padding: 4px;
}

.andes-thumbnail-multiple--grid-72 {
    padding: 3px;
}

.andes-thumbnail-multiple--grid-80 {
    padding: 4px;
}

.andes-thumbnail-multiple--stacked-24 {
    display: flex;
    flex-wrap: wrap;
    height: 24px;
    width: auto;
}

.andes-thumbnail-multiple--stacked-24 .andes-thumbnail-multiple--overflow {
    background-color: var(--andes-thumbnail-stacked-overflow-color-fill, #ededed);
    border-color: var(--andes-thumbnail-stacked-overflow-color-border, rgba(0, 0, 0, .1));
    color: var(--andes-thumbnail-stacked-overflow-color-text, rgba(0, 0, 0, .55));
}

.andes-thumbnail-multiple--stacked-32 {
    display: flex;
    flex-wrap: wrap;
    height: 32px;
    width: auto;
}

.andes-thumbnail-multiple--stacked-32 .andes-thumbnail-multiple--overflow {
    background-color: var(--andes-thumbnail-stacked-overflow-color-fill, #ededed);
    border-color: var(--andes-thumbnail-stacked-overflow-color-border, rgba(0, 0, 0, .1));
    color: var(--andes-thumbnail-stacked-overflow-color-text, rgba(0, 0, 0, .55));
}

.andes-thumbnail-multiple--stacked-40 {
    display: flex;
    flex-wrap: wrap;
    height: 40px;
    width: auto;
}

.andes-thumbnail-multiple--stacked-40 .andes-thumbnail-multiple--overflow {
    background-color: var(--andes-thumbnail-stacked-overflow-color-fill, #ededed);
    border-color: var(--andes-thumbnail-stacked-overflow-color-border, rgba(0, 0, 0, .1));
    color: var(--andes-thumbnail-stacked-overflow-color-text, rgba(0, 0, 0, .55));
}

.andes-thumbnail-multiple--stacked-48 {
    display: flex;
    flex-wrap: wrap;
    height: 48px;
    width: auto;
}

.andes-thumbnail-multiple--stacked-48 .andes-thumbnail-multiple--overflow {
    background-color: var(--andes-thumbnail-stacked-overflow-color-fill, #ededed);
    border-color: var(--andes-thumbnail-stacked-overflow-color-border, rgba(0, 0, 0, .1));
    color: var(--andes-thumbnail-stacked-overflow-color-text, rgba(0, 0, 0, .55));
}

.andes-thumbnail-multiple--stacked-56 {
    display: flex;
    flex-wrap: wrap;
    height: 56px;
    width: auto;
}

.andes-thumbnail-multiple--stacked-56 .andes-thumbnail-multiple--overflow {
    background-color: var(--andes-thumbnail-stacked-overflow-color-fill, #ededed);
    border-color: var(--andes-thumbnail-stacked-overflow-color-border, rgba(0, 0, 0, .1));
    color: var(--andes-thumbnail-stacked-overflow-color-text, rgba(0, 0, 0, .55));
}

.andes-thumbnail-multiple--stacked-64 {
    display: flex;
    flex-wrap: wrap;
    height: 64px;
    width: auto;
}

.andes-thumbnail-multiple--stacked-64 .andes-thumbnail-multiple--overflow {
    background-color: var(--andes-thumbnail-stacked-overflow-color-fill, #ededed);
    border-color: var(--andes-thumbnail-stacked-overflow-color-border, rgba(0, 0, 0, .1));
    color: var(--andes-thumbnail-stacked-overflow-color-text, rgba(0, 0, 0, .55));
}

.andes-thumbnail-multiple--stacked-72 {
    display: flex;
    flex-wrap: wrap;
    height: 72px;
    width: auto;
}

.andes-thumbnail-multiple--stacked-72 .andes-thumbnail-multiple--overflow {
    background-color: var(--andes-thumbnail-stacked-overflow-color-fill, #ededed);
    border-color: var(--andes-thumbnail-stacked-overflow-color-border, rgba(0, 0, 0, .1));
    color: var(--andes-thumbnail-stacked-overflow-color-text, rgba(0, 0, 0, .55));
}

.andes-thumbnail-multiple--stacked-80 {
    display: flex;
    flex-wrap: wrap;
    height: 80px;
    width: auto;
}

.andes-thumbnail-multiple--stacked-80 .andes-thumbnail-multiple--overflow {
    background-color: var(--andes-thumbnail-stacked-overflow-color-fill, #ededed);
    border-color: var(--andes-thumbnail-stacked-overflow-color-border, rgba(0, 0, 0, .1));
    color: var(--andes-thumbnail-stacked-overflow-color-text, rgba(0, 0, 0, .55));
}

.andes-thumbnail-multiple--stacked-24 .andes-thumbnail-container:not(:first-child) {
    margin-left: -6px;
}

.andes-thumbnail-multiple--stacked-32 .andes-thumbnail-container:not(:first-child) {
    margin-left: -9px;
}

.andes-thumbnail-multiple--stacked-40 .andes-thumbnail-container:not(:first-child) {
    margin-left: -12px;
}

.andes-thumbnail-multiple--stacked-48 .andes-thumbnail-container:not(:first-child) {
    margin-left: -15px;
}

.andes-thumbnail-multiple--stacked-56 .andes-thumbnail-container:not(:first-child) {
    margin-left: -18px;
}

.andes-thumbnail-multiple--stacked-64 .andes-thumbnail-container:not(:first-child) {
    margin-left: -20px;
}

.andes-thumbnail-multiple--stacked-72 .andes-thumbnail-container:not(:first-child) {
    margin-left: -22px;
}

.andes-thumbnail-multiple--stacked-80 .andes-thumbnail-container:not(:first-child) {
    margin-left: -25px;
}

.user-pill {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 1.5625rem;
    display: flex;
    grid-row: 1;
    margin: 1rem 0px;
    padding: 0.5rem;
    width: fit-content;
}

.user-pill-native {
    margin: 0px 0px 1rem;
}

.user-pill__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0px 0.75rem;
}

.user-pill__identifier {
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 0.9375rem;
    margin: 0px 0px 0.125rem;
}

.user-pill__change-user-link {
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 400;
    line-height: 0.9375rem;
    padding: 0px;
    text-decoration: none;
    width: fit-content;
}

.user-pill__avatar--disabled {
    color: rgb(155, 155, 155);
}

@media screen and (min-width: 1024px) {
    .user-pill {
        grid-row: auto;
        margin-bottom: 0px;
    }
}

.feedback-container {
    background-color: rgb(255, 255, 255);
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    left: 0px;
    position: fixed;
    text-align: center;
    top: 0px;
    width: 100%;
}

.feedback-container.feedback-container--ios {
    top: -3.125rem;
}

.feedback-container {
    opacity: 0;
    transition: opacity 1.5s 1s;
    z-index: -1;
}

.feedback-container--visible {
    opacity: 1;
    z-index: 0;
}

.asset__container {
    display: flex;
    justify-content: center;
    margin-bottom: 0.75rem;
}

.asset__container-icon {
    height: 4rem;
    width: 4rem;
}

@media (min-width: 1024px) {
    .feedback-container {
        border-radius: 0.375rem;
        position: absolute;
    }
}

.grid-view__container {
    display: flex;
    justify-content: center;
}

.grid-view__main {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto 1fr;
    min-height: calc(-48px + 100dvh);
    padding: 0px 1.25rem;
}

.grid-view__main>.andes-card--outline {
    border: none;
}

.grid-view__main-native {
    min-height: 100dvh;
}

.grid-view__section--summary {
    display: grid;
}

.grid-view__section--help {
    align-items: center;
    display: flex;
    grid-row: 4;
    justify-content: center;
}

.children-wrapper {
    display: flex;
    flex-grow: 1;
    z-index: 1;
}

@media (max-width: 1024px) {
    .hide-content {
        opacity: 0;
        transition: opacity 1.5s;
    }
}

@media screen and (min-width: 1024px) {
    .grid-view__main {
        grid-template: min-content min-content 1fr / 1fr auto;
        grid-auto-columns: auto;
        grid-auto-rows: auto;
        column-gap: 2rem;
        grid-auto-flow: column;
        margin: 3rem 0px 0px;
        min-height: unset;
    }

    .grid-view__main>.andes-card--outline {
        border: 1px solid rgba(0, 0, 0, 0.1);
    }

    .grid-view__section--summary {
        flex-direction: column;
        width: 26.125rem;
    }

    .grid-view__section--content {
        grid-row: 1 / 4;
        height: fit-content;
        max-width: 29rem;
        padding: 0px;
    }

    .grid-view__section--content .andes-card__content {
        position: relative;
    }

    .grid-view__section--headers {
        width: 26.125rem;
    }

    .grid-view__section--help {
        display: block;
        grid-row: auto;
        position: unset;
        width: unset;
    }
}

.andes-progress-indicator-circular--determinate .andes-progress-indicator-circular__svg {
    left: 0px;
    position: absolute;
    top: 0px;
    transform: rotate(-90deg);
    z-index: 1022;
}

.andes-progress-indicator-circular--determinate.andes-progress-indicator-circular--inverse .andes-progress-indicator-circular__circle-bg {
    stroke: var(--andes-progress-indicator-circular-color-fill-inverse, hsla(0, 0%, 100%, .3));
}

.andes-progress-indicator-circular--determinate .andes-progress-indicator-circular__circle {
    fill: none;
    stroke-linecap: round;
}

@media (prefers-reduced-motion: no-preference) {
    .andes-progress-indicator-circular--determinate .andes-progress-indicator-circular__circle {
        transition: stroke-dashoffset 0.15s ease-out;
    }
}

.andes-progress-indicator-circular--determinate .andes-progress-indicator-circular__circle-bg {
    fill: none;
    stroke: var(--andes-progress-indicator-circular-color-fill, #e5e5e5);
}

.andes-progress-indicator-circular--determinate .andes-progress-indicator-circular__circle--continuous {
    transition-timing-function: linear;
}

.andes-progress-indicator-circular--large .andes-progress-indicator-circular__progress,
.andes-progress-indicator-circular--large .andes-progress-indicator-circular__svg {
    height: 48px;
    stroke-width: 4px;
    width: 48px;
}

.andes-progress-indicator-circular--large .andes-progress-indicator-circular__container {
    align-items: center;
    flex-direction: column;
}

.andes-progress-indicator-circular--large .andes-progress-indicator-circular__label {
    font-size: 16px;
    margin-top: 13px;
}

.andes-progress-indicator-circular--xlarge .andes-progress-indicator-circular__progress,
.andes-progress-indicator-circular--xlarge .andes-progress-indicator-circular__svg {
    height: 64px;
    stroke-width: 4px;
    width: 64px;
}

.andes-progress-indicator-circular--xlarge .andes-progress-indicator-circular__progress .andes-progress-indicator-circular__content {
    font-size: 14px;
}

.andes-progress-indicator-circular--xlarge .andes-progress-indicator-circular__container {
    align-items: center;
    flex-direction: column;
}

.andes-progress-indicator-circular--xlarge .andes-progress-indicator-circular__label {
    font-size: 18px;
    margin-top: 13px;
}

.andes-progress-indicator-circular--inline {
    height: 100%;
    position: relative;
}

.andes-progress-indicator-circular--inline .andes-progress-indicator-circular__container {
    position: absolute;
}

.andes-progress-indicator-circular--block {
    position: absolute;
    z-index: 1021;
}

.andes-progress-indicator-circular--block,
.andes-progress-indicator-circular--fullscreen {
    align-items: center;
    inset: 0px;
    display: flex;
    height: 100%;
    justify-content: center;
    width: 100%;
}

.andes-progress-indicator-circular--fullscreen {
    background-color: rgba(255, 255, 255, 0.9);
    position: fixed;
    z-index: 1023;
}

.andes-progress-indicator-circular--xsmall .andes-progress-indicator-circular__progress,
.andes-progress-indicator-circular--xsmall .andes-progress-indicator-circular__svg {
    height: 16px;
    stroke-width: 2px;
    width: 16px;
}

.andes-progress-indicator-circular--xsmall .andes-progress-indicator-circular__container {
    align-items: center;
}

.andes-progress-indicator-circular--xsmall .andes-progress-indicator-circular__label {
    font-size: 14px;
    margin-left: 12px;
}

.andes-progress-indicator-circular--small .andes-progress-indicator-circular__progress,
.andes-progress-indicator-circular--small .andes-progress-indicator-circular__svg {
    height: 24px;
    stroke-width: 2.5px;
    width: 24px;
}

.andes-progress-indicator-circular--small .andes-progress-indicator-circular__container {
    align-items: center;
    flex-direction: column;
}

.andes-progress-indicator-circular--small .andes-progress-indicator-circular__label {
    font-size: 14px;
    margin-top: 13px;
}

@keyframes andes-button-start-width-animation {
    0% {
        width: 0px;
    }

    100% {
        width: 90%;
    }
}

@keyframes andes-button-start-width-animation-reduce-motion {
    0% {
        width: 0px;
    }

    30% {
        width: 30%;
    }

    60% {
        width: 60%;
    }

    100% {
        width: 90%;
    }
}

.andes-button:focus {
    box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--andes-color-blue-600, #2968c8), 0 0 0 5px var(--andes-color-blue-300, rgba(65, 137, 230, .3));
    outline: none;
}

.andes-button:focus-visible {
    box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--andes-color-blue-600, #2968c8), 0 0 0 5px var(--andes-color-blue-300, rgba(65, 137, 230, .3));
    outline: none;
}

.andes-button:focus:not(:focus-visible) {
    box-shadow: none;
    outline: none;
}

.andes-button {
    border-radius: 6px;
    display: inline-block;
    font-family: "Proxima Nova", -apple-system, Roboto, Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    height: 48px;
    line-height: 48px;
    padding: 0px 24px;
    text-align: center;
    width: auto;
    -webkit-font-smoothing: antialiased;
}

@media (prefers-reduced-motion: no-preference) {
    .andes-button {
        transition: background 0.18s ease-out, color;
    }
}

.andes-button:link {
    text-decoration: none;
}

.andes-button,
.andes-button * {
    box-sizing: border-box;
}

.andes-button svg {
    display: inline-block;
    max-height: 1.125em;
    max-width: 1.125em;
    vertical-align: middle;
}

.andes-button--full-width {
    display: block;
    width: 100%;
}

.andes-button:disabled,
.andes-button[aria-disabled="true"],
.andes-button[disabled] {
    pointer-events: none;
}

.andes-button--loading {
    overflow-y: hidden;
    position: relative;
}

.andes-button--loading::after,
.andes-button--loading::before {
    background-color: var(--andes-button-loud-color-fill-progress, var(--andes-color-blue-600, #2968c8));
}

.andes-button--loading::after,
.andes-button--loading::before {
    border-radius: 0.222222em;
    box-sizing: initial;
    content: "";
    height: 100%;
    left: 0px;
    margin: -0.0555556em;
    padding: 0.0555556em;
    position: absolute;
    top: 0px;
    transform: scaleX(0);
    transform-origin: left center;
    width: 100%;
}

.andes-button--loading .andes-progress-indicator-circular {
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: center;
    left: 0px;
    position: absolute;
    top: 0px;
    width: 100%;
}

.andes-button--loading .andes-progress-indicator-circular__container {
    align-items: center;
    display: inline-flex;
    justify-content: center;
    position: relative;
    width: 100%;
}

@media (prefers-reduced-motion: no-preference) {
    .andes-button--loading .andes-progress-indicator-circular__container {
        animation: 0.18s ease 0s 1 normal forwards running translateInButtonSpinner;
    }
}

.andes-button--loading .andes-progress-indicator-circular__progress {
    display: block;
}

.andes-button--loading .andes-progress-indicator-circular__progress div {
    align-items: center;
    display: flex;
    justify-content: center;
}

.andes-button--loading .andes-progress-indicator-circular__progress .andes-progress-indicator-circular__svg {
    position: relative;
    stroke-width: 6px;
    top: 3px;
}

.andes-button--loading .andes-button__content {
    display: flex;
    opacity: 0;
}

@media (prefers-reduced-motion: no-preference) {
    .andes-button--loading .andes-button__content {
        animation: 0.2s ease 0s 1 normal forwards running translateOutButtonSpinner;
    }
}

.andes-button--loading-complete {
    overflow-y: hidden;
}

.andes-button--loading-complete .andes-button__content {
    margin: 0px;
    max-height: none;
    opacity: 1;
}

@media (prefers-reduced-motion: no-preference) {
    .andes-button--loading-complete .andes-button__content {
        animation: 0.2s ease 0s 1 normal forwards running translateInButtonSpinnerComplete;
    }
}

.andes-button__content {
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: center;
}

.andes-button__content * {
    display: block;
    float: left;
}

.andes-button__text {
    flex: 1 1 0%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.andes-button__text+svg,
svg+.andes-button__text {
    margin-left: 12px;
}

@keyframes translateInButtonSpinner {
    0% {
        opacity: 0;
        transform: translateY(60%);
    }

    40% {
        opacity: 0.4;
        transform: translateY(50%);
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

@keyframes translateOutButtonSpinner {
    0% {
        opacity: 1;
    }

    80% {
        opacity: 0.5;
        transform: translateY(-30%);
    }

    90% {
        transform: translateY(-40%);
    }

    100% {
        opacity: 0;
        transform: translateY(-60%);
    }
}

@keyframes translateInButtonSpinnerComplete {
    0% {
        opacity: 0;
        transform: translateY(65%);
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

.andes-button--medium {
    border-radius: 5px;
    font-size: 14px;
    height: 32px;
    line-height: 32px;
    padding: 0px 12px;
}

.andes-button--medium .andes-button__text+svg,
.andes-button--medium svg+.andes-button__text {
    margin-left: 8px;
}

.andes-button--medium .andes-progress-indicator-circular__progress .andes-progress-indicator-circular__svg {
    top: 0px;
}

.andes-button--medium.andes-button--loading-complete .andes-button__content {
    animation: 0.2s ease 0s 1 normal forwards running translateInButtonSpinnerCompleteMedium, 0.2s ease 0s 1 normal running fadeIn;
}

@keyframes translateInButtonSpinnerCompleteMedium {
    0% {
        transform: translateY(50%);
    }

    100% {
        transform: translateY(calc(-50% + 13px));
    }
}

.andes-button--small {
    border-radius: 4px;
    font-size: 12px;
    height: 24px;
    line-height: 24px;
    padding: 0px 8px;
}

.andes-button--small .andes-progress-indicator-circular__progress .andes-progress-indicator-circular__svg {
    top: 1.5px;
}

.andes-button--small .andes-button__text {
    margin: 0px;
}

.andes-button--small.andes-button--loading-complete .andes-button__content {
    animation: 0.2s ease 0s 1 normal forwards running translateInButtonSpinnerCompleteSmall, 0.2s ease 0s 1 normal running fadeIn;
}

@keyframes translateInButtonSpinnerCompleteSmall {
    0% {
        transform: translateY(50%);
    }

    100% {
        transform: translateY(calc(-50% + 10px));
    }
}

.andes-button--loud:hover {
    background-color: var(--andes-button-loud-color-fill-default, var(--andes-color-blue-500, #3483fa));
    border-color: transparent;
    color: var(--andes-button-loud-color-text-default, #fff);
}

.andes-button--loud:hover path[stroke]:not([stroke="none"]),
.andes-button--loud:hover svg[stroke]:not([stroke="none"]) {
    stroke: var(--andes-button-icon-loud-color-icon-default, #fff) !important;
}

.andes-button--loud:hover path[fill]:not([fill="none"]),
.andes-button--loud:hover svg[fill]:not([fill="none"]) {
    fill: var(--andes-button-icon-loud-color-icon-default, #fff) !important;
}

.andes-button--loud.andes-button--color-on-background:hover {
    background-color: var(--andes-button-loud-color-fill-default-on-complex-bg, rgba(0, 0, 0, .45));
    border-color: transparent;
    color: var(--andes-button-loud-color-text-default-on-complex-bg, #fff);
}

.andes-button--loud.andes-button--color-on-background:hover path[stroke]:not([stroke="none"]),
.andes-button--loud.andes-button--color-on-background:hover svg[stroke]:not([stroke="none"]) {
    stroke: var(--andes-button-icon-loud-color-icon-default-on-complex-bg, #fff) !important;
}

.andes-button--loud.andes-button--color-on-background:hover path[fill]:not([fill="none"]),
.andes-button--loud.andes-button--color-on-background:hover svg[fill]:not([fill="none"]) {
    fill: var(--andes-button-icon-loud-color-icon-default-on-complex-bg, #fff) !important;
}

@media (min-width: 768px) {

    .andes-button--loud:hover,
    .andes-button--loud:link:hover,
    .andes-button--loud:visited:hover {
        background-color: var(--andes-button-loud-color-fill-hover, var(--andes-color-blue-600, #2968c8));
        border-color: transparent;
        color: var(--andes-button-loud-color-text-default, #fff);
    }

    .andes-button--loud:hover path[stroke]:not([stroke="none"]),
    .andes-button--loud:hover svg[stroke]:not([stroke="none"]),
    .andes-button--loud:link:hover path[stroke]:not([stroke="none"]),
    .andes-button--loud:link:hover svg[stroke]:not([stroke="none"]),
    .andes-button--loud:visited:hover path[stroke]:not([stroke="none"]),
    .andes-button--loud:visited:hover svg[stroke]:not([stroke="none"]) {
        stroke: var(--andes-button-icon-loud-color-icon-default, #fff) !important;
    }

    .andes-button--loud:hover path[fill]:not([fill="none"]),
    .andes-button--loud:hover svg[fill]:not([fill="none"]),
    .andes-button--loud:link:hover path[fill]:not([fill="none"]),
    .andes-button--loud:link:hover svg[fill]:not([fill="none"]),
    .andes-button--loud:visited:hover path[fill]:not([fill="none"]),
    .andes-button--loud:visited:hover svg[fill]:not([fill="none"]) {
        fill: var(--andes-button-icon-loud-color-icon-default, #fff) !important;
    }

    .andes-button--loud.andes-button--color-on-background:hover,
    .andes-button--loud.andes-button--color-on-background:link:hover,
    .andes-button--loud.andes-button--color-on-background:visited:hover {
        background-color: var(--andes-button-loud-color-fill-hover-on-complex-bg, rgba(0, 0, 0, .55));
        border-color: transparent;
        color: var(--andes-button-loud-color-text-default-on-complex-bg, #fff);
    }

    .andes-button--loud.andes-button--color-on-background:hover path[stroke]:not([stroke="none"]),
    .andes-button--loud.andes-button--color-on-background:hover svg[stroke]:not([stroke="none"]),
    .andes-button--loud.andes-button--color-on-background:link:hover path[stroke]:not([stroke="none"]),
    .andes-button--loud.andes-button--color-on-background:link:hover svg[stroke]:not([stroke="none"]),
    .andes-button--loud.andes-button--color-on-background:visited:hover path[stroke]:not([stroke="none"]),
    .andes-button--loud.andes-button--color-on-background:visited:hover svg[stroke]:not([stroke="none"]) {
        stroke: var(--andes-button-icon-loud-color-icon-default-on-complex-bg, #fff) !important;
    }

    .andes-button--loud.andes-button--color-on-background:hover path[fill]:not([fill="none"]),
    .andes-button--loud.andes-button--color-on-background:hover svg[fill]:not([fill="none"]),
    .andes-button--loud.andes-button--color-on-background:link:hover path[fill]:not([fill="none"]),
    .andes-button--loud.andes-button--color-on-background:link:hover svg[fill]:not([fill="none"]),
    .andes-button--loud.andes-button--color-on-background:visited:hover path[fill]:not([fill="none"]),
    .andes-button--loud.andes-button--color-on-background:visited:hover svg[fill]:not([fill="none"]) {
        fill: var(--andes-button-icon-loud-color-icon-default-on-complex-bg, #fff) !important;
    }
}

.andes-button--loud {
    box-shadow: rgb(255, 255, 255) 0px 0px 0px 0px;
    cursor: pointer;
}

@media (prefers-reduced-motion: no-preference) {
    .andes-button--loud {
        transition: box-shadow 0.25s ease-out, background-color 0.2s ease-out;
    }
}

.andes-button--loud,
.andes-button--loud:focus,
.andes-button--loud:link,
.andes-button--loud:visited {
    background-color: var(--andes-button-loud-color-fill-default, var(--andes-color-blue-500, #3483fa));
    border-color: transparent;
    color: var(--andes-button-loud-color-text-default, #fff);
}

.andes-button--loud path[stroke]:not([stroke="none"]),
.andes-button--loud svg[stroke]:not([stroke="none"]),
.andes-button--loud:focus path[stroke]:not([stroke="none"]),
.andes-button--loud:focus svg[stroke]:not([stroke="none"]),
.andes-button--loud:link path[stroke]:not([stroke="none"]),
.andes-button--loud:link svg[stroke]:not([stroke="none"]),
.andes-button--loud:visited path[stroke]:not([stroke="none"]),
.andes-button--loud:visited svg[stroke]:not([stroke="none"]) {
    stroke: var(--andes-button-icon-loud-color-icon-default, #fff) !important;
}

.andes-button--loud path[fill]:not([fill="none"]),
.andes-button--loud svg[fill]:not([fill="none"]),
.andes-button--loud:focus path[fill]:not([fill="none"]),
.andes-button--loud:focus svg[fill]:not([fill="none"]),
.andes-button--loud:link path[fill]:not([fill="none"]),
.andes-button--loud:link svg[fill]:not([fill="none"]),
.andes-button--loud:visited path[fill]:not([fill="none"]),
.andes-button--loud:visited svg[fill]:not([fill="none"]) {
    fill: var(--andes-button-icon-loud-color-icon-default, #fff) !important;
}

@media (prefers-reduced-motion: no-preference) {
    .andes-button--loud:hover {
        transition: background-color 0.2s ease-in;
    }
}

.andes-button--loud:active {
    background-color: var(--andes-button-loud-color-fill-active, var(--andes-color-blue-700, #1f4e96));
    border-color: transparent;
    color: var(--andes-button-loud-color-text-default, #fff);
}

.andes-button--loud:active path[stroke]:not([stroke="none"]),
.andes-button--loud:active svg[stroke]:not([stroke="none"]) {
    stroke: var(--andes-button-icon-loud-color-icon-default, #fff) !important;
}

.andes-button--loud:active path[fill]:not([fill="none"]),
.andes-button--loud:active svg[fill]:not([fill="none"]) {
    fill: var(--andes-button-icon-loud-color-icon-default, #fff) !important;
}

.andes-button--loud:not(.andes-button--loading, .loading):disabled,
.andes-button--loud:not(.andes-button--loading, .loading)[aria-disabled="true"],
.andes-button--loud:not(.andes-button--loading, .loading)[disabled] {
    background-color: var(--andes-button-loud-color-fill-disabled, rgba(0, 0, 0, .1));
    border-color: transparent;
    color: var(--andes-button-loud-color-text-disabled, rgba(0, 0, 0, .25));
}

.andes-button--loud:not(.andes-button--loading, .loading):disabled path[stroke]:not([stroke="none"]),
.andes-button--loud:not(.andes-button--loading, .loading):disabled svg[stroke]:not([stroke="none"]),
.andes-button--loud:not(.andes-button--loading, .loading)[aria-disabled="true"] path[stroke]:not([stroke="none"]),
.andes-button--loud:not(.andes-button--loading, .loading)[aria-disabled="true"] svg[stroke]:not([stroke="none"]),
.andes-button--loud:not(.andes-button--loading, .loading)[disabled] path[stroke]:not([stroke="none"]),
.andes-button--loud:not(.andes-button--loading, .loading)[disabled] svg[stroke]:not([stroke="none"]) {
    stroke: var(--andes-button-icon-loud-color-icon-disabled, rgba(0, 0, 0, .25)) !important;
}

.andes-button--loud:not(.andes-button--loading, .loading):disabled path[fill]:not([fill="none"]),
.andes-button--loud:not(.andes-button--loading, .loading):disabled svg[fill]:not([fill="none"]),
.andes-button--loud:not(.andes-button--loading, .loading)[aria-disabled="true"] path[fill]:not([fill="none"]),
.andes-button--loud:not(.andes-button--loading, .loading)[aria-disabled="true"] svg[fill]:not([fill="none"]),
.andes-button--loud:not(.andes-button--loading, .loading)[disabled] path[fill]:not([fill="none"]),
.andes-button--loud:not(.andes-button--loading, .loading)[disabled] svg[fill]:not([fill="none"]) {
    fill: var(--andes-button-icon-loud-color-icon-disabled, rgba(0, 0, 0, .25)) !important;
}

.andes-button--loud:not(.andes-button--loading, .loading):disabled,
.andes-button--loud:not(.andes-button--loading, .loading)[aria-disabled="true"],
.andes-button--loud:not(.andes-button--loading, .loading)[disabled] {
    background-clip: padding-box;
    cursor: default;
}

.andes-button--loud.andes-button--loading .andes-progress-indicator-circular__progress {
    stroke: var(--andes-button-loud-color-spinner, #fff);
}

.andes-button--loud.andes-button--color-on-background,
.andes-button--loud.andes-button--color-on-background:focus,
.andes-button--loud.andes-button--color-on-background:link,
.andes-button--loud.andes-button--color-on-background:visited {
    background-color: var(--andes-button-loud-color-fill-default-on-complex-bg, rgba(0, 0, 0, .45));
    border-color: transparent;
    color: var(--andes-button-loud-color-text-default-on-complex-bg, #fff);
}

.andes-button--loud.andes-button--color-on-background path[stroke]:not([stroke="none"]),
.andes-button--loud.andes-button--color-on-background svg[stroke]:not([stroke="none"]),
.andes-button--loud.andes-button--color-on-background:focus path[stroke]:not([stroke="none"]),
.andes-button--loud.andes-button--color-on-background:focus svg[stroke]:not([stroke="none"]),
.andes-button--loud.andes-button--color-on-background:link path[stroke]:not([stroke="none"]),
.andes-button--loud.andes-button--color-on-background:link svg[stroke]:not([stroke="none"]),
.andes-button--loud.andes-button--color-on-background:visited path[stroke]:not([stroke="none"]),
.andes-button--loud.andes-button--color-on-background:visited svg[stroke]:not([stroke="none"]) {
    stroke: var(--andes-button-icon-loud-color-icon-default-on-complex-bg, #fff) !important;
}

.andes-button--loud.andes-button--color-on-background path[fill]:not([fill="none"]),
.andes-button--loud.andes-button--color-on-background svg[fill]:not([fill="none"]),
.andes-button--loud.andes-button--color-on-background:focus path[fill]:not([fill="none"]),
.andes-button--loud.andes-button--color-on-background:focus svg[fill]:not([fill="none"]),
.andes-button--loud.andes-button--color-on-background:link path[fill]:not([fill="none"]),
.andes-button--loud.andes-button--color-on-background:link svg[fill]:not([fill="none"]),
.andes-button--loud.andes-button--color-on-background:visited path[fill]:not([fill="none"]),
.andes-button--loud.andes-button--color-on-background:visited svg[fill]:not([fill="none"]) {
    fill: var(--andes-button-icon-loud-color-icon-default-on-complex-bg, #fff) !important;
}

.andes-button--loud.andes-button--color-on-background:active {
    background-color: var(--andes-button-loud-color-fill-active-on-complex-bg, rgba(0, 0, 0, .8));
    border-color: transparent;
    color: var(--andes-button-loud-color-text-default-on-complex-bg, #fff);
}

.andes-button--loud.andes-button--color-on-background:active path[stroke]:not([stroke="none"]),
.andes-button--loud.andes-button--color-on-background:active svg[stroke]:not([stroke="none"]) {
    stroke: var(--andes-button-icon-loud-color-icon-default-on-complex-bg, #fff) !important;
}

.andes-button--loud.andes-button--color-on-background:active path[fill]:not([fill="none"]),
.andes-button--loud.andes-button--color-on-background:active svg[fill]:not([fill="none"]) {
    fill: var(--andes-button-icon-loud-color-icon-default-on-complex-bg, #fff) !important;
}

.andes-button--loud.andes-button--color-on-background:not(.andes-button--loading, .loading):disabled,
.andes-button--loud.andes-button--color-on-background:not(.andes-button--loading, .loading)[aria-disabled="true"],
.andes-button--loud.andes-button--color-on-background:not(.andes-button--loading, .loading)[disabled] {
    background-color: var(--andes-button-loud-color-fill-disabled-on-complex-bg, rgba(0, 0, 0, .15));
    border-color: transparent;
    color: var(--andes-button-loud-color-text-disabled-on-complex-bg, rgba(0, 0, 0, .25));
}

.andes-button--loud.andes-button--color-on-background:not(.andes-button--loading, .loading):disabled path[stroke]:not([stroke="none"]),
.andes-button--loud.andes-button--color-on-background:not(.andes-button--loading, .loading):disabled svg[stroke]:not([stroke="none"]),
.andes-button--loud.andes-button--color-on-background:not(.andes-button--loading, .loading)[aria-disabled="true"] path[stroke]:not([stroke="none"]),
.andes-button--loud.andes-button--color-on-background:not(.andes-button--loading, .loading)[aria-disabled="true"] svg[stroke]:not([stroke="none"]),
.andes-button--loud.andes-button--color-on-background:not(.andes-button--loading, .loading)[disabled] path[stroke]:not([stroke="none"]),
.andes-button--loud.andes-button--color-on-background:not(.andes-button--loading, .loading)[disabled] svg[stroke]:not([stroke="none"]) {
    stroke: var(--andes-button-icon-loud-color-icon-disabled-on-complex-bg, rgba(0, 0, 0, .25)) !important;
}

.andes-button--loud.andes-button--color-on-background:not(.andes-button--loading, .loading):disabled path[fill]:not([fill="none"]),
.andes-button--loud.andes-button--color-on-background:not(.andes-button--loading, .loading):disabled svg[fill]:not([fill="none"]),
.andes-button--loud.andes-button--color-on-background:not(.andes-button--loading, .loading)[aria-disabled="true"] path[fill]:not([fill="none"]),
.andes-button--loud.andes-button--color-on-background:not(.andes-button--loading, .loading)[aria-disabled="true"] svg[fill]:not([fill="none"]),
.andes-button--loud.andes-button--color-on-background:not(.andes-button--loading, .loading)[disabled] path[fill]:not([fill="none"]),
.andes-button--loud.andes-button--color-on-background:not(.andes-button--loading, .loading)[disabled] svg[fill]:not([fill="none"]) {
    fill: var(--andes-button-icon-loud-color-icon-disabled-on-complex-bg, rgba(0, 0, 0, .25)) !important;
}

.andes-button--loud.andes-button--color-on-background.andes-button--loading .andes-progress-indicator-circular__progress {
    stroke: var(--andes-button-loud-color-spinner-on-complex-bg, #fff);
}

.andes-button--quiet:hover {
    background-color: var(--andes-button-quiet-color-fill-default, var(--andes-color-blue-150, rgba(65, 137, 230, .15)));
    border-color: transparent;
    color: var(--andes-button-quiet-color-text-default, var(--andes-color-blue-500, #3483fa));
}

.andes-button--quiet:hover path[stroke]:not([stroke="none"]),
.andes-button--quiet:hover svg[stroke]:not([stroke="none"]) {
    stroke: var(--andes-button-icon-quiet-color-icon-default, var(--andes-color-blue-500, #3483fa)) !important;
}

.andes-button--quiet:hover path[fill]:not([fill="none"]),
.andes-button--quiet:hover svg[fill]:not([fill="none"]) {
    fill: var(--andes-button-icon-quiet-color-icon-default, var(--andes-color-blue-500, #3483fa)) !important;
}

.andes-button--quiet.andes-button--color-on-background:hover {
    background-color: var(--andes-button-quiet-color-fill-default-on-complex-bg, rgba(0, 0, 0, .15));
    border-color: transparent;
    color: var(--andes-button-quiet-color-text-default-on-complex-bg, #fff);
}

.andes-button--quiet.andes-button--color-on-background:hover path[stroke]:not([stroke="none"]),
.andes-button--quiet.andes-button--color-on-background:hover svg[stroke]:not([stroke="none"]) {
    stroke: var(--andes-button-icon-quiet-color-icon-default-on-complex-bg, #fff) !important;
}

.andes-button--quiet.andes-button--color-on-background:hover path[fill]:not([fill="none"]),
.andes-button--quiet.andes-button--color-on-background:hover svg[fill]:not([fill="none"]) {
    fill: var(--andes-button-icon-quiet-color-icon-default-on-complex-bg, #fff) !important;
}

@media (min-width: 768px) {

    .andes-button--quiet:hover,
    .andes-button--quiet:link:hover,
    .andes-button--quiet:visited:hover {
        background-color: var(--andes-button-quiet-color-fill-hover, var(--andes-color-blue-200, rgba(65, 137, 230, .2)));
        border-color: transparent;
        color: var(--andes-button-quiet-color-text-default, var(--andes-color-blue-500, #3483fa));
    }

    .andes-button--quiet:hover path[stroke]:not([stroke="none"]),
    .andes-button--quiet:hover svg[stroke]:not([stroke="none"]),
    .andes-button--quiet:link:hover path[stroke]:not([stroke="none"]),
    .andes-button--quiet:link:hover svg[stroke]:not([stroke="none"]),
    .andes-button--quiet:visited:hover path[stroke]:not([stroke="none"]),
    .andes-button--quiet:visited:hover svg[stroke]:not([stroke="none"]) {
        stroke: var(--andes-button-icon-quiet-color-icon-default, var(--andes-color-blue-500, #3483fa)) !important;
    }

    .andes-button--quiet:hover path[fill]:not([fill="none"]),
    .andes-button--quiet:hover svg[fill]:not([fill="none"]),
    .andes-button--quiet:link:hover path[fill]:not([fill="none"]),
    .andes-button--quiet:link:hover svg[fill]:not([fill="none"]),
    .andes-button--quiet:visited:hover path[fill]:not([fill="none"]),
    .andes-button--quiet:visited:hover svg[fill]:not([fill="none"]) {
        fill: var(--andes-button-icon-quiet-color-icon-default, var(--andes-color-blue-500, #3483fa)) !important;
    }

    .andes-button--quiet.andes-button--color-on-background:hover,
    .andes-button--quiet.andes-button--color-on-background:link:hover,
    .andes-button--quiet.andes-button--color-on-background:visited:hover {
        background-color: var(--andes-button-quiet-color-fill-hover-on-complex-bg, rgba(0, 0, 0, .25));
        border-color: transparent;
        color: var(--andes-button-quiet-color-text-default-on-complex-bg, #fff);
    }

    .andes-button--quiet.andes-button--color-on-background:hover path[stroke]:not([stroke="none"]),
    .andes-button--quiet.andes-button--color-on-background:hover svg[stroke]:not([stroke="none"]),
    .andes-button--quiet.andes-button--color-on-background:link:hover path[stroke]:not([stroke="none"]),
    .andes-button--quiet.andes-button--color-on-background:link:hover svg[stroke]:not([stroke="none"]),
    .andes-button--quiet.andes-button--color-on-background:visited:hover path[stroke]:not([stroke="none"]),
    .andes-button--quiet.andes-button--color-on-background:visited:hover svg[stroke]:not([stroke="none"]) {
        stroke: var(--andes-button-icon-quiet-color-icon-default-on-complex-bg, #fff) !important;
    }

    .andes-button--quiet.andes-button--color-on-background:hover path[fill]:not([fill="none"]),
    .andes-button--quiet.andes-button--color-on-background:hover svg[fill]:not([fill="none"]),
    .andes-button--quiet.andes-button--color-on-background:link:hover path[fill]:not([fill="none"]),
    .andes-button--quiet.andes-button--color-on-background:link:hover svg[fill]:not([fill="none"]),
    .andes-button--quiet.andes-button--color-on-background:visited:hover path[fill]:not([fill="none"]),
    .andes-button--quiet.andes-button--color-on-background:visited:hover svg[fill]:not([fill="none"]) {
        fill: var(--andes-button-icon-quiet-color-icon-default-on-complex-bg, #fff) !important;
    }
}

.andes-button--quiet {
    box-shadow: rgb(255, 255, 255) 0px 0px 0px 0px;
    cursor: pointer;
}

@media (prefers-reduced-motion: no-preference) {
    .andes-button--quiet {
        transition: box-shadow 0.25s ease-out, background-color 0.2s ease-out;
    }
}

.andes-button--quiet,
.andes-button--quiet:focus,
.andes-button--quiet:link,
.andes-button--quiet:visited {
    background-color: var(--andes-button-quiet-color-fill-default, var(--andes-color-blue-150, rgba(65, 137, 230, .15)));
    border-color: transparent;
    color: var(--andes-button-quiet-color-text-default, var(--andes-color-blue-500, #3483fa));
}

.andes-button--quiet path[stroke]:not([stroke="none"]),
.andes-button--quiet svg[stroke]:not([stroke="none"]),
.andes-button--quiet:focus path[stroke]:not([stroke="none"]),
.andes-button--quiet:focus svg[stroke]:not([stroke="none"]),
.andes-button--quiet:link path[stroke]:not([stroke="none"]),
.andes-button--quiet:link svg[stroke]:not([stroke="none"]),
.andes-button--quiet:visited path[stroke]:not([stroke="none"]),
.andes-button--quiet:visited svg[stroke]:not([stroke="none"]) {
    stroke: var(--andes-button-icon-quiet-color-icon-default, var(--andes-color-blue-500, #3483fa)) !important;
}

.andes-button--quiet path[fill]:not([fill="none"]),
.andes-button--quiet svg[fill]:not([fill="none"]),
.andes-button--quiet:focus path[fill]:not([fill="none"]),
.andes-button--quiet:focus svg[fill]:not([fill="none"]),
.andes-button--quiet:link path[fill]:not([fill="none"]),
.andes-button--quiet:link svg[fill]:not([fill="none"]),
.andes-button--quiet:visited path[fill]:not([fill="none"]),
.andes-button--quiet:visited svg[fill]:not([fill="none"]) {
    fill: var(--andes-button-icon-quiet-color-icon-default, var(--andes-color-blue-500, #3483fa)) !important;
}

@media (prefers-reduced-motion: no-preference) {
    .andes-button--quiet:hover {
        transition: background-color 0.2s ease-in;
    }
}

.andes-button--quiet:active {
    background-color: var(--andes-button-quiet-color-fill-active, var(--andes-color-blue-300, rgba(65, 137, 230, .3)));
    border-color: transparent;
    color: var(--andes-button-quiet-color-text-default, var(--andes-color-blue-500, #3483fa));
}

.andes-button--quiet:active path[stroke]:not([stroke="none"]),
.andes-button--quiet:active svg[stroke]:not([stroke="none"]) {
    stroke: var(--andes-button-icon-quiet-color-icon-default, var(--andes-color-blue-500, #3483fa)) !important;
}

.andes-button--quiet:active path[fill]:not([fill="none"]),
.andes-button--quiet:active svg[fill]:not([fill="none"]) {
    fill: var(--andes-button-icon-quiet-color-icon-default, var(--andes-color-blue-500, #3483fa)) !important;
}

.andes-button--quiet:not(.andes-button--loading, .loading):disabled,
.andes-button--quiet:not(.andes-button--loading, .loading)[aria-disabled="true"],
.andes-button--quiet:not(.andes-button--loading, .loading)[disabled] {
    background-color: var(--andes-button-quiet-color-fill-disabled, rgba(0, 0, 0, .1));
    border-color: transparent;
    color: var(--andes-button-quiet-color-text-disabled, rgba(0, 0, 0, .25));
}

.andes-button--quiet:not(.andes-button--loading, .loading):disabled path[stroke]:not([stroke="none"]),
.andes-button--quiet:not(.andes-button--loading, .loading):disabled svg[stroke]:not([stroke="none"]),
.andes-button--quiet:not(.andes-button--loading, .loading)[aria-disabled="true"] path[stroke]:not([stroke="none"]),
.andes-button--quiet:not(.andes-button--loading, .loading)[aria-disabled="true"] svg[stroke]:not([stroke="none"]),
.andes-button--quiet:not(.andes-button--loading, .loading)[disabled] path[stroke]:not([stroke="none"]),
.andes-button--quiet:not(.andes-button--loading, .loading)[disabled] svg[stroke]:not([stroke="none"]) {
    stroke: var(--andes-button-icon-quiet-color-icon-disabled, rgba(0, 0, 0, .25)) !important;
}

.andes-button--quiet:not(.andes-button--loading, .loading):disabled path[fill]:not([fill="none"]),
.andes-button--quiet:not(.andes-button--loading, .loading):disabled svg[fill]:not([fill="none"]),
.andes-button--quiet:not(.andes-button--loading, .loading)[aria-disabled="true"] path[fill]:not([fill="none"]),
.andes-button--quiet:not(.andes-button--loading, .loading)[aria-disabled="true"] svg[fill]:not([fill="none"]),
.andes-button--quiet:not(.andes-button--loading, .loading)[disabled] path[fill]:not([fill="none"]),
.andes-button--quiet:not(.andes-button--loading, .loading)[disabled] svg[fill]:not([fill="none"]) {
    fill: var(--andes-button-icon-quiet-color-icon-disabled, rgba(0, 0, 0, .25)) !important;
}

.andes-button--quiet:not(.andes-button--loading, .loading):disabled,
.andes-button--quiet:not(.andes-button--loading, .loading)[aria-disabled="true"],
.andes-button--quiet:not(.andes-button--loading, .loading)[disabled] {
    background-clip: padding-box;
    cursor: default;
}

.andes-button--quiet.andes-button--loading .andes-progress-indicator-circular__progress {
    stroke: var(--andes-button-quiet-color-spinner, var(--andes-color-blue-500, #3483fa));
}

.andes-button--quiet.andes-button--color-on-background,
.andes-button--quiet.andes-button--color-on-background:focus,
.andes-button--quiet.andes-button--color-on-background:link,
.andes-button--quiet.andes-button--color-on-background:visited {
    background-color: var(--andes-button-quiet-color-fill-default-on-complex-bg, rgba(0, 0, 0, .15));
    border-color: transparent;
    color: var(--andes-button-quiet-color-text-default-on-complex-bg, #fff);
}

.andes-button--quiet.andes-button--color-on-background path[stroke]:not([stroke="none"]),
.andes-button--quiet.andes-button--color-on-background svg[stroke]:not([stroke="none"]),
.andes-button--quiet.andes-button--color-on-background:focus path[stroke]:not([stroke="none"]),
.andes-button--quiet.andes-button--color-on-background:focus svg[stroke]:not([stroke="none"]),
.andes-button--quiet.andes-button--color-on-background:link path[stroke]:not([stroke="none"]),
.andes-button--quiet.andes-button--color-on-background:link svg[stroke]:not([stroke="none"]),
.andes-button--quiet.andes-button--color-on-background:visited path[stroke]:not([stroke="none"]),
.andes-button--quiet.andes-button--color-on-background:visited svg[stroke]:not([stroke="none"]) {
    stroke: var(--andes-button-icon-quiet-color-icon-default-on-complex-bg, #fff) !important;
}

.andes-button--quiet.andes-button--color-on-background path[fill]:not([fill="none"]),
.andes-button--quiet.andes-button--color-on-background svg[fill]:not([fill="none"]),
.andes-button--quiet.andes-button--color-on-background:focus path[fill]:not([fill="none"]),
.andes-button--quiet.andes-button--color-on-background:focus svg[fill]:not([fill="none"]),
.andes-button--quiet.andes-button--color-on-background:link path[fill]:not([fill="none"]),
.andes-button--quiet.andes-button--color-on-background:link svg[fill]:not([fill="none"]),
.andes-button--quiet.andes-button--color-on-background:visited path[fill]:not([fill="none"]),
.andes-button--quiet.andes-button--color-on-background:visited svg[fill]:not([fill="none"]) {
    fill: var(--andes-button-icon-quiet-color-icon-default-on-complex-bg, #fff) !important;
}

.andes-button--quiet.andes-button--color-on-background:active {
    background-color: var(--andes-button-quiet-color-fill-active-on-complex-bg, rgba(0, 0, 0, .45));
    border-color: transparent;
    color: var(--andes-button-quiet-color-text-default-on-complex-bg, #fff);
}

.andes-button--quiet.andes-button--color-on-background:active path[stroke]:not([stroke="none"]),
.andes-button--quiet.andes-button--color-on-background:active svg[stroke]:not([stroke="none"]) {
    stroke: var(--andes-button-icon-quiet-color-icon-default-on-complex-bg, #fff) !important;
}

.andes-button--quiet.andes-button--color-on-background:active path[fill]:not([fill="none"]),
.andes-button--quiet.andes-button--color-on-background:active svg[fill]:not([fill="none"]) {
    fill: var(--andes-button-icon-quiet-color-icon-default-on-complex-bg, #fff) !important;
}

.andes-button--quiet.andes-button--color-on-background:not(.andes-button--loading, .loading):disabled,
.andes-button--quiet.andes-button--color-on-background:not(.andes-button--loading, .loading)[aria-disabled="true"],
.andes-button--quiet.andes-button--color-on-background:not(.andes-button--loading, .loading)[disabled] {
    background-color: var(--andes-button-quiet-color-fill-disabled-on-complex-bg, rgba(0, 0, 0, .15));
    border-color: transparent;
    color: var(--andes-button-quiet-color-text-disabled-on-complex-bg, rgba(0, 0, 0, .25));
}

.andes-button--quiet.andes-button--color-on-background:not(.andes-button--loading, .loading):disabled path[stroke]:not([stroke="none"]),
.andes-button--quiet.andes-button--color-on-background:not(.andes-button--loading, .loading):disabled svg[stroke]:not([stroke="none"]),
.andes-button--quiet.andes-button--color-on-background:not(.andes-button--loading, .loading)[aria-disabled="true"] path[stroke]:not([stroke="none"]),
.andes-button--quiet.andes-button--color-on-background:not(.andes-button--loading, .loading)[aria-disabled="true"] svg[stroke]:not([stroke="none"]),
.andes-button--quiet.andes-button--color-on-background:not(.andes-button--loading, .loading)[disabled] path[stroke]:not([stroke="none"]),
.andes-button--quiet.andes-button--color-on-background:not(.andes-button--loading, .loading)[disabled] svg[stroke]:not([stroke="none"]) {
    stroke: var(--andes-button-icon-quiet-color-icon-disabled-on-complex-bg, rgba(0, 0, 0, .25)) !important;
}

.andes-button--quiet.andes-button--color-on-background:not(.andes-button--loading, .loading):disabled path[fill]:not([fill="none"]),
.andes-button--quiet.andes-button--color-on-background:not(.andes-button--loading, .loading):disabled svg[fill]:not([fill="none"]),
.andes-button--quiet.andes-button--color-on-background:not(.andes-button--loading, .loading)[aria-disabled="true"] path[fill]:not([fill="none"]),
.andes-button--quiet.andes-button--color-on-background:not(.andes-button--loading, .loading)[aria-disabled="true"] svg[fill]:not([fill="none"]),
.andes-button--quiet.andes-button--color-on-background:not(.andes-button--loading, .loading)[disabled] path[fill]:not([fill="none"]),
.andes-button--quiet.andes-button--color-on-background:not(.andes-button--loading, .loading)[disabled] svg[fill]:not([fill="none"]) {
    fill: var(--andes-button-icon-quiet-color-icon-disabled-on-complex-bg, rgba(0, 0, 0, .25)) !important;
}

.andes-button--quiet.andes-button--color-on-background.andes-button--loading .andes-progress-indicator-circular__progress {
    stroke: var(--andes-button-quiet-color-spinner-on-complex-bg, #fff);
}

.andes-button--mute:hover {
    background-color: var(--andes-button-mute-color-fill-default, hsla(0, 0%, 100%, 0));
    border-color: transparent;
    color: var(--andes-button-mute-color-text-default, var(--andes-color-blue-500, #3483fa));
}

.andes-button--mute:hover path[stroke]:not([stroke="none"]),
.andes-button--mute:hover svg[stroke]:not([stroke="none"]) {
    stroke: var(--andes-button-icon-mute-color-icon-default, var(--andes-color-blue-500, #3483fa)) !important;
}

.andes-button--mute:hover path[fill]:not([fill="none"]),
.andes-button--mute:hover svg[fill]:not([fill="none"]) {
    fill: var(--andes-button-icon-mute-color-icon-default, var(--andes-color-blue-500, #3483fa)) !important;
}

.andes-button--mute.andes-button--color-on-background:hover {
    background-color: var(--andes-button-mute-color-fill-default-on-complex-bg, hsla(0, 0%, 100%, 0));
    border-color: transparent;
    color: var(--andes-button-mute-color-text-default-on-complex-bg, #fff);
}

.andes-button--mute.andes-button--color-on-background:hover path[stroke]:not([stroke="none"]),
.andes-button--mute.andes-button--color-on-background:hover svg[stroke]:not([stroke="none"]) {
    stroke: var(--andes-button-icon-mute-color-icon-default-on-complex-bg, #fff) !important;
}

.andes-button--mute.andes-button--color-on-background:hover path[fill]:not([fill="none"]),
.andes-button--mute.andes-button--color-on-background:hover svg[fill]:not([fill="none"]) {
    fill: var(--andes-button-icon-mute-color-icon-default-on-complex-bg, #fff) !important;
}

@media (min-width: 768px) {

    .andes-button--mute:hover,
    .andes-button--mute:link:hover,
    .andes-button--mute:visited:hover {
        background-color: var(--andes-button-mute-color-fill-hover, var(--andes-color-blue-100, rgba(65, 137, 230, .1)));
        border-color: transparent;
        color: var(--andes-button-mute-color-text-default, var(--andes-color-blue-500, #3483fa));
    }

    .andes-button--mute:hover path[stroke]:not([stroke="none"]),
    .andes-button--mute:hover svg[stroke]:not([stroke="none"]),
    .andes-button--mute:link:hover path[stroke]:not([stroke="none"]),
    .andes-button--mute:link:hover svg[stroke]:not([stroke="none"]),
    .andes-button--mute:visited:hover path[stroke]:not([stroke="none"]),
    .andes-button--mute:visited:hover svg[stroke]:not([stroke="none"]) {
        stroke: var(--andes-button-icon-mute-color-icon-default, var(--andes-color-blue-500, #3483fa)) !important;
    }

    .andes-button--mute:hover path[fill]:not([fill="none"]),
    .andes-button--mute:hover svg[fill]:not([fill="none"]),
    .andes-button--mute:link:hover path[fill]:not([fill="none"]),
    .andes-button--mute:link:hover svg[fill]:not([fill="none"]),
    .andes-button--mute:visited:hover path[fill]:not([fill="none"]),
    .andes-button--mute:visited:hover svg[fill]:not([fill="none"]) {
        fill: var(--andes-button-icon-mute-color-icon-default, var(--andes-color-blue-500, #3483fa)) !important;
    }

    .andes-button--mute.andes-button--color-on-background:hover,
    .andes-button--mute.andes-button--color-on-background:link:hover,
    .andes-button--mute.andes-button--color-on-background:visited:hover {
        background-color: var(--andes-button-mute-color-fill-hover-on-complex-bg, rgba(0, 0, 0, .07));
        border-color: transparent;
        color: var(--andes-button-mute-color-text-default-on-complex-bg, #fff);
    }

    .andes-button--mute.andes-button--color-on-background:hover path[stroke]:not([stroke="none"]),
    .andes-button--mute.andes-button--color-on-background:hover svg[stroke]:not([stroke="none"]),
    .andes-button--mute.andes-button--color-on-background:link:hover path[stroke]:not([stroke="none"]),
    .andes-button--mute.andes-button--color-on-background:link:hover svg[stroke]:not([stroke="none"]),
    .andes-button--mute.andes-button--color-on-background:visited:hover path[stroke]:not([stroke="none"]),
    .andes-button--mute.andes-button--color-on-background:visited:hover svg[stroke]:not([stroke="none"]) {
        stroke: var(--andes-button-icon-mute-color-icon-default-on-complex-bg, #fff) !important;
    }

    .andes-button--mute.andes-button--color-on-background:hover path[fill]:not([fill="none"]),
    .andes-button--mute.andes-button--color-on-background:hover svg[fill]:not([fill="none"]),
    .andes-button--mute.andes-button--color-on-background:link:hover path[fill]:not([fill="none"]),
    .andes-button--mute.andes-button--color-on-background:link:hover svg[fill]:not([fill="none"]),
    .andes-button--mute.andes-button--color-on-background:visited:hover path[fill]:not([fill="none"]),
    .andes-button--mute.andes-button--color-on-background:visited:hover svg[fill]:not([fill="none"]) {
        fill: var(--andes-button-icon-mute-color-icon-default-on-complex-bg, #fff) !important;
    }
}

.andes-button--mute {
    box-shadow: rgb(255, 255, 255) 0px 0px 0px 0px;
    cursor: pointer;
}

@media (prefers-reduced-motion: no-preference) {
    .andes-button--mute {
        transition: box-shadow 0.25s ease-out, background-color 0.2s ease-out;
    }
}

.andes-button--mute,
.andes-button--mute:focus,
.andes-button--mute:link,
.andes-button--mute:visited {
    background-color: var(--andes-button-mute-color-fill-default, hsla(0, 0%, 100%, 0));
    border-color: transparent;
    color: var(--andes-button-mute-color-text-default, var(--andes-color-blue-500, #3483fa));
}

.andes-button--mute path[stroke]:not([stroke="none"]),
.andes-button--mute svg[stroke]:not([stroke="none"]),
.andes-button--mute:focus path[stroke]:not([stroke="none"]),
.andes-button--mute:focus svg[stroke]:not([stroke="none"]),
.andes-button--mute:link path[stroke]:not([stroke="none"]),
.andes-button--mute:link svg[stroke]:not([stroke="none"]),
.andes-button--mute:visited path[stroke]:not([stroke="none"]),
.andes-button--mute:visited svg[stroke]:not([stroke="none"]) {
    stroke: var(--andes-button-icon-mute-color-icon-default, var(--andes-color-blue-500, #3483fa)) !important;
}

.andes-button--mute path[fill]:not([fill="none"]),
.andes-button--mute svg[fill]:not([fill="none"]),
.andes-button--mute:focus path[fill]:not([fill="none"]),
.andes-button--mute:focus svg[fill]:not([fill="none"]),
.andes-button--mute:link path[fill]:not([fill="none"]),
.andes-button--mute:link svg[fill]:not([fill="none"]),
.andes-button--mute:visited path[fill]:not([fill="none"]),
.andes-button--mute:visited svg[fill]:not([fill="none"]) {
    fill: var(--andes-button-icon-mute-color-icon-default, var(--andes-color-blue-500, #3483fa)) !important;
}

@media (prefers-reduced-motion: no-preference) {
    .andes-button--mute:hover {
        transition: background-color 0.2s ease-in;
    }
}

.andes-button--mute:active {
    background-color: var(--andes-button-mute-color-fill-active, var(--andes-color-blue-200, rgba(65, 137, 230, .2)));
    border-color: transparent;
    color: var(--andes-button-mute-color-text-default, var(--andes-color-blue-500, #3483fa));
}

.andes-button--mute:active path[stroke]:not([stroke="none"]),
.andes-button--mute:active svg[stroke]:not([stroke="none"]) {
    stroke: var(--andes-button-icon-mute-color-icon-default, var(--andes-color-blue-500, #3483fa)) !important;
}

.andes-button--mute:active path[fill]:not([fill="none"]),
.andes-button--mute:active svg[fill]:not([fill="none"]) {
    fill: var(--andes-button-icon-mute-color-icon-default, var(--andes-color-blue-500, #3483fa)) !important;
}

.andes-button--mute:not(.andes-button--loading, .loading):disabled,
.andes-button--mute:not(.andes-button--loading, .loading)[aria-disabled="true"],
.andes-button--mute:not(.andes-button--loading, .loading)[disabled] {
    background-color: var(--andes-button-mute-color-fill-disabled, hsla(0, 0%, 100%, 0));
    border-color: transparent;
    color: var(--andes-button-mute-color-text-disabled, rgba(0, 0, 0, .25));
}

.andes-button--mute:not(.andes-button--loading, .loading):disabled path[stroke]:not([stroke="none"]),
.andes-button--mute:not(.andes-button--loading, .loading):disabled svg[stroke]:not([stroke="none"]),
.andes-button--mute:not(.andes-button--loading, .loading)[aria-disabled="true"] path[stroke]:not([stroke="none"]),
.andes-button--mute:not(.andes-button--loading, .loading)[aria-disabled="true"] svg[stroke]:not([stroke="none"]),
.andes-button--mute:not(.andes-button--loading, .loading)[disabled] path[stroke]:not([stroke="none"]),
.andes-button--mute:not(.andes-button--loading, .loading)[disabled] svg[stroke]:not([stroke="none"]) {
    stroke: var(--andes-button-icon-mute-color-icon-disabled, rgba(0, 0, 0, .25)) !important;
}

.andes-button--mute:not(.andes-button--loading, .loading):disabled path[fill]:not([fill="none"]),
.andes-button--mute:not(.andes-button--loading, .loading):disabled svg[fill]:not([fill="none"]),
.andes-button--mute:not(.andes-button--loading, .loading)[aria-disabled="true"] path[fill]:not([fill="none"]),
.andes-button--mute:not(.andes-button--loading, .loading)[aria-disabled="true"] svg[fill]:not([fill="none"]),
.andes-button--mute:not(.andes-button--loading, .loading)[disabled] path[fill]:not([fill="none"]),
.andes-button--mute:not(.andes-button--loading, .loading)[disabled] svg[fill]:not([fill="none"]) {
    fill: var(--andes-button-icon-mute-color-icon-disabled, rgba(0, 0, 0, .25)) !important;
}

.andes-button--mute:not(.andes-button--loading, .loading):disabled,
.andes-button--mute:not(.andes-button--loading, .loading)[aria-disabled="true"],
.andes-button--mute:not(.andes-button--loading, .loading)[disabled] {
    background-clip: padding-box;
    cursor: default;
}

.andes-button--mute.andes-button--loading .andes-progress-indicator-circular__progress {
    stroke: var(--andes-button-mute-color-spinner, var(--andes-color-blue-500, #3483fa));
}

.andes-button--mute.andes-button--color-on-background,
.andes-button--mute.andes-button--color-on-background:focus,
.andes-button--mute.andes-button--color-on-background:link,
.andes-button--mute.andes-button--color-on-background:visited {
    background-color: var(--andes-button-mute-color-fill-default-on-complex-bg, hsla(0, 0%, 100%, 0));
    border-color: transparent;
    color: var(--andes-button-mute-color-text-default-on-complex-bg, #fff);
}

.andes-button--mute.andes-button--color-on-background path[stroke]:not([stroke="none"]),
.andes-button--mute.andes-button--color-on-background svg[stroke]:not([stroke="none"]),
.andes-button--mute.andes-button--color-on-background:focus path[stroke]:not([stroke="none"]),
.andes-button--mute.andes-button--color-on-background:focus svg[stroke]:not([stroke="none"]),
.andes-button--mute.andes-button--color-on-background:link path[stroke]:not([stroke="none"]),
.andes-button--mute.andes-button--color-on-background:link svg[stroke]:not([stroke="none"]),
.andes-button--mute.andes-button--color-on-background:visited path[stroke]:not([stroke="none"]),
.andes-button--mute.andes-button--color-on-background:visited svg[stroke]:not([stroke="none"]) {
    stroke: var(--andes-button-icon-mute-color-icon-default-on-complex-bg, #fff) !important;
}

.andes-button--mute.andes-button--color-on-background path[fill]:not([fill="none"]),
.andes-button--mute.andes-button--color-on-background svg[fill]:not([fill="none"]),
.andes-button--mute.andes-button--color-on-background:focus path[fill]:not([fill="none"]),
.andes-button--mute.andes-button--color-on-background:focus svg[fill]:not([fill="none"]),
.andes-button--mute.andes-button--color-on-background:link path[fill]:not([fill="none"]),
.andes-button--mute.andes-button--color-on-background:link svg[fill]:not([fill="none"]),
.andes-button--mute.andes-button--color-on-background:visited path[fill]:not([fill="none"]),
.andes-button--mute.andes-button--color-on-background:visited svg[fill]:not([fill="none"]) {
    fill: var(--andes-button-icon-mute-color-icon-default-on-complex-bg, #fff) !important;
}

.andes-button--mute.andes-button--color-on-background:active {
    background-color: var(--andes-button-mute-color-fill-active-on-complex-bg, rgba(0, 0, 0, .15));
    border-color: transparent;
    color: var(--andes-button-mute-color-text-default-on-complex-bg, #fff);
}

.andes-button--mute.andes-button--color-on-background:active path[stroke]:not([stroke="none"]),
.andes-button--mute.andes-button--color-on-background:active svg[stroke]:not([stroke="none"]) {
    stroke: var(--andes-button-icon-mute-color-icon-default-on-complex-bg, #fff) !important;
}

.andes-button--mute.andes-button--color-on-background:active path[fill]:not([fill="none"]),
.andes-button--mute.andes-button--color-on-background:active svg[fill]:not([fill="none"]) {
    fill: var(--andes-button-icon-mute-color-icon-default-on-complex-bg, #fff) !important;
}

.andes-button--mute.andes-button--color-on-background:not(.andes-button--loading, .loading):disabled,
.andes-button--mute.andes-button--color-on-background:not(.andes-button--loading, .loading)[aria-disabled="true"],
.andes-button--mute.andes-button--color-on-background:not(.andes-button--loading, .loading)[disabled] {
    background-color: var(--andes-button-mute-color-fill-disabled-on-complex-bg, hsla(0, 0%, 100%, 0));
    border-color: transparent;
    color: var(--andes-button-mute-color-text-disabled-on-complex-bg, rgba(0, 0, 0, .25));
}

.andes-button--mute.andes-button--color-on-background:not(.andes-button--loading, .loading):disabled path[stroke]:not([stroke="none"]),
.andes-button--mute.andes-button--color-on-background:not(.andes-button--loading, .loading):disabled svg[stroke]:not([stroke="none"]),
.andes-button--mute.andes-button--color-on-background:not(.andes-button--loading, .loading)[aria-disabled="true"] path[stroke]:not([stroke="none"]),
.andes-button--mute.andes-button--color-on-background:not(.andes-button--loading, .loading)[aria-disabled="true"] svg[stroke]:not([stroke="none"]),
.andes-button--mute.andes-button--color-on-background:not(.andes-button--loading, .loading)[disabled] path[stroke]:not([stroke="none"]),
.andes-button--mute.andes-button--color-on-background:not(.andes-button--loading, .loading)[disabled] svg[stroke]:not([stroke="none"]) {
    stroke: var(--andes-button-icon-mute-color-icon-disabled-on-complex-bg, rgba(0, 0, 0, .25)) !important;
}

.andes-button--mute.andes-button--color-on-background:not(.andes-button--loading, .loading):disabled path[fill]:not([fill="none"]),
.andes-button--mute.andes-button--color-on-background:not(.andes-button--loading, .loading):disabled svg[fill]:not([fill="none"]),
.andes-button--mute.andes-button--color-on-background:not(.andes-button--loading, .loading)[aria-disabled="true"] path[fill]:not([fill="none"]),
.andes-button--mute.andes-button--color-on-background:not(.andes-button--loading, .loading)[aria-disabled="true"] svg[fill]:not([fill="none"]),
.andes-button--mute.andes-button--color-on-background:not(.andes-button--loading, .loading)[disabled] path[fill]:not([fill="none"]),
.andes-button--mute.andes-button--color-on-background:not(.andes-button--loading, .loading)[disabled] svg[fill]:not([fill="none"]) {
    fill: var(--andes-button-icon-mute-color-icon-disabled-on-complex-bg, rgba(0, 0, 0, .25)) !important;
}

.andes-button--mute.andes-button--color-on-background.andes-button--loading .andes-progress-indicator-circular__progress {
    stroke: var(--andes-button-mute-color-spinner-on-complex-bg, #fff);
}

.andes-button--quiet.loading:active,
.andes-button--quiet.loading:disabled,
.andes-button--quiet.loading:hover {
    background-color: var(--andes-button-quiet-color-fill-default, var(--andes-color-blue-150, rgba(65, 137, 230, .15)));
    border-color: transparent;
    color: var(--andes-button-quiet-color-text-default, var(--andes-color-blue-500, #3483fa));
}

.andes-button--quiet.loading:active path[stroke]:not([stroke="none"]),
.andes-button--quiet.loading:active svg[stroke]:not([stroke="none"]),
.andes-button--quiet.loading:disabled path[stroke]:not([stroke="none"]),
.andes-button--quiet.loading:disabled svg[stroke]:not([stroke="none"]),
.andes-button--quiet.loading:hover path[stroke]:not([stroke="none"]),
.andes-button--quiet.loading:hover svg[stroke]:not([stroke="none"]) {
    stroke: var(--andes-button-icon-quiet-color-icon-default, var(--andes-color-blue-500, #3483fa)) !important;
}

.andes-button--quiet.loading:active path[fill]:not([fill="none"]),
.andes-button--quiet.loading:active svg[fill]:not([fill="none"]),
.andes-button--quiet.loading:disabled path[fill]:not([fill="none"]),
.andes-button--quiet.loading:disabled svg[fill]:not([fill="none"]),
.andes-button--quiet.loading:hover path[fill]:not([fill="none"]),
.andes-button--quiet.loading:hover svg[fill]:not([fill="none"]) {
    fill: var(--andes-button-icon-quiet-color-icon-default, var(--andes-color-blue-500, #3483fa)) !important;
}

.andes-button--quiet.andes-button--color-on-background.loading:active,
.andes-button--quiet.andes-button--color-on-background.loading:disabled,
.andes-button--quiet.andes-button--color-on-background.loading:hover {
    background-color: var(--andes-button-quiet-color-fill-default-on-complex-bg, rgba(0, 0, 0, .15));
    border-color: transparent;
    color: var(--andes-button-quiet-color-text-default-on-complex-bg, #fff);
}

.andes-button--quiet.andes-button--color-on-background.loading:active path[stroke]:not([stroke="none"]),
.andes-button--quiet.andes-button--color-on-background.loading:active svg[stroke]:not([stroke="none"]),
.andes-button--quiet.andes-button--color-on-background.loading:disabled path[stroke]:not([stroke="none"]),
.andes-button--quiet.andes-button--color-on-background.loading:disabled svg[stroke]:not([stroke="none"]),
.andes-button--quiet.andes-button--color-on-background.loading:hover path[stroke]:not([stroke="none"]),
.andes-button--quiet.andes-button--color-on-background.loading:hover svg[stroke]:not([stroke="none"]) {
    stroke: var(--andes-button-icon-quiet-color-icon-default-on-complex-bg, #fff) !important;
}

.andes-button--quiet.andes-button--color-on-background.loading:active path[fill]:not([fill="none"]),
.andes-button--quiet.andes-button--color-on-background.loading:active svg[fill]:not([fill="none"]),
.andes-button--quiet.andes-button--color-on-background.loading:disabled path[fill]:not([fill="none"]),
.andes-button--quiet.andes-button--color-on-background.loading:disabled svg[fill]:not([fill="none"]),
.andes-button--quiet.andes-button--color-on-background.loading:hover path[fill]:not([fill="none"]),
.andes-button--quiet.andes-button--color-on-background.loading:hover svg[fill]:not([fill="none"]) {
    fill: var(--andes-button-icon-quiet-color-icon-default-on-complex-bg, #fff) !important;
}

.andes-button--quiet.andes-button--color-on-background::after,
.andes-button--quiet.andes-button--color-on-background::before {
    background-color: var(--andes-button-quiet-color-fill-progress-on-complex-bg, rgba(0, 0, 0, .25));
}

.andes-button--quiet.andes-button--color-on-background::after,
.andes-button--quiet.andes-button--color-on-background::before {
    border-radius: 0.222222em;
    box-sizing: initial;
    content: "";
    height: 100%;
    left: 0px;
    margin: -0.0555556em;
    padding: 0.0555556em;
    position: absolute;
    top: 0px;
    transform: scaleX(0);
    transform-origin: left center;
    width: 100%;
}

.andes-button--quiet::after,
.andes-button--quiet::before {
    background-color: var(--andes-button-quiet-color-fill-progress, var(--andes-color-blue-300, rgba(65, 137, 230, .3)));
}

.andes-button--quiet::after,
.andes-button--quiet::before {
    border-radius: 0.222222em;
    box-sizing: initial;
    content: "";
    height: 100%;
    left: 0px;
    margin: -0.0555556em;
    padding: 0.0555556em;
    position: absolute;
    top: 0px;
    transform: scaleX(0);
    transform-origin: left center;
    width: 100%;
}

.andes-button--loud.loading:active,
.andes-button--loud.loading:disabled,
.andes-button--loud.loading:hover {
    background-color: var(--andes-button-loud-color-fill-default, var(--andes-color-blue-500, #3483fa));
    border-color: transparent;
    color: var(--andes-button-loud-color-text-default, #fff);
}

.andes-button--loud.loading:active path[stroke]:not([stroke="none"]),
.andes-button--loud.loading:active svg[stroke]:not([stroke="none"]),
.andes-button--loud.loading:disabled path[stroke]:not([stroke="none"]),
.andes-button--loud.loading:disabled svg[stroke]:not([stroke="none"]),
.andes-button--loud.loading:hover path[stroke]:not([stroke="none"]),
.andes-button--loud.loading:hover svg[stroke]:not([stroke="none"]) {
    stroke: var(--andes-button-icon-loud-color-icon-default, #fff) !important;
}

.andes-button--loud.loading:active path[fill]:not([fill="none"]),
.andes-button--loud.loading:active svg[fill]:not([fill="none"]),
.andes-button--loud.loading:disabled path[fill]:not([fill="none"]),
.andes-button--loud.loading:disabled svg[fill]:not([fill="none"]),
.andes-button--loud.loading:hover path[fill]:not([fill="none"]),
.andes-button--loud.loading:hover svg[fill]:not([fill="none"]) {
    fill: var(--andes-button-icon-loud-color-icon-default, #fff) !important;
}

.andes-button--loud.andes-button--color-on-background.loading:active,
.andes-button--loud.andes-button--color-on-background.loading:disabled,
.andes-button--loud.andes-button--color-on-background.loading:hover {
    background-color: var(--andes-button-loud-color-fill-default-on-complex-bg, rgba(0, 0, 0, .45));
    border-color: transparent;
    color: var(--andes-button-loud-color-text-default-on-complex-bg, #fff);
}

.andes-button--loud.andes-button--color-on-background.loading:active path[stroke]:not([stroke="none"]),
.andes-button--loud.andes-button--color-on-background.loading:active svg[stroke]:not([stroke="none"]),
.andes-button--loud.andes-button--color-on-background.loading:disabled path[stroke]:not([stroke="none"]),
.andes-button--loud.andes-button--color-on-background.loading:disabled svg[stroke]:not([stroke="none"]),
.andes-button--loud.andes-button--color-on-background.loading:hover path[stroke]:not([stroke="none"]),
.andes-button--loud.andes-button--color-on-background.loading:hover svg[stroke]:not([stroke="none"]) {
    stroke: var(--andes-button-icon-loud-color-icon-default-on-complex-bg, #fff) !important;
}

.andes-button--loud.andes-button--color-on-background.loading:active path[fill]:not([fill="none"]),
.andes-button--loud.andes-button--color-on-background.loading:active svg[fill]:not([fill="none"]),
.andes-button--loud.andes-button--color-on-background.loading:disabled path[fill]:not([fill="none"]),
.andes-button--loud.andes-button--color-on-background.loading:disabled svg[fill]:not([fill="none"]),
.andes-button--loud.andes-button--color-on-background.loading:hover path[fill]:not([fill="none"]),
.andes-button--loud.andes-button--color-on-background.loading:hover svg[fill]:not([fill="none"]) {
    fill: var(--andes-button-icon-loud-color-icon-default-on-complex-bg, #fff) !important;
}

.andes-button--loud.andes-button--color-on-background::after,
.andes-button--loud.andes-button--color-on-background::before {
    background-color: var(--andes-button-loud-color-fill-progress-on-complex-bg, rgba(0, 0, 0, .55));
}

.andes-button--loud.andes-button--color-on-background::after,
.andes-button--loud.andes-button--color-on-background::before {
    border-radius: 0.222222em;
    box-sizing: initial;
    content: "";
    height: 100%;
    left: 0px;
    margin: -0.0555556em;
    padding: 0.0555556em;
    position: absolute;
    top: 0px;
    transform: scaleX(0);
    transform-origin: left center;
    width: 100%;
}

.andes-button--loud::after,
.andes-button--loud::before {
    background-color: var(--andes-button-loud-color-fill-progress, var(--andes-color-blue-600, #2968c8));
}

.andes-button--loud::after,
.andes-button--loud::before {
    border-radius: 0.222222em;
    box-sizing: initial;
    content: "";
    height: 100%;
    left: 0px;
    margin: -0.0555556em;
    padding: 0.0555556em;
    position: absolute;
    top: 0px;
    transform: scaleX(0);
    transform-origin: left center;
    width: 100%;
}

.andes-button--progress {
    border: 0px;
    overflow: hidden;
    position: relative;
}

.andes-button--progress:focus {
    box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--andes-color-blue-600, #2968c8), 0 0 0 5px var(--andes-color-blue-300, rgba(65, 137, 230, .3));
}

.andes-button--progress .andes-button__content {
    margin: auto;
    position: relative;
    width: max-content;
    z-index: 1;
}

.andes-button--progress .andes-button__content :not(.andes-button--progress__content) {
    transform: translateZ(0px);
}

@media (prefers-reduced-motion: no-preference) {
    .andes-button--progress .andes-button__content :not(.andes-button--progress__content) {
        transition: transform 0.2s ease-in, -webkit-transform 0.2s ease-in;
    }
}

.andes-button--progress .andes-button__content .andes-button--progress__content {
    position: absolute;
    transform: translate3d(0px, 32px, 0px);
}

@media (prefers-reduced-motion: no-preference) {
    .andes-button--progress .andes-button__content .andes-button--progress__content {
        transition: transform 0.2s ease-in, -webkit-transform 0.2s ease-in;
    }
}

.andes-button--progress .andes-button__content .andes-button--progress__content * {
    position: absolute;
    transform: translate3d(0px, 32px, 0px);
}

.andes-button--progress.loading .andes-button__content :not(.andes-button--progress__content) {
    position: absolute;
    transform: translate3d(0px, -32px, 0px);
    width: 100%;
}

.andes-button--progress.loading .andes-button__content .andes-button--progress__content,
.andes-button--progress.loading .andes-button__content .andes-button--progress__content * {
    position: relative;
    transform: translateZ(0px);
}

.andes-button--progress.loading::after,
.andes-button--progress.loading:focus::after {
    animation: 3s step-start 0s 1 normal none running andes-button-start-width-animation-reduce-motion;
    transform: scaleX(1);
}

@media (prefers-reduced-motion: no-preference) {

    .andes-button--progress.loading::after,
    .andes-button--progress.loading:focus::after {
        animation: 60s cubic-bezier(0, 0.56, 0.76, 0.96) 0s 1 normal none running andes-button-start-width-animation;
    }
}

.andes-button--progress.loading.finished,
.andes-button--progress.loading.finished::before,
.andes-button--progress.progress::before {
    transform: scaleX(1);
}

@media (prefers-reduced-motion: no-preference) {

    .andes-button--progress.loading.finished,
    .andes-button--progress.loading.finished::before,
    .andes-button--progress.progress::before {
        transition: transform 0.25s ease-in, opacity 0.5s ease-in, -webkit-transform 0.25s ease-in;
    }
}

.andes-button-dropdown {
    padding-right: 16px;
}

.andes-button-dropdown.andes-button--medium {
    padding-right: 8px;
}

.andes-button-dropdown.andes-button--medium .andes-button__text+svg,
.andes-button-dropdown.andes-button--medium svg+.andes-button__text {
    margin-left: 4px;
}

.andes-button-dropdown.andes-button--loud .andes-button-dropdown__chevron {
    color: var(--andes-button-dropdown-loud-color-chevron-default, #fff);
}

.andes-button-dropdown.andes-button--loud.andes-button--disabled:disabled .andes-button-dropdown__chevron {
    color: var(--andes-button-dropdown-loud-color-chevron-disabled, rgba(0, 0, 0, .25));
}

.andes-button-dropdown.andes-button--loud.andes-button--color-on-background .andes-button-dropdown__chevron {
    color: var(--andes-button-dropdown-loud-color-chevron-default-on-complex-bg, #fff);
}

.andes-button-dropdown.andes-button--loud.andes-button--color-on-background.andes-button--disabled:disabled .andes-button-dropdown__chevron {
    color: var(--andes-button-dropdown-loud-color-chevron-disabled-on-complex-bg, rgba(0, 0, 0, .25));
}

.andes-button-dropdown.andes-button--quiet .andes-button-dropdown__chevron {
    color: var(--andes-button-dropdown-quiet-color-chevron-default, var(--andes-color-blue-500, #3483fa));
}

.andes-button-dropdown.andes-button--quiet.andes-button--disabled:disabled .andes-button-dropdown__chevron {
    color: var(--andes-button-dropdown-quiet-color-chevron-disabled, rgba(0, 0, 0, .25));
}

.andes-button-dropdown.andes-button--quiet.andes-button--color-on-background .andes-button-dropdown__chevron {
    color: var(--andes-button-dropdown-quiet-color-chevron-default-on-complex-bg, #fff);
}

.andes-button-dropdown.andes-button--quiet.andes-button--color-on-background.andes-button--disabled:disabled .andes-button-dropdown__chevron {
    color: var(--andes-button-dropdown-quiet-color-chevron-disabled-on-complex-bg, rgba(0, 0, 0, .25));
}

.andes-button-dropdown-container {
    display: inline-block;
    position: relative;
}

.andes-button__text {
    flex: unset;
}

.andes-button-dropdown__menu--bottom,
.andes-button-dropdown__menu--top {
    margin: 0px;
    width: auto;
}

.andes-button-split {
    display: inline-flex;
    font-family: "Proxima Nova", -apple-system, Roboto, Arial, sans-serif;
    position: relative;
}

.andes-button-split .andes-button-split-text:focus {
    position: relative;
}

.andes-button-split .andes-button-split-text:focus-visible {
    position: relative;
}

.andes-button-split .andes-button-split-text {
    border-bottom-right-radius: 0px;
    border-top-right-radius: 0px;
    display: inline;
    padding-left: 16px;
    padding-right: 16px;
}

.andes-button-split .andes-button-split-text.andes-button--disabled {
    background-clip: initial;
}

.andes-button-split .andes-button-split-chevron:focus {
    position: relative;
}

.andes-button-split .andes-button-split-chevron:focus-visible {
    position: relative;
}

.andes-button-split .andes-button-split-chevron {
    border-bottom-left-radius: 0px;
    border-left: 1px solid var(--andes-button-split-color-border-default, rgba(0, 0, 0, .1));
    border-top-left-radius: 0px;
    padding: 0px 6px;
    vertical-align: bottom;
}

.andes-button-split .andes-button-split-chevron.andes-button--disabled {
    background-clip: initial;
    border-left: 1px solid var(--andes-button-split-color-border-default, rgba(0, 0, 0, .1));
}

.andes-button-split .andes-button-split-chevron.andes-button--loud {
    background-color: var(--andes-button-split-loud-color-fill-default, var(--andes-color-blue-500, #3483fa));
}

.andes-button-split .andes-button-split-chevron.andes-button--loud .andes-button-split__chevron {
    color: var(--andes-button-split-loud-color-chevron-default, #fff);
}

.andes-button-split .andes-button-split-chevron.andes-button--loud:hover {
    background-color: var(--andes-button-split-loud-color-fill-hover, var(--andes-color-blue-600, #2968c8));
}

.andes-button-split .andes-button-split-chevron.andes-button--loud:active {
    background-color: var(--andes-button-split-loud-color-fill-active, var(--andes-color-blue-700, #1f4e96));
}

.andes-button-split .andes-button-split-chevron.andes-button--loud:disabled {
    background-color: var(--andes-button-split-loud-color-fill-disabled, rgba(0, 0, 0, .1));
}

.andes-button-split .andes-button-split-chevron.andes-button--loud:disabled .andes-button-split__chevron {
    color: var(--andes-button-split-loud-color-chevron-disabled, rgba(0, 0, 0, .25));
}

.andes-button-split .andes-button-split-chevron.andes-button--loud.andes-button--color-on-background {
    background-color: var(--andes-button-split-loud-color-fill-default-on-complex-bg, rgba(0, 0, 0, .45));
}

.andes-button-split .andes-button-split-chevron.andes-button--loud.andes-button--color-on-background .andes-button-split__chevron {
    color: var(--andes-button-split-loud-color-chevron-default-on-complex-bg, #fff);
}

.andes-button-split .andes-button-split-chevron.andes-button--loud.andes-button--color-on-background:hover {
    background-color: var(--andes-button-split-loud-color-fill-hover-on-complex-bg, rgba(0, 0, 0, .55));
}

.andes-button-split .andes-button-split-chevron.andes-button--loud.andes-button--color-on-background:active {
    background-color: var(--andes-button-split-loud-color-fill-active-on-complex-bg, rgba(0, 0, 0, .8));
}

.andes-button-split .andes-button-split-chevron.andes-button--loud.andes-button--color-on-background:disabled {
    background-color: var(--andes-button-split-loud-color-fill-disabled-on-complex-bg, rgba(0, 0, 0, .15));
}

.andes-button-split .andes-button-split-chevron.andes-button--loud.andes-button--color-on-background:disabled .andes-button-split__chevron {
    color: var(--andes-button-split-loud-color-chevron-disabled-on-complex-bg, rgba(0, 0, 0, .25));
}

.andes-button-split .andes-button-split-chevron.andes-button--quiet {
    background-color: var(--andes-button-split-quiet-color-fill-default, var(--andes-color-blue-150, rgba(65, 137, 230, .15)));
}

.andes-button-split .andes-button-split-chevron.andes-button--quiet .andes-button-split__chevron {
    color: var(--andes-button-split-quiet-color-chevron-default, var(--andes-color-blue-500, #3483fa));
}

.andes-button-split .andes-button-split-chevron.andes-button--quiet:hover {
    background-color: var(--andes-button-split-quiet-color-fill-hover, var(--andes-color-blue-200, rgba(65, 137, 230, .2)));
}

.andes-button-split .andes-button-split-chevron.andes-button--quiet:active {
    background-color: var(--andes-button-split-quiet-color-fill-active, var(--andes-color-blue-300, rgba(65, 137, 230, .3)));
}

.andes-button-split .andes-button-split-chevron.andes-button--quiet:disabled {
    background-color: var(--andes-button-split-quiet-color-fill-disabled, rgba(0, 0, 0, .1));
}

.andes-button-split .andes-button-split-chevron.andes-button--quiet:disabled .andes-button-split__chevron {
    color: var(--andes-button-split-quiet-color-chevron-disabled, rgba(0, 0, 0, .25));
}

.andes-button-split .andes-button-split-chevron.andes-button--quiet.andes-button--color-on-background {
    background-color: var(--andes-button-split-quiet-color-fill-default-on-complex-bg, rgba(0, 0, 0, .15));
}

.andes-button-split .andes-button-split-chevron.andes-button--quiet.andes-button--color-on-background .andes-button-split__chevron {
    color: var(--andes-button-split-quiet-color-chevron-default-on-complex-bg, #fff);
}

.andes-button-split .andes-button-split-chevron.andes-button--quiet.andes-button--color-on-background:hover {
    background-color: var(--andes-button-split-quiet-color-fill-hover-on-complex-bg, rgba(0, 0, 0, .25));
}

.andes-button-split .andes-button-split-chevron.andes-button--quiet.andes-button--color-on-background:active {
    background-color: var(--andes-button-split-quiet-color-fill-active-on-complex-bg, rgba(0, 0, 0, .45));
}

.andes-button-split .andes-button-split-chevron.andes-button--quiet.andes-button--color-on-background:disabled {
    background-color: var(--andes-button-split-quiet-color-fill-disabled-on-complex-bg, rgba(0, 0, 0, .15));
}

.andes-button-split .andes-button-split-chevron.andes-button--quiet.andes-button--color-on-background:disabled .andes-button-split__chevron {
    color: var(--andes-button-split-quiet-color-chevron-disabled-on-complex-bg, rgba(0, 0, 0, .25));
}

.andes-button-split__menu {
    display: inline;
    margin: 0px;
    position: static;
}

.andes-button-split__menu--bottom,
.andes-button-split__menu--top {
    width: auto;
}

.andes-button-split__menu--bottom-right,
.andes-button-split__menu--top-right {
    width: max-content;
}

.andes-button-fab {
    border-radius: 24px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 6px 16px 0px;
    display: inline-block;
    transition: max-width 0.2s;
}

.andes-button-fab .andes-button {
    border-radius: 24px;
    max-width: 100%;
    padding: 14px 16px 14px 14px;
    transition: padding 0.2s;
    width: auto;
}

.andes-button-fab .andes-button .andes-button__text {
    transition: margin-left 0.2s, opacity 0.2s;
}

.andes-button-fab .andes-button .andes-button--icon-container {
    max-height: 20px;
    max-width: 20px;
}

.andes-button-fab .andes-button .andes-button--icon-container img,
.andes-button-fab .andes-button .andes-button--icon-container svg {
    display: inline-block;
    height: 20px;
    max-height: inherit;
    max-width: inherit;
    width: 20px;
}

.andes-button-fab--loud {
    background-color: var(--andes-fab-container-loud-color-fill, var(--andes-color-blue-500, #3483fa));
}

.andes-button-fab--loud .andes-button {
    background-color: var(--andes-fab-loud-color-fill-default, var(--andes-color-blue-500, #3483fa));
    color: var(--andes-fab-loud-color-text-default, #fff);
}

.andes-button-fab--loud .andes-button:hover {
    background-color: var(--andes-fab-loud-color-fill-hover, var(--andes-color-blue-600, #2968c8));
}

.andes-button-fab--loud .andes-button:active {
    background-color: var(--andes-fab-loud-color-fill-active, var(--andes-color-blue-700, #1f4e96));
}

.andes-button-fab--loud .andes-button svg {
    color: var(--andes-fab-loud-color-icon-default, #fff);
}

.andes-button-fab--loud .andes-button path[stroke]:not([stroke="none"])[stroke="rgba(0, 0, 0, 0.9)"],
.andes-button-fab--loud .andes-button svg[stroke]:not([stroke="none"])[stroke="rgba(0, 0, 0, 0.9)"] {
    stroke: var(--andes-fab-loud-color-icon-default, #fff) !important;
}

.andes-button-fab--loud .andes-button path[fill]:not([fill="none"])[fill="rgba(0, 0, 0, 0.9)"],
.andes-button-fab--loud .andes-button svg[fill]:not([fill="none"])[fill="rgba(0, 0, 0, 0.9)"] {
    fill: var(--andes-fab-loud-color-icon-default, #fff) !important;
}

.andes-button-fab--quiet {
    background-color: var(--andes-fab-container-quiet-color-fill, #fff);
}

.andes-button-fab--quiet .andes-button {
    background-color: var(--andes-fab-quiet-color-fill-default, #fff);
    color: var(--andes-fab-quiet-color-text-default, var(--andes-color-blue-500, #3483fa));
}

.andes-button-fab--quiet .andes-button:hover {
    background-color: var(--andes-fab-quiet-color-fill-hover, var(--andes-color-blue-200, rgba(65, 137, 230, .2)));
}

.andes-button-fab--quiet .andes-button:active {
    background-color: var(--andes-fab-quiet-color-fill-active, var(--andes-color-blue-300, rgba(65, 137, 230, .3)));
}

.andes-button-fab--quiet .andes-button svg {
    color: var(--andes-fab-quiet-color-icon-default, var(--andes-color-blue-500, #3483fa));
}

.andes-button-fab--quiet .andes-button path[stroke]:not([stroke="none"])[fill="rgba(0, 0, 0, 0.9)"],
.andes-button-fab--quiet .andes-button svg[stroke]:not([stroke="none"])[fill="rgba(0, 0, 0, 0.9)"] {
    stroke: var(--andes-fab-quiet-color-icon-default, var(--andes-color-blue-500, #3483fa)) !important;
}

.andes-button-fab--quiet .andes-button path[fill]:not([fill="none"])[fill="rgba(0, 0, 0, 0.9)"],
.andes-button-fab--quiet .andes-button svg[fill]:not([fill="none"])[fill="rgba(0, 0, 0, 0.9)"] {
    fill: var(--andes-fab-quiet-color-icon-default, var(--andes-color-blue-500, #3483fa)) !important;
}

.andes-button-fab--expanded {
    max-width: 100%;
}

.andes-button-fab--expanded .andes-button .andes-button__text {
    margin-left: 12px;
    opacity: 1;
}

.andes-button-fab--collapsed {
    max-width: 48px;
}

.andes-button-fab--collapsed .andes-button {
    padding: 14px;
}

.andes-button-fab--collapsed .andes-button .andes-button__text {
    opacity: 0;
}

.andes-button-fab--small {
    border-radius: 16px;
}

.andes-button-fab--small .andes-button {
    border-radius: 16px;
    height: 32px;
    padding-left: 8px;
    padding-right: 12px;
}

.andes-button-fab--small .andes-button .andes-button--icon-container {
    max-height: 16px;
    max-width: 16px;
}

.andes-button-fab--small .andes-button .andes-button--icon-container img,
.andes-button-fab--small .andes-button .andes-button--icon-container svg {
    display: inline-block;
    max-height: inherit;
    max-width: inherit;
}

.andes-button-fab--small.andes-button-fab--collapsed {
    max-width: 32px;
}

.andes-button-fab--small.andes-button-fab--collapsed .andes-button {
    padding: 8px;
}

.andes-button-fab--small.andes-button-fab--collapsed .andes-button__text {
    margin-left: 0px;
}

.andes-button-fab--small.andes-button-fab--expanded .andes-button__text {
    margin-left: 4px;
}

.andes-popper {
    border-radius: 6px;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 2px 0px;
    font-family: "Proxima Nova", -apple-system, Roboto, Arial, sans-serif;
}

.andes-popper> :first-child {
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

.andes-popper> :last-child {
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
}

.andes-popper__content {
    background-color: rgb(255, 255, 255);
}

.andes-popper--padding-0 {
    padding: 0px;
}

.andes-popper--padding-16 {
    padding: 16px;
}

.andes-popper--padding-24 {
    padding: 24px;
}

.andes-popper--padding-32 {
    padding: 32px;
}

.andes-popper--padding-40 {
    padding: 40px;
}

.andes-popper:not(.andes-tooltip) {
    height: 100%;
    width: 100%;
}

.andes-floating-menu {
    font-family: "Proxima Nova", -apple-system, Roboto, Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    position: relative;
    -webkit-font-smoothing: antialiased;
    border-radius: 0.375em;
}

.andes-floating-menu .andes-list__item:first-child,
.andes-floating-menu .andes-list__item:first-child a,
.andes-floating-menu .andes-list__item:first-child button {
    border-top-left-radius: 0.375em;
    border-top-right-radius: 0.375em;
}

.andes-floating-menu .andes-list__item:last-child,
.andes-floating-menu .andes-list__item:last-child a,
.andes-floating-menu .andes-list__item:last-child button {
    border-bottom-left-radius: 0.375em;
    border-bottom-right-radius: 0.375em;
}

.andes-floating-menu .andes-list__item:focus {
    box-shadow: inset 0 0 0 2px #fff, inset 0 0 0 3px var(--andes-color-blue-600, #2968c8), inset 0 0 0 5px var(--andes-color-blue-300, rgba(65, 137, 230, .3));
    outline: none;
}

.andes-floating-menu .andes-list__item:focus-visible {
    box-shadow: inset 0 0 0 2px #fff, inset 0 0 0 3px var(--andes-color-blue-600, #2968c8), inset 0 0 0 5px var(--andes-color-blue-300, rgba(65, 137, 230, .3));
    outline: none;
}

.andes-floating-menu .andes-list__item:focus:not(:focus-visible) {
    box-shadow: none;
    outline: none;
}

.andes-floating-menu .andes-list__item {
    outline: none;
}

.andes-floating-menu .andes-list__item-action:focus-visible::before,
.andes-floating-menu .andes-list__item-action:focus::before,
.andes-floating-menu .andes-list__item-anchor:focus-visible::before,
.andes-floating-menu .andes-list__item-anchor:focus::before {
    box-shadow: none;
    outline: none;
}

.andes-floating-menu .andes-list__item> :focus {
    box-shadow: inset 0 0 0 2px #fff, inset 0 0 0 3px var(--andes-color-blue-600, #2968c8), inset 0 0 0 5px var(--andes-color-blue-300, rgba(65, 137, 230, .3));
    outline: none;
}

.andes-floating-menu .andes-list__item> :focus-visible {
    box-shadow: inset 0 0 0 2px #fff, inset 0 0 0 3px var(--andes-color-blue-600, #2968c8), inset 0 0 0 5px var(--andes-color-blue-300, rgba(65, 137, 230, .3));
    outline: none;
}

.andes-floating-menu .andes-list__item> :focus:not(:focus-visible) {
    box-shadow: none;
    outline: none;
}

.andes-floating-menu__popper-content {
    background-color: var(--andes-floating-menu-color-fill, #fff);
}

.andes-floating-menu__no-results {
    box-sizing: initial;
    color: var(--andes-floating-menu-text-result-color-text, rgba(0, 0, 0, .55));
    font-size: 14px;
    height: 18px;
    padding: 18px 16px;
}

.andes-floating-menu__search-box {
    padding: 16px 16px 4px;
}

.andes-floating-menu .andes-floating-menu-item-hover {
    background-color: rgb(237, 237, 237);
}

.andes-floating-menu .andes-form-control--search-box .andes-form-control__field {
    margin: 0px;
}

.andes-floating-menu--search {
    background-color: var(--andes-searchbox-color-fill-default, #fff);
    box-shadow: 0 0 0 1px var(--andes-searchbox-color-border-default, rgba(0, 0, 0, .25));
    box-sizing: border-box;
    color: rgba(0, 0, 0, 0.9);
    display: flex;
    opacity: 1;
    width: 100%;
}

.andes-floating-menu--search.andes-floating-menu--search--web-mobile-ios .andes-form-control__field {
    transform: scale(0.875);
    transform-origin: left top;
    width: 115%;
}

.andes-floating-menu--search.andes-floating-menu--search--web-mobile-ios.andes-floating-menu--search--size-small {
    font-size: 16px;
}

.andes-floating-menu--search.andes-floating-menu--search--web-mobile-ios.andes-floating-menu--search--size-small .andes-form-control__field {
    height: 20px;
}

.andes-floating-menu--search label {
    order: 2;
    width: 100%;
}

.andes-floating-menu--search:hover {
    box-shadow: 0 0 0 1px var(--andes-searchbox-color-border-hover, rgba(0, 0, 0, .55));
}

.andes-floating-menu--search--focused,
.andes-floating-menu--search--focused:hover,
.andes-floating-menu--search:focus {
    box-shadow: 0 0 0 2px var(--andes-searchbox-color-border-active, var(--andes-color-blue-500, #3483fa));
}

.andes-floating-menu--search--focused.focus-visible {
    box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--andes-color-blue-600, #2968c8), 0 0 0 5px var(--andes-color-blue-300, rgba(65, 137, 230, .3)), inset 0 0 0 2px var(--andes-searchbox-color-border-active, var(--andes-color-blue-500, #3483fa));
}

.andes-floating-menu--search .andes-form-control__close-icon,
.andes-floating-menu--search .andes-form-control__search-icon {
    align-content: center;
    display: flex;
    padding: 0px;
}

.andes-floating-menu--search .andes-form-control__close-icon:focus-visible,
.andes-floating-menu--search .andes-form-control__search-icon:focus-visible {
    border-radius: 50%;
    box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--andes-color-blue-600, #2968c8), 0 0 0 5px var(--andes-color-blue-300, rgba(65, 137, 230, .3));
    outline: none;
}

.andes-floating-menu--search .andes-form-control__search-icon {
    color: var(--andes-searchbox-color-search-default, rgba(0, 0, 0, .55));
}

.andes-floating-menu--search .andes-form-control__search-icon:hover {
    color: var(--andes-searchbox-color-search-hover, rgba(0, 0, 0, .8));
}

.andes-floating-menu--search .andes-form-control__search-icon:active {
    color: var(--andes-searchbox-color-search-active, rgba(0, 0, 0, .9));
}

.andes-floating-menu--search .andes-form-control__close-icon {
    color: var(--andes-searchbox-color-clear-default, rgba(0, 0, 0, .55));
}

.andes-floating-menu--search .andes-form-control__close-icon:hover {
    color: var(--andes-searchbox-color-clear-hover, rgba(0, 0, 0, .8));
}

.andes-floating-menu--search .andes-form-control__close-icon:active {
    color: var(--andes-searchbox-color-clear-active, rgba(0, 0, 0, .9));
}

.andes-floating-menu--search .andes-form-control__close-icon {
    background-color: transparent;
    border: 0px;
    cursor: pointer;
    display: none;
    margin-left: 4px;
    opacity: 0;
    order: 3;
}

.andes-floating-menu--search .andes-form-control__close-icon-visible {
    align-content: center;
    display: flex;
    opacity: 1;
    padding: 0px;
}

.andes-floating-menu--search .andes-form-control__field:focus {
    box-shadow: none;
}

.andes-floating-menu--search .andes-form-control__field:focus-visible {
    box-shadow: none;
}

.andes-floating-menu--search .andes-form-control__field::-webkit-input-placeholder {
    opacity: 1;
}

.andes-floating-menu--search .andes-form-control__field::placeholder {
    color: var(--andes-searchbox-color-placeholder-default, rgba(0, 0, 0, .55));
    opacity: 1;
}

.andes-floating-menu--search .andes-form-control__field::-webkit-input-placeholder {
    color: var(--andes-searchbox-color-placeholder-default, rgba(0, 0, 0, .55));
}

.andes-floating-menu--search .andes-form-control__field {
    background-color: transparent;
    border: 0px;
    color: var(--andes-searchbox-color-input-text-default, rgba(0, 0, 0, .9));
    display: block;
    font: inherit;
    margin: 0px;
    order: 2;
    outline: none;
    overflow: hidden;
    padding: 0px;
    resize: none;
    width: 100%;
}

.andes-floating-menu--search .andes-form-control__search-icon {
    background-color: transparent;
    border: 0px;
    margin-right: 4px;
    order: 1;
}

.andes-floating-menu--search--size-small {
    border-radius: 16px;
    font-size: 14px;
    height: 32px;
    padding: 8px 10px 6px;
}

.andes-floating-menu--search--size-small .andes-form-control__field {
    height: 18px;
}

.andes-floating-menu--search--size-small .andes-form-control__close-icon,
.andes-floating-menu--search--size-small .andes-form-control__search-icon {
    height: 16px;
}

.andes-floating-menu--search--size-large {
    border-radius: 24px;
    font-size: 16px;
    height: 48px;
    padding: 15px 16px 13px;
}

.andes-floating-menu--search--size-large .andes-form-control__field {
    height: 20px;
}

.andes-floating-menu--search--size-large .andes-form-control__search-icon {
    margin-right: 8px;
}

.andes-visually-hidden,
.andes-visually-hidden-focusable:not(:focus):not(:focus-within) {
    border: 0px;
    clip: rect(0px, 0px, 0px, 0px);
    clip-path: inset(50%);
    height: 1px;
    margin: 0px -1px -1px 0px;
    overflow: hidden;
    padding: 0px;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

.andes-progress-indicator-circular__container {
    display: flex;
    height: max-content;
    position: relative;
    width: max-content;
}

.andes-progress-indicator-circular__progress {
    align-items: center;
    display: flex;
    justify-content: center;
    position: relative;
}

.andes-progress-indicator-circular--basic .andes-progress-indicator-circular__progress {
    stroke: var(--andes-progress-indicator-circular-progress-color-fill-default, var(--andes-color-blue-500, #3483fa));
}

.andes-progress-indicator-circular--inverse .andes-progress-indicator-circular__progress {
    stroke: var(--andes-progress-indicator-circular-progress-color-fill-inverse, #fff);
}

.andes-progress-indicator-circular--inverse .andes-progress-indicator-circular__label {
    color: var(--andes-progress-indicator-circular-color-label-inverse, #fff);
}

.andes-progress-indicator-circular__content {
    color: rgba(0, 0, 0, 0.9);
    font-size: 12px;
    font-weight: 400;
}

.andes-progress-indicator-circular__label {
    color: var(--andes-progress-indicator-circular-color-label, rgba(0, 0, 0, .9));
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
}

.andes-progress-indicator-circular--indeterminate .andes-progress-indicator-circular__svg {
    animation: 2s linear 0s infinite normal none running andes-pi-circular-rotate;
    left: 0px;
    position: absolute;
    top: 0px;
    z-index: 1022;
}

.andes-progress-indicator-circular--indeterminate .andes-progress-indicator-circular__circle {
    animation: 5s ease-in-out 0s infinite normal none running andes-pi-circular-dash-reduce-motion;
    stroke-linecap: round;
}

@media (prefers-reduced-motion: no-preference) {
    .andes-progress-indicator-circular--indeterminate .andes-progress-indicator-circular__circle {
        animation: 1.5s ease-in-out 0s infinite normal none running andes-pi-circular-dash;
    }
}

@keyframes andes-pi-circular-rotate {
    100% {
        transform: rotate(1turn);
    }
}

@keyframes andes-pi-circular-dash {
    0% {
        stroke-dasharray: 1, 150;
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -35;
    }

    100% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -124;
    }
}

@keyframes andes-pi-circular-dash-reduce-motion {
    0% {
        opacity: 0;
        stroke-dasharray: 90, 150;
        stroke-dashoffset: 0;
    }

    10% {
        opacity: 1;
        stroke-dasharray: 90, 150;
        stroke-dashoffset: 0;
    }

    60% {
        opacity: 1;
        stroke-dasharray: 90, 150;
        stroke-dashoffset: 0;
    }

    100% {
        opacity: 0;
        stroke-dasharray: 90, 150;
        stroke-dashoffset: 0;
    }
}

.andes-progress-indicator-circular--medium .andes-progress-indicator-circular__progress,
.andes-progress-indicator-circular--medium .andes-progress-indicator-circular__svg {
    height: 32px;
    stroke-width: 3px;
    width: 32px;
}

.andes-progress-indicator-circular--medium .andes-progress-indicator-circular__container {
    align-items: center;
    flex-direction: column;
}

.andes-progress-indicator-circular--medium .andes-progress-indicator-circular__label {
    font-size: 14px;
    margin-top: 13px;
}

.andes-typography {
    font-family: "Proxima Nova", -apple-system, Roboto, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}

.andes-typography.andes-typography--type-body.andes-typography--weight-regular {
    font-weight: 400;
}

.andes-typography.andes-typography--type-body.andes-typography--weight-semibold,
.andes-typography.andes-typography--type-title {
    font-weight: 600;
}

.andes-typography-text-list {
    list-style: none;
    margin: 0px;
    padding: 0px;
    position: relative;
}

.andes-typography-text-list__item {
    list-style: none;
}

.andes-typography--size-xs.andes-typography--type-title {
    font-size: 18px;
    line-height: 22px;
    margin: 1.27em 0px 0px;
}

.andes-typography--size-xs.andes-typography--type-title:first-child {
    margin: 0px;
}

.andes-typography--size-xs.andes-typography--type-body {
    font-size: 12px;
    line-height: 15px;
}

.andes-typography-text-list.andes-typography--size-xs.andes-typography--type-body,
p.andes-typography--size-xs.andes-typography--type-body {
    margin: 0.75em 0px 0px;
}

.andes-typography-text-list.andes-typography--size-xs.andes-typography--type-body:first-child,
p.andes-typography--size-xs.andes-typography--type-body:first-child {
    margin: 0px;
}

.andes-typography--size-s.andes-typography--type-title {
    font-size: 20px;
    line-height: 25px;
    margin: 1.25em 0px 0px;
}

.andes-typography--size-s.andes-typography--type-title:first-child {
    margin: 0px;
}

.andes-typography--size-s.andes-typography--type-body {
    font-size: 14px;
    line-height: 18px;
}

.andes-typography-text-list.andes-typography--size-s.andes-typography--type-body,
p.andes-typography--size-s.andes-typography--type-body {
    margin: 0.71em 0px 0px;
}

.andes-typography-text-list.andes-typography--size-s.andes-typography--type-body:first-child,
p.andes-typography--size-s.andes-typography--type-body:first-child {
    margin: 0px;
}

.andes-typography--size-m.andes-typography--type-title {
    font-size: 24px;
    line-height: 30px;
    margin: 1.25em 0px 0px;
}

.andes-typography--size-m.andes-typography--type-title:first-child {
    margin: 0px;
}

.andes-typography--size-m.andes-typography--type-body {
    font-size: 16px;
    line-height: 20px;
}

.andes-typography-text-list.andes-typography--size-m.andes-typography--type-body,
p.andes-typography--size-m.andes-typography--type-body {
    margin: 0.75em 0px 0px;
}

.andes-typography-text-list.andes-typography--size-m.andes-typography--type-body:first-child,
p.andes-typography--size-m.andes-typography--type-body:first-child {
    margin: 0px;
}

.andes-typography--size-l.andes-typography--type-title {
    font-size: 28px;
    line-height: 35px;
    margin: 1.25em 0px 0px;
}

.andes-typography--size-l.andes-typography--type-title:first-child {
    margin: 0px;
}

.andes-typography--size-l.andes-typography--type-body {
    font-size: 18px;
    line-height: 22px;
}

.andes-typography-text-list.andes-typography--size-l.andes-typography--type-body,
p.andes-typography--size-l.andes-typography--type-body {
    margin: 0.77em 0px 0px;
}

.andes-typography-text-list.andes-typography--size-l.andes-typography--type-body:first-child,
p.andes-typography--size-l.andes-typography--type-body:first-child {
    margin: 0px;
}

.andes-typography--size-xl.andes-typography--type-title {
    font-size: 32px;
    line-height: 40px;
    margin: 1.25em 0px 0px;
}

.andes-typography--size-xl.andes-typography--type-title:first-child {
    margin: 0px;
}

.andes-typography--size-xl.andes-typography--type-body {
    font-size: 18px;
    line-height: 22px;
}

.andes-typography-text-list.andes-typography--size-xl.andes-typography--type-body,
p.andes-typography--size-xl.andes-typography--type-body {
    margin: 0.77em 0px 0px;
}

.andes-typography-text-list.andes-typography--size-xl.andes-typography--type-body:first-child,
p.andes-typography--size-xl.andes-typography--type-body:first-child {
    margin: 0px;
}

.andes-typography--color-primary,
.andes-typography-text-list__item-check-marker--color-primary {
    color: var(--andes-color-text-primary, rgba(0, 0, 0, .9));
}

.andes-typography--color-secondary,
.andes-typography-text-list__item-check-marker--color-secondary {
    color: var(--andes-color-text-secondary, rgba(0, 0, 0, .55));
}

.andes-typography--color-inverse,
.andes-typography-text-list__item-check-marker--color-inverse {
    color: var(--andes-color-text-inverse, #fff);
}

.andes-typography--color-accent,
.andes-typography-text-list__item-check-marker--color-accent {
    color: var(--andes-color-text-accent, var(--andes-color-blue-500, var(--andes-color-blue-500, #3483fa)));
}

.andes-typography--color-disabled,
.andes-typography-text-list__item-check-marker--color-disabled {
    color: var(--andes-color-text-disabled, rgba(0, 0, 0, .25));
}

.andes-typography--color-informative,
.andes-typography-text-list__item-check-marker--color-informative {
    color: var(--andes-color-feedback-text-informative-loud, var(--andes-color-blue-500, #3483fa));
}

.andes-typography--color-positive,
.andes-typography-text-list__item-check-marker--color-positive {
    color: var(--andes-color-feedback-text-positive-loud, #00a650);
}

.andes-typography--color-caution,
.andes-typography-text-list__item-check-marker--color-caution {
    color: var(--andes-color-feedback-text-caution-loud, #f73);
}

.andes-typography--color-negative,
.andes-typography-text-list__item-check-marker--color-negative {
    color: var(--andes-color-feedback-text-negative-loud, #f23d4f);
}

@media (min-width: 768px) {

    .andes-typography--color-link:hover,
    .andes-typography--color-link:hover .andes-typography-text-list__item-check-marker--color-link {
        color: var(--andes-color-text-link-hover, var(--andes-color-blue-600, #2968c8));
    }
}

.andes-typography--color-link,
.andes-typography-text-list__item-check-marker--color-link {
    color: var(--andes-color-text-link-default, var(--andes-color-blue-500, var(--andes-color-blue-500, #3483fa)));
}

.andes-typography--color-link:active,
.andes-typography--color-link:active .andes-typography-text-list__item-check-marker--color-link {
    color: var(--andes-color-text-link-active, var(--andes-color-blue-700, #1f4e96));
}

a.andes-typography--color-link {
    text-decoration: none;
}

@media (min-width: 768px) {

    .andes-typography--color-link-inverse:hover,
    .andes-typography--color-link-inverse:hover .andes-typography-text-list__item-check-marker--color-link-inverse {
        color: var(--andes-color-text-link-hover-inverse, #fff);
    }
}

.andes-typography--color-link-inverse,
.andes-typography-text-list__item-check-marker--color-link-inverse {
    color: var(--andes-color-text-link-default-inverse, #fff);
}

.andes-typography--color-link-inverse:active,
.andes-typography--color-link-inverse:active .andes-typography-text-list__item-check-marker--color-link-inverse {
    color: var(--andes-color-text-link-active-inverse, #fff);
}

a.andes-typography--color-link-inverse {
    text-decoration: none;
}

@media (min-width: 768px) {

    .andes-typography--color-selected:hover,
    .andes-typography--color-selected:hover .andes-typography-text-list__item-check-marker--color-selected {
        color: var(--andes-color-selected-text-hover, var(--andes-color-blue-600, #2968c8));
    }
}

.andes-typography--color-selected,
.andes-typography-text-list__item-check-marker--color-selected {
    color: var(--andes-color-selected-text-default, var(--andes-color-blue-500, #3483fa));
}

.andes-typography--color-selected:active,
.andes-typography--color-selected:active .andes-typography-text-list__item-check-marker--color-selected {
    color: var(--andes-color-selected-text-active, var(--andes-color-blue-700, #1f4e96));
}

.andes-typography-text-list__item-dot-marker {
    align-items: center;
    display: inline-flex;
    justify-content: center;
    left: 0px;
    position: absolute;
}

.andes-typography-text-list__item-number-marker {
    left: 0px;
    position: absolute;
}

.andes-typography-text-list__item-number-marker::before {
    content: counter(list-item) ".";
    position: absolute;
    text-align: center;
    width: 100%;
}

.andes-typography-text-list__item-check-marker {
    align-items: center;
    display: inline-flex;
    justify-content: center;
    left: 0px;
    position: absolute;
}

.andes-typography--size-xs.andes-typography-text-list__item {
    margin: 0.5em 0px 0px;
    padding-left: 22px;
}

.andes-typography--size-xs.andes-typography-text-list__item:first-child {
    margin: 0px;
}

.andes-typography--size-xs.andes-typography-text-list__item .andes-typography-text-list__item-dot-marker {
    margin-left: 11px;
    width: 5px;
}

.andes-typography--size-xs.andes-typography-text-list__item .andes-typography-text-list__item-number-marker {
    width: 18px;
}

.andes-typography--size-xs.andes-typography-text-list__item .andes-typography-text-list__item-check-marker {
    transform: translateY(-2px);
}

.andes-typography--size-s.andes-typography-text-list__item {
    margin: 0.5em 0px 0px;
    padding-left: 24px;
}

.andes-typography--size-s.andes-typography-text-list__item:first-child {
    margin: 0px;
}

.andes-typography--size-s.andes-typography-text-list__item .andes-typography-text-list__item-dot-marker {
    margin-left: 11px;
    width: 6px;
}

.andes-typography--size-s.andes-typography-text-list__item .andes-typography-text-list__item-number-marker {
    width: 20px;
}

.andes-typography--size-m.andes-typography-text-list__item {
    margin: 0.5em 0px 0px;
    padding-left: 28px;
}

.andes-typography--size-m.andes-typography-text-list__item:first-child {
    margin: 0px;
}

.andes-typography--size-m.andes-typography-text-list__item .andes-typography-text-list__item-dot-marker {
    margin-left: 14px;
    width: 6px;
}

.andes-typography--size-m.andes-typography-text-list__item .andes-typography-text-list__item-number-marker {
    width: 24px;
}

.andes-typography--size-l.andes-typography-text-list__item {
    margin: 0.55em 0px 0px;
    padding-left: 30px;
}

.andes-typography--size-l.andes-typography-text-list__item:first-child {
    margin: 0px;
}

.andes-typography--size-l.andes-typography-text-list__item .andes-typography-text-list__item-dot-marker {
    margin-left: 14px;
    width: 7px;
}

.andes-typography--size-l.andes-typography-text-list__item .andes-typography-text-list__item-number-marker {
    width: 26px;
}

.andes-typography--size-l.andes-typography-text-list__item .andes-typography-text-list__item-check-marker {
    transform: translateY(-1px);
}

.gsi-material-button {
    appearance: none;
    background-color: rgb(255, 255, 255);
    background-image: none;
    border: 1px solid rgb(229, 229, 229);
    border-radius: 5px;
    box-sizing: border-box;
    cursor: pointer;
    height: 3rem;
    outline: none;
    overflow: hidden;
    padding: 0px 0.75rem;
    position: relative;
    text-align: center;
    transition: background-color 0.218s, border-color 0.218s, box-shadow 0.218s;
    vertical-align: middle;
    white-space: nowrap;
    width: 20rem;
}

.gsi-material-button:hover {
    background-color: rgb(229, 229, 229);
}

.gsi-material-button .gsi-material-button-icon {
    height: 1.25rem;
    margin-right: 0.75rem;
    min-width: 1.25rem;
    width: 1.25rem;
}

.gsi-material-button .gsi-material-button-content-wrapper {
    align-items: center;
    display: flex;
    flex-flow: row;
    height: 100%;
    justify-content: center;
    position: relative;
    width: 100%;
}

.gsi-material-button .gsi-material-button-contents {
    flex-grow: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: top;
}

.gsi-material-button .gsi-material-button-state {
    inset: 0px;
    opacity: 0;
    position: absolute;
    transition: opacity 0.218s;
}

.google-button {
    width: 100%;
}

.google-button__container {
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    height: 2.375rem;
    width: calc(100% - 2px);
}

.google-button__content {
    height: 100%;
    position: relative;
}

.google-button>.google-button__container>.google-button__content>.google-button__spinner>.andes-progress-indicator-circular__container {
    margin: 0px;
}

.login-footer {
    display: flex;
    flex-direction: column-reverse;
}

.login-footer--default {
    background: rgb(255, 255, 255);
    border-top: 0.0625rem solid rgba(0, 0, 0, 0.1);
    height: auto;
    justify-content: center;
    padding: 1.75rem;
    text-align: center;
}

.login-footer--landscape {
    background-color: rgb(245, 245, 245);
    justify-content: space-between;
    padding: 1.75rem;
}

.login-footer__container {
    font-size: 0.75rem;
    line-height: 1.25;
}

.login-footer__container--privacy {
    align-items: center;
    display: flex;
    flex-direction: column;
}

.login-footer__container--recaptcha {
    display: flex;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.login-footer--default .login-footer__container {
    display: flex;
    flex-direction: column;
}

.login-footer__mercadolibre-copyright {
    margin: 0px 1rem;
}

.login-footer--landscape .login-footer__mercadolibre-copyright {
    margin: 0px;
}

.login-footer__recaptcha-link::before {
    color: rgba(0, 0, 0, 0.55);
    content: "-";
    margin-inline: 0.25rem;
}

@media (min-width: 768px) {

    .login-footer,
    .login-footer__container--privacy {
        flex-direction: row;
    }

    .login-footer__container--privacy {
        align-items: unset;
        display: flex;
    }

    .login-footer__container--recaptcha {
        margin-bottom: 0px;
    }

    .login-footer--landscape {
        padding: 1.75rem 2.5rem;
    }

    .login-footer--landscape .login-footer__mercadolibre-copyright::before {
        color: rgba(0, 0, 0, 0.55);
        content: "-";
        margin-inline: 0.25rem;
    }

    .login-footer__mercadolibre-copyright {
        margin: 0px 7rem;
    }
}

.andes-list {
    outline: none;
}

.andes-list:focus {
    box-shadow: none;
}

.andes-list:focus-visible {
    box-shadow: none;
}

.andes-list {
    font-family: "Proxima Nova", -apple-system, Roboto, Arial, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
    margin: 0px;
    padding: 0px;
    -webkit-font-smoothing: antialiased;
}

.andes-list-with-dividers .andes-list__item+.andes-list__item {
    border-top: 1px solid var(--andes-list-color-border, rgba(0, 0, 0, .1));
}

.andes-list-asset {
    margin-top: 0.5em;
}

.andes-list__item {
    background-color: var(--andes-list-color-surface-default, transparent);
    display: flex;
    justify-content: space-between;
    outline: none;
    padding: 0px 16px;
    position: relative;
}

.andes-list__item-anchor::before {
    content: "";
    height: 100%;
    left: 0px;
    position: absolute;
    top: 0px;
    width: 100%;
}

.andes-list__item-anchor:focus {
    box-shadow: none;
}

.andes-list__item-anchor:focus-visible {
    box-shadow: none;
}

.andes-list__item-anchor {
    display: flex;
    justify-content: space-between;
    margin: 0px -16px;
    outline: none;
    padding: 0px 16px;
    text-decoration: none;
    width: -webkit-fill-available;
}

.andes-list__item-anchor:link,
.andes-list__item-anchor:visited {
    color: var(--andes-list-color-title-default, rgba(0, 0, 0, .9));
}

.andes-list__item-action::before {
    content: "";
    height: 100%;
    left: 0px;
    position: absolute;
    top: 0px;
    width: 100%;
}

.andes-list__item-action:focus {
    box-shadow: none;
}

.andes-list__item-action:focus-visible {
    box-shadow: none;
}

.andes-list__item-action {
    align-items: center;
    background-color: transparent;
    border: 0px;
    display: flex;
    font-family: inherit;
    font-size: inherit;
    justify-content: space-between;
    line-height: 12px;
    margin: 0px -16px;
    outline: none;
    padding: 0px 18px;
    text-align: start;
    text-decoration: none;
    width: -webkit-fill-available;
}

.andes-list__item-action .andes-list__item-text {
    text-align: left;
}

.andes-list__item-action::before {
    cursor: pointer;
}

.andes-list__item-action:focus-visible::before,
.andes-list__item-action:focus::before,
.andes-list__item-anchor:focus-visible::before,
.andes-list__item-anchor:focus::before {
    box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--andes-color-blue-600, #2968c8), 0 0 0 5px var(--andes-color-blue-300, rgba(65, 137, 230, .3));
    display: inline-block;
}

.andes-list__item-action:focus:not(:focus-visible)::before,
.andes-list__item-anchor:focus:not(:focus-visible)::before {
    box-shadow: none;
    outline: none;
}

.andes-list__item-with-secondary {
    align-self: center;
}

.andes-list__item-first-column {
    align-items: center;
    display: flex;
    flex-grow: 4;
    margin-right: 12px;
}

.andes-list__item-second-column {
    display: inline-flex;
}

.andes-list__item-second-column-with-centered-text {
    align-self: center;
}

.andes-list__item-second-column .andes-list__item-tertiary {
    text-align: right;
}

.andes-list__item-second-column .andes-list__item-chevron {
    padding-left: 12px;
}

.andes-list__item-second-column .andes-list__item-chevron--centered {
    align-self: center;
}

.andes-list__item-second-column .andes-list__item-chevron--top {
    align-self: flex-start;
}

.andes-list__item-second-column .andes-list__item-chevron svg {
    color: var(--andes-list-chevron-color-icon-default, rgba(0, 0, 0, .55));
}

.andes-list__item-second-column a,
.andes-list__item-second-column button {
    position: relative;
    z-index: 1;
}

.andes-list__item-primary {
    color: var(--andes-list-color-title-default, rgba(0, 0, 0, .9));
    display: block;
}

.andes-list__item-primary--max-lines-1 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

.andes-list__item-primary--max-lines-2 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.andes-list__item-secondary {
    color: var(--andes-list-color-description-default, rgba(0, 0, 0, .55));
    display: block;
    font-size: 16px;
    line-height: 1;
    text-align: start;
}

.andes-list__item-tertiary {
    align-self: center;
    color: var(--andes-list-color-title-default, rgba(0, 0, 0, .9));
    display: block;
    text-wrap: nowrap;
}

.andes-list__item-tertiary-description {
    color: var(--andes-list-color-description-default, rgba(0, 0, 0, .55));
    display: block;
    font-size: 16px;
    line-height: 1;
    text-align: right;
}

.andes-list__item-tertiary--top {
    align-self: flex-start;
}

.andes-list__item-tertiary .andes-checkbox__label {
    margin-left: 0px;
}

.andes-list__item-tertiary>svg {
    color: var(--andes-list-color-icon-right, rgba(0, 0, 0, .9));
}

.andes-list__item-tertiary>svg>path[fill]:not([fill="none"])[fill="rgba(0, 0, 0, 0.9)"],
.andes-list__item-tertiary>svg[fill]:not([fill="none"])[fill="rgba(0, 0, 0, 0.9)"] {
    fill: var(--andes-list-color-icon-right, rgba(0, 0, 0, .9));
}

.andes-list__item-tertiary>svg>path[stroke]:not([stroke="none"])[stroke="rgba(0, 0, 0, 0.9)"],
.andes-list__item-tertiary>svg[stroke]:not([stroke="none"])[stroke="rgba(0, 0, 0, 0.9)"] {
    stroke: var(--andes-list-color-icon-right, rgba(0, 0, 0, .9));
}

.andes-list__item-tertiary-container--centered {
    align-self: center;
}

.andes-list__item-image {
    align-self: flex-start;
    border: 1px solid var(--andes-list-color-border, rgba(0, 0, 0, .1));
    border-radius: 50%;
    display: block;
}

.andes-list__item-asset {
    margin-bottom: auto;
}

.andes-list__item-asset--icon>svg {
    color: var(--andes-list-color-icon-left, rgba(0, 0, 0, .9));
}

.andes-list__item-asset--icon>svg>path[fill]:not([fill="none"])[fill="rgba(0, 0, 0, 0.9)"],
.andes-list__item-asset--icon>svg[fill]:not([fill="none"])[fill="rgba(0, 0, 0, 0.9)"] {
    fill: var(--andes-list-color-icon-left, rgba(0, 0, 0, .9));
}

.andes-list__item-asset--icon>svg>path[stroke]:not([stroke="none"])[stroke="rgba(0, 0, 0, 0.9)"],
.andes-list__item-asset--icon>svg[stroke]:not([stroke="none"])[stroke="rgba(0, 0, 0, 0.9)"] {
    stroke: var(--andes-list-color-icon-left, rgba(0, 0, 0, .9));
}

.andes-list__item-asset--icon-one-line {
    margin-bottom: 0px;
}

.andes-list__item--size-small {
    min-height: 40px;
}

.andes-list__item--size-small.andes-list__item-with-image .andes-list__item-second-column {
    align-self: center;
    height: 32px;
}

.andes-list__item--size-small .andes-list__item-first-column,
.andes-list__item--size-small .andes-list__item-second-column {
    padding: 11px 0px;
}

.andes-list__item--size-small .andes-list__item-asset {
    margin-right: 12px;
}

.andes-list__item--size-small .andes-list__item-asset .andes-thumbnail-container {
    height: 32px;
}

.andes-list__item--size-small .andes-list__item-asset--icon {
    margin-right: 0px;
}

.andes-list__item--size-small .andes-list__item-asset--icon>svg {
    margin-right: 8px;
}

.andes-list__item--size-small .andes-list__item-primary,
.andes-list__item--size-small .andes-list__item-tertiary {
    font-size: 14px;
    line-height: 18px;
}

.andes-list__item--size-small .andes-list__item-image {
    height: 36px;
    min-height: 36px;
    min-width: 36px;
    width: 36px;
}

.andes-list__item--size-medium {
    min-height: 48px;
}

.andes-list__item--size-medium.andes-list__item-with-secondary .andes-list__item-first-column,
.andes-list__item--size-medium.andes-list__item-with-secondary .andes-list__item-second-column {
    padding: 14px 0px 13px;
}

.andes-list__item--size-medium.andes-list__item-with-image .andes-list__item-second-column {
    align-self: center;
    height: 40px;
}

.andes-list__item--size-medium .andes-list__item-first-column,
.andes-list__item--size-medium .andes-list__item-second-column {
    padding: 14px 0px;
}

.andes-list__item--size-medium .andes-list__item-asset {
    margin-right: 16px;
}

.andes-list__item--size-medium .andes-list__item-asset .andes-thumbnail-container {
    height: 40px;
}

.andes-list__item--size-medium .andes-list__item-asset--icon {
    margin-right: 0px;
}

.andes-list__item--size-medium .andes-list__item-asset>svg {
    margin-right: 12px;
}

.andes-list__item--size-medium .andes-list__item-primary,
.andes-list__item--size-medium .andes-list__item-tertiary {
    font-size: 16px;
    line-height: 20px;
}

.andes-list__item--size-medium .andes-list__item-secondary,
.andes-list__item--size-medium .andes-list__item-tertiary-description {
    font-size: 14px;
    line-height: 18px;
    margin-top: 3px;
}

.andes-list__item--size-medium .andes-list__item-image {
    height: 38px;
    min-height: 38px;
    min-width: 38px;
    width: 38px;
}

.andes-list__item--size-large {
    min-height: 68px;
}

.andes-list__item--size-large.andes-list__item-with-secondary .andes-list__item-first-column,
.andes-list__item--size-large.andes-list__item-with-secondary .andes-list__item-second-column {
    padding: 24px 0px;
}

.andes-list__item--size-large.andes-list__item-with-image .andes-list__item-second-column {
    align-self: center;
    height: 56px;
}

.andes-list__item--size-large .andes-list__item-first-column,
.andes-list__item--size-large .andes-list__item-second-column {
    padding: 24px 0px 22px;
}

.andes-list__item--size-large .andes-list__item-asset {
    margin-right: 16px;
}

.andes-list__item--size-large .andes-list__item-asset .andes-thumbnail-container {
    height: 56px;
}

.andes-list__item--size-large .andes-list__item-asset--icon {
    margin-right: 0px;
}

.andes-list__item--size-large .andes-list__item-asset>svg {
    margin-right: 16px;
}

.andes-list__item--size-large .andes-list__item-primary,
.andes-list__item--size-large .andes-list__item-tertiary {
    line-height: 22px;
}

.andes-list__item--size-large .andes-list__item-secondary,
.andes-list__item--size-large .andes-list__item-tertiary-description {
    line-height: 20px;
    margin-top: 6px;
}

.andes-list__item--size-large .andes-list__item-image {
    height: 54px;
    min-height: 54px;
    min-width: 54px;
    width: 54px;
}

.andes-list__item--padding-0 {
    padding: 0px;
}

.andes-list__item--padding-16 {
    padding-left: 16px;
    padding-right: 16px;
}

.andes-list__item--padding-24 {
    padding-left: 24px;
    padding-right: 24px;
}

.andes-list__item--padding-32 {
    padding-left: 32px;
    padding-right: 32px;
}

.andes-list__item--padding-40 {
    padding-left: 40px;
    padding-right: 40px;
}

.andes-list__item-content {
    flex-basis: 100%;
}

.andes-list__item-content a,
.andes-list__item-content button {
    position: relative;
    z-index: 1;
}

.andes-list__item-actionable:focus {
    box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--andes-color-blue-600, #2968c8), 0 0 0 5px var(--andes-color-blue-300, rgba(65, 137, 230, .3));
    outline: none;
}

.andes-list__item-actionable:focus-visible {
    box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--andes-color-blue-600, #2968c8), 0 0 0 5px var(--andes-color-blue-300, rgba(65, 137, 230, .3));
    outline: none;
}

.andes-list__item-actionable:focus:not(:focus-visible) {
    box-shadow: none;
    outline: none;
}

.andes-list__item-actionable {
    background-color: transparent;
    border: 0px;
    cursor: pointer;
    display: block;
    height: 100%;
    inset: 0px;
    margin: 0px;
    outline: none;
    padding: 0px;
    position: absolute;
    text-align: start;
    text-decoration: none;
    width: 100%;
}

.andes-list__item-actionable:link,
.andes-list__item-actionable:visited {
    color: var(--andes-list-color-title-default, rgba(0, 0, 0, .9));
}

.andes-list__item--slotted .andes-list__item-selection-control.andes-listbox__item-selection-control {
    box-sizing: initial;
    height: 16px;
    margin-bottom: auto;
    min-height: 16px;
    min-width: 16px;
    padding: 0px;
    width: 16px;
}

.andes-list__item--slotted .andes-list__item-selection-control.andes-listbox__item-selection-control .andes-checkbox {
    display: block;
    height: inherit;
    min-height: inherit;
    min-width: inherit;
    padding: 0px;
    width: inherit;
}

.andes-list__item--slotted .andes-list__item-selection-control.andes-listbox__item-selection-control .andes-checkbox__checkbox {
    margin: 0px;
}

.andes-list__item--slotted .andes-list__item-chevron {
    box-sizing: initial;
    display: block;
    height: 20px;
    width: 20px;
}

.andes-list__item--slotted .andes-list__item-chevron svg {
    color: var(--andes-list-chevron-color-icon-default, rgba(0, 0, 0, .55));
}

.andes-list__item--slotted.andes-list__item--size-small .andes-list__item-selection-control {
    padding: 12px 12px 0px 0px;
}

.andes-list__item--slotted.andes-list__item--size-small .andes-list__item-chevron {
    padding: 10px 0px 10px 12px;
}

.andes-list__item--slotted.andes-list__item--size-medium .andes-list__item-selection-control {
    padding: 16px 16px 0px 0px;
}

.andes-list__item--slotted.andes-list__item--size-medium .andes-list__item-chevron {
    padding: 14px 0px 14px 12px;
}

.andes-list__item--slotted.andes-list__item--size-large .andes-list__item-selection-control {
    padding: 26px 24px 0px 0px;
}

.andes-list__item--slotted.andes-list__item--size-large .andes-list__item-chevron {
    padding: 24px 0px 24px 12px;
}

.andes-list__group {
    list-style: none;
}

.andes-list__group--header {
    align-items: flex-end;
    background-color: var(--andes-list-group-header-color-fill, transparent);
    color: var(--andes-list-group-header-color-text, rgba(0, 0, 0, .55));
    cursor: default;
    display: flex;
    font-size: 12px;
    font-weight: 600;
    justify-content: space-between;
    padding: 0px 16px;
}

.andes-list__group--sublist {
    padding: 0px;
}

.andes-list__group::marker {
    content: "";
}

.andes-list__group--with-dividers .andes-list__item+.andes-list__item {
    border-top: 1px solid var(--andes-list-group-header-color-border, rgba(0, 0, 0, .55));
}

.andes-list__group--size-small .andes-list__group--header {
    height: 40px;
    line-height: 15px;
    padding-bottom: 6px;
}

.andes-list__group--size-medium .andes-list__group--header {
    height: 48px;
    line-height: 15px;
    padding-bottom: 8px;
}

.andes-list__group--size-large .andes-list__group--header {
    font-size: 14px;
    height: 68px;
    line-height: 18px;
    padding-bottom: 11px;
}

.andes-list__group--padding-0 .andes-list__group--header {
    padding-left: 0px;
    padding-right: 0px;
}

.andes-list__group--padding-16 .andes-list__group--header {
    padding-left: 16px;
    padding-right: 16px;
}

.andes-list__group--padding-24 .andes-list__group--header {
    padding-left: 24px;
    padding-right: 24px;
}

.andes-list__group--padding-32 .andes-list__group--header {
    padding-left: 32px;
    padding-right: 32px;
}

.andes-list__group--padding-40 .andes-list__group--header {
    padding-left: 40px;
    padding-right: 40px;
}

.andes-list--dropdown .andes-list__item-secondary,
.andes-list--dropdown .andes-list__item-tertiary {
    display: none;
}

.andes-list--dropdown .andes-list__item--size-medium.andes-list__item-with-image,
.andes-list--dropdown .andes-list__item--size-medium.andes-list__item-with-secondary {
    height: 48px;
}

.andes-list--dropdown .andes-list__item--size-large.andes-list__item-with-image,
.andes-list--dropdown .andes-list__item--size-large.andes-list__item-with-secondary {
    height: 68px;
}

.andes-list--dropdown .andes-list__item-with-image .andes-list__item-first-column .andes-list__item-asset>svg,
.andes-list--dropdown .andes-list__item-with-secondary .andes-list__item-first-column .andes-list__item-asset>svg {
    padding-bottom: 0px;
}

.andes-list--selectable .andes-list__item:active,
.andes-list--selectable .andes-list__item:hover,
.andes-list__item--selectable .andes-list__item:active,
.andes-list__item--selectable .andes-list__item:hover {
    background-color: var(--andes-list-color-surface-default, transparent);
}

.andes-list--selectable .andes-list__item:active .andes-list__item-chevron,
.andes-list--selectable .andes-list__item:hover .andes-list__item-chevron,
.andes-list__item--selectable .andes-list__item:active .andes-list__item-chevron,
.andes-list__item--selectable .andes-list__item:hover .andes-list__item-chevron {
    color: var(--andes-list-chevron-color-icon-default, rgba(0, 0, 0, .55));
}

@media (min-width: 768px) {

    .andes-list--selectable .andes-list__item:hover,
    .andes-list__item--selectable .andes-list__item:hover {
        background-color: var(--andes-list-color-surface-hover, rgba(0, 0, 0, .04));
    }

    .andes-list--selectable .andes-list__item:hover .andes-list__item-chevron svg,
    .andes-list__item--selectable .andes-list__item:hover .andes-list__item-chevron svg {
        color: var(--andes-list-chevron-color-icon-hover, rgba(0, 0, 0, .15));
    }

    .andes-list--selectable .andes-list__item:active,
    .andes-list__item--selectable .andes-list__item:active {
        background-color: var(--andes-list-color-surface-active, rgba(0, 0, 0, .07));
    }

    .andes-list--selectable .andes-list__item:active .andes-list__item-chevron svg,
    .andes-list__item--selectable .andes-list__item:active .andes-list__item-chevron svg {
        color: var(--andes-list-chevron-color-icon-active, rgba(0, 0, 0, .8));
    }
}

.andes-list--selectable .andes-list__item,
.andes-list__item--selectable .andes-list__item {
    cursor: pointer;
}

.andes-list--selectable .andes-list__item:hover,
.andes-list__item--selectable .andes-list__item:hover {
    transition: background-color 0.1s ease-out;
}

.andes-list--selectable .andes-list__item--disabled,
.andes-list__item--selectable .andes-list__item--disabled {
    background-color: var(--andes-list-color-surface-disabled, transparent);
    cursor: default;
}

.andes-list--selectable .andes-list__item--disabled:active,
.andes-list--selectable .andes-list__item--disabled:hover,
.andes-list__item--selectable .andes-list__item--disabled:active,
.andes-list__item--selectable .andes-list__item--disabled:hover {
    background-color: var(--andes-list-color-surface-disabled, #fff);
}

.andes-list--selectable .andes-list__item--disabled .andes-list__item-chevron svg,
.andes-list--selectable .andes-list__item--disabled:active .andes-list__item-chevron svg,
.andes-list--selectable .andes-list__item--disabled:hover .andes-list__item-chevron svg,
.andes-list__item--selectable .andes-list__item--disabled .andes-list__item-chevron svg,
.andes-list__item--selectable .andes-list__item--disabled:active .andes-list__item-chevron svg,
.andes-list__item--selectable .andes-list__item--disabled:hover .andes-list__item-chevron svg {
    color: var(--andes-list-chevron-color-icon-disabled, rgba(0, 0, 0, .25));
}

.andes-list__item--disabled:active,
.andes-list__item--disabled:hover {
    background: var(--andes-list-color-surface-disabled, transparent);
}

.andes-list__item--disabled.andes-list__item--selectable .andes-list__item-chevron svg {
    color: var(--andes-list-chevron-color-icon-disabled, rgba(0, 0, 0, .25));
}

.andes-list__item--disabled .andes-list__item-primary,
.andes-list__item--disabled .andes-list__item-tertiary {
    color: var(--andes-list-color-title-disabled, rgba(0, 0, 0, .25));
}

.andes-list__item--disabled .andes-list__item-secondary {
    color: var(--andes-list-color-description-disabled, rgba(0, 0, 0, .25));
}

.andes-list__item--disabled .andes-list__item-primary {
    pointer-events: none;
}

.andes-list__item--disabled .andes-list__item-first-column .andes-list__item-asset>svg path {
    fill: var(--andes-list-color-icon-disabled, rgba(0, 0, 0, .25));
}

.andes-list__item--disabled.andes-list__item--selected:active::before,
.andes-list__item--disabled.andes-list__item--selected::before,
.andes-list__item--disabled.andes-list__item--selected:hover::before {
    border-left: 0.111111em solid rgba(0, 0, 0, 0.25);
}

.andes-list__item--disabled.andes-list__item--selected .andes-list__item-primary,
.andes-list__item--disabled.andes-list__item--selected:active .andes-list__item-primary,
.andes-list__item--disabled.andes-list__item--selected:hover .andes-list__item-primary {
    color: var(--andes-list-color-title-disabled, rgba(0, 0, 0, .25));
}

.andes-list__item--disabled.andes-list__item--selected .andes-list__item-first-column .andes-list__item-asset.andes-list__item-asset--icon>svg,
.andes-list__item--disabled.andes-list__item--selected:active .andes-list__item-first-column .andes-list__item-asset.andes-list__item-asset--icon>svg,
.andes-list__item--disabled.andes-list__item--selected:hover .andes-list__item-first-column .andes-list__item-asset.andes-list__item-asset--icon>svg {
    color: var(--andes-list-color-icon-disabled, rgba(0, 0, 0, .25));
}

.andes-list__item--disabled.andes-list__item--selected .andes-list__item-first-column .andes-list__item-asset.andes-list__item-asset--icon>svg path,
.andes-list__item--disabled.andes-list__item--selected:active .andes-list__item-first-column .andes-list__item-asset.andes-list__item-asset--icon>svg path,
.andes-list__item--disabled.andes-list__item--selected:hover .andes-list__item-first-column .andes-list__item-asset.andes-list__item-asset--icon>svg path {
    fill: var(--andes-list-color-icon-disabled, rgba(0, 0, 0, .25));
}

.andes-list__item--disabled.andes-list__item--selected.andes-list__item-with-selection-component .andes-list__item-primary,
.andes-list__item--disabled.andes-list__item--selected:active.andes-list__item-with-selection-component .andes-list__item-primary,
.andes-list__item--disabled.andes-list__item--selected:hover.andes-list__item-with-selection-component .andes-list__item-primary,
.andes-list__item--disabled.andes-list__item--slotted {
    color: var(--andes-list-color-title-disabled, rgba(0, 0, 0, .25));
}

.andes-list__item--selected {
    position: relative;
}

.andes-list__item--selected::before {
    left: 2px;
    position: absolute;
}

.andes-list__item--selected-padding-0::before,
.andes-list__item--selected::before {
    border-left: .1111111111em solid var(--andes-list-pick-list-color-selected-pipe-default, var(--andes-color-blue-500, var(--andes-color-blue-500, #3483fa)));
    border-radius: 1.5px;
    bottom: 2px;
    content: "";
    top: 2px;
}

.andes-list__item--selected-padding-0::before {
    left: 0px;
}

.andes-list__item--selected .andes-list__item-primary {
    color: var(--andes-list-pick-list-color-selected-title-default, var(--andes-color-blue-500, var(--andes-color-blue-500, #3483fa)));
    font-weight: 600;
}

.andes-list__item--selected.andes-list__item-with-selection-component::before {
    border-left: 0px;
}

.andes-list__item--selected.andes-list__item-with-selection-component .andes-list__item-primary,
.andes-list__item--selected.andes-list__item-with-selection-component:active .andes-list__item-primary,
.andes-list__item--selected.andes-list__item-with-selection-component:hover .andes-list__item-primary {
    color: var(--andes-list-color-title-default, rgba(0, 0, 0, .9));
    font-weight: 400;
}

.andes-list__item--selected:hover.andes-list__item--selected-padding-0::before,
.andes-list__item--selected:hover::before {
    border-left-color: var(--andes-list-pick-list-color-selected-pipe-hover, var(--andes-color-blue-600, #2968c8));
}

.andes-list__item--selected:hover .andes-list__item-primary {
    color: var(--andes-list-pick-list-color-selected-title-hover, var(--andes-color-blue-600, #2968c8));
}

.andes-list__item--selected:hover:not(.andes-form-control--split-item) .andes-list__item-first-column .andes-list__item-asset>svg path {
    fill: var(--andes-list-pick-list-color-selected-icon-hover, var(--andes-color-blue-600, #2968c8));
}

.andes-list__item--selected:active.andes-list__item--selected--padding-0::before,
.andes-list__item--selected:active::before {
    border-left-color: var(--andes-list-pick-list-color-selected-pipe-active, var(--andes-color-blue-700, #1f4e96));
}

.andes-list__item--selected:active .andes-list__item-primary {
    color: var(--andes-list-pick-list-color-selected-title-active, var(--andes-color-blue-700, #1f4e96));
}

.andes-list__item--selected:active:not(.andes-form-control--split-item) .andes-list__item-first-column .andes-list__item-asset>svg path {
    fill: var(--andes-list-pick-list-color-selected-icon-active, var(--andes-color-blue-700, #1f4e96));
}

.andes-list__item--selected:not(.andes-form-control--split-item) .andes-list__item-first-column .andes-list__item-asset>svg path {
    fill: var(--andes-list-pick-list-color-selected-icon-default, var(--andes-color-blue-500, var(--andes-color-blue-500, #3483fa)));
}

.security-problem {
    border-radius: 8px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 6px 16px 0px;
    margin: 0px 0px 0.5rem;
    width: 100%;
}

.andes-list__item-second-column .andes-list__item-chevron--top {
    align-self: center;
    display: flex;
}

.andes-list__item--size-small .andes-list__item-second-column {
    height: inherit;
}

.andes-list__item-text {
    margin-left: 0.75rem;
    width: max-content;
}

@media screen and (min-width: 1024px) {
    .security-problem {
        box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 2px 0px;
        margin-bottom: 1.5rem;
        width: 20.25rem;
    }
}

body[data-site="ML"],
body[data-site="MP"] {
    background-color: rgb(255, 255, 255);
}

.no-wrap-text {
    white-space: nowrap;
}

.login-form {
    padding-top: 1rem;
    width: 100%;
}

.login-form__input {
    width: 100%;
}

.login-form__actions {
    display: flex;
    flex-direction: column;
    margin: 0.75rem 0px 2rem;
}

.login-form__actions #registration-link {
    margin-top: 0.5rem;
}

.login-form__challenge-divider {
    align-items: center;
    display: flex;
    margin: 0.5rem 0px 1rem;
}

.login-form__divider {
    border-width: 0px 0px 1px;
    border-top-style: initial;
    border-right-style: initial;
    border-left-style: initial;
    border-top-color: initial;
    border-right-color: initial;
    border-left-color: initial;
    border-image: initial;
    border-bottom-style: solid;
    border-bottom-color: rgba(0, 0, 0, 0.1);
    height: 0.0625rem;
    width: 100%;
}

.login-form__o {
    margin: 0px 1.25rem;
}

#login-form__oauth-container {
    display: flex;
    min-height: 2.5rem;
}

#login-form__oauth-container .google-button {
    display: flex;
    justify-content: center;
}

#login-form__oauth-container .google-button>div>div>div:focus-visible:focus {
    box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--andes-color-blue-600, #2968c8), 0 0 0 5px var(--andes-color-blue-300, rgba(65, 137, 230, .3));
    outline: none;
}

#login-form__oauth-container .google-button>div>div>div:focus-visible:focus-visible {
    box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--andes-color-blue-600, #2968c8), 0 0 0 5px var(--andes-color-blue-300, rgba(65, 137, 230, .3));
    outline: none;
}

#login-form__oauth-container .google-button>div>div>div:focus-visible:focus:not(:focus-visible) {
    box-shadow: none;
    outline: none;
}

#login-form__oauth-container .google-button>div>div>div:focus-visible {
    border-color: rgb(255, 255, 255);
    transition: box-shadow 0.25s ease-out, background-color 0.2s ease-out;
}

.andes-button--fetching,
.andes-progress-indicator-circular__container {
    margin: 0.25rem 0px 0px 0.75rem;
}

.grid-view__container>.grid-view__main>.grid-view__section--headers {
    margin-top: 1rem;
}

.grid-view__container>.grid-view__main>.grid-view__section--headers.grid-view__section--headers-native {
    margin-top: 0px;
}

.grid-view__container>.grid-view__main>.grid-view__section--help>.grid-view__help-section>.grid-view__help-link {
    border: none;
}

.grid-view__title {
    max-width: calc(-40px + 100vw);
    overflow: hidden;
    text-overflow: ellipsis;
}

.cx-widget {
    height: inherit !important;
    top: 0px !important;
}

@media only screen and (min-width: 1024px) {
    .login-form {
        box-sizing: border-box;
        padding: 2rem;
        width: 29rem;
    }

    .login-form .input-error__link {
        cursor: pointer;
    }

    .login-form__actions {
        flex-direction: row;
        margin: 0.75rem 0px 0px;
    }

    .login-form__actions--social {
        flex-direction: column;
    }

    .login-form__actions #registration-link {
        margin: 0px;
    }

    .login-form__submit {
        margin-right: 0.5rem;
    }

    .login-form__submit--social {
        margin: 0px 0px 0.5rem;
    }

    .login-form .andes-button {
        display: inline-block;
        line-height: 1;
        width: auto;
    }

    .login-form .andes-button+.andes-button {
        margin: 0px;
    }

    .security-problem {
        margin-top: 9rem;
        width: 100%;
    }

    .security-problem-social {
        margin-top: 18rem;
    }

    .grid-view__container>.grid-view__main>.grid-view__section--headers {
        margin-top: 0px;
    }

    .grid-view__help-section {
        width: 100%;
    }

    .grid-view__title {
        max-width: unset;
    }

    #root-app {
        display: flex;
        flex-direction: column;
        height: calc(-48px + 100dvh);
    }

    body[data-site="MP"] #root-app {
        height: calc(-64px + 100dvh);
    }

    .identification {
        display: flex;
        flex-direction: column;
    }

    .grid-view__container,
    .identification {
        flex: 1 1 0%;
    }
}

.ln-chevron {
    width: 8px;
    fill: rgba(0, 0, 0, 0.55);
}

.ln-chevron--down {
    transform: rotate(90deg);
}

.ln-icon {
    position: relative;
    width: 24px;
    height: 24px;
    mask-size: cover;
    background: rgb(0, 0, 0);
    opacity: 0.45;
}

.ln-icon.digital_account__crypto {
    mask: url("data:image/svg+xml,%3C%3Fxml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"%3F%3E%3Csvg xmlns:dc=\"http://purl.org/dc/elements/1.1/\" xmlns:cc=\"http://creativecommons.org/ns%23\" xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns%23\" xmlns:svg=\"http://www.w3.org/2000/svg\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:sodipodi=\"http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd\" xmlns:inkscape=\"http://www.inkscape.org/namespaces/inkscape\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" version=\"1.1\" id=\"svg13\" sodipodi:docname=\"icon_crypto.svg\"%3E%3Cmetadata id=\"metadata19\"%3E%3Crdf:RDF%3E%3Ccc:Work rdf:about=\"\"%3E%3Cdc:format%3Eimage/svg+xml%3C/dc:format%3E%3Cdc:type rdf:resource=\"http://purl.org/dc/dcmitype/StillImage\" /%3E%3C/cc:Work%3E%3C/rdf:RDF%3E%3C/metadata%3E%3Cdefs id=\"defs17\" /%3E%3Csodipodi:namedview pagecolor=\"%23ffffff\" bordercolor=\"%23666666\" borderopacity=\"1\" objecttolerance=\"10\" gridtolerance=\"10\" guidetolerance=\"10\" inkscape:pageopacity=\"0\" inkscape:pageshadow=\"2\" inkscape:window-width=\"640\" inkscape:window-height=\"480\" id=\"namedview15\" /%3E%3Ccircle cx=\"12\" cy=\"12\" r=\"10.5\" stroke=\"black\" stroke-width=\"1.5\" id=\"circle2\" /%3E%3Cmask id=\"path-2-outside-1_929_37523\" maskUnits=\"userSpaceOnUse\" x=\"7\" y=\"5.4502\" width=\"10\" height=\"13\" fill=\"black\"%3E%3Crect fill=\"white\" x=\"7\" y=\"5.4502\" width=\"10\" height=\"13\" id=\"rect4\" /%3E%3Cpath d=\"M14.6293 11.8014C15.1712 11.3603 15.5128 10.7203 15.5128 10.0041C15.5128 8.68605 14.3495 7.60764 12.9212 7.60764V6.4502H12.0553V7.60764H10.1116V6.4502H9.2487V7.60764H8V8.40828H9.25164V15.5922H8V16.3928H9.25164V17.5502H10.1145V16.3901H10.6299L12.0553 16.3928V17.5502H12.9212V16.3928L13.5985 16.3901C15.0239 16.3901 16.1902 15.3144 16.1902 13.9936C16.1872 13.016 15.5452 12.1691 14.6293 11.8014ZM12.9182 8.40828C13.8695 8.40828 14.644 9.12721 14.644 10.0041C14.644 10.8837 13.8695 11.5999 12.9182 11.5999H10.1116V8.40828H12.9182ZM13.5956 15.5895H10.1116V12.4006H13.5926C14.5439 12.4006 15.3155 13.114 15.3155 13.9936C15.3155 14.8733 14.5468 15.5895 13.5956 15.5895Z\" id=\"path6\" /%3E%3C/mask%3E%3Cpath d=\"M14.6293 11.8014C15.1712 11.3603 15.5128 10.7203 15.5128 10.0041C15.5128 8.68605 14.3495 7.60764 12.9212 7.60764V6.4502H12.0553V7.60764H10.1116V6.4502H9.2487V7.60764H8V8.40828H9.25164V15.5922H8V16.3928H9.25164V17.5502H10.1145V16.3901H10.6299L12.0553 16.3928V17.5502H12.9212V16.3928L13.5985 16.3901C15.0239 16.3901 16.1902 15.3144 16.1902 13.9936C16.1872 13.016 15.5452 12.1691 14.6293 11.8014ZM12.9182 8.40828C13.8695 8.40828 14.644 9.12721 14.644 10.0041C14.644 10.8837 13.8695 11.5999 12.9182 11.5999H10.1116V8.40828H12.9182ZM13.5956 15.5895H10.1116V12.4006H13.5926C14.5439 12.4006 15.3155 13.114 15.3155 13.9936C15.3155 14.8733 14.5468 15.5895 13.5956 15.5895Z\" fill=\"black\" id=\"path9\" /%3E%3Cpath d=\"M14.6293 11.8014L14.4083 11.53L13.9477 11.905L14.4989 12.1262L14.6293 11.8014ZM12.9212 7.60764H12.5712V7.95764H12.9212V7.60764ZM12.9212 6.4502H13.2712V6.1002H12.9212V6.4502ZM12.0553 6.4502V6.1002H11.7053V6.4502H12.0553ZM12.0553 7.60764V7.95764H12.4053V7.60764H12.0553ZM10.1116 7.60764H9.76159V7.95764H10.1116V7.60764ZM10.1116 6.4502H10.4616V6.1002H10.1116V6.4502ZM9.2487 6.4502V6.1002H8.8987V6.4502H9.2487ZM9.2487 7.60764V7.95764H9.5987V7.60764H9.2487ZM8 7.60764V7.25764H7.65V7.60764H8ZM8 8.40828H7.65V8.75828H8V8.40828ZM9.25164 8.40828H9.60164V8.05828H9.25164V8.40828ZM9.25164 15.5922V15.9422H9.60164V15.5922H9.25164ZM8 15.5922V15.2422H7.65V15.5922H8ZM8 16.3928H7.65V16.7428H8V16.3928ZM9.25164 16.3928H9.60164V16.0428H9.25164V16.3928ZM9.25164 17.5502H8.90164V17.9002H9.25164V17.5502ZM10.1145 17.5502V17.9002H10.4645V17.5502H10.1145ZM10.1145 16.3901V16.0401H9.76454V16.3901H10.1145ZM10.6299 16.3901L10.6306 16.0401H10.6299V16.3901ZM12.0553 16.3928H12.4053V16.0435L12.056 16.0428L12.0553 16.3928ZM12.0553 17.5502H11.7053V17.9002H12.0553V17.5502ZM12.9212 17.5502V17.9002H13.2712V17.5502H12.9212ZM12.9212 16.3928L12.9198 16.0428L12.5712 16.0442V16.3928H12.9212ZM13.5985 16.3901V16.0401L13.5971 16.0401L13.5985 16.3901ZM16.1902 13.9936H16.5402L16.5402 13.9926L16.1902 13.9936ZM10.1116 11.5999H9.76159V11.9499H10.1116V11.5999ZM10.1116 8.40828V8.05828H9.76159V8.40828H10.1116ZM10.1116 15.5895H9.76159V15.9395H10.1116V15.5895ZM10.1116 12.4006V12.0506H9.76159V12.4006H10.1116ZM14.8503 12.0729C15.4648 11.5726 15.8628 10.8367 15.8628 10.0041H15.1628C15.1628 10.6039 14.8776 11.148 14.4083 11.53L14.8503 12.0729ZM15.8628 10.0041C15.8628 8.4677 14.5168 7.25764 12.9212 7.25764V7.95764C14.1822 7.95764 15.1628 8.9044 15.1628 10.0041H15.8628ZM13.2712 7.60764V6.4502H12.5712V7.60764H13.2712ZM12.9212 6.1002H12.0553V6.8002H12.9212V6.1002ZM11.7053 6.4502V7.60764H12.4053V6.4502H11.7053ZM10.4616 7.60764V6.4502H9.76159V7.60764H10.4616ZM10.1116 6.1002H9.2487V6.8002H10.1116V6.1002ZM8.8987 6.4502V7.60764H9.5987V6.4502H8.8987ZM9.2487 7.25764H8V7.95764H9.2487V7.25764ZM7.65 7.60764V8.40828H8.35V7.60764H7.65ZM8 8.75828H9.25164V8.05828H8V8.75828ZM8.90164 8.40828V15.5922H9.60164V8.40828H8.90164ZM9.25164 15.2422H8V15.9422H9.25164V15.2422ZM7.65 15.5922V16.3928H8.35V15.5922H7.65ZM8 16.7428H9.25164V16.0428H8V16.7428ZM8.90164 16.3928V17.5502H9.60164V16.3928H8.90164ZM9.25164 17.9002H10.1145V17.2002H9.25164V17.9002ZM10.4645 17.5502V16.3901H9.76454V17.5502H10.4645ZM10.1145 16.7401H10.6299V16.0401H10.1145V16.7401ZM10.6293 16.7401L12.0547 16.7428L12.056 16.0428L10.6306 16.0401L10.6293 16.7401ZM11.7053 16.3928V17.5502H12.4053V16.3928H11.7053ZM12.0553 17.9002H12.9212V17.2002H12.0553V17.9002ZM13.2712 17.5502V16.3928H12.5712V17.5502H13.2712ZM12.9226 16.7428L13.5999 16.7401L13.5971 16.0401L12.9198 16.0428L12.9226 16.7428ZM13.5985 16.7401C15.1906 16.7401 16.5402 15.5333 16.5402 13.9936H15.8402C15.8402 15.0956 14.8572 16.0401 13.5985 16.0401V16.7401ZM16.5402 13.9926C16.5367 12.8552 15.7912 11.8907 14.7597 11.4766L14.4989 12.1262C15.2991 12.4475 15.8377 13.1768 15.8402 13.9947L16.5402 13.9926ZM12.9182 8.75828C13.7021 8.75828 14.294 9.34544 14.294 10.0041H14.994C14.994 8.90899 14.0369 8.05828 12.9182 8.05828V8.75828ZM14.294 10.0041C14.294 10.6651 13.7025 11.2499 12.9182 11.2499V11.9499C14.0365 11.9499 14.994 11.1023 14.994 10.0041H14.294ZM12.9182 11.2499H10.1116V11.9499H12.9182V11.2499ZM10.4616 11.5999V8.40828H9.76159V11.5999H10.4616ZM10.4616 15.5895V12.4006H9.76159V15.5895H10.4616ZM13.5926 12.7506C14.3769 12.7506 14.9655 13.3326 14.9655 13.9936H15.6655C15.6655 12.8954 14.7109 12.0506 13.5926 12.0506V12.7506ZM14.9655 13.9936C14.9655 14.6562 14.3782 15.2395 13.5956 15.2395V15.9395C14.7154 15.9395 15.6655 15.0904 15.6655 13.9936H14.9655ZM12.0553 7.25764H10.1116V7.95764H12.0553V7.25764ZM10.1116 8.75828H12.9182V8.05828H10.1116V8.75828ZM13.5956 15.2395H10.1116V15.9395H13.5956V15.2395ZM10.1116 12.7506H13.5926V12.0506H10.1116V12.7506Z\" fill=\"black\" mask=\"url(%23path-2-outside-1_929_37523)\" id=\"path11\" /%3E%3C/svg%3E%0A");
}

.ln-icon.digital_account__header {
    mask: url("data:image/svg+xml,%3Csvg width=\"24\" height=\"24\" xmlns=\"http://www.w3.org/2000/svg\"%3E%3Cg fill=\"none\" fill-rule=\"evenodd\"%3E%3Cpath d=\"M0 0h24v24H0z\"%3E%3C/path%3E%3Cpath d=\"M0 0h24v24H0z\"%3E%3C/path%3E%3Cpath d=\"M15.272 1.482a2.75 2.75 0 012.745 2.583l.005.167v3.296h-1.5l-.001-1.56H6.03v13.768c0 .647.492 1.18 1.122 1.243l.128.007h7.992a1.25 1.25 0 001.243-1.122l.007-.128v-.216h1.5v.216a2.75 2.75 0 01-2.583 2.745l-.167.005H7.28a2.75 2.75 0 01-2.745-2.583l-.005-.167V4.232a2.75 2.75 0 012.583-2.745l.167-.005h7.992zm7.247 7.503v9.013H9.027V8.985H22.52zm-1.501 1.5H10.527v6.012h10.491v-6.012zm-5.245 1.006a2 2 0 110 4 2 2 0 010-4zm0 1.5a.5.5 0 100 1 .5.5 0 000-1zm-.501-10.009H7.28a1.25 1.25 0 00-1.244 1.123l-.006.127v.235h10.491v-.235A1.25 1.25 0 0015.4 2.99l-.127-.007z\" fill=\"%23000\" fill-rule=\"nonzero\"%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
}

.ln-icon.digital_account__qr {
    mask: url("data:image/svg+xml,%3Csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\"%3E%3Cpath d=\"M2.75 19v2.25H5v1.5H1.25V19h1.5zm20 0v3.75H19v-1.5h2.25V19h1.5zm-3.5-14.25v14.5H4.75V4.75h14.5zm-1.5 1.5H6.25v11.5h11.5V6.25zM16 8v8H8V8h8zm-1.5 1.5h-5v5h5v-5zM5 1.25v1.5H2.75V5h-1.5V1.25H5zm17.75 0V5h-1.5V2.75H19v-1.5h3.75z\" fill=\"%23000\" fill-rule=\"nonzero\"/%3E%3C/svg%3E");
}

.ln-icon.digital_account__services_cellphone_recharge {
    mask: url("data:image/svg+xml,%3Csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\"%3E%3Cpath d=\"M15.13 1.685l4.287 4.287V12h-1.5l-.001-5.407-3.41-3.41H6.08v17.63h6.45v1.5H4.58V1.685h10.55zm2.39 11.925l-.001 1.04.02.007c.77.263 1.25.9 1.335 1.688l.012.17.007.207h-1.34l-.008-.192c-.02-.514-.268-.76-.863-.76-.605 0-.953.26-.953.633 0 .305.24.514.97.73l.164.047c1.412.383 2.154.974 2.154 2.18-.005.853-.507 1.445-1.317 1.712l-.18.052.001 1.01h-1.68V21.11l-.015-.003c-.843-.243-1.426-.84-1.538-1.694l-.016-.174-.01-.21h1.334l.017.182c.046.494.37.768 1.074.768.677 0 .95-.262.95-.607 0-.383-.232-.64-.966-.848l-.165-.044c-1.413-.362-2.155-.99-2.155-2.058 0-.814.52-1.44 1.315-1.73l.176-.058V13.6h1.68zm-6.687-1.638v1.5H7.673v-1.5h3.163zm5.502-3.72v1.5H7.673v-1.5h8.665z\" fill=\"%23000\" fill-rule=\"nonzero\"/%3E%3C/svg%3E");
}

.ln-icon.digital_account__transport_card {
    mask: url("data:image/svg+xml,%3Csvg width=\"24\" height=\"24\" xmlns=\"http://www.w3.org/2000/svg\"%3E%3Cg fill=\"none\" fill-rule=\"evenodd\"%3E%3Cpath d=\"M0 0h24v24H0z\"/%3E%3Cpath d=\"M12.05 1.48c4.17 0 7.92 1.9 8.16 5.2l.62 9.64a4.35 4.35 0 01.01.3c0 2.19-1.6 4-3.7 4.3v1.47h-1.5v-1.41H8.43v1.4h-1.5v-1.44a4.35 4.35 0 01-3.75-4.62l.62-9.64c.24-3.3 3.99-5.2 8.16-5.2zM19.2 14.2H4.81l-.15 2.21a2.85 2.85 0 000 .1v.1a2.85 2.85 0 002.85 2.86h8.98a2.85 2.85 0 002.85-3.06l-.15-2.21zm-12 1.7a.9.9 0 110 1.8.9.9 0 010-1.8zm9.62 0a.9.9 0 110 1.8.9.9 0 010-1.8zm2-7.55H5.2L4.9 12.7h14.18l-.28-4.35zm-6.76-5.38h-.1c-3.49 0-6.5 1.53-6.66 3.8v.08H18.7v-.07c-.16-2.23-3.02-3.73-6.4-3.81h-.26z\" fill=\"%23000\" fill-rule=\"nonzero\"/%3E%3C/g%3E%3C/svg%3E");
}

.ln-icon.digital_account__money_transfer,
.ln-icon.digital_account__ingresar_transferir {
    mask: url("data:image/svg+xml,%3Csvg xmlns=\"http://www.w3.org/2000/svg\" height=\"24\" width=\"24\"%3E%3Cpath d=\"M22.466 13.128v6.33H3.31l2.094 2.094-1.06 1.06-3.905-3.905 3.905-3.905 1.06 1.06-2.094 2.095h17.657v-4.83zM12 9.126c1.58 0 2.862 1.28 2.862 2.862S13.58 14.85 12 14.85s-2.862-1.28-2.862-2.862S10.42 9.126 12 9.126zm0 1.5c-.752 0-1.362.6-1.362 1.362s.6 1.362 1.362 1.362 1.362-.6 1.362-1.362-.6-1.362-1.362-1.362zm7.617-9.284l3.905 3.905-3.905 3.905-1.06-1.06 2.094-2.095H2.993v4.83h-1.5v-6.33H20.65l-2.094-2.094z\" fill=\"%23000\" fill-rule=\"nonzero\"/%3E%3C/svg%3E");
}

.ln-icon.digital_account__personal_credits {
    mask: url("data:image/svg+xml,%3Csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\"%3E%3Cpath d=\"M5.45 11.25v1.297l1.747-.582a6.75 6.75 0 0 1 4.548.1l.27.11 3.28 1.422c.745.323 1.233.994 1.355 1.74l3.643-1.72c1.2-.588 2.652-.098 3.25 1.098.566 1.132.15 2.5-.926 3.13l-.19.1-8.254 3.912a3.75 3.75 0 0 1-3.253-.019l-.202-.106-3.78-2.14a2.25 2.25 0 0 0-.915-.284l-.194-.008H5.45v1.45h-5v-9.5h5zm2.468 2.063l-.247.076-2.22.74V17.8h.384a3.75 3.75 0 0 1 1.633.374l.215.113 3.78 2.14a2.25 2.25 0 0 0 1.905.147l.168-.07 8.27-3.92a.89.89 0 0 0 .399-1.197c-.23-.46-.787-.648-1.248-.422l-1.48.718-3.314 1.48c-.594.727-1.597 1.03-2.516.71l-.146-.056-4.075-1.73.586-1.38 4.075 1.73c.4.17.862-.017 1.032-.417a.8.8 0 0 0-.322-.995l-.096-.05-3.28-1.422a5.25 5.25 0 0 0-3.502-.239zm-3.97-.563h-2v6.5h2v-6.5zM15.35 1.25a5.1 5.1 0 1 1 0 10.202c-2.816 0-5.1-2.284-5.1-5.1a5.1 5.1 0 0 1 5.101-5.101zm0 1.5a3.6 3.6 0 0 0-3.601 3.601c0 1.988 1.613 3.6 3.6 3.6a3.6 3.6 0 1 0 0-7.202z\" fill=\"%23000\" fill-rule=\"nonzero\"/%3E%3C/svg%3E");
}

.ln-icon.digital_account__investments {
    mask: url("data:image/svg+xml,%3Csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\"%3E%3Cpath d=\"M7.25 12.25v9.5h-5.5v-9.5h5.5zm7.5-7v16.5h-5.5V5.25h5.5zm7.5 4v12.5h-5.5V9.25h5.5zm-16.5 4.5h-2.5v6.5h2.5v-6.5zm7.5-7h-2.5v13.5h2.5V6.75zm7.5 4h-2.5v9.5h2.5v-9.5z\" fill=\"%23000\" fill-rule=\"nonzero\"/%3E%3C/svg%3E");
}

.ln-icon.digital_account__mp_card,
.ln-icon.digital_account__debit_card,
.ln-icon.digital_account__credit_card {
    mask: url("data:image/svg+xml,%3Csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\"%3E%3Cpath d=\"M21.087 3.725a2.25 2.25 0 0 1 2.25 2.25v12.048a2.25 2.25 0 0 1-2.25 2.25H3.062a2.25 2.25 0 0 1-2.25-2.25V5.975a2.25 2.25 0 0 1 2.25-2.25zm.75 6.063H2.312v8.235a.75.75 0 0 0 .648.743l.102.007h18.025a.75.75 0 0 0 .75-.75l-.001-8.235zM8.304 15.75v1.5h-4.52v-1.5h4.52zM21.087 5.225H3.062a.75.75 0 0 0-.75.75v2.313h19.524l.001-2.313a.75.75 0 0 0-.648-.743l-.102-.007z\" fill=\"%23000\" fill-rule=\"nonzero\"/%3E%3C/svg%3E");
}

.ln-icon.digital_account__insurtech {
    mask: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17.6662 7.33252C17.6662 8.24031 17.6664 8.25715 17.6662 10.2139C17.666 12.0019 16.1314 14.2 15 15.3314' stroke='black' stroke-width='1.5'/%3E%3Cpath d='M2.41929 5.60443C2.42039 5.60408 2.42335 5.60311 2.42812 5.60152C2.42516 5.60253 2.42222 5.6035 2.41929 5.60443ZM2.75189 6.74366V6.74364L2.75188 5.4932C2.99773 5.41108 3.36574 5.28854 3.8085 5.14262C4.63107 4.87154 5.73452 4.51211 6.87434 4.15346C8.01547 3.7944 9.18724 3.43798 10.1483 3.17194C10.6294 3.03876 11.0506 2.93022 11.3852 2.85556C11.7433 2.77565 11.9372 2.75003 12.0001 2.75C12.0624 2.74997 12.2568 2.7756 12.6167 2.85598C12.9529 2.93105 13.3762 3.0402 13.8597 3.1741C14.8255 3.44156 16.0031 3.7998 17.1481 4.16012C18.2918 4.52004 19.3974 4.88019 20.2174 5.15051C20.6272 5.28563 20.9655 5.39821 21.2011 5.47696L21.2488 5.49293V6.74364C21.2488 7.0588 21.249 7.35662 21.2493 7.63849C21.2515 10.1593 21.2526 11.4039 21.0582 12.3538C20.8571 13.3368 20.4472 13.9921 19.3718 15.5769C17.3827 18.5082 14.6927 20.6194 12.0651 21.2299C9.30409 20.6203 6.63243 18.5394 4.61463 15.5759C3.53799 13.9947 3.13172 13.3395 2.93426 12.3575C2.74653 11.4239 2.74804 10.2073 2.75105 7.77861C2.75145 7.45577 2.75188 7.11152 2.75189 6.74366ZM21.5691 5.60031C21.5691 5.6003 21.5691 5.6003 21.5691 5.60029L21.7142 5.17059L21.7296 5.125L21.7299 5.12407L21.8091 4.88983L21.73 5.12407L21.7297 5.125L21.7143 5.17055L21.5691 5.60031ZM21.2488 5.12242V5.125V5.12242Z' stroke='black' stroke-width='1.5'/%3E%3C/svg%3E%0A");
}

.ln-icon.digital_account__buy_online {
    mask: url("data:image/svg+xml,%3Csvg width=\"24\" height=\"24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"%3E%3Cpath d=\"M9.005 18a1.5 1.5 0 110 3 1.5 1.5 0 010-3zM18 18a1.5 1.5 0 110 3 1.5 1.5 0 010-3zM5.087 2.25l.749 3h16.05l-1.754 10.5H6.912l-2.997-12H.75v-1.5h4.337zm15.027 4.5H6.211l1.873 7.5h10.778l1.252-7.5z\" fill=\"%23000\" /%3E%3C/svg%3E");
}

.ln-icon.digital_account__do_recharges {
    mask: url("data:image/svg+xml,%3Csvg width=\"24\" height=\"24\" fill=\"%23000\" xmlns=\"http://www.w3.org/2000/svg\"%3E%3Cpath d=\"M17 1.95c1.459 0 2.658 1.12 2.745 2.54l.005.166v14.67c0 1.442-1.145 2.615-2.583 2.7l-.167.005H9c-1.459 0-2.658-1.12-2.745-2.54l-.005-.166v-4.247h1.5v4.247c0 .621.489 1.138 1.122 1.2L9 20.53h8c.65 0 1.18-.478 1.244-1.083l.006-.123V4.656c0-.62-.489-1.137-1.122-1.2L17 3.45H9c-.65 0-1.18.478-1.244 1.083l-.006.123v4.216h-1.5V4.656c0-1.443 1.145-2.616 2.583-2.7L9 1.95h8zm-5.425 6.124l3.976 3.909-3.969 4.015-1.067-1.054 2.178-2.204H3v-1.5h9.657l-2.134-2.096 1.052-1.07z\" fill=\"%23000\"/%3E%3C/svg%3E");
}

.ln-icon.digital_account__account,
.ln-icon.digital_account__credits,
.ln-icon.digital_account__payments,
.ln-icon.digital_account__rates,
.ln-icon.digital_account__ecosystem,
.ln-icon.digital_account__help {
    mask: url("data:image/svg+xml,%3Csvg width=\"24\" height=\"24\" xmlns=\"http://www.w3.org/2000/svg\"%3E%3Cg fill=\"none\" fill-rule=\"evenodd\"%3E%3Cpath d=\"M0 0h24v24H0z\"%3E%3C/path%3E%3Cpath d=\"M0 0h24v24H0z\"%3E%3C/path%3E%3Cpath d=\"M15.272 1.482a2.75 2.75 0 012.745 2.583l.005.167v3.296h-1.5l-.001-1.56H6.03v13.768c0 .647.492 1.18 1.122 1.243l.128.007h7.992a1.25 1.25 0 001.243-1.122l.007-.128v-.216h1.5v.216a2.75 2.75 0 01-2.583 2.745l-.167.005H7.28a2.75 2.75 0 01-2.745-2.583l-.005-.167V4.232a2.75 2.75 0 012.583-2.745l.167-.005h7.992zm7.247 7.503v9.013H9.027V8.985H22.52zm-1.501 1.5H10.527v6.012h10.491v-6.012zm-5.245 1.006a2 2 0 110 4 2 2 0 010-4zm0 1.5a.5.5 0 100 1 .5.5 0 000-1zm-.501-10.009H7.28a1.25 1.25 0 00-1.244 1.123l-.006.127v.235h10.491v-.235A1.25 1.25 0 0015.4 2.99l-.127-.007z\" fill=\"%23000\" fill-rule=\"nonzero\"%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
}

.ln-icon.tools_for_sellers__header {
    mask: url("data:image/svg+xml,%3Csvg width=\"24\" height=\"24\" xmlns=\"http://www.w3.org/2000/svg\"%3E%3Cg fill=\"none\" fill-rule=\"evenodd\"%3E%3Cpath d=\"M0 0h24v24H0z\"%3E%3C/path%3E%3Cpath d=\"M0 0h24v24H0z\"%3E%3C/path%3E%3Cpath d=\"M19.82 1.75l2.915 3.845V8.49c0 .892-.366 1.698-.957 2.277v11.407h-11.26l-.01-6.566H7.481v6.566H2.225l-.001-11.406a3.179 3.179 0 01-.958-2.278V5.596l2.9-3.846H19.82zm-2.789 8.698l-.09.11a3.181 3.181 0 01-2.245 1.115l-.18.005a3.181 3.181 0 01-2.427-1.12l-.089-.11-.09.11a3.181 3.181 0 01-2.245 1.115l-.18.005a3.181 3.181 0 01-2.427-1.12l-.09-.11-.088.11a3.181 3.181 0 01-2.246 1.115l-.18.005c-.252 0-.496-.029-.73-.084l-.001 9.08h2.258v-6.565h6.025l.01 6.565h8.261v-9.08a3.198 3.198 0 01-3.157-1.036l-.089-.11zm1.731 3.66v4.487h-5.254v-4.486h5.254zm-1.5 1.5h-2.255v1.486h2.255v-1.486zM19.075 3.25H4.912L2.765 6.096V8.49c0 .883.678 1.608 1.543 1.682l.145.006c.933 0 1.689-.756 1.689-1.688v-.75h1.654v.75a1.688 1.688 0 003.377 0v-.75h1.654v.75a1.688 1.688 0 003.377 0v-.75h1.654v.75a1.688 1.688 0 003.377 0l-.001-2.392-2.159-2.848z\" fill=\"%23000\" fill-rule=\"nonzero\"%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
}

.ln-icon.tools_for_sellers__point {
    mask: url("data:image/svg+xml,%3Csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\"%3E%3Cpath d=\"M14.725 1.532a1.75 1.75 0 0 1 1.744 1.606l.006.144v2.75h4.192a1.75 1.75 0 0 1 1.744 1.606l.006.144v8.494a1.75 1.75 0 0 1-1.606 1.744l-.144.006h-4.192v2.755a1.75 1.75 0 0 1-1.606 1.744l-.144.006H3.193a1.75 1.75 0 0 1-1.744-1.606l-.006-.144v-17.5a1.75 1.75 0 0 1 1.606-1.744l.144-.006h11.533zm0 1.5H3.193a.25.25 0 0 0-.243.193l-.007.057v17.5a.25.25 0 0 0 .193.243l.057.007h11.533a.25.25 0 0 0 .243-.193l.007-.057v-17.5a.25.25 0 0 0-.25-.25zM7.53 16.528v1.5h-3v-1.5h3zm5.97 0v1.5h-3v-1.5h3zm2.975 0h4.192a.25.25 0 0 0 .243-.193l.007-.057v-5.784h-4.442v6.034zM7.53 13.5V15h-3v-1.5h3zm5.97 0V15h-3v-1.5h3zm-.027-8.26v6.017H4.535V5.237h8.938zm-1.5 1.5H6.035v3.017h5.938V6.737zm4.502 2.256h4.442v-1.2a.25.25 0 0 0-.193-.243l-.057-.007h-4.192v1.46z\" fill=\"%23000\" fill-rule=\"nonzero\"/%3E%3C/svg%3E");
}

.ln-icon.tools_for_sellers__qr {
    mask: url("data:image/svg+xml,%3Csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\"%3E%3Cpath d=\"M2.75 19v2.25H5v1.5H1.25V19h1.5zm20 0v3.75H19v-1.5h2.25V19h1.5zm.994-6.248v1.5L11.3 14.25l.001 5.252H4.55V14.25l-4.257.001v-1.5h23.45zm-8.766 3l-.001.798h4.53v2.955h-1.5l-.001-1.455h-.764v1.456h-1.5V18.04h-2.264v-2.298h1.5zM9.8 14.25H6.05v3.752H9.8V14.25zm-1.124 1.127v1.5h-1.5v-1.5h1.5zm2.626-10.843v6.75H4.55v-6.75h6.75zm8.205 0v6.75h-6.75v-6.75h6.75zM9.8 6.034H6.05v3.752H9.8V6.034zm8.205 0h-3.752v3.752h3.752V6.034zM8.676 7.16v1.5h-1.5v-1.5h1.5zm8.205 0v1.5h-1.5v-1.5h1.5zM5 1.25v1.5H2.75V5h-1.5V1.25H5zm17.75 0V5h-1.5V2.75H19v-1.5h3.75z\" fill=\"%23000\" fill-rule=\"nonzero\"/%3E%3C/svg%3E");
}

.ln-icon.tools_for_sellers__social {
    mask: url("data:image/svg+xml,%3Csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\"%3E%3Cpath d=\"M19.73 2.917a2.75 2.75 0 0 1 2.75 2.75V18.29a2.75 2.75 0 0 1-2.75 2.75l-4.486-.001-3.254 2.39-3.238-2.39h-4.5a2.75 2.75 0 0 1-2.745-2.582l-.005-.168V5.667a2.75 2.75 0 0 1 2.75-2.75zm0 1.5H4.252a1.25 1.25 0 0 0-1.25 1.25V18.29a1.25 1.25 0 0 0 1.25 1.25h4.995l2.746 2.027 2.76-2.027h4.977a1.25 1.25 0 0 0 1.25-1.25V5.667a1.25 1.25 0 0 0-1.25-1.25zm-6.345 6.095c.98.98 1.017 2.554.113 3.58l-.113.12-1.65 1.65a2.62 2.62 0 0 1-3.699 0c-.98-.98-1.017-2.554-.113-3.58l.113-.12.66-.66 1.06 1.06-.66.66a1.12 1.12 0 0 0 0 1.578c.404.404 1.05.43 1.488.08l.1-.08 1.65-1.65c.404-.404.43-1.05.08-1.488l-.08-.1 1.06-1.06zm2.595-2.595c.98.98 1.017 2.554.113 3.58l-.113.12-.66.66-1.06-1.06.66-.66a1.12 1.12 0 0 0 0-1.578c-.404-.404-1.05-.43-1.488-.08l-.1.08-1.65 1.65c-.404.404-.43 1.05-.08 1.488l.08.1-1.06 1.06c-.98-.98-1.017-2.554-.113-3.58l.113-.12 1.65-1.65a2.62 2.62 0 0 1 3.699 0z\" fill=\"%23000\" fill-rule=\"nonzero\"/%3E%3C/svg%3E");
}

.ln-icon.tools_for_sellers__receive_in_a_web_site {
    mask: url("data:image/svg+xml,%3Csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\"%3E%3Cpath d=\"M22.5 17.947v1.5h-21v-1.5h21zM20.35 4.512v11.99H3.692V4.512H20.35zm-1.5 1.5H5.192v9H18.85v-9z\" fill=\"%23000\" fill-rule=\"nonzero\"/%3E%3C/svg%3E");
}

.ln-icon.tools_for_sellers__subscription_plans {
    mask: url("data:image/svg+xml,%3Csvg width='24' height='24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m9.264 13.956-.891 1.234c.657.702 1.586 1.223 2.817 1.393v1.301h1.645V16.6c1.94-.238 2.792-1.423 2.792-2.782 0-1.988-1.796-2.454-3.305-2.838l-.013-.004c-1.078-.273-2.002-.507-2.002-1.217 0-.686.603-1.138 1.55-1.138.96 0 1.933.329 2.646 1.042l.919-1.193c-.676-.654-1.543-1.074-2.587-1.22V6.117H11.19v1.146c-1.547.267-2.53 1.31-2.53 2.607 0 1.934 1.756 2.372 3.251 2.743l.022.005c1.102.286 2.063.535 2.063 1.352 0 .604-.522 1.248-1.838 1.248a3.946 3.946 0 0 1-2.894-1.261z' fill='%23000' /%3E%3Cpath d='M12 2.692A9.308 9.308 0 1 0 21.308 12a9.272 9.272 0 0 0-.872-3.939l1.47-.849A10.957 10.957 0 0 1 23 12c0 6.075-4.925 11-11 11S1 18.075 1 12 5.925 1 12 1c2.633 0 5.05.925 6.944 2.469V1.483h1.552v4.865H15.63V4.796h2.264A9.27 9.27 0 0 0 12 2.692z' fill='%23000' /%3E%3C/svg%3E");
}

.ln-icon.tools_for_sellers__build_your_online_store {
    mask: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M17.2471 6.75V5.997C17.2471 3.09916 14.898 0.75 12.0001 0.75C9.10228 0.75 6.75312 3.09916 6.75312 5.997V6.75H3.82989L2.16211 21.75H21.8383L20.1683 6.75H17.2471ZM8.25312 5.997V6.75H15.7471V5.997C15.7471 3.92759 14.0695 2.25 12.0001 2.25C9.93071 2.25 8.25312 3.92759 8.25312 5.997ZM5.17235 8.25L3.83813 20.25H20.162L18.826 8.25H5.17235Z' fill='black'/%3E%3C/svg%3E");
}

.ln-icon.tools_for_sellers__seller_credits {
    mask: url("data:image/svg+xml,%3Csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\"%3E%3Cpath d=\"M5.45 11.25v1.297l1.747-.582a6.75 6.75 0 0 1 4.548.1l.27.11 3.28 1.422c.745.323 1.233.994 1.355 1.74l3.643-1.72c1.2-.588 2.652-.098 3.25 1.098.566 1.132.15 2.5-.926 3.13l-.19.1-8.254 3.912a3.75 3.75 0 0 1-3.253-.019l-.202-.106-3.78-2.14a2.25 2.25 0 0 0-.915-.284l-.194-.008H5.45v1.45h-5v-9.5h5zm2.468 2.063l-.247.076-2.22.74V17.8h.384a3.75 3.75 0 0 1 1.633.374l.215.113 3.78 2.14a2.25 2.25 0 0 0 1.905.147l.168-.07 8.27-3.92a.89.89 0 0 0 .399-1.197c-.23-.46-.787-.648-1.248-.422l-1.48.718-3.314 1.48c-.594.727-1.597 1.03-2.516.71l-.146-.056-4.075-1.73.586-1.38 4.075 1.73c.4.17.862-.017 1.032-.417a.8.8 0 0 0-.322-.995l-.096-.05-3.28-1.422a5.25 5.25 0 0 0-3.502-.239zm-3.97-.563h-2v6.5h2v-6.5zM15.35 1.25a5.1 5.1 0 1 1 0 10.202c-2.816 0-5.1-2.284-5.1-5.1a5.1 5.1 0 0 1 5.101-5.101zm0 1.5a3.6 3.6 0 0 0-3.601 3.601c0 1.988 1.613 3.6 3.6 3.6a3.6 3.6 0 1 0 0-7.202z\" fill=\"%23000\" fill-rule=\"nonzero\"/%3E%3C/svg%3E");
}

.ln-icon.tools_for_sellers__point_reseller {
    mask: url("data:image/svg+xml,%3Csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\"%3E%3Cg fill=\"none\" fill-rule=\"evenodd\"%3E%3Cpath d=\"M.615 0h24v24h-24z\"/%3E%3Cpath fill=\"%23000\" fill-rule=\"nonzero\" d=\"M19.152 12.255l4.818 4.932-4.809 5.106-1.092-1.028 3.078-3.27h-8.532v-1.5h8.583l-3.12-3.192 1.074-1.048zm-9.537 4.248v1.5H6.287a2.683 2.683 0 00-2.678 2.513l-.005.17v.548h-1.5v-.548c0-2.24 1.76-4.069 3.974-4.178l.209-.005h3.328zm-.797-7.546a3.798 3.798 0 007.59.195l.005-.195h1.5a5.298 5.298 0 01-10.59.218l-.005-.218h1.5zm-1.504-1.41v-.75a5.298 5.298 0 0110.542-.751H20v1.5H7.314zm5.298-4.548a3.799 3.799 0 00-3.72 3.032l-.005.015h7.447l-.046-.206a3.8 3.8 0 00-3.481-2.836z\"/%3E%3C/g%3E%3C/svg%3E");
}

.ln-icon.tools_for_sellers__developers {
    mask: url("data:image/svg+xml,%3Csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\"%3E%3Cpath d=\"M19.814 2.973a2.75 2.75 0 0 1 2.75 2.75v12.51a2.75 2.75 0 0 1-2.75 2.75H4.222a2.75 2.75 0 0 1-2.75-2.75V5.723a2.75 2.75 0 0 1 2.75-2.75zm0 1.5H4.222a1.25 1.25 0 0 0-1.25 1.25v12.51a1.25 1.25 0 0 0 1.25 1.25h15.592a1.25 1.25 0 0 0 1.25-1.25V5.723a1.25 1.25 0 0 0-1.25-1.25zm-4.93 2.647l-4.06 9.93h-1.67l4.113-9.93h1.618zm-5.99 1.477v1.81l-2.607 1.543 2.607 1.54v1.78L4.43 12.593v-1.29l4.463-2.705zm6.25 0l4.463 2.705v1.29l-4.463 2.677v-1.78l2.607-1.54-2.607-1.543v-1.81z\" fill=\"%23000\" fill-rule=\"nonzero\"/%3E%3C/svg%3E");
}

@media (min-width: 1024px) {
    .ln-icon.digital_account__header {
        width: 32px;
        height: 32px;
        mask: url("data:image/svg+xml,%3Csvg xmlns=\"http://www.w3.org/2000/svg\" class=\"icon--desktop\" viewBox=\"0 0 32 32\"%3E%3Cdefs/%3E%3Cg fill=\"none\" fill-rule=\"evenodd\"%3E%3Cpath d=\"M0 .5h32v32H0z\"/%3E%3Cpath fill=\"%23000\" fill-rule=\"nonzero\" d=\"M19.75 1.75A3.75 3.75 0 0123.5 5.3v6.75H22V9H7.17v18.5a2.25 2.25 0 002.1 2.25h10.48a2.25 2.25 0 002.25-2.1v-.63h1.5v.48a3.75 3.75 0 01-3.55 3.75H9.42a3.75 3.75 0 01-3.74-3.55V5.5a3.75 3.75 0 013.54-3.75h10.53zM31 13.49v11.95H10.63V13.5H31zM29.5 15H12.13v8.95H29.5V15zm-8.69 1.62a2.86 2.86 0 110 5.72 2.86 2.86 0 010-5.72zm0 1.5a1.36 1.36 0 100 2.72 1.36 1.36 0 000-2.72zm5.96.6v1.5h-1.5v-1.5h1.5zm-10.42 0v1.5h-1.5v-1.5h1.5zm3.4-15.46H9.42a2.25 2.25 0 00-2.24 2.1V7.5H22v-2a2.25 2.25 0 00-2.1-2.25h-.15zm-2.68 1.2v1.5h-4.71v-1.5h4.71z\"/%3E%3C/g%3E%3C/svg%3E");
    }

    .ln-icon.tools_for_sellers__header {
        width: 32px;
        height: 32px;
        mask: url("data:image/svg+xml,%3Csvg xmlns=\"http://www.w3.org/2000/svg\" class=\"icon--desktop\" viewBox=\"0 0 32 32\"%3E%3Cdefs/%3E%3Cg fill=\"none\" fill-rule=\"evenodd\"%3E%3Cpath d=\"M0 .5h32v32H0z\"/%3E%3Cpath fill=\"%23000\" fill-rule=\"nonzero\" d=\"M26.23 4.25L30 9.23v2.52a4 4 0 01-.62 2.15v13.96H13.34v-8.1h-4.1v8.1H2.68V14.33a4 4 0 01-.93-2.38V9.23l3.76-4.98h20.72zm-10.5 9.6l-.06.09a4.01 4.01 0 01-3.17 1.82h-.2a4.01 4.01 0 01-3.13-1.5l-.14-.17a4.01 4.01 0 01-3.06 1.67h-.2a4 4 0 01-1.59-.31v10.91h3.57v-8.1h7.1v8.1h13.03V15.3a4.01 4.01 0 01-5.26-1.35l-.05-.08-.06.08a4.01 4.01 0 01-3.17 1.82h-.2a4.01 4.01 0 01-3.37-1.82l-.05-.09zm9.14 4.4v5.5h-6.5v-5.5h6.5zm-1.5 1.5h-3.5v2.5h3.5v-2.5zm2.11-14H6.25l-3 3.98v2.02a2.52 2.52 0 002.35 2.51h.17a2.52 2.52 0 002.5-2.34l.01-.17V11h1.5v.75a2.52 2.52 0 005.03.17V11h1.82v.75a2.52 2.52 0 005.02.17l.01-.17V11h1.81v.75a2.52 2.52 0 005.03.17V9.73l-3.02-3.98z\"/%3E%3C/g%3E%3C/svg%3E");
    }
}

.nav-section-mp--mlb .nav-section-mp__nav-link--accessibility {
    display: flex;
    align-items: center;
}

.nav-section-mp--mlb .nav-section-mp__nav-link--accessibility::before {
    content: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='16px' height='16px' viewBox='0 0 16 16' version='1.1'%3E%3Cg id='surface1'%3E%3Cpath style='fill:none;stroke-width:32.8947;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;' d='M 105.712891 408.691406 C 105.712891 408.691406 499.023438 646.728516 892.333984 408.691406 ' transform='matrix(0.016,0,0,0.016,0,0)'/%3E%3Cpath style='fill:none;stroke-width:32.8947;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;' d='M 739.501953 876.708984 L 500 520.263672 ' transform='matrix(0.016,0,0,0.016,0,0)'/%3E%3Cpath style='fill:none;stroke-width:32.8947;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;' d='M 260.253906 876.708984 L 500 520.263672 ' transform='matrix(0.016,0,0,0.016,0,0)'/%3E%3Cpath style='fill-rule:nonzero;fill:rgb(32.54902%25,76.078431%25,93.333333%25);fill-opacity:1;stroke-width:32.8947;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;' d='M 614.990234 284.179688 C 614.990234 347.65625 563.476562 399.169922 500 399.169922 C 436.523438 399.169922 385.009766 347.65625 385.009766 284.179688 C 385.009766 220.947266 436.523438 169.433594 500 169.433594 C 563.476562 169.433594 614.990234 220.947266 614.990234 284.179688 Z M 614.990234 284.179688 ' transform='matrix(0.016,0,0,0.016,0,0)'/%3E%3Cpath style='fill-rule:nonzero;fill:rgb(32.54902%25,76.078431%25,93.333333%25);fill-opacity:1;stroke-width:32.8947;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;' d='M 983.398438 374.023438 C 983.398438 402.34375 960.449219 425.292969 932.128906 425.292969 C 903.808594 425.292969 880.859375 402.34375 880.859375 374.023438 C 880.859375 345.703125 903.808594 322.753906 932.128906 322.753906 C 960.449219 322.753906 983.398438 345.703125 983.398438 374.023438 Z M 983.398438 374.023438 ' transform='matrix(0.016,0,0,0.016,0,0)'/%3E%3Cpath style='fill-rule:nonzero;fill:rgb(32.54902%25,76.078431%25,93.333333%25);fill-opacity:1;stroke-width:32.8947;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;' d='M 118.896484 374.023438 C 118.896484 402.34375 95.947266 425.292969 67.626953 425.292969 C 39.306641 425.292969 16.357422 402.34375 16.357422 374.023438 C 16.357422 345.703125 39.306641 322.753906 67.626953 322.753906 C 95.947266 322.753906 118.896484 345.703125 118.896484 374.023438 Z M 118.896484 374.023438 ' transform='matrix(0.016,0,0,0.016,0,0)'/%3E%3Cpath style='fill-rule:nonzero;fill:rgb(32.54902%25,76.078431%25,93.333333%25);fill-opacity:1;stroke-width:32.8947;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;' d='M 791.015625 876.708984 C 791.015625 905.029297 767.822266 927.978516 739.501953 927.978516 C 711.181641 927.978516 688.232422 905.029297 688.232422 876.708984 C 688.232422 848.388672 711.181641 825.195312 739.501953 825.195312 C 767.822266 825.195312 791.015625 848.388672 791.015625 876.708984 Z M 791.015625 876.708984 ' transform='matrix(0.016,0,0,0.016,0,0)'/%3E%3Cpath style='fill-rule:nonzero;fill:rgb(32.54902%25,76.078431%25,93.333333%25);fill-opacity:1;stroke-width:32.8947;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;' d='M 311.523438 876.708984 C 311.523438 905.029297 288.574219 927.978516 260.253906 927.978516 C 231.933594 927.978516 208.984375 905.029297 208.984375 876.708984 C 208.984375 848.388672 231.933594 825.195312 260.253906 825.195312 C 288.574219 825.195312 311.523438 848.388672 311.523438 876.708984 Z M 311.523438 876.708984 ' transform='matrix(0.016,0,0,0.016,0,0)'/%3E%3Cpath style=' stroke:none;fill-rule:nonzero;fill:rgb(0%25,0%25,0%25);fill-opacity:1;' d='M 12.921875 12.839844 C 13.054688 12.957031 13.164062 13.097656 13.25 13.257812 C 14.644531 11.863281 15.429688 9.972656 15.425781 8 C 15.425781 7.835938 15.417969 7.675781 15.40625 7.515625 C 15.25 7.566406 15.082031 7.59375 14.914062 7.59375 C 14.90625 7.59375 14.894531 7.59375 14.886719 7.59375 C 14.894531 7.726562 14.898438 7.863281 14.898438 8 C 14.902344 9.808594 14.191406 11.546875 12.921875 12.839844 Z M 12.921875 12.839844 '/%3E%3Cpath style=' stroke:none;fill-rule:nonzero;fill:rgb(0%25,0%25,0%25);fill-opacity:1;' d='M 7.976562 14.917969 C 7.199219 14.921875 6.425781 14.789062 5.691406 14.53125 C 5.632812 14.703125 5.546875 14.859375 5.441406 15.003906 C 7.089844 15.59375 8.898438 15.59375 10.546875 14.992188 C 10.4375 14.847656 10.355469 14.691406 10.300781 14.519531 C 9.554688 14.785156 8.769531 14.917969 7.976562 14.917969 Z M 7.976562 14.917969 '/%3E%3Cpath style=' stroke:none;fill-rule:nonzero;fill:rgb(0%25,0%25,0%25);fill-opacity:1;' d='M 1.070312 7.59375 C 0.894531 7.59375 0.71875 7.5625 0.550781 7.503906 C 0.539062 7.667969 0.535156 7.832031 0.535156 8 C 0.527344 9.976562 1.3125 11.871094 2.714844 13.265625 C 2.71875 13.269531 2.726562 13.277344 2.734375 13.28125 C 2.816406 13.125 2.921875 12.980469 3.054688 12.859375 C 1.773438 11.566406 1.054688 9.820312 1.0625 8 C 1.0625 7.863281 1.0625 7.730469 1.070312 7.59375 Z M 1.070312 7.59375 '/%3E%3Cpath style=' stroke:none;fill-rule:nonzero;fill:rgb(0%25,0%25,0%25);fill-opacity:1;' d='M 13.242188 2.734375 C 10.335938 -0.171875 5.621094 -0.171875 2.714844 2.734375 C 2.214844 3.234375 1.789062 3.800781 1.449219 4.417969 C 1.621094 4.460938 1.785156 4.527344 1.9375 4.621094 C 2.246094 4.066406 2.636719 3.558594 3.085938 3.109375 C 5.789062 0.40625 10.167969 0.40625 12.867188 3.109375 C 13.324219 3.5625 13.714844 4.078125 14.027344 4.640625 C 14.175781 4.542969 14.339844 4.472656 14.511719 4.425781 C 14.171875 3.804688 13.742188 3.238281 13.242188 2.734375 Z M 13.242188 2.734375 '/%3E%3C/g%3E%3C/svg%3E%0A");
    margin-right: 5px;
    margin-top: 4px;
}

.nav-header-guest--mlb .nav-section-mp__nav-link--accessibility {
    display: flex;
    align-items: center;
}

.nav-header-guest--mlb .nav-section-mp__nav-link--accessibility::before {
    content: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='16px' height='16px' viewBox='0 0 16 16' version='1.1'%3E%3Cg id='surface1'%3E%3Cpath style='fill:none;stroke-width:32.8947;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;' d='M 105.712891 408.691406 C 105.712891 408.691406 499.023438 646.728516 892.333984 408.691406 ' transform='matrix(0.016,0,0,0.016,0,0)'/%3E%3Cpath style='fill:none;stroke-width:32.8947;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;' d='M 739.501953 876.708984 L 500 520.263672 ' transform='matrix(0.016,0,0,0.016,0,0)'/%3E%3Cpath style='fill:none;stroke-width:32.8947;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;' d='M 260.253906 876.708984 L 500 520.263672 ' transform='matrix(0.016,0,0,0.016,0,0)'/%3E%3Cpath style='fill-rule:nonzero;fill:rgb(32.54902%25,76.078431%25,93.333333%25);fill-opacity:1;stroke-width:32.8947;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;' d='M 614.990234 284.179688 C 614.990234 347.65625 563.476562 399.169922 500 399.169922 C 436.523438 399.169922 385.009766 347.65625 385.009766 284.179688 C 385.009766 220.947266 436.523438 169.433594 500 169.433594 C 563.476562 169.433594 614.990234 220.947266 614.990234 284.179688 Z M 614.990234 284.179688 ' transform='matrix(0.016,0,0,0.016,0,0)'/%3E%3Cpath style='fill-rule:nonzero;fill:rgb(32.54902%25,76.078431%25,93.333333%25);fill-opacity:1;stroke-width:32.8947;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;' d='M 983.398438 374.023438 C 983.398438 402.34375 960.449219 425.292969 932.128906 425.292969 C 903.808594 425.292969 880.859375 402.34375 880.859375 374.023438 C 880.859375 345.703125 903.808594 322.753906 932.128906 322.753906 C 960.449219 322.753906 983.398438 345.703125 983.398438 374.023438 Z M 983.398438 374.023438 ' transform='matrix(0.016,0,0,0.016,0,0)'/%3E%3Cpath style='fill-rule:nonzero;fill:rgb(32.54902%25,76.078431%25,93.333333%25);fill-opacity:1;stroke-width:32.8947;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;' d='M 118.896484 374.023438 C 118.896484 402.34375 95.947266 425.292969 67.626953 425.292969 C 39.306641 425.292969 16.357422 402.34375 16.357422 374.023438 C 16.357422 345.703125 39.306641 322.753906 67.626953 322.753906 C 95.947266 322.753906 118.896484 345.703125 118.896484 374.023438 Z M 118.896484 374.023438 ' transform='matrix(0.016,0,0,0.016,0,0)'/%3E%3Cpath style='fill-rule:nonzero;fill:rgb(32.54902%25,76.078431%25,93.333333%25);fill-opacity:1;stroke-width:32.8947;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;' d='M 791.015625 876.708984 C 791.015625 905.029297 767.822266 927.978516 739.501953 927.978516 C 711.181641 927.978516 688.232422 905.029297 688.232422 876.708984 C 688.232422 848.388672 711.181641 825.195312 739.501953 825.195312 C 767.822266 825.195312 791.015625 848.388672 791.015625 876.708984 Z M 791.015625 876.708984 ' transform='matrix(0.016,0,0,0.016,0,0)'/%3E%3Cpath style='fill-rule:nonzero;fill:rgb(32.54902%25,76.078431%25,93.333333%25);fill-opacity:1;stroke-width:32.8947;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;' d='M 311.523438 876.708984 C 311.523438 905.029297 288.574219 927.978516 260.253906 927.978516 C 231.933594 927.978516 208.984375 905.029297 208.984375 876.708984 C 208.984375 848.388672 231.933594 825.195312 260.253906 825.195312 C 288.574219 825.195312 311.523438 848.388672 311.523438 876.708984 Z M 311.523438 876.708984 ' transform='matrix(0.016,0,0,0.016,0,0)'/%3E%3Cpath style=' stroke:none;fill-rule:nonzero;fill:rgb(0%25,0%25,0%25);fill-opacity:1;' d='M 12.921875 12.839844 C 13.054688 12.957031 13.164062 13.097656 13.25 13.257812 C 14.644531 11.863281 15.429688 9.972656 15.425781 8 C 15.425781 7.835938 15.417969 7.675781 15.40625 7.515625 C 15.25 7.566406 15.082031 7.59375 14.914062 7.59375 C 14.90625 7.59375 14.894531 7.59375 14.886719 7.59375 C 14.894531 7.726562 14.898438 7.863281 14.898438 8 C 14.902344 9.808594 14.191406 11.546875 12.921875 12.839844 Z M 12.921875 12.839844 '/%3E%3Cpath style=' stroke:none;fill-rule:nonzero;fill:rgb(0%25,0%25,0%25);fill-opacity:1;' d='M 7.976562 14.917969 C 7.199219 14.921875 6.425781 14.789062 5.691406 14.53125 C 5.632812 14.703125 5.546875 14.859375 5.441406 15.003906 C 7.089844 15.59375 8.898438 15.59375 10.546875 14.992188 C 10.4375 14.847656 10.355469 14.691406 10.300781 14.519531 C 9.554688 14.785156 8.769531 14.917969 7.976562 14.917969 Z M 7.976562 14.917969 '/%3E%3Cpath style=' stroke:none;fill-rule:nonzero;fill:rgb(0%25,0%25,0%25);fill-opacity:1;' d='M 1.070312 7.59375 C 0.894531 7.59375 0.71875 7.5625 0.550781 7.503906 C 0.539062 7.667969 0.535156 7.832031 0.535156 8 C 0.527344 9.976562 1.3125 11.871094 2.714844 13.265625 C 2.71875 13.269531 2.726562 13.277344 2.734375 13.28125 C 2.816406 13.125 2.921875 12.980469 3.054688 12.859375 C 1.773438 11.566406 1.054688 9.820312 1.0625 8 C 1.0625 7.863281 1.0625 7.730469 1.070312 7.59375 Z M 1.070312 7.59375 '/%3E%3Cpath style=' stroke:none;fill-rule:nonzero;fill:rgb(0%25,0%25,0%25);fill-opacity:1;' d='M 13.242188 2.734375 C 10.335938 -0.171875 5.621094 -0.171875 2.714844 2.734375 C 2.214844 3.234375 1.789062 3.800781 1.449219 4.417969 C 1.621094 4.460938 1.785156 4.527344 1.9375 4.621094 C 2.246094 4.066406 2.636719 3.558594 3.085938 3.109375 C 5.789062 0.40625 10.167969 0.40625 12.867188 3.109375 C 13.324219 3.5625 13.714844 4.078125 14.027344 4.640625 C 14.175781 4.542969 14.339844 4.472656 14.511719 4.425781 C 14.171875 3.804688 13.742188 3.238281 13.242188 2.734375 Z M 13.242188 2.734375 '/%3E%3C/g%3E%3C/svg%3E%0A");
    margin-right: 5px;
    margin-top: 4px;
}

.nav-header-user-welcome--mlb .nav-section-mp__nav-link--accessibility {
    display: flex;
    align-items: center;
}

.nav-header-user-welcome--mlb .nav-section-mp__nav-link--accessibility::before {
    content: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='16px' height='16px' viewBox='0 0 16 16' version='1.1'%3E%3Cg id='surface1'%3E%3Cpath style='fill:none;stroke-width:32.8947;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;' d='M 105.712891 408.691406 C 105.712891 408.691406 499.023438 646.728516 892.333984 408.691406 ' transform='matrix(0.016,0,0,0.016,0,0)'/%3E%3Cpath style='fill:none;stroke-width:32.8947;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;' d='M 739.501953 876.708984 L 500 520.263672 ' transform='matrix(0.016,0,0,0.016,0,0)'/%3E%3Cpath style='fill:none;stroke-width:32.8947;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;' d='M 260.253906 876.708984 L 500 520.263672 ' transform='matrix(0.016,0,0,0.016,0,0)'/%3E%3Cpath style='fill-rule:nonzero;fill:rgb(32.54902%25,76.078431%25,93.333333%25);fill-opacity:1;stroke-width:32.8947;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;' d='M 614.990234 284.179688 C 614.990234 347.65625 563.476562 399.169922 500 399.169922 C 436.523438 399.169922 385.009766 347.65625 385.009766 284.179688 C 385.009766 220.947266 436.523438 169.433594 500 169.433594 C 563.476562 169.433594 614.990234 220.947266 614.990234 284.179688 Z M 614.990234 284.179688 ' transform='matrix(0.016,0,0,0.016,0,0)'/%3E%3Cpath style='fill-rule:nonzero;fill:rgb(32.54902%25,76.078431%25,93.333333%25);fill-opacity:1;stroke-width:32.8947;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;' d='M 983.398438 374.023438 C 983.398438 402.34375 960.449219 425.292969 932.128906 425.292969 C 903.808594 425.292969 880.859375 402.34375 880.859375 374.023438 C 880.859375 345.703125 903.808594 322.753906 932.128906 322.753906 C 960.449219 322.753906 983.398438 345.703125 983.398438 374.023438 Z M 983.398438 374.023438 ' transform='matrix(0.016,0,0,0.016,0,0)'/%3E%3Cpath style='fill-rule:nonzero;fill:rgb(32.54902%25,76.078431%25,93.333333%25);fill-opacity:1;stroke-width:32.8947;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;' d='M 118.896484 374.023438 C 118.896484 402.34375 95.947266 425.292969 67.626953 425.292969 C 39.306641 425.292969 16.357422 402.34375 16.357422 374.023438 C 16.357422 345.703125 39.306641 322.753906 67.626953 322.753906 C 95.947266 322.753906 118.896484 345.703125 118.896484 374.023438 Z M 118.896484 374.023438 ' transform='matrix(0.016,0,0,0.016,0,0)'/%3E%3Cpath style='fill-rule:nonzero;fill:rgb(32.54902%25,76.078431%25,93.333333%25);fill-opacity:1;stroke-width:32.8947;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;' d='M 791.015625 876.708984 C 791.015625 905.029297 767.822266 927.978516 739.501953 927.978516 C 711.181641 927.978516 688.232422 905.029297 688.232422 876.708984 C 688.232422 848.388672 711.181641 825.195312 739.501953 825.195312 C 767.822266 825.195312 791.015625 848.388672 791.015625 876.708984 Z M 791.015625 876.708984 ' transform='matrix(0.016,0,0,0.016,0,0)'/%3E%3Cpath style='fill-rule:nonzero;fill:rgb(32.54902%25,76.078431%25,93.333333%25);fill-opacity:1;stroke-width:32.8947;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;' d='M 311.523438 876.708984 C 311.523438 905.029297 288.574219 927.978516 260.253906 927.978516 C 231.933594 927.978516 208.984375 905.029297 208.984375 876.708984 C 208.984375 848.388672 231.933594 825.195312 260.253906 825.195312 C 288.574219 825.195312 311.523438 848.388672 311.523438 876.708984 Z M 311.523438 876.708984 ' transform='matrix(0.016,0,0,0.016,0,0)'/%3E%3Cpath style=' stroke:none;fill-rule:nonzero;fill:rgb(0%25,0%25,0%25);fill-opacity:1;' d='M 12.921875 12.839844 C 13.054688 12.957031 13.164062 13.097656 13.25 13.257812 C 14.644531 11.863281 15.429688 9.972656 15.425781 8 C 15.425781 7.835938 15.417969 7.675781 15.40625 7.515625 C 15.25 7.566406 15.082031 7.59375 14.914062 7.59375 C 14.90625 7.59375 14.894531 7.59375 14.886719 7.59375 C 14.894531 7.726562 14.898438 7.863281 14.898438 8 C 14.902344 9.808594 14.191406 11.546875 12.921875 12.839844 Z M 12.921875 12.839844 '/%3E%3Cpath style=' stroke:none;fill-rule:nonzero;fill:rgb(0%25,0%25,0%25);fill-opacity:1;' d='M 7.976562 14.917969 C 7.199219 14.921875 6.425781 14.789062 5.691406 14.53125 C 5.632812 14.703125 5.546875 14.859375 5.441406 15.003906 C 7.089844 15.59375 8.898438 15.59375 10.546875 14.992188 C 10.4375 14.847656 10.355469 14.691406 10.300781 14.519531 C 9.554688 14.785156 8.769531 14.917969 7.976562 14.917969 Z M 7.976562 14.917969 '/%3E%3Cpath style=' stroke:none;fill-rule:nonzero;fill:rgb(0%25,0%25,0%25);fill-opacity:1;' d='M 1.070312 7.59375 C 0.894531 7.59375 0.71875 7.5625 0.550781 7.503906 C 0.539062 7.667969 0.535156 7.832031 0.535156 8 C 0.527344 9.976562 1.3125 11.871094 2.714844 13.265625 C 2.71875 13.269531 2.726562 13.277344 2.734375 13.28125 C 2.816406 13.125 2.921875 12.980469 3.054688 12.859375 C 1.773438 11.566406 1.054688 9.820312 1.0625 8 C 1.0625 7.863281 1.0625 7.730469 1.070312 7.59375 Z M 1.070312 7.59375 '/%3E%3Cpath style=' stroke:none;fill-rule:nonzero;fill:rgb(0%25,0%25,0%25);fill-opacity:1;' d='M 13.242188 2.734375 C 10.335938 -0.171875 5.621094 -0.171875 2.714844 2.734375 C 2.214844 3.234375 1.789062 3.800781 1.449219 4.417969 C 1.621094 4.460938 1.785156 4.527344 1.9375 4.621094 C 2.246094 4.066406 2.636719 3.558594 3.085938 3.109375 C 5.789062 0.40625 10.167969 0.40625 12.867188 3.109375 C 13.324219 3.5625 13.714844 4.078125 14.027344 4.640625 C 14.175781 4.542969 14.339844 4.472656 14.511719 4.425781 C 14.171875 3.804688 13.742188 3.238281 13.242188 2.734375 Z M 13.242188 2.734375 '/%3E%3C/g%3E%3C/svg%3E%0A");
    margin-right: 5px;
    margin-top: 4px;
}

.nav-header-user-menu--mlb .nav-section-mp__nav-link--accessibility {
    display: flex;
    align-items: center;
}

.nav-header-user-menu--mlb .nav-section-mp__nav-link--accessibility::before {
    content: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='16px' height='16px' viewBox='0 0 16 16' version='1.1'%3E%3Cg id='surface1'%3E%3Cpath style='fill:none;stroke-width:32.8947;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;' d='M 105.712891 408.691406 C 105.712891 408.691406 499.023438 646.728516 892.333984 408.691406 ' transform='matrix(0.016,0,0,0.016,0,0)'/%3E%3Cpath style='fill:none;stroke-width:32.8947;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;' d='M 739.501953 876.708984 L 500 520.263672 ' transform='matrix(0.016,0,0,0.016,0,0)'/%3E%3Cpath style='fill:none;stroke-width:32.8947;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;' d='M 260.253906 876.708984 L 500 520.263672 ' transform='matrix(0.016,0,0,0.016,0,0)'/%3E%3Cpath style='fill-rule:nonzero;fill:rgb(32.54902%25,76.078431%25,93.333333%25);fill-opacity:1;stroke-width:32.8947;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;' d='M 614.990234 284.179688 C 614.990234 347.65625 563.476562 399.169922 500 399.169922 C 436.523438 399.169922 385.009766 347.65625 385.009766 284.179688 C 385.009766 220.947266 436.523438 169.433594 500 169.433594 C 563.476562 169.433594 614.990234 220.947266 614.990234 284.179688 Z M 614.990234 284.179688 ' transform='matrix(0.016,0,0,0.016,0,0)'/%3E%3Cpath style='fill-rule:nonzero;fill:rgb(32.54902%25,76.078431%25,93.333333%25);fill-opacity:1;stroke-width:32.8947;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;' d='M 983.398438 374.023438 C 983.398438 402.34375 960.449219 425.292969 932.128906 425.292969 C 903.808594 425.292969 880.859375 402.34375 880.859375 374.023438 C 880.859375 345.703125 903.808594 322.753906 932.128906 322.753906 C 960.449219 322.753906 983.398438 345.703125 983.398438 374.023438 Z M 983.398438 374.023438 ' transform='matrix(0.016,0,0,0.016,0,0)'/%3E%3Cpath style='fill-rule:nonzero;fill:rgb(32.54902%25,76.078431%25,93.333333%25);fill-opacity:1;stroke-width:32.8947;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;' d='M 118.896484 374.023438 C 118.896484 402.34375 95.947266 425.292969 67.626953 425.292969 C 39.306641 425.292969 16.357422 402.34375 16.357422 374.023438 C 16.357422 345.703125 39.306641 322.753906 67.626953 322.753906 C 95.947266 322.753906 118.896484 345.703125 118.896484 374.023438 Z M 118.896484 374.023438 ' transform='matrix(0.016,0,0,0.016,0,0)'/%3E%3Cpath style='fill-rule:nonzero;fill:rgb(32.54902%25,76.078431%25,93.333333%25);fill-opacity:1;stroke-width:32.8947;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;' d='M 791.015625 876.708984 C 791.015625 905.029297 767.822266 927.978516 739.501953 927.978516 C 711.181641 927.978516 688.232422 905.029297 688.232422 876.708984 C 688.232422 848.388672 711.181641 825.195312 739.501953 825.195312 C 767.822266 825.195312 791.015625 848.388672 791.015625 876.708984 Z M 791.015625 876.708984 ' transform='matrix(0.016,0,0,0.016,0,0)'/%3E%3Cpath style='fill-rule:nonzero;fill:rgb(32.54902%25,76.078431%25,93.333333%25);fill-opacity:1;stroke-width:32.8947;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;' d='M 311.523438 876.708984 C 311.523438 905.029297 288.574219 927.978516 260.253906 927.978516 C 231.933594 927.978516 208.984375 905.029297 208.984375 876.708984 C 208.984375 848.388672 231.933594 825.195312 260.253906 825.195312 C 288.574219 825.195312 311.523438 848.388672 311.523438 876.708984 Z M 311.523438 876.708984 ' transform='matrix(0.016,0,0,0.016,0,0)'/%3E%3Cpath style=' stroke:none;fill-rule:nonzero;fill:rgb(0%25,0%25,0%25);fill-opacity:1;' d='M 12.921875 12.839844 C 13.054688 12.957031 13.164062 13.097656 13.25 13.257812 C 14.644531 11.863281 15.429688 9.972656 15.425781 8 C 15.425781 7.835938 15.417969 7.675781 15.40625 7.515625 C 15.25 7.566406 15.082031 7.59375 14.914062 7.59375 C 14.90625 7.59375 14.894531 7.59375 14.886719 7.59375 C 14.894531 7.726562 14.898438 7.863281 14.898438 8 C 14.902344 9.808594 14.191406 11.546875 12.921875 12.839844 Z M 12.921875 12.839844 '/%3E%3Cpath style=' stroke:none;fill-rule:nonzero;fill:rgb(0%25,0%25,0%25);fill-opacity:1;' d='M 7.976562 14.917969 C 7.199219 14.921875 6.425781 14.789062 5.691406 14.53125 C 5.632812 14.703125 5.546875 14.859375 5.441406 15.003906 C 7.089844 15.59375 8.898438 15.59375 10.546875 14.992188 C 10.4375 14.847656 10.355469 14.691406 10.300781 14.519531 C 9.554688 14.785156 8.769531 14.917969 7.976562 14.917969 Z M 7.976562 14.917969 '/%3E%3Cpath style=' stroke:none;fill-rule:nonzero;fill:rgb(0%25,0%25,0%25);fill-opacity:1;' d='M 1.070312 7.59375 C 0.894531 7.59375 0.71875 7.5625 0.550781 7.503906 C 0.539062 7.667969 0.535156 7.832031 0.535156 8 C 0.527344 9.976562 1.3125 11.871094 2.714844 13.265625 C 2.71875 13.269531 2.726562 13.277344 2.734375 13.28125 C 2.816406 13.125 2.921875 12.980469 3.054688 12.859375 C 1.773438 11.566406 1.054688 9.820312 1.0625 8 C 1.0625 7.863281 1.0625 7.730469 1.070312 7.59375 Z M 1.070312 7.59375 '/%3E%3Cpath style=' stroke:none;fill-rule:nonzero;fill:rgb(0%25,0%25,0%25);fill-opacity:1;' d='M 13.242188 2.734375 C 10.335938 -0.171875 5.621094 -0.171875 2.714844 2.734375 C 2.214844 3.234375 1.789062 3.800781 1.449219 4.417969 C 1.621094 4.460938 1.785156 4.527344 1.9375 4.621094 C 2.246094 4.066406 2.636719 3.558594 3.085938 3.109375 C 5.789062 0.40625 10.167969 0.40625 12.867188 3.109375 C 13.324219 3.5625 13.714844 4.078125 14.027344 4.640625 C 14.175781 4.542969 14.339844 4.472656 14.511719 4.425781 C 14.171875 3.804688 13.742188 3.238281 13.242188 2.734375 Z M 13.242188 2.734375 '/%3E%3C/g%3E%3C/svg%3E%0A");
    margin-right: 5px;
    margin-top: 4px;
}

.nav-header--mlb .nav-section-mp__nav-link--accessibility {
    display: flex;
    align-items: center;
}

.nav-header--mlb .nav-section-mp__nav-link--accessibility::before {
    content: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='16px' height='16px' viewBox='0 0 16 16' version='1.1'%3E%3Cg id='surface1'%3E%3Cpath style='fill:none;stroke-width:32.8947;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;' d='M 105.712891 408.691406 C 105.712891 408.691406 499.023438 646.728516 892.333984 408.691406 ' transform='matrix(0.016,0,0,0.016,0,0)'/%3E%3Cpath style='fill:none;stroke-width:32.8947;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;' d='M 739.501953 876.708984 L 500 520.263672 ' transform='matrix(0.016,0,0,0.016,0,0)'/%3E%3Cpath style='fill:none;stroke-width:32.8947;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;' d='M 260.253906 876.708984 L 500 520.263672 ' transform='matrix(0.016,0,0,0.016,0,0)'/%3E%3Cpath style='fill-rule:nonzero;fill:rgb(32.54902%25,76.078431%25,93.333333%25);fill-opacity:1;stroke-width:32.8947;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;' d='M 614.990234 284.179688 C 614.990234 347.65625 563.476562 399.169922 500 399.169922 C 436.523438 399.169922 385.009766 347.65625 385.009766 284.179688 C 385.009766 220.947266 436.523438 169.433594 500 169.433594 C 563.476562 169.433594 614.990234 220.947266 614.990234 284.179688 Z M 614.990234 284.179688 ' transform='matrix(0.016,0,0,0.016,0,0)'/%3E%3Cpath style='fill-rule:nonzero;fill:rgb(32.54902%25,76.078431%25,93.333333%25);fill-opacity:1;stroke-width:32.8947;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;' d='M 983.398438 374.023438 C 983.398438 402.34375 960.449219 425.292969 932.128906 425.292969 C 903.808594 425.292969 880.859375 402.34375 880.859375 374.023438 C 880.859375 345.703125 903.808594 322.753906 932.128906 322.753906 C 960.449219 322.753906 983.398438 345.703125 983.398438 374.023438 Z M 983.398438 374.023438 ' transform='matrix(0.016,0,0,0.016,0,0)'/%3E%3Cpath style='fill-rule:nonzero;fill:rgb(32.54902%25,76.078431%25,93.333333%25);fill-opacity:1;stroke-width:32.8947;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;' d='M 118.896484 374.023438 C 118.896484 402.34375 95.947266 425.292969 67.626953 425.292969 C 39.306641 425.292969 16.357422 402.34375 16.357422 374.023438 C 16.357422 345.703125 39.306641 322.753906 67.626953 322.753906 C 95.947266 322.753906 118.896484 345.703125 118.896484 374.023438 Z M 118.896484 374.023438 ' transform='matrix(0.016,0,0,0.016,0,0)'/%3E%3Cpath style='fill-rule:nonzero;fill:rgb(32.54902%25,76.078431%25,93.333333%25);fill-opacity:1;stroke-width:32.8947;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;' d='M 791.015625 876.708984 C 791.015625 905.029297 767.822266 927.978516 739.501953 927.978516 C 711.181641 927.978516 688.232422 905.029297 688.232422 876.708984 C 688.232422 848.388672 711.181641 825.195312 739.501953 825.195312 C 767.822266 825.195312 791.015625 848.388672 791.015625 876.708984 Z M 791.015625 876.708984 ' transform='matrix(0.016,0,0,0.016,0,0)'/%3E%3Cpath style='fill-rule:nonzero;fill:rgb(32.54902%25,76.078431%25,93.333333%25);fill-opacity:1;stroke-width:32.8947;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;' d='M 311.523438 876.708984 C 311.523438 905.029297 288.574219 927.978516 260.253906 927.978516 C 231.933594 927.978516 208.984375 905.029297 208.984375 876.708984 C 208.984375 848.388672 231.933594 825.195312 260.253906 825.195312 C 288.574219 825.195312 311.523438 848.388672 311.523438 876.708984 Z M 311.523438 876.708984 ' transform='matrix(0.016,0,0,0.016,0,0)'/%3E%3Cpath style=' stroke:none;fill-rule:nonzero;fill:rgb(0%25,0%25,0%25);fill-opacity:1;' d='M 12.921875 12.839844 C 13.054688 12.957031 13.164062 13.097656 13.25 13.257812 C 14.644531 11.863281 15.429688 9.972656 15.425781 8 C 15.425781 7.835938 15.417969 7.675781 15.40625 7.515625 C 15.25 7.566406 15.082031 7.59375 14.914062 7.59375 C 14.90625 7.59375 14.894531 7.59375 14.886719 7.59375 C 14.894531 7.726562 14.898438 7.863281 14.898438 8 C 14.902344 9.808594 14.191406 11.546875 12.921875 12.839844 Z M 12.921875 12.839844 '/%3E%3Cpath style=' stroke:none;fill-rule:nonzero;fill:rgb(0%25,0%25,0%25);fill-opacity:1;' d='M 7.976562 14.917969 C 7.199219 14.921875 6.425781 14.789062 5.691406 14.53125 C 5.632812 14.703125 5.546875 14.859375 5.441406 15.003906 C 7.089844 15.59375 8.898438 15.59375 10.546875 14.992188 C 10.4375 14.847656 10.355469 14.691406 10.300781 14.519531 C 9.554688 14.785156 8.769531 14.917969 7.976562 14.917969 Z M 7.976562 14.917969 '/%3E%3Cpath style=' stroke:none;fill-rule:nonzero;fill:rgb(0%25,0%25,0%25);fill-opacity:1;' d='M 1.070312 7.59375 C 0.894531 7.59375 0.71875 7.5625 0.550781 7.503906 C 0.539062 7.667969 0.535156 7.832031 0.535156 8 C 0.527344 9.976562 1.3125 11.871094 2.714844 13.265625 C 2.71875 13.269531 2.726562 13.277344 2.734375 13.28125 C 2.816406 13.125 2.921875 12.980469 3.054688 12.859375 C 1.773438 11.566406 1.054688 9.820312 1.0625 8 C 1.0625 7.863281 1.0625 7.730469 1.070312 7.59375 Z M 1.070312 7.59375 '/%3E%3Cpath style=' stroke:none;fill-rule:nonzero;fill:rgb(0%25,0%25,0%25);fill-opacity:1;' d='M 13.242188 2.734375 C 10.335938 -0.171875 5.621094 -0.171875 2.714844 2.734375 C 2.214844 3.234375 1.789062 3.800781 1.449219 4.417969 C 1.621094 4.460938 1.785156 4.527344 1.9375 4.621094 C 2.246094 4.066406 2.636719 3.558594 3.085938 3.109375 C 5.789062 0.40625 10.167969 0.40625 12.867188 3.109375 C 13.324219 3.5625 13.714844 4.078125 14.027344 4.640625 C 14.175781 4.542969 14.339844 4.472656 14.511719 4.425781 C 14.171875 3.804688 13.742188 3.238281 13.242188 2.734375 Z M 13.242188 2.734375 '/%3E%3C/g%3E%3C/svg%3E%0A");
    margin-right: 5px;
    margin-top: 4px;
}

.nav-footer-mp--mlb .nav-section-mp__nav-link--accessibility {
    display: flex;
    align-items: center;
}

.nav-footer-mp--mlb .nav-section-mp__nav-link--accessibility::before {
    content: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='16px' height='16px' viewBox='0 0 16 16' version='1.1'%3E%3Cg id='surface1'%3E%3Cpath style='fill:none;stroke-width:32.8947;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;' d='M 105.712891 408.691406 C 105.712891 408.691406 499.023438 646.728516 892.333984 408.691406 ' transform='matrix(0.016,0,0,0.016,0,0)'/%3E%3Cpath style='fill:none;stroke-width:32.8947;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;' d='M 739.501953 876.708984 L 500 520.263672 ' transform='matrix(0.016,0,0,0.016,0,0)'/%3E%3Cpath style='fill:none;stroke-width:32.8947;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;' d='M 260.253906 876.708984 L 500 520.263672 ' transform='matrix(0.016,0,0,0.016,0,0)'/%3E%3Cpath style='fill-rule:nonzero;fill:rgb(32.54902%25,76.078431%25,93.333333%25);fill-opacity:1;stroke-width:32.8947;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;' d='M 614.990234 284.179688 C 614.990234 347.65625 563.476562 399.169922 500 399.169922 C 436.523438 399.169922 385.009766 347.65625 385.009766 284.179688 C 385.009766 220.947266 436.523438 169.433594 500 169.433594 C 563.476562 169.433594 614.990234 220.947266 614.990234 284.179688 Z M 614.990234 284.179688 ' transform='matrix(0.016,0,0,0.016,0,0)'/%3E%3Cpath style='fill-rule:nonzero;fill:rgb(32.54902%25,76.078431%25,93.333333%25);fill-opacity:1;stroke-width:32.8947;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;' d='M 983.398438 374.023438 C 983.398438 402.34375 960.449219 425.292969 932.128906 425.292969 C 903.808594 425.292969 880.859375 402.34375 880.859375 374.023438 C 880.859375 345.703125 903.808594 322.753906 932.128906 322.753906 C 960.449219 322.753906 983.398438 345.703125 983.398438 374.023438 Z M 983.398438 374.023438 ' transform='matrix(0.016,0,0,0.016,0,0)'/%3E%3Cpath style='fill-rule:nonzero;fill:rgb(32.54902%25,76.078431%25,93.333333%25);fill-opacity:1;stroke-width:32.8947;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;' d='M 118.896484 374.023438 C 118.896484 402.34375 95.947266 425.292969 67.626953 425.292969 C 39.306641 425.292969 16.357422 402.34375 16.357422 374.023438 C 16.357422 345.703125 39.306641 322.753906 67.626953 322.753906 C 95.947266 322.753906 118.896484 345.703125 118.896484 374.023438 Z M 118.896484 374.023438 ' transform='matrix(0.016,0,0,0.016,0,0)'/%3E%3Cpath style='fill-rule:nonzero;fill:rgb(32.54902%25,76.078431%25,93.333333%25);fill-opacity:1;stroke-width:32.8947;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;' d='M 791.015625 876.708984 C 791.015625 905.029297 767.822266 927.978516 739.501953 927.978516 C 711.181641 927.978516 688.232422 905.029297 688.232422 876.708984 C 688.232422 848.388672 711.181641 825.195312 739.501953 825.195312 C 767.822266 825.195312 791.015625 848.388672 791.015625 876.708984 Z M 791.015625 876.708984 ' transform='matrix(0.016,0,0,0.016,0,0)'/%3E%3Cpath style='fill-rule:nonzero;fill:rgb(32.54902%25,76.078431%25,93.333333%25);fill-opacity:1;stroke-width:32.8947;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;' d='M 311.523438 876.708984 C 311.523438 905.029297 288.574219 927.978516 260.253906 927.978516 C 231.933594 927.978516 208.984375 905.029297 208.984375 876.708984 C 208.984375 848.388672 231.933594 825.195312 260.253906 825.195312 C 288.574219 825.195312 311.523438 848.388672 311.523438 876.708984 Z M 311.523438 876.708984 ' transform='matrix(0.016,0,0,0.016,0,0)'/%3E%3Cpath style=' stroke:none;fill-rule:nonzero;fill:rgb(0%25,0%25,0%25);fill-opacity:1;' d='M 12.921875 12.839844 C 13.054688 12.957031 13.164062 13.097656 13.25 13.257812 C 14.644531 11.863281 15.429688 9.972656 15.425781 8 C 15.425781 7.835938 15.417969 7.675781 15.40625 7.515625 C 15.25 7.566406 15.082031 7.59375 14.914062 7.59375 C 14.90625 7.59375 14.894531 7.59375 14.886719 7.59375 C 14.894531 7.726562 14.898438 7.863281 14.898438 8 C 14.902344 9.808594 14.191406 11.546875 12.921875 12.839844 Z M 12.921875 12.839844 '/%3E%3Cpath style=' stroke:none;fill-rule:nonzero;fill:rgb(0%25,0%25,0%25);fill-opacity:1;' d='M 7.976562 14.917969 C 7.199219 14.921875 6.425781 14.789062 5.691406 14.53125 C 5.632812 14.703125 5.546875 14.859375 5.441406 15.003906 C 7.089844 15.59375 8.898438 15.59375 10.546875 14.992188 C 10.4375 14.847656 10.355469 14.691406 10.300781 14.519531 C 9.554688 14.785156 8.769531 14.917969 7.976562 14.917969 Z M 7.976562 14.917969 '/%3E%3Cpath style=' stroke:none;fill-rule:nonzero;fill:rgb(0%25,0%25,0%25);fill-opacity:1;' d='M 1.070312 7.59375 C 0.894531 7.59375 0.71875 7.5625 0.550781 7.503906 C 0.539062 7.667969 0.535156 7.832031 0.535156 8 C 0.527344 9.976562 1.3125 11.871094 2.714844 13.265625 C 2.71875 13.269531 2.726562 13.277344 2.734375 13.28125 C 2.816406 13.125 2.921875 12.980469 3.054688 12.859375 C 1.773438 11.566406 1.054688 9.820312 1.0625 8 C 1.0625 7.863281 1.0625 7.730469 1.070312 7.59375 Z M 1.070312 7.59375 '/%3E%3Cpath style=' stroke:none;fill-rule:nonzero;fill:rgb(0%25,0%25,0%25);fill-opacity:1;' d='M 13.242188 2.734375 C 10.335938 -0.171875 5.621094 -0.171875 2.714844 2.734375 C 2.214844 3.234375 1.789062 3.800781 1.449219 4.417969 C 1.621094 4.460938 1.785156 4.527344 1.9375 4.621094 C 2.246094 4.066406 2.636719 3.558594 3.085938 3.109375 C 5.789062 0.40625 10.167969 0.40625 12.867188 3.109375 C 13.324219 3.5625 13.714844 4.078125 14.027344 4.640625 C 14.175781 4.542969 14.339844 4.472656 14.511719 4.425781 C 14.171875 3.804688 13.742188 3.238281 13.242188 2.734375 Z M 13.242188 2.734375 '/%3E%3C/g%3E%3C/svg%3E%0A");
    margin-right: 5px;
    margin-top: 4px;
}

.copyright-and-social--mlb .nav-section-mp__nav-link--accessibility {
    display: flex;
    align-items: center;
}

.copyright-and-social--mlb .nav-section-mp__nav-link--accessibility::before {
    content: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='16px' height='16px' viewBox='0 0 16 16' version='1.1'%3E%3Cg id='surface1'%3E%3Cpath style='fill:none;stroke-width:32.8947;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;' d='M 105.712891 408.691406 C 105.712891 408.691406 499.023438 646.728516 892.333984 408.691406 ' transform='matrix(0.016,0,0,0.016,0,0)'/%3E%3Cpath style='fill:none;stroke-width:32.8947;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;' d='M 739.501953 876.708984 L 500 520.263672 ' transform='matrix(0.016,0,0,0.016,0,0)'/%3E%3Cpath style='fill:none;stroke-width:32.8947;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;' d='M 260.253906 876.708984 L 500 520.263672 ' transform='matrix(0.016,0,0,0.016,0,0)'/%3E%3Cpath style='fill-rule:nonzero;fill:rgb(32.54902%25,76.078431%25,93.333333%25);fill-opacity:1;stroke-width:32.8947;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;' d='M 614.990234 284.179688 C 614.990234 347.65625 563.476562 399.169922 500 399.169922 C 436.523438 399.169922 385.009766 347.65625 385.009766 284.179688 C 385.009766 220.947266 436.523438 169.433594 500 169.433594 C 563.476562 169.433594 614.990234 220.947266 614.990234 284.179688 Z M 614.990234 284.179688 ' transform='matrix(0.016,0,0,0.016,0,0)'/%3E%3Cpath style='fill-rule:nonzero;fill:rgb(32.54902%25,76.078431%25,93.333333%25);fill-opacity:1;stroke-width:32.8947;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;' d='M 983.398438 374.023438 C 983.398438 402.34375 960.449219 425.292969 932.128906 425.292969 C 903.808594 425.292969 880.859375 402.34375 880.859375 374.023438 C 880.859375 345.703125 903.808594 322.753906 932.128906 322.753906 C 960.449219 322.753906 983.398438 345.703125 983.398438 374.023438 Z M 983.398438 374.023438 ' transform='matrix(0.016,0,0,0.016,0,0)'/%3E%3Cpath style='fill-rule:nonzero;fill:rgb(32.54902%25,76.078431%25,93.333333%25);fill-opacity:1;stroke-width:32.8947;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;' d='M 118.896484 374.023438 C 118.896484 402.34375 95.947266 425.292969 67.626953 425.292969 C 39.306641 425.292969 16.357422 402.34375 16.357422 374.023438 C 16.357422 345.703125 39.306641 322.753906 67.626953 322.753906 C 95.947266 322.753906 118.896484 345.703125 118.896484 374.023438 Z M 118.896484 374.023438 ' transform='matrix(0.016,0,0,0.016,0,0)'/%3E%3Cpath style='fill-rule:nonzero;fill:rgb(32.54902%25,76.078431%25,93.333333%25);fill-opacity:1;stroke-width:32.8947;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;' d='M 791.015625 876.708984 C 791.015625 905.029297 767.822266 927.978516 739.501953 927.978516 C 711.181641 927.978516 688.232422 905.029297 688.232422 876.708984 C 688.232422 848.388672 711.181641 825.195312 739.501953 825.195312 C 767.822266 825.195312 791.015625 848.388672 791.015625 876.708984 Z M 791.015625 876.708984 ' transform='matrix(0.016,0,0,0.016,0,0)'/%3E%3Cpath style='fill-rule:nonzero;fill:rgb(32.54902%25,76.078431%25,93.333333%25);fill-opacity:1;stroke-width:32.8947;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;' d='M 311.523438 876.708984 C 311.523438 905.029297 288.574219 927.978516 260.253906 927.978516 C 231.933594 927.978516 208.984375 905.029297 208.984375 876.708984 C 208.984375 848.388672 231.933594 825.195312 260.253906 825.195312 C 288.574219 825.195312 311.523438 848.388672 311.523438 876.708984 Z M 311.523438 876.708984 ' transform='matrix(0.016,0,0,0.016,0,0)'/%3E%3Cpath style=' stroke:none;fill-rule:nonzero;fill:rgb(0%25,0%25,0%25);fill-opacity:1;' d='M 12.921875 12.839844 C 13.054688 12.957031 13.164062 13.097656 13.25 13.257812 C 14.644531 11.863281 15.429688 9.972656 15.425781 8 C 15.425781 7.835938 15.417969 7.675781 15.40625 7.515625 C 15.25 7.566406 15.082031 7.59375 14.914062 7.59375 C 14.90625 7.59375 14.894531 7.59375 14.886719 7.59375 C 14.894531 7.726562 14.898438 7.863281 14.898438 8 C 14.902344 9.808594 14.191406 11.546875 12.921875 12.839844 Z M 12.921875 12.839844 '/%3E%3Cpath style=' stroke:none;fill-rule:nonzero;fill:rgb(0%25,0%25,0%25);fill-opacity:1;' d='M 7.976562 14.917969 C 7.199219 14.921875 6.425781 14.789062 5.691406 14.53125 C 5.632812 14.703125 5.546875 14.859375 5.441406 15.003906 C 7.089844 15.59375 8.898438 15.59375 10.546875 14.992188 C 10.4375 14.847656 10.355469 14.691406 10.300781 14.519531 C 9.554688 14.785156 8.769531 14.917969 7.976562 14.917969 Z M 7.976562 14.917969 '/%3E%3Cpath style=' stroke:none;fill-rule:nonzero;fill:rgb(0%25,0%25,0%25);fill-opacity:1;' d='M 1.070312 7.59375 C 0.894531 7.59375 0.71875 7.5625 0.550781 7.503906 C 0.539062 7.667969 0.535156 7.832031 0.535156 8 C 0.527344 9.976562 1.3125 11.871094 2.714844 13.265625 C 2.71875 13.269531 2.726562 13.277344 2.734375 13.28125 C 2.816406 13.125 2.921875 12.980469 3.054688 12.859375 C 1.773438 11.566406 1.054688 9.820312 1.0625 8 C 1.0625 7.863281 1.0625 7.730469 1.070312 7.59375 Z M 1.070312 7.59375 '/%3E%3Cpath style=' stroke:none;fill-rule:nonzero;fill:rgb(0%25,0%25,0%25);fill-opacity:1;' d='M 13.242188 2.734375 C 10.335938 -0.171875 5.621094 -0.171875 2.714844 2.734375 C 2.214844 3.234375 1.789062 3.800781 1.449219 4.417969 C 1.621094 4.460938 1.785156 4.527344 1.9375 4.621094 C 2.246094 4.066406 2.636719 3.558594 3.085938 3.109375 C 5.789062 0.40625 10.167969 0.40625 12.867188 3.109375 C 13.324219 3.5625 13.714844 4.078125 14.027344 4.640625 C 14.175781 4.542969 14.339844 4.472656 14.511719 4.425781 C 14.171875 3.804688 13.742188 3.238281 13.242188 2.734375 Z M 13.242188 2.734375 '/%3E%3C/g%3E%3C/svg%3E%0A");
    margin-right: 5px;
    margin-top: 4px;
}

.ln-nav-container {
    height: 19px;
}

.ln-nav-container__list {
    display: flex;
    padding: 0px;
    margin: 0px;
}

.ln-nav-link {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    list-style-type: none;
    color: rgba(0, 0, 0, 0.6);
    font-size: 14px;
    cursor: pointer;
    padding-top: inherit;
    padding-right: inherit;
    padding-left: inherit;
    padding-bottom: 20px;
    border: none;
    background: none;
    font-family: inherit;
}

.ln-nav-link .ln-chevron {
    width: 8px;
    margin: 0px 0px 3px 6px;
    transition: 0.12s ease-out;
}

.ln-nav-link:hover {
    color: rgb(0, 0, 0);
    transition: 0.12s ease-out;
}

.ln-nav-link:hover .ln-chevron__g {
    fill: rgb(0, 0, 0);
    transition: 0.12s ease-out;
}

.ln-nav-link:hover .ln-chevron--down {
    fill: rgb(0, 0, 0);
}

.ln-nav-link:hover .ln-list-container__desktop {
    visibility: visible;
    opacity: 1;
    transition: visibility 0.5s, opacity 0.5s ease-out;
}

button.ln-nav-link {
    margin: 0px 32px 0px 0px;
    font-size: 16px;
    line-height: 16px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.9);
}

button.ln-nav-link::after {
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='16' viewBox='0 0 12 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 7L5.64775 10.3523L2.2955 7L1.5 7.7955L5.64775 11.9432L9.7955 7.7955L9 7Z' fill='black' fill-opacity='0.9' stroke='black' stroke-width='0.25'/%3E%3C/svg%3E");
    width: 12px;
    height: 16px;
    content: " ";
    margin-left: 4px;
}

.ln-nav-container__list li:last-child button.ln-nav-link {
    margin: 0px 52px 0px 0px;
}

.ln-list-container:hover+.ln-nav-container>.ln-nav-container__list .ln-nav-link {
    color: rgb(0, 0, 0);
}

.ln-list-container:hover+.ln-nav-container>.ln-nav-container__list .ln-nav-link .ln-chevron__g {
    fill: rgb(0, 0, 0);
}

.ln-list-container {
    position: absolute;
    z-index: 11;
    width: 360px;
    top: 60px;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 8px 16px 0px, rgba(0, 0, 0, 0.1) 0px 0px 6px 0px;
    background: rgb(255, 255, 255);
}

.ln-list-container--close {
    visibility: hidden;
    opacity: 0;
}

.ln-list-container--open {
    visibility: visible;
    opacity: 1;
}

.ln-list-container__desktop {
    visibility: hidden;
    opacity: 0;
}

.ln-list-container__desktop--close {
    visibility: hidden;
    opacity: 0;
}

.ln-list-container__desktop--open {
    visibility: visible;
    opacity: 1;
}

.ln-list-container::before {
    content: " ";
    display: block;
    position: absolute;
    z-index: 3;
    background: rgb(255, 255, 255);
    transform: rotate(45deg);
    border-width: 0.5px 0px 0px 0.5px;
    border-color: rgba(51, 51, 51, 0.08);
    border-style: solid;
    width: 14px;
    height: 14px;
    top: -8px;
    right: calc(50% - 7px);
}

.ln-list-container__separator {
    display: none;
}

@media only screen and (max-width: 768px) {
    .ln-list-container {
        position: initial;
        width: initial;
        margin-top: 0px;
        border: none;
        box-shadow: none;
    }

    .ln-list-container__separator {
        display: block;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }
}

.ln-list-content__separator {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-section-mp--mlb .ln-list-content {
    padding: 12px 0px;
}

.nav-header-guest--mlb .ln-list-content {
    padding: 12px 0px;
}

.nav-header-user-welcome--mlb .ln-list-content {
    padding: 12px 0px;
}

.nav-header-user-menu--mlb .ln-list-content {
    padding: 12px 0px;
}

.nav-header--mlb .ln-list-content {
    padding: 12px 0px;
}

.nav-footer-mp--mlb .ln-list-content {
    padding: 12px 0px;
}

.copyright-and-social--mlb .ln-list-content {
    padding: 12px 0px;
}

@media only screen and (max-width: 768px) {
    .ln-list-content {
        padding: 0px;
    }

    .ln-list-content__separator {
        display: none;
    }
}

.ln-list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 16px 24px 20px;
    margin: 8px 0px;
    text-align: left;
    text-decoration: none;
    transition: 0.12s ease-out;
}

.ln-list-header:hover {
    background-color: rgba(0, 0, 0, 0.04);
    transition: 0.12s ease-out;
}

.ln-list-header:hover .ln-list-header__icon.ln-icon {
    background: var(--andes-color-blue-500, #3483fa);
    opacity: 1;
}

.ln-list-header:hover .ln-list-header__subtitle {
    max-width: 248px;
    margin: 0px;
    color: rgba(0, 0, 0, 0.4);
    font-size: 14px;
}

.ln-list-header:focus {
    color: rgb(0, 0, 0);
    box-shadow: rgba(0, 158, 227, 0.3) 0px 0px 0px 3px inset;
    transition: box-shadow 0.25s ease-in;
}

.ln-list-header__icon {
    display: flex;
    margin-right: 16px;
}

.ln-list-header__info {
    display: flex;
    align-items: center;
    padding: 0px;
}

.ln-list-header__texts {
    display: flex;
    flex-direction: column;
    margin: 0px;
}

.ln-list-header__title {
    margin: 0px;
    color: rgba(0, 0, 0, 0.8);
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    transition: 0.12s ease-out;
}

.ln-list-header__subtitle {
    margin: 0px;
    color: rgba(0, 0, 0, 0.45);
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
}

.ln-list-header>.ln-chevron {
    display: none;
}

.no-separator {
    padding: 12px 16px 12px 24px;
    margin: 8px 0px 0px;
}

@media only screen and (max-width: 768px) {
    .ln-list-header {
        padding: 12px 24px;
        margin: 16px 0px 0px;
    }

    .ln-list-header__icon {
        margin-right: 20px;
        opacity: 1;
    }

    .ln-list-header__icon:not(.digital_account__header, .tools_for_sellers__header) {
        visibility: hidden;
    }

    .ln-list-header>.ln-chevron {
        display: initial;
    }
}

.nav-section-mp--mlb .ln-list-header {
    padding: 12px 24px;
    margin: 0px;
}

@media only screen and (max-width: 768px) {
    .nav-section-mp--mlb .ln-list-header {
        margin: 16px 0px 0px;
    }
}

.nav-header-guest--mlb .ln-list-header {
    padding: 12px 24px;
    margin: 0px;
}

@media only screen and (max-width: 768px) {
    .nav-header-guest--mlb .ln-list-header {
        margin: 16px 0px 0px;
    }
}

.nav-header-user-welcome--mlb .ln-list-header {
    padding: 12px 24px;
    margin: 0px;
}

@media only screen and (max-width: 768px) {
    .nav-header-user-welcome--mlb .ln-list-header {
        margin: 16px 0px 0px;
    }
}

.nav-header-user-menu--mlb .ln-list-header {
    padding: 12px 24px;
    margin: 0px;
}

@media only screen and (max-width: 768px) {
    .nav-header-user-menu--mlb .ln-list-header {
        margin: 16px 0px 0px;
    }
}

.nav-header--mlb .ln-list-header {
    padding: 12px 24px;
    margin: 0px;
}

@media only screen and (max-width: 768px) {
    .nav-header--mlb .ln-list-header {
        margin: 16px 0px 0px;
    }
}

.nav-footer-mp--mlb .ln-list-header {
    padding: 12px 24px;
    margin: 0px;
}

@media only screen and (max-width: 768px) {
    .nav-footer-mp--mlb .ln-list-header {
        margin: 16px 0px 0px;
    }
}

.copyright-and-social--mlb .ln-list-header {
    padding: 12px 24px;
    margin: 0px;
}

@media only screen and (max-width: 768px) {
    .copyright-and-social--mlb .ln-list-header {
        margin: 16px 0px 0px;
    }
}

.ln-list-body {
    padding: 0px;
    margin: 16px 0px 20px;
    max-height: 80vh;
    overflow-y: auto;
    list-style-type: none;
}

@media only screen and (max-width: 768px) {
    .ln-list-body {
        overflow-y: hidden;
        max-height: unset;
        margin: 0px 0px 16px;
        transition: max-height 400ms cubic-bezier(0.73, -0.02, 0.46, 1);
    }

    .ln-list-body.no-icons .ln-collapsible-item,
    .ln-list-body.no-icons li a {
        padding-left: 24px;
    }
}

.nav-section-mp--mlb .ln-list-body {
    margin: 0px;
}

.nav-section-mp--mlb .ln-list-container {
    padding: 12px 0px;
}

.nav-section-mp--mlb .ln-list-item__link {
    line-height: 24px;
}

.nav-section-mp--mlb #digital_account>li .ln-chevron {
    display: none;
}

@media only screen and (max-width: 768px) {
    .nav-section-mp--mlb .ln-list-body {
        margin: 0px 0px 40px;
    }
}

.nav-header-guest--mlb .ln-list-body {
    margin: 0px;
}

.nav-header-guest--mlb .ln-list-container {
    padding: 12px 0px;
}

.nav-header-guest--mlb .ln-list-item__link {
    line-height: 24px;
}

.nav-header-guest--mlb #digital_account>li .ln-chevron {
    display: none;
}

@media only screen and (max-width: 768px) {
    .nav-header-guest--mlb .ln-list-body {
        margin: 0px 0px 40px;
    }
}

.nav-header-user-welcome--mlb .ln-list-body {
    margin: 0px;
}

.nav-header-user-welcome--mlb .ln-list-container {
    padding: 12px 0px;
}

.nav-header-user-welcome--mlb .ln-list-item__link {
    line-height: 24px;
}

.nav-header-user-welcome--mlb #digital_account>li .ln-chevron {
    display: none;
}

@media only screen and (max-width: 768px) {
    .nav-header-user-welcome--mlb .ln-list-body {
        margin: 0px 0px 40px;
    }
}

.nav-header-user-menu--mlb .ln-list-body {
    margin: 0px;
}

.nav-header-user-menu--mlb .ln-list-container {
    padding: 12px 0px;
}

.nav-header-user-menu--mlb .ln-list-item__link {
    line-height: 24px;
}

.nav-header-user-menu--mlb #digital_account>li .ln-chevron {
    display: none;
}

@media only screen and (max-width: 768px) {
    .nav-header-user-menu--mlb .ln-list-body {
        margin: 0px 0px 40px;
    }
}

.nav-header--mlb .ln-list-body {
    margin: 0px;
}

.nav-header--mlb .ln-list-container {
    padding: 12px 0px;
}

.nav-header--mlb .ln-list-item__link {
    line-height: 24px;
}

.nav-header--mlb #digital_account>li .ln-chevron {
    display: none;
}

@media only screen and (max-width: 768px) {
    .nav-header--mlb .ln-list-body {
        margin: 0px 0px 40px;
    }
}

.nav-footer-mp--mlb .ln-list-body {
    margin: 0px;
}

.nav-footer-mp--mlb .ln-list-container {
    padding: 12px 0px;
}

.nav-footer-mp--mlb .ln-list-item__link {
    line-height: 24px;
}

.nav-footer-mp--mlb #digital_account>li .ln-chevron {
    display: none;
}

@media only screen and (max-width: 768px) {
    .nav-footer-mp--mlb .ln-list-body {
        margin: 0px 0px 40px;
    }
}

.copyright-and-social--mlb .ln-list-body {
    margin: 0px;
}

.copyright-and-social--mlb .ln-list-container {
    padding: 12px 0px;
}

.copyright-and-social--mlb .ln-list-item__link {
    line-height: 24px;
}

.copyright-and-social--mlb #digital_account>li .ln-chevron {
    display: none;
}

@media only screen and (max-width: 768px) {
    .copyright-and-social--mlb .ln-list-body {
        margin: 0px 0px 40px;
    }
}

.ln-list-item {
    transition: 0.12s ease-out;
}

.ln-list-item:hover {
    background-color: rgba(0, 0, 0, 0.04);
    transition: 0.12s ease-out;
}

.ln-list-item:hover .ln-list-item__icon.ln-icon {
    background: var(--andes-color-blue-500, #3483fa);
    opacity: 1;
}

.ln-list-item:focus {
    color: rgb(0, 0, 0);
}

.ln-list-item:focus-visible .ln-list-container__desktop,
.ln-list-item :hover .ln-list-container__desktop {
    visibility: visible;
    opacity: 1;
    transition: visibility 0.7s, opacity 0.7s ease-out;
}

.ln-list-item__link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: initial;
    text-decoration: none;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.8);
    padding: 12px 16px 12px 24px;
}

.ln-list-item__link:hover {
    color: rgba(0, 0, 0, 0.8);
}

.ln-list-item__link:focus {
    color: rgb(0, 0, 0);
    box-shadow: rgba(0, 158, 227, 0.3) 0px 0px 0px 3px inset;
    transition: box-shadow 0.25s ease-in;
}

.ln-list-item__link>.ln-chevron {
    display: none;
}

.ln-list-item__content {
    display: flex;
    align-items: center;
    transition: 0.12s ease-out;
    margin: 0px;
}

.ln-list-item__icon {
    margin-right: 20px;
}

@media only screen and (max-width: 768px) {
    .ln-list-item__link {
        padding: 9px 24px 9px 68px;
    }

    .ln-list-item__link>.ln-chevron {
        display: initial;
    }

    .ln-list-item__icon {
        display: none;
    }

    .ln-list-item:nth-child(n+5) {
        display: none;
    }

    .ln-list-item:nth-child(5) {
        animation: 200ms cubic-bezier(0.73, -0.02, 0.46, 1) 150ms 1 normal none running fadeout;
    }

    .ln-list-item:nth-child(6) {
        animation: 200ms cubic-bezier(0.73, -0.02, 0.46, 1) 100ms 1 normal none running fadeout;
    }

    .ln-list-item:nth-child(7) {
        animation: 200ms cubic-bezier(0.73, -0.02, 0.46, 1) 50ms 1 normal none running fadeout;
    }
}

.ln-collapsible-item__input:checked+.ln-list-body .ln-list-item:nth-child(5) {
    animation: 200ms cubic-bezier(0.73, -0.02, 0.46, 1) 50ms 1 normal none running fadein;
}

.ln-collapsible-item__input:checked+.ln-list-body .ln-list-item:nth-child(6) {
    animation: 200ms cubic-bezier(0.73, -0.02, 0.46, 1) 100ms 1 normal none running fadein;
}

.ln-collapsible-item__input:checked+.ln-list-body .ln-list-item:nth-child(7) {
    animation: 200ms cubic-bezier(0.73, -0.02, 0.46, 1) 150ms 1 normal none running fadein;
}

.nav-section-mp--mlb .ln-list-item__icon {
    display: none;
}

.nav-section-mp--mlb .ln-list-item__content {
    flex-direction: column;
    align-items: flex-start;
    text-align: initial;
}

.nav-section-mp--mlb .ln-list-item__subtitle {
    max-width: 248px;
    margin: 0px;
    color: rgba(0, 0, 0, 0.4);
    font-size: 14px;
}

.nav-section-mp--mlb .ln-list-item__link {
    padding: 12px 24px;
}

.nav-section-mp--mlb .ln-list-item--title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: initial;
    text-decoration: none;
    padding: 24px 16px 12px 24px;
    background: none;
    cursor: default;
    pointer-events: none;
}

.nav-section-mp--mlb .ln-list-item--title:hover {
    background: none;
}

.nav-section-mp--mlb .ln-list-item--title .ln-list-item__title {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.4);
    text-transform: uppercase;
}

@media only screen and (max-width: 768px) {
    .nav-section-mp--mlb ul.ln-list-body>li:nth-child(n+5) {
        display: none;
    }

    .nav-section-mp--mlb ul.ln-list-body>li:nth-child(n+5):nth-child(5) {
        animation: 200ms cubic-bezier(0.73, -0.02, 0.46, 1) 150ms 1 normal none running fadeout;
    }

    .nav-section-mp--mlb ul.ln-list-body>li:nth-child(n+5):nth-child(6) {
        animation: 200ms cubic-bezier(0.73, -0.02, 0.46, 1) 100ms 1 normal none running fadeout;
    }

    .nav-section-mp--mlb ul.ln-list-body>li:nth-child(n+5):nth-child(7) {
        animation: 200ms cubic-bezier(0.73, -0.02, 0.46, 1) 50ms 1 normal none running fadeout;
    }
}

.nav-header-guest--mlb .ln-list-item__icon {
    display: none;
}

.nav-header-guest--mlb .ln-list-item__content {
    flex-direction: column;
    align-items: flex-start;
    text-align: initial;
}

.nav-header-guest--mlb .ln-list-item__subtitle {
    max-width: 248px;
    margin: 0px;
    color: rgba(0, 0, 0, 0.4);
    font-size: 14px;
}

.nav-header-guest--mlb .ln-list-item__link {
    padding: 12px 24px;
}

.nav-header-guest--mlb .ln-list-item--title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: initial;
    text-decoration: none;
    padding: 24px 16px 12px 24px;
    background: none;
    cursor: default;
    pointer-events: none;
}

.nav-header-guest--mlb .ln-list-item--title:hover {
    background: none;
}

.nav-header-guest--mlb .ln-list-item--title .ln-list-item__title {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.4);
    text-transform: uppercase;
}

@media only screen and (max-width: 768px) {
    .nav-header-guest--mlb ul.ln-list-body>li:nth-child(n+5) {
        display: none;
    }

    .nav-header-guest--mlb ul.ln-list-body>li:nth-child(n+5):nth-child(5) {
        animation: 200ms cubic-bezier(0.73, -0.02, 0.46, 1) 150ms 1 normal none running fadeout;
    }

    .nav-header-guest--mlb ul.ln-list-body>li:nth-child(n+5):nth-child(6) {
        animation: 200ms cubic-bezier(0.73, -0.02, 0.46, 1) 100ms 1 normal none running fadeout;
    }

    .nav-header-guest--mlb ul.ln-list-body>li:nth-child(n+5):nth-child(7) {
        animation: 200ms cubic-bezier(0.73, -0.02, 0.46, 1) 50ms 1 normal none running fadeout;
    }
}

.nav-header-user-welcome--mlb .ln-list-item__icon {
    display: none;
}

.nav-header-user-welcome--mlb .ln-list-item__content {
    flex-direction: column;
    align-items: flex-start;
    text-align: initial;
}

.nav-header-user-welcome--mlb .ln-list-item__subtitle {
    max-width: 248px;
    margin: 0px;
    color: rgba(0, 0, 0, 0.4);
    font-size: 14px;
}

.nav-header-user-welcome--mlb .ln-list-item__link {
    padding: 12px 24px;
}

.nav-header-user-welcome--mlb .ln-list-item--title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: initial;
    text-decoration: none;
    padding: 24px 16px 12px 24px;
    background: none;
    cursor: default;
    pointer-events: none;
}

.nav-header-user-welcome--mlb .ln-list-item--title:hover {
    background: none;
}

.nav-header-user-welcome--mlb .ln-list-item--title .ln-list-item__title {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.4);
    text-transform: uppercase;
}

@media only screen and (max-width: 768px) {
    .nav-header-user-welcome--mlb ul.ln-list-body>li:nth-child(n+5) {
        display: none;
    }

    .nav-header-user-welcome--mlb ul.ln-list-body>li:nth-child(n+5):nth-child(5) {
        animation: 200ms cubic-bezier(0.73, -0.02, 0.46, 1) 150ms 1 normal none running fadeout;
    }

    .nav-header-user-welcome--mlb ul.ln-list-body>li:nth-child(n+5):nth-child(6) {
        animation: 200ms cubic-bezier(0.73, -0.02, 0.46, 1) 100ms 1 normal none running fadeout;
    }

    .nav-header-user-welcome--mlb ul.ln-list-body>li:nth-child(n+5):nth-child(7) {
        animation: 200ms cubic-bezier(0.73, -0.02, 0.46, 1) 50ms 1 normal none running fadeout;
    }
}

.nav-header-user-menu--mlb .ln-list-item__icon {
    display: none;
}

.nav-header-user-menu--mlb .ln-list-item__content {
    flex-direction: column;
    align-items: flex-start;
    text-align: initial;
}

.nav-header-user-menu--mlb .ln-list-item__subtitle {
    max-width: 248px;
    margin: 0px;
    color: rgba(0, 0, 0, 0.4);
    font-size: 14px;
}

.nav-header-user-menu--mlb .ln-list-item__link {
    padding: 12px 24px;
}

.nav-header-user-menu--mlb .ln-list-item--title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: initial;
    text-decoration: none;
    padding: 24px 16px 12px 24px;
    background: none;
    cursor: default;
    pointer-events: none;
}

.nav-header-user-menu--mlb .ln-list-item--title:hover {
    background: none;
}

.nav-header-user-menu--mlb .ln-list-item--title .ln-list-item__title {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.4);
    text-transform: uppercase;
}

@media only screen and (max-width: 768px) {
    .nav-header-user-menu--mlb ul.ln-list-body>li:nth-child(n+5) {
        display: none;
    }

    .nav-header-user-menu--mlb ul.ln-list-body>li:nth-child(n+5):nth-child(5) {
        animation: 200ms cubic-bezier(0.73, -0.02, 0.46, 1) 150ms 1 normal none running fadeout;
    }

    .nav-header-user-menu--mlb ul.ln-list-body>li:nth-child(n+5):nth-child(6) {
        animation: 200ms cubic-bezier(0.73, -0.02, 0.46, 1) 100ms 1 normal none running fadeout;
    }

    .nav-header-user-menu--mlb ul.ln-list-body>li:nth-child(n+5):nth-child(7) {
        animation: 200ms cubic-bezier(0.73, -0.02, 0.46, 1) 50ms 1 normal none running fadeout;
    }
}

.nav-header--mlb .ln-list-item__icon {
    display: none;
}

.nav-header--mlb .ln-list-item__content {
    flex-direction: column;
    align-items: flex-start;
    text-align: initial;
}

.nav-header--mlb .ln-list-item__subtitle {
    max-width: 248px;
    margin: 0px;
    color: rgba(0, 0, 0, 0.4);
    font-size: 14px;
}

.nav-header--mlb .ln-list-item__link {
    padding: 12px 24px;
}

.nav-header--mlb .ln-list-item--title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: initial;
    text-decoration: none;
    padding: 24px 16px 12px 24px;
    background: none;
    cursor: default;
    pointer-events: none;
}

.nav-header--mlb .ln-list-item--title:hover {
    background: none;
}

.nav-header--mlb .ln-list-item--title .ln-list-item__title {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.4);
    text-transform: uppercase;
}

@media only screen and (max-width: 768px) {
    .nav-header--mlb ul.ln-list-body>li:nth-child(n+5) {
        display: none;
    }

    .nav-header--mlb ul.ln-list-body>li:nth-child(n+5):nth-child(5) {
        animation: 200ms cubic-bezier(0.73, -0.02, 0.46, 1) 150ms 1 normal none running fadeout;
    }

    .nav-header--mlb ul.ln-list-body>li:nth-child(n+5):nth-child(6) {
        animation: 200ms cubic-bezier(0.73, -0.02, 0.46, 1) 100ms 1 normal none running fadeout;
    }

    .nav-header--mlb ul.ln-list-body>li:nth-child(n+5):nth-child(7) {
        animation: 200ms cubic-bezier(0.73, -0.02, 0.46, 1) 50ms 1 normal none running fadeout;
    }
}

.nav-footer-mp--mlb .ln-list-item__icon {
    display: none;
}

.nav-footer-mp--mlb .ln-list-item__content {
    flex-direction: column;
    align-items: flex-start;
    text-align: initial;
}

.nav-footer-mp--mlb .ln-list-item__subtitle {
    max-width: 248px;
    margin: 0px;
    color: rgba(0, 0, 0, 0.4);
    font-size: 14px;
}

.nav-footer-mp--mlb .ln-list-item__link {
    padding: 12px 24px;
}

.nav-footer-mp--mlb .ln-list-item--title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: initial;
    text-decoration: none;
    padding: 24px 16px 12px 24px;
    background: none;
    cursor: default;
    pointer-events: none;
}

.nav-footer-mp--mlb .ln-list-item--title:hover {
    background: none;
}

.nav-footer-mp--mlb .ln-list-item--title .ln-list-item__title {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.4);
    text-transform: uppercase;
}

@media only screen and (max-width: 768px) {
    .nav-footer-mp--mlb ul.ln-list-body>li:nth-child(n+5) {
        display: none;
    }

    .nav-footer-mp--mlb ul.ln-list-body>li:nth-child(n+5):nth-child(5) {
        animation: 200ms cubic-bezier(0.73, -0.02, 0.46, 1) 150ms 1 normal none running fadeout;
    }

    .nav-footer-mp--mlb ul.ln-list-body>li:nth-child(n+5):nth-child(6) {
        animation: 200ms cubic-bezier(0.73, -0.02, 0.46, 1) 100ms 1 normal none running fadeout;
    }

    .nav-footer-mp--mlb ul.ln-list-body>li:nth-child(n+5):nth-child(7) {
        animation: 200ms cubic-bezier(0.73, -0.02, 0.46, 1) 50ms 1 normal none running fadeout;
    }
}

.copyright-and-social--mlb .ln-list-item__icon {
    display: none;
}

.copyright-and-social--mlb .ln-list-item__content {
    flex-direction: column;
    align-items: flex-start;
    text-align: initial;
}

.copyright-and-social--mlb .ln-list-item__subtitle {
    max-width: 248px;
    margin: 0px;
    color: rgba(0, 0, 0, 0.4);
    font-size: 14px;
}

.copyright-and-social--mlb .ln-list-item__link {
    padding: 12px 24px;
}

.copyright-and-social--mlb .ln-list-item--title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: initial;
    text-decoration: none;
    padding: 24px 16px 12px 24px;
    background: none;
    cursor: default;
    pointer-events: none;
}

.copyright-and-social--mlb .ln-list-item--title:hover {
    background: none;
}

.copyright-and-social--mlb .ln-list-item--title .ln-list-item__title {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.4);
    text-transform: uppercase;
}

@media only screen and (max-width: 768px) {
    .copyright-and-social--mlb ul.ln-list-body>li:nth-child(n+5) {
        display: none;
    }

    .copyright-and-social--mlb ul.ln-list-body>li:nth-child(n+5):nth-child(5) {
        animation: 200ms cubic-bezier(0.73, -0.02, 0.46, 1) 150ms 1 normal none running fadeout;
    }

    .copyright-and-social--mlb ul.ln-list-body>li:nth-child(n+5):nth-child(6) {
        animation: 200ms cubic-bezier(0.73, -0.02, 0.46, 1) 100ms 1 normal none running fadeout;
    }

    .copyright-and-social--mlb ul.ln-list-body>li:nth-child(n+5):nth-child(7) {
        animation: 200ms cubic-bezier(0.73, -0.02, 0.46, 1) 50ms 1 normal none running fadeout;
    }
}

.ln-collapsible-item {
    display: none;
}

.ln-collapsible-item__input {
    display: none;
}

@media only screen and (max-width: 768px) {
    .ln-collapsible-item {
        display: flex;
        align-items: center;
        padding: 12px 16px 12px 68px;
        color: rgba(0, 0, 0, 0.45);
    }

    .ln-collapsible-item__text--closed {
        margin: 0px 6px 0px 0px;
        font-size: 14px;
    }

    .ln-collapsible-item__text--open {
        margin: 0px 6px 0px 0px;
        font-size: 14px;
        display: none;
    }

    .ln-collapsible-item .ln-chevron {
        width: 8px;
        height: 8px;
        margin: 2px 0px 0px;
        transition: transform 260ms ease-out;
    }

    .nav-section-mp--mlb .ln-collapsible-item {
        padding: 12px 24px;
        color: rgba(0, 0, 0, 0.55);
    }

    .nav-section-mp--mlb .ln-collapsible-item__text--open {
        font-size: 12px;
    }

    .nav-section-mp--mlb .ln-collapsible-item__text--closed {
        font-size: 12px;
    }

    .nav-header-guest--mlb .ln-collapsible-item {
        padding: 12px 24px;
        color: rgba(0, 0, 0, 0.55);
    }

    .nav-header-guest--mlb .ln-collapsible-item__text--open {
        font-size: 12px;
    }

    .nav-header-guest--mlb .ln-collapsible-item__text--closed {
        font-size: 12px;
    }

    .nav-header-user-welcome--mlb .ln-collapsible-item {
        padding: 12px 24px;
        color: rgba(0, 0, 0, 0.55);
    }

    .nav-header-user-welcome--mlb .ln-collapsible-item__text--open {
        font-size: 12px;
    }

    .nav-header-user-welcome--mlb .ln-collapsible-item__text--closed {
        font-size: 12px;
    }

    .nav-header-user-menu--mlb .ln-collapsible-item {
        padding: 12px 24px;
        color: rgba(0, 0, 0, 0.55);
    }

    .nav-header-user-menu--mlb .ln-collapsible-item__text--open {
        font-size: 12px;
    }

    .nav-header-user-menu--mlb .ln-collapsible-item__text--closed {
        font-size: 12px;
    }

    .nav-header--mlb .ln-collapsible-item {
        padding: 12px 24px;
        color: rgba(0, 0, 0, 0.55);
    }

    .nav-header--mlb .ln-collapsible-item__text--open {
        font-size: 12px;
    }

    .nav-header--mlb .ln-collapsible-item__text--closed {
        font-size: 12px;
    }

    .nav-footer-mp--mlb .ln-collapsible-item {
        padding: 12px 24px;
        color: rgba(0, 0, 0, 0.55);
    }

    .nav-footer-mp--mlb .ln-collapsible-item__text--open {
        font-size: 12px;
    }

    .nav-footer-mp--mlb .ln-collapsible-item__text--closed {
        font-size: 12px;
    }

    .copyright-and-social--mlb .ln-collapsible-item {
        padding: 12px 24px;
        color: rgba(0, 0, 0, 0.55);
    }

    .copyright-and-social--mlb .ln-collapsible-item__text--open {
        font-size: 12px;
    }

    .copyright-and-social--mlb .ln-collapsible-item__text--closed {
        font-size: 12px;
    }
}

.ln-collapsible-item__input:checked+.ln-list-body .ln-list-item {
    display: list-item;
}

.ln-collapsible-item__input:checked+.ln-list-body .ln-collapsible-item__text--open {
    display: block;
}

.ln-collapsible-item__input:checked+.ln-list-body .ln-collapsible-item__text--closed {
    display: none;
}

.ln-collapsible-item__input:checked+.ln-list-body .ln-collapsible-item .ln-chevron {
    transform: rotate(-90deg);
}

.ln-nav-container-v2 {
    display: flex;
    align-items: center;
    position: relative;
    text-align: left;
}

.ln-nav-container-v2__list {
    display: flex;
    list-style: none;
    margin: 0px;
    padding: 0px;
    gap: 0px;
    position: relative;
}

.ln-nav-link-v2 {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    list-style-type: none;
    color: rgba(0, 0, 0, 0.6);
    font-size: 14px;
    cursor: default;
    padding: inherit;
    border: none;
    background: none;
    font-family: inherit;
    position: relative;
}

.ln-nav-link-v2:hover {
    cursor: pointer;
}

.ln-nav-link-v2__button {
    margin: 0px 32px 0px 0px;
    font-size: 16px;
    line-height: 16px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.9);
    border: none;
    background: none;
    cursor: default;
    font-family: inherit;
    padding: 0px;
    display: flex;
    align-items: center;
    transition: color 0.2s;
}

.ln-nav-link-v2__button:hover {
    cursor: pointer;
}

.ln-nav-link-v2__button::after {
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='16' viewBox='0 0 12 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 7L5.64775 10.3523L2.2955 7L1.5 7.7955L5.64775 11.9432L9.7955 7.7955L9 7Z' fill='black' fill-opacity='0.9' stroke='black' stroke-width='0.25'/%3E%3C/svg%3E");
    width: 12px;
    height: 16px;
    content: " ";
    margin-left: 4px;
    transition: transform 0.2s;
}

.ln-nav-link-v2__button--active {
    color: rgba(0, 0, 0, 0.9);
}

.ln-nav-link-v2__button--active::after {
    transform: rotate(180deg);
}

.ln-nav-link-v2__button:hover {
    color: rgba(0, 0, 0, 0.9);
}

.ln-nav-container-v2__list li:last-child .ln-nav-link-v2__button {
    margin: 0px;
}

.ln-nav-container-v2__list:has(.ln-nav-link-v2__button--active) .ln-nav-link-v2__button:not(.ln-nav-link-v2__button--active) {
    color: rgba(0, 0, 0, 0.55);
}

@media (min-width: 769px) {
    .ln-list-container-v2 {
        position: fixed;
        z-index: 11;
        width: 100vw;
        left: 0px;
        right: 0px;
        top: 64px;
        border-radius: 0px 0px 40px 40px;
        box-shadow: rgba(37, 37, 55, 0.1) 0px 8px 12px 0px;
        background: rgb(255, 255, 255);
        padding: 32px 0px 80px 20px;
        visibility: hidden;
        opacity: 0;
        transition: visibility 0.3s, opacity 0.3s ease-out;
    }

    .ln-list-container-v2__desktop {
        visibility: hidden;
        opacity: 0;
        transform: translateY(-20px);
        transition: visibility 0.3s, opacity 0.3s ease-out, transform 0.3s ease-out;
    }

    .ln-list-container-v2__desktop--open {
        visibility: visible;
        opacity: 1;
        transform: translateY(0px);
    }
}

@media (min-width: 769px) {
    .ln-list-content-v2 {
        display: flex;
        gap: 60px;
        padding-left: 0px;
        max-width: 1206px;
        margin: 0px auto;
        opacity: 0;
        transform: translateY(-10px);
        transition: opacity 0.3s ease-out 0.1s, transform 0.3s ease-out 0.1s;
    }

    .ln-list-container-v2__desktop--open .ln-list-content-v2 {
        opacity: 1;
        transform: translateY(0px);
    }
}

@media (min-width: 769px) {
    .ln-promotional-column {
        flex: 0 0 auto;
        display: flex;
        flex-direction: column;
        gap: 16px;
        max-width: 270px;
        min-width: 270px;
    }

    .ln-promotional-column__image {
        width: 100%;
        height: 200px;
        border-radius: 20px;
        overflow: hidden;
        position: relative;
        background-color: rgb(202, 202, 202);
        border: none;
        padding: 0px;
        cursor: default;
        display: block;
    }

    .ln-promotional-column__image:hover {
        cursor: pointer;
    }

    .ln-promotional-column__image-element {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .ln-promotional-column__image-placeholder {
        width: 100%;
        height: 100%;
        background-color: rgb(202, 202, 202);
    }

    .ln-promotional-column__title {
        font-size: 28px;
        font-weight: 700;
        line-height: 32px;
        color: rgba(0, 0, 0, 0.9);
        margin: 0px;
    }

    .ln-promotional-column__link {
        font-size: 14px;
        font-weight: 600;
        line-height: 1.25;
        color: var(--text-andes-text-color-link-ml, var(--andes-color-blue-500, var(--andes-color-blue-500, #3483fa)));
        text-align: right;
        text-decoration: none;
        margin-top: 8px;
        background: none;
        border: none;
        padding: 0px;
        cursor: default;
        position: relative;
        display: inline-flex;
        align-items: center;
        gap: 4px;
        width: fit-content;
        max-width: 100%;
    }

    .ln-promotional-column__link:hover {
        cursor: pointer;
    }

    .ln-promotional-column__link::after {
        content: "";
        position: absolute;
        bottom: 0px;
        left: 0px;
        width: 0px;
        height: 1px;
        background-color: var(--andes-color-blue-500, var(--andes-color-blue-500, #3483fa));
        transition: width 0.3s;
    }

    .ln-promotional-column__link:hover::after {
        width: 100%;
    }

    .ln-promotional-column__link-text {
        display: inline;
    }

    .ln-promotional-column__link-arrow {
        flex-shrink: 0;
        display: inline-flex;
        align-items: center;
        transition: transform 0.2s;
        color: var(--andes-color-blue-500, var(--andes-color-blue-500, #3483fa));
    }

    .ln-promotional-column__link-arrow svg {
        display: block;
    }

    .ln-columns-list {
        display: flex;
        flex-direction: row;
        gap: 16px;
        flex: 1 1 0%;
        align-items: flex-start;
    }

    .ln-columns-list:hover .ln-column__item:not(:hover) .ln-column__link {
        color: rgba(0, 0, 0, 0.55);
    }

    .ln-columns-list:hover .ln-column__item:not(:hover) .ln-column__link-label,
    .ln-columns-list:hover .ln-column__item:not(:hover) .ln-column__link-sublabel {
        color: rgba(0, 0, 0, 0.55);
    }

    .ln-column {
        flex: 1 1 0%;
        display: flex;
        flex-direction: column;
        gap: 12px;
        max-width: 271px;
    }

    .ln-column__title {
        font-size: 14px;
        font-weight: 600;
        line-height: 1.25;
        color: rgba(0, 0, 0, 0.25);
        text-transform: uppercase;
        margin: 0px;
        letter-spacing: 0px;
    }

    .ln-column__list {
        list-style: none;
        margin: 0px;
        padding: 0px;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .ln-column__item {
        margin: 0px;
        padding: 0px;
        list-style: none;
    }

    .ln-column__link {
        display: flex;
        flex-direction: column;
        text-decoration: none;
        color: rgba(0, 0, 0, 0.9);
        border: none;
        background: none;
        padding: 0px;
        margin: 0px;
        cursor: default;
        transition: color 0.2s;
    }

    .ln-column__link:hover {
        cursor: pointer;
    }

    .ln-column__link:hover,
    .ln-column__link:visited,
    .ln-column__link:active,
    .ln-column__link:focus {
        text-decoration: none;
    }

    .ln-column__link:hover {
        color: rgba(0, 0, 0, 0.9);
    }

    .ln-column__link-label {
        font-size: 20px;
        font-weight: 600;
        line-height: 32px;
        color: inherit;
        display: block;
        max-width: 232px;
        transition: color 0.2s;
    }

    .ln-column__link-sublabel {
        font-size: 14px;
        font-weight: 400;
        line-height: 18px;
        color: inherit;
        display: block;
        transition: color 0.2s;
    }

    .ln-column__link:hover .ln-column__link-label,
    .ln-column__link:hover .ln-column__link-sublabel {
        color: rgba(0, 0, 0, 0.9);
    }
}

@media only screen and (max-width: 768px) {
    .ln-list-container-v2 {
        position: fixed;
        inset: 64px 0px 0px;
        width: 100vw;
        height: calc(-64px + 100vh);
    }

    @supports (height: 100dvh) {
        .ln-list-container-v2 {
            height: calc(-64px + 100dvh);
        }
    }

    .ln-list-container-v2 {
        background: rgb(255, 255, 255);
        box-shadow: rgba(0, 0, 0, 0.1) 0px 6px 16px 0px;
        z-index: 1000;
        padding: 0px;
        border-radius: 0px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
    }

    .ln-list-container-v2__desktop {
        display: none !important;
    }

    .ln-mobile-menu-initial {
        position: absolute;
        top: 0px;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        gap: 32px;
        padding: 24px 20px 102px;
        overflow-y: auto;
        transition: left 0.3s ease-in-out, visibility 0.3s, opacity 0.3s;
        background: rgb(255, 255, 255);
        z-index: 1;
        left: -100%;
    }

    .ln-mobile-menu-initial[data-menu-view="initial"] {
        left: 0px;
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
    }

    .ln-mobile-menu-initial[data-menu-view="hidden"] {
        left: -100%;
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
    }

    .ln-mobile-menu-initial__title {
        max-width: 280px;
        font-size: 32px;
        font-weight: 700;
        line-height: 40px;
        color: rgba(0, 0, 0, 0.9);
        margin: 0px;
    }

    .ln-mobile-menu-initial__section-button {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 0px;
        border: none;
        background: none;
        cursor: default;
        text-align: left;
        width: 100%;
        position: relative;
        touch-action: manipulation;
        -webkit-tap-highlight-color: rgba(52, 131, 250, 0.3);
        pointer-events: auto !important;
        z-index: 100 !important;
    }

    .ln-mobile-menu-initial__section-button:hover {
        cursor: pointer;
    }

    .ln-mobile-menu-initial__section-content {
        display: flex;
        flex-direction: column;
        gap: 0px;
        flex: 1 1 0%;
    }

    .ln-mobile-menu-initial__section-title {
        font-size: 24px;
        font-weight: 600;
        line-height: 32px;
        color: rgba(0, 0, 0, 0.9);
        margin: 0px;
    }

    .ln-mobile-menu-initial__section-subtitle {
        font-size: 16px;
        font-weight: 400;
        line-height: 24px;
        color: rgba(0, 0, 0, 0.9);
        margin: 0px;
    }

    .ln-mobile-menu-initial__section-chevron {
        flex-shrink: 0;
        margin-left: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .ln-mobile-menu-initial__quick-access {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .ln-mobile-menu-initial__quick-access-title {
        font-size: 20px;
        font-weight: 600;
        line-height: 24px;
        color: rgba(0, 0, 0, 0.9);
        margin: 0px;
    }

    .ln-mobile-menu-initial__quick-access-buttons {
        display: flex;
        gap: 16px;
    }

    .ln-mobile-menu-initial__quick-access-button {
        width: 152px;
        height: 128px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-between;
        padding: 24px 20px;
        border: none;
        border-radius: 20px;
        background: rgba(0, 0, 0, 0.07);
        cursor: default;
        text-decoration: none;
        color: inherit;
    }

    .ln-mobile-menu-initial__quick-access-button:hover {
        cursor: pointer;
    }

    .ln-mobile-menu-initial__quick-access-icon {
        width: 24px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .ln-mobile-menu-initial__quick-access-text {
        font-size: 16px;
        font-weight: 600;
        line-height: 16px;
        color: rgba(0, 0, 0, 0.9);
        letter-spacing: 0.16px;
    }

    .ln-mobile-menu-initial__signup-button {
        height: 48px;
        min-height: 48px;
        background-color: var(--andes-color-blue-500, #3483fa);
        color: rgb(255, 255, 255);
        border: none;
        border-radius: 5px;
        font-size: 14px;
        font-weight: 600;
        line-height: 16px;
        cursor: pointer;
        bottom: 24px;
        left: 20px;
        right: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        position: fixed;
    }

    .ln-mobile-menu-submenu {
        position: absolute;
        top: 0px;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        background-color: rgb(255, 255, 255);
        transition: left 0.3s ease-in-out, visibility 0.3s, opacity 0.3s;
        z-index: 2;
        left: 100%;
    }

    .ln-mobile-menu-submenu[data-menu-view="submenu"] {
        left: 0px;
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
    }

    .ln-mobile-menu-submenu[data-menu-view="hidden"] {
        left: 100%;
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
    }

    .ln-mobile-menu-submenu__scrollable-content {
        flex: 1 1 0%;
        overflow-y: auto;
        padding: 24px 20px 120px;
        display: flex;
        flex-direction: column;
        gap: 40px;
        position: relative;
    }

    .ln-mobile-menu-submenu__scrollable-content.has-scrolled-content {
        box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 4px inset;
    }

    .ln-mobile-menu-submenu__header {
        display: flex;
        flex-direction: column;
        gap: 16px;
        margin-bottom: 0px;
    }

    .ln-mobile-menu-submenu__back-button {
        padding: 0px;
        border: none;
        background: none;
        cursor: default;
        display: flex;
    }

    .ln-mobile-menu-submenu__back-button:hover {
        cursor: pointer;
    }

    .ln-mobile-menu-submenu__back-button {
        align-items: center;
        justify-content: center;
        width: 24px;
        height: 24px;
        flex-shrink: 0;
    }

    .ln-mobile-menu-submenu__back-arrow {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 24px;
        height: 24px;
        flex-shrink: 0;
    }

    .ln-mobile-menu-submenu__title {
        font-size: 28px;
        font-weight: 700;
        line-height: 32px;
        color: rgba(0, 0, 0, 0.9);
        margin: 0px;
    }

    .ln-mobile-menu-submenu__fixed-button {
        bottom: 0px;
        left: 0px;
        right: 0px;
        background: rgb(255, 255, 255);
        height: 96px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 24px 20px;
        z-index: 100;
        transition: box-shadow 0.2s;
    }

    .ln-mobile-menu-submenu__fixed-button.has-more-content {
        box-shadow: rgba(0, 0, 0, 0.1) 0px -2px 4px;
    }

    .ln-mobile-menu-submenu__signup-button {
        width: 100%;
        height: 48px;
        background-color: var(--andes-color-blue-500, #3483fa);
        color: rgb(255, 255, 255);
        border: none;
        border-radius: 5px;
        font-size: 14px;
        font-weight: 600;
        line-height: 16px;
        cursor: default;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .ln-mobile-menu-submenu__signup-button:hover {
        cursor: pointer;
    }

    .ln-mobile-promotional-section {
        display: flex;
        flex-direction: column;
        gap: 16px;
        align-items: start;
    }

    .ln-mobile-promotional-section__image {
        width: 100%;
        max-width: 560px;
        height: auto;
        border-radius: 20px;
        overflow: hidden;
        position: relative;
        background-color: rgb(202, 202, 202);
        display: flex;
        align-items: center;
        justify-content: center;
        border: none;
        padding: 0px;
        cursor: default;
    }

    .ln-mobile-promotional-section__image:hover {
        cursor: pointer;
    }

    .ln-mobile-promotional-section__image-element {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .ln-mobile-promotional-section__image-placeholder {
        width: 100%;
        height: 100%;
        background-color: rgb(202, 202, 202);
    }

    .ln-mobile-promotional-section__link {
        font-size: 14px;
        font-weight: 600;
        line-height: 125%;
        color: var(--text-andes-text-color-link-ml, var(--andes-color-blue-500, var(--andes-color-blue-500, #3483fa)));
        text-align: right;
        text-decoration: none;
        background: none;
        border: none;
        padding: 0px;
        cursor: default;
        position: relative;
        display: inline-flex;
        align-items: center;
        gap: 4px;
        width: fit-content;
        max-width: 100%;
    }

    .ln-mobile-promotional-section__link:hover {
        cursor: pointer;
    }

    .ln-mobile-promotional-section__link::after {
        content: "";
        position: absolute;
        bottom: 0px;
        left: 0px;
        width: 0px;
        height: 1px;
        background-color: var(--andes-color-blue-500, #3483fa);
        transition: width 0.3s;
    }

    .ln-mobile-promotional-section__link:hover::after {
        width: 100%;
    }

    .ln-mobile-promotional-section__link-text {
        display: inline;
    }

    .ln-mobile-promotional-section__link-arrow {
        flex-shrink: 0;
        display: inline-flex;
        align-items: center;
        transition: transform 0.2s;
        color: var(--andes-color-blue-500, var(--andes-color-blue-500, #3483fa));
    }

    .ln-mobile-promotional-section__link-arrow svg {
        display: block;
    }

    .ln-mobile-columns-section {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .ln-mobile-column {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .ln-mobile-column__title {
        font-size: 14px;
        font-weight: 600;
        line-height: 20px;
        color: rgba(0, 0, 0, 0.25);
        text-transform: uppercase;
        margin: 0px;
        letter-spacing: 0px;
    }

    .ln-mobile-column__list {
        list-style: none;
        margin: 0px;
        padding: 0px;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .ln-mobile-column__item {
        margin: 0px;
    }

    .ln-mobile-column__link {
        display: flex;
        flex-direction: column;
        text-decoration: none;
        color: rgba(0, 0, 0, 0.9);
    }

    .ln-mobile-column__link:hover {
        color: var(--andes-color-blue-500, #3483fa);
    }

    .ln-mobile-column__link-label {
        font-size: 20px;
        font-weight: 600;
        line-height: 32px;
        color: rgba(0, 0, 0, 0.9);
    }

    .ln-mobile-column__link-sublabel {
        font-size: 14px;
        font-weight: 400;
        line-height: 18px;
        color: rgba(0, 0, 0, 0.9);
    }
}

:focus:not(:focus-visible) {
    outline: 0px;
}

.mt-0 {
    margin-top: 0px;
}

@keyframes slide-in {
    0% {
        transform: translateY(-60px);
        opacity: 0;
    }

    65% {
        transform: translateY(0px);
    }

    100% {
        opacity: 1;
    }
}

@keyframes slide-out {
    0% {
        transform: translateY(84px);
        opacity: 1;
    }

    40% {
        opacity: 0;
    }

    100% {
        transform: translateY(0px);
        opacity: 0;
    }
}

@keyframes slide-in-lg {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@font-face {
    font-family: navigation;
    src: url("https://http2.mlstatic.com/frontend-assets/mp-web-navigation/ui-navigation/7.1.9/mercadopago/navigation.woff2") format("woff2"), url("https://http2.mlstatic.com/frontend-assets/mp-web-navigation/ui-navigation/7.1.9/mercadopago/navigation.woff") format("woff"), url("https://http2.mlstatic.com/frontend-assets/mp-web-navigation/ui-navigation/7.1.9/mercadopago/navigation.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

[class^="nav-icon-"],
[class*=" nav-icon-"] {
    font-style: normal;
}

[class^="nav-icon-"]::before,
[class*=" nav-icon-"]::before {
    display: inline-block;
    font-variant: normal;
    margin: 0px;
    speak: none;
    text-align: center;
    width: 1em;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-family: navigation;
}

.nav-icon-facebook::before {
    content: "";
}

.nav-icon-help::before {
    content: "";
}

.nav-icon-linkedin::before {
    content: "";
}

.nav-icon-twitter::before {
    content: "";
}

.nav-icon-youtube::before {
    content: "";
}

.nav-icon-vimeo::before {
    content: "";
}

.nav-icon-instagram::before {
    content: "";
}

.nav-icon-back-o::before {
    content: "";
}

.nav-icon-facebook-new::before {
    content: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M24 12.0733C24 5.40541 18.6274 0 12 0C5.37258 0 0 5.40541 0 12.0733C0 18.0995 4.38823 23.0943 10.125 24V15.5633H7.07812V12.0733H10.125V9.41343C10.125 6.38755 11.9165 4.71615 14.6576 4.71615C15.9705 4.71615 17.3438 4.95195 17.3438 4.95195V7.92313H15.8306C14.3399 7.92313 13.875 8.85379 13.875 9.80857V12.0733H17.2031L16.6711 15.5633H13.875V24C19.6118 23.0943 24 18.0995 24 12.0733' fill='%23009ee3' /%3E%3C/svg%3E%0A");
}

.nav-icon-instagram-new::before {
    content: "";
}

.nav-icon-linkedin-new::before {
    content: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.75618 5.18959C4.47447 5.18959 5.54562 4.03494 5.54562 2.59409C5.51375 1.12097 4.47447 0 2.78806 0C1.10164 0 0 1.11957 0 2.59269C0 4.03494 1.06977 5.18819 2.7257 5.18819H2.75618V5.18959ZM23 22.2566V13.6466C23 9.03363 20.5681 6.88708 17.3241 6.88708C14.7065 6.88708 13.5342 8.34477 12.8815 9.36754V7.23923H7.95117C8.0163 8.64922 7.95117 22.2566 7.95117 22.2566H12.8815V13.8697C12.8815 13.4221 12.9134 12.9732 13.0437 12.6533C13.3998 11.7568 14.2104 10.828 15.5726 10.828C17.3574 10.828 18.071 12.2043 18.071 14.2232V22.258L23 22.2566ZM5.22096 7.23944V22.2568H0.291992V7.23944H5.22096Z' fill='%23009ee3' /%3E%3C/svg%3E%0A");
}

.nav-icon-twitter-new::before {
    content: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M18.9617 0H22.6405L14.5631 9.23955L24 21.7732H16.5945L10.7964 14.1566L4.15861 21.7732H0.47984L9.03699 11.8909L0 0H7.58947L12.8277 6.95778L18.9617 0ZM17.6741 19.6039H19.7134L6.51783 2.08894H4.32656L17.6741 19.6039Z' fill='%23009ee3' /%3E%3C/svg%3E%0A");
}

.nav-icon-youtube-new::before {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9.6 18.2v-7.3l6 3.7-6 3.6M12 6s-7.5 0-9.4.5C1.6 6.8.8 7.6.5 8.6 0 10.5 0 14.5 0 14.5s0 3.9.5 5.8c.3 1 1.1 1.9 2.1 2.1 1.9.5 9.4.5 9.4.5s7.5 0 9.4-.5c1-.3 1.8-1.1 2.1-2.1.5-1.9.5-5.8.5-5.8s0-3.9-.5-5.8c-.3-1-1.1-1.9-2.1-2.1C19.5 6 12 6 12 6' fill='%23009ee3'/%3E%3C/svg%3E");
}

html,
body {
    height: 100%;
    margin: 0px;
    padding: 0px;
    width: 100%;
}

html {
    text-size-adjust: 100%;
}

body {
    border-collapse: collapse;
    display: table;
    background-color: rgb(255, 255, 255);
    font-family: "Proxima Nova", -apple-system, Roboto, Arial, sans-serif, sans-serif;
    font-size: 16px;
    font-weight: 400;
    table-layout: fixed;
    min-width: 320px;
    -webkit-font-smoothing: antialiased;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

a {
    color: var(--andes-color-blue-500, #3483fa);
    text-decoration: none;
}

a:active {
    color: rgb(0, 138, 214);
}

*,
::before,
::after {
    box-sizing: border-box;
}

.nav-header,
[role="main"],
.nav-footer {
    display: ;
    width: 100%;
}

[role="main"] {
    height: 100%;
}

.main-content {
    display: block;
    padding: 0px 12px;
    margin: 0px auto;
}

.nav-logo {
    background-image: url("https://http2.mlstatic.com/frontend-assets/mp-web-navigation/ui-navigation/7.1.9/mercadopago/logo__small.png");
    background-repeat: no-repeat;
    display: inline-block;
    height: 35px;
    width: 50px;
    overflow: hidden;
    text-indent: -999px;
    top: 12.5px;
    left: 20px;
    z-index: 3;
    position: absolute;
}

.nav-footer-mp .logo__link.logo_ifpe {
    background-image: url("https://http2.mlstatic.com/frontend-assets/mp-web-navigation/ui-navigation/7.1.9/mercadopago/logo-ifpe.svg");
    background-repeat: no-repeat;
    width: 220px;
    background-size: 100%;
    margin: 19px 0px;
}

.nav-logo.logo_cf {
    background-image: url("https://http2.mlstatic.com/frontend-assets/mp-web-navigation/ui-navigation/7.1.9/mercadopago/logo-mco-cf.svg");
    background-size: 250px 100%;
}

@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi),
(min-resolution: 2dppx) {
    .nav-logo {
        background-image: url("https://http2.mlstatic.com/frontend-assets/mp-web-navigation/ui-navigation/7.1.9/mercadopago/logo__small@2x.png");
        background-size: 50px 35px;
    }
}

#nav-header-user-switch,
.nav-header-user-name {
    display: none;
}

.nav-header {
    background-color: var(--andes-color-fill-brand, var(--andes-color-yellow-500, #ffe600));
    user-select: none;
}

@media only screen and (max-width: 768px) {
    .nav-header-full_v2 .nav-header-user-menu {
        border-radius: 0px;
        box-shadow: none;
    }
}

.nav-header-menu-wrapper {
    position: relative;
}

.nav-header-menu-wrapper::after {
    content: "";
    box-shadow: none;
    display: block;
    position: absolute;
    z-index: 10;
    width: 100%;
    height: 2px;
    bottom: 0px;
}

.nav-header-menu-wrapper a.nav-skip-to-main-content {
    border: 0px;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    position: absolute;
    color: rgb(255, 255, 255);
    text-decoration: none;
    text-align: center;
    background: rgb(52, 132, 250);
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    z-index: -999;
}

.nav-header-menu-wrapper a.nav-skip-to-main-content:focus {
    border: 1px solid rgb(52, 132, 250);
    height: 55px;
    width: 200px;
    padding: 8px;
    top: 0px;
    left: 0px;
    z-index: 999;
}

.nav-header-menu-wrapper .nav-skip-to-main-content>.nav-skip-to-main-content__content {
    display: block;
    padding: 8px;
    border: 1px solid rgb(255, 255, 255);
    border-radius: 4px;
    line-height: 21px;
    font-weight: 300;
    font-size: 16px;
    color: rgb(255, 255, 255);
}

@media only screen and (max-width: 768px) {
    .nav-header-menu-wrapper {
        max-height: 100vh;
        overflow-y: auto;
    }
}

.nav-header-clean .nav-header-menu-wrapper {
    height: 60px;
}

.nav-header-user-welcome__landing-list,
.nav-header-guest__landing-list {
    display: none;
}

.nav-header-user-welcome .landing-list,
.nav-header-guest .landing-list {
    display: none;
}

.nav-header-user-burger-switch,
.nav-header-guest-burger-switch {
    display: inline-block;
    position: relative;
    width: 20px;
    height: 20px;
    top: 10px;
    cursor: pointer;
    margin-left: 10px;
}

.nav-header-user-burger-switch__icon,
.nav-header-user-burger-switch__icon::before,
.nav-header-user-burger-switch__icon::after,
.nav-header-guest-burger-switch__icon,
.nav-header-guest-burger-switch__icon::before,
.nav-header-guest-burger-switch__icon::after {
    position: absolute;
    left: 0px;
    width: 20px;
    height: 2px;
    background: rgba(0, 0, 0, 0.8);
}

.nav-header-user-burger-switch__icon,
.nav-header-guest-burger-switch__icon {
    top: 5px;
    pointer-events: none;
    transition: width 0.1s ease-in-out;
}

.nav-header-user-burger-switch__icon::before,
.nav-header-user-burger-switch__icon::after,
.nav-header-guest-burger-switch__icon::before,
.nav-header-guest-burger-switch__icon::after {
    content: "";
    transition: 0.1s ease-in-out;
}

.nav-header-user-burger-switch__icon::before,
.nav-header-guest-burger-switch__icon::before {
    top: -5px;
}

.nav-header-user-burger-switch__icon::after,
.nav-header-guest-burger-switch__icon::after {
    top: 5px;
}

#nav-header-user-switch:checked+.nav-header-user-layer .nav-header-user-menu,
#nav-header-user-switch:checked+.nav-header-guest .nav-header-user-menu {
    animation: 0.31s ease-out 0s 1 normal both running slide-in-lg;
    opacity: 1;
    text-align: left;
    display: block;
}

#nav-header-user-switch:checked~.nav-header-guest .nav-header-guest-burger-switch,
#nav-header-user-switch:checked~.nav-header-guest .nav-header-user-burger-switch,
#nav-header-user-switch:checked~.nav-header-user-layer .nav-header-guest-burger-switch,
#nav-header-user-switch:checked~.nav-header-user-layer .nav-header-user-burger-switch {
    margin-left: 10px;
}

#nav-header-user-switch:checked~.nav-header-guest .nav-header-guest-burger-switch__icon,
#nav-header-user-switch:checked~.nav-header-guest .nav-header-user-burger-switch__icon,
#nav-header-user-switch:checked~.nav-header-user-layer .nav-header-guest-burger-switch__icon,
#nav-header-user-switch:checked~.nav-header-user-layer .nav-header-user-burger-switch__icon {
    content: "";
    background: rgba(0, 0, 0, 0.8);
    width: 0px;
}

#nav-header-user-switch:checked~.nav-header-guest .nav-header-guest-burger-switch__icon::before,
#nav-header-user-switch:checked~.nav-header-guest .nav-header-guest-burger-switch__icon::after,
#nav-header-user-switch:checked~.nav-header-guest .nav-header-user-burger-switch__icon::before,
#nav-header-user-switch:checked~.nav-header-guest .nav-header-user-burger-switch__icon::after,
#nav-header-user-switch:checked~.nav-header-user-layer .nav-header-guest-burger-switch__icon::before,
#nav-header-user-switch:checked~.nav-header-user-layer .nav-header-guest-burger-switch__icon::after,
#nav-header-user-switch:checked~.nav-header-user-layer .nav-header-user-burger-switch__icon::before,
#nav-header-user-switch:checked~.nav-header-user-layer .nav-header-user-burger-switch__icon::after {
    top: 0px;
}

#nav-header-user-switch:checked~.nav-header-guest .nav-header-guest-burger-switch__icon::before,
#nav-header-user-switch:checked~.nav-header-guest .nav-header-user-burger-switch__icon::before,
#nav-header-user-switch:checked~.nav-header-user-layer .nav-header-guest-burger-switch__icon::before,
#nav-header-user-switch:checked~.nav-header-user-layer .nav-header-user-burger-switch__icon::before {
    transform: rotate(45deg);
}

#nav-header-user-switch:checked~.nav-header-guest .nav-header-guest-burger-switch__icon::after,
#nav-header-user-switch:checked~.nav-header-guest .nav-header-user-burger-switch__icon::after,
#nav-header-user-switch:checked~.nav-header-user-layer .nav-header-guest-burger-switch__icon::after,
#nav-header-user-switch:checked~.nav-header-user-layer .nav-header-user-burger-switch__icon::after {
    transform: rotate(-45deg);
}

@media only screen and (max-width: 768px) {

    .nav-header-full_v2 #nav-header-user-switch:checked+.nav-header-user-layer .nav-header-user-menu .nav-header-user-menu__link--registrationmobile,
    .nav-header-full_v2 #nav-header-user-switch:checked+.nav-header-guest .nav-header-user-menu .nav-header-user-menu__link--registrationmobile {
        display: none;
    }
}

@supports (-webkit-touch-callout: none) {
    @media only screen and (max-width: 768px) {

        .nav-header-full_v2 #nav-header-user-switch:checked+.nav-header-user-layer .nav-header-user-menu,
        .nav-header-full_v2 #nav-header-user-switch:checked+.nav-header-guest .nav-header-user-menu {
            animation: 0s ease-out 0s 1 normal both running slide-in-lg;
        }
    }
}

.nav-header-user-welcome {
    height: 56px;
    padding: 0px 20px;
    line-height: 56px;
    text-align: right;
}

.nav-header-user-welcome__container-avatar {
    display: inline-block;
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    padding: 0px;
}

.nav-header-user-welcome__links {
    display: none;
}

.nav-header-user-avatar {
    display: none;
    width: 34px;
    height: 34px;
    margin-right: 20px;
    vertical-align: middle;
    padding: 0px;
    background-color: rgba(0, 0, 0, 0);
    border: none;
    cursor: pointer;
}

.nav-header-user-avatar__image {
    border-radius: 50%;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nav-header-user-menu__link:hover,
.nav-header-user-info__brand-link:hover {
    background: rgb(247, 247, 247);
    color: rgba(0, 0, 0, 0.8);
    transition: 0.12s ease-out;
}

.nav-header-user-menu {
    display: none;
    position: relative;
    z-index: 11;
    padding: 8px 0px;
    background-color: rgb(255, 255, 255);
    border-radius: 4px;
    box-shadow: rgba(51, 51, 51, 0.3) 0px 0px 2px 0px;
    animation: 0.31s ease-out 0s 1 normal both running slide-out;
    top: 0px;
    transition: 0.12s ease-out;
}

.nav-header-user-menu .ln-list-container::before {
    top: -10px;
    right: 21px;
    border-top: 1px solid rgb(238, 238, 238);
    border-left: 1px solid rgb(238, 238, 238);
    width: 18px;
    height: 18px;
}

.nav-header-user-menu__link {
    display: block;
    align-items: center;
    padding-left: 24px;
    font-size: 15px;
    line-height: 34px;
    color: rgb(102, 102, 102);
    transition: 0.12s ease-out;
}

.nav-header-user-menu__link--helpmain,
.nav-header-user-menu__link--helpmain_cf {
    margin: 16px 0px;
    padding: 12px 0px 12px 24px;
    font-weight: 600;
    font-size: 16px;
}

.nav-header-user-menu__link--logout,
.nav-header-user-menu__link--logout_cf {
    font-size: 14px;
}

.nav-header-user-menu__link-container {
    display: flex;
    align-items: center;
}

.nav-header-user-menu__link-text {
    margin: 0px;
    line-height: 18px;
    color: rgba(0, 0, 0, 0.8);
}

.nav-header-user-menu__link-icon {
    display: flex;
    margin-right: 20px;
}

.nav-header-user-menu__link--logout {
    display: none;
}

.nav-header-user-menu__link--registrationmobile {
    background-color: var(--andes-color-blue-500, #3483fa);
    color: rgb(255, 255, 255);
    border-radius: 6px;
    height: 45px;
    font-weight: 600;
    margin: 24px;
    padding: 0px;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-header-user-menu__link--registrationmobile:hover {
    background-color: var(--andes-color-blue-600, #2968c8);
    color: rgb(255, 255, 255);
}

.nav-header-user-menu__link--registrationmobile:active,
.nav-header-user-menu__link--registrationmobile:focus {
    background-color: var(--andes-color-blue-700, #1f4e96);
    color: rgb(255, 255, 255);
}

.nav-header-user-info {
    display: flex;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-header-user-info__greeting {
    margin: 0px;
    padding-left: 8px;
    font-size: 14px;
    line-height: 18px;
    color: rgba(0, 0, 0, 0.45);
}

.nav-header-user-info__brand-link {
    padding: 4px 7px 5px 8px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    color: rgba(0, 0, 0, 0.8);
    transition: 0.12s ease-out;
}

.nav-header-user-info__brand-title {
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
}

.nav-header-user-info__action {
    padding-right: 18px;
}

.nav-header-user-info__icon {
    position: absolute;
    margin-left: 2px;
    width: 12px;
    transform: rotate(-90deg);
}

.nav-header-user-info__icon::before,
.nav-header-user-info__icon::after {
    position: absolute;
    width: 6px;
    height: 1px;
    background: rgba(0, 0, 0, 0.8);
    content: "";
}

.nav-header-user-info__icon::before {
    transform: rotate(-45deg);
    margin-left: 4px;
}

.nav-header-user-info__icon::after {
    transform: rotate(45deg);
}

.nav-header-user-info .nav-header-user-avatar {
    width: 36px;
    height: 36px;
    margin-right: 4px;
    display: inline-block;
}

.nav-header-user-welcome__link:active,
.nav-header-guest__link:active {
    color: rgb(102, 102, 102);
}

.nav-header-guest {
    padding: 0px;
    text-align: right;
}

.nav-header-guest__links {
    padding-inline-start: 0px;
    padding-left: 0px;
    list-style: none;
    margin: 0px;
}

.nav-header-guest__wrapper {
    padding: 14px 20px;
    transition: box-shadow 0.2s;
}

.nav-header-guest__wrapper.has-scrolled-content {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 4px;
}

.nav-header-guest__links {
    display: inline;
    list-style-type: none;
}

.nav-header-guest__links li {
    display: inline;
}

.nav-header-guest__link {
    position: relative;
    padding: 0px 12px;
    color: rgb(102, 102, 102);
    height: 32px;
    line-height: 32px;
    display: inline-block;
    text-align: center;
    font-size: 16px;
}

.nav-header-guest__link--login,
.nav-header-guest__link--login_cf,
.nav-header-guest__link--login_mla,
.nav-header-guest__link--login_mlb,
.nav-header-guest__link--login_mlc,
.nav-header-guest__link--login_mco,
.nav-header-guest__link--login_mlm,
.nav-header-guest__link--login_mlv,
.nav-header-guest__link--login_mpe,
.nav-header-guest__link--login_mlu,
.nav-header-guest__link--login_mec,
.nav-header-guest__link--login_mobile,
.nav-header-guest__link--login_mobile_cf,
.nav-header-guest__link--login_mobile_mla,
.nav-header-guest__link--login_mobile_mlb,
.nav-header-guest__link--login_mobile_mlc,
.nav-header-guest__link--login_mobile_mco,
.nav-header-guest__link--login_mobile_mlm,
.nav-header-guest__link--login_mobile_mlv,
.nav-header-guest__link--login_mobile_mpe,
.nav-header-guest__link--login_mobile_mlu,
.nav-header-guest__link--login_mobile_mec {
    color: var(--andes-color-text-brand, rgba(0, 0, 0, 0.9));
    border: none;
    border-radius: 4px;
    margin-right: 20px;
    font-weight: 600;
    background-color: rgba(0, 0, 0, 0);
}

.nav-header-guest__link--login:hover,
.nav-header-guest__link--login_cf:hover,
.nav-header-guest__link--login_mla:hover,
.nav-header-guest__link--login_mlb:hover,
.nav-header-guest__link--login_mlc:hover,
.nav-header-guest__link--login_mco:hover,
.nav-header-guest__link--login_mlm:hover,
.nav-header-guest__link--login_mlv:hover,
.nav-header-guest__link--login_mpe:hover,
.nav-header-guest__link--login_mlu:hover,
.nav-header-guest__link--login_mec:hover,
.nav-header-guest__link--login_mobile:hover,
.nav-header-guest__link--login_mobile_cf:hover,
.nav-header-guest__link--login_mobile_mla:hover,
.nav-header-guest__link--login_mobile_mlb:hover,
.nav-header-guest__link--login_mobile_mlc:hover,
.nav-header-guest__link--login_mobile_mco:hover,
.nav-header-guest__link--login_mobile_mlm:hover,
.nav-header-guest__link--login_mobile_mlv:hover,
.nav-header-guest__link--login_mobile_mpe:hover,
.nav-header-guest__link--login_mobile_mlu:hover,
.nav-header-guest__link--login_mobile_mec:hover {
    background-color: rgba(0, 0, 0, 0);
}

.nav-header-guest__link--login:active,
.nav-header-guest__link--login_cf:active,
.nav-header-guest__link--login_mla:active,
.nav-header-guest__link--login_mlb:active,
.nav-header-guest__link--login_mlc:active,
.nav-header-guest__link--login_mco:active,
.nav-header-guest__link--login_mlm:active,
.nav-header-guest__link--login_mlv:active,
.nav-header-guest__link--login_mpe:active,
.nav-header-guest__link--login_mlu:active,
.nav-header-guest__link--login_mec:active,
.nav-header-guest__link--login_mobile:active,
.nav-header-guest__link--login_mobile_cf:active,
.nav-header-guest__link--login_mobile_mla:active,
.nav-header-guest__link--login_mobile_mlb:active,
.nav-header-guest__link--login_mobile_mlc:active,
.nav-header-guest__link--login_mobile_mco:active,
.nav-header-guest__link--login_mobile_mlm:active,
.nav-header-guest__link--login_mobile_mlv:active,
.nav-header-guest__link--login_mobile_mpe:active,
.nav-header-guest__link--login_mobile_mlu:active,
.nav-header-guest__link--login_mobile_mec:active {
    background-color: rgba(0, 0, 0, 0);
}

.nav-header-guest__link--registration,
.nav-header-guest__link--registration_cf {
    background-color: var(--andes-color-blue-500, #3483fa);
    color: rgb(255, 255, 255);
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
}

.nav-header-guest__link--registration:hover,
.nav-header-guest__link--registration_cf:hover {
    background-color: var(--andes-color-blue-600, #2968c8);
    color: rgb(255, 255, 255);
}

.nav-header-guest__link--registration:active,
.nav-header-guest__link--registration:focus,
.nav-header-guest__link--registration_cf:active,
.nav-header-guest__link--registration_cf:focus {
    background-color: var(--andes-color-blue-700, #1f4e96);
    color: rgb(255, 255, 255);
}

.nav-header-guest__link--registrationmobile {
    background-color: var(--andes-color-blue-500, #3483fa);
    color: rgb(255, 255, 255);
    border-radius: 4px;
    font-weight: 600;
}

.nav-header-guest__link--registrationmobile:hover {
    background-color: var(--andes-color-blue-600, #2968c8);
    color: rgb(255, 255, 255);
}

.nav-header-guest__link--registrationmobile:active,
.nav-header-guest__link--registrationmobile:focus {
    background-color: var(--andes-color-blue-700, #1f4e96);
    color: rgb(255, 255, 255);
}

.nav-header-guest__link--helpmain,
.nav-header-guest__link--helpmain_cf {
    display: none;
}

header.nav-header[data-context="_cf"] {
    background-color: rgb(255, 255, 255);
}

header.nav-header[data-context="_ifpe"] {
    background-color: rgb(232, 234, 252);
}

header.nav-header[data-context="_ifpe"] .nav-header-guest__link--login,
header.nav-header[data-context="_ifpe"] .nav-header-guest__link--login_cf,
header.nav-header[data-context="_ifpe"] .nav-header-guest__link--login_mla,
header.nav-header[data-context="_ifpe"] .nav-header-guest__link--login_mlb,
header.nav-header[data-context="_ifpe"] .nav-header-guest__link--login_mlc,
header.nav-header[data-context="_ifpe"] .nav-header-guest__link--login_mco,
header.nav-header[data-context="_ifpe"] .nav-header-guest__link--login_mlm,
header.nav-header[data-context="_ifpe"] .nav-header-guest__link--login_mlv,
header.nav-header[data-context="_ifpe"] .nav-header-guest__link--login_mpe,
header.nav-header[data-context="_ifpe"] .nav-header-guest__link--login_mlu,
header.nav-header[data-context="_ifpe"] .nav-header-guest__link--login_mec,
header.nav-header[data-context="_ifpe"] .nav-header-guest__link--login_mobile,
header.nav-header[data-context="_ifpe"] .nav-header-guest__link--login_mobile_cf,
header.nav-header[data-context="_ifpe"] .nav-header-guest__link--login_mobile_mla,
header.nav-header[data-context="_ifpe"] .nav-header-guest__link--login_mobile_mlb,
header.nav-header[data-context="_ifpe"] .nav-header-guest__link--login_mobile_mlc,
header.nav-header[data-context="_ifpe"] .nav-header-guest__link--login_mobile_mco,
header.nav-header[data-context="_ifpe"] .nav-header-guest__link--login_mobile_mlm,
header.nav-header[data-context="_ifpe"] .nav-header-guest__link--login_mobile_mlv,
header.nav-header[data-context="_ifpe"] .nav-header-guest__link--login_mobile_mpe,
header.nav-header[data-context="_ifpe"] .nav-header-guest__link--login_mobile_mlu,
header.nav-header[data-context="_ifpe"] .nav-header-guest__link--login_mobile_mec {
    background-color: var(--andes-color-blue-150, rgba(65, 137, 230, 0.15));
}

.nav-header-scrollable {
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    z-index: 900;
    transition: 1s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: var(--andes-color-fill-brand, var(--andes-color-yellow-500, #ffe600));
    transform: translateY(0px);
    height: 60px;
}

.nav-header-scrollable.nav-header-scrolled {
    background-color: rgb(255, 255, 255);
}

.nav-header-scrollable.nav-header-retracted {
    transform: translateY(-100%);
}

.nav-header-scrollable .nav-header-guest__link--registration {
    background-color: var(--andes-color-blue-500, #3483fa);
    color: rgb(255, 255, 255);
    transition: 1s;
}

.nav-header-scrollable .nav-header-guest__link--helpmain {
    background-color: rgba(0, 0, 0, 0);
    color: rgba(0, 0, 0, 0.9);
    transition: 1s;
}

.nav-header-scrollable-spacer {
    height: 60px;
    width: 100%;
}

header.nav-header-full_v2 {
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    z-index: 900;
    transition: 1s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s;
    background-color: var(--andes-color-fill-brand, var(--andes-color-yellow-500, #ffe600));
    height: 60px;
}

header.nav-header-full_v2.nav-header-menu-open {
    transition: all, box-shadow 0.2s;
    top: 0px;
}

header.nav-header-full_v2.nav-header-scrolled {
    background-color: rgb(255, 255, 255);
}

header.nav-header-full_v2.nav-header-retracted {
    top: -60px;
}

header.nav-header-full_v2.has-scrolled-content {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 4px;
}

header.nav-header-full_v2 .nav-header-guest__link--login,
header.nav-header-full_v2 .nav-header-guest__link--login_cf,
header.nav-header-full_v2 .nav-header-guest__link--login_mla,
header.nav-header-full_v2 .nav-header-guest__link--login_mlb,
header.nav-header-full_v2 .nav-header-guest__link--login_mlc,
header.nav-header-full_v2 .nav-header-guest__link--login_mco,
header.nav-header-full_v2 .nav-header-guest__link--login_mlm,
header.nav-header-full_v2 .nav-header-guest__link--login_mlv,
header.nav-header-full_v2 .nav-header-guest__link--login_mpe,
header.nav-header-full_v2 .nav-header-guest__link--login_mlu,
header.nav-header-full_v2 .nav-header-guest__link--login_mec,
header.nav-header-full_v2 .nav-header-guest__link--login_mobile,
header.nav-header-full_v2 .nav-header-guest__link--login_mobile_cf,
header.nav-header-full_v2 .nav-header-guest__link--login_mobile_mla,
header.nav-header-full_v2 .nav-header-guest__link--login_mobile_mlb,
header.nav-header-full_v2 .nav-header-guest__link--login_mobile_mlc,
header.nav-header-full_v2 .nav-header-guest__link--login_mobile_mco,
header.nav-header-full_v2 .nav-header-guest__link--login_mobile_mlm,
header.nav-header-full_v2 .nav-header-guest__link--login_mobile_mlv,
header.nav-header-full_v2 .nav-header-guest__link--login_mobile_mpe,
header.nav-header-full_v2 .nav-header-guest__link--login_mobile_mlu,
header.nav-header-full_v2 .nav-header-guest__link--login_mobile_mec {
    transition: 1s;
    background-color: rgba(255, 255, 255, 0.6);
    color: rgba(0, 0, 0, 0.9);
}

header.nav-header-full_v2.nav-header-scrolled .nav-header-guest__link--login,
header.nav-header-full_v2.nav-header-scrolled .nav-header-guest__link--login_cf,
header.nav-header-full_v2.nav-header-scrolled .nav-header-guest__link--login_mla,
header.nav-header-full_v2.nav-header-scrolled .nav-header-guest__link--login_mlb,
header.nav-header-full_v2.nav-header-scrolled .nav-header-guest__link--login_mlc,
header.nav-header-full_v2.nav-header-scrolled .nav-header-guest__link--login_mco,
header.nav-header-full_v2.nav-header-scrolled .nav-header-guest__link--login_mlm,
header.nav-header-full_v2.nav-header-scrolled .nav-header-guest__link--login_mlv,
header.nav-header-full_v2.nav-header-scrolled .nav-header-guest__link--login_mpe,
header.nav-header-full_v2.nav-header-scrolled .nav-header-guest__link--login_mlu,
header.nav-header-full_v2.nav-header-scrolled .nav-header-guest__link--login_mec,
header.nav-header-full_v2.nav-header-scrolled .nav-header-guest__link--login_mobile,
header.nav-header-full_v2.nav-header-scrolled .nav-header-guest__link--login_mobile_cf,
header.nav-header-full_v2.nav-header-scrolled .nav-header-guest__link--login_mobile_mla,
header.nav-header-full_v2.nav-header-scrolled .nav-header-guest__link--login_mobile_mlb,
header.nav-header-full_v2.nav-header-scrolled .nav-header-guest__link--login_mobile_mlc,
header.nav-header-full_v2.nav-header-scrolled .nav-header-guest__link--login_mobile_mco,
header.nav-header-full_v2.nav-header-scrolled .nav-header-guest__link--login_mobile_mlm,
header.nav-header-full_v2.nav-header-scrolled .nav-header-guest__link--login_mobile_mlv,
header.nav-header-full_v2.nav-header-scrolled .nav-header-guest__link--login_mobile_mpe,
header.nav-header-full_v2.nav-header-scrolled .nav-header-guest__link--login_mobile_mlu,
header.nav-header-full_v2.nav-header-scrolled .nav-header-guest__link--login_mobile_mec {
    background-color: rgba(65, 137, 230, 0.15);
    color: var(--andes-color-blue-500, #3483fa);
}

header.nav-header-full_v2 .nav-header-guest__link--registration {
    background-color: var(--andes-color-blue-500, #3483fa);
    color: rgb(255, 255, 255);
    transition: 1s;
}

header.nav-header-full_v2 .nav-header-guest__link--helpmain {
    background-color: rgba(0, 0, 0, 0);
    color: rgba(0, 0, 0, 0.9);
    transition: 1s;
}

.nav-header-full_v2-spacer {
    height: 60px;
    width: 100%;
}

.nav-header-min {
    height: 44px;
}

.nav-title {
    font-size: 18px;
    line-height: 44px;
    margin: 0px;
    text-align: center;
    font-weight: 400;
    position: absolute;
    left: 0px;
    right: 0px;
    padding: 0px 54px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nav-header-btn {
    height: 30px;
    line-height: 30px;
    position: absolute;
    top: 3px;
    left: 0px;
    padding: 20px;
    text-indent: -200%;
}

.nav-icon-back-o::before {
    font-size: 20px;
    color: rgb(51, 51, 51);
    position: absolute;
    left: 10px;
    top: 10px;
    text-indent: 0px;
    line-height: 1;
}

.nav-footer-mp {
    display: flex;
    flex-direction: column;
    width: 100%;
    background-color: rgb(255, 255, 255);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-footer-mp__navs ul {
    list-style-type: none;
    padding: 0px;
    margin: 0px;
}

.nav-footer-mp__navs ul li:not(:last-child) {
    margin-bottom: 19px;
}

.nav-footer-mp__navs,
.nav-footer-mp__last {
    display: flex;
    margin: 0px auto;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}

.nav-footer-mp__last {
    flex-direction: column;
    background-color: rgb(247, 247, 247);
}

.nav-footer-mp .logo {
    display: flex;
    width: 100%;
    margin: 56px 20px;
}

.nav-footer-mp .logo__link {
    display: flex;
    background-image: url("https://http2.mlstatic.com/frontend-assets/mp-web-navigation/ui-navigation/7.1.9/mercadopago/logo__large@2x.png");
    background-size: cover;
    width: 142px;
    height: 37px;
    text-indent: -999px;
    overflow: hidden;
}

.nav-footer-mp .nav-section-mp {
    display: flex;
    flex-direction: column;
    margin: 0px 20px;
    width: 100%;
}

.nav-footer-mp .nav-section-mp__title {
    margin: 0px 0px 32px;
    color: rgba(51, 51, 51, 0.6);
    font-size: 16px;
    line-height: 1.25;
    font-weight: 600;
}

.nav-footer-mp .nav-section-mp__title-link {
    width: fit-content;
    color: rgb(51, 51, 51);
    transition: 0.12s ease-out;
}

.nav-footer-mp .nav-section-mp__title-link:focus {
    text-decoration: underline;
    color: var(--andes-color-blue-500, #3483fa);
}

.nav-footer-mp .nav-section-mp__title-link:hover {
    color: var(--andes-color-blue-500, #3483fa);
    transition: 0.12s ease-out;
}

.nav-footer-mp .nav-section-mp__title-link:active {
    text-decoration: none;
    color: var(--andes-color-blue-600, #2968c8);
}

.nav-footer-mp .nav-section-mp__nav {
    display: flex;
    flex-direction: column;
}

.nav-footer-mp .nav-section-mp__nav-link {
    width: fit-content;
    color: rgb(51, 51, 51);
    font-size: 14px;
    line-height: 1.28571;
    transition: 0.12s ease-out;
}

.nav-footer-mp .nav-section-mp__nav-link:focus {
    text-decoration: underline;
    color: var(--andes-color-blue-500, #3483fa);
}

.nav-footer-mp .nav-section-mp__nav-link:hover {
    color: var(--andes-color-blue-500, #3483fa);
    transition: 0.12s ease-out;
}

.nav-footer-mp .nav-section-mp__nav-link:active {
    text-decoration: none;
    color: var(--andes-color-blue-600, #2968c8);
}

.nav-footer-mp .nav-section-mp__nav-link:not(:last-child) {
    margin-bottom: 24px;
}

.nav-footer-mp .nav-section-mp--about {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 56px;
    padding-top: 56px;
}

.nav-footer-mp .nav-section-mp--performance {
    margin: 0px;
    padding: 56px 20px;
}

.nav-footer-mp .nav-section-mp--performance .nav-section-mp__nav ul {
    list-style-type: none;
    padding: 0px;
    margin: 0px;
}

.nav-footer-mp .nav-section-mp--performance .nav-section-mp__nav ul li:not(:last-child) {
    margin-bottom: 19px;
}

.nav-footer-mp .nav-section-mp--performance .nav-section-mp__nav-link {
    opacity: 0.8;
}

.nav-footer-mp .nav-section-mp--help-security {
    margin-bottom: 56px;
}

.nav-footer-mp .nav-footer-mp__navs .nav-section-mp:nth-child(2) {
    margin-bottom: 64px;
}

.nav-footer-mp .nav-footer-mp__navs .nav-section-mp:nth-child(3) {
    margin-bottom: 56px;
}

.nav-footer-mp .reclamation-book {
    margin-top: 40px;
    max-width: 210px;
    height: 40px;
    display: flex;
}

.nav-footer-mp .reclamation-book__image {
    margin-right: 10px;
}

.nav-footer-mp .reclamation-book__text {
    margin: 0px;
    color: rgba(0, 0, 0, 0.45);
    font-size: 12px;
    line-height: 1.16667;
}

.nav-footer-mp .reclamation-book__text a {
    display: block;
}

.nav-footer-mp .copyright-and-social {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
    padding: 0px 20px;
}

.nav-footer-mp .copyright-and-social .social,
.nav-footer-mp .copyright-and-social .copyright {
    display: flex;
    width: 100%;
    margin: 0px;
}

.nav-footer-mp .copyright-and-social .social {
    order: 1;
    margin: 48px 0px;
}

.nav-footer-mp .copyright-and-social .social ul {
    list-style-type: none;
    padding: 0px;
    margin: 0px;
    display: flex;
    width: 100%;
}

.nav-footer-mp .copyright-and-social .social ul li:not(:last-child) {
    margin-right: 24px;
}

.nav-footer-mp .copyright-and-social .social__link {
    overflow: hidden;
    position: relative;
    display: block;
    font-size: 24px;
    color: rgb(51, 51, 51);
    height: 26px;
    width: 24px;
    transition: 0.12s ease-out;
}

.nav-footer-mp .copyright-and-social .social__link::before {
    filter: grayscale(1) brightness(0%);
    transition: 0.12s ease-out;
}

.nav-footer-mp .copyright-and-social .social__link:hover {
    color: var(--andes-color-blue-500, #3483fa);
    transition: 0.12s ease-out;
}

.nav-footer-mp .copyright-and-social .social__link:hover::before {
    filter: grayscale(0) brightness(100%);
    transition: 0.12s ease-out;
}

.nav-footer-mp .copyright-and-social .social__link:focus {
    color: var(--andes-color-blue-500, #3483fa);
}

.nav-footer-mp .copyright-and-social .social__link:active {
    color: var(--andes-color-blue-600, #2968c8);
}

.nav-footer-mp .copyright-and-social .copyright {
    order: 2;
    color: rgb(51, 51, 51);
    font-size: 0.6875em;
    line-height: 1.63636;
    margin-bottom: 56px;
    opacity: 0.8;
}

.nav-footer-mp .nav-section-mp--performance::after {
    position: relative;
    bottom: -24px;
    content: "";
    height: 1px;
    background-color: rgba(0, 0, 0, 0.1);
}

.nav-footer-mp .nav-footer-hp {
    height: 1px;
    width: 1px;
    position: absolute;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
}

.nav-footer-mp.nav-footer-mp--mco.mps-account {
    position: relative;
}

.nav-footer-mp.nav-footer-mp--mco.mps-account .mpf-regulations {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 32px 20px;
    margin: auto;
    max-width: 1280px;
    width: 100%;
}

.nav-footer-mp.nav-footer-mp--mco.mps-account .mpf-regulations .logo-vigilado {
    position: absolute;
    bottom: 60px;
    left: 0px;
}

.nav-footer-mp.nav-footer-mp--mco.mps-account .nav-footer-mp__navs {}

.nav-footer-mp.nav-footer-mp--mco.mps-account .logo-vigilado img {
    width: 25px;
    height: 295px;
}

.nav-footer-mp.nav-footer-mp--mco.mps-account .logo-mpf {
    width: 250px;
    height: 25px;
}

.nav-footer-mp.nav-footer-mp--mco.mps-account .logo-fogafin img {
    width: 160px;
    height: 48px;
    margin-right: 53px;
}

.nav-footer-mp.nav-footer-mp--mco.mps-account .logo__link {
    display: none;
}

@media only screen and (max-width: 768px) {
    .nav-footer-mp.nav-footer-mp--mco.mps-account {
        position: relative;
        margin-top: 100px;
    }

    .nav-footer-mp.nav-footer-mp--mco.mps-account .mpf-regulations {
        flex-direction: column;
    }

    .nav-footer-mp.nav-footer-mp--mco.mps-account .mpf-regulations .logo-vigilado {
        rotate: 90deg;
        margin-left: 0px;
        width: 25px;
        height: 25px;
        position: relative;
        bottom: 0px;
        left: 136px;
    }

    .nav-footer-mp.nav-footer-mp--mco.mps-account .logo-mpf {
        margin-left: 0px;
    }

    .nav-footer-mp.nav-footer-mp--mco.mps-account .logo-fogafin {
        position: absolute;
        top: -73px;
    }

    .nav-footer-mp.nav-footer-mp--mco.mps-account .logo-fogafin img {
        margin-right: 0px;
    }

    .nav-footer-mp.nav-footer-mp--mco.mps-account .mpf-regulations {
        position: unset;
        gap: 20px;
        margin-bottom: 56px;
        align-items: center;
    }

    .nav-footer-mp.nav-footer-mp--mco.mps-account .logo {
        margin: 24px;
    }

    .nav-footer-mp.nav-footer-mp--mco.mps-account .nav-footer-mp__navs {
        padding-bottom: 0px;
    }
}

@media only screen and (max-width: 768px) {
    .nav-footer-mp__navs {
        padding: 0px 20px;
    }

    .nav-footer-mp .nav-section-mp--performance {
        padding: 24px 40px;
    }

    .nav-footer-mp .copyright-and-social {
        padding: 0px 40px;
    }
}

.nav-section-mp--mlb.nav-section-mp__title {
    color: rgba(0, 0, 0, 0.55);
    font-weight: 400;
}

.nav-section-mp--mlb.nav-section-mp--about {
    margin-bottom: 52px;
    padding-top: 48px;
}

.nav-section-mp--mlb .nav-footer-mp__last .nav-section-mp--performance {
    padding: 52px 40px 40px;
}

.nav-section-mp--mlb .nav-footer-mp__last .nav-section-mp--performance::after {
    bottom: -40px;
}

.nav-section-mp--mlb .nav-footer-mp__last .nav-section-mp__nav-link--mercadocredit {
    margin-bottom: 12px;
}

.nav-section-mp--mlb .nav-footer-mp__navs .nav-section-mp:nth-child(3) {
    margin-bottom: 52px;
}

.nav-header-guest--mlb.nav-section-mp__title {
    color: rgba(0, 0, 0, 0.55);
    font-weight: 400;
}

.nav-header-guest--mlb.nav-section-mp--about {
    margin-bottom: 52px;
    padding-top: 48px;
}

.nav-header-guest--mlb .nav-footer-mp__last .nav-section-mp--performance {
    padding: 52px 40px 40px;
}

.nav-header-guest--mlb .nav-footer-mp__last .nav-section-mp--performance::after {
    bottom: -40px;
}

.nav-header-guest--mlb .nav-footer-mp__last .nav-section-mp__nav-link--mercadocredit {
    margin-bottom: 12px;
}

.nav-header-guest--mlb .nav-footer-mp__navs .nav-section-mp:nth-child(3) {
    margin-bottom: 52px;
}

.nav-header-user-welcome--mlb.nav-section-mp__title {
    color: rgba(0, 0, 0, 0.55);
    font-weight: 400;
}

.nav-header-user-welcome--mlb.nav-section-mp--about {
    margin-bottom: 52px;
    padding-top: 48px;
}

.nav-header-user-welcome--mlb .nav-footer-mp__last .nav-section-mp--performance {
    padding: 52px 40px 40px;
}

.nav-header-user-welcome--mlb .nav-footer-mp__last .nav-section-mp--performance::after {
    bottom: -40px;
}

.nav-header-user-welcome--mlb .nav-footer-mp__last .nav-section-mp__nav-link--mercadocredit {
    margin-bottom: 12px;
}

.nav-header-user-welcome--mlb .nav-footer-mp__navs .nav-section-mp:nth-child(3) {
    margin-bottom: 52px;
}

.nav-header-user-menu--mlb.nav-section-mp__title {
    color: rgba(0, 0, 0, 0.55);
    font-weight: 400;
}

.nav-header-user-menu--mlb.nav-section-mp--about {
    margin-bottom: 52px;
    padding-top: 48px;
}

.nav-header-user-menu--mlb .nav-footer-mp__last .nav-section-mp--performance {
    padding: 52px 40px 40px;
}

.nav-header-user-menu--mlb .nav-footer-mp__last .nav-section-mp--performance::after {
    bottom: -40px;
}

.nav-header-user-menu--mlb .nav-footer-mp__last .nav-section-mp__nav-link--mercadocredit {
    margin-bottom: 12px;
}

.nav-header-user-menu--mlb .nav-footer-mp__navs .nav-section-mp:nth-child(3) {
    margin-bottom: 52px;
}

.nav-header--mlb.nav-section-mp__title {
    color: rgba(0, 0, 0, 0.55);
    font-weight: 400;
}

.nav-header--mlb.nav-section-mp--about {
    margin-bottom: 52px;
    padding-top: 48px;
}

.nav-header--mlb .nav-footer-mp__last .nav-section-mp--performance {
    padding: 52px 40px 40px;
}

.nav-header--mlb .nav-footer-mp__last .nav-section-mp--performance::after {
    bottom: -40px;
}

.nav-header--mlb .nav-footer-mp__last .nav-section-mp__nav-link--mercadocredit {
    margin-bottom: 12px;
}

.nav-header--mlb .nav-footer-mp__navs .nav-section-mp:nth-child(3) {
    margin-bottom: 52px;
}

.nav-footer-mp--mlb.nav-section-mp__title {
    color: rgba(0, 0, 0, 0.55);
    font-weight: 400;
}

.nav-footer-mp--mlb.nav-section-mp--about {
    margin-bottom: 52px;
    padding-top: 48px;
}

.nav-footer-mp--mlb .nav-footer-mp__last .nav-section-mp--performance {
    padding: 52px 40px 40px;
}

.nav-footer-mp--mlb .nav-footer-mp__last .nav-section-mp--performance::after {
    bottom: -40px;
}

.nav-footer-mp--mlb .nav-footer-mp__last .nav-section-mp__nav-link--mercadocredit {
    margin-bottom: 12px;
}

.nav-footer-mp--mlb .nav-footer-mp__navs .nav-section-mp:nth-child(3) {
    margin-bottom: 52px;
}

.copyright-and-social--mlb.nav-section-mp__title {
    color: rgba(0, 0, 0, 0.55);
    font-weight: 400;
}

.copyright-and-social--mlb.nav-section-mp--about {
    margin-bottom: 52px;
    padding-top: 48px;
}

.copyright-and-social--mlb .nav-footer-mp__last .nav-section-mp--performance {
    padding: 52px 40px 40px;
}

.copyright-and-social--mlb .nav-footer-mp__last .nav-section-mp--performance::after {
    bottom: -40px;
}

.copyright-and-social--mlb .nav-footer-mp__last .nav-section-mp__nav-link--mercadocredit {
    margin-bottom: 12px;
}

.copyright-and-social--mlb .nav-footer-mp__navs .nav-section-mp:nth-child(3) {
    margin-bottom: 52px;
}

.nav-cookie-disclaimer {
    background: rgb(51, 51, 51);
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 6px 16px 0px;
    padding: 16px;
    position: fixed;
    bottom: 0px;
    width: 100%;
    z-index: 9999;
}

.nav-cookie-disclaimer__text {
    color: rgb(255, 255, 255);
    font-size: 16px;
    margin: 0px 0px 24px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    line-height: 1.45;
}

.nav-cookie-disclaimer__text a {
    color: rgb(255, 255, 255);
    text-decoration: underline;
    white-space: nowrap;
}

.nav-cookie-disclaimer__text a:hover {
    color: rgb(191, 191, 191);
}

.nav-cookie-disclaimer__button {
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    line-height: 1.14;
    overflow: visible;
    text-transform: none;
    background-color: var(--andes-color-blue-500, #3483fa);
    color: rgb(255, 255, 255);
    margin: 0px;
    padding: 7px 12px;
    width: 100%;
    border: 1px solid var(--andes-color-blue-500, #3483fa);
    border-radius: 6px;
    cursor: pointer;
    appearance: button;
}

.nav-cookie-disclaimer__button:focus {
    box-shadow: rgba(27, 135, 201, 0.3) 0px 0px 0px 0.1875em;
    transition: box-shadow 0.25s ease-in;
}

.nav-cookie-disclaimer__button:hover {
    border-color: rgba(0, 0, 0, 0);
    background-color: var(--andes-color-blue-600, #2968c8);
    color: rgb(255, 255, 255);
    transition: background-color 0.2s ease-in;
}

.nav-cookie-disclaimer__button:active {
    border-color: rgba(0, 0, 0, 0);
    background-color: var(--andes-color-blue-700, #1f4e96);
    color: rgb(255, 255, 255);
}

@media (min-width: 768px) {
    .nav-logo {
        background-image: url("https://http2.mlstatic.com/frontend-assets/mp-web-navigation/ui-navigation/7.1.9/mercadopago/logo__large.png");
        top: 13.5px;
        left: 32px;
        width: 142px;
        height: 37px;
        background-size: 100%;
        background-position: center center;
    }

    .nav-logo.logo_ifpe,
    .nav-footer-mp .logo__link.logo_ifpe {
        background-image: url("https://http2.mlstatic.com/frontend-assets/mp-web-navigation/ui-navigation/7.1.9/mercadopago/logo-ifpe.svg");
        width: 220px;
        background-size: 100%;
    }

    .nav-logo.logo_cf {
        background-image: url("https://http2.mlstatic.com/frontend-assets/mp-web-navigation/ui-navigation/7.1.9/mercadopago/logo-mco-cf.svg");
        width: 260px;
    }
}

@media (min-width: 768px) and (-webkit-min-device-pixel-ratio: 2),
(min-width: 768px) and (min-resolution: 192dpi),
(min-width: 768px) and (min-resolution: 2dppx) {
    .nav-logo {
        background-image: url("https://http2.mlstatic.com/frontend-assets/mp-web-navigation/ui-navigation/7.1.9/mercadopago/logo__large@2x.png");
        background-size: 142px 37px;
    }
}

@media (min-width: 768px) {
    .nav-header-menu-container {
        max-width: 1280px;
        margin: 0px auto;
        position: relative;
    }

    .nav-header-clean .nav-header-menu-wrapper {
        height: 64px;
    }

    .nav-header-user-burger-switch,
    .nav-header-guest-burger-switch {
        display: none;
    }

    .nav-header-user-welcome__landing-list,
    .nav-header-guest__landing-list {
        display: inline-block;
        line-height: initial;
    }

    .nav-header-user-welcome .landing-list,
    .nav-header-guest .landing-list {
        display: inline-block;
        line-height: initial;
    }

    .nav-header-user-welcome__link,
    .nav-header-guest__link {
        position: relative;
        display: inline-block;
        padding: 0px 24px;
        text-align: center;
        height: 36px;
        line-height: 34px;
        font-size: 14px;
        text-decoration: none;
    }

    .nav-header-user-welcome__link--helpmain,
    .nav-header-user-welcome__link--helpmain_cf,
    .nav-header-guest__link--helpmain,
    .nav-header-guest__link--helpmain_cf {
        width: 80px;
        padding: 0px 20px;
        color: rgba(0, 0, 0, 0.9);
        transition: 0.12s ease-out;
        font-weight: 600;
    }

    .nav-header-user-welcome__link--helpmain:hover,
    .nav-header-user-welcome__link--helpmain_cf:hover,
    .nav-header-guest__link--helpmain:hover,
    .nav-header-guest__link--helpmain_cf:hover {
        color: rgb(0, 0, 0);
        transition: 0.12s ease-out;
    }

    .nav-header-user-welcome {
        height: 64px;
        line-height: 64px;
    }

    .nav-header-user-welcome__links {
        display: inline;
    }

    .nav-header-user-welcome__container-avatar--v2 {
        display: flex;
        align-items: center;
        gap: 8px;
        width: 197px;
        justify-content: flex-start;
        background: rgba(0, 0, 0, 0);
        border: none;
        border-radius: 5px 5px 0px 0px;
        padding: 8px 13px;
        transition: background-color 0.2s;
    }

    .nav-header-user-welcome__avatar--v2 {
        margin: 0px 0px 0px 5px;
        width: 32px;
        height: 32px;
    }

    .nav-header-user-welcome__label--v2 {
        max-width: 107px;
        min-width: 107px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        color: rgb(0, 0, 0);
        font-weight: 600;
        font-size: 16px;
    }

    .nav-header-user-welcome__chevron--v2 {
        position: relative;
        width: 12px;
        height: 16px;
        margin-left: auto;
        display: inline-flex;
        align-items: center;
    }

    .nav-header-user-welcome__chevron--v2::after {
        background-image: url("data:image/svg+xml,%3Csvg width='12' height='16' viewBox='0 0 12 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 7L5.64775 10.3523L2.2955 7L1.5 7.7955L5.64775 11.9432L9.7955 7.7955L9 7Z' fill='black' fill-opacity='0.9' stroke='black' stroke-width='0.25'/%3E%3C/svg%3E");
        width: 12px;
        height: 16px;
        content: " ";
        display: block;
        transition: transform 0.2s;
    }

    .nav-header-user-menu {
        position: absolute;
        padding: 7px 0px;
        top: 64px;
        width: 330px;
        right: 108px;
        z-index: 20;
    }

    .nav-header-user-menu::before,
    .nav-header-user-menu::after {
        content: none;
    }

    .nav-header-user-menu--v2 {
        width: 197px;
        padding: 24px;
        background: rgb(255, 255, 255);
        right: 0px;
        top: 56px;
        border-radius: 0px 0px 20px 20px;
        box-shadow: none;
    }

    .nav-header-user-menu__v2-list {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .nav-header-user-menu__link {
        line-height: 30px;
    }

    .nav-header-user-menu__link--logout,
    .nav-header-user-menu__link--logout_cf {
        padding: 16px 0px 16px 24px;
        margin: 8px 0px;
        display: block;
    }

    .nav-header-user-menu__link--helpmain,
    .nav-header-user-menu__link--helpmain_cf {
        display: none;
    }

    .nav-header-user-menu__link--v2 {
        padding: 0px;
        margin: 0px;
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 14px;
        line-height: 18px;
        font-weight: 400;
        color: rgba(0, 0, 0, 0.9);
        text-decoration: none;
    }

    .nav-header-user-menu__link--v2-container {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 0px;
    }

    .nav-header-user-menu__link--v2-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 20px;
        height: 20px;
        padding: 0px;
    }

    .nav-header-user-menu__link--v2-icon svg {
        width: 20px;
        height: 20px;
    }

    .nav-header-user-menu__link--v2-text {
        margin: 0px;
        padding: 0px;
        font-size: 14px;
        line-height: 18px;
        color: rgba(0, 0, 0, 0.9);
    }

    .nav-header-user-menu__divider--v2 {
        height: 1px;
        background: rgba(0, 0, 0, 0.1);
    }

    .nav-header-user-info {
        padding: 24px 20px;
    }

    .nav-header-user-info .nav-header-user-avatar {
        width: 40px;
        height: 40px;
        margin-right: 10px;
        display: inline-block;
    }

    .nav-header-user-avatar {
        display: inline-block;
    }

    #nav-header-user-switch:checked+.nav-header-user-layer .nav-header-user-welcome__container-avatar--v2 {
        background-color: rgba(255, 255, 255, 0.6);
    }

    #nav-header-user-switch:checked+.nav-header-user-layer .nav-header-user-welcome__chevron--v2::after {
        transform: rotate(180deg);
    }

    .nav-header-guest {
        height: 64px;
    }

    .nav-header-guest__links {
        padding-inline-start: 0px;
        padding-left: 0px;
        list-style: none;
        margin: 0px;
    }

    .nav-header-guest__wrapper {
        padding: 14px 20px;
    }

    .nav-header-guest__wrapper--v2 {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-left: 350px;
    }

    .nav-header-user-welcome--v2 {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-left: 350px;
        padding-right: 0px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 768px) {

    .nav-section-mp--mlb .nav-header-user-menu__link--helpmain,
    .nav-section-mp--mlb .nav-header-user-menu__link--helpmain_cf {
        display: none;
    }
}

@media only screen and (min-width: 768px) and (max-width: 768px) {

    .nav-header-guest--mlb .nav-header-user-menu__link--helpmain,
    .nav-header-guest--mlb .nav-header-user-menu__link--helpmain_cf {
        display: none;
    }
}

@media only screen and (min-width: 768px) and (max-width: 768px) {

    .nav-header-user-welcome--mlb .nav-header-user-menu__link--helpmain,
    .nav-header-user-welcome--mlb .nav-header-user-menu__link--helpmain_cf {
        display: none;
    }
}

@media only screen and (min-width: 768px) and (max-width: 768px) {

    .nav-header-user-menu--mlb .nav-header-user-menu__link--helpmain,
    .nav-header-user-menu--mlb .nav-header-user-menu__link--helpmain_cf {
        display: none;
    }
}

@media only screen and (min-width: 768px) and (max-width: 768px) {

    .nav-header--mlb .nav-header-user-menu__link--helpmain,
    .nav-header--mlb .nav-header-user-menu__link--helpmain_cf {
        display: none;
    }
}

@media only screen and (min-width: 768px) and (max-width: 768px) {

    .nav-footer-mp--mlb .nav-header-user-menu__link--helpmain,
    .nav-footer-mp--mlb .nav-header-user-menu__link--helpmain_cf {
        display: none;
    }
}

@media only screen and (min-width: 768px) and (max-width: 768px) {

    .copyright-and-social--mlb .nav-header-user-menu__link--helpmain,
    .copyright-and-social--mlb .nav-header-user-menu__link--helpmain_cf {
        display: none;
    }
}

@media (min-width: 768px) {
    header.nav-header-full_v2 .nav-header-menu-container {
        max-width: 1206px;
    }

    .nav-footer-mp__navs {
        max-width: 496px;
    }

    .nav-footer-mp .logo {
        margin: 64px 0px;
    }

    .nav-footer-mp .nav-section-mp {
        margin: 0px;
    }

    .nav-footer-mp .nav-section-mp--digital-account .nav-section-mp__nav,
    .nav-footer-mp .nav-section-mp:nth-child(1) .nav-section-mp__nav {
        padding-right: 8px;
    }

    .nav-footer-mp .nav-section-mp--about {
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        margin-bottom: 64px;
        padding-top: 64px;
    }

    .nav-footer-mp .nav-section-mp--performance {
        padding: 64px 0px 56px;
        max-width: 496px;
        margin: 0px auto;
    }

    .nav-footer-mp .nav-section-mp--performance .nav-section-mp__nav ul {
        list-style-type: none;
        padding: 0px;
        margin: 0px;
    }

    .nav-footer-mp .nav-section-mp--performance .nav-section-mp__nav ul li:not(:last-child) {
        margin-bottom: 24px;
    }

    .nav-footer-mp .nav-section-mp--about .nav-section-mp__nav,
    .nav-footer-mp .nav-section-mp--performance .nav-section-mp__nav {
        display: block;
        column-count: 2;
        column-gap: 48px;
    }

    .nav-footer-mp .nav-section-mp--about .nav-section-mp__nav-link,
    .nav-footer-mp .nav-section-mp--performance .nav-section-mp__nav-link {
        display: block;
    }

    .nav-footer-mp .nav-section-mp--help-security {
        width: auto;
        max-width: 210px;
        margin-right: 52px;
    }

    .nav-footer-mp .nav-footer-mp__navs ul {
        list-style-type: none;
        padding: 0px;
        margin: 0px;
    }

    .nav-footer-mp .nav-footer-mp__navs ul li:not(:last-child) {
        margin-bottom: 24px;
    }

    .nav-footer-mp .nav-footer-mp__navs .nav-section-mp:nth-child(-n+3) {
        margin-bottom: 64px;
        max-width: 224px;
    }

    .nav-footer-mp .copyright-and-social {
        padding: 0px;
        max-width: 496px;
        margin: 0px auto;
    }

    .nav-footer-mp .copyright-and-social .copyright {
        margin-bottom: 72px;
    }

    .nav-footer-mp .copyright-and-social::before {
        right: 0px;
        left: 0px;
    }

    .nav-cookie-disclaimer {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .nav-cookie-disclaimer__text {
        margin: 0px 16px 0px 0px;
        font-size: 16px;
    }

    .nav-cookie-disclaimer__button {
        width: initial;
    }
}

@media (min-width: 1024px) {
    .nav-header-scrollable {
        position: fixed;
        top: 0px;
        left: 0px;
        right: 0px;
        z-index: 900;
        transition: 1s cubic-bezier(0.4, 0, 0.2, 1);
        background-color: var(--andes-color-fill-brand, var(--andes-color-yellow-500, #ffe600));
        height: 64px;
    }

    .nav-header-scrollable.nav-header-scrolled {
        background-color: rgb(255, 255, 255);
    }

    .nav-header-scrollable .nav-header-guest__link--registration {
        background-color: var(--andes-color-blue-500, #3483fa);
        color: rgb(255, 255, 255);
        transition: 1s;
    }

    .nav-header-scrollable .nav-header-guest__link--helpmain {
        background-color: rgba(0, 0, 0, 0);
        color: rgba(0, 0, 0, 0.9);
        transition: 1s;
    }

    .nav-header-scrollable-spacer {
        height: 64px;
        width: 100%;
    }

    header.nav-header-full_v2 {
        position: fixed;
        top: 0px;
        left: 0px;
        right: 0px;
        z-index: 900;
        transition: 1s cubic-bezier(0.4, 0, 0.2, 1);
        background-color: var(--andes-color-fill-brand, var(--andes-color-yellow-500, #ffe600));
        height: 64px;
    }

    header.nav-header-full_v2.nav-header-menu-open {
        transition: all;
    }

    header.nav-header-full_v2 .nav-header-menu-wrapper {
        padding: 0px 20px;
    }

    header.nav-header-full_v2.nav-header-menu-open:has(#nav-header-user-switch:checked) {
        background-color: var(--andes-color-fill-brand);
    }

    header.nav-header-full_v2.nav-header-scrolled {
        background-color: rgb(255, 255, 255);
    }

    header.nav-header-full_v2.nav-header-retracted {
        transform: translateY(0px);
    }

    header.nav-header-full_v2 .nav-header-guest__link--login,
    header.nav-header-full_v2 .nav-header-guest__link--login_cf,
    header.nav-header-full_v2 .nav-header-guest__link--login_mla,
    header.nav-header-full_v2 .nav-header-guest__link--login_mlb,
    header.nav-header-full_v2 .nav-header-guest__link--login_mlc,
    header.nav-header-full_v2 .nav-header-guest__link--login_mco,
    header.nav-header-full_v2 .nav-header-guest__link--login_mlm,
    header.nav-header-full_v2 .nav-header-guest__link--login_mlv,
    header.nav-header-full_v2 .nav-header-guest__link--login_mpe,
    header.nav-header-full_v2 .nav-header-guest__link--login_mlu,
    header.nav-header-full_v2 .nav-header-guest__link--login_mec,
    header.nav-header-full_v2 .nav-header-guest__link--login_mobile,
    header.nav-header-full_v2 .nav-header-guest__link--login_mobile_cf,
    header.nav-header-full_v2 .nav-header-guest__link--login_mobile_mla,
    header.nav-header-full_v2 .nav-header-guest__link--login_mobile_mlb,
    header.nav-header-full_v2 .nav-header-guest__link--login_mobile_mlc,
    header.nav-header-full_v2 .nav-header-guest__link--login_mobile_mco,
    header.nav-header-full_v2 .nav-header-guest__link--login_mobile_mlm,
    header.nav-header-full_v2 .nav-header-guest__link--login_mobile_mlv,
    header.nav-header-full_v2 .nav-header-guest__link--login_mobile_mpe,
    header.nav-header-full_v2 .nav-header-guest__link--login_mobile_mlu,
    header.nav-header-full_v2 .nav-header-guest__link--login_mobile_mec {
        transition: 1s;
        background-color: rgba(255, 255, 255, 0.6);
        color: rgba(0, 0, 0, 0.9);
    }

    header.nav-header-full_v2.nav-header-scrolled .nav-header-guest__link--login,
    header.nav-header-full_v2.nav-header-scrolled .nav-header-guest__link--login_cf,
    header.nav-header-full_v2.nav-header-scrolled .nav-header-guest__link--login_mla,
    header.nav-header-full_v2.nav-header-scrolled .nav-header-guest__link--login_mlb,
    header.nav-header-full_v2.nav-header-scrolled .nav-header-guest__link--login_mlc,
    header.nav-header-full_v2.nav-header-scrolled .nav-header-guest__link--login_mco,
    header.nav-header-full_v2.nav-header-scrolled .nav-header-guest__link--login_mlm,
    header.nav-header-full_v2.nav-header-scrolled .nav-header-guest__link--login_mlv,
    header.nav-header-full_v2.nav-header-scrolled .nav-header-guest__link--login_mpe,
    header.nav-header-full_v2.nav-header-scrolled .nav-header-guest__link--login_mlu,
    header.nav-header-full_v2.nav-header-scrolled .nav-header-guest__link--login_mec,
    header.nav-header-full_v2.nav-header-scrolled .nav-header-guest__link--login_mobile,
    header.nav-header-full_v2.nav-header-scrolled .nav-header-guest__link--login_mobile_cf,
    header.nav-header-full_v2.nav-header-scrolled .nav-header-guest__link--login_mobile_mla,
    header.nav-header-full_v2.nav-header-scrolled .nav-header-guest__link--login_mobile_mlb,
    header.nav-header-full_v2.nav-header-scrolled .nav-header-guest__link--login_mobile_mlc,
    header.nav-header-full_v2.nav-header-scrolled .nav-header-guest__link--login_mobile_mco,
    header.nav-header-full_v2.nav-header-scrolled .nav-header-guest__link--login_mobile_mlm,
    header.nav-header-full_v2.nav-header-scrolled .nav-header-guest__link--login_mobile_mlv,
    header.nav-header-full_v2.nav-header-scrolled .nav-header-guest__link--login_mobile_mpe,
    header.nav-header-full_v2.nav-header-scrolled .nav-header-guest__link--login_mobile_mlu,
    header.nav-header-full_v2.nav-header-scrolled .nav-header-guest__link--login_mobile_mec {
        background-color: rgba(65, 137, 230, 0.15);
        color: var(--andes-color-blue-500, #3483fa);
    }

    header.nav-header-full_v2 .nav-header-guest__link--registration {
        background-color: var(--andes-color-blue-500, #3483fa);
        color: rgb(255, 255, 255);
        transition: 1s;
    }

    header.nav-header-full_v2 .nav-header-guest__link--helpmain {
        background-color: rgba(0, 0, 0, 0);
        color: rgba(0, 0, 0, 0.9);
        transition: 1s;
    }

    .nav-header-full_v2-spacer {
        height: 64px;
        width: 100%;
    }

    .nav-footer-mp__navs {
        margin: 64px auto;
        padding: 0px 32px;
        max-width: 1280px;
        align-items: flex-start;
        justify-content: space-between;
    }

    .nav-footer-mp .logo {
        flex: 1 1 0%;
        width: unset;
        margin: 0px;
    }

    .nav-footer-mp .logo__link {
        transform: translateX(0px);
    }

    .nav-footer-mp .nav-section-mp__title {
        margin-bottom: 20px;
        font-size: 14px;
        line-height: 1.28571;
    }

    .nav-footer-mp .nav-section-mp__nav-link {
        font-size: 0.813em;
        line-height: 1.23077;
        margin-bottom: 0px;
    }

    .nav-footer-mp .nav-section-mp__nav-link:not(:last-child) {
        margin-bottom: 12px;
    }

    .nav-footer-mp .nav-section-mp__nav ul li {
        line-height: 15.02px;
    }

    .nav-footer-mp .nav-section-mp__nav ul li:not(:last-child) {
        margin-bottom: 12px;
    }

    .nav-footer-mp .nav-section-mp--about {
        border-top: none;
        margin-bottom: 0px;
        padding-top: 0px;
        max-width: 210px;
    }

    .nav-footer-mp .nav-section-mp--about .nav-section-mp__nav {
        display: flex;
    }

    .nav-footer-mp .nav-section-mp--about .nav-section-mp__nav-link {
        display: flex;
    }

    .nav-footer-mp .nav-section-mp--performance {
        max-width: 1280px;
        padding: 0px 32px;
        margin: 24px auto;
    }

    .nav-footer-mp .nav-section-mp--performance .nav-section-mp__nav {
        display: flex;
        flex-direction: row;
        column-gap: unset;
    }

    .nav-footer-mp .nav-section-mp--performance .nav-section-mp__nav ul {
        display: flex;
        flex-direction: row;
        column-gap: unset;
    }

    .nav-footer-mp .nav-section-mp--performance .nav-section-mp__nav ul li:not(:last-child) {
        margin-right: 24px;
        margin-bottom: 0px;
    }

    .nav-footer-mp .nav-section-mp--performance .nav-section-mp__nav-link {
        display: flex;
        margin: 0px;
        font-size: 12px;
    }

    .nav-footer-mp .nav-section-mp--performance .nav-section-mp__nav-link:not(:last-child) {
        margin-right: 24px;
    }

    .nav-footer-mp .nav-section-mp--help-security {
        max-width: 210px;
        width: auto;
        margin-right: 52px;
    }

    .nav-footer-mp .nav-footer-mp__navs .nav-section-mp:nth-child(-n+3) {
        margin-bottom: 0px;
        margin-right: 52px;
        max-width: 210px;
    }

    .nav-footer-mp .copyright-and-social {
        flex-direction: row;
        padding: 24px 32px 0px;
        max-width: 1280px;
        margin-bottom: 24px;
    }

    .nav-footer-mp .copyright-and-social .social {
        align-items: center;
        order: 2;
        margin: 0px 0px 0px 112px;
        width: unset;
    }

    .nav-footer-mp .copyright-and-social .social ul {
        list-style-type: none;
        padding: 0px;
        margin: 0px;
        display: flex;
        width: 100%;
    }

    .nav-footer-mp .copyright-and-social .social ul li:not(:last-child) {
        margin-right: 16px;
    }

    .nav-footer-mp .copyright-and-social .social__link {
        font-size: 16px;
        height: 18px;
        width: 16px;
        margin-right: 16px;
    }

    .nav-footer-mp .copyright-and-social .social__link:last-child {
        margin-right: 0px;
    }

    .nav-footer-mp .copyright-and-social .copyright {
        order: 1;
        margin: 0px;
        font-size: 0.6875em;
        line-height: 1.33333;
    }

    .nav-footer-mp .copyright-and-social::before {
        right: 32px;
        left: 32px;
    }

    .nav-header-scrollable {
        position: fixed;
        top: 0px;
        left: 0px;
        right: 0px;
        z-index: 900;
        transition: 1s cubic-bezier(0.4, 0, 0.2, 1);
        background-color: var(--andes-color-fill-brand, var(--andes-color-yellow-500, #ffe600));
        height: 64px;
    }

    .nav-header-scrollable.nav-header-scrolled {
        background-color: rgb(255, 255, 255);
    }

    .nav-header-scrollable .nav-header-guest__link--registration {
        background-color: var(--andes-color-blue-500, #3483fa);
        color: rgb(255, 255, 255);
        transition: 1s;
    }

    .nav-header-scrollable .nav-header-guest__link--helpmain {
        background-color: rgba(0, 0, 0, 0);
        color: rgba(0, 0, 0, 0.9);
        transition: 1s;
    }

    .nav-header-scrollable-spacer {
        height: 64px;
        width: 100%;
    }

    .ie9 .nav-header-user-menu {
        border: 1px solid rgba(51, 51, 51, 0.3);
    }

    .ie8 .nav-header-user-chevron::before,
    .ie8 .nav-header-user-chevron::after {
        content: none;
    }

    .ie8 .nav-header-menu-wrapper {
        border-bottom: 1px solid gray;
    }

    .ie8 .nav-header-menu-container {
        height: 64px;
    }
}

.andes-visually-hidden {
    border: 0px;
    clip: rect(0px, 0px, 0px, 0px);
    clip-path: inset(50%);
    height: 1px;
    margin: 0px -1px -1px 0px;
    overflow: hidden;
    padding: 0px;
    position: absolute;
    width: 1px;
    white-space: nowrap;
}

:focus {
    box-shadow: rgb(255, 255, 255) 0px 0px 0px 2px, rgb(41, 104, 200) 0px 0px 0px 3px, rgba(65, 137, 230, 0.3) 0px 0px 0px 5px;
    outline: none;
}

:focus-visible {
    box-shadow: rgb(255, 255, 255) 0px 0px 0px 2px, rgb(41, 104, 200) 0px 0px 0px 3px, rgba(65, 137, 230, 0.3) 0px 0px 0px 5px;
    outline: none;
}

:focus:not(:focus-visible) {
    box-shadow: none;
    outline: none;
}

.n-img-blur {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

@font-face {
    font-family: "Proxima Nova";
    font-weight: 300;
    font-display: swap;
    font-style: normal;
    src: url("https://http2.mlstatic.com/ui/webfonts/v3.0.0/proxima-nova/proximanova-light.woff2") format("woff2"), url("https://http2.mlstatic.com/ui/webfonts/v3.0.0/proxima-nova/proximanova-light.woff") format("woff");
}

@font-face {
    font-family: "Proxima Nova";
    font-weight: 400;
    font-display: swap;
    font-style: normal;
    src: url("https://http2.mlstatic.com/ui/webfonts/v3.0.0/proxima-nova/proximanova-regular.woff2") format("woff2"), url("https://http2.mlstatic.com/ui/webfonts/v3.0.0/proxima-nova/proximanova-regular.woff") format("woff");
}

@font-face {
    font-family: "Proxima Nova";
    font-weight: 600;
    font-display: swap;
    font-style: normal;
    src: url("https://http2.mlstatic.com/ui/webfonts/v3.0.0/proxima-nova/proximanova-semibold.woff2") format("woff2"), url("https://http2.mlstatic.com/ui/webfonts/v3.0.0/proxima-nova/proximanova-semibold.woff") format("woff");
}