.andes-form-control {
    -webkit-font-smoothing: antialiased;
    display: block;
    font-family: Proxima Nova, -apple-system, Helvetica Neue, Helvetica, Roboto, Arial, sans-serif;
    font-size: 18px;
    font-weight: 400;
    padding-top: 0.6666666667em;
    position: relative;
    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;
    -webkit-transition: 0.2s ease-out;
    transition: 0.2s ease-out;
    -webkit-transition-property: color, -webkit-transform;
    transition-property: color, -webkit-transform;
    transition-property: transform, color;
    transition-property: transform, color, -webkit-transform;
}
.andes-form-control__label-fixed {
    -webkit-transform: scale(0.7777777778) translateY(-135%) !important;
    transform: scale(0.7777777778) translateY(-135%) !important;
}
.andes-form-control__field {
    background: transparent;
    border: 0;
    color: rgba(0, 0, 0, 0.9);
    font-family: inherit;
    font-size: inherit;
    line-height: normal;
    margin: 8px 0 4px;
    overflow: hidden;
    padding: 0;
    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;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: -webkit-transform 0.25s ease;
    transition: -webkit-transform 0.25s ease;
    transition: transform 0.25s ease;
    transition: transform 0.25s ease, -webkit-transform 0.25s ease;
    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);
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}
.andes-form-control__field:focus {
    outline: 0;
}
.andes-form-control--focused .andes-form-control__border:after,
.andes-form-control__field:focus + .andes-form-control__border:after {
    background-color: #009ee3 !important;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}
.andes-form-control--floated .andes-form-control__label,
.andes-form-control--focused .andes-form-control__label {
    cursor: text;
}
.andes-form-control__message {
    color: rgba(0, 0, 0, 0.55);
    font-size: 14px;
    line-height: 1em;
    margin-top: 0.3333333333em;
    min-height: 14px;
    opacity: 0;
    opacity: 1;
    text-align: left;
    -webkit-transition: opacity 0.15s ease-out;
    transition: opacity 0.15s ease-out;
}
.andes-form-control--focused .andes-form-control__message,
.andes-form-control__message-fixed {
    opacity: 1;
}
.andes-form-control--indeterminate .andes-form-control__border {
    height: 2px;
}
.andes-form-control--indeterminate .andes-form-control__border:after {
    -webkit-animation: animation-indeterminate;
    animation: animation-indeterminate;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    background-color: #009ee3;
    content: "";
    height: 2px;
    position: absolute;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}
@-webkit-keyframes animation-indeterminate {
    0% {
        left: 0;
        width: 5%;
    }
    50% {
        left: 15%;
        width: 60%;
    }
    to {
        left: 101%;
        width: 0;
    }
}
@keyframes animation-indeterminate {
    0% {
        left: 0;
        width: 5%;
    }
    50% {
        left: 15%;
        width: 60%;
    }
    to {
        left: 101%;
        width: 0;
    }
}
.andes-form-control--error .andes-form-control__message {
    color: #f04449;
    font-weight: 600;
    opacity: 1;
}
.andes-form-control--error.andes-form-control--focused .andes-form-control__border:after {
    background-color: #f04449 !important;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}
.andes-form-control--error .andes-form-control__border {
    background-color: #f04449;
}
.andes-form-control--error .andes-form-control__border:after {
    background-color: #f04449 !important;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
}
.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: -webkit-gradient(
        linear,
        left top,
        right top,
        from(rgba(0, 0, 0, 0.25)),
        color-stop(50%, rgba(0, 0, 0, 0.25)),
        color-stop(50%, transparent)
    );
    background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25) 50%, transparent 0);
    background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.25) 0, rgba(0, 0, 0, 0.25) 50%, transparent 0);
    background-position: 0 top;
    background-repeat: repeat-x;
    -webkit-background-size: 6px 100%;
    background-size: 6px 100%;
}
.andes-form-control--disabled .andes-form-control__border:after {
    display: none;
}
.andes-form-control--completed .andes-form-control---validated-icon {
    -webkit-animation: show-valid-ckeck 0.5s;
    animation: show-valid-ckeck 0.5s;
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 1.5625em;
}
@-webkit-keyframes show-valid-ckeck {
    0% {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes show-valid-ckeck {
    0% {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.andes-form-control--textfield .andes-form-control__label {
    color: rgba(0, 0, 0, 0.9);
    cursor: text;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.0714285714em;
    margin: 0 0 0.4285714286em 0.4285714286em;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-transform: unset !important;
    transform: unset !important;
    -webkit-transition: 0.2s ease-out;
    transition: 0.2s ease-out;
    -webkit-transition-property: color;
    transition-property: color;
    white-space: nowrap;
}
.andes-form-control--textfield .andes-form-control__control {
    -webkit-align-items: center;
    align-items: center;
    background-color: #fff;
    -webkit-border-radius: 0.375em;
    border-radius: 0.375em;
    -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.25);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.25);
    display: -webkit-flex;
    display: flex;
    font-size: 16px;
    min-height: 48px;
}
.andes-form-control--textfield .andes-form-control__field {
    -webkit-border-radius: 0.375em;
    border-radius: 0.375em;
    font-size: 16px;
    height: 22px;
    line-height: 22px;
    margin: 0;
    padding: 0.8125em 0.75em;
}
.andes-form-control--textfield .andes-form-control__field:focus {
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
}
.andes-form-control--textfield .andes-form-control__field:focus-visible {
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-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: rgba(0, 0, 0, 0.25);
    font-size: 16px;
    opacity: 1;
}
.andes-form-control--textfield .andes-form-control__field::-webkit-input-placeholder {
    color: rgba(0, 0, 0, 0.25);
    font-size: 16px;
}
.andes-form-control--textfield .andes-form-control__field::-moz-placeholder {
    color: rgba(0, 0, 0, 0.25);
    font-size: 16px;
    opacity: 1;
}
.andes-form-control--textfield .andes-form-control__field:-moz-placeholder {
    opacity: 1;
}
.andes-form-control--textfield .andes-form-control__field:-ms-input-placeholder {
    color: rgba(0, 0, 0, 0.25);
    font-size: 16px;
}
.andes-form-control--textfield .andes-form-control__field::-ms-input-placeholder {
    color: rgba(0, 0, 0, 0.25);
    font-size: 16px;
}
.andes-form-control--textfield .andes-form-control__field:-moz-placeholder {
    color: rgba(0, 0, 0, 0.25);
    font-size: 16px;
}
.andes-form-control--textfield .andes-form-control__message {
    font-size: 13px;
    margin-top: 0;
}
.andes-form-control--textfield .andes-form-control__bottom {
    -webkit-align-items: center;
    align-items: center;
    display: -webkit-flex;
    display: flex;
    font-size: 13px;
    margin: 0.6153846154em 0 0 0.4615384615em;
}
.andes-form-control--focused .andes-form-control__control {
    border-color: transparent;
    box-shadow: 0 0 0 0.125em #009ee3;
    -moz-box-shadow: 0 0 0 0.125em #009ee3;
    -webkit-box-shadow: 0 0 0 0.125em #009ee3;
    outline: none;
}
.andes-form-control__control.visible-focused {
    border-color: transparent;
    box-shadow: 0 0 0 2px #fff, 0 0 0 3px #007eb5, 0 0 0 5px rgba(71, 154, 209, 0.3), inset 0 0 0 2px #009ee3;
    -moz-box-shadow: 0 0 0 2px #fff, 0 0 0 3px #007eb5, 0 0 0 5px rgba(71, 154, 209, 0.3), inset 0 0 0 2px #009ee3;
    -webkit-box-shadow: 0 0 0 2px #fff, 0 0 0 3px #007eb5, 0 0 0 5px rgba(71, 154, 209, 0.3), inset 0 0 0 2px #009ee3;
    outline: none;
}
.andes-form-control--textfield:hover .andes-form-control__label {
    color: rgba(0, 0, 0, 0.9) !important;
}
.andes-form-control__message-action {
    color: #009ee3;
    cursor: pointer;
    margin-left: 0.3em;
}
.andes-form-control__message-action:hover {
    text-decoration: underline;
}
.andes-form-control__label,
.andes-form-control__message {
    font-family: Proxima Nova, -apple-system, Helvetica Neue, Helvetica, Roboto, Arial, sans-serif;
}
.sr-only {
    clip: rect(0 0 0 0);
    border: 0;
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    height: 1px;
    margin: 0 -1px -1px 0;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}
.andes-form-control--textfield.andes-form-control--error .andes-form-control__label {
    color: #f23d4f !important;
}
.andes-form-control--textfield.andes-form-control--error .andes-form-control__control {
    -webkit-box-shadow: 0 0 0 1px #f23d4f;
    box-shadow: 0 0 0 1px #f23d4f;
}
.andes-form-control--textfield.andes-form-control--error .andes-form-control---error-icon {
    font-size: 13px;
    margin-right: 0.4615384615em;
}
.andes-form-control--textfield.andes-form-control--error.andes-form-control--focused .andes-form-control__control {
    border-color: transparent;
    -webkit-box-shadow: 0 0 0 0.125em #f23d4f;
    box-shadow: 0 0 0 0.125em #f23d4f;
    outline: none;
}
.andes-form-control--numeric.andes-form-control--error .andes-form-control__label,
.andes-form-control--textfield.andes-form-control--error:hover .andes-form-control__label {
    color: #f23d4f !important;
}
.andes-form-control--numeric.andes-form-control--error .andes-form-control__control {
    -webkit-box-shadow: 0 0 0 1px #f23d4f;
    box-shadow: 0 0 0 1px #f23d4f;
}
.andes-form-control--numeric.andes-form-control--error .andes-form-control---error-icon {
    font-size: 13px;
    margin-right: 0.4615384615em;
}
.andes-form-control--numeric.andes-form-control--error.andes-form-control--focused .andes-form-control__control {
    border-color: transparent;
    -webkit-box-shadow: 0 0 0 0.125em #f23d4f;
    box-shadow: 0 0 0 0.125em #f23d4f;
    outline: none;
}
.andes-form-control--numeric.andes-form-control--error:hover .andes-form-control__label {
    color: #f23d4f !important;
}
.andes-form-control--textfield .andes-form-control---validated-icon {
    margin-right: 0.75em;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.andes-form-control--textfield .andes-form-control---clear-icon {
    -webkit-align-items: center;
    align-items: center;
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: -webkit-flex;
    display: flex;
    font-size: 13px;
    margin-right: 0.75em;
    outline: none;
    padding: 0;
}
.andes-form-control--textfield.andes-form-control--disabled .andes-form-control__label {
    color: rgba(0, 0, 0, 0.25) !important;
}
.andes-form-control--textfield.andes-form-control--disabled .andes-form-control__split-button {
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    cursor: not-allowed;
}
.andes-form-control--textfield.andes-form-control--disabled
    .andes-form-control__split-button
    .andes-form-control__split-button-content {
    color: rgba(0, 0, 0, 0.25);
}
.andes-form-control--textfield.andes-form-control--disabled .andes-form-control__control {
    background-color: rgba(0, 0, 0, 0.05);
    border: 1px dashed rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: none;
    box-shadow: none;
}
.andes-form-control--textfield.andes-form-control--disabled .andes-form-control__field {
    color: rgba(0, 0, 0, 0.25);
    height: 20px;
}
.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: 0;
}
.andes-form-control--textfield.andes-form-control--readonly .andes-form-control__label {
    color: rgba(0, 0, 0, 0.25) !important;
}
.andes-form-control--textfield.andes-form-control--readonly .andes-form-control__control {
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.andes-form-control--textfield.andes-form-control--readonly .andes-form-control__field {
    padding-left: 0.4285714286em;
}
.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__message {
    width: 78%;
}
.andes-form-control--countdown .andes-form-control__countdown {
    color: rgba(0, 0, 0, 0.55);
    float: right;
    font-size: 13px;
    line-height: 1;
    text-align: right;
    width: 22%;
}
@-webkit-keyframes rotate-left {
    to {
        -webkit-transform: rotate(30deg);
        transform: rotate(30deg);
    }
    0% {
        -webkit-transform: rotate(175deg);
        transform: rotate(175deg);
    }
}
@-webkit-keyframes rotate-right {
    0% {
        -webkit-transform: rotate(-175deg);
        transform: rotate(-175deg);
    }
    to {
        -webkit-transform: rotate(-30deg);
        transform: rotate(-30deg);
    }
}
@-webkit-keyframes rotate-all {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn);
    }
}
.andes-form-control--textfield .andes-spinner__container {
    -webkit-align-items: center;
    align-items: center;
    display: -webkit-flex;
    display: flex;
    padding-right: 0.75em;
    position: unset;
}
.andes-form-control--textfield .andes-spinner__icon--xsmall {
    left: 0;
}
.andes-form-control--textfield .andes-form-control__field {
    -webkit-flex-grow: 1;
    flex-grow: 1;
    width: auto;
}
.andes-form-control--textfield .andes-button--transparent {
    margin: 8px 12px 8px 0;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
}
.andes-form-control--textfield .andes-checkbox--embedded {
    display: inline-block;
    margin: 0 18px 3px 6px;
}
.andes-form-control--textfield .andes-checkbox--embedded .andes-checkbox__input:focus {
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
}
.andes-form-control--textfield .andes-checkbox--embedded .andes-checkbox__input:focus-visible {
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
}
.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 #007eb5, 0 0 0 5px rgba(71, 154, 209, 0.3);
    -moz-box-shadow: 0 0 0 2px #fff, 0 0 0 3px #007eb5, 0 0 0 5px rgba(71, 154, 209, 0.3);
    -webkit-box-shadow: 0 0 0 2px #fff, 0 0 0 3px #007eb5, 0 0 0 5px rgba(71, 154, 209, 0.3);
}
.andes-form-control--textfield .andes-checkbox--embedded .andes-checkbox__input:focus-visible:after {
    opacity: 0;
}
.andes-form-control--textfield .andes-checkbox--embedded .andes-checkbox__background {
    top: -3px;
}
.andes-form-control--textfield .andes-tooltip__trigger {
    display: -webkit-flex;
    display: flex;
    margin-right: 16px;
}
.andes-form-control--textfield .andes-form-control__embedded {
    -webkit-align-items: center;
    align-items: center;
    display: -webkit-flex;
    display: flex;
    z-index: 1;
}
.andes-form-control--numeric {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
}
.andes-form-control--numeric .andes-form-control--focused .andes-form-control__control {
    border-color: transparent;
    box-shadow: 0 0 0 0.125em #009ee3;
    -moz-box-shadow: 0 0 0 0.125em #009ee3;
    -webkit-box-shadow: 0 0 0 0.125em #009ee3;
    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 #007eb5, 0 0 0 5px rgba(71, 154, 209, 0.3), inset 0 0 0 2px #009ee3;
    -moz-box-shadow: 0 0 0 2px #fff, 0 0 0 3px #007eb5, 0 0 0 5px rgba(71, 154, 209, 0.3), inset 0 0 0 2px #009ee3;
    -webkit-box-shadow: 0 0 0 2px #fff, 0 0 0 3px #007eb5, 0 0 0 5px rgba(71, 154, 209, 0.3), inset 0 0 0 2px #009ee3;
    outline: none;
}
.andes-form-control--numeric:hover .andes-form-control__message {
    opacity: 1;
}
.andes-form-control--numeric .andes-form-control {
    padding-top: 0;
}
.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: 1.0714285714em;
    margin: 0 0 0.4285714286em 0.4285714286em;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-transform: unset !important;
    transform: unset !important;
    -webkit-transition: 0.2s ease-out;
    transition: 0.2s ease-out;
    -webkit-transition-property: color;
    transition-property: color;
    white-space: nowrap;
}
.andes-form-control--numeric-wrapper {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}
.andes-form-control--numeric .andes-form-control--textfield {
    width: 40px;
}
.andes-form-control--numeric .andes-form-control__field {
    text-align: center;
}
.andes-form-control--numeric .andes-form-control__field::-webkit-inner-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    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: 0;
}
.andes-form-control--numeric .andes-form-control__message {
    font-size: 13px;
    margin-top: 0;
}
.andes-form-control--numeric .andes-form-control__bottom {
    -webkit-align-items: center;
    align-items: center;
    display: -webkit-flex;
    display: flex;
    font-size: 13px;
    margin: 0.6153846154em 0 0 0.4615384615em;
}
.andes-form-control--textfield:last-child {
    margin-right: 0;
}
.andes-form-control--centered .andes-form-control--numeric-wrapper {
    margin: 0 auto;
}
.andes-form-control__prefix,
.andes-form-control__suffix {
    -webkit-align-items: center;
    align-items: center;
    color: rgba(0, 0, 0, 0.55);
    display: -webkit-flex;
    display: flex;
    font-size: 16px;
    opacity: 1;
    -webkit-transition: opacity 0.2s ease-out;
    transition: opacity 0.2s ease-out;
    white-space: nowrap;
}
.andes-form-control__suffix {
    margin-left: -0.25em;
    margin-right: 0.75em;
    text-align: right;
}
.andes-form-control__prefix {
    margin-left: 0.75em;
    margin-right: -0.25em;
    text-align: left;
}
.andes-form-control--centered .andes-form-control__label {
    margin-left: 0;
    text-align: center;
    -webkit-transform-origin: inherit;
    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: 0;
}
.andes-form-control--centered .andes-form-control__field::-webkit-input-placeholder {
    text-align: center;
}
.andes-form-control--centered .andes-form-control__field::-moz-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: -webkit-flex;
    display: flex;
}
.andes-form-control--password.andes-form-control--focused .andes-form-control__control {
    border-color: transparent;
    box-shadow: 0 0 0 0.125em #009ee3;
    -moz-box-shadow: 0 0 0 0.125em #009ee3;
    -webkit-box-shadow: 0 0 0 0.125em #009ee3;
    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 #007eb5, 0 0 0 5px rgba(71, 154, 209, 0.3), inset 0 0 0 2px #009ee3;
    -moz-box-shadow: 0 0 0 2px #fff, 0 0 0 3px #007eb5, 0 0 0 5px rgba(71, 154, 209, 0.3), inset 0 0 0 2px #009ee3;
    -webkit-box-shadow: 0 0 0 2px #fff, 0 0 0 3px #007eb5, 0 0 0 5px rgba(71, 154, 209, 0.3), inset 0 0 0 2px #009ee3;
}
.andes-form-control--password .andes-form-control__message {
    opacity: 1;
}
.andes-form-control__password-embedded {
    -webkit-align-items: center;
    align-items: center;
    display: -webkit-flex;
    display: flex;
    padding-right: 0.75em;
}
.andes-form-control__password-value {
    color: rgba(0, 0, 0, 0.9);
}
.andes-form-control__password-value.hide {
    display: none;
}
.andes-form-control__password-link {
    color: #009ee3;
    cursor: pointer;
    font-size: 12px;
    outline: 0;
    text-transform: uppercase;
}
.andes-form-control__password-link:focus {
    box-shadow: 0 0 0 2px #fff, 0 0 0 3px #007eb5, 0 0 0 5px rgba(71, 154, 209, 0.3);
    -moz-box-shadow: 0 0 0 2px #fff, 0 0 0 3px #007eb5, 0 0 0 5px rgba(71, 154, 209, 0.3);
    -webkit-box-shadow: 0 0 0 2px #fff, 0 0 0 3px #007eb5, 0 0 0 5px rgba(71, 154, 209, 0.3);
    outline: none;
    position: relative;
}
.andes-form-control__password-link:focus-visible {
    box-shadow: 0 0 0 2px #fff, 0 0 0 3px #007eb5, 0 0 0 5px rgba(71, 154, 209, 0.3);
    -moz-box-shadow: 0 0 0 2px #fff, 0 0 0 3px #007eb5, 0 0 0 5px rgba(71, 154, 209, 0.3);
    -webkit-box-shadow: 0 0 0 2px #fff, 0 0 0 3px #007eb5, 0 0 0 5px rgba(71, 154, 209, 0.3);
    outline: none;
    position: relative;
}
.andes-form-control__password-link:focus:not(:focus-visible) {
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    outline: none;
}
.andes-form-control__password-link.hide {
    display: none;
}
.andes-form-control--textfield .andes-form-control__field.andes-form-control__split-field {
    cursor: text;
    display: -webkit-flex;
    display: flex;
    height: 48px;
    padding: 0 0.75em;
}
.andes-form-control--textfield .andes-form-control__field.andes-form-control__split-field .andes-form-control__control {
    -webkit-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.andes-form-control--textfield
    .andes-form-control__field.andes-form-control__split-field
    .andes-form-control__control
    input {
    padding: 0;
}
.andes-form-control__chevron {
    margin-top: -2px;
}
.andes-form-control__split-button {
    -webkit-align-items: center;
    align-items: center;
    border-right: 1px solid rgba(0, 0, 0, 0.25);
    cursor: pointer;
    display: -webkit-flex;
    display: flex;
    height: 36px;
    padding: 0 0.5em 0 0.75em;
}
.andes-form-control__split-button--right {
    border-left: 1px solid rgba(0, 0, 0, 0.25);
    border-right: 0;
    padding: 0 0.75em 0 0.5em;
}
.andes-form-control__split-button--readonly {
    border: 0;
    cursor: default;
    padding-right: 2px;
}
.andes-form-control__split-button .andes-form-control__split-list {
    -webkit-font-smoothing: antialiased;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    background-color: #fff;
    -webkit-border-radius: 6px;
    border-radius: 6px;
    -webkit-box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.1);
    font-size: 16px;
    left: -4px;
    list-style: none;
    padding: 4px 0;
    position: absolute;
    text-align: left;
    top: -4px;
    z-index: 1000;
}
.andes-form-control__split-button .andes-form-control__split-list ul {
    margin: 0;
    padding: 0;
}
.andes-form-control__split-button .andes-form-control__split-list li {
    display: -webkit-flex;
    display: flex;
    padding: 1px 0;
}
.andes-form-control__split-button .andes-form-control__split-list button {
    -webkit-align-items: center;
    align-items: center;
    background-color: #fff;
    border: 0;
    color: rgba(0, 0, 0, 0.9);
    cursor: pointer;
    display: -webkit-flex;
    display: flex;
    font-family: Proxima Nova, -apple-system, Helvetica Neue, Helvetica, Roboto, Arial, sans-serif;
    font-size: 16px;
    height: 48px;
    padding: 0 1em;
    text-align: left;
    text-decoration: none;
    width: 100%;
}
.andes-form-control__split-button .andes-form-control__split-list button:hover {
    background-color: rgba(0, 0, 0, 0.04);
}
.andes-form-control__split-button .andes-form-control__split-list--right {
    left: auto;
    right: -4px;
}
.andes-form-control__split-button .andes-form-control__split-list .andes-list {
    -webkit-border-radius: 6px;
    border-radius: 6px;
}
.andes-form-control__split-button .andes-form-control__split-list-item--selected {
    position: relative;
}
.andes-form-control__split-button .andes-form-control__split-list-item--selected:before {
    border-left: 2px solid #009ee3;
    -webkit-border-radius: 1.5px;
    border-radius: 1.5px;
    bottom: 4px;
    content: "";
    left: 2px;
    position: absolute;
    top: 4px;
}
.andes-form-control__split-button .andes-form-control__split-list-item--selected button {
    color: #009ee3;
    font-weight: 600;
}
.andes-form-control__split-button-content {
    color: rgba(0, 0, 0, 0.9);
    font-size: 16px;
    margin-right: 4px;
    outline: 0;
    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-autocomplete {
    position: relative;
}
.andes-autocomplete .andes-dropdown.andes-dropdown--form {
    padding-top: 0;
    position: absolute;
    top: 89px;
    width: 100%;
    z-index: 9999;
}
.andes-autocomplete .andes-dropdown.andes-dropdown--form .andes-dropdown__popover {
    background-color: #fff;
    -webkit-border-radius: 6px;
    border-radius: 6px;
    -webkit-box-shadow: 0 0.1875em 0.25em 0 rgba(0, 0, 0, 0.1), 0 0 0.0625em 0 rgba(0, 0, 0, 0.25);
    box-shadow: 0 0.1875em 0.25em 0 rgba(0, 0, 0, 0.1), 0 0 0.0625em 0 rgba(0, 0, 0, 0.25);
    left: 0;
    min-width: 135px;
    overflow: hidden;
    padding: 0;
    top: 4px;
    width: 100%;
}
.andes-autocomplete .andes-dropdown.andes-dropdown--form .andes-list__item {
    font-size: 16px;
    padding: 0.8125em 1em;
}
@-webkit-keyframes andes-button-start-width-animation {
    0% {
        width: 0;
    }
    to {
        width: 90%;
    }
}
@keyframes andes-button-start-width-animation {
    0% {
        width: 0;
    }
    to {
        width: 90%;
    }
}
.andes-button {
    -webkit-font-smoothing: antialiased;
    -webkit-border-radius: 6px;
    border-radius: 6px;
    display: inline-block;
    font-family: Proxima Nova, -apple-system, Helvetica Neue, Helvetica, Roboto, Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    height: 48px;
    line-height: 48px;
    padding: 0 24px;
    text-align: center;
    -webkit-transition: 0.18s ease-out;
    transition: 0.18s ease-out;
    -webkit-transition-property: background, color;
    transition-property: background, color;
    width: auto;
}
.andes-button:link {
    text-decoration: none;
}
.andes-button,
.andes-button * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    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 {
    pointer-events: none;
}
.andes-button--fetching .andes-spinner {
    -webkit-align-items: center;
    align-items: center;
    -webkit-animation: translateInButtonSpinner 0.2s, fadeIn 0.2s;
    animation: translateInButtonSpinner 0.2s, fadeIn 0.2s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
}
.andes-button--fetching .andes-button__content {
    -webkit-animation: translateOutButtonSpinner 0.2s, fadeOut 0.2s;
    animation: translateOutButtonSpinner 0.2s, fadeOut 0.2s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}
.andes-button--fetching-complete .andes-button__content {
    -webkit-animation: translateInButtonSpinnerComplete 0.2s, fadeIn 0.2s;
    animation: translateInButtonSpinnerComplete 0.2s, fadeIn 0.2s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}
.andes-button--fetching-complete .andes-spinner {
    -webkit-animation: translateOutButtonSpinnerComplete 0.2s, fadeOut 0.2s;
    animation: translateOutButtonSpinnerComplete 0.2s, fadeOut 0.2s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}
.andes-button--fetching-complete .andes-spinner,
.andes-button__content {
    -webkit-align-items: center;
    align-items: center;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
}
.andes-button__content {
    height: 100%;
}
.andes-button__content:after {
    clear: both;
    content: "";
    display: table;
}
.andes-button__content * {
    display: block;
    float: left;
}
.andes-button__text {
    -webkit-flex: 1;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.andes-button__text + svg,
svg + .andes-button__text {
    margin-left: 12px;
}
@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@-webkit-keyframes fadeOut {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}
@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}
@-webkit-keyframes translateInButtonSpinner {
    0% {
        -webkit-transform: translate(-webkit-calc(50% - 20px), 50%);
        transform: translate(calc(50% - 20px), 50%);
    }
    to {
        -webkit-transform: translateY(-webkit-calc(-50% - 22px));
        transform: translateY(calc(-50% - 22px));
    }
}
@keyframes translateInButtonSpinner {
    0% {
        -webkit-transform: translate(-webkit-calc(50% - 20px), 50%);
        transform: translate(calc(50% - 20px), 50%);
    }
    to {
        -webkit-transform: translateY(-webkit-calc(-50% - 22px));
        transform: translateY(calc(-50% - 22px));
    }
}
@-webkit-keyframes translateOutButtonSpinner {
    0% {
        -webkit-transform: translate(0);
        transform: translate(0);
    }
    to {
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }
}
@keyframes translateOutButtonSpinner {
    0% {
        -webkit-transform: translate(0);
        transform: translate(0);
    }
    to {
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }
}
@-webkit-keyframes translateOutButtonSpinnerComplete {
    0% {
        -webkit-transform: translateY(-webkit-calc(-50% - 22px));
        transform: translateY(calc(-50% - 22px));
    }
    to {
        -webkit-transform: translateY(-80px);
        transform: translateY(-80px);
    }
}
@keyframes translateOutButtonSpinnerComplete {
    0% {
        -webkit-transform: translateY(-webkit-calc(-50% - 22px));
        transform: translateY(calc(-50% - 22px));
    }
    to {
        -webkit-transform: translateY(-80px);
        transform: translateY(-80px);
    }
}
@-webkit-keyframes translateInButtonSpinnerComplete {
    0% {
        -webkit-transform: translateY(50%);
        transform: translateY(50%);
    }
    to {
        -webkit-transform: translateY(-webkit-calc(-50% + 22px));
        transform: translateY(calc(-50% + 22px));
    }
}
@keyframes translateInButtonSpinnerComplete {
    0% {
        -webkit-transform: translateY(50%);
        transform: translateY(50%);
    }
    to {
        -webkit-transform: translateY(-webkit-calc(-50% + 22px));
        transform: translateY(calc(-50% + 22px));
    }
}
.andes-button--medium {
    -webkit-border-radius: 5px;
    border-radius: 5px;
    font-size: 14px;
    height: 32px;
    line-height: 32px;
    padding: 0 12px;
}
.andes-button--medium .andes-button__text + svg,
.andes-button--medium svg + .andes-button__text {
    margin-left: 8px;
}
.andes-button--small {
    -webkit-border-radius: 4px;
    border-radius: 4px;
    font-size: 12px;
    height: 24px;
    line-height: 24px;
    padding: 0 8px;
}
.andes-button--small svg {
    display: none;
}
.andes-button--small .andes-button__text {
    margin: 0;
}
.andes-button--loud {
    -webkit-box-shadow: 0 0 0 0 #fff;
    box-shadow: 0 0 0 0 #fff;
    cursor: pointer;
    -webkit-transition: background-color 0.2s ease-out, -webkit-box-shadow 0.25s ease-out;
    transition: background-color 0.2s ease-out, -webkit-box-shadow 0.25s ease-out;
    transition: box-shadow 0.25s ease-out, background-color 0.2s ease-out;
    transition: box-shadow 0.25s ease-out, background-color 0.2s ease-out, -webkit-box-shadow 0.25s ease-out;
}
.andes-button--loud,
.andes-button--loud:focus,
.andes-button--loud:link,
.andes-button--loud:visited {
    background-color: #009ee3;
    border-color: transparent;
    color: #fff;
}
.andes-button--loud path,
.andes-button--loud:focus path,
.andes-button--loud:link path,
.andes-button--loud:visited path {
    stroke: #fff !important;
}
.andes-button--loud:hover {
    background-color: #007eb5;
    border-color: transparent;
    color: #fff;
    -webkit-transition: background-color 0.2s ease-in;
    transition: background-color 0.2s ease-in;
}
.andes-button--loud:hover path {
    stroke: #fff !important;
}
.andes-button--loud:active {
    background-color: #005e88;
    border-color: transparent;
    color: #fff;
}
.andes-button--loud:active path {
    stroke: #fff !important;
}
.andes-button--loud:disabled,
.andes-button--loud[disabled] {
    background-clip: padding-box;
    background-color: rgba(0, 0, 0, 0.1);
    border-color: transparent;
    color: rgba(0, 0, 0, 0.25);
    cursor: default;
}
.andes-button--loud:disabled path,
.andes-button--loud[disabled] path {
    stroke: rgba(0, 0, 0, 0.25) !important;
}
.andes-button--loud:focus {
    -webkit-box-shadow: 0 0 0 0.1875em rgba(71, 154, 209, 0.3);
    box-shadow: 0 0 0 0.1875em rgba(71, 154, 209, 0.3);
    outline: 0;
    -webkit-transition: -webkit-box-shadow 0.25s ease-in;
    transition: -webkit-box-shadow 0.25s ease-in;
    transition: box-shadow 0.25s ease-in;
    transition: box-shadow 0.25s ease-in, -webkit-box-shadow 0.25s ease-in;
}
.andes-button--quiet {
    -webkit-box-shadow: 0 0 0 0 #fff;
    box-shadow: 0 0 0 0 #fff;
    cursor: pointer;
    -webkit-transition: background-color 0.2s ease-out, -webkit-box-shadow 0.25s ease-out;
    transition: background-color 0.2s ease-out, -webkit-box-shadow 0.25s ease-out;
    transition: box-shadow 0.25s ease-out, background-color 0.2s ease-out;
    transition: box-shadow 0.25s ease-out, background-color 0.2s ease-out, -webkit-box-shadow 0.25s ease-out;
}
.andes-button--quiet,
.andes-button--quiet:focus,
.andes-button--quiet:link,
.andes-button--quiet:visited {
    background-color: rgba(71, 154, 209, 0.15);
    border-color: transparent;
    color: #009ee3;
}
.andes-button--quiet path,
.andes-button--quiet:focus path,
.andes-button--quiet:link path,
.andes-button--quiet:visited path {
    stroke: #009ee3 !important;
}
.andes-button--quiet:hover {
    background-color: rgba(71, 154, 209, 0.2);
    border-color: transparent;
    color: #009ee3;
    -webkit-transition: background-color 0.2s ease-in;
    transition: background-color 0.2s ease-in;
}
.andes-button--quiet:hover path {
    stroke: #009ee3 !important;
}
.andes-button--quiet:active {
    background-color: rgba(71, 154, 209, 0.3);
    border-color: transparent;
    color: #009ee3;
}
.andes-button--quiet:active path {
    stroke: #009ee3 !important;
}
.andes-button--quiet:disabled,
.andes-button--quiet[disabled] {
    background-clip: padding-box;
    background-color: rgba(0, 0, 0, 0.1);
    border-color: transparent;
    color: rgba(0, 0, 0, 0.25);
    cursor: default;
}
.andes-button--quiet:disabled path,
.andes-button--quiet[disabled] path {
    stroke: rgba(0, 0, 0, 0.25) !important;
}
.andes-button--quiet:focus {
    -webkit-box-shadow: 0 0 0 0.1875em rgba(71, 154, 209, 0.3);
    box-shadow: 0 0 0 0.1875em rgba(71, 154, 209, 0.3);
    outline: 0;
    -webkit-transition: -webkit-box-shadow 0.25s ease-in;
    transition: -webkit-box-shadow 0.25s ease-in;
    transition: box-shadow 0.25s ease-in;
    transition: box-shadow 0.25s ease-in, -webkit-box-shadow 0.25s ease-in;
}
.andes-button--transparent {
    -webkit-box-shadow: 0 0 0 0 #fff;
    box-shadow: 0 0 0 0 #fff;
    cursor: pointer;
    -webkit-transition: background-color 0.2s ease-out, -webkit-box-shadow 0.25s ease-out;
    transition: background-color 0.2s ease-out, -webkit-box-shadow 0.25s ease-out;
    transition: box-shadow 0.25s ease-out, background-color 0.2s ease-out;
    transition: box-shadow 0.25s ease-out, background-color 0.2s ease-out, -webkit-box-shadow 0.25s ease-out;
}
.andes-button--transparent,
.andes-button--transparent:focus,
.andes-button--transparent:link,
.andes-button--transparent:visited {
    background-color: transparent;
    border-color: transparent;
    color: #009ee3;
}
.andes-button--transparent path,
.andes-button--transparent:focus path,
.andes-button--transparent:link path,
.andes-button--transparent:visited path {
    stroke: #009ee3 !important;
}
.andes-button--transparent:hover {
    background-color: rgba(71, 154, 209, 0.1);
    border-color: transparent;
    color: #009ee3;
    -webkit-transition: background-color 0.2s ease-in;
    transition: background-color 0.2s ease-in;
}
.andes-button--transparent:hover path {
    stroke: #009ee3 !important;
}
.andes-button--transparent:active {
    background-color: rgba(71, 154, 209, 0.2);
    border-color: transparent;
    color: #009ee3;
}
.andes-button--transparent:active path {
    stroke: #009ee3 !important;
}
.andes-button--transparent:disabled,
.andes-button--transparent[disabled] {
    background-clip: padding-box;
    background-color: transparent;
    border-color: transparent;
    color: rgba(0, 0, 0, 0.25);
    cursor: default;
}
.andes-button--transparent:disabled path,
.andes-button--transparent[disabled] path {
    stroke: rgba(0, 0, 0, 0.25) !important;
}
.andes-button--transparent:focus {
    -webkit-box-shadow: 0 0 0 0.1875em rgba(71, 154, 209, 0.3);
    box-shadow: 0 0 0 0.1875em rgba(71, 154, 209, 0.3);
    outline: 0;
    -webkit-transition: -webkit-box-shadow 0.25s ease-in;
    transition: -webkit-box-shadow 0.25s ease-in;
    transition: box-shadow 0.25s ease-in;
    transition: box-shadow 0.25s ease-in, -webkit-box-shadow 0.25s ease-in;
}
.andes-button--quiet.loading:active,
.andes-button--quiet.loading:disabled,
.andes-button--quiet.loading:hover {
    background-color: rgba(71, 154, 209, 0.15);
    border-color: transparent;
    color: #009ee3;
}
.andes-button--quiet.loading:active path,
.andes-button--quiet.loading:disabled path,
.andes-button--quiet.loading:hover path {
    stroke: #009ee3 !important;
}
.andes-button--quiet:after,
.andes-button--quiet:before {
    background-color: rgba(71, 154, 209, 0.2);
    border-color: transparent;
    -webkit-border-radius: 0.2222222222em;
    border-radius: 0.2222222222em;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    color: #009ee3;
    content: "";
    height: 100%;
    left: 0;
    margin: -0.0555555556em;
    padding: 0.0555555556em;
    position: absolute;
    top: 0;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
    width: 100%;
}
.andes-button--quiet:after path,
.andes-button--quiet:before path {
    stroke: #009ee3 !important;
}
.andes-button--loud.loading:active,
.andes-button--loud.loading:disabled,
.andes-button--loud.loading:hover {
    background-color: #009ee3;
    border-color: transparent;
    color: #fff;
}
.andes-button--loud.loading:active path,
.andes-button--loud.loading:disabled path,
.andes-button--loud.loading:hover path {
    stroke: #fff !important;
}
.andes-button--loud:after,
.andes-button--loud:before {
    background-color: #007eb5;
    border-color: transparent;
    -webkit-border-radius: 0.2222222222em;
    border-radius: 0.2222222222em;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    color: #fff;
    content: "";
    height: 100%;
    left: 0;
    margin: -0.0555555556em;
    padding: 0.0555555556em;
    position: absolute;
    top: 0;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
    width: 100%;
}
.andes-button--loud:after path,
.andes-button--loud:before path {
    stroke: #fff !important;
}
.andes-button--progress {
    border: 0;
    overflow: hidden;
    position: relative;
}
.andes-button--progress .andes-button__content {
    margin: auto;
    position: relative;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    z-index: 1;
}
.andes-button--progress .andes-button__content .andes-button--progress__content {
    position: absolute;
    -webkit-transform: translate3d(0, 32px, 0);
    transform: translate3d(0, 32px, 0);
    -webkit-transition: -webkit-transform 0.2s ease-in;
    transition: -webkit-transform 0.2s ease-in;
    transition: transform 0.2s ease-in;
    transition: transform 0.2s ease-in, -webkit-transform 0.2s ease-in;
}
.andes-button--progress .andes-button__content :not(.andes-button--progress__content),
.andes-button--progress.loading.andes-button--progress__label .andes-button__content .andes-button--progress__content {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transition: -webkit-transform 0.2s ease-in;
    transition: -webkit-transform 0.2s ease-in;
    transition: transform 0.2s ease-in;
    transition: transform 0.2s ease-in, -webkit-transform 0.2s ease-in;
}
.andes-button--progress.loading.andes-button--progress__label .andes-button__content .andes-button--progress__content {
    position: relative;
}
.andes-button--progress.loading.andes-button--progress__label
    .andes-button__content
    :not(.andes-button--progress__content) {
    position: absolute;
    -webkit-transform: translate3d(0, -32px, 0);
    transform: translate3d(0, -32px, 0);
    -webkit-transition: -webkit-transform 0.2s ease-in;
    transition: -webkit-transform 0.2s ease-in;
    transition: transform 0.2s ease-in;
    transition: transform 0.2s ease-in, -webkit-transform 0.2s ease-in;
    width: 100%;
}
.andes-button--progress.loading:after,
.andes-button--progress.loading:focus:after {
    -webkit-animation: andes-button-start-width-animation 60s cubic-bezier(0, 0.56, 0.76, 0.96);
    animation: andes-button-start-width-animation 60s cubic-bezier(0, 0.56, 0.76, 0.96);
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}
.andes-button--progress.finished:before,
.andes-button--progress.loading.finished,
.andes-button--progress.progress:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transition: opacity 0.5s ease-in, -webkit-transform 0.25s ease-in;
    transition: opacity 0.5s ease-in, -webkit-transform 0.25s ease-in;
    transition: transform 0.25s ease-in, opacity 0.5s ease-in;
    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--menu {
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    background-color: #fff;
    -webkit-border-radius: 6px;
    border-radius: 6px;
    -webkit-box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.1);
    font-size: 16px;
    list-style: none;
    padding: 8px 0;
    text-align: left;
    z-index: 1000;
}
.andes-button-dropdown--menu li {
    display: -webkit-flex;
    display: flex;
    padding: 1px 0;
}
.andes-button-dropdown--menu a,
.andes-button-dropdown--menu button {
    background-color: #fff;
    border: none;
    color: rgba(0, 0, 0, 0.9);
    cursor: pointer;
    display: block;
    font-family: Proxima Nova, -apple-system, Helvetica Neue, Helvetica, Roboto, Arial, sans-serif;
    font-size: 14px;
    font-weight: 300;
    padding: 6.5px 16px;
    text-align: start;
    text-decoration: none;
    width: 100%;
}
.andes-button-dropdown--menu .andes-button-dropdown--menu__item:hover {
    background: rgba(0, 0, 0, 0.04);
}
.andes-button-dropdown.andes-button--loud .andes-button-dropdown__svg-fill {
    fill: #fff;
}
.andes-button-dropdown.andes-button--quiet .andes-button-dropdown__svg-fill,
.andes-button-dropdown.andes-button--transparent .andes-button-dropdown__svg-fill {
    fill: #009ee3;
}
.andes-button-dropdown-container {
    display: inline-block;
    position: relative;
}
.andes-button-dropdown--menu-bottom,
.andes-button-dropdown--menu-top {
    margin: 0;
    width: auto;
}
.andes-button-split {
    display: inline-block;
    font-family: Proxima Nova, -apple-system, Helvetica Neue, Helvetica, Roboto, Arial, sans-serif;
    position: relative;
}
.andes-button-split--menu {
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    background-color: #fff;
    -webkit-border-radius: 6px;
    border-radius: 6px;
    -webkit-box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.1);
    font-size: 16px;
    list-style: none;
    padding: 8px 0;
    text-align: left;
}
.andes-button-split--menu li {
    display: -webkit-flex;
    display: flex;
    padding: 1px 0;
}
.andes-button-split--menu a,
.andes-button-split--menu button {
    background-color: #fff;
    border: none;
    color: rgba(0, 0, 0, 0.9);
    cursor: pointer;
    display: block;
    font-family: Proxima Nova, -apple-system, Helvetica Neue, Helvetica, Roboto, Arial, sans-serif;
    font-size: 14px;
    font-weight: 300;
    padding: 6.5px 1em;
    text-align: start;
    text-decoration: none;
    width: 100%;
}
.andes-button-split--menu a:hover,
.andes-button-split--menu button:hover {
    background-color: rgba(0, 0, 0, 0.04);
}
.andes-button-split .andes-button-split-text {
    -webkit-border-bottom-right-radius: 0;
    border-bottom-right-radius: 0;
    -webkit-border-top-right-radius: 0;
    border-top-right-radius: 0;
    display: inline;
    padding-left: 16px;
    padding-right: 16px;
}
.andes-button-split .andes-button-split-chevron {
    -webkit-border-bottom-left-radius: 0;
    border-bottom-left-radius: 0;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    -webkit-border-top-left-radius: 0;
    border-top-left-radius: 0;
    padding: 0 6px;
    vertical-align: bottom;
}
.andes-button-split.andes-button--loud .andes-button-split__svg-fill {
    fill: #fff;
}
.andes-button-split.andes-button--quiet .andes-button-split__svg-fill,
.andes-button-split.andes-button--transparent .andes-button-split__svg-fill {
    fill: #009ee3;
}
.andes-button-split .andes-button--loud .andes-button-split__svg-fill {
    fill: #fff;
}
.andes-button-split .andes-button--quiet .andes-button-split__svg-fill,
.andes-button-split .andes-button--transparent .andes-button-split__svg-fill {
    fill: #009ee3;
}
.andes-button-split--menu {
    margin: 0;
}
.andes-button-split--menu-bottom,
.andes-button-split--menu-top {
    width: auto;
}
.andes-button-split--menu-bottomRight,
.andes-button-split--menu-topRight {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
}
.andes-spinner__container--xxsmall-notlabel {
    height: 12px;
    width: 12px;
}
.andes-spinner__container--xxsmall .andes-spinner__label {
    font-size: 12px;
    margin-top: 20px;
}
.andes-spinner__icon--xxsmall {
    height: 12px;
    width: 12px;
}
.andes-spinner__container--xsmall-notlabel {
    height: 18px;
    width: 18px;
}
.andes-spinner__container--xsmall .andes-spinner__label {
    font-size: 14px;
    margin-top: 30px;
}
.andes-spinner__icon--xsmall {
    height: 18px;
    width: 18px;
}
.andes-spinner__container--small-notlabel {
    height: 32px;
    width: 32px;
}
.andes-spinner__container--small .andes-spinner__label {
    font-size: 14px;
    margin-top: 48px;
}
.andes-spinner__icon--small {
    height: 32px;
    width: 32px;
}
.andes-spinner__container--medium-notlabel {
    height: 48px;
    width: 48px;
}
.andes-spinner__container--medium .andes-spinner__label {
    margin-top: 66px;
}
.andes-spinner__icon--medium {
    height: 48px;
    width: 48px;
}
.andes-spinner--inline {
    height: 100%;
    position: relative;
}
.andes-spinner--inline .andes-spinner__container {
    position: absolute;
}
.andes-spinner--inline .andes-spinner__icon {
    margin: 0;
}
.andes-spinner--inline .andes-spinner__mask {
    display: none;
}
.andes-spinner--fullscreen {
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1022;
}
.andes-spinner--fullscreen .andes-spinner__container {
    left: 50%;
    position: absolute;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 1023;
}
.andes-form-control--search-box {
    background-color: rgba(0, 0, 0, 0.04);
    -webkit-border-radius: 16px;
    border-radius: 16px;
    color: rgba(0, 0, 0, 0.55);
    display: -webkit-flex;
    display: flex;
    height: 18px;
    padding: 7px 8px;
}
.andes-form-control--search-box .andes-form-control__field {
    color: rgba(0, 0, 0, 0.55);
    font-size: 14px;
    line-height: 18px;
    margin: 0;
}
.andes-form-control--search-box .andes-form-control__field::-webkit-input-placeholder {
    opacity: 1;
}
.andes-form-control--search-box .andes-form-control__field::placeholder {
    color: rgba(0, 0, 0, 0.25);
    font-size: 14px;
    opacity: 1;
}
.andes-form-control--search-box .andes-form-control__field::-webkit-input-placeholder {
    color: rgba(0, 0, 0, 0.25);
    font-size: 14px;
}
.andes-form-control--search-box .andes-form-control__field::-moz-placeholder {
    color: rgba(0, 0, 0, 0.25);
    font-size: 14px;
    opacity: 1;
}
.andes-form-control--search-box .andes-form-control__field:-moz-placeholder {
    opacity: 1;
}
.andes-form-control--search-box .andes-form-control__field:-ms-input-placeholder {
    color: rgba(0, 0, 0, 0.25);
    font-size: 14px;
}
.andes-form-control--search-box .andes-form-control__field::-ms-input-placeholder {
    color: rgba(0, 0, 0, 0.25);
    font-size: 14px;
}
.andes-form-control--search-box .andes-form-control__field:-moz-placeholder {
    color: rgba(0, 0, 0, 0.25);
    font-size: 14px;
}
.andes-form-control--search-box--focused,
.andes-form-control--search-box:focus {
    -webkit-box-shadow: 0 0 0 3px rgba(71, 154, 209, 0.4);
    box-shadow: 0 0 0 3px rgba(71, 154, 209, 0.4);
}
.andes-form-control--search-box .andes-form-control__close-icon svg path,
.andes-form-control--search-box .andes-form-control__search-icon svg path {
    fill: rgba(0, 0, 0, 0.55);
}
.andes-form-control--search-box .andes-form-control__search-icon {
    margin-right: 4px;
    margin-top: 2px;
}
.andes-form-control--search-box .andes-form-control__close-icon {
    background-color: transparent;
    border: none;
    cursor: pointer;
    margin-left: 4px;
}
.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-dropdown {
    -webkit-font-smoothing: antialiased;
    font-family: Proxima Nova, -apple-system, Helvetica Neue, Helvetica, Roboto, Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    position: relative;
}
.andes-dropdown.andes-form-control--disabled path,
.andes-dropdown.andes-form-control--disabled svg,
.andes-dropdown.andes-form-control--disabled:hover path,
.andes-dropdown.andes-form-control--disabled:hover svg {
    fill: rgba(0, 0, 0, 0.25);
}
.andes-dropdown.andes-form-control--disabled .andes-dropdown__trigger,
.andes-dropdown.andes-form-control--disabled:hover .andes-dropdown__trigger {
    color: rgba(0, 0, 0, 0.25);
    cursor: default;
}
.andes-dropdown.andes-form-control--disabled .andes-form-control__message,
.andes-dropdown.andes-form-control--disabled:hover .andes-form-control__message {
    color: rgba(0, 0, 0, 0.25);
}
.andes-dropdown__menu .andes-list__item {
    outline: none;
}
.andes-dropdown__menu .andes-list__item:focus,
.andes-dropdown__menu .andes-list__item:focus-visible {
    box-shadow: inset 0 0 0 2px #fff, inset 0 0 0 3px #007eb5, inset 0 0 0 5px rgba(71, 154, 209, 0.3);
    -moz-box-shadow: inset 0 0 0 2px #fff, inset 0 0 0 3px #007eb5, inset 0 0 0 5px rgba(71, 154, 209, 0.3);
    -webkit-box-shadow: inset 0 0 0 2px #fff, inset 0 0 0 3px #007eb5, inset 0 0 0 5px rgba(71, 154, 209, 0.3);
    outline: none;
}
.andes-dropdown__menu .andes-list__item:focus:not(:focus-visible) {
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    outline: none;
}
.andes-dropdown .andes-form-control__placeholder,
.andes-dropdown__display-values {
    line-height: 1.25;
}
.andes-dropdown__chevron {
    display: -webkit-flex;
    display: flex;
}
.andes-dropdown__chevron svg {
    -webkit-transition: -webkit-transform 0.2s;
    transition: -webkit-transform 0.2s;
    transition: transform 0.2s;
    transition: transform 0.2s, -webkit-transform 0.2s;
}
.andes-dropdown__chevron path,
.andes-dropdown__chevron svg {
    fill: #009ee3;
}
.andes-dropdown__field {
    position: relative;
}
.andes-dropdown .andes-dropdown__trigger {
    -webkit-align-items: center;
    align-items: center;
    background: none;
    border: 0;
    -webkit-border-radius: 0.375em;
    border-radius: 0.375em;
    color: rgba(0, 0, 0, 0.9);
    cursor: pointer;
    display: -webkit-flex;
    display: flex;
    font: inherit;
    font-size: 18px;
    margin: 0;
    outline: 0;
    padding: 4px 6px;
    -webkit-transition: color 0.18s ease-out;
    transition: color 0.18s ease-out;
}
.andes-dropdown .andes-dropdown__trigger:focus,
.andes-dropdown .andes-dropdown__trigger:focus-visible {
    box-shadow: 0 0 0 2px #fff, 0 0 0 3px #007eb5, 0 0 0 5px rgba(71, 154, 209, 0.3);
    -moz-box-shadow: 0 0 0 2px #fff, 0 0 0 3px #007eb5, 0 0 0 5px rgba(71, 154, 209, 0.3);
    -webkit-box-shadow: 0 0 0 2px #fff, 0 0 0 3px #007eb5, 0 0 0 5px rgba(71, 154, 209, 0.3);
    outline: none;
}
.andes-dropdown .andes-dropdown__trigger:focus:not(:focus-visible) {
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    outline: none;
}
.andes-dropdown .andes-dropdown__trigger::-moz-focus-inner {
    border: 0;
}
.andes-dropdown .andes-dropdown__trigger:hover {
    color: #009ee3;
}
.andes-dropdown .andes-dropdown__trigger .andes-dropdown__standalone-arrow {
    margin: 4px 0 0 2px;
    -webkit-transition: -webkit-transform 0.2s;
    transition: -webkit-transform 0.2s;
    transition: transform 0.2s;
    transition: transform 0.2s, -webkit-transform 0.2s;
}
.andes-dropdown .andes-dropdown__trigger span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
}
.andes-dropdown__arrow-container {
    position: absolute;
    right: -4px;
    top: -1px;
}
.andes-dropdown .andes-form-control__field:focus ~ .andes-dropdown__arrow-container path,
.andes-dropdown .andes-form-control__field:focus ~ .andes-dropdown__arrow-container svg {
    fill: #009ee3;
}
.andes-dropdown .andes-dropdown__menu {
    -webkit-border-radius: 0.375em;
    border-radius: 0.375em;
}
.andes-dropdown .andes-dropdown__menu li:first-child {
    -webkit-border-top-left-radius: 0.375em;
    border-top-left-radius: 0.375em;
    -webkit-border-top-right-radius: 0.375em;
    border-top-right-radius: 0.375em;
}
.andes-dropdown .andes-dropdown__menu li:last-child {
    -webkit-border-bottom-left-radius: 0.375em;
    border-bottom-left-radius: 0.375em;
    -webkit-border-bottom-right-radius: 0.375em;
    border-bottom-right-radius: 0.375em;
}
.andes-dropdown__no-results {
    color: rgba(0, 0, 0, 0.55);
    font-size: 14px;
    height: 18px;
    padding: 18px 16px;
}
.andes-dropdown__search-box {
    padding: 16px 16px 4px;
}
.andes-dropdown .andes-floating-menu {
    opacity: 0;
}
.andes-dropdown .andes-floating-menu--show {
    opacity: 1;
}
.andes-dropdown--open .andes-dropdown__chevron svg,
.andes-dropdown--open .andes-dropdown__standalone-arrow {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}
.andes-dropdown.andes-dropdown--form {
    padding-top: 15px;
}
.andes-dropdown.andes-dropdown--form.andes-form-control--error .andes-dropdown__trigger {
    -webkit-box-shadow: 0 0 0 1px #f23d4f;
    box-shadow: 0 0 0 1px #f23d4f;
}
.andes-dropdown.andes-dropdown--form.andes-form-control--error .andes-dropdown__trigger:focus {
    -webkit-box-shadow: 0 0 0 2px #f23d4f;
    box-shadow: 0 0 0 2px #f23d4f;
}
.andes-dropdown.andes-dropdown--form.andes-form-control--error .andes-dropdown__chevron path,
.andes-dropdown.andes-dropdown--form.andes-form-control--error .andes-dropdown__chevron svg {
    fill: #f23d4f;
}
.andes-dropdown.andes-dropdown--form.andes-form-control--error .andes-form-control__label,
.andes-dropdown.andes-dropdown--form.andes-form-control--error .andes-form-control__message {
    color: #f23d4f;
}
.andes-dropdown.andes-dropdown--form .andes-form-control--disabled:hover .andes-dropdown__trigger,
.andes-dropdown.andes-dropdown--form.andes-form-control--disabled .andes-dropdown__trigger {
    background-color: rgba(0, 0, 0, 0.02);
    border: 1px dashed rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: none;
    box-shadow: none;
    color: rgba(0, 0, 0, 0.25);
    cursor: default;
    padding: 0.75em;
}
.andes-dropdown.andes-dropdown--form .andes-form-control--disabled:hover .andes-dropdown__trigger:focus,
.andes-dropdown.andes-dropdown--form.andes-form-control--disabled .andes-dropdown__trigger:focus {
    border: 1px dashed rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: none;
    box-shadow: none;
}
.andes-dropdown.andes-dropdown--form .andes-form-control--disabled:hover .andes-form-control__label,
.andes-dropdown.andes-dropdown--form.andes-form-control--disabled .andes-form-control__label {
    color: rgba(0, 0, 0, 0.25);
}
.andes-dropdown.andes-dropdown--form .andes-form-control__label {
    color: rgba(0, 0, 0, 0.9);
    font-size: 14px;
    margin-left: 4px;
    position: absolute;
    top: 0;
}
.andes-dropdown.andes-dropdown--form .andes-form-control__message {
    -webkit-align-items: center;
    align-items: center;
    display: -webkit-flex;
    display: flex;
    font-size: 13px;
    line-height: 0.7692307692em;
    margin-left: 4px;
    margin-top: 0;
    min-height: unset;
}
.andes-dropdown.andes-dropdown--form .andes-form-control__message .andes-dropdown__error-icon {
    background-color: #f23d4f;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    height: 12px;
    margin-right: 6px;
    width: 12px;
}
.andes-dropdown.andes-dropdown--form .andes-form-control__placeholder {
    color: rgba(0, 0, 0, 0.25);
}
.andes-dropdown.andes-dropdown--form .andes-dropdown__trigger {
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.25);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.25);
    color: rgba(0, 0, 0, 0.9);
    display: -webkit-flex;
    display: flex;
    font-size: 16px;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    line-height: 1.375em;
    margin: 0.375em 0 0.5em;
    min-height: 48px;
    padding: 0.8125em 0.75em;
    position: relative;
    text-align: left;
    width: 100%;
}
.andes-dropdown.andes-dropdown--form .andes-dropdown__trigger:focus {
    -webkit-box-shadow: inset 0 0 0 2px #009ee3;
    box-shadow: inset 0 0 0 2px #009ee3;
}
.andes-dropdown.andes-dropdown--form .andes-dropdown__trigger span {
    overflow-x: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
}
.andes-dropdown.andes-dropdown--form.andes-dropdown--open .andes-dropdown__trigger {
    -webkit-box-shadow: inset 0 0 0 2px #009ee3;
    box-shadow: inset 0 0 0 2px #009ee3;
}
.andes-dropdown.andes-dropdown--form.andes-dropdown--open .andes-dropdown__arrow {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}
.andes-dropdown.andes-dropdown--form.andes-dropdown--open.andes-form-control--error .andes-dropdown__trigger {
    -webkit-box-shadow: 0 0 0 2px #f23d4f;
    box-shadow: 0 0 0 2px #f23d4f;
}
.andes-dropdown.andes-dropdown--form .andes-dropdown-item-hover {
    background-color: #ededed;
}
.andes-dropdown.andes-dropdown--form .andes-form-control__field {
    margin: 8px 0 6px;
}
.andes-dropdown.andes-dropdown--form .andes-form-control__field option {
    padding: 0;
}
.andes-dropdown.andes-dropdown--form .andes-form-control__field::-moz-focus-inner {
    border: 0;
    padding: 0;
}
.andes-dropdown.andes-dropdown--form .andes-form-control__field:focus {
    outline: 0;
}
.andes-dropdown.andes-dropdown--form .andes-form-control__field:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 rgba(0, 0, 0, 0.9);
}
.andes-dropdown.andes-dropdown--form .andes-form-control--search-box .andes-form-control__field {
    margin: 0;
}
.andes-dropdown.andes-dropdown--compact .andes-dropdown__trigger {
    -webkit-border-radius: 0.2857142857em;
    border-radius: 0.2857142857em;
    font-size: 14px;
    max-width: 100%;
    padding: 6px;
}
.andes-dropdown.andes-dropdown--compact .andes-dropdown__chevron {
    margin-left: 0.2857142857em;
    top: 0.0714285714em;
}
.andes-dropdown.andes-dropdown--compact .andes-list__item + .andes-list__item {
    border: 0;
}
.andes-dropdown--form-native.andes-form-control--error
    .andes-form-control__field:focus
    ~ .andes-dropdown__arrow-container
    path,
.andes-dropdown--form-native.andes-form-control--error
    .andes-form-control__field:focus
    ~ .andes-dropdown__arrow-container
    svg,
.andes-dropdown--form-native.andes-form-control--error
    .andes-form-control__field
    ~ .andes-dropdown__arrow-container
    path,
.andes-dropdown--form-native.andes-form-control--error
    .andes-form-control__field
    ~ .andes-dropdown__arrow-container
    svg {
    fill: #f23d4f;
}
.andes-dropdown--form-native.andes-form-control--error .andes-form-control__field + .andes-form-control__border:after,
.andes-dropdown--form-native.andes-form-control--error
    .andes-form-control__field:focus
    + .andes-form-control__border:after {
    background-color: #f23d4f !important;
}
.andes-dropdown--form-native.andes-form-control {
    padding-top: 0;
}
.andes-dropdown--form-native .andes-form-control__label {
    font-size: 14px;
}
.andes-dropdown--form-native .andes-form-control__field {
    cursor: pointer;
    line-height: 1;
    margin-bottom: 6px;
    margin-top: 8px;
}
.andes-dropdown--form-native .andes-form-control__field option {
    padding: 0;
}
.andes-dropdown--form-native .andes-form-control__field::-moz-focus-inner {
    border: 0;
    padding: 0;
}
.andes-dropdown--form-native .andes-form-control__field:focus {
    outline: 0;
}
.andes-dropdown--form-native .andes-form-control__field:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 rgba(0, 0, 0, 0.55);
}
.andes-dropdown--form-native .andes-form-control__field::-ms-expand {
    display: none;
}
.andes-dropdown--form-native .andes-dropdown__arrow-container {
    pointer-events: none;
}
@supports ((-webkit-appearance: none) or (-moz-appearance: none) or (appearance: none)) {
    .andes-dropdown--form-native .andes-form-control__field {
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        background: none;
    }
}
.andes-visually-hidden {
    height: 1px;
    margin: 0 -1px -1px 0;
    width: 1px;
}
.andes-list {
    -webkit-font-smoothing: antialiased;
    background-color: #fff;
    font-family: Proxima Nova, -apple-system, Helvetica Neue, Helvetica, Roboto, Arial, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
    margin: 0;
    padding: 0;
}
.andes-list-with-dividers .andes-list__item + .andes-list__item {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.andes-list-asset {
    margin-top: 0.5em;
}
.andes-list__item {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    padding: 0 16px;
}
.andes-list__item:focus,
.andes-list__item:focus-visible {
    box-shadow: 0 0 0 2px #fff, 0 0 0 3px #007eb5, 0 0 0 5px rgba(71, 154, 209, 0.3);
    -moz-box-shadow: 0 0 0 2px #fff, 0 0 0 3px #007eb5, 0 0 0 5px rgba(71, 154, 209, 0.3);
    -webkit-box-shadow: 0 0 0 2px #fff, 0 0 0 3px #007eb5, 0 0 0 5px rgba(71, 154, 209, 0.3);
    outline: none;
}
.andes-list__item:focus:not(:focus-visible) {
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    outline: none;
}
.andes-list__item-anchor {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    text-decoration: none;
    width: 100%;
}
.andes-list__item-with-secondary {
    -webkit-align-self: center;
    align-self: center;
}
.andes-list__item-first-column {
    -webkit-align-items: center;
    align-items: center;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-grow: 4;
    flex-grow: 4;
}
.andes-list__item-second-column {
    display: -webkit-inline-flex;
    display: inline-flex;
}
.andes-list__item-second-column .andes-list__item-tertiary {
    padding-right: 16px;
}
.andes-list__item-second-column .andes-list__item-chevron--centered {
    -webkit-align-self: center;
    align-self: center;
}
.andes-list__item-second-column .andes-list__item-chevron--top {
    -webkit-align-self: flex-start;
    align-self: flex-start;
}
.andes-list__item-primary {
    color: rgba(0, 0, 0, 0.9);
    display: block;
}
.andes-list__item-secondary {
    color: rgba(0, 0, 0, 0.55);
    display: block;
    font-size: 16px;
    line-height: 1;
}
.andes-list__item-tertiary {
    -webkit-align-self: center;
    align-self: center;
    color: rgba(0, 0, 0, 0.9);
}
.andes-list__item-tertiary .andes-checkbox__label {
    margin-left: 0;
}
.andes-list__item-image {
    -webkit-align-self: flex-start;
    align-self: flex-start;
    border: 1px solid rgba(0, 0, 0, 0.1);
    -webkit-border-radius: 50%;
    border-radius: 50%;
    display: block;
}
.andes-list__item--size-small {
    height: 40px;
}
.andes-list__item--size-small.andes-list__item-with-image {
    height: 56px;
}
.andes-list__item--size-small .andes-list__item-first-column {
    padding: 15px 0;
}
.andes-list__item--size-small .andes-list__item-first-column .andes-list__item-asset > svg {
    margin-right: 8px;
    margin-top: 0.25em;
}
.andes-list__item--size-small .andes-list__item-primary,
.andes-list__item--size-small .andes-list__item-tertiary {
    font-size: 14px;
}
.andes-list__item--size-small .andes-list__item-image {
    height: 36px;
    margin-right: 12px;
    min-height: 36px;
    min-width: 36px;
    width: 36px;
}
.andes-list__item--size-medium {
    height: 48px;
}
.andes-list__item--size-medium.andes-list__item-with-image,
.andes-list__item--size-medium.andes-list__item-with-secondary {
    height: 68px;
}
.andes-list__item--size-medium.andes-list__item-with-image .andes-list__item-tertiary--top,
.andes-list__item--size-medium.andes-list__item-with-secondary .andes-list__item-tertiary--top {
    -webkit-align-self: start;
    align-self: start;
    margin-top: 0.87em;
}
.andes-list__item--size-medium.andes-list__item-with-secondary
    .andes-list__item-first-column
    .andes-list__item-asset
    > svg {
    padding-bottom: 1.4em;
}
.andes-list__item--size-medium .andes-list__item-first-column {
    padding: 18px 0;
}
.andes-list__item--size-medium .andes-list__item-first-column .andes-list__item-asset > svg {
    margin-right: 12px;
    margin-top: 0.1em;
}
.andes-list__item--size-medium .andes-list__item-primary,
.andes-list__item--size-medium .andes-list__item-tertiary {
    font-size: 16px;
}
.andes-list__item--size-medium .andes-list__item-secondary {
    font-size: 14px;
    margin-top: 12px;
}
.andes-list__item--size-medium .andes-list__item-chevron--top {
    margin-top: 0.6em;
}
.andes-list__item--size-medium .andes-list__item-image {
    height: 38px;
    margin-right: 16px;
    min-height: 38px;
    min-width: 38px;
    width: 38px;
}
.andes-list__item--size-large {
    height: 68px;
}
.andes-list__item--size-large.andes-list__item-with-image,
.andes-list__item--size-large.andes-list__item-with-secondary {
    height: 96px;
}
.andes-list__item--size-large.andes-list__item-with-image .andes-list__item-tertiary--top,
.andes-list__item--size-large.andes-list__item-with-secondary .andes-list__item-tertiary--top {
    -webkit-align-self: start;
    align-self: start;
    margin-top: 1.28em;
}
.andes-list__item--size-large.andes-list__item-with-secondary
    .andes-list__item-first-column
    .andes-list__item-asset
    > svg {
    padding-bottom: 1.7em;
}
.andes-list__item--size-large .andes-list__item-first-column {
    padding: 28px 0;
}
.andes-list__item--size-large .andes-list__item-first-column .andes-list__item-asset > svg {
    margin-right: 16px;
    margin-top: 0.1em;
}
.andes-list__item--size-large .andes-list__item-secondary {
    margin-top: 16px;
}
.andes-list__item--size-large .andes-list__item-chevron--top {
    margin-top: 1.2em;
}
.andes-list__item--size-large .andes-list__item-image {
    height: 54px;
    margin-right: 16px;
    min-height: 54px;
    min-width: 54px;
    width: 54px;
}
.andes-list__item--padding-0 {
    padding: 0;
}
.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__group {
    list-style: none;
}
.andes-list__group--header {
    -webkit-align-items: flex-end;
    align-items: flex-end;
    color: rgba(0, 0, 0, 0.55);
    cursor: default;
    display: -webkit-flex;
    display: flex;
    font-size: 12px;
    font-weight: 600;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    padding: 0 16px;
}
.andes-list__group--sublist {
    padding: 0;
}
.andes-list__group::marker {
    content: "";
}
.andes-list__group + .andes-list__group {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.andes-list__group--size-small .andes-list__group--header {
    height: 30px;
    padding-bottom: 10px;
}
.andes-list__group--size-medium .andes-list__group--header {
    height: 36px;
    padding-bottom: 12px;
}
.andes-list__group--size-large .andes-list__group--header {
    font-size: 14px;
    height: 52px;
    padding-bottom: 16px;
}
.andes-list__group--padding-0 .andes-list__group--header {
    padding-left: 0;
    padding-right: 0;
}
.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-medium.andes-list__item-with-image
    .andes-list__item-first-column
    .andes-list__item-asset
    > svg,
.andes-list--dropdown
    .andes-list__item--size-medium.andes-list__item-with-secondary
    .andes-list__item-first-column
    .andes-list__item-asset
    > svg {
    padding-bottom: 0;
}
.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--size-large.andes-list__item-with-image
    .andes-list__item-first-column
    .andes-list__item-asset
    > svg,
.andes-list--dropdown
    .andes-list__item--size-large.andes-list__item-with-secondary
    .andes-list__item-first-column
    .andes-list__item-asset
    > svg {
    padding-bottom: 0;
}
.andes-list--selectable .andes-list__item {
    cursor: pointer;
}
.andes-list--selectable .andes-list__item:focus,
.andes-list--selectable .andes-list__item:hover {
    background-color: rgba(0, 0, 0, 0.04);
    -webkit-transition: background-color 0.1s ease-out;
    transition: background-color 0.1s ease-out;
}
.andes-list--selectable .andes-list__item--disabled {
    cursor: default;
}
.andes-list--selectable .andes-list__item--disabled:focus,
.andes-list--selectable .andes-list__item--disabled:hover {
    background-color: #fff;
}
.andes-list__item--disabled:hover {
    background: transparent;
}
.andes-list__item--disabled .andes-list__item-primary,
.andes-list__item--disabled .andes-list__item-secondary,
.andes-list__item--disabled .andes-list__item-tertiary {
    color: rgba(0, 0, 0, 0.25);
}
.andes-list__item--disabled .andes-list__item-first-column .andes-list__item-asset > svg path {
    fill: rgba(0, 0, 0, 0.25);
}
.andes-list__item--disabled.andes-list__item--selected:before {
    border-left: 0.1111111111em solid rgba(0, 0, 0, 0.25);
}
.andes-list__item--disabled.andes-list__item--selected .andes-list__item-primary {
    color: rgba(0, 0, 0, 0.25);
}
.andes-list__item--disabled.andes-list__item--selected
    .andes-list__item-first-column
    .andes-list__item-asset
    > svg
    path {
    fill: rgba(0, 0, 0, 0.25);
}
.andes-list__item--disabled.andes-list__item--selected.andes-list__item-with-selection-component
    .andes-list__item-primary {
    color: rgba(0, 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: 0.1111111111em solid #009ee3;
    -webkit-border-radius: 1.5px;
    border-radius: 1.5px;
    bottom: 2px;
    content: "";
    top: 2px;
}
.andes-list__item--selected-padding-0:before {
    left: 0;
}
.andes-list__item--selected .andes-list__item-primary {
    color: #009ee3;
    font-weight: 600;
}
.andes-list__item--selected .andes-list__item-first-column .andes-list__item-asset > svg path {
    fill: #009ee3;
}
.andes-list__item--selected.andes-list__item-with-selection-component:before {
    border-left: 0;
}
.andes-list__item--selected.andes-list__item-with-selection-component .andes-list__item-primary {
    color: rgba(0, 0, 0, 0.9);
    font-weight: 400;
}
.andes-tooltip {
    background-color: #fff;
    -webkit-border-radius: 0.375em;
    border-radius: 0.375em;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    color: rgba(0, 0, 0, 0.9);
    font-family: Proxima Nova, -apple-system, Helvetica Neue, Helvetica, Roboto, Arial, sans-serif;
    font-size: 16px;
    opacity: 1;
    padding: 1em;
    pointer-events: auto !important;
    text-align: left;
    width: 21.25em;
    z-index: 1022;
}
.andes-tooltip,
.andes-tooltip.andes-card--flat {
    -webkit-box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.1), 0 0 6px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.1), 0 0 6px 0 rgba(0, 0, 0, 0.1);
}
.andes-tooltip .andes-card__content {
    padding: 0;
}
.andes-tooltip .andes-tooltip-data__arrow,
.andes-tooltip .andes-tooltip-data__arrow:before {
    background-color: #fff;
    height: 8px;
    position: absolute;
    width: 8px;
}
.andes-tooltip .andes-tooltip-data__arrow {
    visibility: hidden;
}
.andes-tooltip .andes-tooltip-data__arrow--top,
.andes-tooltip .andes-tooltip-data__arrow--top-end,
.andes-tooltip .andes-tooltip-data__arrow--top-start {
    bottom: -3px;
}
.andes-tooltip .andes-tooltip-data__arrow--bottom,
.andes-tooltip .andes-tooltip-data__arrow--bottom-end,
.andes-tooltip .andes-tooltip-data__arrow--bottom-start {
    top: -4px;
}
.andes-tooltip .andes-tooltip-data__arrow--left,
.andes-tooltip .andes-tooltip-data__arrow--left-end,
.andes-tooltip .andes-tooltip-data__arrow--left-start {
    right: -3px;
}
.andes-tooltip .andes-tooltip-data__arrow--right,
.andes-tooltip .andes-tooltip-data__arrow--right-end,
.andes-tooltip .andes-tooltip-data__arrow--right-start {
    left: -4px;
}
.andes-tooltip .andes-tooltip-data__arrow:before {
    border: 1px solid #fff;
    content: "";
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    visibility: visible;
}
.andes-tooltip-hidden {
    display: none;
}
.andes-tooltip--dark {
    color: #fff;
}
.andes-tooltip--dark.andes-card {
    background-color: #393939;
}
.andes-tooltip--dark .andes-tooltip-data__arrow:before {
    background-color: #393939;
    border: 1px solid #393939;
}
.andes-tooltip--dark .andes-tooltip-button-close:after,
.andes-tooltip--dark .andes-tooltip-button-close:before {
    background-color: #fff;
}
.andes-tooltip--dark .andes-button--transparent .andes-button__content,
.andes-tooltip--highlight {
    color: #fff;
}
.andes-tooltip--highlight.andes-card {
    background-color: #009ee3;
}
.andes-tooltip--highlight .andes-tooltip-data__arrow:before {
    background-color: #009ee3;
    border: 1px solid #009ee3;
}
.andes-tooltip--highlight .andes-tooltip-button-close:after,
.andes-tooltip--highlight .andes-tooltip-button-close:before {
    background-color: #fff;
    opacity: 0.6;
}
.andes-tooltip--highlight .andes-button--transparent .andes-button__content {
    color: #fff;
}
.andes-tooltip__content {
    margin-right: 1em;
}
.andes-tooltip__text,
.andes-tooltip__title {
    font-weight: 400;
    margin: 0;
}
.andes-tooltip__text {
    font-size: 14px;
}
.andes-tooltip__title {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 4px;
    padding: 0;
}
.andes-tooltip__image {
    margin-right: 1em;
}
.andes-tooltip__actions {
    margin-top: 1em;
}
.andes-tooltip__actions a,
.andes-tooltip__actions button {
    margin-left: 4px;
}
.andes-tooltip__actions a:first-child,
.andes-tooltip__actions button:first-child {
    background-color: #007eb5;
    margin-left: 0;
}
.andes-tooltip-data-image {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
}
.andes-tooltip-button-close {
    background-color: transparent;
    border: none;
    cursor: pointer;
    height: 1em;
    left: auto;
    padding: 0;
    position: relative;
    position: absolute;
    right: 0.625em;
    top: 0.625em;
    width: 1em;
}
.andes-tooltip-button-close:after,
.andes-tooltip-button-close:before {
    background-color: rgba(0, 0, 0, 0.55);
    content: "";
    cursor: pointer;
    height: 1em;
    left: 0.5em;
    position: absolute;
    top: 0;
    width: 0.125em;
}
.andes-tooltip-button-close:before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.andes-tooltip-button-close:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.andes-tooltip-button-close:after,
.andes-tooltip-button-close:before {
    left: 0.43em;
    opacity: 1;
    top: 0.06em;
}
.andes-tooltip-transition-enter {
    opacity: 0;
    -webkit-transform: translateY(-0.3125em);
    transform: translateY(-0.3125em);
    -webkit-transition: opacity 0.1s ease-out, -webkit-transform 0.1s ease-out;
    transition: opacity 0.1s ease-out, -webkit-transform 0.1s ease-out;
    transition: transform 0.1s ease-out, opacity 0.1s ease-out;
    transition: transform 0.1s ease-out, opacity 0.1s ease-out, -webkit-transform 0.1s ease-out;
}
.andes-tooltip-transition-enter-active {
    -webkit-transform: translateY(0);
    transform: translateY(0);
}
.andes-tooltip-transition-enter-active,
.andes-tooltip-transition-leave-active {
    opacity: 1;
    -webkit-transition: opacity 0.1s ease-out, -webkit-transform 0.1s ease-out;
    transition: opacity 0.1s ease-out, -webkit-transform 0.1s ease-out;
    transition: transform 0.1s ease-out, opacity 0.1s ease-out;
    transition: transform 0.1s ease-out, opacity 0.1s ease-out, -webkit-transform 0.1s ease-out;
}
.andes-tooltip-transition-leave-active {
    -webkit-transform: translateY(-0.3125em);
    transform: translateY(-0.3125em);
}
.andes-tooltip-arrow:before {
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    bottom: -0.4375em;
    -webkit-box-shadow: 4px 0 4px -4px rgba(0, 0, 0, 0.15), 1px 1px 1px -1px rgba(0, 0, 0, 0.2);
    box-shadow: 4px 0 4px -4px rgba(0, 0, 0, 0.15), 1px 1px 1px -1px rgba(0, 0, 0, 0.2);
    content: "";
    height: 0.75em;
    left: 50%;
    margin-left: -0.5em;
    position: absolute;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transform-origin: center;
    transform-origin: center;
    width: 0.75em;
}
.andes-tooltip-placement-bottom.andes-tooltip-transition-enter,
.andes-tooltip-placement-bottomLeft.andes-tooltip-transition-enter,
.andes-tooltip-placement-bottomRight.andes-tooltip-transition-enter {
    -webkit-transform: translateY(0.3125em);
    transform: translateY(0.3125em);
}
.andes-tooltip-placement-bottom.andes-tooltip-transition-enter-active,
.andes-tooltip-placement-bottomLeft.andes-tooltip-transition-enter-active,
.andes-tooltip-placement-bottomRight.andes-tooltip-transition-enter-active {
    -webkit-transform: translateY(0);
    transform: translateY(0);
}
.andes-tooltip-placement-bottom.andes-tooltip-transition-leave-active,
.andes-tooltip-placement-bottomLeft.andes-tooltip-transition-leave-active,
.andes-tooltip-placement-bottomRight.andes-tooltip-transition-leave-active {
    -webkit-transform: translateY(0.3125em);
    transform: translateY(0.3125em);
}
.andes-tooltip-placement-bottom .andes-tooltip-arrow:before,
.andes-tooltip-placement-bottomLeft .andes-tooltip-arrow:before,
.andes-tooltip-placement-bottomRight .andes-tooltip-arrow:before {
    bottom: auto;
    top: -0.4375em;
    -webkit-transform: rotate(225deg);
    transform: rotate(225deg);
}
.andes-tooltip-placement-leftTop.andes-tooltip-transition-enter {
    -webkit-transform: translateX(-0.3125em);
    transform: translateX(-0.3125em);
}
.andes-tooltip-placement-leftTop.andes-tooltip-transition-enter-active {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}
.andes-tooltip-placement-leftTop.andes-tooltip-transition-leave-active {
    -webkit-transform: translateX(-0.3125em);
    transform: translateX(-0.3125em);
}
.andes-tooltip-placement-leftTop .andes-tooltip-arrow:before {
    left: auto;
    right: -7px;
    top: 0.625em;
    -webkit-transform: rotate(315deg);
    transform: rotate(315deg);
}
.andes-tooltip-placement-rightTop.andes-tooltip-transition-enter {
    -webkit-transform: translateX(0.3125em);
    transform: translateX(0.3125em);
}
.andes-tooltip-placement-rightTop.andes-tooltip-transition-enter-active {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}
.andes-tooltip-placement-rightTop.andes-tooltip-transition-leave-active {
    -webkit-transform: translateX(0.3125em);
    transform: translateX(0.3125em);
}
.andes-tooltip-placement-rightTop .andes-tooltip-arrow:before {
    left: 1px;
    top: 0.625em;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}
.andes-tooltip-placement-bottomLeft .andes-tooltip-arrow:before,
.andes-tooltip-placement-topLeft .andes-tooltip-arrow:before {
    left: 1.25em;
}
.andes-tooltip-placement-bottomRight .andes-tooltip-arrow:before,
.andes-tooltip-placement-topRight .andes-tooltip-arrow:before {
    left: auto;
    right: 0.625em;
}
.andes-tooltip-placement-right.andes-tooltip-transition-enter {
    -webkit-transform: translateX(0.3125em);
    transform: translateX(0.3125em);
}
.andes-tooltip-placement-right.andes-tooltip-transition-enter-active {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}
.andes-tooltip-placement-right.andes-tooltip-transition-leave-active {
    -webkit-transform: translateX(0.3125em);
    transform: translateX(0.3125em);
}
.andes-tooltip-placement-right .andes-tooltip-arrow:before {
    left: 1px;
    top: -webkit-calc(50% - 6px);
    top: calc(50% - 6px);
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}
.andes-tooltip-placement-left.andes-tooltip-transition-enter {
    -webkit-transform: translateX(-0.3125em);
    transform: translateX(-0.3125em);
}
.andes-tooltip-placement-left.andes-tooltip-transition-enter-active {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}
.andes-tooltip-placement-left.andes-tooltip-transition-leave-active {
    -webkit-transform: translateX(-0.3125em);
    transform: translateX(-0.3125em);
}
.andes-tooltip-placement-left .andes-tooltip-arrow:before {
    left: auto;
    right: -7px;
    top: -webkit-calc(50% - 6px);
    top: calc(50% - 6px);
    -webkit-transform: rotate(315deg);
    transform: rotate(315deg);
}
.andes-thumbnail--24 {
    height: 22px;
    width: 22px;
}
.andes-thumbnail--24,
.andes-thumbnail--32 {
    -webkit-align-items: center;
    align-items: center;
    background-color: #fff;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
}
.andes-thumbnail--32 {
    height: 30px;
    width: 30px;
}
.andes-thumbnail--40 {
    height: 38px;
    width: 38px;
}
.andes-thumbnail--40,
.andes-thumbnail--48 {
    -webkit-align-items: center;
    align-items: center;
    background-color: #fff;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
}
.andes-thumbnail--48 {
    height: 46px;
    width: 46px;
}
.andes-thumbnail--56 {
    height: 54px;
    width: 54px;
}
.andes-thumbnail--56,
.andes-thumbnail--64 {
    -webkit-align-items: center;
    align-items: center;
    background-color: #fff;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
}
.andes-thumbnail--64 {
    height: 62px;
    width: 62px;
}
.andes-thumbnail--72 {
    height: 70px;
    width: 70px;
}
.andes-thumbnail--72,
.andes-thumbnail--80 {
    -webkit-align-items: center;
    align-items: center;
    background-color: #fff;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
}
.andes-thumbnail--80 {
    height: 78px;
    width: 78px;
}
.andes-thumbnail > img {
    height: auto;
    max-width: 100%;
    width: auto;
}
.andes-thumbnail--circle {
    border: 1px solid rgba(0, 0, 0, 0.1);
    -webkit-border-radius: 50%;
    border-radius: 50%;
    overflow: hidden;
}
.andes-thumbnail--square {
    border: 1px solid rgba(0, 0, 0, 0.1);
    overflow: hidden;
}
.andes-thumbnail--square.andes-thumbnail--24,
.andes-thumbnail--square.andes-thumbnail--32 {
    -webkit-border-radius: 3px;
    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 {
    -webkit-border-radius: 4px;
    border-radius: 4px;
}
.andes-thumbnail--square.andes-thumbnail--72,
.andes-thumbnail--square.andes-thumbnail--80 {
    -webkit-border-radius: 5px;
    border-radius: 5px;
}
.andes-thumbnail__badge {
    border: none;
}
.andes-thumbnail--64.andes-thumbnail__badge-generic,
.andes-thumbnail--72.andes-thumbnail__badge-generic,
.andes-thumbnail--80.andes-thumbnail__badge-generic {
    border: 3px solid #bfbfbf;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.andes-thumbnail--24.andes-thumbnail__badge-generic,
.andes-thumbnail--32.andes-thumbnail__badge-generic,
.andes-thumbnail--40.andes-thumbnail__badge-generic,
.andes-thumbnail--48.andes-thumbnail__badge-generic,
.andes-thumbnail--56.andes-thumbnail__badge-generic {
    border: 2px solid #bfbfbf;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.andes-thumbnail--64.andes-thumbnail__badge-neutral,
.andes-thumbnail--72.andes-thumbnail__badge-neutral,
.andes-thumbnail--80.andes-thumbnail__badge-neutral {
    border: 3px solid #009ee3;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.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 #009ee3;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.andes-thumbnail--64.andes-thumbnail__badge-success,
.andes-thumbnail--72.andes-thumbnail__badge-success,
.andes-thumbnail--80.andes-thumbnail__badge-success {
    border: 3px solid #2d8e5f;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.andes-thumbnail--24.andes-thumbnail__badge-success,
.andes-thumbnail--32.andes-thumbnail__badge-success,
.andes-thumbnail--40.andes-thumbnail__badge-success,
.andes-thumbnail--48.andes-thumbnail__badge-success,
.andes-thumbnail--56.andes-thumbnail__badge-success {
    border: 2px solid #2d8e5f;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.andes-thumbnail--64.andes-thumbnail__badge-warning,
.andes-thumbnail--72.andes-thumbnail__badge-warning,
.andes-thumbnail--80.andes-thumbnail__badge-warning {
    border: 3px solid #f73;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.andes-thumbnail--24.andes-thumbnail__badge-warning,
.andes-thumbnail--32.andes-thumbnail__badge-warning,
.andes-thumbnail--40.andes-thumbnail__badge-warning,
.andes-thumbnail--48.andes-thumbnail__badge-warning,
.andes-thumbnail--56.andes-thumbnail__badge-warning {
    border: 2px solid #f73;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.andes-thumbnail--64.andes-thumbnail__badge-error,
.andes-thumbnail--72.andes-thumbnail__badge-error,
.andes-thumbnail--80.andes-thumbnail__badge-error {
    border: 3px solid #f23d4f;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.andes-thumbnail--24.andes-thumbnail__badge-error,
.andes-thumbnail--32.andes-thumbnail__badge-error,
.andes-thumbnail--40.andes-thumbnail__badge-error,
.andes-thumbnail--48.andes-thumbnail__badge-error,
.andes-thumbnail--56.andes-thumbnail__badge-error {
    border: 2px solid #f23d4f;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.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--notification,
.andes-thumbnail--40 + .andes-badge--pill {
    left: 24px;
    top: -16px;
}
.andes-thumbnail--48 + .andes-badge--notification,
.andes-thumbnail--48 + .andes-badge--pill {
    left: 32px;
    top: -16px;
}
.andes-thumbnail--56 + .andes-badge--notification,
.andes-thumbnail--56 + .andes-badge--pill {
    left: 40px;
    top: -16px;
}
.andes-thumbnail--64 + .andes-badge--notification,
.andes-thumbnail--64 + .andes-badge--pill {
    left: 40px;
    top: -24px;
}
.andes-thumbnail--72 + .andes-badge--notification,
.andes-thumbnail--72 + .andes-badge--pill {
    left: 48px;
    top: -24px;
}
.andes-thumbnail--80 + .andes-badge--notification,
.andes-thumbnail--80 + .andes-badge--pill {
    left: 56px;
    top: -24px;
}
.andes-thumbnail--default {
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.07);
}
.andes-thumbnail--loud {
    background-color: #009ee3;
    border: none;
}
.andes-thumbnail--quiet {
    background-color: rgba(71, 154, 209, 0.1);
    border: none;
}
.andes-thumbnail--loud-disabled,
.andes-thumbnail--quiet-disabled {
    background-color: rgba(0, 0, 0, 0.1);
}
.andes-thumbnail--default-disabled {
    background-color: #fff;
}
.andes-badge--large.andes-badge--standard {
    -webkit-border-radius: 12px;
    border-radius: 12px;
}
.andes-badge--large.andes-badge--rounded {
    -webkit-border-top-right-radius: 0;
    border-top-right-radius: 0;
}
.andes-badge--large.andes-badge--corner,
.andes-badge--large.andes-badge--rounded {
    -webkit-border-bottom-left-radius: 12px;
    border-bottom-left-radius: 12px;
    -webkit-border-bottom-right-radius: 0;
    border-bottom-right-radius: 0;
    -webkit-border-top-left-radius: 0;
    border-top-left-radius: 0;
}
.andes-badge--large.andes-badge--corner {
    -webkit-border-top-right-radius: 12px;
    border-top-right-radius: 12px;
}
.andes-badge--pill {
    -webkit-border-radius: 12px;
    border-radius: 12px;
    display: inline-block;
    font-family: Proxima Nova, -apple-system, Helvetica Neue, Helvetica, Roboto, Arial, sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 8px;
    overflow: hidden;
    position: relative;
    text-align: center;
}
.andes-badge__content {
    color: #fff;
    margin: 0;
    padding: 8px;
}
.andes-badge--dot {
    -webkit-border-radius: 50%;
    border-radius: 50%;
    display: inline-block;
    height: 8px;
    position: relative;
    width: 8px;
}
.andes-badge--generic {
    background: #737373;
}
.andes-badge--generic--quiet {
    background: hsla(0, 0%, 45%, 0.1);
    border: 0;
}
.andes-badge--generic--quiet.andes-badge--generic.andes-badge--pill {
    background: rgba(0, 0, 0, 0.07);
}
.andes-badge--generic--quiet.andes-badge--generic.andes-badge--pill .andes-badge__content {
    color: rgba(0, 0, 0, 0.55);
}
.andes-badge--generic--quiet .andes-badge__content {
    color: #737373;
}
.andes-radio {
    -webkit-align-items: center;
    align-items: center;
    display: -webkit-flex;
    display: flex;
    font-family: Proxima Nova, -apple-system, Helvetica Neue, Helvetica, Roboto, Arial, sans-serif;
    font-size: 18px;
    padding: 5px 16px 5px 6px;
}
.andes-radio__input {
    cursor: inherit;
    height: 100%;
    left: 0;
    margin: 0;
    opacity: 0;
    padding: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1;
}
.andes-radio__input:checked + .andes-radio__background .andes-radio__inner-circle {
    background-color: #009ee3;
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    -webkit-transition: background-color 0.12s cubic-bezier(0, 0, 0.2, 1) 0ms,
        -webkit-transform 0.12s cubic-bezier(0, 0, 0.2, 1) 0ms;
    transition: background-color 0.12s cubic-bezier(0, 0, 0.2, 1) 0ms,
        -webkit-transform 0.12s cubic-bezier(0, 0, 0.2, 1) 0ms;
    transition: transform 0.12s cubic-bezier(0, 0, 0.2, 1) 0ms, background-color 0.12s cubic-bezier(0, 0, 0.2, 1) 0ms;
    transition: transform 0.12s cubic-bezier(0, 0, 0.2, 1) 0ms, background-color 0.12s cubic-bezier(0, 0, 0.2, 1) 0ms,
        -webkit-transform 0.12s cubic-bezier(0, 0, 0.2, 1) 0ms;
}
.andes-radio__input:hover + .andes-radio__background .andes-radio__outer-circle {
    border-color: rgba(0, 0, 0, 0.55);
    border-width: 2px;
    -webkit-transition: border 0.12s cubic-bezier(0, 0, 0.2, 1) 0ms;
    transition: border 0.12s cubic-bezier(0, 0, 0.2, 1) 0ms;
    -webkit-transition-duration: 75ms;
    transition-duration: 75ms;
}
.andes-radio__input:checked + .andes-radio__background .andes-radio__outer-circle {
    border-color: #009ee3;
    border-width: 1px;
    -webkit-transition: border-color 0.12s cubic-bezier(0, 0, 0.2, 1) 0ms;
    transition: border-color 0.12s cubic-bezier(0, 0, 0.2, 1) 0ms;
}
.andes-radio__input:focus + .andes-radio__background:before {
    opacity: 0.26;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    -webkit-transition: opacity 0.12s cubic-bezier(0, 0, 0.2, 1) 0ms,
        -webkit-transform 0.12s cubic-bezier(0, 0, 0.2, 1) 0ms;
    transition: opacity 0.12s cubic-bezier(0, 0, 0.2, 1) 0ms, -webkit-transform 0.12s cubic-bezier(0, 0, 0.2, 1) 0ms;
    transition: opacity 0.12s cubic-bezier(0, 0, 0.2, 1) 0ms, transform 0.12s cubic-bezier(0, 0, 0.2, 1) 0ms;
    transition: opacity 0.12s cubic-bezier(0, 0, 0.2, 1) 0ms, transform 0.12s cubic-bezier(0, 0, 0.2, 1) 0ms,
        -webkit-transform 0.12s cubic-bezier(0, 0, 0.2, 1) 0ms;
}
.andes-radio__label {
    -webkit-font-smoothing: antialiased;
    color: rgba(0, 0, 0, 0.9);
    cursor: pointer;
    display: inline-block;
    font-weight: 400;
    margin-bottom: 0;
    outline: none;
    padding-left: 2px;
    position: relative;
}
.andes-radio__background {
    background-color: #fff;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: inline-block;
    height: 50%;
    left: 50%;
    margin-left: -25%;
    margin-top: -25%;
    top: 50%;
    width: 50%;
}
.andes-radio__background,
.andes-radio__background:before {
    -webkit-border-radius: 50%;
    border-radius: 50%;
    position: absolute;
}
.andes-radio__background:before {
    background-color: #009ee3;
    content: "";
    height: 100%;
    left: 0;
    opacity: 0;
    pointer-events: none;
    top: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transition: opacity 0.12s cubic-bezier(0.4, 0, 0.6, 1) 0ms,
        -webkit-transform 0.12s cubic-bezier(0.4, 0, 0.6, 1) 0ms;
    transition: opacity 0.12s cubic-bezier(0.4, 0, 0.6, 1) 0ms, -webkit-transform 0.12s cubic-bezier(0.4, 0, 0.6, 1) 0ms;
    transition: opacity 0.12s cubic-bezier(0.4, 0, 0.6, 1) 0ms, transform 0.12s cubic-bezier(0.4, 0, 0.6, 1) 0ms;
    transition: opacity 0.12s cubic-bezier(0.4, 0, 0.6, 1) 0ms, transform 0.12s cubic-bezier(0.4, 0, 0.6, 1) 0ms,
        -webkit-transform 0.12s cubic-bezier(0.4, 0, 0.6, 1) 0ms;
    width: 100%;
}
.andes-radio__outer-circle {
    border: 2px solid rgba(0, 0, 0, 0.25);
    -webkit-border-radius: 50%;
    border-radius: 50%;
    -webkit-transition: border-color 0.12s cubic-bezier(0.4, 0, 0.6, 1) 0ms;
    transition: border-color 0.12s cubic-bezier(0.4, 0, 0.6, 1) 0ms;
}
.andes-radio__inner-circle,
.andes-radio__outer-circle {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}
.andes-radio__inner-circle {
    background-color: #009ee3;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transition: background-color 0.12s cubic-bezier(0.4, 0, 0.6, 1) 0ms,
        -webkit-transform 0.12s cubic-bezier(0.4, 0, 0.6, 1) 0ms;
    transition: background-color 0.12s cubic-bezier(0.4, 0, 0.6, 1) 0ms,
        -webkit-transform 0.12s cubic-bezier(0.4, 0, 0.6, 1) 0ms;
    transition: transform 0.12s cubic-bezier(0.4, 0, 0.6, 1) 0ms,
        background-color 0.12s cubic-bezier(0.4, 0, 0.6, 1) 0ms;
    transition: transform 0.12s cubic-bezier(0.4, 0, 0.6, 1) 0ms,
        background-color 0.12s cubic-bezier(0.4, 0, 0.6, 1) 0ms,
        -webkit-transform 0.12s cubic-bezier(0.4, 0, 0.6, 1) 0ms;
}
.andes-radio-element {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    color: rgba(0, 0, 0, 0.9);
    cursor: pointer;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    height: 32px;
    padding: 9px;
    position: relative;
    width: 32px;
    will-change: opacity, transform, border-color, background-color, color;
}
.andes-radio-element:after,
.andes-radio-element:before {
    background-color: #009ee3;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    content: "";
    opacity: 0;
    pointer-events: none;
    position: absolute;
}
.andes-radio-element:before {
    -webkit-transition: opacity 15ms linear;
    transition: opacity 15ms linear;
    z-index: 1;
}
.andes-radio-element:after {
    -webkit-transition: opacity 0.15s linear;
    transition: opacity 0.15s linear;
}
.andes-radio-element:hover:before {
    opacity: 0;
}
.andes-radio-element:focus:before {
    opacity: 0.12;
    -webkit-transition-duration: 75ms;
    transition-duration: 75ms;
}
.andes-radio-element:active:after {
    opacity: 0.16;
    -webkit-transition-duration: 75ms;
    transition-duration: 75ms;
}
.andes-radio-inverted .andes-radio__input {
    margin-left: -14px;
}
.andes-radio-inverted span {
    padding-right: 14px;
}
.andes-radio--disabled {
    color: rgba(0, 0, 0, 0.25);
    pointer-events: none;
}
.andes-radio--disabled .andes-radio__inner-circle {
    background-color: rgba(0, 0, 0, 0.1);
}
.andes-radio--disabled .andes-radio__outer-circle {
    border-color: rgba(0, 0, 0, 0.1);
}
.andes-radio--disabled .andes-radio__input:checked + .andes-radio__background .andes-radio__inner-circle {
    background-color: rgba(0, 0, 0, 0.1);
}
.andes-radio--disabled .andes-radio__input:checked + .andes-radio__background .andes-radio__outer-circle {
    border-color: rgba(0, 0, 0, 0.1);
}
.andes-radio--disabled .andes-radio__label {
    color: rgba(0, 0, 0, 0.25);
}
.andes-radio--inline {
    display: -webkit-inline-flex;
    display: inline-flex;
}
.andes-radio--inline + .andes-radio--inline {
    margin-left: 16px;
}
.andes-radio--inverted {
    -webkit-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
}
.andes-radio--inverted .andes-radio__label {
    padding-left: 0;
    padding-right: 2px;
}
.andes-radio--error .andes-radio__outer-circle {
    border-color: #f23d4f;
}
.andes-radio--error .andes-radio__input:hover + .andes-radio__background .andes-radio__outer-circle {
    border-color: #d12440;
}
.andes-radio--error .andes-radio__input:hover:checked + .andes-radio__background .andes-radio__outer-circle {
    border-color: #009ee3;
}
.andes-radio-list .andes-radio__label {
    display: none;
}
.andes-radio-list .andes-list__item-asset,
.andes-radio-list .andes-list__item-selection-control {
    -webkit-align-self: center;
    align-self: center;
}
.andes-radio-list
    .andes-list__item:not(.andes-list__item-with-image).andes-list__item-with-secondary
    .andes-list__item-selection-control {
    -webkit-align-self: flex-start;
    align-self: flex-start;
}
.andes-radio-list .andes-list__item--size-large .andes-radio {
    padding-top: 16px;
}
.andes-radio-list .andes-list__item--size-large.andes-list__item-with-image .andes-radio,
.andes-radio-list .andes-list__item--size-large:not(.andes-list__item-with-secondary) .andes-radio {
    padding-top: 5px;
}
.andes-modal {
    -webkit-animation: modal-translate-in 0.2s ease-in-out, modal-fade-in 0.2s ease-in-out;
    animation: modal-translate-in 0.2s ease-in-out, modal-fade-in 0.2s ease-in-out;
    background-color: #fff;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    outline: none;
    position: relative;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}
.andes-modal--closing {
    -webkit-animation: modal-translate-out 0.2s ease-in-out, modal-fade-out 0.2s ease-in-out;
    animation: modal-translate-out 0.2s ease-in-out, modal-fade-out 0.2s ease-in-out;
}
.andes-modal > * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    color: rgba(0, 0, 0, 0.9);
}
.andes-modal__overlay {
    -webkit-align-items: center;
    align-items: center;
    -webkit-animation: modal-fade-in 0.2s ease-in-out;
    animation: modal-fade-in 0.2s ease-in-out;
    background-color: rgba(0, 0, 0, 0.8);
    bottom: 0;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 1020;
}
.andes-modal__overlay--closing {
    -webkit-animation: modal-fade-out 0.2s ease-in-out;
    animation: modal-fade-out 0.2s ease-in-out;
}
.andes-modal__overlay--large,
.andes-modal__overlay--small {
    padding: 3em;
}
.andes-modal.andes-modal--card,
.andes-modal.andes-modal--large,
.andes-modal.andes-modal--small {
    -webkit-border-radius: 6px;
    border-radius: 6px;
}
.andes-modal.andes-modal--large .andes-modal__header.andes-modal__header--secondary,
.andes-modal.andes-modal--large .andes-modal__header.andes-modal__header--sticky,
.andes-modal.andes-modal--small .andes-modal__header.andes-modal__header--secondary,
.andes-modal.andes-modal--small .andes-modal__header.andes-modal__header--sticky {
    padding-bottom: 1.375em;
    padding-top: 1.375em;
}
.andes-modal.andes-modal--large .andes-modal__header.andes-modal__header--secondary .andes-modal__title,
.andes-modal.andes-modal--large .andes-modal__header.andes-modal__header--sticky .andes-modal__title,
.andes-modal.andes-modal--small .andes-modal__header.andes-modal__header--secondary .andes-modal__title,
.andes-modal.andes-modal--small .andes-modal__header.andes-modal__header--sticky .andes-modal__title {
    font-size: 20px;
}
.andes-modal.andes-modal--large .andes-modal__header__contents * + .andes-modal__title,
.andes-modal.andes-modal--small .andes-modal__header__contents * + .andes-modal__title {
    margin-top: 32px;
}
.andes-modal.andes-modal--card .andes-modal__header__contents * + .andes-modal__title,
.andes-modal.andes-modal--full .andes-modal__header__contents * + .andes-modal__title {
    margin-top: 26px;
}
.andes-modal__scroll {
    -webkit-border-radius: 6px;
    border-radius: 6px;
    overflow-y: auto;
}
.andes-modal__title {
    font-weight: 600;
    line-height: 1;
}
.andes-modal__actions,
.andes-modal__header {
    background-color: #fff;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.andes-modal__actions {
    -webkit-border-radius: 0 0 6px 6px;
    border-radius: 0 0 6px 6px;
    -webkit-transition-duration: 0.08s;
    transition-duration: 0.08s;
    -webkit-transition-property: padding, background-color, -webkit-box-shadow;
    transition-property: padding, background-color, -webkit-box-shadow;
    transition-property: box-shadow, padding, background-color;
    transition-property: box-shadow, padding, background-color, -webkit-box-shadow;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
}
.andes-modal__actions--fixed {
    bottom: 0;
    position: -webkit-sticky;
    position: sticky;
}
.andes-modal__actions--fixed.andes-modal__actions--border {
    border-top: 1px solid rgba(0, 0, 0, 0.07);
    -webkit-box-shadow: 0 6px 16px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 6px 16px 0 rgba(0, 0, 0, 0.1);
}
.andes-modal__actions--fixed.andes-modal__actions--border.padding {
    border-top: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.andes-modal__actions .andes-button + .andes-button {
    margin-left: 8px;
}
.andes-modal__actions .andes-button + .andes-button--full-width {
    margin-left: 0;
    margin-top: 8px;
}
.andes-modal__header {
    -webkit-border-radius: 6px 6px 0 0;
    border-radius: 6px 6px 0 0;
    display: -webkit-flex;
    display: flex;
    position: relative;
    top: 0;
    -webkit-transition-duration: 0.08s;
    transition-duration: 0.08s;
    -webkit-transition-property: background-color, -webkit-box-shadow;
    transition-property: background-color, -webkit-box-shadow;
    transition-property: box-shadow, background-color;
    transition-property: box-shadow, background-color, -webkit-box-shadow;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
}
.andes-modal__header__contents {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-flex-grow: 1;
    flex-grow: 1;
    -webkit-justify-content: center;
    justify-content: center;
}
.andes-modal__header__contents--centered {
    -webkit-align-items: center;
    align-items: center;
}
.andes-modal__header--secondary .andes-modal__header__contents,
.andes-modal__header--sticky .andes-modal__header__contents {
    overflow: hidden;
}
.andes-modal__header--secondary .andes-modal__title,
.andes-modal__header--sticky .andes-modal__title {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.andes-modal__header--sticky {
    background-color: #fff;
    -webkit-box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.07), 0 0 24px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.07), 0 0 24px 0 rgba(0, 0, 0, 0.1);
    position: -webkit-sticky;
    position: sticky;
    z-index: 1021;
}
.andes-modal__header--secondary {
    background-color: transparent;
    position: fixed;
    width: 100%;
    z-index: 1021;
}
.andes-modal__header--secondary .andes-modal__title {
    display: none;
}
.andes-modal__header--show {
    background-color: #fff;
    -webkit-box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.07), 0 0 24px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.07), 0 0 24px 0 rgba(0, 0, 0, 0.1);
}
.andes-modal__header--show-title .andes-modal__title {
    display: block;
}
.andes-modal__close-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: transparent;
    border: none;
    cursor: pointer;
    font-size: inherit;
    height: 1.25em;
    padding: 0;
    width: 1.25em;
}
.andes-modal__close-button:focus {
    outline: 3px solid rgba(71, 154, 209, 0.3);
}
@-webkit-keyframes modal-fade-in {
    0% {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes modal-fade-in {
    0% {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@-webkit-keyframes modal-fade-out {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}
@keyframes modal-fade-out {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}
@-webkit-keyframes modal-translate-in {
    0% {
        margin-top: 300px;
    }
    to {
        margin-top: 0;
    }
}
@keyframes modal-translate-in {
    0% {
        margin-top: 300px;
    }
    to {
        margin-top: 0;
    }
}
@-webkit-keyframes modal-translate-out {
    0% {
        margin-top: 0;
    }
    to {
        margin-top: 300px;
    }
}
@keyframes modal-translate-out {
    0% {
        margin-top: 0;
    }
    to {
        margin-top: 300px;
    }
}
@media (min-width: 768px) {
    .andes-modal--small.andes-modal--asset .andes-modal__header {
        padding-bottom: 1em;
    }
    .andes-modal--small .andes-modal__header {
        padding: 2em 2em 1.5em;
    }
    .andes-modal--small .andes-modal__header.andes-modal__header--secondary .andes-modal__close-button,
    .andes-modal--small .andes-modal__header.andes-modal__header--sticky .andes-modal__close-button {
        margin-top: 0;
    }
    .andes-modal--small .andes-modal__close-button {
        margin-top: 2px;
    }
    .andes-modal--small .andes-modal__title {
        font-size: 24px;
    }
    .andes-modal--small .andes-modal__content {
        padding: 0 2em 2em;
    }
    .andes-modal--small.andes-modal--fixed-actions .andes-modal__content {
        padding-bottom: 1em;
    }
    .andes-modal--small .andes-modal__actions {
        padding: 0 2em 2em;
    }
    .andes-modal--small .andes-modal__actions--fixed {
        padding: 1em 2em;
    }
    .andes-modal--large.andes-modal--asset .andes-modal__header {
        padding-bottom: 1.25em;
    }
    .andes-modal--large .andes-modal__header {
        padding: 3em 3em 1.75em;
    }
    .andes-modal--large .andes-modal__header.andes-modal__header--secondary .andes-modal__close-button,
    .andes-modal--large .andes-modal__header.andes-modal__header--sticky .andes-modal__close-button {
        margin-top: 0;
    }
    .andes-modal--large .andes-modal__close-button {
        margin-top: 4px;
    }
    .andes-modal--large .andes-modal__title {
        font-size: 28px;
    }
    .andes-modal--large .andes-modal__content {
        padding: 0 3em 3em;
    }
    .andes-modal--large.andes-modal--fixed-actions .andes-modal__content {
        padding-bottom: 2.25em;
    }
    .andes-modal--large .andes-modal__actions {
        padding: 0.25em 3em 3em;
    }
    .andes-modal--large .andes-modal__actions--fixed {
        padding: 1em 3em;
    }
}
.andes-modal--full {
    -webkit-border-radius: 0;
    border-radius: 0;
    height: 100%;
    max-height: none !important;
    max-width: none !important;
    width: 100%;
}
.andes-modal--full .andes-modal__scroll {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    height: 100%;
}
.andes-modal--full .andes-modal__header {
    -webkit-border-radius: 0;
    border-radius: 0;
    padding: 2em 1.5em;
}
.andes-modal--full .andes-modal__header.andes-modal__header--secondary,
.andes-modal--full .andes-modal__header.andes-modal__header--sticky {
    padding: 1.625em 1.5em;
}
.andes-modal--full .andes-modal__header.andes-modal__header--secondary .andes-modal__title,
.andes-modal--full .andes-modal__header.andes-modal__header--sticky .andes-modal__title {
    font-size: 20px;
}
.andes-modal--full .andes-modal__header.andes-modal__header--secondary .namespace__close-button,
.andes-modal--full .andes-modal__header.andes-modal__header--sticky .namespace__close-button {
    margin-top: 0;
}
.andes-modal--full .andes-modal__close-button {
    margin-top: 2px;
}
.andes-modal--full .andes-modal__title {
    font-size: 24px;
}
.andes-modal--full .andes-modal__content {
    -webkit-flex-grow: 1;
    flex-grow: 1;
    padding: 0 1.5em 1.5em;
}
.andes-modal__overlay--full {
    -webkit-animation: none;
    animation: none;
    background-color: transparent;
}
.andes-modal--full.andes-modal--fixed-actions .andes-modal__content {
    padding-bottom: 1em;
}
.andes-modal--full .andes-modal__actions {
    -webkit-border-radius: 0;
    border-radius: 0;
    padding: 0 1.5em 1.5em;
}
.andes-modal--full .andes-modal__actions--fixed {
    padding: 1em 1.5em;
}
.andes-modal--card .andes-modal__header {
    padding: 1.625em 1.5em 1.25em;
    -webkit-transition-property: -webkit-box-shadow;
    transition-property: -webkit-box-shadow;
    transition-property: box-shadow;
    transition-property: box-shadow, -webkit-box-shadow;
}
.andes-modal--card .andes-modal__header.andes-modal__header--secondary,
.andes-modal--card .andes-modal__header.andes-modal__header--sticky {
    padding: 1.4375em 1.5em;
}
.andes-modal--card .andes-modal__title {
    font-size: 20px;
}
.andes-modal--card .andes-modal__content {
    padding: 0 1.5em 1.5em;
}
.andes-modal--card .andes-modal__close-button {
    position: absolute;
    right: -4px;
    top: -32px;
}
.andes-modal__overlay--card {
    padding: 3em 1.5em;
}
.andes-modal--card.andes-modal--fixed-actions .andes-modal__content {
    padding-bottom: 0.5em;
}
.andes-modal--card .andes-modal__actions {
    padding: 0 1.5em 1.5em;
}
.andes-modal--card .andes-modal__actions--fixed {
    padding: 1em 1.5em;
}
.andes-checkbox {
    -webkit-font-smoothing: antialiased;
    cursor: pointer;
    font-family: Proxima Nova, -apple-system, Helvetica Neue, Helvetica, Roboto, Arial, sans-serif;
    font-size: 16px;
    position: relative;
}
.andes-checkbox:not(div) {
    display: -webkit-inline-flex;
    display: inline-flex;
}
.andes-checkbox__input {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    height: 16px;
    left: 0;
    margin: 10px 0 0;
    outline: none;
    position: absolute;
    top: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 16px;
}
.andes-checkbox__input:before {
    left: 0;
    line-height: 1;
}
.andes-checkbox__input:after,
.andes-checkbox__input:before {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    content: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath fill='%23fff' d='M3 2a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1V3a1 1 0 0 0-1-1H3z'/%3E%3Cpath fill='%23000' fill-opacity='.25' d='M3 0h10a3 3 0 0 1 3 3v10a3 3 0 0 1-3 3H3a3 3 0 0 1-3-3V3a3 3 0 0 1 3-3zm0 2a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1V3a1 1 0 0 0-1-1H3z'/%3E%3C/g%3E%3C/svg%3E");
    height: 16px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 16px;
}
.andes-checkbox__input:after {
    background: #fff;
    border: 3px solid #009ee3;
    -webkit-border-radius: 6px;
    border-radius: 6px;
    left: -3px;
    opacity: 0;
    -webkit-transition: opacity 0.2s ease-out;
    transition: opacity 0.2s ease-out;
}
.andes-checkbox__input:hover:after,
.andes-checkbox__input:hover:before {
    content: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath fill='%23fff' d='M3 2a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1V3a1 1 0 0 0-1-1H3z'/%3E%3Cpath fill='%23000' fill-opacity='.45' d='M3 0h10a3 3 0 0 1 3 3v10a3 3 0 0 1-3 3H3a3 3 0 0 1-3-3V3a3 3 0 0 1 3-3zm0 2a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1V3a1 1 0 0 0-1-1H3z'/%3E%3C/g%3E%3C/svg%3E");
}
.andes-checkbox__input[disabled] ~ .andes-checkbox__label {
    color: rgba(0, 0, 0, 0.25);
}
.andes-checkbox__input[disabled] {
    background-color: inherit;
}
.andes-checkbox__input[disabled]:before {
    content: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16'%3E%3Cpath fill-opacity='.1' fill-rule='evenodd' d='M3 0h10a3 3 0 0 1 3 3v10a3 3 0 0 1-3 3H3a3 3 0 0 1-3-3V3a3 3 0 0 1 3-3zm0 2a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1V3a1 1 0 0 0-1-1H3z'/%3E%3C/svg%3E");
}
.andes-checkbox__input:checked:after,
.andes-checkbox__input:checked:before {
    content: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='16' height='16'%3E%3Cdefs%3E%3Cpath id='a' d='M3 0a3 3 0 0 0-3 3v10a3 3 0 0 0 3 3h10a3 3 0 0 0 3-3V3a3 3 0 0 0-3-3H3z'/%3E%3C/defs%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cmask id='b' fill='%23fff'%3E%3Cuse xlink:href='%23a'/%3E%3C/mask%3E%3Cuse fill='%23009EE3' xlink:href='%23a'/%3E%3Cpath fill='%23fff' fill-rule='nonzero' d='m3.63 7.775-.847.85 3.256 3.245 6.845-6.848-.849-.848-5.998 6z' mask='url(%23b)'/%3E%3C/g%3E%3C/svg%3E");
}
.andes-checkbox__input:checked:hover:before {
    content: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='16' height='16'%3E%3Cdefs%3E%3Cpath id='a' d='M3 0a3 3 0 0 0-3 3v10a3 3 0 0 0 3 3h10a3 3 0 0 0 3-3V3a3 3 0 0 0-3-3H3z'/%3E%3C/defs%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cmask id='b' fill='%23fff'%3E%3Cuse xlink:href='%23a'/%3E%3C/mask%3E%3Cuse fill='%23007EB5' xlink:href='%23a'/%3E%3Cpath fill='%23fff' fill-rule='nonzero' d='m3.63 7.775-.847.85 3.256 3.245 6.845-6.848-.849-.848-5.998 6z' mask='url(%23b)'/%3E%3C/g%3E%3C/svg%3E");
}
.andes-checkbox__input:checked[disabled]:before {
    content: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16'%3E%3Cg fill-rule='evenodd'%3E%3Cpath fill-opacity='.1' d='M3 0a3 3 0 0 0-3 3v10a3 3 0 0 0 3 3h10a3 3 0 0 0 3-3V3a3 3 0 0 0-3-3H3z'/%3E%3Cpath fill-opacity='.25' d='m3.63 7.775-.847.85 3.256 3.245 6.845-6.848-.849-.848-5.998 6z'/%3E%3C/g%3E%3C/svg%3E");
}
.andes-checkbox__input:focus:after {
    opacity: 0.4;
}
.andes-checkbox__label {
    color: rgba(0, 0, 0, 0.9);
    display: -webkit-inline-flex;
    display: inline-flex;
    font-family: Proxima Nova, -apple-system, Helvetica Neue, Helvetica, Roboto, Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
}
.andes-checkbox__label-text {
    padding-left: 1.5em;
}
.andes-checkbox--label-before .andes-checkbox__label {
    padding-left: 0;
    padding-right: 1.5em;
}
.andes-checkbox--label-before .andes-checkbox__input {
    left: auto;
    right: 0;
}
.andes-checkbox--disabled {
    cursor: default;
}
.andes-checkbox--without-label {
    height: 16px;
    width: 16px;
}
.andes-checkbox--embedded:not(div) > .andes-checkbox__input {
    margin-top: 0;
    top: 0;
    -webkit-transform: translate(0);
    transform: translate(0);
}
.andes-checkbox--embedded .andes-checkbox__label {
    color: #009ee3;
    font-size: 12px;
    padding-left: 1.1666666667em;
}
.andes-checkbox--embedded .andes-checkbox__background {
    background-color: #009ee3;
    content: "";
    height: 32px;
    left: -8px;
    opacity: 0;
    padding: 0 8px;
    position: absolute;
    top: -2px;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    width: 100%;
}
.andes-checkbox--embedded .andes-checkbox__input {
    margin-top: 3px;
    top: 50%;
}
.andes-checkbox--embedded .andes-checkbox__input:before {
    content: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10'%3E%3Cpath fill='%23009EE3' d='M2 1a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1H2zm0-1h6a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V2a2 2 0 0 1 2-2z'/%3E%3C/svg%3E");
    height: 10px;
    top: 38%;
    width: 10px;
}
.andes-checkbox--embedded .andes-checkbox__input:checked:before {
    content: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10'%3E%3Crect width='10' height='10' fill='%23009EE3' rx='2'/%3E%3Cpath fill='%23fff' d='m7.47 2.47 1.06 1.06L4 8.06 1.47 5.53l1.06-1.06L4 5.94z'/%3E%3C/svg%3E");
    height: 10px;
    width: 10px;
}
.andes-checkbox--embedded .andes-checkbox__input:checked + .andes-checkbox__background {
    transition: opacity 0.1s;
    -webkit-transition: opacity 0.1s;
}
.andes-checkbox--embedded .andes-checkbox__input:checked:hover:before {
    content: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10'%3E%3Crect width='10' height='10' fill='%23009EE3' rx='2'/%3E%3Cpath fill='%23fff' d='m7.47 2.47 1.06 1.06L4 8.06 1.47 5.53l1.06-1.06L4 5.94z'/%3E%3C/svg%3E");
}
.andes-checkbox--embedded .andes-checkbox__input:checked[disabled]:before {
    content: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10'%3E%3Crect width='10' height='10' fill='%23ccc' rx='2'/%3E%3Cpath fill='%23fff' d='m7.47 2.47 1.06 1.06L4 8.06 1.47 5.53l1.06-1.06L4 5.94z'/%3E%3C/svg%3E");
    height: 10px;
    width: 10px;
}
.andes-checkbox--embedded .andes-checkbox__input:hover + .andes-checkbox__background {
    opacity: 0.06;
    transition: opacity 0.2s;
    -webkit-transition: opacity 0.2s;
}
.andes-checkbox--embedded .andes-checkbox__input:hover:before {
    content: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10'%3E%3Cpath fill='%23009EE3' d='M2 1a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1H2zm0-1h6a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V2a2 2 0 0 1 2-2z'/%3E%3C/svg%3E");
}
.andes-checkbox--embedded .andes-checkbox__input:focus:after {
    display: none;
}
.andes-checkbox--embedded .andes-checkbox__input:focus + .andes-checkbox__background {
    opacity: 0.12;
    transition: opacity 0.1s;
    -webkit-transition: opacity 0.1s;
}
.andes-checkbox--embedded .andes-checkbox__input[disabled]:before {
    content: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10'%3E%3Cpath fill='%23ccc' d='M2 1a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1H2zm0-1h6a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V2a2 2 0 0 1 2-2z'/%3E%3C/svg%3E");
    height: 10px;
    width: 10px;
}
.andes-checkbox--embedded .andes-checkbox__input[disabled] + .andes-checkbox__background {
    display: none;
}
.andes-checkbox--indeterminate .andes-checkbox__input:checked:before {
    content: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='16' height='16'%3E%3Cdefs%3E%3Cpath id='a' d='M3 0a3 3 0 0 0-3 3v10a3 3 0 0 0 3 3h10a3 3 0 0 0 3-3V3a3 3 0 0 0-3-3H3z'/%3E%3C/defs%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cmask id='b' fill='%23fff'%3E%3Cuse xlink:href='%23a'/%3E%3C/mask%3E%3Cuse fill='%23009EE3' xlink:href='%23a'/%3E%3Cpath fill='%23fff' d='M3.478 8.852h9.2v-1.2h-9.2z' mask='url(%23b)'/%3E%3C/g%3E%3C/svg%3E");
}
.andes-checkbox--indeterminate .andes-checkbox__input:checked:hover:before {
    content: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='16' height='16'%3E%3Cdefs%3E%3Cpath id='a' d='M3 0a3 3 0 0 0-3 3v10a3 3 0 0 0 3 3h10a3 3 0 0 0 3-3V3a3 3 0 0 0-3-3H3z'/%3E%3C/defs%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cmask id='b' fill='%23fff'%3E%3Cuse xlink:href='%23a'/%3E%3C/mask%3E%3Cuse fill='%23007EB5' xlink:href='%23a'/%3E%3Cpath fill='%23fff' d='M3.478 8.852h9.2v-1.2h-9.2z' mask='url(%23b)'/%3E%3C/g%3E%3C/svg%3E");
}
.andes-checkbox--indeterminate .andes-checkbox__input:checked:after {
    content: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='16' height='16'%3E%3Cdefs%3E%3Cpath id='a' d='M3 0a3 3 0 0 0-3 3v10a3 3 0 0 0 3 3h10a3 3 0 0 0 3-3V3a3 3 0 0 0-3-3H3z'/%3E%3C/defs%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cmask id='b' fill='%23fff'%3E%3Cuse xlink:href='%23a'/%3E%3C/mask%3E%3Cuse fill='%23009EE3' xlink:href='%23a'/%3E%3Cpath fill='%23fff' d='M3.478 8.852h9.2v-1.2h-9.2z' mask='url(%23b)'/%3E%3C/g%3E%3C/svg%3E");
}
.andes-checkbox--indeterminate .andes-checkbox__input:checked[disabled]:before {
    content: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16'%3E%3Cg fill-rule='evenodd'%3E%3Cpath fill-opacity='.1' d='M3 0a3 3 0 0 0-3 3v10a3 3 0 0 0 3 3h10a3 3 0 0 0 3-3V3a3 3 0 0 0-3-3H3z'/%3E%3Cpath fill-opacity='.25' d='M3.478 8.852h9.2v-1.2h-9.2z'/%3E%3C/g%3E%3C/svg%3E");
}
.andes-checkbox--error .andes-checkbox__input:not(:checked):before {
    content: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath fill='%23fff' d='M3 2a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1V3a1 1 0 0 0-1-1H3z'/%3E%3Cpath fill='%23F23D4F' d='M3 0h10a3 3 0 0 1 3 3v10a3 3 0 0 1-3 3H3a3 3 0 0 1-3-3V3a3 3 0 0 1 3-3zm0 2a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1V3a1 1 0 0 0-1-1H3z'/%3E%3C/g%3E%3C/svg%3E");
}
.andes-checkbox--error:hover .andes-checkbox__input:not(:checked):before {
    content: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath fill='%23fff' d='M3 2a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1V3a1 1 0 0 0-1-1H3z'/%3E%3Cpath fill='%23D12440' d='M3 0h10a3 3 0 0 1 3 3v10a3 3 0 0 1-3 3H3a3 3 0 0 1-3-3V3a3 3 0 0 1 3-3zm0 2a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1V3a1 1 0 0 0-1-1H3z'/%3E%3C/g%3E%3C/svg%3E");
}
.andes-checkbox--error.andes-checkbox--embedded .andes-checkbox__input:not(:checked):before {
    content: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10'%3E%3Cpath fill='%23F23D4F' d='M2 1a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1H2zm0-1h6a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V2a2 2 0 0 1 2-2z'/%3E%3C/svg%3E");
    height: 10px;
    width: 10px;
}
.andes-checkbox--error.andes-checkbox--embedded .andes-checkbox__input:not(:checked):before:hover {
    content: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10'%3E%3Cpath fill='%23D12440' d='M2 1a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1H2zm0-1h6a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V2a2 2 0 0 1 2-2z'/%3E%3C/svg%3E");
}
.andes-switch {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row-reverse;
    flex-flow: row-reverse;
    padding: 10px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}
.andes-switch .andes-checkbox__input {
    cursor: pointer;
    height: 24px;
    left: 10px;
    top: 10px;
    width: 40px;
}
.andes-switch .andes-checkbox__input:after,
.andes-switch .andes-checkbox__input:before {
    content: "" !important;
    -webkit-transition: 0.15s ease-in-out;
    transition: 0.15s ease-in-out;
}
.andes-switch .andes-checkbox__input:before {
    background: rgba(0, 0, 0, 0.1);
    border: 0;
    -webkit-border-radius: 12px;
    border-radius: 12px;
    height: 24px;
    width: 40px;
}
.andes-switch .andes-checkbox__input:after {
    background: #fff;
    border: 0;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.55);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.55);
    height: 20px;
    left: 2px;
    opacity: 1;
    width: 20px;
}
.andes-switch .andes-checkbox__input[disabled] {
    cursor: inherit;
}
.andes-switch .andes-checkbox__input[disabled]:before {
    background: rgba(0, 0, 0, 0.07);
}
.andes-switch .andes-checkbox__input[disabled]:after {
    -webkit-box-shadow: none;
    box-shadow: none;
}
.andes-switch .andes-checkbox__input:checked:before {
    background: #009ee3;
}
.andes-switch .andes-checkbox__input:checked:after {
    left: 18px;
}
.andes-switch .andes-checkbox__input:checked[disabled]:before {
    background: rgba(71, 154, 209, 0.3);
    border: 0;
}
.andes-switch .andes-checkbox__input:checked[disabled]:after {
    -webkit-box-shadow: none;
    box-shadow: none;
}
.andes-switch .andes-checkbox__input:focus:after {
    opacity: 1;
}
.andes-switch .andes-checkbox__input:focus:before {
    -webkit-box-shadow: 0 0 0 3px rgba(0, 158, 227, 0.4);
    box-shadow: 0 0 0 3px rgba(0, 158, 227, 0.4);
}
.andes-switch.andes-checkbox--label-before {
    -webkit-flex-flow: row;
    flex-flow: row;
}
.andes-switch.andes-checkbox--label-before .andes-checkbox__input:after {
    left: auto;
    right: 18px;
}
.andes-switch.andes-checkbox--label-before .andes-checkbox__label {
    margin-left: 0;
    margin-right: 52px;
    padding: 0;
}
.andes-switch.andes-checkbox--label-before .andes-checkbox__input {
    left: auto;
    right: 10px;
}
.andes-switch.andes-checkbox--label-before .andes-checkbox__input:checked:after {
    left: auto;
    right: 2px;
}
.andes-switch .andes-checkbox__label {
    margin-left: 52px;
    padding: 0;
}
*,
:after,
:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
html {
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
    margin: 0;
}
ol,
ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
    font-weight: 400;
    margin: 0;
}
[required] {
    -webkit-box-shadow: none;
    box-shadow: none;
}
body {
    color: #333;
    font-family: Proxima Nova, -apple-system, Helvetica Neue, Helvetica, Roboto, Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.35;
}
p {
    color: #999;
    font-size: 0.875em;
}
a {
    color: #009ee3;
    text-decoration: none;
}
a:focus,
a:hover {
    color: #32b3ff;
}
a:focus {
    outline: 0;
}
a:active {
    color: #1572ab;
}
input,
select {
    font-family: Proxima Nova, -apple-system, Helvetica Neue, Helvetica, Roboto, Arial, sans-serif;
}
.u-accessibility-hidden,
[aria-hidden="false"] {
    clip: rect(0, 0, 0, 0);
    position: absolute;
}
.u-hide {
    display: none !important;
}
.u-show {
    display: block !important;
}
.u-show-ib {
    display: inline-block !important;
}
.u-display-b {
    display: block;
}
.u-display-ib {
    display: inline-block;
}
.u-display-i {
    display: inline;
}
.u-clearfix:after,
.u-clearfix:before {
    content: "";
    display: table;
}
.u-clearfix:after {
    clear: both;
}
.u-fw-300 {
    font-weight: 300;
}
.u-fw-400 {
    font-weight: 400;
}
.u-fw-600 {
    font-weight: 600;
}
.u-text-green,
.u-text-success {
    color: #0db478;
}
.u-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.u-no-user-select {
    cursor: default;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}
@-webkit-keyframes fade-in {
    0% {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes fade-in {
    0% {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@-webkit-keyframes fade-out {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}
@keyframes fade-out {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}
@-webkit-keyframes fade-out-overlay {
    0% {
        opacity: 1;
        z-index: 1;
    }
    99% {
        opacity: 0;
        z-index: -1;
    }
    to {
        opacity: 0;
        z-index: -100;
    }
}
@keyframes fade-out-overlay {
    0% {
        opacity: 1;
        z-index: 1;
    }
    99% {
        opacity: 0;
        z-index: -1;
    }
    to {
        opacity: 0;
        z-index: -100;
    }
}
@-webkit-keyframes scale-up {
    0% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }
    to {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
@keyframes scale-up {
    0% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }
    to {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
@-webkit-keyframes skeleton-animation {
    0% {
        background-color: rgba(0, 0, 0, 0.1);
    }
    50% {
        background-color: rgba(0, 0, 0, 0.55);
    }
    to {
        background-color: rgba(0, 0, 0, 0.1);
    }
}
@keyframes skeleton-animation {
    0% {
        background-color: rgba(0, 0, 0, 0.1);
    }
    50% {
        background-color: rgba(0, 0, 0, 0.55);
    }
    to {
        background-color: rgba(0, 0, 0, 0.1);
    }
}
@-webkit-keyframes gradient {
    0% {
        background-position: 0 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    to {
        background-position: 0 50%;
    }
}
@keyframes gradient {
    0% {
        background-position: 0 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    to {
        background-position: 0 50%;
    }
}
#shield_footer.group-generic {
    -webkit-align-items: center;
    align-items: center;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
}
#shield_footer.group-generic span {
    color: rgba(0, 0, 0, 0.55);
    font-size: 12px;
    font-weight: 600;
}
#shield_footer.group-generic .icon-wrapper {
    margin-right: 0.25em;
    width: 1em;
}
@-webkit-keyframes loading-rotate {
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn);
    }
}
@keyframes loading-rotate {
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn);
    }
}
@-webkit-keyframes loading-dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 100, 200;
        stroke-dashoffset: -20px;
    }
    to {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -124px;
    }
}
@keyframes loading-dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 100, 200;
        stroke-dashoffset: -20px;
    }
    to {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -124px;
    }
}
@-webkit-keyframes loading-fade-in {
    0% {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.ui-loading {
    -webkit-animation: loading-fade-in 0.3s ease-out;
    animation: loading-fade-in 0.3s ease-out;
    font-size: 22px;
}
.ui-loading__spinner {
    -webkit-animation: loading-rotate 2.5s linear infinite;
    animation: loading-rotate 2.5s linear infinite;
    height: 1em;
    position: relative;
    -webkit-transform-origin: center center;
    transform-origin: center center;
    width: 1em;
}
.ui-loading__spinner-path {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
    stroke-linecap: round;
    stroke-width: 3px;
    stroke: #009ee3;
    -webkit-animation: loading-dash 1.5s ease-in-out infinite;
    animation: loading-dash 1.5s ease-in-out infinite;
}
.ui-loading--small {
    font-size: 16px;
}
.ui-loading--small .ui-loading__spinner-path {
    stroke-width: 4px;
}
.ui-loading--large {
    font-size: 80px;
}
.ui-loading--large .ui-loading__spinner-path {
    stroke-width: 2px;
}
.ui-loading--block {
    position: fixed;
    top: 64px;
    z-index: 30;
}
.ui-loading--block .ui-loading__container {
    left: 50%;
    position: absolute;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 1;
}
.ui-loading--block,
.ui-loading__mask {
    height: 100%;
    left: 0;
    width: 100%;
}
.ui-loading__mask {
    background-color: #fff;
    position: absolute;
}
.ui-loading--inline .ui-loading__mask {
    display: none;
}
.ui-loading--block {
    position: absolute;
    top: 0;
}
.ui-loading__mask {
    background-color: hsla(0, 0%, 100%, 0.9);
}
.identification-card {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='255' height='156'%3E%3Cdefs%3E%3ClinearGradient id='c' x1='7.003%25' x2='107.468%25' y1='105.7%25' y2='-24.771%25'%3E%3Cstop offset='0%25' stop-color='%23C9D8E3'/%3E%3Cstop offset='50.351%25' stop-color='%23EBF7FF'/%3E%3Cstop offset='100%25' stop-color='%23FFF'/%3E%3C/linearGradient%3E%3ClinearGradient id='d' x1='86.031%25' x2='25.368%25' y1='-2.315%25' y2='87.758%25'%3E%3Cstop offset='0%25' stop-color='%23BFCCFE' stop-opacity='0'/%3E%3Cstop offset='100%25' stop-color='%23BFCCFE' stop-opacity='.595'/%3E%3C/linearGradient%3E%3ClinearGradient id='f' x1='-28.764%25' x2='65.695%25' y1='43.062%25' y2='104.676%25'%3E%3Cstop offset='0%25' stop-color='%23FFFDFD' stop-opacity='.063'/%3E%3Cstop offset='100%25' stop-color='%23FFF' stop-opacity='.18'/%3E%3C/linearGradient%3E%3ClinearGradient id='i' x1='1.743%25' x2='103.873%25' y1='2618.726%25' y2='2618.726%25'%3E%3Cstop offset='0%25' stop-opacity='0'/%3E%3Cstop offset='100%25'/%3E%3C/linearGradient%3E%3Cpath id='a' d='M9.546 0h230.908A9.546 9.546 0 0 1 250 9.546v132.368a9.546 9.546 0 0 1-9.546 9.546H9.546A9.546 9.546 0 0 1 0 141.914V9.546A9.546 9.546 0 0 1 9.546 0z'/%3E%3Cpath id='g' d='M9.546 0h230.908A9.546 9.546 0 0 1 250 9.546v132.368a9.546 9.546 0 0 1-9.546 9.546H9.546A9.546 9.546 0 0 1 0 141.914V9.546A9.546 9.546 0 0 1 9.546 0z'/%3E%3Cfilter id='b' width='103.2%25' height='105.3%25' x='-1.6%25' y='-1.3%25' filterUnits='objectBoundingBox'%3E%3CfeOffset dy='2' in='SourceAlpha' result='shadowOffsetOuter1'/%3E%3CfeGaussianBlur in='shadowOffsetOuter1' result='shadowBlurOuter1' stdDeviation='1'/%3E%3CfeColorMatrix in='shadowBlurOuter1' values='0 0 0 0 0.360784314 0 0 0 0 0.360784314 0 0 0 0 0.360784314 0 0 0 0.1 0'/%3E%3C/filter%3E%3C/defs%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg transform='translate(2.5 .456)'%3E%3Cmask id='e' fill='%23fff'%3E%3Cuse xlink:href='%23a'/%3E%3C/mask%3E%3Cuse fill='%23000' filter='url(%23b)' xlink:href='%23a'/%3E%3Cuse fill='url(%23c)' xlink:href='%23a'/%3E%3Cellipse cx='63.145' cy='171.086' fill='url(%23d)' mask='url(%23e)' rx='153.93' ry='155.119'/%3E%3Cellipse cx='189.058' cy='-17.783' fill='%23D8CEF4' fill-opacity='.201' stroke='url(%23f)' stroke-width='.839' mask='url(%23e)' rx='153.93' ry='155.119'/%3E%3C/g%3E%3Cg opacity='.5' style='mix-blend-mode:multiply' transform='translate(2.5)'%3E%3Cmask id='h' fill='%23fff'%3E%3Cuse xlink:href='%23g'/%3E%3C/mask%3E%3Cuse fill='%23FFF' xlink:href='%23g'/%3E%3Cg mask='url(%23h)' opacity='.497'%3E%3Cg stroke='url(%23i)' transform='matrix(-1 0 0 1 231.143 -7)'%3E%3Cpath d='M.453 4.499c5.593 0 5.593 3.536 11.186 3.536 5.592 0 5.592-3.536 11.185-3.536 5.592 0 5.592 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.186 3.536 5.592 0 5.592-3.536 11.185-3.536 5.592 0 5.592 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536 5.593 0 5.593-3.536 11.186-3.536 5.592 0 5.592 3.536 11.185 3.536 5.592 0 5.592-3.536 11.185-3.536 5.592 0 5.592 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536 5.593 0 5.593-3.536 11.186-3.536 5.592 0 5.592 3.536 11.185 3.536 5.592 0 5.592-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536M.453 89.833c5.593 0 5.593 3.536 11.186 3.536 5.592 0 5.592-3.536 11.185-3.536 5.592 0 5.592 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.186 3.536 5.592 0 5.592-3.536 11.185-3.536 5.592 0 5.592 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536 5.593 0 5.593-3.536 11.186-3.536 5.592 0 5.592 3.536 11.185 3.536 5.592 0 5.592-3.536 11.185-3.536 5.592 0 5.592 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536 5.593 0 5.593-3.536 11.186-3.536 5.592 0 5.592 3.536 11.185 3.536 5.592 0 5.592-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536M.453 47.166c5.593 0 5.593 3.536 11.186 3.536 5.592 0 5.592-3.536 11.185-3.536 5.592 0 5.592 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.186 3.536 5.592 0 5.592-3.536 11.185-3.536 5.592 0 5.592 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536 5.593 0 5.593-3.536 11.186-3.536 5.592 0 5.592 3.536 11.185 3.536 5.592 0 5.592-3.536 11.185-3.536 5.592 0 5.592 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536 5.593 0 5.593-3.536 11.186-3.536 5.592 0 5.592 3.536 11.185 3.536 5.592 0 5.592-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536M.453 132.5c5.593 0 5.593 3.536 11.186 3.536 5.592 0 5.592-3.535 11.185-3.535 5.592 0 5.592 3.535 11.185 3.535 5.593 0 5.593-3.535 11.185-3.535 5.593 0 5.593 3.535 11.185 3.535 5.593 0 5.593-3.535 11.185-3.535 5.593 0 5.593 3.535 11.186 3.535 5.592 0 5.592-3.535 11.185-3.535 5.592 0 5.592 3.535 11.185 3.535 5.593 0 5.593-3.535 11.185-3.535 5.593 0 5.593 3.535 11.185 3.535 5.593 0 5.593-3.535 11.186-3.535 5.592 0 5.592 3.535 11.185 3.535 5.592 0 5.592-3.535 11.185-3.535 5.592 0 5.592 3.535 11.185 3.535 5.593 0 5.593-3.535 11.185-3.535 5.593 0 5.593 3.535 11.185 3.535 5.593 0 5.593-3.535 11.186-3.535 5.592 0 5.592 3.535 11.185 3.535 5.592 0 5.592-3.535 11.185-3.535 5.593 0 5.593 3.535 11.185 3.535M.453 10.594c5.593 0 5.593 3.536 11.186 3.536 5.592 0 5.592-3.536 11.185-3.536 5.592 0 5.592 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.186 3.536 5.592 0 5.592-3.536 11.185-3.536 5.592 0 5.592 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536 5.593 0 5.593-3.536 11.186-3.536 5.592 0 5.592 3.536 11.185 3.536 5.592 0 5.592-3.536 11.185-3.536 5.592 0 5.592 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536 5.593 0 5.593-3.536 11.186-3.536 5.592 0 5.592 3.536 11.185 3.536 5.592 0 5.592-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536M.453 95.929c5.593 0 5.593 3.535 11.186 3.535 5.592 0 5.592-3.535 11.185-3.535 5.592 0 5.592 3.535 11.185 3.535 5.593 0 5.593-3.535 11.185-3.535 5.593 0 5.593 3.535 11.185 3.535 5.593 0 5.593-3.535 11.185-3.535 5.593 0 5.593 3.535 11.186 3.535 5.592 0 5.592-3.535 11.185-3.535 5.592 0 5.592 3.535 11.185 3.535 5.593 0 5.593-3.535 11.185-3.535 5.593 0 5.593 3.535 11.185 3.535 5.593 0 5.593-3.535 11.186-3.535 5.592 0 5.592 3.535 11.185 3.535 5.592 0 5.592-3.535 11.185-3.535 5.592 0 5.592 3.535 11.185 3.535 5.593 0 5.593-3.535 11.185-3.535 5.593 0 5.593 3.535 11.185 3.535 5.593 0 5.593-3.535 11.186-3.535 5.592 0 5.592 3.535 11.185 3.535 5.592 0 5.592-3.535 11.185-3.535 5.593 0 5.593 3.535 11.185 3.535M.453 53.262c5.593 0 5.593 3.535 11.186 3.535 5.592 0 5.592-3.535 11.185-3.535 5.592 0 5.592 3.535 11.185 3.535 5.593 0 5.593-3.535 11.185-3.535 5.593 0 5.593 3.535 11.185 3.535 5.593 0 5.593-3.535 11.185-3.535 5.593 0 5.593 3.535 11.186 3.535 5.592 0 5.592-3.535 11.185-3.535 5.592 0 5.592 3.535 11.185 3.535 5.593 0 5.593-3.535 11.185-3.535 5.593 0 5.593 3.535 11.185 3.535 5.593 0 5.593-3.535 11.186-3.535 5.592 0 5.592 3.535 11.185 3.535 5.592 0 5.592-3.535 11.185-3.535 5.592 0 5.592 3.535 11.185 3.535 5.593 0 5.593-3.535 11.185-3.535 5.593 0 5.593 3.535 11.185 3.535 5.593 0 5.593-3.535 11.186-3.535 5.592 0 5.592 3.535 11.185 3.535 5.592 0 5.592-3.535 11.185-3.535 5.593 0 5.593 3.535 11.185 3.535M.453 138.596c5.593 0 5.593 3.536 11.186 3.536 5.592 0 5.592-3.536 11.185-3.536 5.592 0 5.592 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.186 3.536 5.592 0 5.592-3.536 11.185-3.536 5.592 0 5.592 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536 5.593 0 5.593-3.536 11.186-3.536 5.592 0 5.592 3.536 11.185 3.536 5.592 0 5.592-3.536 11.185-3.536 5.592 0 5.592 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536 5.593 0 5.593-3.536 11.186-3.536 5.592 0 5.592 3.536 11.185 3.536 5.592 0 5.592-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536M.453 16.69c5.593 0 5.593 3.535 11.186 3.535 5.592 0 5.592-3.535 11.185-3.535 5.592 0 5.592 3.535 11.185 3.535 5.593 0 5.593-3.535 11.185-3.535 5.593 0 5.593 3.535 11.185 3.535 5.593 0 5.593-3.535 11.185-3.535 5.593 0 5.593 3.535 11.186 3.535 5.592 0 5.592-3.535 11.185-3.535 5.592 0 5.592 3.535 11.185 3.535 5.593 0 5.593-3.535 11.185-3.535 5.593 0 5.593 3.535 11.185 3.535 5.593 0 5.593-3.535 11.186-3.535 5.592 0 5.592 3.535 11.185 3.535 5.592 0 5.592-3.535 11.185-3.535 5.592 0 5.592 3.535 11.185 3.535 5.593 0 5.593-3.535 11.185-3.535 5.593 0 5.593 3.535 11.185 3.535 5.593 0 5.593-3.535 11.186-3.535 5.592 0 5.592 3.535 11.185 3.535 5.592 0 5.592-3.535 11.185-3.535 5.593 0 5.593 3.535 11.185 3.535M.453 102.024c5.593 0 5.593 3.536 11.186 3.536 5.592 0 5.592-3.536 11.185-3.536 5.592 0 5.592 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.186 3.536 5.592 0 5.592-3.536 11.185-3.536 5.592 0 5.592 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536 5.593 0 5.593-3.536 11.186-3.536 5.592 0 5.592 3.536 11.185 3.536 5.592 0 5.592-3.536 11.185-3.536 5.592 0 5.592 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536 5.593 0 5.593-3.536 11.186-3.536 5.592 0 5.592 3.536 11.185 3.536 5.592 0 5.592-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536M.453 59.357c5.593 0 5.593 3.535 11.186 3.535 5.592 0 5.592-3.535 11.185-3.535 5.592 0 5.592 3.535 11.185 3.535 5.593 0 5.593-3.535 11.185-3.535 5.593 0 5.593 3.535 11.185 3.535 5.593 0 5.593-3.535 11.185-3.535 5.593 0 5.593 3.535 11.186 3.535 5.592 0 5.592-3.535 11.185-3.535 5.592 0 5.592 3.535 11.185 3.535 5.593 0 5.593-3.535 11.185-3.535 5.593 0 5.593 3.535 11.185 3.535 5.593 0 5.593-3.535 11.186-3.535 5.592 0 5.592 3.535 11.185 3.535 5.592 0 5.592-3.535 11.185-3.535 5.592 0 5.592 3.535 11.185 3.535 5.593 0 5.593-3.535 11.185-3.535 5.593 0 5.593 3.535 11.185 3.535 5.593 0 5.593-3.535 11.186-3.535 5.592 0 5.592 3.535 11.185 3.535 5.592 0 5.592-3.535 11.185-3.535 5.593 0 5.593 3.535 11.185 3.535M.453 144.691c5.593 0 5.593 3.536 11.186 3.536 5.592 0 5.592-3.536 11.185-3.536 5.592 0 5.592 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.186 3.536 5.592 0 5.592-3.536 11.185-3.536 5.592 0 5.592 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536 5.593 0 5.593-3.536 11.186-3.536 5.592 0 5.592 3.536 11.185 3.536 5.592 0 5.592-3.536 11.185-3.536 5.592 0 5.592 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536 5.593 0 5.593-3.536 11.186-3.536 5.592 0 5.592 3.536 11.185 3.536 5.592 0 5.592-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536M.453 22.785c5.593 0 5.593 3.536 11.186 3.536 5.592 0 5.592-3.536 11.185-3.536 5.592 0 5.592 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.186 3.536 5.592 0 5.592-3.536 11.185-3.536 5.592 0 5.592 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536 5.593 0 5.593-3.536 11.186-3.536 5.592 0 5.592 3.536 11.185 3.536 5.592 0 5.592-3.536 11.185-3.536 5.592 0 5.592 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536 5.593 0 5.593-3.536 11.186-3.536 5.592 0 5.592 3.536 11.185 3.536 5.592 0 5.592-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536M.453 108.12c5.593 0 5.593 3.535 11.186 3.535 5.592 0 5.592-3.536 11.185-3.536 5.592 0 5.592 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.186 3.536 5.592 0 5.592-3.536 11.185-3.536 5.592 0 5.592 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536 5.593 0 5.593-3.536 11.186-3.536 5.592 0 5.592 3.536 11.185 3.536 5.592 0 5.592-3.536 11.185-3.536 5.592 0 5.592 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536 5.593 0 5.593-3.536 11.186-3.536 5.592 0 5.592 3.536 11.185 3.536 5.592 0 5.592-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536M.453 65.452c5.593 0 5.593 3.536 11.186 3.536 5.592 0 5.592-3.536 11.185-3.536 5.592 0 5.592 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.186 3.536 5.592 0 5.592-3.536 11.185-3.536 5.592 0 5.592 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536 5.593 0 5.593-3.536 11.186-3.536 5.592 0 5.592 3.536 11.185 3.536 5.592 0 5.592-3.536 11.185-3.536 5.592 0 5.592 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536 5.593 0 5.593-3.536 11.186-3.536 5.592 0 5.592 3.536 11.185 3.536 5.592 0 5.592-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536M.453 150.787c5.593 0 5.593 3.535 11.186 3.535 5.592 0 5.592-3.535 11.185-3.535 5.592 0 5.592 3.535 11.185 3.535 5.593 0 5.593-3.535 11.185-3.535 5.593 0 5.593 3.535 11.185 3.535 5.593 0 5.593-3.535 11.185-3.535 5.593 0 5.593 3.535 11.186 3.535 5.592 0 5.592-3.535 11.185-3.535 5.592 0 5.592 3.535 11.185 3.535 5.593 0 5.593-3.535 11.185-3.535 5.593 0 5.593 3.535 11.185 3.535 5.593 0 5.593-3.535 11.186-3.535 5.592 0 5.592 3.535 11.185 3.535 5.592 0 5.592-3.535 11.185-3.535 5.592 0 5.592 3.535 11.185 3.535 5.593 0 5.593-3.535 11.185-3.535 5.593 0 5.593 3.535 11.185 3.535 5.593 0 5.593-3.535 11.186-3.535 5.592 0 5.592 3.535 11.185 3.535 5.592 0 5.592-3.535 11.185-3.535 5.593 0 5.593 3.535 11.185 3.535M.453 28.88c5.593 0 5.593 3.536 11.186 3.536 5.592 0 5.592-3.536 11.185-3.536 5.592 0 5.592 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.186 3.536 5.592 0 5.592-3.536 11.185-3.536 5.592 0 5.592 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536 5.593 0 5.593-3.536 11.186-3.536 5.592 0 5.592 3.536 11.185 3.536 5.592 0 5.592-3.536 11.185-3.536 5.592 0 5.592 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536 5.593 0 5.593-3.536 11.186-3.536 5.592 0 5.592 3.536 11.185 3.536 5.592 0 5.592-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536M.453 114.215c5.593 0 5.593 3.535 11.186 3.535 5.592 0 5.592-3.535 11.185-3.535 5.592 0 5.592 3.535 11.185 3.535 5.593 0 5.593-3.535 11.185-3.535 5.593 0 5.593 3.535 11.185 3.535 5.593 0 5.593-3.535 11.185-3.535 5.593 0 5.593 3.535 11.186 3.535 5.592 0 5.592-3.535 11.185-3.535 5.592 0 5.592 3.535 11.185 3.535 5.593 0 5.593-3.535 11.185-3.535 5.593 0 5.593 3.535 11.185 3.535 5.593 0 5.593-3.535 11.186-3.535 5.592 0 5.592 3.535 11.185 3.535 5.592 0 5.592-3.535 11.185-3.535 5.592 0 5.592 3.535 11.185 3.535 5.593 0 5.593-3.535 11.185-3.535 5.593 0 5.593 3.535 11.185 3.535 5.593 0 5.593-3.535 11.186-3.535 5.592 0 5.592 3.535 11.185 3.535 5.592 0 5.592-3.535 11.185-3.535 5.593 0 5.593 3.535 11.185 3.535M.453 71.547c5.593 0 5.593 3.536 11.186 3.536 5.592 0 5.592-3.536 11.185-3.536 5.592 0 5.592 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.186 3.536 5.592 0 5.592-3.536 11.185-3.536 5.592 0 5.592 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536 5.593 0 5.593-3.536 11.186-3.536 5.592 0 5.592 3.536 11.185 3.536 5.592 0 5.592-3.536 11.185-3.536 5.592 0 5.592 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536 5.593 0 5.593-3.536 11.186-3.536 5.592 0 5.592 3.536 11.185 3.536 5.592 0 5.592-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536M.453 156.882c5.593 0 5.593 3.536 11.186 3.536 5.592 0 5.592-3.536 11.185-3.536 5.592 0 5.592 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.186 3.536 5.592 0 5.592-3.536 11.185-3.536 5.592 0 5.592 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536 5.593 0 5.593-3.536 11.186-3.536 5.592 0 5.592 3.536 11.185 3.536 5.592 0 5.592-3.536 11.185-3.536 5.592 0 5.592 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536 5.593 0 5.593-3.536 11.186-3.536 5.592 0 5.592 3.536 11.185 3.536 5.592 0 5.592-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536M.453 34.976c5.593 0 5.593 3.535 11.186 3.535 5.592 0 5.592-3.535 11.185-3.535 5.592 0 5.592 3.535 11.185 3.535 5.593 0 5.593-3.535 11.185-3.535 5.593 0 5.593 3.535 11.185 3.535 5.593 0 5.593-3.535 11.185-3.535 5.593 0 5.593 3.535 11.186 3.535 5.592 0 5.592-3.535 11.185-3.535 5.592 0 5.592 3.535 11.185 3.535 5.593 0 5.593-3.535 11.185-3.535 5.593 0 5.593 3.535 11.185 3.535 5.593 0 5.593-3.535 11.186-3.535 5.592 0 5.592 3.535 11.185 3.535 5.592 0 5.592-3.535 11.185-3.535 5.592 0 5.592 3.535 11.185 3.535 5.593 0 5.593-3.535 11.185-3.535 5.593 0 5.593 3.535 11.185 3.535 5.593 0 5.593-3.535 11.186-3.535 5.592 0 5.592 3.535 11.185 3.535 5.592 0 5.592-3.535 11.185-3.535 5.593 0 5.593 3.535 11.185 3.535M.453 120.31c5.593 0 5.593 3.536 11.186 3.536 5.592 0 5.592-3.536 11.185-3.536 5.592 0 5.592 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.186 3.536 5.592 0 5.592-3.536 11.185-3.536 5.592 0 5.592 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536 5.593 0 5.593-3.536 11.186-3.536 5.592 0 5.592 3.536 11.185 3.536 5.592 0 5.592-3.536 11.185-3.536 5.592 0 5.592 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536 5.593 0 5.593-3.536 11.186-3.536 5.592 0 5.592 3.536 11.185 3.536 5.592 0 5.592-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536M.453 77.643c5.593 0 5.593 3.535 11.186 3.535 5.592 0 5.592-3.535 11.185-3.535 5.592 0 5.592 3.535 11.185 3.535 5.593 0 5.593-3.535 11.185-3.535 5.593 0 5.593 3.535 11.185 3.535 5.593 0 5.593-3.535 11.185-3.535 5.593 0 5.593 3.535 11.186 3.535 5.592 0 5.592-3.535 11.185-3.535 5.592 0 5.592 3.535 11.185 3.535 5.593 0 5.593-3.535 11.185-3.535 5.593 0 5.593 3.535 11.185 3.535 5.593 0 5.593-3.535 11.186-3.535 5.592 0 5.592 3.535 11.185 3.535 5.592 0 5.592-3.535 11.185-3.535 5.592 0 5.592 3.535 11.185 3.535 5.593 0 5.593-3.535 11.185-3.535 5.593 0 5.593 3.535 11.185 3.535 5.593 0 5.593-3.535 11.186-3.535 5.592 0 5.592 3.535 11.185 3.535 5.592 0 5.592-3.535 11.185-3.535 5.593 0 5.593 3.535 11.185 3.535M.453 162.977c5.593 0 5.593 3.536 11.186 3.536 5.592 0 5.592-3.536 11.185-3.536 5.592 0 5.592 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.186 3.536 5.592 0 5.592-3.536 11.185-3.536 5.592 0 5.592 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536 5.593 0 5.593-3.536 11.186-3.536 5.592 0 5.592 3.536 11.185 3.536 5.592 0 5.592-3.536 11.185-3.536 5.592 0 5.592 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536 5.593 0 5.593-3.536 11.186-3.536 5.592 0 5.592 3.536 11.185 3.536 5.592 0 5.592-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536M.453 41.07c5.593 0 5.593 3.537 11.186 3.537 5.592 0 5.592-3.536 11.185-3.536 5.592 0 5.592 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.186 3.536 5.592 0 5.592-3.536 11.185-3.536 5.592 0 5.592 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536 5.593 0 5.593-3.536 11.186-3.536 5.592 0 5.592 3.536 11.185 3.536 5.592 0 5.592-3.536 11.185-3.536 5.592 0 5.592 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536 5.593 0 5.593-3.536 11.186-3.536 5.592 0 5.592 3.536 11.185 3.536 5.592 0 5.592-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536M.453 126.405c5.593 0 5.593 3.536 11.186 3.536 5.592 0 5.592-3.536 11.185-3.536 5.592 0 5.592 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.186 3.536 5.592 0 5.592-3.536 11.185-3.536 5.592 0 5.592 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536 5.593 0 5.593-3.536 11.186-3.536 5.592 0 5.592 3.536 11.185 3.536 5.592 0 5.592-3.536 11.185-3.536 5.592 0 5.592 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536 5.593 0 5.593-3.536 11.186-3.536 5.592 0 5.592 3.536 11.185 3.536 5.592 0 5.592-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536M.453 83.738c5.593 0 5.593 3.536 11.186 3.536 5.592 0 5.592-3.536 11.185-3.536 5.592 0 5.592 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.186 3.536 5.592 0 5.592-3.536 11.185-3.536 5.592 0 5.592 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536 5.593 0 5.593-3.536 11.186-3.536 5.592 0 5.592 3.536 11.185 3.536 5.592 0 5.592-3.536 11.185-3.536 5.592 0 5.592 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536 5.593 0 5.593-3.536 11.186-3.536 5.592 0 5.592 3.536 11.185 3.536 5.592 0 5.592-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536' opacity='.1' style='mix-blend-mode:multiply'/%3E%3Cpath d='M.453 86.716c5.593 0 5.593 3.536 11.186 3.536 5.592 0 5.592-3.536 11.185-3.536 5.592 0 5.592 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.186 3.536 5.592 0 5.592-3.536 11.185-3.536 5.592 0 5.592 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536 5.593 0 5.593-3.536 11.186-3.536 5.592 0 5.592 3.536 11.185 3.536 5.592 0 5.592-3.536 11.185-3.536 5.592 0 5.592 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536 5.593 0 5.593-3.536 11.186-3.536 5.592 0 5.592 3.536 11.185 3.536 5.592 0 5.592-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536M.453 44.05c5.593 0 5.593 3.535 11.186 3.535 5.592 0 5.592-3.536 11.185-3.536 5.592 0 5.592 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.186 3.536 5.592 0 5.592-3.536 11.185-3.536 5.592 0 5.592 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536 5.593 0 5.593-3.536 11.186-3.536 5.592 0 5.592 3.536 11.185 3.536 5.592 0 5.592-3.536 11.185-3.536 5.592 0 5.592 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536 5.593 0 5.593-3.536 11.186-3.536 5.592 0 5.592 3.536 11.185 3.536 5.592 0 5.592-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536M.453 129.384c5.593 0 5.593 3.535 11.186 3.535 5.592 0 5.592-3.535 11.185-3.535 5.592 0 5.592 3.535 11.185 3.535 5.593 0 5.593-3.535 11.185-3.535 5.593 0 5.593 3.535 11.185 3.535 5.593 0 5.593-3.535 11.185-3.535 5.593 0 5.593 3.535 11.186 3.535 5.592 0 5.592-3.535 11.185-3.535 5.592 0 5.592 3.535 11.185 3.535 5.593 0 5.593-3.535 11.185-3.535 5.593 0 5.593 3.535 11.185 3.535 5.593 0 5.593-3.535 11.186-3.535 5.592 0 5.592 3.535 11.185 3.535 5.592 0 5.592-3.535 11.185-3.535 5.592 0 5.592 3.535 11.185 3.535 5.593 0 5.593-3.535 11.185-3.535 5.593 0 5.593 3.535 11.185 3.535 5.593 0 5.593-3.535 11.186-3.535 5.592 0 5.592 3.535 11.185 3.535 5.592 0 5.592-3.535 11.185-3.535 5.593 0 5.593 3.535 11.185 3.535M.453 7.477c5.593 0 5.593 3.536 11.186 3.536 5.592 0 5.592-3.536 11.185-3.536 5.592 0 5.592 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.186 3.536 5.592 0 5.592-3.536 11.185-3.536 5.592 0 5.592 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536 5.593 0 5.593-3.536 11.186-3.536 5.592 0 5.592 3.536 11.185 3.536 5.592 0 5.592-3.536 11.185-3.536 5.592 0 5.592 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536 5.593 0 5.593-3.536 11.186-3.536 5.592 0 5.592 3.536 11.185 3.536 5.592 0 5.592-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536M.453 92.812c5.593 0 5.593 3.535 11.186 3.535 5.592 0 5.592-3.535 11.185-3.535 5.592 0 5.592 3.535 11.185 3.535 5.593 0 5.593-3.535 11.185-3.535 5.593 0 5.593 3.535 11.185 3.535 5.593 0 5.593-3.535 11.185-3.535 5.593 0 5.593 3.535 11.186 3.535 5.592 0 5.592-3.535 11.185-3.535 5.592 0 5.592 3.535 11.185 3.535 5.593 0 5.593-3.535 11.185-3.535 5.593 0 5.593 3.535 11.185 3.535 5.593 0 5.593-3.535 11.186-3.535 5.592 0 5.592 3.535 11.185 3.535 5.592 0 5.592-3.535 11.185-3.535 5.592 0 5.592 3.535 11.185 3.535 5.593 0 5.593-3.535 11.185-3.535 5.593 0 5.593 3.535 11.185 3.535 5.593 0 5.593-3.535 11.186-3.535 5.592 0 5.592 3.535 11.185 3.535 5.592 0 5.592-3.535 11.185-3.535 5.593 0 5.593 3.535 11.185 3.535M.453 50.145c5.593 0 5.593 3.535 11.186 3.535 5.592 0 5.592-3.535 11.185-3.535 5.592 0 5.592 3.535 11.185 3.535 5.593 0 5.593-3.535 11.185-3.535 5.593 0 5.593 3.535 11.185 3.535 5.593 0 5.593-3.535 11.185-3.535 5.593 0 5.593 3.535 11.186 3.535 5.592 0 5.592-3.535 11.185-3.535 5.592 0 5.592 3.535 11.185 3.535 5.593 0 5.593-3.535 11.185-3.535 5.593 0 5.593 3.535 11.185 3.535 5.593 0 5.593-3.535 11.186-3.535 5.592 0 5.592 3.535 11.185 3.535 5.592 0 5.592-3.535 11.185-3.535 5.592 0 5.592 3.535 11.185 3.535 5.593 0 5.593-3.535 11.185-3.535 5.593 0 5.593 3.535 11.185 3.535 5.593 0 5.593-3.535 11.186-3.535 5.592 0 5.592 3.535 11.185 3.535 5.592 0 5.592-3.535 11.185-3.535 5.593 0 5.593 3.535 11.185 3.535M.453 135.48c5.593 0 5.593 3.535 11.186 3.535 5.592 0 5.592-3.536 11.185-3.536 5.592 0 5.592 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.186 3.536 5.592 0 5.592-3.536 11.185-3.536 5.592 0 5.592 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536 5.593 0 5.593-3.536 11.186-3.536 5.592 0 5.592 3.536 11.185 3.536 5.592 0 5.592-3.536 11.185-3.536 5.592 0 5.592 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536 5.593 0 5.593-3.536 11.186-3.536 5.592 0 5.592 3.536 11.185 3.536 5.592 0 5.592-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536M.453 13.573c5.593 0 5.593 3.535 11.186 3.535 5.592 0 5.592-3.535 11.185-3.535 5.592 0 5.592 3.535 11.185 3.535 5.593 0 5.593-3.535 11.185-3.535 5.593 0 5.593 3.535 11.185 3.535 5.593 0 5.593-3.535 11.185-3.535 5.593 0 5.593 3.535 11.186 3.535 5.592 0 5.592-3.535 11.185-3.535 5.592 0 5.592 3.535 11.185 3.535 5.593 0 5.593-3.535 11.185-3.535 5.593 0 5.593 3.535 11.185 3.535 5.593 0 5.593-3.535 11.186-3.535 5.592 0 5.592 3.535 11.185 3.535 5.592 0 5.592-3.535 11.185-3.535 5.592 0 5.592 3.535 11.185 3.535 5.593 0 5.593-3.535 11.185-3.535 5.593 0 5.593 3.535 11.185 3.535 5.593 0 5.593-3.535 11.186-3.535 5.592 0 5.592 3.535 11.185 3.535 5.592 0 5.592-3.535 11.185-3.535 5.593 0 5.593 3.535 11.185 3.535M.453 98.907c5.593 0 5.593 3.536 11.186 3.536 5.592 0 5.592-3.536 11.185-3.536 5.592 0 5.592 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.186 3.536 5.592 0 5.592-3.536 11.185-3.536 5.592 0 5.592 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536 5.593 0 5.593-3.536 11.186-3.536 5.592 0 5.592 3.536 11.185 3.536 5.592 0 5.592-3.536 11.185-3.536 5.592 0 5.592 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536 5.593 0 5.593-3.536 11.186-3.536 5.592 0 5.592 3.536 11.185 3.536 5.592 0 5.592-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536M.453 56.24c5.593 0 5.593 3.536 11.186 3.536 5.592 0 5.592-3.536 11.185-3.536 5.592 0 5.592 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.186 3.536 5.592 0 5.592-3.536 11.185-3.536 5.592 0 5.592 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536 5.593 0 5.593-3.536 11.186-3.536 5.592 0 5.592 3.536 11.185 3.536 5.592 0 5.592-3.536 11.185-3.536 5.592 0 5.592 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536 5.593 0 5.593-3.536 11.186-3.536 5.592 0 5.592 3.536 11.185 3.536 5.592 0 5.592-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536M.453 141.574c5.593 0 5.593 3.536 11.186 3.536 5.592 0 5.592-3.536 11.185-3.536 5.592 0 5.592 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.186 3.536 5.592 0 5.592-3.536 11.185-3.536 5.592 0 5.592 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536 5.593 0 5.593-3.536 11.186-3.536 5.592 0 5.592 3.536 11.185 3.536 5.592 0 5.592-3.536 11.185-3.536 5.592 0 5.592 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536 5.593 0 5.593-3.536 11.186-3.536 5.592 0 5.592 3.536 11.185 3.536 5.592 0 5.592-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536M.453 19.668c5.593 0 5.593 3.536 11.186 3.536 5.592 0 5.592-3.536 11.185-3.536 5.592 0 5.592 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.186 3.536 5.592 0 5.592-3.536 11.185-3.536 5.592 0 5.592 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536 5.593 0 5.593-3.536 11.186-3.536 5.592 0 5.592 3.536 11.185 3.536 5.592 0 5.592-3.536 11.185-3.536 5.592 0 5.592 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536 5.593 0 5.593-3.536 11.186-3.536 5.592 0 5.592 3.536 11.185 3.536 5.592 0 5.592-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536M.453 105.002c5.593 0 5.593 3.536 11.186 3.536 5.592 0 5.592-3.536 11.185-3.536 5.592 0 5.592 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.186 3.536 5.592 0 5.592-3.536 11.185-3.536 5.592 0 5.592 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536 5.593 0 5.593-3.536 11.186-3.536 5.592 0 5.592 3.536 11.185 3.536 5.592 0 5.592-3.536 11.185-3.536 5.592 0 5.592 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536 5.593 0 5.593-3.536 11.186-3.536 5.592 0 5.592 3.536 11.185 3.536 5.592 0 5.592-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536M.453 62.335c5.593 0 5.593 3.536 11.186 3.536 5.592 0 5.592-3.536 11.185-3.536 5.592 0 5.592 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.186 3.536 5.592 0 5.592-3.536 11.185-3.536 5.592 0 5.592 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536 5.593 0 5.593-3.536 11.186-3.536 5.592 0 5.592 3.536 11.185 3.536 5.592 0 5.592-3.536 11.185-3.536 5.592 0 5.592 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536 5.593 0 5.593-3.536 11.186-3.536 5.592 0 5.592 3.536 11.185 3.536 5.592 0 5.592-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536M.453 147.67c5.593 0 5.593 3.535 11.186 3.535 5.592 0 5.592-3.535 11.185-3.535 5.592 0 5.592 3.535 11.185 3.535 5.593 0 5.593-3.535 11.185-3.535 5.593 0 5.593 3.535 11.185 3.535 5.593 0 5.593-3.535 11.185-3.535 5.593 0 5.593 3.535 11.186 3.535 5.592 0 5.592-3.535 11.185-3.535 5.592 0 5.592 3.535 11.185 3.535 5.593 0 5.593-3.535 11.185-3.535 5.593 0 5.593 3.535 11.185 3.535 5.593 0 5.593-3.535 11.186-3.535 5.592 0 5.592 3.535 11.185 3.535 5.592 0 5.592-3.535 11.185-3.535 5.592 0 5.592 3.535 11.185 3.535 5.593 0 5.593-3.535 11.185-3.535 5.593 0 5.593 3.535 11.185 3.535 5.593 0 5.593-3.535 11.186-3.535 5.592 0 5.592 3.535 11.185 3.535 5.592 0 5.592-3.535 11.185-3.535 5.593 0 5.593 3.535 11.185 3.535M.453 25.763c5.593 0 5.593 3.536 11.186 3.536 5.592 0 5.592-3.536 11.185-3.536 5.592 0 5.592 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.186 3.536 5.592 0 5.592-3.536 11.185-3.536 5.592 0 5.592 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536 5.593 0 5.593-3.536 11.186-3.536 5.592 0 5.592 3.536 11.185 3.536 5.592 0 5.592-3.536 11.185-3.536 5.592 0 5.592 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536 5.593 0 5.593-3.536 11.186-3.536 5.592 0 5.592 3.536 11.185 3.536 5.592 0 5.592-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536M.453 111.098c5.593 0 5.593 3.535 11.186 3.535 5.592 0 5.592-3.535 11.185-3.535 5.592 0 5.592 3.535 11.185 3.535 5.593 0 5.593-3.535 11.185-3.535 5.593 0 5.593 3.535 11.185 3.535 5.593 0 5.593-3.535 11.185-3.535 5.593 0 5.593 3.535 11.186 3.535 5.592 0 5.592-3.535 11.185-3.535 5.592 0 5.592 3.535 11.185 3.535 5.593 0 5.593-3.535 11.185-3.535 5.593 0 5.593 3.535 11.185 3.535 5.593 0 5.593-3.535 11.186-3.535 5.592 0 5.592 3.535 11.185 3.535 5.592 0 5.592-3.535 11.185-3.535 5.592 0 5.592 3.535 11.185 3.535 5.593 0 5.593-3.535 11.185-3.535 5.593 0 5.593 3.535 11.185 3.535 5.593 0 5.593-3.535 11.186-3.535 5.592 0 5.592 3.535 11.185 3.535 5.592 0 5.592-3.535 11.185-3.535 5.593 0 5.593 3.535 11.185 3.535M.453 68.43c5.593 0 5.593 3.536 11.186 3.536 5.592 0 5.592-3.535 11.185-3.535 5.592 0 5.592 3.535 11.185 3.535 5.593 0 5.593-3.535 11.185-3.535 5.593 0 5.593 3.535 11.185 3.535 5.593 0 5.593-3.535 11.185-3.535 5.593 0 5.593 3.535 11.186 3.535 5.592 0 5.592-3.535 11.185-3.535 5.592 0 5.592 3.535 11.185 3.535 5.593 0 5.593-3.535 11.185-3.535 5.593 0 5.593 3.535 11.185 3.535 5.593 0 5.593-3.535 11.186-3.535 5.592 0 5.592 3.535 11.185 3.535 5.592 0 5.592-3.535 11.185-3.535 5.592 0 5.592 3.535 11.185 3.535 5.593 0 5.593-3.535 11.185-3.535 5.593 0 5.593 3.535 11.185 3.535 5.593 0 5.593-3.535 11.186-3.535 5.592 0 5.592 3.535 11.185 3.535 5.592 0 5.592-3.535 11.185-3.535 5.593 0 5.593 3.535 11.185 3.535M.453 153.765c5.593 0 5.593 3.536 11.186 3.536 5.592 0 5.592-3.536 11.185-3.536 5.592 0 5.592 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.186 3.536 5.592 0 5.592-3.536 11.185-3.536 5.592 0 5.592 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536 5.593 0 5.593-3.536 11.186-3.536 5.592 0 5.592 3.536 11.185 3.536 5.592 0 5.592-3.536 11.185-3.536 5.592 0 5.592 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536 5.593 0 5.593-3.536 11.186-3.536 5.592 0 5.592 3.536 11.185 3.536 5.592 0 5.592-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536M.453 31.859c5.593 0 5.593 3.535 11.186 3.535 5.592 0 5.592-3.535 11.185-3.535 5.592 0 5.592 3.535 11.185 3.535 5.593 0 5.593-3.535 11.185-3.535 5.593 0 5.593 3.535 11.185 3.535 5.593 0 5.593-3.535 11.185-3.535 5.593 0 5.593 3.535 11.186 3.535 5.592 0 5.592-3.535 11.185-3.535 5.592 0 5.592 3.535 11.185 3.535 5.593 0 5.593-3.535 11.185-3.535 5.593 0 5.593 3.535 11.185 3.535 5.593 0 5.593-3.535 11.186-3.535 5.592 0 5.592 3.535 11.185 3.535 5.592 0 5.592-3.535 11.185-3.535 5.592 0 5.592 3.535 11.185 3.535 5.593 0 5.593-3.535 11.185-3.535 5.593 0 5.593 3.535 11.185 3.535 5.593 0 5.593-3.535 11.186-3.535 5.592 0 5.592 3.535 11.185 3.535 5.592 0 5.592-3.535 11.185-3.535 5.593 0 5.593 3.535 11.185 3.535M.453 117.193c5.593 0 5.593 3.536 11.186 3.536 5.592 0 5.592-3.536 11.185-3.536 5.592 0 5.592 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.186 3.536 5.592 0 5.592-3.536 11.185-3.536 5.592 0 5.592 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536 5.593 0 5.593-3.536 11.186-3.536 5.592 0 5.592 3.536 11.185 3.536 5.592 0 5.592-3.536 11.185-3.536 5.592 0 5.592 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536 5.593 0 5.593-3.536 11.186-3.536 5.592 0 5.592 3.536 11.185 3.536 5.592 0 5.592-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536M.453 74.526c5.593 0 5.593 3.535 11.186 3.535 5.592 0 5.592-3.535 11.185-3.535 5.592 0 5.592 3.535 11.185 3.535 5.593 0 5.593-3.535 11.185-3.535 5.593 0 5.593 3.535 11.185 3.535 5.593 0 5.593-3.535 11.185-3.535 5.593 0 5.593 3.535 11.186 3.535 5.592 0 5.592-3.535 11.185-3.535 5.592 0 5.592 3.535 11.185 3.535 5.593 0 5.593-3.535 11.185-3.535 5.593 0 5.593 3.535 11.185 3.535 5.593 0 5.593-3.535 11.186-3.535 5.592 0 5.592 3.535 11.185 3.535 5.592 0 5.592-3.535 11.185-3.535 5.592 0 5.592 3.535 11.185 3.535 5.593 0 5.593-3.535 11.185-3.535 5.593 0 5.593 3.535 11.185 3.535 5.593 0 5.593-3.535 11.186-3.535 5.592 0 5.592 3.535 11.185 3.535 5.592 0 5.592-3.535 11.185-3.535 5.593 0 5.593 3.535 11.185 3.535M.453 159.86c5.593 0 5.593 3.536 11.186 3.536 5.592 0 5.592-3.536 11.185-3.536 5.592 0 5.592 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.186 3.536 5.592 0 5.592-3.536 11.185-3.536 5.592 0 5.592 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536 5.593 0 5.593-3.536 11.186-3.536 5.592 0 5.592 3.536 11.185 3.536 5.592 0 5.592-3.536 11.185-3.536 5.592 0 5.592 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536 5.593 0 5.593-3.536 11.186-3.536 5.592 0 5.592 3.536 11.185 3.536 5.592 0 5.592-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536M.453 37.954c5.593 0 5.593 3.536 11.186 3.536 5.592 0 5.592-3.536 11.185-3.536 5.592 0 5.592 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.186 3.536 5.592 0 5.592-3.536 11.185-3.536 5.592 0 5.592 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536 5.593 0 5.593-3.536 11.186-3.536 5.592 0 5.592 3.536 11.185 3.536 5.592 0 5.592-3.536 11.185-3.536 5.592 0 5.592 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536 5.593 0 5.593-3.536 11.186-3.536 5.592 0 5.592 3.536 11.185 3.536 5.592 0 5.592-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536M.453 123.288c5.593 0 5.593 3.536 11.186 3.536 5.592 0 5.592-3.536 11.185-3.536 5.592 0 5.592 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.186 3.536 5.592 0 5.592-3.536 11.185-3.536 5.592 0 5.592 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536 5.593 0 5.593-3.536 11.186-3.536 5.592 0 5.592 3.536 11.185 3.536 5.592 0 5.592-3.536 11.185-3.536 5.592 0 5.592 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536 5.593 0 5.593-3.536 11.186-3.536 5.592 0 5.592 3.536 11.185 3.536 5.592 0 5.592-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536M.453 80.621c5.593 0 5.593 3.536 11.186 3.536 5.592 0 5.592-3.536 11.185-3.536 5.592 0 5.592 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.186 3.536 5.592 0 5.592-3.536 11.185-3.536 5.592 0 5.592 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536 5.593 0 5.593-3.536 11.186-3.536 5.592 0 5.592 3.536 11.185 3.536 5.592 0 5.592-3.536 11.185-3.536 5.592 0 5.592 3.536 11.185 3.536 5.593 0 5.593-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536 5.593 0 5.593-3.536 11.186-3.536 5.592 0 5.592 3.536 11.185 3.536 5.592 0 5.592-3.536 11.185-3.536 5.593 0 5.593 3.536 11.185 3.536' opacity='.15' style='mix-blend-mode:multiply'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cpath stroke='%23FFF' stroke-width='1.5' d='M12.046.75A8.796 8.796 0 0 0 3.25 9.546v132.908a8.796 8.796 0 0 0 8.796 8.796h230.908a8.796 8.796 0 0 0 8.796-8.796V9.546A8.796 8.796 0 0 0 242.954.75H12.046z'/%3E%3C/g%3E%3C/svg%3E");
    -webkit-background-size: 100% auto;
    background-size: 100% auto;
    font-size: 16px;
    height: 9.75em;
    margin: 0 auto;
    position: relative;
    width: 15.9375em;
}
.identification-card .identification-card-avatar {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='73' height='79'%3E%3Cdefs%3E%3ClinearGradient id='a' x1='82.569%25' x2='0%25' y1='61.356%25' y2='61.356%25'%3E%3Cstop offset='0%25' stop-color='%23ACD9CA'/%3E%3Cstop offset='29.488%25' stop-color='%23E0FFE6'/%3E%3Cstop offset='100%25' stop-color='%23ADC99E'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg transform='translate(7 2)'%3E%3Crect width='64' height='64' fill='%23FFF' fill-opacity='.704' rx='4.617'/%3E%3Crect width='64' height='64' fill='%23FFF' fill-opacity='.5' rx='4.617'/%3E%3Cpath fill='%23A6B4C8' d='M37.664 21.918a24.771 24.771 0 0 1-12.934 3.609c-.906 0-1.8-.065-2.683-.16.911-4.63 4.996-8.134 9.888-8.134 2.127 0 4.1.666 5.729 1.796v2.889zm0 0a26.013 26.013 0 0 0 1.83-1.252 10.057 10.057 0 0 1 2.355 4.86h-4.185v-3.608zm0-2.89c.676.47 1.288 1.021 1.83 1.638-.591.44-1.199.86-1.83 1.252v-2.89z'/%3E%3Cpath fill='%237F90AC' d='M31.935 37.393c-5.553 0-10.076-4.521-10.076-10.076 0-.674.065-1.315.184-1.945.914-4.63 5-8.142 9.892-8.142 2.13 0 4.099.674 5.73 1.794a10.48 10.48 0 0 1 1.824 1.641 9.94 9.94 0 0 1 2.359 4.859c.11.587.174 1.184.174 1.793 0 5.555-4.533 10.076-10.087 10.076m0-21.793c-6.456 0-11.707 5.26-11.707 11.717 0 6.457 5.251 11.707 11.707 11.707s11.717-5.25 11.717-11.707c0-6.456-5.26-11.717-11.717-11.717M14.433 48.322a.816.816 0 0 0 1.628.085 5.684 5.684 0 0 1 5.682-5.39H42.13a5.69 5.69 0 0 1 5.678 5.35c.026.45.428.781.862.767a.816.816 0 0 0 .766-.862c-.226-3.86-3.434-6.884-7.306-6.884H21.743a7.314 7.314 0 0 0-7.31 6.934'/%3E%3C/g%3E%3Cpath fill='url(%23a)' fill-rule='nonzero' d='M35.498 60.862c-.475-.35-1.068-.787-1.145-1.075-.085-.316.217-1.013.46-1.571.418-.96.85-1.954.37-2.782-.484-.838-1.57-.96-2.621-1.078-.598-.067-1.343-.15-1.567-.374-.224-.224-.307-.967-.374-1.566-.118-1.05-.241-2.135-1.08-2.62-.829-.481-1.821-.049-2.78.37-.558.242-1.254.545-1.573.46-.29-.076-.727-.668-1.077-1.144-.604-.82-1.29-1.75-2.28-1.75-.989 0-1.675.93-2.279 1.749-.35.474-.786 1.066-1.075 1.144-.316.08-1.013-.217-1.572-.461-.96-.418-1.953-.85-2.783-.37-.839.485-.961 1.57-1.079 2.62-.067.598-.15 1.343-.374 1.567-.224.224-.968.307-1.567.374-1.05.118-2.137.24-2.622 1.078-.48.827-.048 1.82.37 2.78.243.559.546 1.254.461 1.572-.076.289-.669.726-1.145 1.075-.82.605-1.75 1.29-1.75 2.28 0 .988.93 1.674 1.749 2.277.475.35 1.067.786 1.145 1.074.084.316-.217 1.013-.461 1.572-.417.96-.849 1.953-.37 2.781.485.839 1.57.96 2.622 1.079.598.066 1.343.15 1.567.373.224.224.307.969.374 1.566.118 1.05.24 2.136 1.077 2.62.829.48 1.822.05 2.783-.369.558-.242 1.254-.544 1.573-.46.29.076.726.668 1.076 1.143.605.82 1.291 1.75 2.28 1.75.99 0 1.676-.93 2.28-1.748.35-.474.787-1.067 1.076-1.144.315-.087 1.012.217 1.572.46.961.417 1.952.851 2.783.37.839-.485.96-1.57 1.079-2.62.066-.6.15-1.343.372-1.566.223-.224.968-.307 1.568-.374 1.05-.118 2.136-.241 2.622-1.079.48-.826.048-1.819-.37-2.78-.243-.558-.546-1.254-.462-1.571.077-.29.67-.726 1.145-1.076.82-.604 1.75-1.29 1.75-2.279 0-.988-.93-1.674-1.748-2.277z' opacity='.503' style='mix-blend-mode:multiply' transform='rotate(-45 18.331 71.589)'/%3E%3C/g%3E%3C/svg%3E");
    -webkit-background-size: 100% auto;
    background-size: 100% auto;
    height: 4.9375em;
    left: 1.25em;
    position: absolute;
    top: 2.5em;
    width: 4.5625em;
}
.identification-card ul {
    background-repeat: no-repeat;
    -webkit-box-sizing: initial;
    -moz-box-sizing: initial;
    box-sizing: initial;
    display: block;
    height: 6.125em;
    list-style: none;
    padding: 3.3125em 0 0 6.5625em;
}
@-webkit-keyframes identification-card-fade-in {
    0% {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes identification-card-fade-in {
    0% {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.identification-card ul li {
    color: #666;
    font-family: Roboto Mono, monospace;
    font-size: 0.6875em;
    line-height: 1.75em;
    margin-right: 0.75em;
    overflow: hidden;
    padding-left: 0;
}
.identification-card ul li span {
    color: #000;
}
.identification-card ul li span.show-placeholder {
    -webkit-animation: identification-card-fade-in 0.4s;
    animation: identification-card-fade-in 0.4s;
    color: gray;
}
.identification-card ul li:nth-child(2) {
    font-size: 0.875em;
    letter-spacing: 0.09375em;
}
.payment-extra-data {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjg1IDE4NyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+PGRlZnM+PHBhdGggaWQ9ImIiIGQ9Ik0yNTAuNzA1IDE0OS41NTdjLS4zMiAxLjIxOS0xLjk4NSAxLjczOS0zIC43NzVhMS44NTcgMS44NTcgMCAwIDAtMi41MyAwbC0xLjc5IDEuNjk4YTEuODU4IDEuODU4IDAgMCAxLTIuNTMgMGwtMS43OS0xLjY5OGExLjg1NyAxLjg1NyAwIDAgMC0yLjUzIDBsLTEuNzg5IDEuNjk4YTEuODU4IDEuODU4IDAgMCAxLTIuNTMgMGwtMS43ODktMS42OThhMS44NTcgMS44NTcgMCAwIDAtMi41MyAwbC0xLjc4OSAxLjY5OGExLjg1OCAxLjg1OCAwIDAgMS0yLjUzIDBsLTEuNzktMS42OThhMS44NTcgMS44NTcgMCAwIDAtMi41MyAwbC0xLjc4OSAxLjY5OGExLjg1OCAxLjg1OCAwIDAgMS0yLjUzIDBsLTEuNzktMS42OThhMS44NTcgMS44NTcgMCAwIDAtMi41MyAwbC0xLjc4OSAxLjY5OGExLjg1NyAxLjg1NyAwIDAgMS0yLjUzIDBsLTEuNzktMS42OThhMS44NTcgMS44NTcgMCAwIDAtMi41MyAwbC0xLjc4OSAxLjY5OGExLjg1OCAxLjg1OCAwIDAgMS0yLjUzIDBsLTEuNzg5LTEuNjk4YTEuODU3IDEuODU3IDAgMCAwLTIuNTMgMGwtMS43OSAxLjY5OGExLjg1NyAxLjg1NyAwIDAgMS0yLjUzIDBsLTEuNzg5LTEuNjk4YTEuODU3IDEuODU3IDAgMCAwLTIuNTMgMGwtMS43ODkgMS42OThhMS44NTggMS44NTggMCAwIDEtMi41MyAwbC0xLjc5LTEuNjk4YTEuODU3IDEuODU3IDAgMCAwLTIuNTMgMGwtMS43ODkgMS42OThhMS44NTcgMS44NTcgMCAwIDEtMi41MyAwbC0xLjc5LTEuNjk4YTEuODU3IDEuODU3IDAgMCAwLTIuNTMgMGwtMS43ODkgMS42OThhMS44NTggMS44NTggMCAwIDEtMi41MyAwbC0xLjc5LTEuNjk4YTEuODU3IDEuODU3IDAgMCAwLTIuNTMgMGwtMS43ODkgMS42OThhMS44NTcgMS44NTcgMCAwIDEtMi41MyAwbC0xLjc4OS0xLjY5OGExLjg1NyAxLjg1NyAwIDAgMC0yLjUzIDBsLTEuNzkgMS42OThhMS44NTggMS44NTggMCAwIDEtMi41MyAwbC0xLjc4OS0xLjY5OGExLjg1NyAxLjg1NyAwIDAgMC0yLjUzIDBsLTEuNzkgMS42OThhMS44NTggMS44NTggMCAwIDEtMi41MyAwbC0xLjc4OC0xLjY5OGExLjg1NyAxLjg1NyAwIDAgMC0yLjUzIDBsLTEuNzkgMS42OThhMS44NTcgMS44NTcgMCAwIDEtMi41MyAwbC0xLjc5LTEuNjk4YTEuODU3IDEuODU3IDAgMCAwLTIuNTMgMGwtMS43ODkgMS42OThhMS44NTggMS44NTggMCAwIDEtMi41MyAwbC0xLjc4OS0xLjY5OGExLjg1NyAxLjg1NyAwIDAgMC0yLjUzIDBsLTEuNzkgMS42OThhMS44NTcgMS44NTcgMCAwIDEtMi41MyAwbC0xLjc4OS0xLjY5OGExLjg1NyAxLjg1NyAwIDAgMC0yLjUzIDBsLTEuNzkgMS42OThhMS44NTggMS44NTggMCAwIDEtMi41MyAwbC0xLjc4OC0xLjY5OGExLjg1NyAxLjg1NyAwIDAgMC0yLjUzIDBsLTEuNzkgMS42OThhMS44NTcgMS44NTcgMCAwIDEtMi41MyAwbC0xLjc5LTEuNjk4YTEuODU3IDEuODU3IDAgMCAwLTIuNTMgMGwtMS43ODkgMS42OThhMS44NTggMS44NTggMCAwIDEtMi41MyAwbC0xLjc5LTEuNjk4YTEuODU3IDEuODU3IDAgMCAwLTIuNTMgMGwtMS43ODkgMS42OThhMS44NTcgMS44NTcgMCAwIDEtMi41MyAwbC0xLjc4OS0xLjY5OGExLjg1NyAxLjg1NyAwIDAgMC0yLjUzIDBsLTEuNzkgMS42OThhMS44NTggMS44NTggMCAwIDEtMi41MyAwbC0xLjc4OS0xLjY5OGExLjg1NyAxLjg1NyAwIDAgMC0yLjUzIDBsLTEuNzkgMS42OThhMS44NTcgMS44NTcgMCAwIDEtMi41MjkgMGwtMS43OS0xLjY5OGExLjg1NyAxLjg1NyAwIDAgMC0yLjUzIDBsLTEuNzg5IDEuNjk4YTEuODU4IDEuODU4IDAgMCAxLTIuNTMgMGwtMS43OS0xLjY5OGExLjg1NyAxLjg1NyAwIDAgMC0yLjUzIDBsLTEuNzg5IDEuNjk4YTEuODU4IDEuODU4IDAgMCAxLTIuNTMgMGwtMS43ODktMS42OThhMS44NTcgMS44NTcgMCAwIDAtMi41MyAwbC0xLjc5IDEuNjk4YTEuODU3IDEuODU3IDAgMCAxLTIuNTMgMGwtMS43ODktMS42OThhMS44NTcgMS44NTcgMCAwIDAtMi41MyAwbC0xLjc5IDEuNjk4YTEuODU4IDEuODU4IDAgMCAxLTIuNTMgMGwtMS43ODgtMS42OThhMS44NTcgMS44NTcgMCAwIDAtMi41MyAwbC0xLjc5IDEuNjk4YTEuODU3IDEuODU3IDAgMCAxLTIuNTMgMGwtMS43OS0xLjY5OGExLjg1NyAxLjg1NyAwIDAgMC0yLjUzIDBsLTEuNzg5IDEuNjk4YTEuODU4IDEuODU4IDAgMCAxLTIuNTMgMGwtMS43ODktMS42OTlhMS44NTkgMS44NTkgMCAwIDAtMi41MyAwYy0xLjAxNi45NjUtMi42OC40NDUtMy0uNzc0SC4yMzRWNS40NTVhNSA1IDAgMCAxIDUtNUgyNDUuNzZhNSA1IDAgMCAxIDUgNXYxNDQuMTAyaC0uMDU0eiIvPjxwYXRoIGlkPSJjIiBkPSJNMjUwLjcwNSAxNDkuNTQ4Yy0uMzIgMS4yMjMtMS45ODMgMS43NDQtMi45OTcuNzc3YTEuODUgMS44NSAwIDAgMC0yLjUyOCAwbC0xLjc4NyAxLjcwNGExLjg1IDEuODUgMCAwIDEtMi41MjggMGwtMS43ODgtMS43MDRhMS44NSAxLjg1IDAgMCAwLTIuNTI3IDBsLTEuNzg4IDEuNzA0YTEuODUgMS44NSAwIDAgMS0yLjUyOCAwbC0xLjc4Ny0xLjcwNGExLjg1IDEuODUgMCAwIDAtMi41MjggMGwtMS43ODcgMS43MDRhMS44NSAxLjg1IDAgMCAxLTIuNTI4IDBsLTEuNzg3LTEuNzA0YTEuODUgMS44NSAwIDAgMC0yLjUyOCAwbC0xLjc4NyAxLjcwNGExLjg1IDEuODUgMCAwIDEtMi41MjggMGwtMS43ODctMS43MDRhMS44NSAxLjg1IDAgMCAwLTIuNTI4IDBsLTEuNzg4IDEuNzA0YTEuODUgMS44NSAwIDAgMS0yLjUyNyAwbC0xLjc4OC0xLjcwNGExLjg1IDEuODUgMCAwIDAtMi41MjcgMGwtMS43ODggMS43MDRhMS44NSAxLjg1IDAgMCAxLTIuNTI4IDBsLTEuNzg3LTEuNzA0YTEuODUgMS44NSAwIDAgMC0yLjUyOCAwbC0xLjc4OCAxLjcwNGExLjg1IDEuODUgMCAwIDEtMi41MjcgMGwtMS43ODgtMS43MDRhMS44NSAxLjg1IDAgMCAwLTIuNTI4IDBsLTEuNzg3IDEuNzA0YTEuODUgMS44NSAwIDAgMS0yLjUyOCAwbC0xLjc4Ny0xLjcwNGExLjg1IDEuODUgMCAwIDAtMi41MjggMGwtMS43ODcgMS43MDRhMS44NSAxLjg1IDAgMCAxLTIuNTI4IDBsLTEuNzg3LTEuNzA0YTEuODUgMS44NSAwIDAgMC0yLjUyOCAwbC0xLjc4NyAxLjcwNGExLjg1IDEuODUgMCAwIDEtMi41MjggMGwtMS43ODgtMS43MDRhMS44NSAxLjg1IDAgMCAwLTIuNTI3IDBsLTEuNzg4IDEuNzA0YTEuODUgMS44NSAwIDAgMS0yLjUyNyAwbC0xLjc4OC0xLjcwNGExLjg1IDEuODUgMCAwIDAtMi41MjggMGwtMS43ODcgMS43MDRhMS44NSAxLjg1IDAgMCAxLTIuNTI4IDBsLTEuNzg3LTEuNzA0YTEuODUgMS44NSAwIDAgMC0yLjUyOCAwbC0xLjc4NyAxLjcwNGExLjg1IDEuODUgMCAwIDEtMi41MjggMGwtMS43ODctMS43MDRhMS44NSAxLjg1IDAgMCAwLTIuNTI4IDBsLTEuNzg4IDEuNzA0YTEuODUgMS44NSAwIDAgMS0yLjUyNyAwbC0xLjc4OC0xLjcwNGExLjg1IDEuODUgMCAwIDAtMi41MjcgMGwtMS43ODggMS43MDRhMS44NSAxLjg1IDAgMCAxLTIuNTI4IDBsLTEuNzg3LTEuNzA0YTEuODUgMS44NSAwIDAgMC0yLjUyOCAwbC0xLjc4OCAxLjcwNGExLjg1IDEuODUgMCAwIDEtMi41MjcgMGwtMS43ODgtMS43MDRhMS44NSAxLjg1IDAgMCAwLTIuNTI3IDBsLTEuNzg4IDEuNzA0YTEuODUgMS44NSAwIDAgMS0yLjUyOCAwbC0xLjc4Ny0xLjcwNGExLjg1IDEuODUgMCAwIDAtMi41MjggMGwtMS43ODcgMS43MDRhMS44NSAxLjg1IDAgMCAxLTIuNTI4IDBsLTEuNzg3LTEuNzA0YTEuODUgMS44NSAwIDAgMC0yLjUyOCAwbC0xLjc4NyAxLjcwNGExLjg1IDEuODUgMCAwIDEtMi41MjggMGwtMS43ODgtMS43MDRhMS44NSAxLjg1IDAgMCAwLTIuNTI3IDBsLTEuNzg4IDEuNzA0YTEuODUgMS44NSAwIDAgMS0yLjUyNyAwbC0xLjc4OC0xLjcwNGExLjg1IDEuODUgMCAwIDAtMi41MjggMGwtMS43ODcgMS43MDRhMS44NSAxLjg1IDAgMCAxLTIuNTI4IDBsLTEuNzg3LTEuNzA0YTEuODUgMS44NSAwIDAgMC0yLjUyOCAwbC0xLjc4NyAxLjcwNGExLjg1IDEuODUgMCAwIDEtMi41MjggMGwtMS43ODctMS43MDRhMS44NSAxLjg1IDAgMCAwLTIuNTI4IDBsLTEuNzg4IDEuNzA0YTEuODUgMS44NSAwIDAgMS0yLjUyNyAwbC0xLjc4OC0xLjcwNGExLjg1IDEuODUgMCAwIDAtMi41MjcgMGwtMS43ODggMS43MDRhMS44NSAxLjg1IDAgMCAxLTIuNTI4IDBsLTEuNzg3LTEuNzA0YTEuODUgMS44NSAwIDAgMC0yLjUyOCAwbC0xLjc4OCAxLjcwNGExLjg1IDEuODUgMCAwIDEtMi41MjcgMGwtMS43ODgtMS43MDRhMS44NSAxLjg1IDAgMCAwLTIuNTI3IDBsLTEuNzg4IDEuNzA0YTEuODUgMS44NSAwIDAgMS0yLjUyOCAwbC0xLjc4Ny0xLjcwNGExLjg1IDEuODUgMCAwIDAtMi41MjggMGwtMS43ODcgMS43MDRhMS44NSAxLjg1IDAgMCAxLTIuNTI4IDBsLTEuNzg3LTEuNzA0YTEuODUgMS44NSAwIDAgMC0yLjUyOCAwbC0xLjc4NyAxLjcwNGExLjg1IDEuODUgMCAwIDEtMi41MjggMGwtMS43ODctMS43MDRhMS44NTEgMS44NTEgMCAwIDAtMi41MjkgMGMtMS4wMTQuOTY3LTIuNjc3LjQ0Ni0yLjk5Ny0uNzc3SC40OFY1LjAwNWE1IDUgMCAwIDEgNS01aDI0MC4yOGE1IDUgMCAwIDEgNSA1djE0NC41NDNoLS4wNTR6Ii8+PHBhdGggaWQ9ImciIGQ9Ik01MS43MzQgMTYuMTY3aC01LjM5VjBoNS4zOXYxNi4xNjd6TTMxLjQxIDBoLTUuMzl2MTYuMTY3aDUuMzlWMHptNy44NTIgMGgtNS4zODl2MTYuMTY3aDUuMzlWMHptNC42MiAwaC0yLjE1NnYxNi4xNjdoMi4xNTVWMHpNMjMuNTU2IDBoLTUuMzg5djE2LjE2N2g1LjM5VjB6TTUuMzkgMTYuMTY3VjBIMHYxNi4xNjdoNS4zODl6TTE1LjcwNSAwaC0zLjIzM3YxNi4xNjdoMy4yMzNWMHptLTUuNjk3IDBINy44NTJ2MTYuMTY3aDIuMTU2VjB6Ii8+PHBhdGggaWQ9ImkiIGQ9Ik05LjU0NiAwaDIzMC45MDhBOS41NDYgOS41NDYgMCAwIDEgMjUwIDkuNTQ2djEzMi4zNjhhOS41NDYgOS41NDYgMCAwIDEtOS41NDYgOS41NDZIOS41NDZBOS41NDYgOS41NDYgMCAwIDEgMCAxNDEuOTE0VjkuNTQ2QTkuNTQ2IDkuNTQ2IDAgMCAxIDkuNTQ2IDB6Ii8+PGxpbmVhckdyYWRpZW50IGlkPSJkIiB4MT0iNTAlIiB4Mj0iNTAlIiB5MT0iLTkuMDI3JSIgeTI9IjEwOS40NiUiPjxzdG9wIHN0b3AtY29sb3I9IiM2MDUzNTMiIHN0b3Atb3BhY2l0eT0iLjEiIG9mZnNldD0iMCIvPjxzdG9wIHN0b3AtY29sb3I9IiM0MzcxODUiIHN0b3Atb3BhY2l0eT0iLjE5NCIgb2Zmc2V0PSIxIi8+PC9saW5lYXJHcmFkaWVudD48bGluZWFyR3JhZGllbnQgaWQ9ImsiIHgxPSIxLjc0MyUiIHgyPSIxMDMuODclIiB5MT0iMjYxOC43JSIgeTI9IjI2MTguNyUiPjxzdG9wIHN0b3Atb3BhY2l0eT0iMCIgb2Zmc2V0PSIwIi8+PHN0b3Agb2Zmc2V0PSIxIi8+PC9saW5lYXJHcmFkaWVudD48cmFkaWFsR3JhZGllbnQgaWQ9ImYiIGN4PSI5OC41OTElIiBjeT0iLTI5LjAyMiUiIHI9IjgwLjAyNyUiIGdyYWRpZW50VHJhbnNmb3JtPSJtYXRyaXgoLS4wMTU0NSAuOTc4NDQgLS45OTk4OCAtLjAxNTEyIC43MTEgLTEuMjYpIj48c3RvcCBzdG9wLWNvbG9yPSIjRkZGIiBvZmZzZXQ9IjAiLz48c3RvcCBzdG9wLWNvbG9yPSIjMDA5RUUzIiBvZmZzZXQ9IjEiLz48L3JhZGlhbEdyYWRpZW50PjxmaWx0ZXIgaWQ9ImEiIHg9Ii0xMS44JSIgeT0iLTE2LjElIiB3aWR0aD0iMTIzLjYlIiBoZWlnaHQ9IjEzOC44JSI+PGZlT2Zmc2V0IGR5PSI1IiBpbj0iU291cmNlQWxwaGEiIHJlc3VsdD0ic2hhZG93T2Zmc2V0T3V0ZXIxIi8+PGZlR2F1c3NpYW5CbHVyIGluPSJzaGFkb3dPZmZzZXRPdXRlcjEiIHJlc3VsdD0ic2hhZG93Qmx1ck91dGVyMSIgc3RkRGV2aWF0aW9uPSI5Ii8+PGZlQ29tcG9zaXRlIGluPSJzaGFkb3dCbHVyT3V0ZXIxIiBpbjI9IlNvdXJjZUFscGhhIiBvcGVyYXRvcj0ib3V0IiByZXN1bHQ9InNoYWRvd0JsdXJPdXRlcjEiLz48ZmVDb2xvck1hdHJpeCBpbj0ic2hhZG93Qmx1ck91dGVyMSIgdmFsdWVzPSIwIDAgMCAwIDAuMTI5NDExNzY1IDAgMCAwIDAgMC40NTA5ODAzOTIgMCAwIDAgMCAwLjU5MjE1Njg2MyAwIDAgMCAwLjIgMCIvPjwvZmlsdGVyPjwvZGVmcz48ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDE3LjAwNyAxMS45OCkiPjx1c2UgZmlsbD0iIzAwMCIgZmlsdGVyPSJ1cmwoI2EpIiB4bGluazpocmVmPSIjYiIvPjx1c2UgZmlsbD0iI0ZGRiIgeGxpbms6aHJlZj0iI2IiLz48cGF0aCBkPSJNMjUwLjY1OSAxNDkuNDkyVjUuNDU1YTQuOSA0LjkgMCAwIDAtNC45LTQuOUg1LjIzNGE0LjkgNC45IDAgMCAwLTQuOSA0Ljl2MTQ0LjAzN2wuMDUxLjA0Yy4zMDkgMS4xNzYgMS44OTggMS42MTcgMi44MzQuNzI3LjczOS0uNyAxLjkzMS0uNyAyLjY2OSAwbDEuNzg5IDEuNjk4Yy42Ni42MjcgMS43MzMuNjI3IDIuMzkzIDBsMS43ODgtMS42OThjLjczOC0uNyAxLjkzMS0uNyAyLjY2OCAwbDEuNzkgMS42OTljLjY2LjYyNiAxLjczMi42MjYgMi4zOTIgMGwxLjc5LTEuNjk5Yy43MzctLjcgMS45My0uNyAyLjY2NyAwbDEuNzkgMS42OThjLjY2LjYyNyAxLjczMi42MjcgMi4zOTIgMGwxLjc5LTEuNjk4Yy43MzYtLjcgMS45My0uNyAyLjY2NyAwbDEuNzkgMS42OTljLjY2LjYyNiAxLjczMi42MjYgMi4zOTIgMGwxLjc4OS0xLjY5OWMuNzM3LS43IDEuOTMtLjcgMi42NjggMGwxLjc4OSAxLjY5OGMuNjYuNjI3IDEuNzMzLjYyNyAyLjM5MyAwbDEuNzg5LTEuNjk4Yy43MzctLjcgMS45My0uNyAyLjY2OCAwbDEuNzg5IDEuNjk5YTEuNzYgMS43NiAwIDAgMCAyLjM5MyAwbDEuNzg4LTEuNjk5Yy43MzgtLjcgMS45MzEtLjcgMi42NjggMGwxLjc5IDEuNjk5Yy42Ni42MjYgMS43MzIuNjI2IDIuMzkyIDBsMS43OS0xLjY5OWMuNzM3LS43IDEuOTMtLjcgMi42NjcgMGwxLjc5IDEuNjk4Yy42Ni42MjcgMS43MzIuNjI3IDIuMzkyIDBsMS43ODktMS42OThjLjczOC0uNyAxLjkzLS43IDIuNjY4IDBsMS43OSAxLjY5OWMuNjYuNjI2IDEuNzMyLjYyNiAyLjM5MiAwbDEuNzg5LTEuNjk5Yy43MzctLjcgMS45My0uNyAyLjY2OCAwbDEuNzg5IDEuNjk4Yy42Ni42MjcgMS43MzMuNjI3IDIuMzkzIDBsMS43ODgtMS42OThjLjczOC0uNyAxLjkzMS0uNyAyLjY2OSAwbDEuNzg5IDEuNjk5Yy42Ni42MjYgMS43MzIuNjI2IDIuMzkyIDBsMS43OS0xLjY5OWMuNzM3LS43IDEuOTMtLjcgMi42NjggMGwxLjc4OCAxLjY5OGMuNjYuNjI3IDEuNzMzLjYyNyAyLjM5MyAwbDEuNzktMS42OThjLjczNy0uNyAxLjkzLS43IDIuNjY3IDBsMS43OSAxLjY5OWMuNjYuNjI2IDEuNzMyLjYyNiAyLjM5MiAwbDEuNzg5LTEuNjk5Yy43MzgtLjcgMS45My0uNyAyLjY2OCAwbDEuNzg5IDEuNjk4Yy42Ni42MjcgMS43MzMuNjI3IDIuMzkzIDBsMS43ODktMS42OThjLjczNy0uNyAxLjkzLS43IDIuNjY4IDBsMS43ODkgMS42OTljLjY2LjYyNiAxLjczMi42MjYgMi4zOTIgMGwxLjc5LTEuNjk5Yy43MzctLjcgMS45My0uNyAyLjY2OCAwbDEuNzg4IDEuNjk4Yy42Ni42MjcgMS43MzMuNjI3IDIuMzkzIDBsMS43OS0xLjY5OGMuNzM3LS43IDEuOTMtLjcgMi42NjcgMGwxLjc5IDEuNjk4Yy42Ni42MjcgMS43MzIuNjI3IDIuMzkyIDBsMS43ODktMS42OThjLjczOC0uNyAxLjkzLS43IDIuNjY4IDBsMS43OSAxLjY5OWMuNjYuNjI2IDEuNzMyLjYyNiAyLjM5MiAwbDEuNzg5LTEuNjk5Yy43MzctLjcgMS45My0uNyAyLjY2OCAwbDEuNzg5IDEuNjk4Yy42Ni42MjcgMS43MzMuNjI3IDIuMzkzIDBsMS43ODgtMS42OThjLjczOC0uNyAxLjkzMS0uNyAyLjY2OSAwbDEuNzg5IDEuNjk5Yy42Ni42MjYgMS43MzIuNjI2IDIuMzkyIDBsMS43OS0xLjY5OWMuNzM3LS43IDEuOTMtLjcgMi42NjggMGwxLjc4OCAxLjY5OGMuNjYuNjI3IDEuNzMzLjYyNyAyLjM5MyAwbDEuNzg5LTEuNjk4Yy43MzgtLjcgMS45MzEtLjcgMi42NjggMGwxLjc5IDEuNjk5Yy42Ni42MjYgMS43MzIuNjI2IDIuMzkyIDBsMS43ODktMS42OTljLjczOC0uNyAxLjkzLS43IDIuNjY4IDBsMS43ODkgMS42OThjLjY2LjYyNyAxLjczMy42MjcgMi4zOTMgMGwxLjc4OS0xLjY5OGMuNzM3LS43IDEuOTMtLjcgMi42NjggMGwxLjc4OSAxLjY5OWMuNjYuNjI2IDEuNzMyLjYyNiAyLjM5MiAwbDEuNzktMS42OTljLjczNy0uNyAxLjkzLS43IDIuNjY4IDBsMS43ODggMS42OThjLjY2LjYyNyAxLjczMy42MjcgMi4zOTMgMGwxLjc5LTEuNjk4Yy43MzctLjcgMS45My0uNyAyLjY2NyAwbDEuNzkgMS42OTljLjY2LjYyNiAxLjczMi42MjYgMi4zOTIgMGwxLjc4OS0xLjY5OWMuNzM4LS43IDEuOTMxLS43IDIuNjY4IDBsMS43ODkgMS42OThjLjY2LjYyNyAxLjczMy42MjcgMi4zOTMgMGwxLjc4OS0xLjY5OGMuNzM3LS43IDEuOTMtLjcgMi42NjggMGwxLjc4OSAxLjY5OGMuNjYuNjI3IDEuNzMyLjYyNyAyLjM5MyAwbDEuNzg5LTEuNjk4Yy43MzctLjcgMS45My0uNyAyLjY2OCAwIC45MzcuODkgMi41MjUuNDQ5IDIuODM0LS43MjdsLjA1LS4wNHoiIHN0cm9rZT0iIzk3OTc5NyIgc3Ryb2tlLW9wYWNpdHk9Ii4zIiBzdHJva2Utd2lkdGg9Ii4yIi8+PC9nPjxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDE3LjAwNyAxMS45OCkiPjxtYXNrIGlkPSJlIiBmaWxsPSIjZmZmIj48dXNlIHhsaW5rOmhyZWY9IiNjIi8+PC9tYXNrPjx1c2UgZmlsbD0iI0ZGRiIgeGxpbms6aHJlZj0iI2MiLz48cGF0aCBkPSJNMjUwLjYwOSAxNDkuNDcyVjUuMDA1YTQuODUgNC44NSAwIDAgMC00Ljg1LTQuODVINS40NzlhNC44NSA0Ljg1IDAgMCAwLTQuODUgNC44NXYxNDQuNDY3bC4wNS4wMzhjLjI5OCAxLjE0MyAxLjg0IDEuNTcyIDIuNzQ4LjcwNmEyLjAwMSAyLjAwMSAwIDAgMSAyLjczNSAwbDEuNzg3IDEuNzA0YTEuNyAxLjcgMCAwIDAgMi4zMjEgMGwxLjc4Ny0xLjcwM2EyIDIgMCAwIDEgMi43MzUgMGwxLjc4OCAxLjcwM2ExLjcgMS43IDAgMCAwIDIuMzIgMGwxLjc4OC0xLjcwM2EyIDIgMCAwIDEgMi43MzUgMGwxLjc4NyAxLjcwM2ExLjcgMS43IDAgMCAwIDIuMzIgMGwxLjc4OC0xLjcwM2EyIDIgMCAwIDEgMi43MzUgMGwxLjc4NyAxLjcwM2ExLjcgMS43IDAgMCAwIDIuMzIgMGwxLjc4OS0xLjcwM2EyIDIgMCAwIDEgMi43MzQgMGwxLjc4NyAxLjcwM2ExLjcgMS43IDAgMCAwIDIuMzIxIDBsMS43ODgtMS43MDNhMiAyIDAgMCAxIDIuNzM0IDBsMS43ODggMS43MDNhMS43IDEuNyAwIDAgMCAyLjMyMSAwbDEuNzg3LTEuNzAzYTIgMiAwIDAgMSAyLjczNSAwbDEuNzg4IDEuNzAzYTEuNyAxLjcgMCAwIDAgMi4zMiAwbDEuNzg4LTEuNzAzYTIgMiAwIDAgMSAyLjczNCAwbDEuNzg4IDEuNzAzYTEuNyAxLjcgMCAwIDAgMi4zMiAwbDEuNzg4LTEuNzAzYTIgMiAwIDAgMSAyLjczNSAwbDEuNzg3IDEuNzAzYTEuNyAxLjcgMCAwIDAgMi4zMiAwbDEuNzg4LTEuNzAzYTIgMiAwIDAgMSAyLjczNSAwbDEuNzg3IDEuNzAzYTEuNyAxLjcgMCAwIDAgMi4zMjEgMGwxLjc4Ny0xLjcwM2EyIDIgMCAwIDEgMi43MzUgMGwxLjc4OCAxLjcwM2ExLjcgMS43IDAgMCAwIDIuMzIgMGwxLjc4OC0xLjcwM2EyIDIgMCAwIDEgMi43MzUgMGwxLjc4NyAxLjcwM2ExLjcgMS43IDAgMCAwIDIuMzIgMGwxLjc4OC0xLjcwM2EyIDIgMCAwIDEgMi43MzUgMGwxLjc4NyAxLjcwM2ExLjcgMS43IDAgMCAwIDIuMzIgMGwxLjc4OS0xLjcwM2EyIDIgMCAwIDEgMi43MzQgMGwxLjc4NyAxLjcwM2ExLjcgMS43IDAgMCAwIDIuMzIxIDBsMS43ODgtMS43MDNhMiAyIDAgMCAxIDIuNzM0IDBsMS43ODggMS43MDNhMS43IDEuNyAwIDAgMCAyLjMyIDBsMS43ODgtMS43MDNhMiAyIDAgMCAxIDIuNzM1IDBsMS43ODcgMS43MDNhMS43IDEuNyAwIDAgMCAyLjMyMSAwbDEuNzg4LTEuNzAzYTIgMiAwIDAgMSAyLjczNCAwbDEuNzg4IDEuNzAzYTEuNyAxLjcgMCAwIDAgMi4zMiAwbDEuNzg4LTEuNzAzYTIgMiAwIDAgMSAyLjczNSAwbDEuNzg3IDEuNzAzYTEuNyAxLjcgMCAwIDAgMi4zMiAwbDEuNzg4LTEuNzAzYTIgMiAwIDAgMSAyLjczNSAwbDEuNzg3IDEuNzAzYTEuNyAxLjcgMCAwIDAgMi4zMjEgMGwxLjc4Ny0xLjcwM2EyIDIgMCAwIDEgMi43MzUgMGwxLjc4OCAxLjcwM2ExLjcgMS43IDAgMCAwIDIuMzIgMGwxLjc4OC0xLjcwM2EyIDIgMCAwIDEgMi43MzUgMGwxLjc4NyAxLjcwM2ExLjcgMS43IDAgMCAwIDIuMzIgMGwxLjc4OC0xLjcwM2EyIDIgMCAwIDEgMi43MzUgMGwxLjc4NyAxLjcwM2ExLjcgMS43IDAgMCAwIDIuMzIgMGwxLjc4OC0xLjcwM2EyIDIgMCAwIDEgMi43MzUgMGwxLjc4NyAxLjcwM2ExLjcgMS43IDAgMCAwIDIuMzIxIDBsMS43ODgtMS43MDNhMiAyIDAgMCAxIDIuNzM0IDBsMS43ODggMS43MDNhMS43IDEuNyAwIDAgMCAyLjMyIDBsMS43ODgtMS43MDNhMiAyIDAgMCAxIDIuNzM1IDBsMS43ODcgMS43MDNhMS43IDEuNyAwIDAgMCAyLjMyMSAwbDEuNzg4LTEuNzAzYTIgMiAwIDAgMSAyLjczNCAwbDEuNzg4IDEuNzAzYTEuNyAxLjcgMCAwIDAgMi4zMiAwbDEuNzg4LTEuNzAzYTIgMiAwIDAgMSAyLjczNSAwbDEuNzg3IDEuNzAzYTEuNyAxLjcgMCAwIDAgMi4zMiAwbDEuNzg4LTEuNzAzYTIgMiAwIDAgMSAyLjczNSAwbDEuNzg3IDEuNzAzYTEuNyAxLjcgMCAwIDAgMi4zMjEgMGwxLjc4Ny0xLjcwM2EyIDIgMCAwIDEgMi43MzUgMGMuOTA5Ljg2NSAyLjQ1LjQzNiAyLjc0OC0uNzA3bC4wNS0uMDM4eiIgc3Ryb2tlPSJ1cmwoI2QpIiBzdHJva2Utd2lkdGg9Ii4zIi8+PGcgbWFzaz0idXJsKCNlKSIgb3BhY2l0eT0iLjIiIHN0cm9rZT0idXJsKCNmKSIgc3Ryb2tlLXdpZHRoPSIuODU1IiBzdHlsZT0ibWl4LWJsZW5kLW1vZGU6bXVsdGlwbHkiPjxnIHRyYW5zZm9ybT0icm90YXRlKDIyNSAyODIuMTIgOTMuNjMxKSI+PGVsbGlwc2UgY3g9IjE2Ny43OSIgY3k9IjE3MS4xOSIgcng9IjE2Ny41MiIgcnk9IjE3MS4xOSIvPjxlbGxpcHNlIGN4PSIxNzcuNDgiIGN5PSIxNzEuMTkiIHJ4PSIxNjcuNTIiIHJ5PSIxNzEuMTkiLz48ZWxsaXBzZSBjeD0iMTg3LjE3IiBjeT0iMTcxLjE5IiByeD0iMTY3LjUyIiByeT0iMTcxLjE5Ii8+PGVsbGlwc2UgY3g9IjE5Ni44NiIgY3k9IjE3MS4xOSIgcng9IjE2Ny41MiIgcnk9IjE3MS4xOSIvPjxlbGxpcHNlIGN4PSIyMDYuNTQiIGN5PSIxNzEuMTkiIHJ4PSIxNjcuNTIiIHJ5PSIxNzEuMTkiLz48ZWxsaXBzZSBjeD0iMjE2LjIzIiBjeT0iMTcxLjE5IiByeD0iMTY3LjUyIiByeT0iMTcxLjE5Ii8+PGVsbGlwc2UgY3g9IjIyNS45MiIgY3k9IjE3MS4xOSIgcng9IjE2Ny41MiIgcnk9IjE3MS4xOSIvPjxlbGxpcHNlIGN4PSIyMzUuNjEiIGN5PSIxNzEuMTkiIHJ4PSIxNjcuNTIiIHJ5PSIxNzEuMTkiLz48ZWxsaXBzZSBjeD0iMjQ1LjI5IiBjeT0iMTcxLjE5IiByeD0iMTY3LjUyIiByeT0iMTcxLjE5Ii8+PGVsbGlwc2UgY3g9IjI1NC45OCIgY3k9IjE3MS4xOSIgcng9IjE2Ny41MiIgcnk9IjE3MS4xOSIvPjwvZz48L2c+PGcgbWFzaz0idXJsKCNlKSIgb3BhY2l0eT0iLjciIHN0cm9rZT0iIzAwOUVFMyIgc3Ryb2tlLW9wYWNpdHk9Ii4zMzYiIHN0cm9rZS13aWR0aD0iLjg1NSIgc3R5bGU9Im1peC1ibGVuZC1tb2RlOm11bHRpcGx5Ij48ZyB0cmFuc2Zvcm09InJvdGF0ZSgyMjUgMjg0Ljg2IDEzMCkiIG9wYWNpdHk9Ii4yIj48ZWxsaXBzZSBjeD0iMTY3Ljc5IiBjeT0iMTcxLjE5IiByeD0iMTY3LjUyIiByeT0iMTcxLjE5Ii8+PGVsbGlwc2UgY3g9IjE3Ny40OCIgY3k9IjE3MS4xOSIgcng9IjE2Ny41MiIgcnk9IjE3MS4xOSIvPjxlbGxpcHNlIGN4PSIxODcuMTciIGN5PSIxNzEuMTkiIHJ4PSIxNjcuNTIiIHJ5PSIxNzEuMTkiLz48ZWxsaXBzZSBjeD0iMTk2Ljg2IiBjeT0iMTcxLjE5IiByeD0iMTY3LjUyIiByeT0iMTcxLjE5Ii8+PGVsbGlwc2UgY3g9IjIwNi41NCIgY3k9IjE3MS4xOSIgcng9IjE2Ny41MiIgcnk9IjE3MS4xOSIvPjxlbGxpcHNlIGN4PSIyMTYuMjMiIGN5PSIxNzEuMTkiIHJ4PSIxNjcuNTIiIHJ5PSIxNzEuMTkiLz48ZWxsaXBzZSBjeD0iMjI1LjkyIiBjeT0iMTcxLjE5IiByeD0iMTY3LjUyIiByeT0iMTcxLjE5Ii8+PGVsbGlwc2UgY3g9IjIzNS42MSIgY3k9IjE3MS4xOSIgcng9IjE2Ny41MiIgcnk9IjE3MS4xOSIvPjxlbGxpcHNlIGN4PSIyNDUuMjkiIGN5PSIxNzEuMTkiIHJ4PSIxNjcuNTIiIHJ5PSIxNzEuMTkiLz48L2c+PC9nPjwvZz48ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgyMDAuMDEgMTMyLjIxKSIgc3R5bGU9Im1peC1ibGVuZC1tb2RlOm11bHRpcGx5Ij48bWFzayBpZD0iaCIgZmlsbD0iI2ZmZiI+PHVzZSB4bGluazpocmVmPSIjZyIvPjwvbWFzaz48cGF0aCBkPSJNLTIuNjk0LTIuNjk0aDU3LjEyMlYxOC44NkgtMi42OTR6IiBmaWxsPSIjQ0NDIiBtYXNrPSJ1cmwoI2gpIi8+PC9nPjxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDE3LjM3NSAxMS4yMTMpIiBvcGFjaXR5PSIuMyIgc3R5bGU9Im1peC1ibGVuZC1tb2RlOm11bHRpcGx5Ij48bWFzayBpZD0iaiIgZmlsbD0iI2ZmZiI+PHVzZSB4bGluazpocmVmPSIjaSIvPjwvbWFzaz48dXNlIGZpbGw9IiNGRkYiIHhsaW5rOmhyZWY9IiNpIi8+PGcgbWFzaz0idXJsKCNqKSIgb3BhY2l0eT0iLjQ5NyI+PGcgdHJhbnNmb3JtPSJtYXRyaXgoLTEgMCAwIDEgMjMxLjE0IC03KSIgc3Ryb2tlPSJ1cmwoI2spIj48cGF0aCBkPSJNLjQ1MyA0LjQ5OWM1LjU5MyAwIDUuNTkzIDMuNTM2IDExLjE4NiAzLjUzNiA1LjU5MiAwIDUuNTkyLTMuNTM2IDExLjE4NS0zLjUzNiA1LjU5MiAwIDUuNTkyIDMuNTM2IDExLjE4NSAzLjUzNnM1LjU5My0zLjUzNiAxMS4xODUtMy41MzZjNS41OTMgMCA1LjU5MyAzLjUzNiAxMS4xODUgMy41MzYgNS41OTMgMCA1LjU5My0zLjUzNiAxMS4xODUtMy41MzYgNS41OTMgMCA1LjU5MyAzLjUzNiAxMS4xODYgMy41MzYgNS41OTIgMCA1LjU5Mi0zLjUzNiAxMS4xODUtMy41MzYgNS41OTIgMCA1LjU5MiAzLjUzNiAxMS4xODUgMy41MzZzNS41OTMtMy41MzYgMTEuMTg1LTMuNTM2YzUuNTkzIDAgNS41OTMgMy41MzYgMTEuMTg1IDMuNTM2IDUuNTkzIDAgNS41OTMtMy41MzYgMTEuMTg2LTMuNTM2IDUuNTkyIDAgNS41OTIgMy41MzYgMTEuMTg1IDMuNTM2IDUuNTkyIDAgNS41OTItMy41MzYgMTEuMTg1LTMuNTM2IDUuNTkyIDAgNS41OTIgMy41MzYgMTEuMTg1IDMuNTM2czUuNTkzLTMuNTM2IDExLjE4NS0zLjUzNmM1LjU5MyAwIDUuNTkzIDMuNTM2IDExLjE4NSAzLjUzNiA1LjU5MyAwIDUuNTkzLTMuNTM2IDExLjE4Ni0zLjUzNiA1LjU5MiAwIDUuNTkyIDMuNTM2IDExLjE4NSAzLjUzNiA1LjU5MiAwIDUuNTkyLTMuNTM2IDExLjE4NS0zLjUzNnM1LjU5MyAzLjUzNiAxMS4xODUgMy41MzZNLjQ1MiA4OS44MzNjNS41OTMgMCA1LjU5MyAzLjUzNiAxMS4xODYgMy41MzYgNS41OTIgMCA1LjU5Mi0zLjUzNiAxMS4xODUtMy41MzYgNS41OTIgMCA1LjU5MiAzLjUzNiAxMS4xODUgMy41MzZzNS41OTMtMy41MzYgMTEuMTg1LTMuNTM2YzUuNTkzIDAgNS41OTMgMy41MzYgMTEuMTg1IDMuNTM2IDUuNTkzIDAgNS41OTMtMy41MzYgMTEuMTg1LTMuNTM2IDUuNTkzIDAgNS41OTMgMy41MzYgMTEuMTg2IDMuNTM2IDUuNTkyIDAgNS41OTItMy41MzYgMTEuMTg1LTMuNTM2IDUuNTkyIDAgNS41OTIgMy41MzYgMTEuMTg1IDMuNTM2czUuNTkzLTMuNTM2IDExLjE4NS0zLjUzNmM1LjU5MyAwIDUuNTkzIDMuNTM2IDExLjE4NSAzLjUzNiA1LjU5MyAwIDUuNTkzLTMuNTM2IDExLjE4Ni0zLjUzNiA1LjU5MiAwIDUuNTkyIDMuNTM2IDExLjE4NSAzLjUzNiA1LjU5MiAwIDUuNTkyLTMuNTM2IDExLjE4NS0zLjUzNiA1LjU5MiAwIDUuNTkyIDMuNTM2IDExLjE4NSAzLjUzNnM1LjU5My0zLjUzNiAxMS4xODUtMy41MzZjNS41OTMgMCA1LjU5MyAzLjUzNiAxMS4xODUgMy41MzYgNS41OTMgMCA1LjU5My0zLjUzNiAxMS4xODYtMy41MzYgNS41OTIgMCA1LjU5MiAzLjUzNiAxMS4xODUgMy41MzYgNS41OTIgMCA1LjU5Mi0zLjUzNiAxMS4xODUtMy41MzZzNS41OTMgMy41MzYgMTEuMTg1IDMuNTM2TS40NTEgNDcuMTY2YzUuNTkzIDAgNS41OTMgMy41MzYgMTEuMTg2IDMuNTM2IDUuNTkyIDAgNS41OTItMy41MzYgMTEuMTg1LTMuNTM2IDUuNTkyIDAgNS41OTIgMy41MzYgMTEuMTg1IDMuNTM2czUuNTkzLTMuNTM2IDExLjE4NS0zLjUzNmM1LjU5MyAwIDUuNTkzIDMuNTM2IDExLjE4NSAzLjUzNiA1LjU5MyAwIDUuNTkzLTMuNTM2IDExLjE4NS0zLjUzNiA1LjU5MyAwIDUuNTkzIDMuNTM2IDExLjE4NiAzLjUzNiA1LjU5MiAwIDUuNTkyLTMuNTM2IDExLjE4NS0zLjUzNiA1LjU5MiAwIDUuNTkyIDMuNTM2IDExLjE4NSAzLjUzNnM1LjU5My0zLjUzNiAxMS4xODUtMy41MzZjNS41OTMgMCA1LjU5MyAzLjUzNiAxMS4xODUgMy41MzYgNS41OTMgMCA1LjU5My0zLjUzNiAxMS4xODYtMy41MzYgNS41OTIgMCA1LjU5MiAzLjUzNiAxMS4xODUgMy41MzYgNS41OTIgMCA1LjU5Mi0zLjUzNiAxMS4xODUtMy41MzYgNS41OTIgMCA1LjU5MiAzLjUzNiAxMS4xODUgMy41MzZzNS41OTMtMy41MzYgMTEuMTg1LTMuNTM2YzUuNTkzIDAgNS41OTMgMy41MzYgMTEuMTg1IDMuNTM2IDUuNTkzIDAgNS41OTMtMy41MzYgMTEuMTg2LTMuNTM2IDUuNTkyIDAgNS41OTIgMy41MzYgMTEuMTg1IDMuNTM2IDUuNTkyIDAgNS41OTItMy41MzYgMTEuMTg1LTMuNTM2czUuNTkzIDMuNTM2IDExLjE4NSAzLjUzNk0uNDUgMTMyLjVjNS41OTMgMCA1LjU5MyAzLjUzNiAxMS4xODYgMy41MzYgNS41OTIgMCA1LjU5Mi0zLjUzNSAxMS4xODUtMy41MzUgNS41OTIgMCA1LjU5MiAzLjUzNSAxMS4xODUgMy41MzVzNS41OTMtMy41MzUgMTEuMTg1LTMuNTM1YzUuNTkzIDAgNS41OTMgMy41MzUgMTEuMTg1IDMuNTM1IDUuNTkzIDAgNS41OTMtMy41MzUgMTEuMTg1LTMuNTM1IDUuNTkzIDAgNS41OTMgMy41MzUgMTEuMTg2IDMuNTM1IDUuNTkyIDAgNS41OTItMy41MzUgMTEuMTg1LTMuNTM1IDUuNTkyIDAgNS41OTIgMy41MzUgMTEuMTg1IDMuNTM1czUuNTkzLTMuNTM1IDExLjE4NS0zLjUzNWM1LjU5MyAwIDUuNTkzIDMuNTM1IDExLjE4NSAzLjUzNSA1LjU5MyAwIDUuNTkzLTMuNTM1IDExLjE4Ni0zLjUzNSA1LjU5MiAwIDUuNTkyIDMuNTM1IDExLjE4NSAzLjUzNSA1LjU5MiAwIDUuNTkyLTMuNTM1IDExLjE4NS0zLjUzNSA1LjU5MiAwIDUuNTkyIDMuNTM1IDExLjE4NSAzLjUzNXM1LjU5My0zLjUzNSAxMS4xODUtMy41MzVjNS41OTMgMCA1LjU5MyAzLjUzNSAxMS4xODUgMy41MzUgNS41OTMgMCA1LjU5My0zLjUzNSAxMS4xODYtMy41MzUgNS41OTIgMCA1LjU5MiAzLjUzNSAxMS4xODUgMy41MzUgNS41OTIgMCA1LjU5Mi0zLjUzNSAxMS4xODUtMy41MzVzNS41OTMgMy41MzUgMTEuMTg1IDMuNTM1TS40NDkgMTAuNTk2YzUuNTkzIDAgNS41OTMgMy41MzYgMTEuMTg2IDMuNTM2IDUuNTkyIDAgNS41OTItMy41MzYgMTEuMTg1LTMuNTM2IDUuNTkyIDAgNS41OTIgMy41MzYgMTEuMTg1IDMuNTM2czUuNTkzLTMuNTM2IDExLjE4NS0zLjUzNmM1LjU5MyAwIDUuNTkzIDMuNTM2IDExLjE4NSAzLjUzNiA1LjU5MyAwIDUuNTkzLTMuNTM2IDExLjE4NS0zLjUzNiA1LjU5MyAwIDUuNTkzIDMuNTM2IDExLjE4NiAzLjUzNiA1LjU5MiAwIDUuNTkyLTMuNTM2IDExLjE4NS0zLjUzNiA1LjU5MiAwIDUuNTkyIDMuNTM2IDExLjE4NSAzLjUzNnM1LjU5My0zLjUzNiAxMS4xODUtMy41MzZjNS41OTMgMCA1LjU5MyAzLjUzNiAxMS4xODUgMy41MzYgNS41OTMgMCA1LjU5My0zLjUzNiAxMS4xODYtMy41MzYgNS41OTIgMCA1LjU5MiAzLjUzNiAxMS4xODUgMy41MzYgNS41OTIgMCA1LjU5Mi0zLjUzNiAxMS4xODUtMy41MzYgNS41OTIgMCA1LjU5MiAzLjUzNiAxMS4xODUgMy41MzZzNS41OTMtMy41MzYgMTEuMTg1LTMuNTM2YzUuNTkzIDAgNS41OTMgMy41MzYgMTEuMTg1IDMuNTM2IDUuNTkzIDAgNS41OTMtMy41MzYgMTEuMTg2LTMuNTM2IDUuNTkyIDAgNS41OTIgMy41MzYgMTEuMTg1IDMuNTM2IDUuNTkyIDAgNS41OTItMy41MzYgMTEuMTg1LTMuNTM2czUuNTkzIDMuNTM2IDExLjE4NSAzLjUzNk0uNDQ4IDk1LjkzMWM1LjU5MyAwIDUuNTkzIDMuNTM1IDExLjE4NiAzLjUzNSA1LjU5MiAwIDUuNTkyLTMuNTM1IDExLjE4NS0zLjUzNSA1LjU5MiAwIDUuNTkyIDMuNTM1IDExLjE4NSAzLjUzNXM1LjU5My0zLjUzNSAxMS4xODUtMy41MzVjNS41OTMgMCA1LjU5MyAzLjUzNSAxMS4xODUgMy41MzUgNS41OTMgMCA1LjU5My0zLjUzNSAxMS4xODUtMy41MzUgNS41OTMgMCA1LjU5MyAzLjUzNSAxMS4xODYgMy41MzUgNS41OTIgMCA1LjU5Mi0zLjUzNSAxMS4xODUtMy41MzUgNS41OTIgMCA1LjU5MiAzLjUzNSAxMS4xODUgMy41MzVzNS41OTMtMy41MzUgMTEuMTg1LTMuNTM1YzUuNTkzIDAgNS41OTMgMy41MzUgMTEuMTg1IDMuNTM1IDUuNTkzIDAgNS41OTMtMy41MzUgMTEuMTg2LTMuNTM1IDUuNTkyIDAgNS41OTIgMy41MzUgMTEuMTg1IDMuNTM1IDUuNTkyIDAgNS41OTItMy41MzUgMTEuMTg1LTMuNTM1IDUuNTkyIDAgNS41OTIgMy41MzUgMTEuMTg1IDMuNTM1czUuNTkzLTMuNTM1IDExLjE4NS0zLjUzNWM1LjU5MyAwIDUuNTkzIDMuNTM1IDExLjE4NSAzLjUzNSA1LjU5MyAwIDUuNTkzLTMuNTM1IDExLjE4Ni0zLjUzNSA1LjU5MiAwIDUuNTkyIDMuNTM1IDExLjE4NSAzLjUzNSA1LjU5MiAwIDUuNTkyLTMuNTM1IDExLjE4NS0zLjUzNXM1LjU5MyAzLjUzNSAxMS4xODUgMy41MzVNLjQ0NyA1My4yNjRjNS41OTMgMCA1LjU5MyAzLjUzNSAxMS4xODYgMy41MzUgNS41OTIgMCA1LjU5Mi0zLjUzNSAxMS4xODUtMy41MzUgNS41OTIgMCA1LjU5MiAzLjUzNSAxMS4xODUgMy41MzVzNS41OTMtMy41MzUgMTEuMTg1LTMuNTM1YzUuNTkzIDAgNS41OTMgMy41MzUgMTEuMTg1IDMuNTM1IDUuNTkzIDAgNS41OTMtMy41MzUgMTEuMTg1LTMuNTM1IDUuNTkzIDAgNS41OTMgMy41MzUgMTEuMTg2IDMuNTM1IDUuNTkyIDAgNS41OTItMy41MzUgMTEuMTg1LTMuNTM1IDUuNTkyIDAgNS41OTIgMy41MzUgMTEuMTg1IDMuNTM1czUuNTkzLTMuNTM1IDExLjE4NS0zLjUzNWM1LjU5MyAwIDUuNTkzIDMuNTM1IDExLjE4NSAzLjUzNSA1LjU5MyAwIDUuNTkzLTMuNTM1IDExLjE4Ni0zLjUzNSA1LjU5MiAwIDUuNTkyIDMuNTM1IDExLjE4NSAzLjUzNSA1LjU5MiAwIDUuNTkyLTMuNTM1IDExLjE4NS0zLjUzNSA1LjU5MiAwIDUuNTkyIDMuNTM1IDExLjE4NSAzLjUzNXM1LjU5My0zLjUzNSAxMS4xODUtMy41MzVjNS41OTMgMCA1LjU5MyAzLjUzNSAxMS4xODUgMy41MzUgNS41OTMgMCA1LjU5My0zLjUzNSAxMS4xODYtMy41MzUgNS41OTIgMCA1LjU5MiAzLjUzNSAxMS4xODUgMy41MzUgNS41OTIgMCA1LjU5Mi0zLjUzNSAxMS4xODUtMy41MzVzNS41OTMgMy41MzUgMTEuMTg1IDMuNTM1TS40NDYgMTM4LjU5OGM1LjU5MyAwIDUuNTkzIDMuNTM2IDExLjE4NiAzLjUzNiA1LjU5MiAwIDUuNTkyLTMuNTM2IDExLjE4NS0zLjUzNiA1LjU5MiAwIDUuNTkyIDMuNTM2IDExLjE4NSAzLjUzNnM1LjU5My0zLjUzNiAxMS4xODUtMy41MzZjNS41OTMgMCA1LjU5MyAzLjUzNiAxMS4xODUgMy41MzYgNS41OTMgMCA1LjU5My0zLjUzNiAxMS4xODUtMy41MzYgNS41OTMgMCA1LjU5MyAzLjUzNiAxMS4xODYgMy41MzYgNS41OTIgMCA1LjU5Mi0zLjUzNiAxMS4xODUtMy41MzYgNS41OTIgMCA1LjU5MiAzLjUzNiAxMS4xODUgMy41MzZzNS41OTMtMy41MzYgMTEuMTg1LTMuNTM2YzUuNTkzIDAgNS41OTMgMy41MzYgMTEuMTg1IDMuNTM2IDUuNTkzIDAgNS41OTMtMy41MzYgMTEuMTg2LTMuNTM2IDUuNTkyIDAgNS41OTIgMy41MzYgMTEuMTg1IDMuNTM2IDUuNTkyIDAgNS41OTItMy41MzYgMTEuMTg1LTMuNTM2IDUuNTkyIDAgNS41OTIgMy41MzYgMTEuMTg1IDMuNTM2czUuNTkzLTMuNTM2IDExLjE4NS0zLjUzNmM1LjU5MyAwIDUuNTkzIDMuNTM2IDExLjE4NSAzLjUzNiA1LjU5MyAwIDUuNTkzLTMuNTM2IDExLjE4Ni0zLjUzNiA1LjU5MiAwIDUuNTkyIDMuNTM2IDExLjE4NSAzLjUzNiA1LjU5MiAwIDUuNTkyLTMuNTM2IDExLjE4NS0zLjUzNnM1LjU5MyAzLjUzNiAxMS4xODUgMy41MzZNLjQ0NSAxNi42OTRjNS41OTMgMCA1LjU5MyAzLjUzNSAxMS4xODYgMy41MzUgNS41OTIgMCA1LjU5Mi0zLjUzNSAxMS4xODUtMy41MzUgNS41OTIgMCA1LjU5MiAzLjUzNSAxMS4xODUgMy41MzVzNS41OTMtMy41MzUgMTEuMTg1LTMuNTM1YzUuNTkzIDAgNS41OTMgMy41MzUgMTEuMTg1IDMuNTM1IDUuNTkzIDAgNS41OTMtMy41MzUgMTEuMTg1LTMuNTM1IDUuNTkzIDAgNS41OTMgMy41MzUgMTEuMTg2IDMuNTM1IDUuNTkyIDAgNS41OTItMy41MzUgMTEuMTg1LTMuNTM1IDUuNTkyIDAgNS41OTIgMy41MzUgMTEuMTg1IDMuNTM1czUuNTkzLTMuNTM1IDExLjE4NS0zLjUzNWM1LjU5MyAwIDUuNTkzIDMuNTM1IDExLjE4NSAzLjUzNSA1LjU5MyAwIDUuNTkzLTMuNTM1IDExLjE4Ni0zLjUzNSA1LjU5MiAwIDUuNTkyIDMuNTM1IDExLjE4NSAzLjUzNSA1LjU5MiAwIDUuNTkyLTMuNTM1IDExLjE4NS0zLjUzNSA1LjU5MiAwIDUuNTkyIDMuNTM1IDExLjE4NSAzLjUzNXM1LjU5My0zLjUzNSAxMS4xODUtMy41MzVjNS41OTMgMCA1LjU5MyAzLjUzNSAxMS4xODUgMy41MzUgNS41OTMgMCA1LjU5My0zLjUzNSAxMS4xODYtMy41MzUgNS41OTIgMCA1LjU5MiAzLjUzNSAxMS4xODUgMy41MzUgNS41OTIgMCA1LjU5Mi0zLjUzNSAxMS4xODUtMy41MzVzNS41OTMgMy41MzUgMTEuMTg1IDMuNTM1TS40NDQgMTAyLjAyOGM1LjU5MyAwIDUuNTkzIDMuNTM2IDExLjE4NiAzLjUzNiA1LjU5MiAwIDUuNTkyLTMuNTM2IDExLjE4NS0zLjUzNiA1LjU5MiAwIDUuNTkyIDMuNTM2IDExLjE4NSAzLjUzNnM1LjU5My0zLjUzNiAxMS4xODUtMy41MzZjNS41OTMgMCA1LjU5MyAzLjUzNiAxMS4xODUgMy41MzYgNS41OTMgMCA1LjU5My0zLjUzNiAxMS4xODUtMy41MzYgNS41OTMgMCA1LjU5MyAzLjUzNiAxMS4xODYgMy41MzYgNS41OTIgMCA1LjU5Mi0zLjUzNiAxMS4xODUtMy41MzYgNS41OTIgMCA1LjU5MiAzLjUzNiAxMS4xODUgMy41MzZzNS41OTMtMy41MzYgMTEuMTg1LTMuNTM2YzUuNTkzIDAgNS41OTMgMy41MzYgMTEuMTg1IDMuNTM2IDUuNTkzIDAgNS41OTMtMy41MzYgMTEuMTg2LTMuNTM2IDUuNTkyIDAgNS41OTIgMy41MzYgMTEuMTg1IDMuNTM2IDUuNTkyIDAgNS41OTItMy41MzYgMTEuMTg1LTMuNTM2IDUuNTkyIDAgNS41OTIgMy41MzYgMTEuMTg1IDMuNTM2czUuNTkzLTMuNTM2IDExLjE4NS0zLjUzNmM1LjU5MyAwIDUuNTkzIDMuNTM2IDExLjE4NSAzLjUzNiA1LjU5MyAwIDUuNTkzLTMuNTM2IDExLjE4Ni0zLjUzNiA1LjU5MiAwIDUuNTkyIDMuNTM2IDExLjE4NSAzLjUzNiA1LjU5MiAwIDUuNTkyLTMuNTM2IDExLjE4NS0zLjUzNnM1LjU5MyAzLjUzNiAxMS4xODUgMy41MzZNLjQ0MyA1OS4zNjFjNS41OTMgMCA1LjU5MyAzLjUzNSAxMS4xODYgMy41MzUgNS41OTIgMCA1LjU5Mi0zLjUzNSAxMS4xODUtMy41MzUgNS41OTIgMCA1LjU5MiAzLjUzNSAxMS4xODUgMy41MzVzNS41OTMtMy41MzUgMTEuMTg1LTMuNTM1YzUuNTkzIDAgNS41OTMgMy41MzUgMTEuMTg1IDMuNTM1IDUuNTkzIDAgNS41OTMtMy41MzUgMTEuMTg1LTMuNTM1IDUuNTkzIDAgNS41OTMgMy41MzUgMTEuMTg2IDMuNTM1IDUuNTkyIDAgNS41OTItMy41MzUgMTEuMTg1LTMuNTM1IDUuNTkyIDAgNS41OTIgMy41MzUgMTEuMTg1IDMuNTM1czUuNTkzLTMuNTM1IDExLjE4NS0zLjUzNWM1LjU5MyAwIDUuNTkzIDMuNTM1IDExLjE4NSAzLjUzNSA1LjU5MyAwIDUuNTkzLTMuNTM1IDExLjE4Ni0zLjUzNSA1LjU5MiAwIDUuNTkyIDMuNTM1IDExLjE4NSAzLjUzNSA1LjU5MiAwIDUuNTkyLTMuNTM1IDExLjE4NS0zLjUzNSA1LjU5MiAwIDUuNTkyIDMuNTM1IDExLjE4NSAzLjUzNXM1LjU5My0zLjUzNSAxMS4xODUtMy41MzVjNS41OTMgMCA1LjU5MyAzLjUzNSAxMS4xODUgMy41MzUgNS41OTMgMCA1LjU5My0zLjUzNSAxMS4xODYtMy41MzUgNS41OTIgMCA1LjU5MiAzLjUzNSAxMS4xODUgMy41MzUgNS41OTIgMCA1LjU5Mi0zLjUzNSAxMS4xODUtMy41MzVzNS41OTMgMy41MzUgMTEuMTg1IDMuNTM1TS40NDIgMTQ0LjY5NWM1LjU5MyAwIDUuNTkzIDMuNTM2IDExLjE4NiAzLjUzNiA1LjU5MiAwIDUuNTkyLTMuNTM2IDExLjE4NS0zLjUzNiA1LjU5MiAwIDUuNTkyIDMuNTM2IDExLjE4NSAzLjUzNnM1LjU5My0zLjUzNiAxMS4xODUtMy41MzZjNS41OTMgMCA1LjU5MyAzLjUzNiAxMS4xODUgMy41MzYgNS41OTMgMCA1LjU5My0zLjUzNiAxMS4xODUtMy41MzYgNS41OTMgMCA1LjU5MyAzLjUzNiAxMS4xODYgMy41MzYgNS41OTIgMCA1LjU5Mi0zLjUzNiAxMS4xODUtMy41MzYgNS41OTIgMCA1LjU5MiAzLjUzNiAxMS4xODUgMy41MzZzNS41OTMtMy41MzYgMTEuMTg1LTMuNTM2YzUuNTkzIDAgNS41OTMgMy41MzYgMTEuMTg1IDMuNTM2IDUuNTkzIDAgNS41OTMtMy41MzYgMTEuMTg2LTMuNTM2IDUuNTkyIDAgNS41OTIgMy41MzYgMTEuMTg1IDMuNTM2IDUuNTkyIDAgNS41OTItMy41MzYgMTEuMTg1LTMuNTM2IDUuNTkyIDAgNS41OTIgMy41MzYgMTEuMTg1IDMuNTM2czUuNTkzLTMuNTM2IDExLjE4NS0zLjUzNmM1LjU5MyAwIDUuNTkzIDMuNTM2IDExLjE4NSAzLjUzNiA1LjU5MyAwIDUuNTkzLTMuNTM2IDExLjE4Ni0zLjUzNiA1LjU5MiAwIDUuNTkyIDMuNTM2IDExLjE4NSAzLjUzNiA1LjU5MiAwIDUuNTkyLTMuNTM2IDExLjE4NS0zLjUzNnM1LjU5MyAzLjUzNiAxMS4xODUgMy41MzZNLjQ0MSAyMi43OTFjNS41OTMgMCA1LjU5MyAzLjUzNiAxMS4xODYgMy41MzYgNS41OTIgMCA1LjU5Mi0zLjUzNiAxMS4xODUtMy41MzYgNS41OTIgMCA1LjU5MiAzLjUzNiAxMS4xODUgMy41MzZzNS41OTMtMy41MzYgMTEuMTg1LTMuNTM2YzUuNTkzIDAgNS41OTMgMy41MzYgMTEuMTg1IDMuNTM2IDUuNTkzIDAgNS41OTMtMy41MzYgMTEuMTg1LTMuNTM2IDUuNTkzIDAgNS41OTMgMy41MzYgMTEuMTg2IDMuNTM2IDUuNTkyIDAgNS41OTItMy41MzYgMTEuMTg1LTMuNTM2IDUuNTkyIDAgNS41OTIgMy41MzYgMTEuMTg1IDMuNTM2czUuNTkzLTMuNTM2IDExLjE4NS0zLjUzNmM1LjU5MyAwIDUuNTkzIDMuNTM2IDExLjE4NSAzLjUzNiA1LjU5MyAwIDUuNTkzLTMuNTM2IDExLjE4Ni0zLjUzNiA1LjU5MiAwIDUuNTkyIDMuNTM2IDExLjE4NSAzLjUzNiA1LjU5MiAwIDUuNTkyLTMuNTM2IDExLjE4NS0zLjUzNiA1LjU5MiAwIDUuNTkyIDMuNTM2IDExLjE4NSAzLjUzNnM1LjU5My0zLjUzNiAxMS4xODUtMy41MzZjNS41OTMgMCA1LjU5MyAzLjUzNiAxMS4xODUgMy41MzYgNS41OTMgMCA1LjU5My0zLjUzNiAxMS4xODYtMy41MzYgNS41OTIgMCA1LjU5MiAzLjUzNiAxMS4xODUgMy41MzYgNS41OTIgMCA1LjU5Mi0zLjUzNiAxMS4xODUtMy41MzZzNS41OTMgMy41MzYgMTEuMTg1IDMuNTM2TS40NCAxMDguMTI2YzUuNTkzIDAgNS41OTMgMy41MzUgMTEuMTg2IDMuNTM1IDUuNTkyIDAgNS41OTItMy41MzYgMTEuMTg1LTMuNTM2IDUuNTkyIDAgNS41OTIgMy41MzYgMTEuMTg1IDMuNTM2czUuNTkzLTMuNTM2IDExLjE4NS0zLjUzNmM1LjU5MyAwIDUuNTkzIDMuNTM2IDExLjE4NSAzLjUzNiA1LjU5MyAwIDUuNTkzLTMuNTM2IDExLjE4NS0zLjUzNiA1LjU5MyAwIDUuNTkzIDMuNTM2IDExLjE4NiAzLjUzNiA1LjU5MiAwIDUuNTkyLTMuNTM2IDExLjE4NS0zLjUzNiA1LjU5MiAwIDUuNTkyIDMuNTM2IDExLjE4NSAzLjUzNnM1LjU5My0zLjUzNiAxMS4xODUtMy41MzZjNS41OTMgMCA1LjU5MyAzLjUzNiAxMS4xODUgMy41MzYgNS41OTMgMCA1LjU5My0zLjUzNiAxMS4xODYtMy41MzYgNS41OTIgMCA1LjU5MiAzLjUzNiAxMS4xODUgMy41MzYgNS41OTIgMCA1LjU5Mi0zLjUzNiAxMS4xODUtMy41MzYgNS41OTIgMCA1LjU5MiAzLjUzNiAxMS4xODUgMy41MzZzNS41OTMtMy41MzYgMTEuMTg1LTMuNTM2YzUuNTkzIDAgNS41OTMgMy41MzYgMTEuMTg1IDMuNTM2IDUuNTkzIDAgNS41OTMtMy41MzYgMTEuMTg2LTMuNTM2IDUuNTkyIDAgNS41OTIgMy41MzYgMTEuMTg1IDMuNTM2IDUuNTkyIDAgNS41OTItMy41MzYgMTEuMTg1LTMuNTM2czUuNTkzIDMuNTM2IDExLjE4NSAzLjUzNk0uNDM5IDY1LjQ1OGM1LjU5MyAwIDUuNTkzIDMuNTM2IDExLjE4NiAzLjUzNiA1LjU5MiAwIDUuNTkyLTMuNTM2IDExLjE4NS0zLjUzNiA1LjU5MiAwIDUuNTkyIDMuNTM2IDExLjE4NSAzLjUzNnM1LjU5My0zLjUzNiAxMS4xODUtMy41MzZjNS41OTMgMCA1LjU5MyAzLjUzNiAxMS4xODUgMy41MzYgNS41OTMgMCA1LjU5My0zLjUzNiAxMS4xODUtMy41MzYgNS41OTMgMCA1LjU5MyAzLjUzNiAxMS4xODYgMy41MzYgNS41OTIgMCA1LjU5Mi0zLjUzNiAxMS4xODUtMy41MzYgNS41OTIgMCA1LjU5MiAzLjUzNiAxMS4xODUgMy41MzZzNS41OTMtMy41MzYgMTEuMTg1LTMuNTM2YzUuNTkzIDAgNS41OTMgMy41MzYgMTEuMTg1IDMuNTM2IDUuNTkzIDAgNS41OTMtMy41MzYgMTEuMTg2LTMuNTM2IDUuNTkyIDAgNS41OTIgMy41MzYgMTEuMTg1IDMuNTM2IDUuNTkyIDAgNS41OTItMy41MzYgMTEuMTg1LTMuNTM2IDUuNTkyIDAgNS41OTIgMy41MzYgMTEuMTg1IDMuNTM2czUuNTkzLTMuNTM2IDExLjE4NS0zLjUzNmM1LjU5MyAwIDUuNTkzIDMuNTM2IDExLjE4NSAzLjUzNiA1LjU5MyAwIDUuNTkzLTMuNTM2IDExLjE4Ni0zLjUzNiA1LjU5MiAwIDUuNTkyIDMuNTM2IDExLjE4NSAzLjUzNiA1LjU5MiAwIDUuNTkyLTMuNTM2IDExLjE4NS0zLjUzNnM1LjU5MyAzLjUzNiAxMS4xODUgMy41MzZNLjQzOCAxNTAuNzkzYzUuNTkzIDAgNS41OTMgMy41MzUgMTEuMTg2IDMuNTM1IDUuNTkyIDAgNS41OTItMy41MzUgMTEuMTg1LTMuNTM1IDUuNTkyIDAgNS41OTIgMy41MzUgMTEuMTg1IDMuNTM1czUuNTkzLTMuNTM1IDExLjE4NS0zLjUzNWM1LjU5MyAwIDUuNTkzIDMuNTM1IDExLjE4NSAzLjUzNSA1LjU5MyAwIDUuNTkzLTMuNTM1IDExLjE4NS0zLjUzNSA1LjU5MyAwIDUuNTkzIDMuNTM1IDExLjE4NiAzLjUzNSA1LjU5MiAwIDUuNTkyLTMuNTM1IDExLjE4NS0zLjUzNSA1LjU5MiAwIDUuNTkyIDMuNTM1IDExLjE4NSAzLjUzNXM1LjU5My0zLjUzNSAxMS4xODUtMy41MzVjNS41OTMgMCA1LjU5MyAzLjUzNSAxMS4xODUgMy41MzUgNS41OTMgMCA1LjU5My0zLjUzNSAxMS4xODYtMy41MzUgNS41OTIgMCA1LjU5MiAzLjUzNSAxMS4xODUgMy41MzUgNS41OTIgMCA1LjU5Mi0zLjUzNSAxMS4xODUtMy41MzUgNS41OTIgMCA1LjU5MiAzLjUzNSAxMS4xODUgMy41MzVzNS41OTMtMy41MzUgMTEuMTg1LTMuNTM1YzUuNTkzIDAgNS41OTMgMy41MzUgMTEuMTg1IDMuNTM1IDUuNTkzIDAgNS41OTMtMy41MzUgMTEuMTg2LTMuNTM1IDUuNTkyIDAgNS41OTIgMy41MzUgMTEuMTg1IDMuNTM1IDUuNTkyIDAgNS41OTItMy41MzUgMTEuMTg1LTMuNTM1czUuNTkzIDMuNTM1IDExLjE4NSAzLjUzNU0uNDM3IDI4Ljg4OGM1LjU5MyAwIDUuNTkzIDMuNTM2IDExLjE4NiAzLjUzNiA1LjU5MiAwIDUuNTkyLTMuNTM2IDExLjE4NS0zLjUzNiA1LjU5MiAwIDUuNTkyIDMuNTM2IDExLjE4NSAzLjUzNnM1LjU5My0zLjUzNiAxMS4xODUtMy41MzZjNS41OTMgMCA1LjU5MyAzLjUzNiAxMS4xODUgMy41MzYgNS41OTMgMCA1LjU5My0zLjUzNiAxMS4xODUtMy41MzYgNS41OTMgMCA1LjU5MyAzLjUzNiAxMS4xODYgMy41MzYgNS41OTIgMCA1LjU5Mi0zLjUzNiAxMS4xODUtMy41MzYgNS41OTIgMCA1LjU5MiAzLjUzNiAxMS4xODUgMy41MzZzNS41OTMtMy41MzYgMTEuMTg1LTMuNTM2YzUuNTkzIDAgNS41OTMgMy41MzYgMTEuMTg1IDMuNTM2IDUuNTkzIDAgNS41OTMtMy41MzYgMTEuMTg2LTMuNTM2IDUuNTkyIDAgNS41OTIgMy41MzYgMTEuMTg1IDMuNTM2IDUuNTkyIDAgNS41OTItMy41MzYgMTEuMTg1LTMuNTM2IDUuNTkyIDAgNS41OTIgMy41MzYgMTEuMTg1IDMuNTM2czUuNTkzLTMuNTM2IDExLjE4NS0zLjUzNmM1LjU5MyAwIDUuNTkzIDMuNTM2IDExLjE4NSAzLjUzNiA1LjU5MyAwIDUuNTkzLTMuNTM2IDExLjE4Ni0zLjUzNiA1LjU5MiAwIDUuNTkyIDMuNTM2IDExLjE4NSAzLjUzNiA1LjU5MiAwIDUuNTkyLTMuNTM2IDExLjE4NS0zLjUzNnM1LjU5MyAzLjUzNiAxMS4xODUgMy41MzZNLjQzNiAxMTQuMjIzYzUuNTkzIDAgNS41OTMgMy41MzUgMTEuMTg2IDMuNTM1IDUuNTkyIDAgNS41OTItMy41MzUgMTEuMTg1LTMuNTM1IDUuNTkyIDAgNS41OTIgMy41MzUgMTEuMTg1IDMuNTM1czUuNTkzLTMuNTM1IDExLjE4NS0zLjUzNWM1LjU5MyAwIDUuNTkzIDMuNTM1IDExLjE4NSAzLjUzNSA1LjU5MyAwIDUuNTkzLTMuNTM1IDExLjE4NS0zLjUzNSA1LjU5MyAwIDUuNTkzIDMuNTM1IDExLjE4NiAzLjUzNSA1LjU5MiAwIDUuNTkyLTMuNTM1IDExLjE4NS0zLjUzNSA1LjU5MiAwIDUuNTkyIDMuNTM1IDExLjE4NSAzLjUzNXM1LjU5My0zLjUzNSAxMS4xODUtMy41MzVjNS41OTMgMCA1LjU5MyAzLjUzNSAxMS4xODUgMy41MzUgNS41OTMgMCA1LjU5My0zLjUzNSAxMS4xODYtMy41MzUgNS41OTIgMCA1LjU5MiAzLjUzNSAxMS4xODUgMy41MzUgNS41OTIgMCA1LjU5Mi0zLjUzNSAxMS4xODUtMy41MzUgNS41OTIgMCA1LjU5MiAzLjUzNSAxMS4xODUgMy41MzVzNS41OTMtMy41MzUgMTEuMTg1LTMuNTM1YzUuNTkzIDAgNS41OTMgMy41MzUgMTEuMTg1IDMuNTM1IDUuNTkzIDAgNS41OTMtMy41MzUgMTEuMTg2LTMuNTM1IDUuNTkyIDAgNS41OTIgMy41MzUgMTEuMTg1IDMuNTM1IDUuNTkyIDAgNS41OTItMy41MzUgMTEuMTg1LTMuNTM1czUuNTkzIDMuNTM1IDExLjE4NSAzLjUzNU0uNDM1IDcxLjU1NWM1LjU5MyAwIDUuNTkzIDMuNTM2IDExLjE4NiAzLjUzNiA1LjU5MiAwIDUuNTkyLTMuNTM2IDExLjE4NS0zLjUzNiA1LjU5MiAwIDUuNTkyIDMuNTM2IDExLjE4NSAzLjUzNnM1LjU5My0zLjUzNiAxMS4xODUtMy41MzZjNS41OTMgMCA1LjU5MyAzLjUzNiAxMS4xODUgMy41MzYgNS41OTMgMCA1LjU5My0zLjUzNiAxMS4xODUtMy41MzYgNS41OTMgMCA1LjU5MyAzLjUzNiAxMS4xODYgMy41MzYgNS41OTIgMCA1LjU5Mi0zLjUzNiAxMS4xODUtMy41MzYgNS41OTIgMCA1LjU5MiAzLjUzNiAxMS4xODUgMy41MzZzNS41OTMtMy41MzYgMTEuMTg1LTMuNTM2YzUuNTkzIDAgNS41OTMgMy41MzYgMTEuMTg1IDMuNTM2IDUuNTkzIDAgNS41OTMtMy41MzYgMTEuMTg2LTMuNTM2IDUuNTkyIDAgNS41OTIgMy41MzYgMTEuMTg1IDMuNTM2IDUuNTkyIDAgNS41OTItMy41MzYgMTEuMTg1LTMuNTM2IDUuNTkyIDAgNS41OTIgMy41MzYgMTEuMTg1IDMuNTM2czUuNTkzLTMuNTM2IDExLjE4NS0zLjUzNmM1LjU5MyAwIDUuNTkzIDMuNTM2IDExLjE4NSAzLjUzNiA1LjU5MyAwIDUuNTkzLTMuNTM2IDExLjE4Ni0zLjUzNiA1LjU5MiAwIDUuNTkyIDMuNTM2IDExLjE4NSAzLjUzNiA1LjU5MiAwIDUuNTkyLTMuNTM2IDExLjE4NS0zLjUzNnM1LjU5MyAzLjUzNiAxMS4xODUgMy41MzZNLjQzNCAxNTYuODljNS41OTMgMCA1LjU5MyAzLjUzNiAxMS4xODYgMy41MzYgNS41OTIgMCA1LjU5Mi0zLjUzNiAxMS4xODUtMy41MzYgNS41OTIgMCA1LjU5MiAzLjUzNiAxMS4xODUgMy41MzZzNS41OTMtMy41MzYgMTEuMTg1LTMuNTM2YzUuNTkzIDAgNS41OTMgMy41MzYgMTEuMTg1IDMuNTM2IDUuNTkzIDAgNS41OTMtMy41MzYgMTEuMTg1LTMuNTM2IDUuNTkzIDAgNS41OTMgMy41MzYgMTEuMTg2IDMuNTM2IDUuNTkyIDAgNS41OTItMy41MzYgMTEuMTg1LTMuNTM2IDUuNTkyIDAgNS41OTIgMy41MzYgMTEuMTg1IDMuNTM2czUuNTkzLTMuNTM2IDExLjE4NS0zLjUzNmM1LjU5MyAwIDUuNTkzIDMuNTM2IDExLjE4NSAzLjUzNiA1LjU5MyAwIDUuNTkzLTMuNTM2IDExLjE4Ni0zLjUzNiA1LjU5MiAwIDUuNTkyIDMuNTM2IDExLjE4NSAzLjUzNiA1LjU5MiAwIDUuNTkyLTMuNTM2IDExLjE4NS0zLjUzNiA1LjU5MiAwIDUuNTkyIDMuNTM2IDExLjE4NSAzLjUzNnM1LjU5My0zLjUzNiAxMS4xODUtMy41MzZjNS41OTMgMCA1LjU5MyAzLjUzNiAxMS4xODUgMy41MzYgNS41OTMgMCA1LjU5My0zLjUzNiAxMS4xODYtMy41MzYgNS41OTIgMCA1LjU5MiAzLjUzNiAxMS4xODUgMy41MzYgNS41OTIgMCA1LjU5Mi0zLjUzNiAxMS4xODUtMy41MzZzNS41OTMgMy41MzYgMTEuMTg1IDMuNTM2TS40MzMgMzQuOTg2YzUuNTkzIDAgNS41OTMgMy41MzUgMTEuMTg2IDMuNTM1IDUuNTkyIDAgNS41OTItMy41MzUgMTEuMTg1LTMuNTM1IDUuNTkyIDAgNS41OTIgMy41MzUgMTEuMTg1IDMuNTM1czUuNTkzLTMuNTM1IDExLjE4NS0zLjUzNWM1LjU5MyAwIDUuNTkzIDMuNTM1IDExLjE4NSAzLjUzNSA1LjU5MyAwIDUuNTkzLTMuNTM1IDExLjE4NS0zLjUzNSA1LjU5MyAwIDUuNTkzIDMuNTM1IDExLjE4NiAzLjUzNSA1LjU5MiAwIDUuNTkyLTMuNTM1IDExLjE4NS0zLjUzNSA1LjU5MiAwIDUuNTkyIDMuNTM1IDExLjE4NSAzLjUzNXM1LjU5My0zLjUzNSAxMS4xODUtMy41MzVjNS41OTMgMCA1LjU5MyAzLjUzNSAxMS4xODUgMy41MzUgNS41OTMgMCA1LjU5My0zLjUzNSAxMS4xODYtMy41MzUgNS41OTIgMCA1LjU5MiAzLjUzNSAxMS4xODUgMy41MzUgNS41OTIgMCA1LjU5Mi0zLjUzNSAxMS4xODUtMy41MzUgNS41OTIgMCA1LjU5MiAzLjUzNSAxMS4xODUgMy41MzVzNS41OTMtMy41MzUgMTEuMTg1LTMuNTM1YzUuNTkzIDAgNS41OTMgMy41MzUgMTEuMTg1IDMuNTM1IDUuNTkzIDAgNS41OTMtMy41MzUgMTEuMTg2LTMuNTM1IDUuNTkyIDAgNS41OTIgMy41MzUgMTEuMTg1IDMuNTM1IDUuNTkyIDAgNS41OTItMy41MzUgMTEuMTg1LTMuNTM1czUuNTkzIDMuNTM1IDExLjE4NSAzLjUzNU0uNDMyIDEyMC4zMmM1LjU5MyAwIDUuNTkzIDMuNTM2IDExLjE4NiAzLjUzNiA1LjU5MiAwIDUuNTkyLTMuNTM2IDExLjE4NS0zLjUzNiA1LjU5MiAwIDUuNTkyIDMuNTM2IDExLjE4NSAzLjUzNnM1LjU5My0zLjUzNiAxMS4xODUtMy41MzZjNS41OTMgMCA1LjU5MyAzLjUzNiAxMS4xODUgMy41MzYgNS41OTMgMCA1LjU5My0zLjUzNiAxMS4xODUtMy41MzYgNS41OTMgMCA1LjU5MyAzLjUzNiAxMS4xODYgMy41MzYgNS41OTIgMCA1LjU5Mi0zLjUzNiAxMS4xODUtMy41MzYgNS41OTIgMCA1LjU5MiAzLjUzNiAxMS4xODUgMy41MzZzNS41OTMtMy41MzYgMTEuMTg1LTMuNTM2YzUuNTkzIDAgNS41OTMgMy41MzYgMTEuMTg1IDMuNTM2IDUuNTkzIDAgNS41OTMtMy41MzYgMTEuMTg2LTMuNTM2IDUuNTkyIDAgNS41OTIgMy41MzYgMTEuMTg1IDMuNTM2IDUuNTkyIDAgNS41OTItMy41MzYgMTEuMTg1LTMuNTM2IDUuNTkyIDAgNS41OTIgMy41MzYgMTEuMTg1IDMuNTM2czUuNTkzLTMuNTM2IDExLjE4NS0zLjUzNmM1LjU5MyAwIDUuNTkzIDMuNTM2IDExLjE4NSAzLjUzNiA1LjU5MyAwIDUuNTkzLTMuNTM2IDExLjE4Ni0zLjUzNiA1LjU5MiAwIDUuNTkyIDMuNTM2IDExLjE4NSAzLjUzNiA1LjU5MiAwIDUuNTkyLTMuNTM2IDExLjE4NS0zLjUzNnM1LjU5MyAzLjUzNiAxMS4xODUgMy41MzZNLjQzMSA3Ny42NTNjNS41OTMgMCA1LjU5MyAzLjUzNSAxMS4xODYgMy41MzUgNS41OTIgMCA1LjU5Mi0zLjUzNSAxMS4xODUtMy41MzUgNS41OTIgMCA1LjU5MiAzLjUzNSAxMS4xODUgMy41MzVzNS41OTMtMy41MzUgMTEuMTg1LTMuNTM1YzUuNTkzIDAgNS41OTMgMy41MzUgMTEuMTg1IDMuNTM1IDUuNTkzIDAgNS41OTMtMy41MzUgMTEuMTg1LTMuNTM1IDUuNTkzIDAgNS41OTMgMy41MzUgMTEuMTg2IDMuNTM1IDUuNTkyIDAgNS41OTItMy41MzUgMTEuMTg1LTMuNTM1IDUuNTkyIDAgNS41OTIgMy41MzUgMTEuMTg1IDMuNTM1czUuNTkzLTMuNTM1IDExLjE4NS0zLjUzNWM1LjU5MyAwIDUuNTkzIDMuNTM1IDExLjE4NSAzLjUzNSA1LjU5MyAwIDUuNTkzLTMuNTM1IDExLjE4Ni0zLjUzNSA1LjU5MiAwIDUuNTkyIDMuNTM1IDExLjE4NSAzLjUzNSA1LjU5MiAwIDUuNTkyLTMuNTM1IDExLjE4NS0zLjUzNSA1LjU5MiAwIDUuNTkyIDMuNTM1IDExLjE4NSAzLjUzNXM1LjU5My0zLjUzNSAxMS4xODUtMy41MzVjNS41OTMgMCA1LjU5MyAzLjUzNSAxMS4xODUgMy41MzUgNS41OTMgMCA1LjU5My0zLjUzNSAxMS4xODYtMy41MzUgNS41OTIgMCA1LjU5MiAzLjUzNSAxMS4xODUgMy41MzUgNS41OTIgMCA1LjU5Mi0zLjUzNSAxMS4xODUtMy41MzVzNS41OTMgMy41MzUgMTEuMTg1IDMuNTM1TS40MyAxNjIuOTg3YzUuNTkzIDAgNS41OTMgMy41MzYgMTEuMTg2IDMuNTM2IDUuNTkyIDAgNS41OTItMy41MzYgMTEuMTg1LTMuNTM2IDUuNTkyIDAgNS41OTIgMy41MzYgMTEuMTg1IDMuNTM2czUuNTkzLTMuNTM2IDExLjE4NS0zLjUzNmM1LjU5MyAwIDUuNTkzIDMuNTM2IDExLjE4NSAzLjUzNiA1LjU5MyAwIDUuNTkzLTMuNTM2IDExLjE4NS0zLjUzNiA1LjU5MyAwIDUuNTkzIDMuNTM2IDExLjE4NiAzLjUzNiA1LjU5MiAwIDUuNTkyLTMuNTM2IDExLjE4NS0zLjUzNiA1LjU5MiAwIDUuNTkyIDMuNTM2IDExLjE4NSAzLjUzNnM1LjU5My0zLjUzNiAxMS4xODUtMy41MzZjNS41OTMgMCA1LjU5MyAzLjUzNiAxMS4xODUgMy41MzYgNS41OTMgMCA1LjU5My0zLjUzNiAxMS4xODYtMy41MzYgNS41OTIgMCA1LjU5MiAzLjUzNiAxMS4xODUgMy41MzYgNS41OTIgMCA1LjU5Mi0zLjUzNiAxMS4xODUtMy41MzYgNS41OTIgMCA1LjU5MiAzLjUzNiAxMS4xODUgMy41MzZzNS41OTMtMy41MzYgMTEuMTg1LTMuNTM2YzUuNTkzIDAgNS41OTMgMy41MzYgMTEuMTg1IDMuNTM2IDUuNTkzIDAgNS41OTMtMy41MzYgMTEuMTg2LTMuNTM2IDUuNTkyIDAgNS41OTIgMy41MzYgMTEuMTg1IDMuNTM2IDUuNTkyIDAgNS41OTItMy41MzYgMTEuMTg1LTMuNTM2czUuNTkzIDMuNTM2IDExLjE4NSAzLjUzNk0uNDI5IDQxLjA4M2M1LjU5MyAwIDUuNTkzIDMuNTM3IDExLjE4NiAzLjUzNyA1LjU5MiAwIDUuNTkyLTMuNTM2IDExLjE4NS0zLjUzNiA1LjU5MiAwIDUuNTkyIDMuNTM2IDExLjE4NSAzLjUzNnM1LjU5My0zLjUzNiAxMS4xODUtMy41MzZjNS41OTMgMCA1LjU5MyAzLjUzNiAxMS4xODUgMy41MzYgNS41OTMgMCA1LjU5My0zLjUzNiAxMS4xODUtMy41MzYgNS41OTMgMCA1LjU5MyAzLjUzNiAxMS4xODYgMy41MzYgNS41OTIgMCA1LjU5Mi0zLjUzNiAxMS4xODUtMy41MzYgNS41OTIgMCA1LjU5MiAzLjUzNiAxMS4xODUgMy41MzZzNS41OTMtMy41MzYgMTEuMTg1LTMuNTM2YzUuNTkzIDAgNS41OTMgMy41MzYgMTEuMTg1IDMuNTM2IDUuNTkzIDAgNS41OTMtMy41MzYgMTEuMTg2LTMuNTM2IDUuNTkyIDAgNS41OTIgMy41MzYgMTEuMTg1IDMuNTM2IDUuNTkyIDAgNS41OTItMy41MzYgMTEuMTg1LTMuNTM2IDUuNTkyIDAgNS41OTIgMy41MzYgMTEuMTg1IDMuNTM2czUuNTkzLTMuNTM2IDExLjE4NS0zLjUzNmM1LjU5MyAwIDUuNTkzIDMuNTM2IDExLjE4NSAzLjUzNiA1LjU5MyAwIDUuNTkzLTMuNTM2IDExLjE4Ni0zLjUzNiA1LjU5MiAwIDUuNTkyIDMuNTM2IDExLjE4NSAzLjUzNiA1LjU5MiAwIDUuNTkyLTMuNTM2IDExLjE4NS0zLjUzNnM1LjU5MyAzLjUzNiAxMS4xODUgMy41MzZNLjQyOCAxMjYuNDE4YzUuNTkzIDAgNS41OTMgMy41MzYgMTEuMTg2IDMuNTM2IDUuNTkyIDAgNS41OTItMy41MzYgMTEuMTg1LTMuNTM2IDUuNTkyIDAgNS41OTIgMy41MzYgMTEuMTg1IDMuNTM2czUuNTkzLTMuNTM2IDExLjE4NS0zLjUzNmM1LjU5MyAwIDUuNTkzIDMuNTM2IDExLjE4NSAzLjUzNiA1LjU5MyAwIDUuNTkzLTMuNTM2IDExLjE4NS0zLjUzNiA1LjU5MyAwIDUuNTkzIDMuNTM2IDExLjE4NiAzLjUzNiA1LjU5MiAwIDUuNTkyLTMuNTM2IDExLjE4NS0zLjUzNiA1LjU5MiAwIDUuNTkyIDMuNTM2IDExLjE4NSAzLjUzNnM1LjU5My0zLjUzNiAxMS4xODUtMy41MzZjNS41OTMgMCA1LjU5MyAzLjUzNiAxMS4xODUgMy41MzYgNS41OTMgMCA1LjU5My0zLjUzNiAxMS4xODYtMy41MzYgNS41OTIgMCA1LjU5MiAzLjUzNiAxMS4xODUgMy41MzYgNS41OTIgMCA1LjU5Mi0zLjUzNiAxMS4xODUtMy41MzYgNS41OTIgMCA1LjU5MiAzLjUzNiAxMS4xODUgMy41MzZzNS41OTMtMy41MzYgMTEuMTg1LTMuNTM2YzUuNTkzIDAgNS41OTMgMy41MzYgMTEuMTg1IDMuNTM2IDUuNTkzIDAgNS41OTMtMy41MzYgMTEuMTg2LTMuNTM2IDUuNTkyIDAgNS41OTIgMy41MzYgMTEuMTg1IDMuNTM2IDUuNTkyIDAgNS41OTItMy41MzYgMTEuMTg1LTMuNTM2czUuNTkzIDMuNTM2IDExLjE4NSAzLjUzNk0uNDI3IDgzLjc1MWM1LjU5MyAwIDUuNTkzIDMuNTM2IDExLjE4NiAzLjUzNiA1LjU5MiAwIDUuNTkyLTMuNTM2IDExLjE4NS0zLjUzNiA1LjU5MiAwIDUuNTkyIDMuNTM2IDExLjE4NSAzLjUzNnM1LjU5My0zLjUzNiAxMS4xODUtMy41MzZjNS41OTMgMCA1LjU5MyAzLjUzNiAxMS4xODUgMy41MzYgNS41OTMgMCA1LjU5My0zLjUzNiAxMS4xODUtMy41MzYgNS41OTMgMCA1LjU5MyAzLjUzNiAxMS4xODYgMy41MzYgNS41OTIgMCA1LjU5Mi0zLjUzNiAxMS4xODUtMy41MzYgNS41OTIgMCA1LjU5MiAzLjUzNiAxMS4xODUgMy41MzZzNS41OTMtMy41MzYgMTEuMTg1LTMuNTM2YzUuNTkzIDAgNS41OTMgMy41MzYgMTEuMTg1IDMuNTM2IDUuNTkzIDAgNS41OTMtMy41MzYgMTEuMTg2LTMuNTM2IDUuNTkyIDAgNS41OTIgMy41MzYgMTEuMTg1IDMuNTM2IDUuNTkyIDAgNS41OTItMy41MzYgMTEuMTg1LTMuNTM2IDUuNTkyIDAgNS41OTIgMy41MzYgMTEuMTg1IDMuNTM2czUuNTkzLTMuNTM2IDExLjE4NS0zLjUzNmM1LjU5MyAwIDUuNTkzIDMuNTM2IDExLjE4NSAzLjUzNiA1LjU5MyAwIDUuNTkzLTMuNTM2IDExLjE4Ni0zLjUzNiA1LjU5MiAwIDUuNTkyIDMuNTM2IDExLjE4NSAzLjUzNiA1LjU5MiAwIDUuNTkyLTMuNTM2IDExLjE4NS0zLjUzNnM1LjU5MyAzLjUzNiAxMS4xODUgMy41MzZNLjQyNiAxNjkuMDg2YzUuNTkzIDAgNS41OTMgMy41MzUgMTEuMTg2IDMuNTM1IDUuNTkyIDAgNS41OTItMy41MzUgMTEuMTg1LTMuNTM1IDUuNTkyIDAgNS41OTIgMy41MzUgMTEuMTg1IDMuNTM1czUuNTkzLTMuNTM1IDExLjE4NS0zLjUzNWM1LjU5MyAwIDUuNTkzIDMuNTM1IDExLjE4NSAzLjUzNSA1LjU5MyAwIDUuNTkzLTMuNTM1IDExLjE4NS0zLjUzNSA1LjU5MyAwIDUuNTkzIDMuNTM1IDExLjE4NiAzLjUzNSA1LjU5MiAwIDUuNTkyLTMuNTM1IDExLjE4NS0zLjUzNSA1LjU5MiAwIDUuNTkyIDMuNTM1IDExLjE4NSAzLjUzNXM1LjU5My0zLjUzNSAxMS4xODUtMy41MzVjNS41OTMgMCA1LjU5MyAzLjUzNSAxMS4xODUgMy41MzUgNS41OTMgMCA1LjU5My0zLjUzNSAxMS4xODYtMy41MzUgNS41OTIgMCA1LjU5MiAzLjUzNSAxMS4xODUgMy41MzUgNS41OTIgMCA1LjU5Mi0zLjUzNSAxMS4xODUtMy41MzUgNS41OTIgMCA1LjU5MiAzLjUzNSAxMS4xODUgMy41MzVzNS41OTMtMy41MzUgMTEuMTg1LTMuNTM1YzUuNTkzIDAgNS41OTMgMy41MzUgMTEuMTg1IDMuNTM1IDUuNTkzIDAgNS41OTMtMy41MzUgMTEuMTg2LTMuNTM1IDUuNTkyIDAgNS41OTIgMy41MzUgMTEuMTg1IDMuNTM1IDUuNTkyIDAgNS41OTItMy41MzUgMTEuMTg1LTMuNTM1czUuNTkzIDMuNTM1IDExLjE4NSAzLjUzNSIgb3BhY2l0eT0iLjEiLz48cGF0aCBkPSJNLjQ1MyAxLjM4MmM1LjU5MyAwIDUuNTkzIDMuNTM2IDExLjE4NiAzLjUzNiA1LjU5MiAwIDUuNTkyLTMuNTM2IDExLjE4NS0zLjUzNiA1LjU5MiAwIDUuNTkyIDMuNTM2IDExLjE4NSAzLjUzNnM1LjU5My0zLjUzNiAxMS4xODUtMy41MzZjNS41OTMgMCA1LjU5MyAzLjUzNiAxMS4xODUgMy41MzYgNS41OTMgMCA1LjU5My0zLjUzNiAxMS4xODUtMy41MzYgNS41OTMgMCA1LjU5MyAzLjUzNiAxMS4xODYgMy41MzYgNS41OTIgMCA1LjU5Mi0zLjUzNiAxMS4xODUtMy41MzYgNS41OTIgMCA1LjU5MiAzLjUzNiAxMS4xODUgMy41MzZzNS41OTMtMy41MzYgMTEuMTg1LTMuNTM2YzUuNTkzIDAgNS41OTMgMy41MzYgMTEuMTg1IDMuNTM2IDUuNTkzIDAgNS41OTMtMy41MzYgMTEuMTg2LTMuNTM2IDUuNTkyIDAgNS41OTIgMy41MzYgMTEuMTg1IDMuNTM2IDUuNTkyIDAgNS41OTItMy41MzYgMTEuMTg1LTMuNTM2IDUuNTkyIDAgNS41OTIgMy41MzYgMTEuMTg1IDMuNTM2czUuNTkzLTMuNTM2IDExLjE4NS0zLjUzNmM1LjU5MyAwIDUuNTkzIDMuNTM2IDExLjE4NSAzLjUzNiA1LjU5MyAwIDUuNTkzLTMuNTM2IDExLjE4Ni0zLjUzNiA1LjU5MiAwIDUuNTkyIDMuNTM2IDExLjE4NSAzLjUzNiA1LjU5MiAwIDUuNTkyLTMuNTM2IDExLjE4NS0zLjUzNnM1LjU5MyAzLjUzNiAxMS4xODUgMy41MzZNLjQ1MiA4Ni43MTZjNS41OTMgMCA1LjU5MyAzLjUzNiAxMS4xODYgMy41MzYgNS41OTIgMCA1LjU5Mi0zLjUzNiAxMS4xODUtMy41MzYgNS41OTIgMCA1LjU5MiAzLjUzNiAxMS4xODUgMy41MzZzNS41OTMtMy41MzYgMTEuMTg1LTMuNTM2YzUuNTkzIDAgNS41OTMgMy41MzYgMTEuMTg1IDMuNTM2IDUuNTkzIDAgNS41OTMtMy41MzYgMTEuMTg1LTMuNTM2IDUuNTkzIDAgNS41OTMgMy41MzYgMTEuMTg2IDMuNTM2IDUuNTkyIDAgNS41OTItMy41MzYgMTEuMTg1LTMuNTM2IDUuNTkyIDAgNS41OTIgMy41MzYgMTEuMTg1IDMuNTM2czUuNTkzLTMuNTM2IDExLjE4NS0zLjUzNmM1LjU5MyAwIDUuNTkzIDMuNTM2IDExLjE4NSAzLjUzNiA1LjU5MyAwIDUuNTkzLTMuNTM2IDExLjE4Ni0zLjUzNiA1LjU5MiAwIDUuNTkyIDMuNTM2IDExLjE4NSAzLjUzNiA1LjU5MiAwIDUuNTkyLTMuNTM2IDExLjE4NS0zLjUzNiA1LjU5MiAwIDUuNTkyIDMuNTM2IDExLjE4NSAzLjUzNnM1LjU5My0zLjUzNiAxMS4xODUtMy41MzZjNS41OTMgMCA1LjU5MyAzLjUzNiAxMS4xODUgMy41MzYgNS41OTMgMCA1LjU5My0zLjUzNiAxMS4xODYtMy41MzYgNS41OTIgMCA1LjU5MiAzLjUzNiAxMS4xODUgMy41MzYgNS41OTIgMCA1LjU5Mi0zLjUzNiAxMS4xODUtMy41MzZzNS41OTMgMy41MzYgMTEuMTg1IDMuNTM2TS40NTEgNDQuMDVjNS41OTMgMCA1LjU5MyAzLjUzNSAxMS4xODYgMy41MzUgNS41OTIgMCA1LjU5Mi0zLjUzNiAxMS4xODUtMy41MzYgNS41OTIgMCA1LjU5MiAzLjUzNiAxMS4xODUgMy41MzZzNS41OTMtMy41MzYgMTEuMTg1LTMuNTM2YzUuNTkzIDAgNS41OTMgMy41MzYgMTEuMTg1IDMuNTM2IDUuNTkzIDAgNS41OTMtMy41MzYgMTEuMTg1LTMuNTM2IDUuNTkzIDAgNS41OTMgMy41MzYgMTEuMTg2IDMuNTM2IDUuNTkyIDAgNS41OTItMy41MzYgMTEuMTg1LTMuNTM2IDUuNTkyIDAgNS41OTIgMy41MzYgMTEuMTg1IDMuNTM2czUuNTkzLTMuNTM2IDExLjE4NS0zLjUzNmM1LjU5MyAwIDUuNTkzIDMuNTM2IDExLjE4NSAzLjUzNiA1LjU5MyAwIDUuNTkzLTMuNTM2IDExLjE4Ni0zLjUzNiA1LjU5MiAwIDUuNTkyIDMuNTM2IDExLjE4NSAzLjUzNiA1LjU5MiAwIDUuNTkyLTMuNTM2IDExLjE4NS0zLjUzNiA1LjU5MiAwIDUuNTkyIDMuNTM2IDExLjE4NSAzLjUzNnM1LjU5My0zLjUzNiAxMS4xODUtMy41MzZjNS41OTMgMCA1LjU5MyAzLjUzNiAxMS4xODUgMy41MzYgNS41OTMgMCA1LjU5My0zLjUzNiAxMS4xODYtMy41MzYgNS41OTIgMCA1LjU5MiAzLjUzNiAxMS4xODUgMy41MzYgNS41OTIgMCA1LjU5Mi0zLjUzNiAxMS4xODUtMy41MzZzNS41OTMgMy41MzYgMTEuMTg1IDMuNTM2TS40NSAxMjkuMzg0YzUuNTkzIDAgNS41OTMgMy41MzUgMTEuMTg2IDMuNTM1IDUuNTkyIDAgNS41OTItMy41MzUgMTEuMTg1LTMuNTM1IDUuNTkyIDAgNS41OTIgMy41MzUgMTEuMTg1IDMuNTM1czUuNTkzLTMuNTM1IDExLjE4NS0zLjUzNWM1LjU5MyAwIDUuNTkzIDMuNTM1IDExLjE4NSAzLjUzNSA1LjU5MyAwIDUuNTkzLTMuNTM1IDExLjE4NS0zLjUzNSA1LjU5MyAwIDUuNTkzIDMuNTM1IDExLjE4NiAzLjUzNSA1LjU5MiAwIDUuNTkyLTMuNTM1IDExLjE4NS0zLjUzNSA1LjU5MiAwIDUuNTkyIDMuNTM1IDExLjE4NSAzLjUzNXM1LjU5My0zLjUzNSAxMS4xODUtMy41MzVjNS41OTMgMCA1LjU5MyAzLjUzNSAxMS4xODUgMy41MzUgNS41OTMgMCA1LjU5My0zLjUzNSAxMS4xODYtMy41MzUgNS41OTIgMCA1LjU5MiAzLjUzNSAxMS4xODUgMy41MzUgNS41OTIgMCA1LjU5Mi0zLjUzNSAxMS4xODUtMy41MzUgNS41OTIgMCA1LjU5MiAzLjUzNSAxMS4xODUgMy41MzVzNS41OTMtMy41MzUgMTEuMTg1LTMuNTM1YzUuNTkzIDAgNS41OTMgMy41MzUgMTEuMTg1IDMuNTM1IDUuNTkzIDAgNS41OTMtMy41MzUgMTEuMTg2LTMuNTM1IDUuNTkyIDAgNS41OTIgMy41MzUgMTEuMTg1IDMuNTM1IDUuNTkyIDAgNS41OTItMy41MzUgMTEuMTg1LTMuNTM1czUuNTkzIDMuNTM1IDExLjE4NSAzLjUzNU0uNDQ5IDcuNDc5YzUuNTkzIDAgNS41OTMgMy41MzYgMTEuMTg2IDMuNTM2IDUuNTkyIDAgNS41OTItMy41MzYgMTEuMTg1LTMuNTM2IDUuNTkyIDAgNS41OTIgMy41MzYgMTEuMTg1IDMuNTM2czUuNTkzLTMuNTM2IDExLjE4NS0zLjUzNmM1LjU5MyAwIDUuNTkzIDMuNTM2IDExLjE4NSAzLjUzNiA1LjU5MyAwIDUuNTkzLTMuNTM2IDExLjE4NS0zLjUzNiA1LjU5MyAwIDUuNTkzIDMuNTM2IDExLjE4NiAzLjUzNiA1LjU5MiAwIDUuNTkyLTMuNTM2IDExLjE4NS0zLjUzNiA1LjU5MiAwIDUuNTkyIDMuNTM2IDExLjE4NSAzLjUzNnM1LjU5My0zLjUzNiAxMS4xODUtMy41MzZjNS41OTMgMCA1LjU5MyAzLjUzNiAxMS4xODUgMy41MzYgNS41OTMgMCA1LjU5My0zLjUzNiAxMS4xODYtMy41MzYgNS41OTIgMCA1LjU5MiAzLjUzNiAxMS4xODUgMy41MzYgNS41OTIgMCA1LjU5Mi0zLjUzNiAxMS4xODUtMy41MzYgNS41OTIgMCA1LjU5MiAzLjUzNiAxMS4xODUgMy41MzZzNS41OTMtMy41MzYgMTEuMTg1LTMuNTM2YzUuNTkzIDAgNS41OTMgMy41MzYgMTEuMTg1IDMuNTM2IDUuNTkzIDAgNS41OTMtMy41MzYgMTEuMTg2LTMuNTM2IDUuNTkyIDAgNS41OTIgMy41MzYgMTEuMTg1IDMuNTM2IDUuNTkyIDAgNS41OTItMy41MzYgMTEuMTg1LTMuNTM2czUuNTkzIDMuNTM2IDExLjE4NSAzLjUzNk0uNDQ4IDkyLjgxNGM1LjU5MyAwIDUuNTkzIDMuNTM1IDExLjE4NiAzLjUzNSA1LjU5MiAwIDUuNTkyLTMuNTM1IDExLjE4NS0zLjUzNSA1LjU5MiAwIDUuNTkyIDMuNTM1IDExLjE4NSAzLjUzNXM1LjU5My0zLjUzNSAxMS4xODUtMy41MzVjNS41OTMgMCA1LjU5MyAzLjUzNSAxMS4xODUgMy41MzUgNS41OTMgMCA1LjU5My0zLjUzNSAxMS4xODUtMy41MzUgNS41OTMgMCA1LjU5MyAzLjUzNSAxMS4xODYgMy41MzUgNS41OTIgMCA1LjU5Mi0zLjUzNSAxMS4xODUtMy41MzUgNS41OTIgMCA1LjU5MiAzLjUzNSAxMS4xODUgMy41MzVzNS41OTMtMy41MzUgMTEuMTg1LTMuNTM1YzUuNTkzIDAgNS41OTMgMy41MzUgMTEuMTg1IDMuNTM1IDUuNTkzIDAgNS41OTMtMy41MzUgMTEuMTg2LTMuNTM1IDUuNTkyIDAgNS41OTIgMy41MzUgMTEuMTg1IDMuNTM1IDUuNTkyIDAgNS41OTItMy41MzUgMTEuMTg1LTMuNTM1IDUuNTkyIDAgNS41OTIgMy41MzUgMTEuMTg1IDMuNTM1czUuNTkzLTMuNTM1IDExLjE4NS0zLjUzNWM1LjU5MyAwIDUuNTkzIDMuNTM1IDExLjE4NSAzLjUzNSA1LjU5MyAwIDUuNTkzLTMuNTM1IDExLjE4Ni0zLjUzNSA1LjU5MiAwIDUuNTkyIDMuNTM1IDExLjE4NSAzLjUzNSA1LjU5MiAwIDUuNTkyLTMuNTM1IDExLjE4NS0zLjUzNXM1LjU5MyAzLjUzNSAxMS4xODUgMy41MzVNLjQ0NyA1MC4xNDdjNS41OTMgMCA1LjU5MyAzLjUzNSAxMS4xODYgMy41MzUgNS41OTIgMCA1LjU5Mi0zLjUzNSAxMS4xODUtMy41MzUgNS41OTIgMCA1LjU5MiAzLjUzNSAxMS4xODUgMy41MzVzNS41OTMtMy41MzUgMTEuMTg1LTMuNTM1YzUuNTkzIDAgNS41OTMgMy41MzUgMTEuMTg1IDMuNTM1IDUuNTkzIDAgNS41OTMtMy41MzUgMTEuMTg1LTMuNTM1IDUuNTkzIDAgNS41OTMgMy41MzUgMTEuMTg2IDMuNTM1IDUuNTkyIDAgNS41OTItMy41MzUgMTEuMTg1LTMuNTM1IDUuNTkyIDAgNS41OTIgMy41MzUgMTEuMTg1IDMuNTM1czUuNTkzLTMuNTM1IDExLjE4NS0zLjUzNWM1LjU5MyAwIDUuNTkzIDMuNTM1IDExLjE4NSAzLjUzNSA1LjU5MyAwIDUuNTkzLTMuNTM1IDExLjE4Ni0zLjUzNSA1LjU5MiAwIDUuNTkyIDMuNTM1IDExLjE4NSAzLjUzNSA1LjU5MiAwIDUuNTkyLTMuNTM1IDExLjE4NS0zLjUzNSA1LjU5MiAwIDUuNTkyIDMuNTM1IDExLjE4NSAzLjUzNXM1LjU5My0zLjUzNSAxMS4xODUtMy41MzVjNS41OTMgMCA1LjU5MyAzLjUzNSAxMS4xODUgMy41MzUgNS41OTMgMCA1LjU5My0zLjUzNSAxMS4xODYtMy41MzUgNS41OTIgMCA1LjU5MiAzLjUzNSAxMS4xODUgMy41MzUgNS41OTIgMCA1LjU5Mi0zLjUzNSAxMS4xODUtMy41MzVzNS41OTMgMy41MzUgMTEuMTg1IDMuNTM1bS0yMzQuODkgODEuOGM1LjU5MyAwIDUuNTkzIDMuNTM1IDExLjE4NiAzLjUzNSA1LjU5MiAwIDUuNTkyLTMuNTM2IDExLjE4NS0zLjUzNiA1LjU5MiAwIDUuNTkyIDMuNTM2IDExLjE4NSAzLjUzNnM1LjU5My0zLjUzNiAxMS4xODUtMy41MzZjNS41OTMgMCA1LjU5MyAzLjUzNiAxMS4xODUgMy41MzYgNS41OTMgMCA1LjU5My0zLjUzNiAxMS4xODUtMy41MzYgNS41OTMgMCA1LjU5MyAzLjUzNiAxMS4xODYgMy41MzYgNS41OTIgMCA1LjU5Mi0zLjUzNiAxMS4xODUtMy41MzYgNS41OTIgMCA1LjU5MiAzLjUzNiAxMS4xODUgMy41MzZzNS41OTMtMy41MzYgMTEuMTg1LTMuNTM2YzUuNTkzIDAgNS41OTMgMy41MzYgMTEuMTg1IDMuNTM2IDUuNTkzIDAgNS41OTMtMy41MzYgMTEuMTg2LTMuNTM2IDUuNTkyIDAgNS41OTIgMy41MzYgMTEuMTg1IDMuNTM2IDUuNTkyIDAgNS41OTItMy41MzYgMTEuMTg1LTMuNTM2IDUuNTkyIDAgNS41OTIgMy41MzYgMTEuMTg1IDMuNTM2czUuNTkzLTMuNTM2IDExLjE4NS0zLjUzNmM1LjU5MyAwIDUuNTkzIDMuNTM2IDExLjE4NSAzLjUzNiA1LjU5MyAwIDUuNTkzLTMuNTM2IDExLjE4Ni0zLjUzNiA1LjU5MiAwIDUuNTkyIDMuNTM2IDExLjE4NSAzLjUzNiA1LjU5MiAwIDUuNTkyLTMuNTM2IDExLjE4NS0zLjUzNnM1LjU5MyAzLjUzNiAxMS4xODUgMy41MzZNLjQ0NSAxMy41NzdjNS41OTMgMCA1LjU5MyAzLjUzNSAxMS4xODYgMy41MzUgNS41OTIgMCA1LjU5Mi0zLjUzNSAxMS4xODUtMy41MzUgNS41OTIgMCA1LjU5MiAzLjUzNSAxMS4xODUgMy41MzVzNS41OTMtMy41MzUgMTEuMTg1LTMuNTM1YzUuNTkzIDAgNS41OTMgMy41MzUgMTEuMTg1IDMuNTM1IDUuNTkzIDAgNS41OTMtMy41MzUgMTEuMTg1LTMuNTM1IDUuNTkzIDAgNS41OTMgMy41MzUgMTEuMTg2IDMuNTM1IDUuNTkyIDAgNS41OTItMy41MzUgMTEuMTg1LTMuNTM1IDUuNTkyIDAgNS41OTIgMy41MzUgMTEuMTg1IDMuNTM1czUuNTkzLTMuNTM1IDExLjE4NS0zLjUzNWM1LjU5MyAwIDUuNTkzIDMuNTM1IDExLjE4NSAzLjUzNSA1LjU5MyAwIDUuNTkzLTMuNTM1IDExLjE4Ni0zLjUzNSA1LjU5MiAwIDUuNTkyIDMuNTM1IDExLjE4NSAzLjUzNSA1LjU5MiAwIDUuNTkyLTMuNTM1IDExLjE4NS0zLjUzNSA1LjU5MiAwIDUuNTkyIDMuNTM1IDExLjE4NSAzLjUzNXM1LjU5My0zLjUzNSAxMS4xODUtMy41MzVjNS41OTMgMCA1LjU5MyAzLjUzNSAxMS4xODUgMy41MzUgNS41OTMgMCA1LjU5My0zLjUzNSAxMS4xODYtMy41MzUgNS41OTIgMCA1LjU5MiAzLjUzNSAxMS4xODUgMy41MzUgNS41OTIgMCA1LjU5Mi0zLjUzNSAxMS4xODUtMy41MzVzNS41OTMgMy41MzUgMTEuMTg1IDMuNTM1TS40NDQgOTguOTExYzUuNTkzIDAgNS41OTMgMy41MzYgMTEuMTg2IDMuNTM2IDUuNTkyIDAgNS41OTItMy41MzYgMTEuMTg1LTMuNTM2IDUuNTkyIDAgNS41OTIgMy41MzYgMTEuMTg1IDMuNTM2czUuNTkzLTMuNTM2IDExLjE4NS0zLjUzNmM1LjU5MyAwIDUuNTkzIDMuNTM2IDExLjE4NSAzLjUzNiA1LjU5MyAwIDUuNTkzLTMuNTM2IDExLjE4NS0zLjUzNiA1LjU5MyAwIDUuNTkzIDMuNTM2IDExLjE4NiAzLjUzNiA1LjU5MiAwIDUuNTkyLTMuNTM2IDExLjE4NS0zLjUzNiA1LjU5MiAwIDUuNTkyIDMuNTM2IDExLjE4NSAzLjUzNnM1LjU5My0zLjUzNiAxMS4xODUtMy41MzZjNS41OTMgMCA1LjU5MyAzLjUzNiAxMS4xODUgMy41MzYgNS41OTMgMCA1LjU5My0zLjUzNiAxMS4xODYtMy41MzYgNS41OTIgMCA1LjU5MiAzLjUzNiAxMS4xODUgMy41MzYgNS41OTIgMCA1LjU5Mi0zLjUzNiAxMS4xODUtMy41MzYgNS41OTIgMCA1LjU5MiAzLjUzNiAxMS4xODUgMy41MzZzNS41OTMtMy41MzYgMTEuMTg1LTMuNTM2YzUuNTkzIDAgNS41OTMgMy41MzYgMTEuMTg1IDMuNTM2IDUuNTkzIDAgNS41OTMtMy41MzYgMTEuMTg2LTMuNTM2IDUuNTkyIDAgNS41OTIgMy41MzYgMTEuMTg1IDMuNTM2IDUuNTkyIDAgNS41OTItMy41MzYgMTEuMTg1LTMuNTM2czUuNTkzIDMuNTM2IDExLjE4NSAzLjUzNk0uNDQzIDU2LjI0NGM1LjU5MyAwIDUuNTkzIDMuNTM2IDExLjE4NiAzLjUzNiA1LjU5MiAwIDUuNTkyLTMuNTM2IDExLjE4NS0zLjUzNiA1LjU5MiAwIDUuNTkyIDMuNTM2IDExLjE4NSAzLjUzNnM1LjU5My0zLjUzNiAxMS4xODUtMy41MzZjNS41OTMgMCA1LjU5MyAzLjUzNiAxMS4xODUgMy41MzYgNS41OTMgMCA1LjU5My0zLjUzNiAxMS4xODUtMy41MzYgNS41OTMgMCA1LjU5MyAzLjUzNiAxMS4xODYgMy41MzYgNS41OTIgMCA1LjU5Mi0zLjUzNiAxMS4xODUtMy41MzYgNS41OTIgMCA1LjU5MiAzLjUzNiAxMS4xODUgMy41MzZzNS41OTMtMy41MzYgMTEuMTg1LTMuNTM2YzUuNTkzIDAgNS41OTMgMy41MzYgMTEuMTg1IDMuNTM2IDUuNTkzIDAgNS41OTMtMy41MzYgMTEuMTg2LTMuNTM2IDUuNTkyIDAgNS41OTIgMy41MzYgMTEuMTg1IDMuNTM2IDUuNTkyIDAgNS41OTItMy41MzYgMTEuMTg1LTMuNTM2IDUuNTkyIDAgNS41OTIgMy41MzYgMTEuMTg1IDMuNTM2czUuNTkzLTMuNTM2IDExLjE4NS0zLjUzNmM1LjU5MyAwIDUuNTkzIDMuNTM2IDExLjE4NSAzLjUzNiA1LjU5MyAwIDUuNTkzLTMuNTM2IDExLjE4Ni0zLjUzNiA1LjU5MiAwIDUuNTkyIDMuNTM2IDExLjE4NSAzLjUzNiA1LjU5MiAwIDUuNTkyLTMuNTM2IDExLjE4NS0zLjUzNnM1LjU5MyAzLjUzNiAxMS4xODUgMy41MzZNLjQ0MiAxNDEuNTc4YzUuNTkzIDAgNS41OTMgMy41MzYgMTEuMTg2IDMuNTM2IDUuNTkyIDAgNS41OTItMy41MzYgMTEuMTg1LTMuNTM2IDUuNTkyIDAgNS41OTIgMy41MzYgMTEuMTg1IDMuNTM2czUuNTkzLTMuNTM2IDExLjE4NS0zLjUzNmM1LjU5MyAwIDUuNTkzIDMuNTM2IDExLjE4NSAzLjUzNiA1LjU5MyAwIDUuNTkzLTMuNTM2IDExLjE4NS0zLjUzNiA1LjU5MyAwIDUuNTkzIDMuNTM2IDExLjE4NiAzLjUzNiA1LjU5MiAwIDUuNTkyLTMuNTM2IDExLjE4NS0zLjUzNiA1LjU5MiAwIDUuNTkyIDMuNTM2IDExLjE4NSAzLjUzNnM1LjU5My0zLjUzNiAxMS4xODUtMy41MzZjNS41OTMgMCA1LjU5MyAzLjUzNiAxMS4xODUgMy41MzYgNS41OTMgMCA1LjU5My0zLjUzNiAxMS4xODYtMy41MzYgNS41OTIgMCA1LjU5MiAzLjUzNiAxMS4xODUgMy41MzYgNS41OTIgMCA1LjU5Mi0zLjUzNiAxMS4xODUtMy41MzYgNS41OTIgMCA1LjU5MiAzLjUzNiAxMS4xODUgMy41MzZzNS41OTMtMy41MzYgMTEuMTg1LTMuNTM2YzUuNTkzIDAgNS41OTMgMy41MzYgMTEuMTg1IDMuNTM2IDUuNTkzIDAgNS41OTMtMy41MzYgMTEuMTg2LTMuNTM2IDUuNTkyIDAgNS41OTIgMy41MzYgMTEuMTg1IDMuNTM2IDUuNTkyIDAgNS41OTItMy41MzYgMTEuMTg1LTMuNTM2czUuNTkzIDMuNTM2IDExLjE4NSAzLjUzNk0uNDQxIDE5LjY3NGM1LjU5MyAwIDUuNTkzIDMuNTM2IDExLjE4NiAzLjUzNiA1LjU5MiAwIDUuNTkyLTMuNTM2IDExLjE4NS0zLjUzNiA1LjU5MiAwIDUuNTkyIDMuNTM2IDExLjE4NSAzLjUzNnM1LjU5My0zLjUzNiAxMS4xODUtMy41MzZjNS41OTMgMCA1LjU5MyAzLjUzNiAxMS4xODUgMy41MzYgNS41OTMgMCA1LjU5My0zLjUzNiAxMS4xODUtMy41MzYgNS41OTMgMCA1LjU5MyAzLjUzNiAxMS4xODYgMy41MzYgNS41OTIgMCA1LjU5Mi0zLjUzNiAxMS4xODUtMy41MzYgNS41OTIgMCA1LjU5MiAzLjUzNiAxMS4xODUgMy41MzZzNS41OTMtMy41MzYgMTEuMTg1LTMuNTM2YzUuNTkzIDAgNS41OTMgMy41MzYgMTEuMTg1IDMuNTM2IDUuNTkzIDAgNS41OTMtMy41MzYgMTEuMTg2LTMuNTM2IDUuNTkyIDAgNS41OTIgMy41MzYgMTEuMTg1IDMuNTM2IDUuNTkyIDAgNS41OTItMy41MzYgMTEuMTg1LTMuNTM2IDUuNTkyIDAgNS41OTIgMy41MzYgMTEuMTg1IDMuNTM2czUuNTkzLTMuNTM2IDExLjE4NS0zLjUzNmM1LjU5MyAwIDUuNTkzIDMuNTM2IDExLjE4NSAzLjUzNiA1LjU5MyAwIDUuNTkzLTMuNTM2IDExLjE4Ni0zLjUzNiA1LjU5MiAwIDUuNTkyIDMuNTM2IDExLjE4NSAzLjUzNiA1LjU5MiAwIDUuNTkyLTMuNTM2IDExLjE4NS0zLjUzNnM1LjU5MyAzLjUzNiAxMS4xODUgMy41MzZNLjQ0IDEwNS4wMDhjNS41OTMgMCA1LjU5MyAzLjUzNiAxMS4xODYgMy41MzYgNS41OTIgMCA1LjU5Mi0zLjUzNiAxMS4xODUtMy41MzYgNS41OTIgMCA1LjU5MiAzLjUzNiAxMS4xODUgMy41MzZzNS41OTMtMy41MzYgMTEuMTg1LTMuNTM2YzUuNTkzIDAgNS41OTMgMy41MzYgMTEuMTg1IDMuNTM2IDUuNTkzIDAgNS41OTMtMy41MzYgMTEuMTg1LTMuNTM2IDUuNTkzIDAgNS41OTMgMy41MzYgMTEuMTg2IDMuNTM2IDUuNTkyIDAgNS41OTItMy41MzYgMTEuMTg1LTMuNTM2IDUuNTkyIDAgNS41OTIgMy41MzYgMTEuMTg1IDMuNTM2czUuNTkzLTMuNTM2IDExLjE4NS0zLjUzNmM1LjU5MyAwIDUuNTkzIDMuNTM2IDExLjE4NSAzLjUzNiA1LjU5MyAwIDUuNTkzLTMuNTM2IDExLjE4Ni0zLjUzNiA1LjU5MiAwIDUuNTkyIDMuNTM2IDExLjE4NSAzLjUzNiA1LjU5MiAwIDUuNTkyLTMuNTM2IDExLjE4NS0zLjUzNiA1LjU5MiAwIDUuNTkyIDMuNTM2IDExLjE4NSAzLjUzNnM1LjU5My0zLjUzNiAxMS4xODUtMy41MzZjNS41OTMgMCA1LjU5MyAzLjUzNiAxMS4xODUgMy41MzYgNS41OTMgMCA1LjU5My0zLjUzNiAxMS4xODYtMy41MzYgNS41OTIgMCA1LjU5MiAzLjUzNiAxMS4xODUgMy41MzYgNS41OTIgMCA1LjU5Mi0zLjUzNiAxMS4xODUtMy41MzZzNS41OTMgMy41MzYgMTEuMTg1IDMuNTM2TS40MzkgNjIuMzQxYzUuNTkzIDAgNS41OTMgMy41MzYgMTEuMTg2IDMuNTM2IDUuNTkyIDAgNS41OTItMy41MzYgMTEuMTg1LTMuNTM2IDUuNTkyIDAgNS41OTIgMy41MzYgMTEuMTg1IDMuNTM2czUuNTkzLTMuNTM2IDExLjE4NS0zLjUzNmM1LjU5MyAwIDUuNTkzIDMuNTM2IDExLjE4NSAzLjUzNiA1LjU5MyAwIDUuNTkzLTMuNTM2IDExLjE4NS0zLjUzNiA1LjU5MyAwIDUuNTkzIDMuNTM2IDExLjE4NiAzLjUzNiA1LjU5MiAwIDUuNTkyLTMuNTM2IDExLjE4NS0zLjUzNiA1LjU5MiAwIDUuNTkyIDMuNTM2IDExLjE4NSAzLjUzNnM1LjU5My0zLjUzNiAxMS4xODUtMy41MzZjNS41OTMgMCA1LjU5MyAzLjUzNiAxMS4xODUgMy41MzYgNS41OTMgMCA1LjU5My0zLjUzNiAxMS4xODYtMy41MzYgNS41OTIgMCA1LjU5MiAzLjUzNiAxMS4xODUgMy41MzYgNS41OTIgMCA1LjU5Mi0zLjUzNiAxMS4xODUtMy41MzYgNS41OTIgMCA1LjU5MiAzLjUzNiAxMS4xODUgMy41MzZzNS41OTMtMy41MzYgMTEuMTg1LTMuNTM2YzUuNTkzIDAgNS41OTMgMy41MzYgMTEuMTg1IDMuNTM2IDUuNTkzIDAgNS41OTMtMy41MzYgMTEuMTg2LTMuNTM2IDUuNTkyIDAgNS41OTIgMy41MzYgMTEuMTg1IDMuNTM2IDUuNTkyIDAgNS41OTItMy41MzYgMTEuMTg1LTMuNTM2czUuNTkzIDMuNTM2IDExLjE4NSAzLjUzNk0uNDM4IDE0Ny42NzZjNS41OTMgMCA1LjU5MyAzLjUzNSAxMS4xODYgMy41MzUgNS41OTIgMCA1LjU5Mi0zLjUzNSAxMS4xODUtMy41MzUgNS41OTIgMCA1LjU5MiAzLjUzNSAxMS4xODUgMy41MzVzNS41OTMtMy41MzUgMTEuMTg1LTMuNTM1YzUuNTkzIDAgNS41OTMgMy41MzUgMTEuMTg1IDMuNTM1IDUuNTkzIDAgNS41OTMtMy41MzUgMTEuMTg1LTMuNTM1IDUuNTkzIDAgNS41OTMgMy41MzUgMTEuMTg2IDMuNTM1IDUuNTkyIDAgNS41OTItMy41MzUgMTEuMTg1LTMuNTM1IDUuNTkyIDAgNS41OTIgMy41MzUgMTEuMTg1IDMuNTM1czUuNTkzLTMuNTM1IDExLjE4NS0zLjUzNWM1LjU5MyAwIDUuNTkzIDMuNTM1IDExLjE4NSAzLjUzNSA1LjU5MyAwIDUuNTkzLTMuNTM1IDExLjE4Ni0zLjUzNSA1LjU5MiAwIDUuNTkyIDMuNTM1IDExLjE4NSAzLjUzNSA1LjU5MiAwIDUuNTkyLTMuNTM1IDExLjE4NS0zLjUzNSA1LjU5MiAwIDUuNTkyIDMuNTM1IDExLjE4NSAzLjUzNXM1LjU5My0zLjUzNSAxMS4xODUtMy41MzVjNS41OTMgMCA1LjU5MyAzLjUzNSAxMS4xODUgMy41MzUgNS41OTMgMCA1LjU5My0zLjUzNSAxMS4xODYtMy41MzUgNS41OTIgMCA1LjU5MiAzLjUzNSAxMS4xODUgMy41MzUgNS41OTIgMCA1LjU5Mi0zLjUzNSAxMS4xODUtMy41MzVzNS41OTMgMy41MzUgMTEuMTg1IDMuNTM1TS40MzcgMjUuNzcxYzUuNTkzIDAgNS41OTMgMy41MzYgMTEuMTg2IDMuNTM2IDUuNTkyIDAgNS41OTItMy41MzYgMTEuMTg1LTMuNTM2IDUuNTkyIDAgNS41OTIgMy41MzYgMTEuMTg1IDMuNTM2czUuNTkzLTMuNTM2IDExLjE4NS0zLjUzNmM1LjU5MyAwIDUuNTkzIDMuNTM2IDExLjE4NSAzLjUzNiA1LjU5MyAwIDUuNTkzLTMuNTM2IDExLjE4NS0zLjUzNiA1LjU5MyAwIDUuNTkzIDMuNTM2IDExLjE4NiAzLjUzNiA1LjU5MiAwIDUuNTkyLTMuNTM2IDExLjE4NS0zLjUzNiA1LjU5MiAwIDUuNTkyIDMuNTM2IDExLjE4NSAzLjUzNnM1LjU5My0zLjUzNiAxMS4xODUtMy41MzZjNS41OTMgMCA1LjU5MyAzLjUzNiAxMS4xODUgMy41MzYgNS41OTMgMCA1LjU5My0zLjUzNiAxMS4xODYtMy41MzYgNS41OTIgMCA1LjU5MiAzLjUzNiAxMS4xODUgMy41MzYgNS41OTIgMCA1LjU5Mi0zLjUzNiAxMS4xODUtMy41MzYgNS41OTIgMCA1LjU5MiAzLjUzNiAxMS4xODUgMy41MzZzNS41OTMtMy41MzYgMTEuMTg1LTMuNTM2YzUuNTkzIDAgNS41OTMgMy41MzYgMTEuMTg1IDMuNTM2IDUuNTkzIDAgNS41OTMtMy41MzYgMTEuMTg2LTMuNTM2IDUuNTkyIDAgNS41OTIgMy41MzYgMTEuMTg1IDMuNTM2IDUuNTkyIDAgNS41OTItMy41MzYgMTEuMTg1LTMuNTM2czUuNTkzIDMuNTM2IDExLjE4NSAzLjUzNk0uNDM2IDExMS4xMDZjNS41OTMgMCA1LjU5MyAzLjUzNSAxMS4xODYgMy41MzUgNS41OTIgMCA1LjU5Mi0zLjUzNSAxMS4xODUtMy41MzUgNS41OTIgMCA1LjU5MiAzLjUzNSAxMS4xODUgMy41MzVzNS41OTMtMy41MzUgMTEuMTg1LTMuNTM1YzUuNTkzIDAgNS41OTMgMy41MzUgMTEuMTg1IDMuNTM1IDUuNTkzIDAgNS41OTMtMy41MzUgMTEuMTg1LTMuNTM1IDUuNTkzIDAgNS41OTMgMy41MzUgMTEuMTg2IDMuNTM1IDUuNTkyIDAgNS41OTItMy41MzUgMTEuMTg1LTMuNTM1IDUuNTkyIDAgNS41OTIgMy41MzUgMTEuMTg1IDMuNTM1czUuNTkzLTMuNTM1IDExLjE4NS0zLjUzNWM1LjU5MyAwIDUuNTkzIDMuNTM1IDExLjE4NSAzLjUzNSA1LjU5MyAwIDUuNTkzLTMuNTM1IDExLjE4Ni0zLjUzNSA1LjU5MiAwIDUuNTkyIDMuNTM1IDExLjE4NSAzLjUzNSA1LjU5MiAwIDUuNTkyLTMuNTM1IDExLjE4NS0zLjUzNSA1LjU5MiAwIDUuNTkyIDMuNTM1IDExLjE4NSAzLjUzNXM1LjU5My0zLjUzNSAxMS4xODUtMy41MzVjNS41OTMgMCA1LjU5MyAzLjUzNSAxMS4xODUgMy41MzUgNS41OTMgMCA1LjU5My0zLjUzNSAxMS4xODYtMy41MzUgNS41OTIgMCA1LjU5MiAzLjUzNSAxMS4xODUgMy41MzUgNS41OTIgMCA1LjU5Mi0zLjUzNSAxMS4xODUtMy41MzVzNS41OTMgMy41MzUgMTEuMTg1IDMuNTM1TS40MzUgNjguNDM4YzUuNTkzIDAgNS41OTMgMy41MzYgMTEuMTg2IDMuNTM2IDUuNTkyIDAgNS41OTItMy41MzUgMTEuMTg1LTMuNTM1IDUuNTkyIDAgNS41OTIgMy41MzUgMTEuMTg1IDMuNTM1czUuNTkzLTMuNTM1IDExLjE4NS0zLjUzNWM1LjU5MyAwIDUuNTkzIDMuNTM1IDExLjE4NSAzLjUzNSA1LjU5MyAwIDUuNTkzLTMuNTM1IDExLjE4NS0zLjUzNSA1LjU5MyAwIDUuNTkzIDMuNTM1IDExLjE4NiAzLjUzNSA1LjU5MiAwIDUuNTkyLTMuNTM1IDExLjE4NS0zLjUzNSA1LjU5MiAwIDUuNTkyIDMuNTM1IDExLjE4NSAzLjUzNXM1LjU5My0zLjUzNSAxMS4xODUtMy41MzVjNS41OTMgMCA1LjU5MyAzLjUzNSAxMS4xODUgMy41MzUgNS41OTMgMCA1LjU5My0zLjUzNSAxMS4xODYtMy41MzUgNS41OTIgMCA1LjU5MiAzLjUzNSAxMS4xODUgMy41MzUgNS41OTIgMCA1LjU5Mi0zLjUzNSAxMS4xODUtMy41MzUgNS41OTIgMCA1LjU5MiAzLjUzNSAxMS4xODUgMy41MzVzNS41OTMtMy41MzUgMTEuMTg1LTMuNTM1YzUuNTkzIDAgNS41OTMgMy41MzUgMTEuMTg1IDMuNTM1IDUuNTkzIDAgNS41OTMtMy41MzUgMTEuMTg2LTMuNTM1IDUuNTkyIDAgNS41OTIgMy41MzUgMTEuMTg1IDMuNTM1IDUuNTkyIDAgNS41OTItMy41MzUgMTEuMTg1LTMuNTM1czUuNTkzIDMuNTM1IDExLjE4NSAzLjUzNU0uNDM0IDE1My43NzNjNS41OTMgMCA1LjU5MyAzLjUzNiAxMS4xODYgMy41MzYgNS41OTIgMCA1LjU5Mi0zLjUzNiAxMS4xODUtMy41MzYgNS41OTIgMCA1LjU5MiAzLjUzNiAxMS4xODUgMy41MzZzNS41OTMtMy41MzYgMTEuMTg1LTMuNTM2YzUuNTkzIDAgNS41OTMgMy41MzYgMTEuMTg1IDMuNTM2IDUuNTkzIDAgNS41OTMtMy41MzYgMTEuMTg1LTMuNTM2IDUuNTkzIDAgNS41OTMgMy41MzYgMTEuMTg2IDMuNTM2IDUuNTkyIDAgNS41OTItMy41MzYgMTEuMTg1LTMuNTM2IDUuNTkyIDAgNS41OTIgMy41MzYgMTEuMTg1IDMuNTM2czUuNTkzLTMuNTM2IDExLjE4NS0zLjUzNmM1LjU5MyAwIDUuNTkzIDMuNTM2IDExLjE4NSAzLjUzNiA1LjU5MyAwIDUuNTkzLTMuNTM2IDExLjE4Ni0zLjUzNiA1LjU5MiAwIDUuNTkyIDMuNTM2IDExLjE4NSAzLjUzNiA1LjU5MiAwIDUuNTkyLTMuNTM2IDExLjE4NS0zLjUzNiA1LjU5MiAwIDUuNTkyIDMuNTM2IDExLjE4NSAzLjUzNnM1LjU5My0zLjUzNiAxMS4xODUtMy41MzZjNS41OTMgMCA1LjU5MyAzLjUzNiAxMS4xODUgMy41MzYgNS41OTMgMCA1LjU5My0zLjUzNiAxMS4xODYtMy41MzYgNS41OTIgMCA1LjU5MiAzLjUzNiAxMS4xODUgMy41MzYgNS41OTIgMCA1LjU5Mi0zLjUzNiAxMS4xODUtMy41MzZzNS41OTMgMy41MzYgMTEuMTg1IDMuNTM2TS40MzMgMzEuODY5YzUuNTkzIDAgNS41OTMgMy41MzUgMTEuMTg2IDMuNTM1IDUuNTkyIDAgNS41OTItMy41MzUgMTEuMTg1LTMuNTM1IDUuNTkyIDAgNS41OTIgMy41MzUgMTEuMTg1IDMuNTM1czUuNTkzLTMuNTM1IDExLjE4NS0zLjUzNWM1LjU5MyAwIDUuNTkzIDMuNTM1IDExLjE4NSAzLjUzNSA1LjU5MyAwIDUuNTkzLTMuNTM1IDExLjE4NS0zLjUzNSA1LjU5MyAwIDUuNTkzIDMuNTM1IDExLjE4NiAzLjUzNSA1LjU5MiAwIDUuNTkyLTMuNTM1IDExLjE4NS0zLjUzNSA1LjU5MiAwIDUuNTkyIDMuNTM1IDExLjE4NSAzLjUzNXM1LjU5My0zLjUzNSAxMS4xODUtMy41MzVjNS41OTMgMCA1LjU5MyAzLjUzNSAxMS4xODUgMy41MzUgNS41OTMgMCA1LjU5My0zLjUzNSAxMS4xODYtMy41MzUgNS41OTIgMCA1LjU5MiAzLjUzNSAxMS4xODUgMy41MzUgNS41OTIgMCA1LjU5Mi0zLjUzNSAxMS4xODUtMy41MzUgNS41OTIgMCA1LjU5MiAzLjUzNSAxMS4xODUgMy41MzVzNS41OTMtMy41MzUgMTEuMTg1LTMuNTM1YzUuNTkzIDAgNS41OTMgMy41MzUgMTEuMTg1IDMuNTM1IDUuNTkzIDAgNS41OTMtMy41MzUgMTEuMTg2LTMuNTM1IDUuNTkyIDAgNS41OTIgMy41MzUgMTEuMTg1IDMuNTM1IDUuNTkyIDAgNS41OTItMy41MzUgMTEuMTg1LTMuNTM1czUuNTkzIDMuNTM1IDExLjE4NSAzLjUzNU0uNDMyIDExNy4yMDNjNS41OTMgMCA1LjU5MyAzLjUzNiAxMS4xODYgMy41MzYgNS41OTIgMCA1LjU5Mi0zLjUzNiAxMS4xODUtMy41MzYgNS41OTIgMCA1LjU5MiAzLjUzNiAxMS4xODUgMy41MzZzNS41OTMtMy41MzYgMTEuMTg1LTMuNTM2YzUuNTkzIDAgNS41OTMgMy41MzYgMTEuMTg1IDMuNTM2IDUuNTkzIDAgNS41OTMtMy41MzYgMTEuMTg1LTMuNTM2IDUuNTkzIDAgNS41OTMgMy41MzYgMTEuMTg2IDMuNTM2IDUuNTkyIDAgNS41OTItMy41MzYgMTEuMTg1LTMuNTM2IDUuNTkyIDAgNS41OTIgMy41MzYgMTEuMTg1IDMuNTM2czUuNTkzLTMuNTM2IDExLjE4NS0zLjUzNmM1LjU5MyAwIDUuNTkzIDMuNTM2IDExLjE4NSAzLjUzNiA1LjU5MyAwIDUuNTkzLTMuNTM2IDExLjE4Ni0zLjUzNiA1LjU5MiAwIDUuNTkyIDMuNTM2IDExLjE4NSAzLjUzNiA1LjU5MiAwIDUuNTkyLTMuNTM2IDExLjE4NS0zLjUzNiA1LjU5MiAwIDUuNTkyIDMuNTM2IDExLjE4NSAzLjUzNnM1LjU5My0zLjUzNiAxMS4xODUtMy41MzZjNS41OTMgMCA1LjU5MyAzLjUzNiAxMS4xODUgMy41MzYgNS41OTMgMCA1LjU5My0zLjUzNiAxMS4xODYtMy41MzYgNS41OTIgMCA1LjU5MiAzLjUzNiAxMS4xODUgMy41MzYgNS41OTIgMCA1LjU5Mi0zLjUzNiAxMS4xODUtMy41MzZzNS41OTMgMy41MzYgMTEuMTg1IDMuNTM2TS40MzEgNzQuNTM2YzUuNTkzIDAgNS41OTMgMy41MzUgMTEuMTg2IDMuNTM1IDUuNTkyIDAgNS41OTItMy41MzUgMTEuMTg1LTMuNTM1IDUuNTkyIDAgNS41OTIgMy41MzUgMTEuMTg1IDMuNTM1czUuNTkzLTMuNTM1IDExLjE4NS0zLjUzNWM1LjU5MyAwIDUuNTkzIDMuNTM1IDExLjE4NSAzLjUzNSA1LjU5MyAwIDUuNTkzLTMuNTM1IDExLjE4NS0zLjUzNSA1LjU5MyAwIDUuNTkzIDMuNTM1IDExLjE4NiAzLjUzNSA1LjU5MiAwIDUuNTkyLTMuNTM1IDExLjE4NS0zLjUzNSA1LjU5MiAwIDUuNTkyIDMuNTM1IDExLjE4NSAzLjUzNXM1LjU5My0zLjUzNSAxMS4xODUtMy41MzVjNS41OTMgMCA1LjU5MyAzLjUzNSAxMS4xODUgMy41MzUgNS41OTMgMCA1LjU5My0zLjUzNSAxMS4xODYtMy41MzUgNS41OTIgMCA1LjU5MiAzLjUzNSAxMS4xODUgMy41MzUgNS41OTIgMCA1LjU5Mi0zLjUzNSAxMS4xODUtMy41MzUgNS41OTIgMCA1LjU5MiAzLjUzNSAxMS4xODUgMy41MzVzNS41OTMtMy41MzUgMTEuMTg1LTMuNTM1YzUuNTkzIDAgNS41OTMgMy41MzUgMTEuMTg1IDMuNTM1IDUuNTkzIDAgNS41OTMtMy41MzUgMTEuMTg2LTMuNTM1IDUuNTkyIDAgNS41OTIgMy41MzUgMTEuMTg1IDMuNTM1IDUuNTkyIDAgNS41OTItMy41MzUgMTEuMTg1LTMuNTM1czUuNTkzIDMuNTM1IDExLjE4NSAzLjUzNU0uNDMgMTU5Ljg3YzUuNTkzIDAgNS41OTMgMy41MzYgMTEuMTg2IDMuNTM2IDUuNTkyIDAgNS41OTItMy41MzYgMTEuMTg1LTMuNTM2IDUuNTkyIDAgNS41OTIgMy41MzYgMTEuMTg1IDMuNTM2czUuNTkzLTMuNTM2IDExLjE4NS0zLjUzNmM1LjU5MyAwIDUuNTkzIDMuNTM2IDExLjE4NSAzLjUzNiA1LjU5MyAwIDUuNTkzLTMuNTM2IDExLjE4NS0zLjUzNiA1LjU5MyAwIDUuNTkzIDMuNTM2IDExLjE4NiAzLjUzNiA1LjU5MiAwIDUuNTkyLTMuNTM2IDExLjE4NS0zLjUzNiA1LjU5MiAwIDUuNTkyIDMuNTM2IDExLjE4NSAzLjUzNnM1LjU5My0zLjUzNiAxMS4xODUtMy41MzZjNS41OTMgMCA1LjU5MyAzLjUzNiAxMS4xODUgMy41MzYgNS41OTMgMCA1LjU5My0zLjUzNiAxMS4xODYtMy41MzYgNS41OTIgMCA1LjU5MiAzLjUzNiAxMS4xODUgMy41MzYgNS41OTIgMCA1LjU5Mi0zLjUzNiAxMS4xODUtMy41MzYgNS41OTIgMCA1LjU5MiAzLjUzNiAxMS4xODUgMy41MzZzNS41OTMtMy41MzYgMTEuMTg1LTMuNTM2YzUuNTkzIDAgNS41OTMgMy41MzYgMTEuMTg1IDMuNTM2IDUuNTkzIDAgNS41OTMtMy41MzYgMTEuMTg2LTMuNTM2IDUuNTkyIDAgNS41OTIgMy41MzYgMTEuMTg1IDMuNTM2IDUuNTkyIDAgNS41OTItMy41MzYgMTEuMTg1LTMuNTM2czUuNTkzIDMuNTM2IDExLjE4NSAzLjUzNk0uNDI5IDM3Ljk2NmM1LjU5MyAwIDUuNTkzIDMuNTM2IDExLjE4NiAzLjUzNiA1LjU5MiAwIDUuNTkyLTMuNTM2IDExLjE4NS0zLjUzNiA1LjU5MiAwIDUuNTkyIDMuNTM2IDExLjE4NSAzLjUzNnM1LjU5My0zLjUzNiAxMS4xODUtMy41MzZjNS41OTMgMCA1LjU5MyAzLjUzNiAxMS4xODUgMy41MzYgNS41OTMgMCA1LjU5My0zLjUzNiAxMS4xODUtMy41MzYgNS41OTMgMCA1LjU5MyAzLjUzNiAxMS4xODYgMy41MzYgNS41OTIgMCA1LjU5Mi0zLjUzNiAxMS4xODUtMy41MzYgNS41OTIgMCA1LjU5MiAzLjUzNiAxMS4xODUgMy41MzZzNS41OTMtMy41MzYgMTEuMTg1LTMuNTM2YzUuNTkzIDAgNS41OTMgMy41MzYgMTEuMTg1IDMuNTM2IDUuNTkzIDAgNS41OTMtMy41MzYgMTEuMTg2LTMuNTM2IDUuNTkyIDAgNS41OTIgMy41MzYgMTEuMTg1IDMuNTM2IDUuNTkyIDAgNS41OTItMy41MzYgMTEuMTg1LTMuNTM2IDUuNTkyIDAgNS41OTIgMy41MzYgMTEuMTg1IDMuNTM2czUuNTkzLTMuNTM2IDExLjE4NS0zLjUzNmM1LjU5MyAwIDUuNTkzIDMuNTM2IDExLjE4NSAzLjUzNiA1LjU5MyAwIDUuNTkzLTMuNTM2IDExLjE4Ni0zLjUzNiA1LjU5MiAwIDUuNTkyIDMuNTM2IDExLjE4NSAzLjUzNiA1LjU5MiAwIDUuNTkyLTMuNTM2IDExLjE4NS0zLjUzNnM1LjU5MyAzLjUzNiAxMS4xODUgMy41MzZNLjQyOCAxMjMuM2M1LjU5MyAwIDUuNTkzIDMuNTM2IDExLjE4NiAzLjUzNiA1LjU5MiAwIDUuNTkyLTMuNTM2IDExLjE4NS0zLjUzNiA1LjU5MiAwIDUuNTkyIDMuNTM2IDExLjE4NSAzLjUzNnM1LjU5My0zLjUzNiAxMS4xODUtMy41MzZjNS41OTMgMCA1LjU5MyAzLjUzNiAxMS4xODUgMy41MzYgNS41OTMgMCA1LjU5My0zLjUzNiAxMS4xODUtMy41MzYgNS41OTMgMCA1LjU5MyAzLjUzNiAxMS4xODYgMy41MzYgNS41OTIgMCA1LjU5Mi0zLjUzNiAxMS4xODUtMy41MzYgNS41OTIgMCA1LjU5MiAzLjUzNiAxMS4xODUgMy41MzZzNS41OTMtMy41MzYgMTEuMTg1LTMuNTM2YzUuNTkzIDAgNS41OTMgMy41MzYgMTEuMTg1IDMuNTM2IDUuNTkzIDAgNS41OTMtMy41MzYgMTEuMTg2LTMuNTM2IDUuNTkyIDAgNS41OTIgMy41MzYgMTEuMTg1IDMuNTM2IDUuNTkyIDAgNS41OTItMy41MzYgMTEuMTg1LTMuNTM2IDUuNTkyIDAgNS41OTIgMy41MzYgMTEuMTg1IDMuNTM2czUuNTkzLTMuNTM2IDExLjE4NS0zLjUzNmM1LjU5MyAwIDUuNTkzIDMuNTM2IDExLjE4NSAzLjUzNiA1LjU5MyAwIDUuNTkzLTMuNTM2IDExLjE4Ni0zLjUzNiA1LjU5MiAwIDUuNTkyIDMuNTM2IDExLjE4NSAzLjUzNiA1LjU5MiAwIDUuNTkyLTMuNTM2IDExLjE4NS0zLjUzNnM1LjU5MyAzLjUzNiAxMS4xODUgMy41MzZNLjQyNyA4MC42MzNjNS41OTMgMCA1LjU5MyAzLjUzNiAxMS4xODYgMy41MzYgNS41OTIgMCA1LjU5Mi0zLjUzNiAxMS4xODUtMy41MzYgNS41OTIgMCA1LjU5MiAzLjUzNiAxMS4xODUgMy41MzZzNS41OTMtMy41MzYgMTEuMTg1LTMuNTM2YzUuNTkzIDAgNS41OTMgMy41MzYgMTEuMTg1IDMuNTM2IDUuNTkzIDAgNS41OTMtMy41MzYgMTEuMTg1LTMuNTM2IDUuNTkzIDAgNS41OTMgMy41MzYgMTEuMTg2IDMuNTM2IDUuNTkyIDAgNS41OTItMy41MzYgMTEuMTg1LTMuNTM2IDUuNTkyIDAgNS41OTIgMy41MzYgMTEuMTg1IDMuNTM2czUuNTkzLTMuNTM2IDExLjE4NS0zLjUzNmM1LjU5MyAwIDUuNTkzIDMuNTM2IDExLjE4NSAzLjUzNiA1LjU5MyAwIDUuNTkzLTMuNTM2IDExLjE4Ni0zLjUzNiA1LjU5MiAwIDUuNTkyIDMuNTM2IDExLjE4NSAzLjUzNiA1LjU5MiAwIDUuNTkyLTMuNTM2IDExLjE4NS0zLjUzNiA1LjU5MiAwIDUuNTkyIDMuNTM2IDExLjE4NSAzLjUzNnM1LjU5My0zLjUzNiAxMS4xODUtMy41MzZjNS41OTMgMCA1LjU5MyAzLjUzNiAxMS4xODUgMy41MzYgNS41OTMgMCA1LjU5My0zLjUzNiAxMS4xODYtMy41MzYgNS41OTIgMCA1LjU5MiAzLjUzNiAxMS4xODUgMy41MzYgNS41OTIgMCA1LjU5Mi0zLjUzNiAxMS4xODUtMy41MzZzNS41OTMgMy41MzYgMTEuMTg1IDMuNTM2TS40MjYgMTY1Ljk2OGM1LjU5MyAwIDUuNTkzIDMuNTM1IDExLjE4NiAzLjUzNSA1LjU5MiAwIDUuNTkyLTMuNTM1IDExLjE4NS0zLjUzNSA1LjU5MiAwIDUuNTkyIDMuNTM1IDExLjE4NSAzLjUzNXM1LjU5My0zLjUzNSAxMS4xODUtMy41MzVjNS41OTMgMCA1LjU5MyAzLjUzNSAxMS4xODUgMy41MzUgNS41OTMgMCA1LjU5My0zLjUzNSAxMS4xODUtMy41MzUgNS41OTMgMCA1LjU5MyAzLjUzNSAxMS4xODYgMy41MzUgNS41OTIgMCA1LjU5Mi0zLjUzNSAxMS4xODUtMy41MzUgNS41OTIgMCA1LjU5MiAzLjUzNSAxMS4xODUgMy41MzVzNS41OTMtMy41MzUgMTEuMTg1LTMuNTM1YzUuNTkzIDAgNS41OTMgMy41MzUgMTEuMTg1IDMuNTM1IDUuNTkzIDAgNS41OTMtMy41MzUgMTEuMTg2LTMuNTM1IDUuNTkyIDAgNS41OTIgMy41MzUgMTEuMTg1IDMuNTM1IDUuNTkyIDAgNS41OTItMy41MzUgMTEuMTg1LTMuNTM1IDUuNTkyIDAgNS41OTIgMy41MzUgMTEuMTg1IDMuNTM1czUuNTkzLTMuNTM1IDExLjE4NS0zLjUzNWM1LjU5MyAwIDUuNTkzIDMuNTM1IDExLjE4NSAzLjUzNSA1LjU5MyAwIDUuNTkzLTMuNTM1IDExLjE4Ni0zLjUzNSA1LjU5MiAwIDUuNTkyIDMuNTM1IDExLjE4NSAzLjUzNSA1LjU5MiAwIDUuNTkyLTMuNTM1IDExLjE4NS0zLjUzNXM1LjU5MyAzLjUzNSAxMS4xODUgMy41MzUiIG9wYWNpdHk9Ii4xNSIvPjwvZz48L2c+PC9nPjxwYXRoIGQ9Ik0zMy4zODIgMjguMjEzaDE0NS42NSIgc3Ryb2tlPSIjRjdGN0Y3IiBzdHJva2UtZGFzaGFycmF5PSIxLDEiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLXdpZHRoPSI4LjUiIHN0eWxlPSJtaXgtYmxlbmQtbW9kZTptdWx0aXBseSIvPjxwYXRoIGQ9Ik0zMy4zODIgMzguMjEzaDc1LjYyOCIgc3Ryb2tlPSIjRjdGN0Y3IiBzdHJva2UtZGFzaGFycmF5PSIxLDEsMSwxIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1vcGFjaXR5PSIuNSIgc3Ryb2tlLXdpZHRoPSI4LjUiIHN0eWxlPSJtaXgtYmxlbmQtbW9kZTptdWx0aXBseSIvPjwvZz48L3N2Zz4=);
    background-repeat: no-repeat;
    -webkit-background-size: 100% auto;
    background-size: 100% auto;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    font-size: 16px;
    height: 11.6875em;
    -webkit-justify-content: center;
    justify-content: center;
    margin: 0 auto;
    width: 17.8125em;
}
.payment-extra-data ul {
    display: block;
    font-size: 0.75em;
    list-style: none;
    margin: 0 1.5em;
    padding: 0;
}
@-webkit-keyframes extra-data-fade-in {
    0% {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes extra-data-fade-in {
    0% {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.payment-extra-data ul > li {
    border-left: 0.25em solid rgba(0, 158, 227, 0.5);
    font-family: Roboto Mono, monospace;
    line-height: 1.75em;
    padding-left: 0.8333333333em;
}
.payment-extra-data ul > li > span {
    color: #000;
}
.payment-extra-data ul > li > span.show-placeholder {
    color: gray;
}
.payment-extra-data ul > li > span.animate {
    -webkit-animation: extra-data-fade-in 0.4s;
    animation: extra-data-fade-in 0.4s;
    color: gray;
}
@font-face {
    font-family: Roboto Mono;
    font-style: normal;
    font-weight: 400;
    src: url(https://http2.mlstatic.com/ui/webfonts/v4.0.0/roboto-mono/roboto-mono-400.woff2) format("woff2"),
        url(https://http2.mlstatic.com/ui/webfonts/v4.0.0/roboto-mono/roboto-mono-400.woff) format("woff"),
        url(https://http2.mlstatic.com/ui/webfonts/v4.0.0/roboto-mono/roboto-mono-400.ttf) format("truetype");
}
fieldset {
    border: 0;
    padding: 0;
}
body {
    background: #eee;
}
main {
    display: block;
}
iframe {
    display: none;
}
.ui-card,
div.optimus div.group-payment-method-row-with-cvv .group-row {
    background: #fff;
    -webkit-border-radius: 0.25em;
    border-radius: 0.25em;
    -webkit-box-shadow: 0 0.07em 0.125em 0 rgba(0, 0, 0, 0.15);
    box-shadow: 0 0.07em 0.125em 0 rgba(0, 0, 0, 0.15);
    margin: 1em 0;
    overflow: hidden;
    padding: 1em;
}
.optimus .ui-card,
div.optimus div.group-payment-method-row-with-cvv .group-row {
    background-color: #fff;
    -webkit-border-radius: 6px;
    border-radius: 6px;
    -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.12);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.12);
}
.optimus .ui-card > :first-child,
div.optimus div.group-payment-method-row-with-cvv .group-row > :first-child {
    margin-top: 0;
}
.andes-form-control {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
}
.andes-button {
    border: none;
    font-size: 1.125em;
    margin-bottom: 0.4444444444em;
}
a.andes-button--loud:focus {
    color: #fff;
}
.grecaptcha-badge {
    visibility: hidden;
}
.andes-switch .andes-checkbox__label {
    margin-left: 0;
}
.andes-visually-hidden {
    clip: rect(0 0 0 0);
    border: 0;
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    height: 0.0625em;
    margin: 0 -0.0625em -0.0625em 0;
    overflow: hidden;
    padding: 0;
    position: absolute;
    white-space: nowrap;
    width: 0.0625em;
}
body.modal-view {
    background: transparent;
}
body.modal-view .nav-new-cookie-disclaimer {
    -webkit-border-radius: 0 0 0.375em 0.375em;
    border-radius: 0 0 0.375em 0.375em;
    bottom: 0;
    margin: 1em auto;
    max-width: 50.75em;
    min-width: 646px;
    position: relative;
    top: -94px;
    width: 100%;
}
@media (max-width: 768px) {
    body.modal-view .nav-new-cookie-disclaimer {
        top: -148px;
    }
}
.layout--modal .skeleton-full__sidebar {
    -webkit-animation: gradient 1.5s ease infinite;
    animation: gradient 1.5s ease infinite;
    background: -webkit-linear-gradient(135deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.04));
    background: linear-gradient(-45deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.04));
    -webkit-border-bottom-right-radius: 0.375em;
    border-bottom-right-radius: 0.375em;
    -webkit-border-top-right-radius: 0.375em;
    border-top-right-radius: 0.375em;
    height: 35.375em;
    left: 1.3125em;
    position: relative;
    width: 16.875em;
}
.layout--modal .skeleton-full__sidebar-header,
.layout--modal .skeleton-full__sidebar-item {
    display: none;
}
.layout--modal .skeleton-full__content {
    padding-left: 2.5em;
}
.layout--modal .skeleton-full__content-header {
    width: 16.125em;
}
.layout--modal .skeleton-full__content-item {
    width: 27.8125em;
}
.skeleton-full {
    display: -webkit-flex;
    display: flex;
    width: 100%;
}
.skeleton-full__content {
    padding: 0.5em 2.25em 0.5em 0;
}
.skeleton-full__content-header {
    height: 1.5em;
    margin-bottom: 2em;
    margin-top: 3.25em;
    width: 21em;
}
.skeleton-full__content-header,
.skeleton-full__content-item {
    -webkit-animation: gradient 1.5s ease infinite;
    animation: gradient 1.5s ease infinite;
    background: -webkit-linear-gradient(135deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.04));
    background: linear-gradient(-45deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.04));
    -webkit-background-size: 400% 400%;
    background-size: 400% 400%;
    -webkit-border-radius: 0.25em;
    border-radius: 0.25em;
}
.skeleton-full__content-item {
    height: 4.5em;
    margin-bottom: 0.75em;
    width: 30em;
}
.skeleton-full__sidebar {
    padding: 0.5em 0 0.5em 2.25em;
    width: 19.125em;
}
.skeleton-full__sidebar-header {
    height: 1.5em;
    margin-bottom: 2em;
    margin-top: 3.25em;
    width: 6.375em;
}
.skeleton-full__sidebar-header,
.skeleton-full__sidebar-item {
    -webkit-animation: gradient 1.5s ease infinite;
    animation: gradient 1.5s ease infinite;
    background: -webkit-linear-gradient(135deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.04));
    background: linear-gradient(-45deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.04));
    -webkit-background-size: 400% 400%;
    background-size: 400% 400%;
    -webkit-border-radius: 0.25em;
    border-radius: 0.25em;
}
.skeleton-full__sidebar-item {
    height: 20.125em;
    width: 16.875em;
}
.andes-button {
    overflow: hidden;
    position: relative;
}
.andes-button .andes-button__content {
    position: relative;
    z-index: 1;
}
.andes-button:after {
    background: #009ee3;
    -webkit-border-radius: 0.2222222222em;
    border-radius: 0.2222222222em;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    content: "";
    height: 100%;
    left: 0;
    margin: -0.0555555556em;
    padding: 0.0555555556em;
    position: absolute;
    top: 0;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
    width: 100%;
}
.andes-button--quiet:after {
    background: rgba(71, 154, 209, 0.1);
}
.andes-button[data-loading="true"].andes-button--loud {
    z-index: 200;
}
.andes-button[data-loading="true"]:after {
    -webkit-transform: scaleX(0.9);
    transform: scaleX(0.9);
    -webkit-transition: -webkit-transform 60s cubic-bezier(0, 0.56, 0.76, 0.96);
    transition: -webkit-transform 60s cubic-bezier(0, 0.56, 0.76, 0.96);
    transition: transform 60s cubic-bezier(0, 0.56, 0.76, 0.96);
    transition: transform 60s cubic-bezier(0, 0.56, 0.76, 0.96), -webkit-transform 60s cubic-bezier(0, 0.56, 0.76, 0.96);
}
.andes-button.progress-done.andes-button--loud:after,
.andes-button.progress-done.andes-button--quiet:after {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transition: -webkit-transform 0.25s ease-in;
    transition: -webkit-transform 0.25s ease-in;
    transition: transform 0.25s ease-in;
    transition: transform 0.25s ease-in, -webkit-transform 0.25s ease-in;
}
.andes-button--link {
    background: none;
    border: none;
    color: #009ee3;
    margin: 0;
    padding: 0;
}
.andes-button--link:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #32b3ff;
    outline: 0;
}
.andes-button--link:active {
    color: #1572ab;
}
.andes-button--link:hover {
    background: none;
    color: #32b3ff;
    cursor: pointer;
}
.icon.icon-lock--outline span:before {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNCIgaGVpZ2h0PSIxNiI+PGcgZmlsbD0iI0ZGRiI+PHBhdGggZD0iTTEyLjMxIDYuMjAyVjUuNDNhNS40MyA1LjQzIDAgMCAwLTEwLjg2LS4wMDF2Ljc3M0EyLjQxOSAyLjQxOSAwIDAgMCAuMTAzIDguMzY3djUuMjE2QTIuNDIgMi40MiAwIDAgMCAyLjUxOSAxNmg4LjcyMmEyLjQyIDIuNDIgMCAwIDAgMi40MTctMi40MTdWOC4zNjdhMi40MTcgMi40MTcgMCAwIDAtMS4zNDktMi4xNjV6bS01LjQzLTQuOGE0LjAzMiA0LjAzMiAwIDAgMSA0LjAyNyA0LjAyN3YuNTJIMi44NTN2LS41MkE0LjAzMiA0LjAzMiAwIDAgMSA2Ljg4IDEuNDAyem01LjM3NiAxMi4xODFhMS4wMTUgMS4wMTUgMCAwIDEtMS4wMTUgMS4wMTVIMi41MmExLjAxNSAxLjAxNSAwIDAgMS0xLjAxNS0xLjAxNVY4LjM2N0ExLjAxNSAxLjAxNSAwIDAgMSAyLjUyIDcuMzUyaDguNzIyYTEuMDE1IDEuMDE1IDAgMCAxIDEuMDE1IDEuMDE1djUuMjE2eiIvPjxjaXJjbGUgY3g9IjYuODgiIGN5PSIxMC45NzUiIHI9IjEiLz48L2c+PC9zdmc+");
    background-repeat: no-repeat;
    content: "";
    display: inline-block;
    height: 1em;
    margin: 0 0.5em 0 0;
    position: relative;
    vertical-align: middle;
    width: 0.875em;
}
.andes-button--loud + .button_back_default {
    float: right;
    margin-right: 0.5em;
}
.group-identification__children {
    display: -webkit-flex;
    display: flex;
}
.group-identification .input-document {
    -webkit-flex-grow: 1;
    flex-grow: 1;
}
.group-identification {
    margin: 0 auto;
    width: 15.75em;
}
.andes-form-control.andes-form-control--textfield {
    padding-top: 0;
}
.group-row {
    -webkit-align-items: center;
    align-items: center;
    background: #f5f5f5;
    -webkit-border-radius: 0.25em;
    border-radius: 0.25em;
    display: -webkit-flex;
    display: flex;
    line-height: 1.2;
    margin-bottom: 0.75em;
    min-height: 5.25em;
}
.group-row .group-media-object {
    -webkit-flex-grow: 1;
    flex-grow: 1;
    padding-right: 0.75em;
}
.group-row .row-content-details {
    padding-right: 0.5em;
}
.group-row .andes-button--link,
.group-row .button-step {
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    font-size: 0.875em;
}
.group-row .icon-wrapper {
    border: 1px solid #bfbfbf;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    height: 2.5em;
    margin-right: 1em;
    width: 2.5em;
}
.group-row .icon-wrapper svg {
    max-height: 1.25em;
    max-width: 1.25em;
}
.group-row .icon-wrapper.icon-mercado-pago-black {
    border: none;
}
.group-row .icon-wrapper.icon-mercado-pago-black svg {
    max-height: unset;
    max-width: unset;
}
.group-row .icon-wrapper img {
    max-width: 64%;
}
.group-row .payment-card-icon {
    zoom: 64%;
}
.group_row_selectable {
    background: #f5f5f5;
    -webkit-border-radius: 0.25em;
    border-radius: 0.25em;
}
.group_row_selectable .options-list {
    background: transparent;
    -webkit-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin: 0;
}
.group_row_selectable .options-list li.options-list__item {
    background: transparent;
    height: 100%;
}
.group_row_selectable .options-list li.options-list__item label {
    padding: 0;
}
.group_row_selectable .options-list li.options-list__item label .group-row {
    background: transparent;
    -webkit-border-radius: 0;
    border-radius: 0;
}
.group-row {
    padding: 1.125em 1.5em 1.125em 2em;
}
.group-media-object {
    -webkit-align-items: center;
    align-items: center;
    display: -webkit-flex;
    display: flex;
    height: 100%;
}
.group-media-object .icon-wrapper {
    margin-right: 1.5em;
}
.step_payment_option_form .group-media-object:only-child .row-details .title,
.step_paypal_express .group-media-object:only-child .row-details .title,
.step_review .group-media-object:only-child .row-details .title {
    max-width: 23.75em;
    overflow: hidden;
    text-overflow: ellipsis;
}
.step_payment_option_form .group-media-object:not(:only-child) .row-details .text,
.step_paypal_express .group-media-object:not(:only-child) .row-details .text,
.step_review .group-media-object:not(:only-child) .row-details .text {
    max-width: 23em;
    overflow: hidden;
    text-overflow: ellipsis;
}
.step_payment_option_form .layout--modal .group-media-object:only-child .row-details .title,
.step_paypal_express .layout--modal .group-media-object:only-child .row-details .title,
.step_review .layout--modal .group-media-object:only-child .row-details .title {
    max-width: 20.875em;
}
.step_payment_option_form .layout--modal .group-media-object:not(:only-child) .row-details .text,
.step_paypal_express .layout--modal .group-media-object:not(:only-child) .row-details .text,
.step_review .layout--modal .group-media-object:not(:only-child) .row-details .text {
    max-width: 20em;
}
.group-summary {
    position: relative;
}
.group-summary .title-h2 {
    font-size: 1em;
    font-weight: 600;
    line-height: 1.31;
}
.group-summary hr {
    background: #ddd;
    border: 0;
    display: block;
    height: 0.0625em;
    width: 100%;
}
.group-summary {
    -webkit-border-bottom-right-radius: 0.375em;
    border-bottom-right-radius: 0.375em;
    -webkit-border-top-right-radius: 0.375em;
    border-top-right-radius: 0.375em;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-grow: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    padding: 1.5em 1.5em 1em;
    width: 16.875em;
}
.group-summary__container {
    position: relative;
    width: 100%;
}
.group-summary .title-h2 {
    margin: 4.5em 0 2em;
}
.group-summary .row-summary + hr + .title-h2 {
    margin: 0.625em 0 2em;
}
.group-summary .andes-button--loud {
    bottom: 0;
    position: absolute;
    width: 100%;
}
.group-summary hr {
    margin: 1em 0;
}
.group-summary .summary-header {
    height: 2em;
}
.group-summary .summary-header + .title-h2 {
    margin-top: 3em;
}
.group-summary .user-menu {
    float: right;
    margin-right: -0.0625em;
    margin-top: 0.5em;
}
.group-summary .user-menu__button {
    margin-right: -0.1875em;
}
.group-summary .row-summary + hr + .row-instructions {
    margin-bottom: 2.5em;
}
.group-summary .row-summary + hr + .row-instructions .text {
    font-size: 0.875em;
    margin-top: 0;
    position: static;
    text-align: start;
}
.layout--embed .group-summary,
.layout--redirect .group-summary {
    background: #f5f5f5;
    -webkit-border-radius: 0.25em;
    border-radius: 0.25em;
    -webkit-box-shadow: 0 0.125em 0.125em 0 #e5e5e5;
    box-shadow: 0 0.125em 0.125em 0 #e5e5e5;
    margin-bottom: 1em;
    padding: 2em 1.5em;
}
.layout--embed .group-summary .title-h2,
.layout--redirect .group-summary .title-h2 {
    margin-top: 0.5em;
}
.layout--embed .group-summary .andes-button--loud:not(.open-finance-terms ~ div > div button),
.layout--redirect .group-summary .andes-button--loud:not(.open-finance-terms ~ div > div button) {
    margin-top: 3em;
    position: relative;
}
.layout--modal .group-summary {
    height: 100%;
}
.step_review_split_payment .layout__col-sidebar .group-summary .row-summary__price + span.row-summary__text_promo {
    margin-top: -0.5625em;
}
@media (max-width: 767px) {
    .group-summary {
        max-width: 14.5em;
    }
}
div.optimus div.group-total-summary .row-summary,
div.optimus div.group-total-summary .row-summary--discount {
    position: relative;
    white-space: pre-line;
}
div.optimus div.group-total-summary .row-summary__text-total-description {
    -webkit-align-self: center;
    align-self: center;
    font-size: 1em;
    font-weight: 600;
}
div.optimus div.group-total-summary .row-summary__text-total-amount {
    font-size: 1.25em;
    font-weight: 600;
}
div.optimus div.group-total-summary .row-summary--discount {
    font-size: 1em;
    font-weight: 400;
}
div.optimus div.group-total-summary .row-summary--discount .row-summary__discount:first-of-type {
    -webkit-flex: 1;
    flex: 1;
}
div.optimus div.group-total-summary .row-summary__text-total-amount,
div.optimus div.group-total-summary span.row-summary__discount + .question-mark + span.row-summary__discount,
div.optimus div.group-total-summary span.row-summary__discount + span.row-summary__discount,
div.optimus div.group-total-summary span.row-summary__text + span.row-summary__text {
    font-size: 1.25em;
    margin-right: 0.625em;
    padding-left: 0.625em;
    white-space: nowrap;
}
div.optimus div.group-total-summary .row-summary__text-total-amount + .row-summary__text-total-amount,
div.optimus
    div.group-total-summary
    span.row-summary__discount
    + .question-mark
    + span.row-summary__discount
    + span.row-summary__discount,
div.optimus
    div.group-total-summary
    span.row-summary__discount
    + span.row-summary__discount
    + span.row-summary__discount,
div.optimus div.group-total-summary span.row-summary__text + span.row-summary__text + span.row-summary__text {
    font-size: 0.625em;
    margin-right: 0;
    position: absolute;
    right: 0;
    text-align: right;
    top: 0.375em;
    vertical-align: super;
}
div.optimus div.group-total-summary .group-summary {
    background-color: #f5f5f5;
}
div.optimus div.group-total-summary .andes-button__content {
    white-space: nowrap;
}
div.optimus div.group-total-summary .title-h2 {
    font-size: 1.125em;
    font-weight: 400;
}
div.optimus div.group-total-summary hr + .row-summary + .row-details .text {
    margin-top: -1.25em;
    width: 70%;
}
div.optimus div.group-total-summary hr + .row-summary + .row-details + .text.centered {
    margin-top: 0.625em;
}
div.optimus div.group-total-summary .group-summary__container > .group-generic:first-of-type {
    padding: 1.5em 2em;
}
div.optimus
    div.group-total-summary
    .group-summary__container
    .row-summary--discount
    .row-summary__discount:first-child {
    padding-right: 0.3125em;
}
div.optimus div.group-total-summary .andes-button {
    margin-top: 3em;
    padding: 0;
}
div.optimus div.group-total-summary .andes-button + p.text.gray,
div.optimus div.group-total-summary .group-captcha + p.text.gray,
div.optimus div.group-total-summary form.group_form + p.text.gray,
div.optimus div.group-total-summary p.text.gray ~ p.text.gray {
    font-size: 0.75em;
    line-height: 1em;
    text-align: center;
}
div.optimus div.group-total-summary .andes-button + p.text.gray:not(:last-child),
div.optimus div.group-total-summary .group-captcha + p.text.gray:not(:last-child),
div.optimus div.group-total-summary form.group_form + p.text.gray:not(:last-child),
div.optimus div.group-total-summary p.text.gray ~ p.text.gray:not(:last-child) {
    margin-bottom: 0.375em;
}
div.optimus div.group-total-summary .group-row {
    padding: 1em 2em;
}
.row-details {
    line-height: 1.2;
}
.row-details .text_title {
    color: rgba(0, 0, 0, 0.9);
    font-size: 1em;
    line-height: 1.125em;
    margin-bottom: 0.0625em;
}
.row-details .text_cft {
    color: #737373;
    font-size: 1.375em;
    line-height: 1;
}
.row-details .text_price {
    display: inline-block;
    margin-left: 0.625em;
}
.row-details .text,
.row-details .text_interest_total,
.row-details .text_price,
.row-details .text_with_hint {
    color: rgba(0, 0, 0, 0.55);
    font-size: 0.875em;
}
.row-details .text_interest_promo,
.row-details .text_interest_total,
.row-details .text_promo {
    display: inline-block;
    font-size: 0.875em;
    margin-right: 0.5714285714em;
}
.row-details .text_interest_promo,
.row-details .text_promo {
    color: #0db478;
}
.row-details div.text_with_hint {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    margin-top: 0.25em;
}
.row-details div.title_with_bpp svg {
    height: 0.875em;
    margin-bottom: 0.125em;
    margin-left: 0.5em;
    padding: 0;
    vertical-align: middle;
    width: 0.875em;
}
.row-details {
    padding-right: 0.75em;
}
.row-payment {
    -webkit-border-radius: 0.25em;
    border-radius: 0.25em;
    padding: 1.5em;
}
.animated-group.overlay_and_expand .animated-content {
    height: 0;
    max-height: 0;
    overflow: hidden;
    position: relative;
    -webkit-transition: max-height 0.5s, height 0.5s;
    transition: max-height 0.5s, height 0.5s;
}
.animated-group.overlay_and_expand .content {
    opacity: 1;
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
}
.animated-group.overlay_and_expand .content .animated-content {
    opacity: 1;
}
.animated-group.overlay_and_expand.animate .animated-content {
    height: 21.875em;
    max-height: 21.875em;
}
.animated-group.overlay_and_expand.animate .content {
    opacity: 0;
    pointer-events: none;
}
.animated-group.disabled.animate button {
    background: #bfbfbf;
    border-color: #bfbfbf;
    color: #fff;
    pointer-events: none;
}
.animated-group.disappear {
    display: none;
}
.icon-installments {
    background: #fff;
    border: 0.0625em solid #bfbfbf;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    height: 2.5em;
    position: relative;
    text-align: center;
    width: 2.5em;
}
.icon-installments > div {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 100%;
}
.icon-installments .ui-avatar__content--initials {
    background: unset;
    border: unset;
    height: unset;
    width: 100%;
}
.icon-installments .ui-avatar__content--initials span {
    color: rgba(71, 154, 209, 0.4);
    font-size: 1em;
    font-weight: 600;
    line-height: 1;
    text-transform: unset;
}
.icon-wrapper {
    -webkit-align-items: center;
    align-items: center;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-grow: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
    width: 2.25em;
}
.icon-wrapper img,
.icon-wrapper svg {
    display: block;
    -webkit-flex: 1;
    flex: 1;
    max-width: 100%;
}
.icon-wrapper > div {
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
}
.installments-list {
    -webkit-align-items: center;
    align-items: center;
    display: -webkit-flex;
    display: flex;
    height: 100%;
}
.installments-list__installment {
    color: #333;
    -webkit-flex-grow: 0;
    flex-grow: 0;
    font-weight: 600;
    width: 2.5em;
}
.installments-list__amount,
.installments-list__installment {
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    font-size: 1.25em;
}
.installments-list__total-amount {
    -webkit-flex-grow: 1;
    flex-grow: 1;
    padding-left: 0.375em;
    text-align: right;
}
.installments-list__total-amount p {
    font-size: 0.875em;
}
.installments-list__total-amount .promo {
    color: #0db478;
}
.issuers-row {
    -webkit-align-items: center;
    align-items: center;
    display: -webkit-flex;
    display: flex;
    height: 100%;
}
.issuers-row__logo {
    margin: 0 auto;
    max-height: 3em;
}
.issuers-row__text {
    color: #333;
    font-size: 1em;
    margin: 0 auto;
}
.redirect-view .layout-mp-brand {
    display: none;
}
.layout-main .title-h2 {
    font-size: 1em;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1em;
}
.layout__col-content .bank-deals-link {
    display: block;
    font-size: 0.875em;
}
.centered {
    text-align: center;
}
@media (max-width: 20em) {
    #group_generic_links {
        -webkit-flex-direction: column;
        flex-direction: column;
    }
    #group_generic_links .bank-deals-link {
        margin: 0.625em 0;
    }
    #group_generic_links .bank-deals-link + p.text {
        display: none;
    }
}
.sandbox-mode .layout,
.sandbox-mode .layout--modal .group-summary {
    background-image: url(https://http2.mlstatic.com/frontend-assets/px-checkout-frontend/655417bac3654d700496.png);
    background-repeat: repeat;
}
.sandbox-mode.site-mlb .layout,
.sandbox-mode.site-mlb .layout--modal .group-summary {
    background-image: url(https://http2.mlstatic.com/frontend-assets/px-checkout-frontend/e9e338935587ae4b00a3.png);
}
.sandbox-badge {
    display: block;
    height: 10em;
    left: -5.3125em;
    padding-top: 7em;
    position: fixed;
    text-align: center;
    top: -4.375em;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    width: 11.875em;
    z-index: 999;
}
.sandbox-badge span {
    display: block;
}
.sandbox-badge__title {
    color: rgba(0, 0, 0, 0.9);
    font-size: 1.125em;
    font-weight: 600;
    line-height: 1.1;
}
.sandbox-badge__text {
    color: #009ee3;
    font-size: 0.75em;
}
.sandbox-badge:after {
    border: 6em solid transparent;
    border-bottom-color: #ffe600;
    -webkit-box-shadow: -5px 0.125em 0.3125em rgba(0, 0, 0, 0.1);
    box-shadow: -5px 0.125em 0.3125em rgba(0, 0, 0, 0.1);
    content: "";
    display: block;
    height: 0;
    left: 0;
    position: absolute;
    top: -2em;
    width: 0;
    z-index: -1;
}
body.modal-view {
    padding: 0 0.75em;
}
.layout .layout-main {
    -webkit-border-radius: 0.375em;
    border-radius: 0.375em;
    margin: 0 auto;
    max-width: 50.75em;
    min-width: 646px;
    width: 100%;
}
.layout .layout-main .optimus {
    -webkit-align-items: stretch;
    align-items: stretch;
    display: -webkit-flex;
    display: flex;
}
.button-back-arrow {
    display: inline-block;
}
.button-back-arrow > :hover path {
    opacity: 0.7;
}
.layout-close-btn {
    background: none;
    border: 0;
    color: #fff;
    cursor: pointer;
    padding: 0;
    position: absolute;
    right: -4.25em;
    top: 1em;
}
.layout__col-content {
    -webkit-flex-grow: 1;
    flex-grow: 1;
    padding: 1em 2em;
    position: relative;
    width: 100%;
}
.layout__col-content > :last-child {
    margin-bottom: 0;
}
.layout__col-content .andes-button--loud {
    float: right;
    margin-bottom: 0;
    min-width: 10.6111111111em;
}
.layout__col-content .bank-deals-link {
    margin: -1.9285714286em 0 0.5714285714em;
}
@media (min-width: 833px) {
    .layout__col-content .bank-deals-link {
        margin: 0;
        position: absolute;
        right: 2.2857142857em;
        top: 3.25em;
    }
}
@media (max-width: 832px) {
    .layout__col-content .bank-deals-link {
        margin-bottom: 1.0625em;
        margin-top: -1.625em;
    }
    .layout__col-content .toggle-button-wrapper {
        margin-bottom: 0.5em;
        margin-top: -2.25em;
        position: static;
    }
}
.layout--modal .layout-main {
    background: #eee;
    -webkit-border-radius: 0.375em;
    border-radius: 0.375em;
    -webkit-box-shadow: 0 0.125em 0.375em rgba(0, 0, 0, 0.3);
    box-shadow: 0 0.125em 0.375em rgba(0, 0, 0, 0.3);
    margin: 1em auto;
    position: relative;
    -webkit-transition: opacity 0.45s cubic-bezier(0.67, 0, 0.74, 1);
    transition: opacity 0.45s cubic-bezier(0.67, 0, 0.74, 1);
}
.layout--modal .layout-main,
.layout--modal .layout-main .optimus {
    height: 35.375em;
}
.layout--modal .layout__col-sidebar {
    background-color: #f5f5f5;
    -webkit-border-bottom-right-radius: 0.375em;
    border-bottom-right-radius: 0.375em;
    -webkit-border-top-right-radius: 0.375em;
    border-top-right-radius: 0.375em;
}
.layout__col-sidebar {
    position: relative;
}
.layout--embed .layout-main,
.layout--redirect .layout-main {
    margin: 0 auto;
}
.layout--embed .layout-main .optimus,
.layout--redirect .layout-main .optimus {
    -webkit-align-items: flex-start;
    align-items: flex-start;
}
.layout--embed .processing,
.layout--redirect .processing {
    left: 50%;
    position: absolute;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 1;
}
.layout--embed .layout__col-content,
.layout--redirect .layout__col-content {
    padding: 1em 2em 1em 0;
}
.layout--embed .layout__col-sidebar,
.layout--redirect .layout__col-sidebar {
    padding-top: 6em;
}
.layout--embed .layout-close-btn,
.layout--redirect .layout-close-btn {
    display: none;
}
.layout--redirect .navbar ~ [class^="layout__"] {
    margin-top: 3.75em;
}
.layout--redirect .layout-main {
    max-width: 54.75em;
    padding: 0 2em;
}
.layout--modal .navbar ~ [class^="layout__"] {
    margin-top: 3.75em;
}
.layout--modal .navbar {
    -webkit-border-top-left-radius: 0.375em;
    border-top-left-radius: 0.375em;
    -webkit-border-top-right-radius: 0.375em;
    border-top-right-radius: 0.375em;
}
@media (max-width: 680px) {
    body {
        font-size: 15px;
    }
    .andes-dropdown.andes-dropdown--form {
        padding-top: 0.75em;
    }
}
@media (max-width: 767px) {
    .layout--embed .layout__col-content,
    .layout--modal .layout__col-content,
    .layout--redirect .layout__col-content {
        padding-right: 1.5em;
    }
    .layout--embed .layout__col-content {
        padding-left: 0;
    }
    .layout--redirect .layout-main {
        padding: 0 1.5em;
    }
}
.layout--embed .layout__col-content {
    padding-left: 0;
}
.layout__col-content .group-back-url {
    display: -webkit-flex;
    display: flex;
    margin-top: 1.5em;
    min-height: 1.25em;
}
.layout__col-content .group-back-url .chevron-left {
    margin: 0 0.375em 0 0;
}
.layout__col-content .group-back-url .andes-button {
    font-size: 0.875em;
    line-height: 0.875em;
    margin: 0;
}
.oops {
    text-align: center;
}
.oops,
.oops .icon-wrapper {
    width: 100%;
}
.oops__message {
    color: #333;
    font-size: 1em;
    margin: 1.875em 0 1em;
}
.select_extra_info_row {
    height: 11.875em;
}
.select_extra_info_row .options-list__label {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    height: 11.875em;
    -webkit-justify-content: center;
    justify-content: center;
}
.options-list {
    padding: 0;
}
.options-list__item {
    background: #fff;
    border-bottom: 0.0625em solid #eee;
    height: auto;
}
.options-list__item:last-child {
    border: 0;
}
.options-list__item.disabled .group-media-object div:first-child .icon-wrapper,
.options-list__item.disabled .group-media-object div:first-child.icon-installments {
    background-color: #fff;
}
.options-list__item.disabled .options-list__label {
    cursor: default;
}
.options-list__item.disabled .options-list__label:hover {
    background-color: #fff;
}
.options-list__item.disabled.item-account_money_row {
    background-color: #f5f5f5;
}
.options-list__item.disabled.item-account_money_row .options-list__label .group-media-object div + div {
    width: 100%;
}
.options-list__item.disabled.item-account_money_row
    .options-list__label
    .group-media-object
    div
    + div
    .icon_with_tooltip,
.options-list__item.disabled.item-account_money_row .options-list__label .group-media-object div + div .text_with_hint {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
}
.options-list__item.disabled.item-account_money_row
    .options-list__label
    .group-media-object
    div
    + div
    .icon_with_tooltip
    .icon-wrapper,
.options-list__item.disabled.item-account_money_row
    .options-list__label
    .group-media-object
    div
    + div
    .text_with_hint
    .icon-wrapper {
    border: none;
    display: block;
    height: 0;
    margin-right: 0.5em;
    position: relative;
    top: -1em;
    width: 0;
}
.options-list__item.disabled.item-account_money_row
    .options-list__label
    .group-media-object
    div
    + div
    .icon_with_tooltip
    .icon-wrapper
    svg,
.options-list__item.disabled.item-account_money_row
    .options-list__label
    .group-media-object
    div
    + div
    .text_with_hint
    .icon-wrapper
    svg {
    max-height: 1.25em;
    max-width: 1.25em;
}
.options-list__item.disabled.item-account_money_row
    .options-list__label
    .group-media-object
    div
    + div
    .icon_with_tooltip
    .icon-with-tooltip {
    -webkit-flex-grow: 0;
    flex-grow: 0;
}
.options-list__item.disabled.item-account_money_row
    .options-list__label
    .group-media-object
    div
    + div
    .icon_with_tooltip
    .andes-tooltip__trigger {
    margin: 0;
    position: relative;
    top: -0.75em;
}
.options-list__item.disabled.item-account_money_row
    .options-list__label
    .group-media-object
    div
    + div
    .icon_with_tooltip
    .andes-tooltip__trigger
    .icon-wrapper {
    top: -1em;
}
.options-list__item.disabled.item-account_money_row
    .options-list__label
    .group-media-object
    div
    + div
    .icon_with_tooltip
    .andes-tooltip__trigger
    .icon-wrapper
    svg {
    height: 1.125em;
    width: 1.125em;
}
.options-list__item.disabled.item-account_money_row .options-list__label .group-media-object div + div .text_with_hint {
    -webkit-justify-content: space-between;
    justify-content: space-between;
}
.options-list__item.disabled.item-account_money_row
    .options-list__label
    .group-media-object
    div
    + div
    .text_with_hint
    .question-mark
    .icon-wrapper {
    cursor: pointer;
}
.options-list__item.disabled.item-account_money_row
    .options-list__label
    .group-media-object
    div
    + div
    .text_with_hint
    .question-mark
    .icon-wrapper
    svg {
    height: 1.25em;
    width: 1.25em;
}
.options-list__item.disabled.item-account_money_row .options-list__label .icon-wrapper.icon-wrapper-disabled {
    background-color: #e5e5e5;
}
.options-list__item.disabled.item-account_money_row .options-list__label:hover {
    background-color: #f5f5f5;
}
.options-list__item:not(.disabled, .with-action-text, .with-switch) .options-list__label:before {
    background: inherit;
    border-bottom: 0.109375em solid rgba(71, 154, 209, 0.4);
    border-right: 0.109375em solid rgba(71, 154, 209, 0.4);
    bottom: 0;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    content: "";
    height: 0.3125em;
    margin-bottom: auto;
    margin-top: auto;
    position: absolute;
    right: 1.375em;
    top: 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    width: 0.3125em;
}
.options-list__item:not(.disabled, .with-action-text, .with-switch) .options-list__label:focus {
    outline: 0;
}
.options-list__item.with-action-text .options-list__label .group-media-object div:nth-child(2) {
    -webkit-flex-grow: 1;
    flex-grow: 1;
}
.options-list__item.with-action-text .options-list__label .group-media-object div .andes-badge {
    -webkit-flex-grow: initial;
    flex-grow: 0;
}
.options-list__item.with-action-text .options-list__label .group-media-object div:nth-child(3) .text {
    color: rgba(71, 154, 209, 0.4);
    font-size: 14px;
    line-height: 1.2857142857em;
    padding-left: 0.7142857143em;
}
.options-list__item.with-switch .options-list__label .group-media-object > div:nth-child(3) {
    display: -webkit-flex;
    display: flex;
    -webkit-flex: 1;
    flex: 1;
    -webkit-flex-direction: row-reverse;
    flex-direction: row-reverse;
}
.options-list__item.with-switch :hover {
    background-color: #fff;
}
.options-list__item.item-debit_and_prepaid_card_row .andes-badge {
    background: rgba(71, 154, 209, 0.4);
    height: 1.125em;
    margin: 0;
    padding: 0.3125em;
    position: absolute;
    right: 0;
    top: 0;
}
.options-list__item.item-debit_and_prepaid_card_row .andes-badge .andes-badge__content {
    color: #fff;
    font-weight: 700;
    padding: 0.125em;
    text-transform: uppercase;
}
.options-list__label {
    cursor: pointer;
    display: block;
    height: 4.625em;
    position: relative;
    -webkit-transition: background 0.12s ease-out;
    transition: background 0.12s ease-out;
    width: 100%;
}
.options-list__label:after {
    background: #ebebeb;
    bottom: 0.0625em;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    content: "";
    left: 0.3125em;
    margin: -0.0555555556em;
    padding: 0.0555555556em;
    position: absolute;
    top: 0.0625em;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
    width: 100%;
    z-index: -1;
}
:checked + .options-list__label:not(.with-switch) {
    background: #f5f5f5;
    -webkit-box-shadow: inset 0.25em 0 0 0 rgba(71, 154, 209, 0.4);
    box-shadow: inset 0.25em 0 0 0 rgba(71, 154, 209, 0.4);
    z-index: 200;
}
[data-loading="true"] :checked + .options-list__label:not(.with-switch):after {
    -webkit-transform: scaleX(0.9);
    transform: scaleX(0.9);
    -webkit-transition: -webkit-transform 60s cubic-bezier(0, 0.56, 0.76, 0.96);
    transition: -webkit-transform 60s cubic-bezier(0, 0.56, 0.76, 0.96);
    transition: transform 60s cubic-bezier(0, 0.56, 0.76, 0.96);
    transition: transform 60s cubic-bezier(0, 0.56, 0.76, 0.96), -webkit-transform 60s cubic-bezier(0, 0.56, 0.76, 0.96);
}
:checked + .options-list__label:not(.with-switch).progress-done:after {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transition: -webkit-transform 0.25s ease-in;
    transition: -webkit-transform 0.25s ease-in;
    transition: transform 0.25s ease-in;
    transition: transform 0.25s ease-in, -webkit-transform 0.25s ease-in;
}
.options-list__label.with-switch {
    cursor: default;
}
.options-list__label.with-switch .andes-switch {
    bottom: 0.625em;
    margin-right: 1.875em;
}
.options-list__bottomRow {
    -webkit-align-items: center;
    align-items: center;
    background: #f5f5f5;
    display: -webkit-flex;
    display: flex;
    gap: 0.3125em;
}
.options-list.max-elements {
    -webkit-border-bottom-left-radius: 0;
    border-bottom-left-radius: 0;
    -webkit-border-bottom-right-radius: 0;
    border-bottom-right-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin-bottom: 0;
}
.options-list .icon-wrapper {
    border: 1px solid #bfbfbf;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    height: 2.5em;
    margin-right: 1em;
    width: 2.5em;
}
.options-list .icon-wrapper svg {
    max-height: 1.25em;
    max-width: 1.25em;
}
.options-list .icon-wrapper img {
    max-width: 64%;
}
.options-list .icon-wrapper.icon-mercado-credito svg {
    max-height: 2.5em;
    max-width: 2.5em;
}
.options-list .icon-wrapper.icon-mercado-pago-black {
    border: none;
}
.options-list .icon-wrapper.icon-mercado-pago-black svg {
    max-height: unset;
    max-width: unset;
}
.options-list .icon-wrapper .icon-mercado-pago {
    max-height: 1.5em;
    max-width: 1.5em;
}
.options-list .payment-card-icon {
    zoom: 64%;
}
.options-list.ui-card.select_payment_method,
div.optimus div.group-payment-method-row-with-cvv .options-list.select_payment_method.group-row {
    -webkit-box-shadow: none;
    box-shadow: none;
}
.options-list.ui-card.select_personalized_payment_options + .title-h2,
div.optimus
    div.group-payment-method-row-with-cvv
    .options-list.select_personalized_payment_options.group-row
    + .title-h2 {
    font-size: 0.875em;
    margin-bottom: 0.5em;
    margin-top: 1em;
}
.options-list {
    margin: 0 0 1em;
    position: relative;
}
.options-list__bottomRow,
.options-list__label {
    padding: 0.5em 2em;
}
.options-list.group_payment_method {
    padding: 0;
}
.options-list .icon-wrapper {
    margin-right: 1.25em;
}
.options-list__input:focus + .options-list__label,
.options-list__label:focus,
.options-list__label:hover {
    background: #f5f5f5;
}
.options-list__item .andes-badge {
    margin-top: 0;
    padding: 0.25em;
    position: absolute;
    right: 0;
    top: 0;
}
.options-list__item.icon-full {
    height: unset;
}
.options-list__item.icon-full .options-list__label {
    padding-left: 0;
}
.options-list__item.icon-full .options-list__label .icon-wrapper {
    border: none;
    -webkit-border-radius: 0;
    border-radius: 0;
    height: unset;
    width: unset;
}
.options-list__item.icon-full .options-list__label .icon-wrapper svg {
    max-height: 100%;
    max-width: 100%;
}
.processing {
    text-align: center;
}
.processing__message {
    color: #333;
    font-size: 1.5em;
    font-weight: 600;
}
.step_consumer_credits .row-summary {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}
.row-summary {
    display: -webkit-flex;
    display: flex;
    font-size: 1em;
    line-height: 1.5;
}
.row-summary :first-child {
    -webkit-flex-grow: 1;
    flex-grow: 1;
}
.row-summary :nth-child(2) {
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
}
.row-summary:not(.row-summary--pay) .row-summary__text_promo {
    text-align: end;
    width: 100%;
}
.row-summary__text_promo {
    color: #0db478;
}
.row-summary--pay {
    font-size: 1.125em;
    margin-bottom: 0.6666666667em;
}
@media (max-width: 767px) {
    .row-summary--pay {
        font-size: 1em;
    }
}
.row-summary--pay .row-summary__text {
    margin-right: 8px;
}
@media (max-width: 767px) {
    .row-summary--pay .row-summary__text {
        line-height: 1.3;
        padding: 0.125em 0;
    }
}
.row-summary--pay .row-summary__text_promo {
    font-size: 0.7777777778em;
    text-align: right;
    width: 100%;
}
.row-summary--dynamic :first-child,
.row-summary--tax :first-child {
    -webkit-flex-grow: unset;
    flex-grow: unset;
}
.row-summary--dynamic :nth-child(2),
.row-summary--tax :nth-child(2) {
    -webkit-flex-shrink: unset;
    flex-shrink: unset;
}
.row-summary--dynamic :last-child,
.row-summary--tax :last-child {
    -webkit-flex-grow: 1;
    flex-grow: 1;
    text-align: right;
}
.row-summary--tax .row-summary__text {
    width: 57%;
}
.row-summary--tax .row-summary__text + .icon-with-tooltip {
    -webkit-align-self: flex-start;
    align-self: flex-start;
    margin-top: 0.1875em;
}
.row-summary--tax .row-summary__text + .icon-with-tooltip + .row-summary__price {
    white-space: nowrap;
}
.layout--modal .row-summary .row-summary__text_promo {
    width: unset;
}
.row-summary {
    font-weight: 300;
    margin-bottom: 0.75em;
}
.row-summary__text {
    word-break: break-word;
}
.row-summary--pay {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    font-weight: 400;
}
.two-lines-row {
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    padding-right: 1em;
    text-overflow: ellipsis;
}
.product-name-tooltip {
    max-width: 16.875em;
}
.step_first_split_payment .group-summary .row-summary,
.step_review_split_payment .group-summary .row-summary,
.step_second_split_payment .group-summary .row-summary {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    font-size: 1em;
    font-weight: 300;
}
.step_first_split_payment .group-summary .row-summary .row-summary__text,
.step_first_split_payment .group-summary .row-summary:first-of-type .row-summary__price,
.step_first_split_payment .group-summary .row-summary:first-of-type .row-summary__text,
.step_first_split_payment .group-summary .row-summary:last-of-type .row-summary__price,
.step_first_split_payment .group-summary .row-summary:last-of-type .row-summary__text,
.step_review_split_payment .group-summary .row-summary .row-summary__text,
.step_review_split_payment .group-summary .row-summary:first-of-type .row-summary__price,
.step_review_split_payment .group-summary .row-summary:first-of-type .row-summary__text,
.step_review_split_payment .group-summary .row-summary:last-of-type .row-summary__price,
.step_review_split_payment .group-summary .row-summary:last-of-type .row-summary__text,
.step_second_split_payment .group-summary .row-summary .row-summary__text,
.step_second_split_payment .group-summary .row-summary:first-of-type .row-summary__price,
.step_second_split_payment .group-summary .row-summary:first-of-type .row-summary__text,
.step_second_split_payment .group-summary .row-summary:last-of-type .row-summary__price,
.step_second_split_payment .group-summary .row-summary:last-of-type .row-summary__text {
    font-size: 1em;
}
.step_first_split_payment .group-summary .row-summary .row-summary__text.two-lines-row,
.step_review_split_payment .group-summary .row-summary .row-summary__text.two-lines-row,
.step_second_split_payment .group-summary .row-summary .row-summary__text.two-lines-row {
    width: -webkit-min-content;
    width: -moz-min-content;
    width: min-content;
}
.step_first_split_payment .group-summary .row-summary .row-summary__price,
.step_review_split_payment .group-summary .row-summary .row-summary__price,
.step_second_split_payment .group-summary .row-summary .row-summary__price {
    font-size: 1em;
}
.step_first_split_payment .group-summary .row-summary .row-summary__price + .row-summary__text_promo,
.step_review_split_payment .group-summary .row-summary .row-summary__price + .row-summary__text_promo,
.step_second_split_payment .group-summary .row-summary .row-summary__price + .row-summary__text_promo {
    font-size: 0.875em;
    text-align: right;
    width: 100%;
}
.step_first_split_payment .group-summary .row-summary .title-h2:last-of-type,
.step_review_split_payment .group-summary .row-summary .title-h2:last-of-type,
.step_second_split_payment .group-summary .row-summary .title-h2:last-of-type {
    font-size: 1.125em;
    font-weight: 400;
}
@keyframes loading-fade-in {
    0% {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.loader-wrapper {
    -webkit-animation: loading-fade-in 0.5s ease-out both;
    animation: loading-fade-in 0.5s ease-out both;
    background: hsla(0, 0%, 100%, 0.8);
    height: 100%;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 100;
}
.loader-wrapper .ui-loading {
    left: 50%;
    position: absolute;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.layout--modal .loader-wrapper {
    -webkit-border-radius: 0.3125em;
    border-radius: 0.3125em;
}
.loader-wrapper {
    position: fixed;
}
.layout--modal .loader-wrapper {
    position: absolute;
}
.c-title {
    font-size: 1.125em;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 1.5em;
    margin-top: 1.625em;
}
@-webkit-keyframes andes-snackbar-show {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
    to {
        opacity: 1;
    }
}
@keyframes andes-snackbar-show {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
    to {
        opacity: 1;
    }
}
@-webkit-keyframes andes-snackbar-hide {
    50% {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
}
@keyframes andes-snackbar-hide {
    50% {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
}
.andes-snackbar {
    -webkit-align-items: center;
    align-items: center;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    bottom: 0;
    color: #fff;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
    font-family: Proxima Nova, -apple-system, Helvetica Neue, Helvetica, Roboto, Arial, sans-serif;
    font-weight: 300;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    position: fixed;
    z-index: 1021;
}
.andes-snackbar--default {
    background-color: #1a1a1a;
}
.andes-snackbar__action {
    background: none;
    color: #fff !important;
    font-size: inherit;
    font-weight: 600;
    text-align: right;
    text-decoration: none !important;
    text-transform: uppercase;
    white-space: nowrap;
}
.andes-snackbar__action:hover {
    text-decoration: underline;
}
.andes-snackbar__action:focus,
.andes-snackbar__action:focus-visible {
    box-shadow: 0 0 0 2px #fff, 0 0 0 3px #007eb5, 0 0 0 5px rgba(71, 154, 209, 0.3);
    -moz-box-shadow: 0 0 0 2px #fff, 0 0 0 3px #007eb5, 0 0 0 5px rgba(71, 154, 209, 0.3);
    -webkit-box-shadow: 0 0 0 2px #fff, 0 0 0 3px #007eb5, 0 0 0 5px rgba(71, 154, 209, 0.3);
    outline: none;
}
.andes-snackbar__action:focus:not(:focus-visible) {
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    outline: none;
}
.andes-snackbar__message {
    margin: 0;
}
.andes-snackbar--bottom {
    -webkit-align-items: flex-start;
    align-items: flex-start;
    -webkit-flex-flow: column wrap;
    flex-flow: column wrap;
}
.andes-snackbar--bottom .andes-snackbar__action {
    padding-top: 0;
}
.andes-snackbar--animate-show {
    -webkit-animation-name: andes-snackbar-show;
    animation-name: andes-snackbar-show;
}
.andes-snackbar--animate-hide {
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-name: andes-snackbar-hide;
    animation-name: andes-snackbar-hide;
}
.andes-snackbar {
    bottom: 1.1428571429em;
    -webkit-box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.1);
    left: 0;
    line-height: 1.1428571429em;
    margin: 0 0.5714285714em;
    right: 0;
}
.andes-snackbar,
.andes-snackbar__action {
    -webkit-border-radius: 0.4285714286em;
    border-radius: 0.4285714286em;
}
.andes-snackbar__action {
    margin-right: 0.5714285714em;
    padding: 0.5714285714em;
}
.andes-snackbar__message {
    font-size: 14px;
    padding: 1.1428571429em;
}
.andes-snackbar--bottom .andes-snackbar__action {
    margin-bottom: 0.5714285714em;
    margin-left: 0.5714285714em;
    padding-bottom: 0.5714285714em;
    padding-top: 0.5714285714em;
}
.andes-snackbar--bottom .andes-snackbar__message {
    line-height: 1.5714285714em;
    padding-bottom: 0.5714285714em;
}
@media (min-width: 768px) {
    .andes-snackbar {
        bottom: 2em;
        line-height: 1em;
        margin-left: auto;
        margin-right: auto;
        max-width: 37.5em;
    }
    .andes-snackbar,
    .andes-snackbar__action {
        -webkit-border-radius: 0.375em;
        border-radius: 0.375em;
    }
    .andes-snackbar__message {
        font-size: 16px;
        padding: 1.5em;
    }
    .andes-snackbar--bottom .andes-snackbar__action {
        margin-left: 16px;
        padding-left: 0.5em;
    }
    .andes-snackbar--bottom .andes-snackbar__message {
        line-height: 1.375em;
        padding-bottom: 0.5em;
    }
}
.andes-snackbar--success {
    background-color: #2d8e5f;
}
.andes-snackbar--error {
    background-color: #f23d4f;
}
.andes-snackbar__message {
    color: #fff;
    font-size: 1em;
}
.page-mask .group-list-wrapper .andes-list .andes-list__group .andes-list__group--sublist {
    -webkit-box-shadow: 0 0.0625em 0.125em 0 rgba(0, 0, 0, 0.12);
    box-shadow: 0 0.0625em 0.125em 0 rgba(0, 0, 0, 0.12);
}
.page-mask .andes-snackbar {
    max-width: 37.5em;
}
.layout--modal .page-mask {
    height: 100%;
    overflow: hidden;
    position: relative;
    width: 100%;
}
.layout--modal .page-mask .andes-snackbar {
    -webkit-border-radius: 0.25em 0.25em 0 0;
    border-radius: 0.25em 0.25em 0 0;
    bottom: 0;
    position: absolute;
}
.layout-terms {
    display: block;
    margin: 1em 0;
    text-align: center;
}
.layout-terms a,
.layout-terms span {
    color: #fff;
    display: inline-block;
    font-size: 0.8125em;
    margin-left: 0.4615384615em;
    opacity: 0.65;
}
.layout-terms a {
    font-weight: 600;
}
.fullscreen-message {
    -webkit-align-items: center;
    align-items: center;
    -webkit-animation: fade-in 0.26s ease-in;
    animation: fade-in 0.26s ease-in;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    height: 100%;
    -webkit-justify-content: center;
    justify-content: center;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 70;
}
.fullscreen-message__content {
    max-width: 16.875em;
    text-align: center;
}
.fullscreen-message__title {
    font-size: 1.25em;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 0.8em;
}
.fullscreen-message__message {
    color: #666;
    font-size: 1em;
    margin-bottom: 2em;
}
.fullscreen-message .andes-button {
    float: none;
    margin: 0 0 0.5em;
    width: 100%;
}
.fullscreen-message__button-secondary {
    font-size: 1em;
}
.fullscreen-message {
    background: hsla(0, 0%, 100%, 0.92);
}
.fullscreen-message__content {
    -webkit-animation: scale-up 0.28s ease-out;
    animation: scale-up 0.28s ease-out;
}
.layout--modal .fullscreen-message {
    -webkit-border-radius: 0.25em;
    border-radius: 0.25em;
}
.mp-brand {
    display: block;
}
.mp-brand__text {
    color: #333;
    font-size: 0.625em;
    font-weight: 600;
    line-height: 2.4;
    margin-right: 0.8em;
    opacity: 0.25;
}
.mp-brand__logo,
.mp-brand__text {
    display: inline-block;
    vertical-align: middle;
}
.mp-brand__logo {
    background: url(https://http2.mlstatic.com/frontend-assets/px-checkout-frontend/65c65711c3e1f9650af5.png) no-repeat;
    height: 1.25em;
    width: 4.25em;
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
    .mp-brand__logo {
        background: url(https://http2.mlstatic.com/frontend-assets/px-checkout-frontend/4fbf06b2d4158338d989.png)
            no-repeat;
        -webkit-background-size: 100% auto;
        background-size: 100% auto;
    }
}
.terms p {
    color: #bfbfbf;
    font-size: 0.6875em;
}
.terms a,
.terms span {
    margin-right: 0.3636363636em;
}
.group-legals {
    -webkit-align-items: center;
    align-items: center;
    bottom: 2em;
    display: -webkit-flex;
    display: flex;
    left: 2em;
    padding: 1em;
    position: absolute;
    right: 2em;
}
.group-legals .mp-brand {
    margin: 0 1em;
}
.group-legals .mp-brand,
.group-legals hr {
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    float: left;
}
.group-legals hr {
    background: #666;
    display: block;
    -webkit-flex-grow: 0;
    flex-grow: 0;
    height: 1.875em;
    margin: 0 1em 0 0;
    opacity: 0.3;
    width: 0.125em;
}
.group-legals > a {
    display: block;
    font-size: 0.75em;
    margin: 0 auto;
}
.group-legals .group-generic > a {
    font-size: 0.6875em;
}
.redirect-view .group-legals {
    bottom: 0;
    left: 0;
    margin-top: 1em;
    position: relative;
}
.step_review_split_payment .captcha-terms,
.step_review_split_payment .group-legals {
    position: static;
}
.step_review_split_payment .captcha-terms.logged {
    margin-top: 1.5em;
}
.congrats-header {
    color: #fff;
    padding: 3em 1.5em 5.125em;
}
.congrats-header .price--wrapper .amount-decimal-separator {
    height: 1px;
    left: -10000px;
    overflow: hidden;
    position: absolute;
    top: auto;
    width: 1px;
}
.congrats-header .price--wrapper sup {
    font-size: 0.75em;
    line-height: 1.2;
    margin-left: 0.1875em;
    vertical-align: top;
}
.congrats-header__container {
    -webkit-align-items: center;
    align-items: center;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
}
.congrats-header .price--wrapper {
    display: inline-block;
}
.congrats-header .congrats-titles {
    margin-top: 1.125em;
    -webkit-order: 2;
    order: 2;
}
.congrats-header .c-title {
    font-size: 1.625em;
    font-weight: 600;
    line-height: 1.1;
    margin: 0.1538461538em 0;
    max-width: 17.6923076923em;
}
.congrats-header p {
    color: #fff;
    font-size: 1em;
}
.congrats-header .payment-card-avatar {
    -webkit-order: 1;
    order: 1;
}
.congrats-content {
    margin-top: -3.25em;
}
.congrats-content .title-h3 {
    font-size: 1.25em;
    line-height: 1.4;
    margin-bottom: 0.4em;
}
.congrats-content .title-hr {
    font-size: 1.25em;
    line-height: 1.4;
    margin-bottom: 1.6em;
}
.congrats-content .title-hr:after {
    border: 1px solid #eee;
    content: " ";
    display: block;
    margin: 0.75em 0;
    position: absolute;
    width: 2em;
}
.congrats-content .text {
    color: #333;
    font-size: 0.875em;
    font-weight: 300;
    margin-bottom: 0.5714285714em;
}
.congrats-content .text.gray {
    color: #737373;
}
.congrats--rejected .congrats-header {
    background: #f23d4f;
}
.congrats--rejected .andes-button--loud {
    margin-top: 1.3333333333em;
}
.congrats--approved .congrats-header {
    background: #2d8e5f;
}
.congrats--approved .ui-card .group-media-object,
.congrats--approved div.optimus div.group-payment-method-row-with-cvv .group-row .group-media-object,
div.optimus div.group-payment-method-row-with-cvv .congrats--approved .group-row .group-media-object {
    -webkit-align-items: start;
    align-items: start;
}
.congrats--approved .ui-card .row-details .title,
.congrats--approved div.optimus div.group-payment-method-row-with-cvv .group-row .row-details .title,
div.optimus div.group-payment-method-row-with-cvv .congrats--approved .group-row .row-details .title {
    font-size: 1.125em;
    margin-top: 0.375em;
}
.congrats--approved .ui-card .row-details .text,
.congrats--approved div.optimus div.group-payment-method-row-with-cvv .group-row .row-details .text,
div.optimus div.group-payment-method-row-with-cvv .congrats--approved .group-row .row-details .text {
    color: #666;
    margin: 0.25em 0 0;
}
.congrats--approved .ui-card .row-details del,
.congrats--approved div.optimus div.group-payment-method-row-with-cvv .group-row .row-details del,
div.optimus div.group-payment-method-row-with-cvv .congrats--approved .group-row .row-details del {
    color: rgba(0, 0, 0, 0.55);
}
.congrats--approved .ui-card .icon-wrapper.icon-mercado-credito + .row-instructions .row-details:first-child,
.congrats--approved
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .icon-wrapper.icon-mercado-credito
    + .row-instructions
    .row-details:first-child,
div.optimus
    div.group-payment-method-row-with-cvv
    .congrats--approved
    .group-row
    .icon-wrapper.icon-mercado-credito
    + .row-instructions
    .row-details:first-child {
    margin-bottom: 1.25em;
}
.congrats--approved .ui-card .group-generic,
.congrats--approved div.optimus div.group-payment-method-row-with-cvv .group-row .group-generic,
div.optimus div.group-payment-method-row-with-cvv .congrats--approved .group-row .group-generic {
    -webkit-align-items: flex-start;
    align-items: flex-start;
    -webkit-flex-direction: column;
    flex-direction: column;
}
.congrats--approved .ui-card .group-generic .andes-badge + .row-details > .title_2,
.congrats--approved
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group-generic
    .andes-badge
    + .row-details
    > .title_2,
div.optimus
    div.group-payment-method-row-with-cvv
    .congrats--approved
    .group-row
    .group-generic
    .andes-badge
    + .row-details
    > .title_2 {
    margin-top: 0.4375em;
}
.congrats--approved hr {
    margin-bottom: 1.5em;
    margin-top: 1.5em;
    opacity: 0.2;
}
.congrats--approved .group-split-congrats .group-media-object + .group-media-object {
    margin-bottom: 1.5625em;
    margin-top: 1.5625em;
}
.congrats--approved .group-split-congrats hr {
    margin-top: 0;
}
.congrats--approved .group-split-congrats p.text span b {
    padding-left: 1.5625em;
}
.congrats--approved .group-congrats-summary {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
}
.congrats--approved .group-congrats-summary .icon-wrapper {
    -webkit-align-items: flex-start;
    align-items: flex-start;
}
.congrats--approved .group-congrats-summary .icon-wrapper.icon-ticket {
    -webkit-align-items: center;
    align-items: center;
}
.congrats--approved .group-congrats-summary .group-generic#congrats_summary_content {
    -webkit-flex-direction: column;
    flex-direction: column;
    margin: 0 0 0 1.5em;
    width: 100%;
}
.congrats--approved .group-congrats-summary .group-generic#congrats_summary_content .row-summary {
    margin-bottom: 0.5em;
    width: 100%;
}
.congrats--approved .group-congrats-summary .group-generic#congrats_summary_content .row-summary__discount_price {
    color: #2d8e5f;
}
.congrats--approved .group-congrats-summary .group-generic#congrats_summary_content .row-summary:last-of-type {
    font-weight: 600;
}
.congrats--approved #download_app_ui_card .ui-card,
.congrats--approved #download_app_ui_card div.optimus div.group-payment-method-row-with-cvv .group-row,
div.optimus div.group-payment-method-row-with-cvv .congrats--approved #download_app_ui_card .group-row {
    display: -webkit-flex;
    display: flex;
}
.congrats--approved #download_app_ui_card .ui-card .row-instructions .title-h2,
.congrats--approved
    #download_app_ui_card
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .row-instructions
    .title-h2,
div.optimus
    div.group-payment-method-row-with-cvv
    .congrats--approved
    #download_app_ui_card
    .group-row
    .row-instructions
    .title-h2 {
    margin-bottom: 0.5em;
}
.congrats--approved #download_app_ui_card .ui-card .row-instructions .icon-wrapper,
.congrats--approved
    #download_app_ui_card
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .row-instructions
    .icon-wrapper,
div.optimus
    div.group-payment-method-row-with-cvv
    .congrats--approved
    #download_app_ui_card
    .group-row
    .row-instructions
    .icon-wrapper {
    border: none;
}
.congrats--approved #download_app_ui_card .ui-card .row-instructions .text,
.congrats--approved
    #download_app_ui_card
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .row-instructions
    .text,
div.optimus
    div.group-payment-method-row-with-cvv
    .congrats--approved
    #download_app_ui_card
    .group-row
    .row-instructions
    .text {
    font-weight: 400;
}
.congrats--instructions .congrats-header {
    background: #2d8e5f;
}
.congrats--instructions .congrats-content .title-h3 {
    font-size: 1.125em;
    margin-bottom: 0.5em;
    text-align: center;
}
.congrats--instructions .congrats-content .group-button {
    /* margin-top: 2em; */
    display: inline-flex;
    justify-content: center;
    width: 100%;
}
.congrats--instructions .congrats-content .row-instructions {
    margin: 1.125em 0;
    text-align: center;
}
.congrats--instructions .congrats-content .row-instructions:first-child {
    margin-top: 0;
}
.congrats--instructions .congrats-content .row-instructions .text {
    margin-bottom: 0;
}
.congrats--instructions .congrats-content .row-instructions .text_congrats_additional_info {
    color: #333;
    font-size: 14px;
    font-stretch: normal;
    font-style: normal;
    font-weight: 300;
    letter-spacing: normal;
    line-height: 1.29;
    margin-bottom: 1.1428571429em;
}
.congrats--instructions .congrats-content .text-link {
    color: #333;
}
.congrats--instructions .congrats-content .ordered-list li > span {
    font-weight: 600;
}
.congrats--instructions .congrats-content .ordered-list li .text {
    font-size: 1em;
    margin-bottom: 0;
    padding-left: 0.5em;
}
.congrats--instructions .congrats-content hr {
    background: none;
    border: 0;
    border-top: 1px solid #ddd;
    margin: 1.25em 0 0;
    text-align: left;
    width: 2em;
}
.congrats--instructions .congrats-content .andes-button--link {
    display: inline-block;
    line-height: normal;
    width: auto;
}
.congrats--instructions .congrats-content .group-button button.andes-button--link {
    font-size: 1.125em;
}
.congrats--instructions .congrats-content .group-button button.andes-button--loud + textarea + .andes-button--link {
    font-size: 1em;
    margin-left: 1.5em;
}
.congrats--instructions .congrats-content .andes-button--link,
.congrats--instructions .congrats-content a {
    font-size: 14px;
}
.congrats--instructions .congrats-content a[href="#map"] {
    font-size: inherit;
}
.congrats--instructions .congrats-content .title-congrats-agencies {
    color: #333;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0.4em;
}
.congrats--instructions .congrats-content .subtitle-congrats-agencies {
    color: #333;
    font-size: 16px;
    font-weight: lighter;
    margin-bottom: 1.5em;
}
.congrats--recover .congrats-header {
    background: #f73;
}
.congrats--recover .congrats-content .group-button {
    margin-top: 2em;
}
.congrats--recover .congrats-content .group-media-object {
    margin-top: 1.25em;
}
.congrats--recover .congrats-content .group-media-object .cvv-icon {
    margin: 0.125em 1.25em 0 0;
}
.congrats--recover .congrats-content .group-media-object .payment-card-icon {
    margin-left: 0;
}
.congrats--recover .congrats-content .group-media-object .row-details .text {
    margin: 0;
}
.congrats--recover .congrats-content .ordered-list {
    padding: 0.5em 2em 2em 0.625em;
}
.congrats--recover .congrats-content .ordered-list .text {
    margin: 0;
    max-width: 94%;
    padding-left: 0.9375em;
}
.group-hr {
    border-bottom: 0.0625em solid #e5e5e5;
    border-top: 0.0625em solid #e5e5e5;
    display: -webkit-flex;
    display: flex;
    padding: 2.0625em 0;
}
.button-back-arrow + .c-title {
    display: inline-block;
    margin-left: 1em;
}
.step_congrats_remedy_offer .andes-button + .andes-button {
    margin-left: 0;
    margin-top: 0;
}
.step_congrats_remedy_offer .group-generic {
    -webkit-align-items: center;
    align-items: center;
    background-color: #fff;
    -webkit-border-radius: 0.25em;
    border-radius: 0.25em;
    -webkit-box-shadow: 0 0.0625em 0.125em 0 #e5e5e5;
    box-shadow: 0 0.0625em 0.125em 0 #e5e5e5;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    padding: 1.375em;
}
.step_congrats_remedy_offer .group-generic .icon-wrapper {
    height: 5.1875em;
    width: 7.75em;
}
.step_congrats_remedy_offer .group-generic .title-h3 {
    font-size: 1.125em;
    margin: 0.9375em;
    text-align: center;
    width: 18em;
}
.congrats.congrats--redirect {
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    justify-content: center;
    left: -webkit-calc(50% - 9.75em);
    left: calc(50% - 9.75em);
    position: absolute;
    top: 0;
    top: -webkit-calc(50% - 6.25em);
    top: calc(50% - 6.25em);
    width: 19.5em;
}
.congrats.congrats--redirect .congrats-content {
    margin-top: 0;
    text-align: center;
}
.congrats.congrats--redirect .congrats-content .group-redirect-loader {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    margin-bottom: 1.5em;
}
.congrats.congrats--redirect
    .congrats-content
    .group-redirect-loader
    .icon-wrapper:not(.icon-arrow-tail):not(.icon-arrow-head):not(.icon-success):not(.icon-failure) {
    background-color: #fff;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    -webkit-box-shadow: 0 0.375em 0.875em 0 rgba(0, 0, 0, 0.12);
    box-shadow: 0 0.375em 0.875em 0 rgba(0, 0, 0, 0.12);
    height: 4em;
    width: 4em;
}
.congrats.congrats--redirect .congrats-content .title-h2 {
    margin-bottom: 0.75em;
}
.congrats.congrats--redirect .congrats-content .title-h2 span {
    color: #333;
    font-size: 20px;
    font-stretch: normal;
    font-style: normal;
    font-weight: 600;
    letter-spacing: normal;
    line-height: normal;
}
.congrats.congrats--redirect .congrats-content .title-h3 {
    font-size: 16px;
    margin: auto;
    width: 16.0625em;
}
.congrats.congrats--redirect .congrats-content .title-h3 span {
    color: rgba(0, 0, 0, 0.9);
    font-stretch: normal;
    font-style: normal;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.25;
}
.congrats.congrats--redirect .andes-button--link {
    display: none;
    margin: 1em auto;
    width: 100%;
}
.congrats.congrats--redirect .andes-button--link.done-dynamic {
    display: unset;
}
[class*="step_congrats_express_recover_"] .congrats--recover .andes-button,
[class*="step_congrats_express_recover_"] .congrats--recover .title-h2 {
    margin-bottom: 0;
}
[class*="step_congrats_express_recover_"] .congrats--recover .group-generic {
    margin: 0 auto 1.5em;
    width: 36.25em;
}
[class*="step_congrats_express_recover_"] .congrats--recover .group-generic .ui-card-wrapper .ui-card,
[class*="step_congrats_express_recover_"]
    .congrats--recover
    .group-generic
    .ui-card-wrapper
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row,
div.optimus
    div.group-payment-method-row-with-cvv
    [class*="step_congrats_express_recover_"]
    .congrats--recover
    .group-generic
    .ui-card-wrapper
    .group-row {
    margin-bottom: 0.5em;
    overflow: initial;
    width: 100%;
}
[class*="step_congrats_express_recover_"]
    .congrats--recover
    .group-generic
    .ui-card-wrapper
    .ui-card
    .title-h2:first-child,
[class*="step_congrats_express_recover_"]
    .congrats--recover
    .group-generic
    .ui-card-wrapper
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .title-h2:first-child,
div.optimus
    div.group-payment-method-row-with-cvv
    [class*="step_congrats_express_recover_"]
    .congrats--recover
    .group-generic
    .ui-card-wrapper
    .group-row
    .title-h2:first-child {
    font-size: 1.125em;
}
[class*="step_congrats_express_recover_"] .congrats--recover .group-generic .ui-card-wrapper .group-generic-block {
    -webkit-box-shadow: none;
    box-shadow: none;
    margin-bottom: 0;
}
[class*="step_congrats_express_recover_"]
    .congrats--recover
    .group-generic
    .ui-card-wrapper
    .group-generic-block
    .group-row {
    background: none;
    -webkit-border-radius: none;
    border-radius: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 0;
}
[class*="step_congrats_express_recover_"]
    .congrats--recover
    .group-generic
    .ui-card-wrapper
    .group-generic-block
    .group-row
    .group-media-object {
    margin: 0;
    max-width: none;
}
[class*="step_congrats_express_recover_"]
    .congrats--recover
    .group-generic
    .ui-card-wrapper
    .group-generic-block
    .group-row
    .icon-wrapper
    svg {
    max-height: 3em;
    max-width: 3em;
}
[class*="step_congrats_express_recover_"]
    .congrats--recover
    .group-generic
    .ui-card-wrapper
    .group-generic-block
    .group-row
    .row-details {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
}
[class*="step_congrats_express_recover_"]
    .congrats--recover
    .group-generic
    .ui-card-wrapper
    .group-generic-block
    .group-row
    + .group_form
    #installments_row
    .ui-card,
[class*="step_congrats_express_recover_"]
    .congrats--recover
    .group-generic
    .ui-card-wrapper
    .group-generic-block
    .group-row
    + .group_form
    #installments_row
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row,
div.optimus
    div.group-payment-method-row-with-cvv
    [class*="step_congrats_express_recover_"]
    .congrats--recover
    .group-generic
    .ui-card-wrapper
    .group-generic-block
    .group-row
    + .group_form
    #installments_row
    .group-row {
    border-bottom: none;
    padding: 0;
}
[class*="step_congrats_express_recover_"]
    .congrats--recover
    .group-generic
    .ui-card-wrapper
    .group-generic-block
    form#group_pay
    .ui-card-wrapper
    .ui-card,
[class*="step_congrats_express_recover_"]
    .congrats--recover
    .group-generic
    .ui-card-wrapper
    .group-generic-block
    form#group_pay
    .ui-card-wrapper
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row,
div.optimus
    div.group-payment-method-row-with-cvv
    [class*="step_congrats_express_recover_"]
    .congrats--recover
    .group-generic
    .ui-card-wrapper
    .group-generic-block
    form#group_pay
    .ui-card-wrapper
    .group-row {
    border-bottom: none;
}
[class*="step_congrats_express_recover_"]
    .congrats--recover
    .group-generic
    .ui-card-wrapper
    .group-generic-block
    .andes-message {
    margin-top: 1.5em;
}
[class*="step_congrats_express_recover_"] .congrats--recover .group-generic .ui-card-wrapper .group_form {
    position: relative;
    width: 100%;
}
[class*="step_congrats_express_recover_"]
    .congrats--recover
    .group-generic
    .ui-card-wrapper
    .group_form
    #installments_group_generic
    .icon-wrapper
    .icon-installments,
[class*="step_congrats_express_recover_"]
    .congrats--recover
    .group-generic
    .ui-card-wrapper
    .group_form
    .ui-card
    .row_cvv
    .icon-wrapper,
[class*="step_congrats_express_recover_"]
    .congrats--recover
    .group-generic
    .ui-card-wrapper
    .group_form
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .row_cvv
    .icon-wrapper,
div.optimus
    div.group-payment-method-row-with-cvv
    [class*="step_congrats_express_recover_"]
    .congrats--recover
    .group-generic
    .ui-card-wrapper
    .group_form
    .group-row
    .row_cvv
    .icon-wrapper {
    border: 1px solid #bfbfbf;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    height: 2.5em;
    margin-left: 0;
    width: 2.5em;
}
[class*="step_congrats_express_recover_"] .congrats--recover .group-generic .ui-card-wrapper .group_form .text,
[class*="step_congrats_express_recover_"] .congrats--recover .group-generic .ui-card-wrapper .group_form .title-h2 {
    margin-bottom: 0;
}
[class*="step_congrats_express_recover_"] .congrats--recover .group-generic .ui-card-wrapper .group_form .group-flex {
    -webkit-flex-direction: column;
    flex-direction: column;
    font-weight: 700;
}
[class*="step_congrats_express_recover_"]
    .congrats--recover
    .group-generic
    .ui-card-wrapper
    .group_form
    .group-flex
    .title-h2 {
    font-size: 1em;
}
[class*="step_congrats_express_recover_"]
    .congrats--recover
    .group-generic
    .ui-card-wrapper
    .group_form
    .installments-summary {
    font-weight: 700;
}
[class*="step_congrats_express_recover_"]
    .congrats--recover
    .group-generic
    .ui-card-wrapper
    .group_form
    #installments_group_generic {
    margin-bottom: 1.5em;
    position: relative;
    width: 100%;
}
[class*="step_congrats_express_recover_"]
    .congrats--recover
    .group-generic
    .ui-card-wrapper
    .group_form
    #installments_group_generic
    .andes-dropdown {
    max-width: 70%;
}
[class*="step_congrats_express_recover_"]
    .congrats--recover
    .group-generic
    .ui-card-wrapper
    .group_form
    #installments_group_generic
    .andes-dropdown.andes-dropdown--form
    .andes-dropdown__popover {
    padding-bottom: 0;
}
[class*="step_congrats_express_recover_"]
    .congrats--recover
    .group-generic
    .ui-card-wrapper
    .group_form
    #installments_group_generic
    .andes-dropdown
    button {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
[class*="step_congrats_express_recover_"] .congrats--recover .group-generic .ui-card-wrapper .group_form .ui-card,
[class*="step_congrats_express_recover_"]
    .congrats--recover
    .group-generic
    .ui-card-wrapper
    .group_form
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row,
div.optimus
    div.group-payment-method-row-with-cvv
    [class*="step_congrats_express_recover_"]
    .congrats--recover
    .group-generic
    .ui-card-wrapper
    .group_form
    .group-row {
    -webkit-box-shadow: none;
    box-shadow: none;
    padding-left: 0;
}
[class*="step_congrats_express_recover_"]
    .congrats--recover
    .group-generic
    .ui-card-wrapper
    .group_form
    .ui-card
    .row_cvv,
[class*="step_congrats_express_recover_"]
    .congrats--recover
    .group-generic
    .ui-card-wrapper
    .group_form
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .row_cvv,
div.optimus
    div.group-payment-method-row-with-cvv
    [class*="step_congrats_express_recover_"]
    .congrats--recover
    .group-generic
    .ui-card-wrapper
    .group_form
    .group-row
    .row_cvv {
    width: 18em;
}
[class*="step_congrats_express_recover_"]
    .congrats--recover
    .group-generic
    .ui-card-wrapper
    .group_form
    .ui-card
    .row_cvv
    .icon-wrapper,
[class*="step_congrats_express_recover_"]
    .congrats--recover
    .group-generic
    .ui-card-wrapper
    .group_form
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .row_cvv
    .icon-wrapper,
div.optimus
    div.group-payment-method-row-with-cvv
    [class*="step_congrats_express_recover_"]
    .congrats--recover
    .group-generic
    .ui-card-wrapper
    .group_form
    .group-row
    .row_cvv
    .icon-wrapper {
    position: relative;
    top: 0.5em;
}
[class*="step_congrats_express_recover_"]
    .congrats--recover
    .group-generic
    .ui-card-wrapper
    .group_form
    .ui-card
    .row_cvv
    .icon-wrapper.icon-card-cvv,
[class*="step_congrats_express_recover_"]
    .congrats--recover
    .group-generic
    .ui-card-wrapper
    .group_form
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .row_cvv
    .icon-wrapper.icon-card-cvv,
div.optimus
    div.group-payment-method-row-with-cvv
    [class*="step_congrats_express_recover_"]
    .congrats--recover
    .group-generic
    .ui-card-wrapper
    .group_form
    .group-row
    .row_cvv
    .icon-wrapper.icon-card-cvv {
    margin-right: 1.5em;
}
[class*="step_congrats_express_recover_"]
    .congrats--recover
    .group-generic
    .ui-card-wrapper
    .group_form
    .ui-card
    .row_cvv
    .icon-wrapper.icon-card-cvv
    svg,
[class*="step_congrats_express_recover_"]
    .congrats--recover
    .group-generic
    .ui-card-wrapper
    .group_form
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .row_cvv
    .icon-wrapper.icon-card-cvv
    svg,
div.optimus
    div.group-payment-method-row-with-cvv
    [class*="step_congrats_express_recover_"]
    .congrats--recover
    .group-generic
    .ui-card-wrapper
    .group_form
    .group-row
    .row_cvv
    .icon-wrapper.icon-card-cvv
    svg {
    height: 1.625em;
    width: 1.625em;
}
[class*="step_congrats_express_recover_"] .congrats--recover .group-generic .row-instructions .text {
    font-size: 0.75em;
    margin-bottom: 0;
    margin-top: 1em;
}
[class*="step_congrats_express_recover_"]
    .congrats--recover
    .group-generic
    .row-instructions
    .installment-detail
    .installment-detail__content {
    color: rgba(0, 0, 0, 0.55);
    font-size: 1.5em;
    font-weight: 300;
    line-height: 1.125em;
    margin-bottom: 1em;
}
[class*="step_congrats_express_recover_"] .congrats--recover .group-generic .row-instructions .group-button {
    display: -webkit-flex;
    display: flex;
    margin-top: 1em;
}
[class*="step_congrats_express_recover_"]
    .congrats--recover
    .group-generic
    .row-instructions
    .group-button
    .andes-button {
    min-width: 12.5em;
}
[class*="step_congrats_express_recover_"]
    .congrats--recover
    .group-generic
    .row-instructions
    .group-button
    .andes-button.andes-button--quiet {
    margin-left: 0.5em;
}
[class*="step_congrats_express_recover_"]
    .congrats--recover
    .group-generic
    .row-instructions
    .group-button
    .andes-button#select_other_method_button
    span:before {
    background: none;
}
[class*="step_congrats_express_recover_"]
    .congrats--recover
    .group-generic
    .row-instructions
    .group-button
    .andes-button.andes-button--loud
    span {
    padding-left: 1em;
}
[class*="step_congrats_express_recover_"]
    .congrats--recover
    .group-generic
    .row-instructions
    .group-button
    .andes-button.andes-button--loud
    span:before {
    background: url(https://http2.mlstatic.com/frontend-assets/px-checkout-frontend/62c51682870d62da04c4.svg) no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    content: "";
    height: 0.9375em;
    left: -0.375em;
    position: relative;
    width: 0.8125em;
}
[class*="step_congrats_express_recover_"] .congrats--recover .group-generic .row-instructions .text + .group-button {
    margin-top: 1em;
}
[class*="step_congrats_express_recover_"] .congrats--recover .group-back-url {
    -webkit-align-items: center;
    align-items: center;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    position: relative;
    right: 14.5625em;
}
[class*="step_congrats_"] .layout--embed .layout-main,
[class*="step_congrats_"] .layout--redirect .layout-main {
    max-width: none;
    padding-left: 0;
    padding-right: 0;
}
.congrats {
    width: 100%;
}
.layout--modal .congrats {
    overflow: hidden;
}
.layout--modal .congrats,
.layout--modal .congrats > .scroller {
    -webkit-border-radius: 0.3125em;
    border-radius: 0.3125em;
}
.layout--embed .congrats {
    margin: 2em auto 0;
    max-width: 40.375em;
}
.layout--embed .congrats .congrats-header {
    -webkit-border-radius: 0.25em 0.25em 0 0;
    border-radius: 0.25em 0.25em 0 0;
}
.congrats .ui-card,
.congrats div.optimus div.group-payment-method-row-with-cvv .group-row,
div.optimus div.group-payment-method-row-with-cvv .congrats .group-row {
    margin: 0 auto 1em;
    padding: 2em;
    width: 36.25em;
}
.layout--embed .congrats .ui-card,
.layout--embed .congrats div.optimus div.group-payment-method-row-with-cvv .group-row,
div.optimus div.group-payment-method-row-with-cvv .layout--embed .congrats .group-row {
    -webkit-border-top-left-radius: 0;
    border-top-left-radius: 0;
    -webkit-border-top-right-radius: 0;
    border-top-right-radius: 0;
    width: 100%;
}
.congrats-header {
    margin: 0 auto;
}
.congrats-header__container {
    margin: 0 auto 1em;
    max-width: 36.25em;
    padding: 0 2em;
}
.congrats--approved .congrats-content {
    min-height: 12.5em;
}
.congrats--approved .andes-button--loud {
    display: block;
    margin: 1.3333333333em auto;
    max-width: 16.25em;
    text-align: center;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}
.congrats--approved .group-generic {
    -webkit-align-items: center;
    align-items: center;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row-reverse;
    flex-direction: row-reverse;
    margin: 0 auto;
    width: 36.25em;
}
.congrats--approved .group-generic .andes-button--loud {
    display: block;
    -webkit-flex-grow: 1;
    flex-grow: 1;
    margin-right: 1.1666666667em;
    text-align: center;
    width: 11.125em;
}
.congrats--approved .ui-card .payment-card-icon,
.congrats--approved div.optimus div.group-payment-method-row-with-cvv .group-row .payment-card-icon,
div.optimus div.group-payment-method-row-with-cvv .congrats--approved .group-row .payment-card-icon {
    margin-top: 0.25em;
}
.congrats--approved .ui-card .row-details .title_2,
.congrats--approved div.optimus div.group-payment-method-row-with-cvv .group-row .row-details .title_2,
div.optimus div.group-payment-method-row-with-cvv .congrats--approved .group-row .row-details .title_2 {
    font-size: 1.125em;
}
.congrats--approved .group-split-congrats .group-generic {
    display: block;
    margin: -0.5em auto 0;
    width: 36.25em;
}
.congrats--approved .group-split-congrats .group-generic .andes-button--loud {
    display: block;
    -webkit-flex: 0;
    flex: 0;
    margin: 0;
}
.congrats--approved .group-congrats-summary .group-generic {
    margin: 0 0 0 1.5em;
}
.congrats--approved #download_app_ui_card .ui-card .row-instructions,
.congrats--approved
    #download_app_ui_card
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .row-instructions,
div.optimus
    div.group-payment-method-row-with-cvv
    .congrats--approved
    #download_app_ui_card
    .group-row
    .row-instructions {
    margin-right: 3.5em;
}
.congrats--approved #download_app_ui_card .ui-card .row-instructions .icon-mercado-pago-secondary svg,
.congrats--approved #download_app_ui_card .ui-card .row-instructions .title-h2,
.congrats--approved
    #download_app_ui_card
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .row-instructions
    .icon-mercado-pago-secondary
    svg,
.congrats--approved
    #download_app_ui_card
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .row-instructions
    .title-h2,
div.optimus
    div.group-payment-method-row-with-cvv
    .congrats--approved
    #download_app_ui_card
    .group-row
    .row-instructions
    .icon-mercado-pago-secondary
    svg,
div.optimus
    div.group-payment-method-row-with-cvv
    .congrats--approved
    #download_app_ui_card
    .group-row
    .row-instructions
    .title-h2 {
    margin-top: 0.5em;
}
.congrats--approved #download_app_ui_card .ui-card .group-generic,
.congrats--approved #download_app_ui_card div.optimus div.group-payment-method-row-with-cvv .group-row .group-generic,
div.optimus div.group-payment-method-row-with-cvv .congrats--approved #download_app_ui_card .group-row .group-generic {
    width: auto;
}
.congrats--approved #download_app_ui_card .ui-card .group-generic .qr-code,
.congrats--approved
    #download_app_ui_card
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group-generic
    .qr-code,
div.optimus
    div.group-payment-method-row-with-cvv
    .congrats--approved
    #download_app_ui_card
    .group-row
    .group-generic
    .qr-code {
    padding: 0;
}
.congrats--approved #download_app_ui_card .ui-card .group-generic .group-flex,
.congrats--approved
    #download_app_ui_card
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group-generic
    .group-flex,
div.optimus
    div.group-payment-method-row-with-cvv
    .congrats--approved
    #download_app_ui_card
    .group-row
    .group-generic
    .group-flex {
    -webkit-justify-content: space-between;
    justify-content: space-between;
    margin-top: 0.5em;
    width: 100%;
}
.congrats--instructions .group-button {
    -webkit-align-items: baseline;
    align-items: baseline;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}
.congrats--instructions .group-button .andes-button--loud,
.congrats--instructions .group-button .andes-button--loud + .andes-button--link {
    font-size: 1.125em;
    min-width: 11.875em;
    text-align: center;
}
.congrats--instructions .group-button .andes-button--loud + .andes-button--loud + .andes-button--link {
    margin: 1.3333333333em 0 0;
}
.congrats--recover .group_form {
    display: inline-block;
}
.congrats--recover .group_form .group-media-object {
    margin-bottom: 2.125em;
}
.congrats--recover .group_form .andes-button {
    margin-bottom: 0;
}
.congrats--recover .group_form .andes-button--loud {
    clear: both;
    display: block;
}
.congrats--recover .group_form .andes-button--quiet {
    margin-left: 1.25em;
}
.congrats--recover .group_form .input-cvv,
.congrats--recover .group_form .input-expiration-date {
    float: left;
}
.congrats--recover .group_form .input-expiration-date {
    margin-right: 2em;
}
.step_congrats_remedy_offer .group-button {
    display: -webkit-inline-flex;
    display: inline-flex;
}
.step_congrats_remedy_offer .andes-button--loud {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}
.step_congrats_remedy_offer .andes-button + .andes-button {
    margin-left: 1.25em;
}
.step_congrats_remedy_offer .group-generic {
    margin: 1.875em auto 0;
    width: 40em;
}
.step_congrats_remedy_offer .group-generic .andes-button + .andes-button {
    margin-left: 0;
}
.step_congrats_bad_date .congrats--recover,
.step_congrats_bad_security_code .congrats--recover {
    position: relative;
}
.step_congrats_bad_date .congrats--recover .ui-card,
.step_congrats_bad_date .congrats--recover div.optimus div.group-payment-method-row-with-cvv .group-row,
.step_congrats_bad_security_code .congrats--recover .ui-card,
.step_congrats_bad_security_code .congrats--recover div.optimus div.group-payment-method-row-with-cvv .group-row,
div.optimus div.group-payment-method-row-with-cvv .step_congrats_bad_date .congrats--recover .group-row,
div.optimus div.group-payment-method-row-with-cvv .step_congrats_bad_security_code .congrats--recover .group-row {
    margin-bottom: 5em;
}
.step_congrats_bad_date .congrats--recover .group-back-url,
.step_congrats_bad_security_code .congrats--recover .group-back-url {
    bottom: 0.625em;
    display: -webkit-flex;
    display: flex;
    left: 3.1953125em;
    min-height: 1.25em;
    position: absolute;
}
@media (min-width: 40.375em) {
    .step_congrats_bad_date .congrats--recover .group-back-url,
    .step_congrats_bad_security_code .congrats--recover .group-back-url {
        left: -webkit-calc(50% - 18.125em);
        left: calc(50% - 18.125em);
    }
}
.step_congrats_bad_date .congrats--recover .group-back-url .chevron-left,
.step_congrats_bad_security_code .congrats--recover .group-back-url .chevron-left {
    margin: 0 0.375em;
}
.step_congrats_bad_date .congrats--recover .group-back-url .andes-button,
.step_congrats_bad_security_code .congrats--recover .group-back-url .andes-button {
    font-size: 0.875em;
    line-height: 0.875em;
    margin: 0;
}
[class*="step_congrats_express_recover_"] .layout--modal .congrats--recover .scroller {
    height: 100%;
    left: 0;
    padding-right: 0;
    position: absolute;
    top: 0;
}
[class*="step_congrats_express_recover_"]
    .group-generic
    .group-generic-block
    form#group_pay
    .ui-card-wrapper
    #installments_group_generic
    .icon-wrapper {
    margin-right: 1.4375em;
}
[class*="step_congrats_express_recover_"]
    .group-generic
    .group-generic-block
    form#group_pay
    .ui-card-wrapper#cvv_row
    .ui-card,
[class*="step_congrats_express_recover_"]
    .group-generic
    .group-generic-block
    form#group_pay
    .ui-card-wrapper#cvv_row
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row,
div.optimus
    div.group-payment-method-row-with-cvv
    [class*="step_congrats_express_recover_"]
    .group-generic
    .group-generic-block
    form#group_pay
    .ui-card-wrapper#cvv_row
    .group-row {
    padding-top: 0;
}
.step_congrats_bad_date .ui-card .group_form + .group_form,
.step_congrats_bad_date div.optimus div.group-payment-method-row-with-cvv .group-row .group_form + .group_form,
div.optimus div.group-payment-method-row-with-cvv .step_congrats_bad_date .group-row .group_form + .group_form {
    display: -webkit-flex;
    display: flex;
    position: relative;
}
.step_congrats_bad_date .ui-card .group_form + .group_form .andes-button--quiet,
.step_congrats_bad_date
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group_form
    + .group_form
    .andes-button--quiet,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_bad_date
    .group-row
    .group_form
    + .group_form
    .andes-button--quiet {
    left: 11.125em;
    margin-left: 0;
    position: absolute;
    top: -2.625em;
}
.site-mlb.step_congrats_bad_date .ui-card .group_form + .group_form .andes-button--quiet,
.site-mlb.step_congrats_bad_date
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group_form
    + .group_form
    .andes-button--quiet,
div.optimus
    div.group-payment-method-row-with-cvv
    .site-mlb.step_congrats_bad_date
    .group-row
    .group_form
    + .group_form
    .andes-button--quiet {
    left: 15em;
}
.step_congrats_bad_security_code .group_form .andes-button--quiet {
    margin-left: 0.5em;
}
.avatar {
    -webkit-align-items: center;
    align-items: center;
    /* background: #fff; */
    -webkit-border-radius: 50%;
    border-radius: 50%;
    display: -webkit-flex;
    display: flex;
    height: 5.625em;
    position: relative;
    width: 180px;
    /* width: 5.625em; */
}
.avatar .icon-wrapper {
    font-size: 1.5em;
    margin: 0 auto;
}
.avatar .icon-credit-card {
    display: block;
    height: 1.5625em;
    width: 2.5em;
}
.avatar .icon-shopping {
    display: block;
    font-size: 1.75em;
    height: 1.6875em;
    margin: 0 auto;
    width: 1.75em;
}
.avatar .icon-wallet {
    display: block;
    height: 2.625em;
    margin: 0 auto;
    width: 2.75em;
}
.avatar .icon-account-money {
    display: block;
    height: 2em;
    margin: 0 auto;
    width: 1.3125em;
}
.avatar .icon-check-badge,
.avatar .icon-error-badge,
.avatar .icon-instructions-badge,
.avatar .icon-warning-badge {
    bottom: 0;
    height: 1.875em;
    position: absolute;
    right: -0.5em;
    width: 1.875em;
}
.brand {
    -webkit-align-items: center;
    align-items: center;
}
.brand,
.brand__img {
    display: -webkit-flex;
    display: flex;
}
.brand__img {
    -webkit-border-radius: 50%;
    border-radius: 50%;
    -webkit-box-shadow: 0 0.0625em 0.125em 0 rgba(0, 0, 0, 0.25);
    box-shadow: 0 0.0625em 0.125em 0 rgba(0, 0, 0, 0.25);
    height: 2.625em;
    -webkit-justify-content: center;
    justify-content: center;
    overflow: hidden;
    width: 2.625em;
}
.brand__img img {
    display: block;
    height: 100%;
}
.brand__name {
    font-weight: 700;
    line-height: 1;
    margin-left: 0.5em;
    max-width: 12.5em;
    word-break: break-word;
}
.brand__name__small {
    font-size: 1.5em;
}
.brand__name__large {
    font-size: 1.125em;
}
.brand .small span {
    font-size: 16px;
    line-height: 3;
}
.ui-avatar {
    position: relative;
}
.ui-avatar__content {
    -webkit-border-radius: 50%;
    border-radius: 50%;
    font-size: 16px;
    height: 3.125em;
    overflow: hidden;
    width: 3.125em;
}
.ui-avatar__overlay {
    bottom: 0;
    display: block;
    left: 0;
    position: absolute;
}
.ui-avatar__content--img {
    border: 0.0625em solid #ccc;
}
.ui-avatar__content--img img {
    display: block;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
}
.ui-avatar__content--initials {
    background: #eff8fe;
    border: 0.0625em solid #60c1f8;
    line-height: 2.2;
    text-align: center;
}
.ui-avatar__content--initials span {
    color: #60c1f8;
    display: block;
    font-size: 1.375em;
    margin: 0 auto;
    text-transform: uppercase;
}
.ui-avatar__icon {
    background-repeat: no-repeat;
    display: block;
    height: 100%;
    width: 100%;
}
.brand {
    padding: 2em 0 1.4375em;
    position: absolute;
    top: 0;
    width: 100%;
}
.layout--modal .brand {
    left: 0;
    padding: 2em 1.5em 0;
    z-index: 1;
}
.layout--modal .brand__name {
    max-width: 9.375em;
}
.layout--redirect .brand__name {
    max-width: 11.875em;
}
.ordered-list li {
    -webkit-align-items: baseline;
    align-items: baseline;
    display: -webkit-flex;
    display: flex;
}
.ordered-list li .order-list-item .row-instructions {
    margin: 0;
}
.ordered-list li .order-list-item .row-instructions .layout__col-content {
    padding: 0;
}
.ordered-list li .order-list-item .row-instructions .layout__col-content > .text:first-child {
    display: block;
    margin-bottom: 1.125em;
}
.ordered-list li .order-list-item .row-instructions .title-h3 {
    margin-bottom: 1.125em;
    padding-left: 0.625em;
}
.ordered-list .order-list-number {
    display: inline-block;
    font-size: 0.875em;
    font-weight: 300;
    min-width: 0.875em;
    text-align: left;
    vertical-align: top;
}
.ordered-list .order-list-number:after {
    content: ".";
}
.ordered-list .text {
    display: inline-block;
    vertical-align: top;
}
.cvv-icon {
    background: url(https://http2.mlstatic.com/frontend-assets/px-checkout-frontend/dbf7327817ceca02a945.png) no-repeat;
    height: 1.9285714286em;
    margin-top: 0;
    width: 3.0714285714em;
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
    .cvv-icon {
        -webkit-background-size: 100% auto;
        background-size: 100% auto;
        background: url(https://http2.mlstatic.com/frontend-assets/px-checkout-frontend/9efcb9663b9d9983c00b.png)
            no-repeat;
    }
}
.optimus:after {
    /* -webkit-animation: fade-out-overlay 0.4s ease-out backwards;
    animation: fade-out-overlay 0.4s ease-out backwards;
    background: hsla(0, 0%, 100%, 0.8);
    content: "";
    display: block;
    height: 100%;
    left: 0;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: -100; */
}
.layout--modal .optimus:after {
    position: absolute;
}
.layout--modal .scroller {
    bottom: 0;
    height: 28.125em;
    overflow-y: scroll;
    padding: 0 0.625em 0 0;
    width: 100%;
}
.layout--modal .user-header + .layout__col-content .scroller {
    height: 24.375em;
}
.layout--modal .scroller::-webkit-scrollbar {
    background: transparent;
    -webkit-border-radius: 0.25em;
    border-radius: 0.25em;
    width: 0.25em;
}
.layout--modal .scroller::-webkit-scrollbar-thumb {
    background: #737373;
    -webkit-border-radius: 0.25em;
    border-radius: 0.25em;
}
.layout--modal .scroller.with-legals {
    height: 23.75em;
}
.layout--modal .scroller.with-captcha {
    height: 26.25em;
}
.user-menu {
    display: inline-block;
    position: relative;
}
.user-menu__button {
    background: none;
    border: 0;
    -webkit-border-radius: 0.3333333333em;
    border-radius: 0.3333333333em;
    color: #666;
    cursor: pointer;
    font-size: 0.75em;
    padding: 0.3333333333em;
}
.user-menu__button:active,
.user-menu__button:focus,
.user-menu__button:hover {
    color: #666;
}
.user-menu__button:focus {
    -webkit-box-shadow: 0 0 0 0.21429em rgba(0, 158, 227, 0.15);
    box-shadow: 0 0 0 0.21429em rgba(0, 158, 227, 0.15);
    outline: none;
}
.user-menu__button span {
    border-bottom: 0.1666666667em solid #737373;
    border-right: 0.1666666667em solid #737373;
    display: inline-block;
    height: 0.5833333333em;
    margin-left: 0.6666666667em;
    position: relative;
    top: -0.25em;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    width: 0.5833333333em;
}
.user-menu__button span.chevron-up {
    top: -0.0833333333em;
    -webkit-transform: rotate(225deg);
    transform: rotate(225deg);
}
.user-menu__popup {
    -webkit-animation: fade-in 70ms ease-in;
    animation: fade-in 70ms ease-in;
    background: #fff;
    -webkit-border-radius: 0.25em;
    border-radius: 0.25em;
    -webkit-box-shadow: 0 0 1.25em 0 rgba(0, 0, 0, 0.9);
    box-shadow: 0 0 1.25em 0 rgba(0, 0, 0, 0.9);
    position: absolute;
    right: -0.9375em;
    top: 2.375em;
    width: 15.875em;
    z-index: 9;
}
.user-menu__popup:before {
    background: #fff;
    content: "";
    display: block;
    height: 0.75em;
    position: absolute;
    right: 0.75em;
    top: -0.375em;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    width: 0.75em;
}
.user-menu__section {
    border-bottom: 0.0625em solid #eee;
    padding: 1em;
}
.user-menu__section:last-child {
    border: 0;
}
.user-menu__header {
    color: #666;
    font-size: 0.75em;
}
.user-menu__logo-mp {
    float: left;
    margin-right: 1em;
    margin-top: 0.25em;
}
.user-menu .icon-mercado-pago {
    height: 1.8333333333em;
    width: 2.6666666667em;
}
.user-menu__mp-text {
    overflow: hidden;
}
.user-menu__avatar {
    background: #737373;
    height: 3em;
    margin: 0 auto 0.75em;
    position: relative;
    text-align: center;
    width: 3em;
}
.user-menu__avatar,
.user-menu__avatar img {
    -webkit-border-radius: 50%;
    border-radius: 50%;
    display: block;
}
.user-menu__avatar img {
    height: 2.875em;
    left: 0.0625em;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    top: 0.0625em;
    width: 2.875em;
}
.user-menu__initials {
    color: #fff;
    font-size: 20px;
    line-height: 2.4em;
    text-align: center;
}
.user-menu__username {
    color: #000;
    display: block;
    font-size: 0.875em;
    line-height: 1.1;
}
.user-menu__user-info {
    padding-bottom: 1.5em;
    padding-top: 1.5em;
    text-align: center;
}
.user-menu__footer {
    text-align: center;
}
.user-menu__email {
    color: #666;
    font-size: 0.75em;
    line-height: 1;
}
.navbar {
    background-color: #f5f5f5;
    color: #fff;
}
.navbar__brand-name {
    line-height: 3.75em;
}
.navbar .user-menu {
    float: right;
    margin-left: auto;
    margin-top: 1.125em;
}
.navbar .user-menu__button {
    color: inherit;
}
.navbar .user-menu__button span {
    border-color: inherit;
}
.navbar .user-menu__popup {
    right: -0.625em;
    top: 2.125em;
}
.navbar--mp {
    background: #009ee3;
    -webkit-box-shadow: 0 0.0625em 0 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0.0625em 0 0 rgba(0, 0, 0, 0.1);
}
.navbar--mp .navbar__logo {
    float: left;
    position: relative;
}
.navbar--mp .user-menu__button span {
    opacity: 0.4;
}
.navbar--ml {
    background: #ffe600;
    -webkit-box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.1);
    color: rgba(0, 0, 0, 0.9);
}
.navbar--ml .navbar__logo {
    float: left;
    position: relative;
}
.navbar--ml .user-menu__button span {
    opacity: 0.4;
}
.navbar {
    height: 3.75em;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}
.navbar__container {
    margin: 0 auto;
    max-width: 50.75em;
    padding: 0;
}
@media (max-width: 53.75em) {
    .navbar__container {
        padding: 0 2em;
    }
}
.navbar--ml .navbar__logo {
    background-image: url(https://http2.mlstatic.com/frontend-assets/px-checkout-frontend/9b62a18f0c0672a140d3.png);
    -webkit-background-size: 8.375em 2.125em;
    background-size: 8.375em 2.125em;
    height: 2.125em;
    top: 0.75em;
    width: 8.375em;
}
.navbar--ml.navbar--mlb .navbar__logo {
    background-image: url(https://http2.mlstatic.com/frontend-assets/px-checkout-frontend/907a145d2b8ba041bb93.png);
}
.navbar--mp .navbar__logo {
    background-image: url(https://http2.mlstatic.com/frontend-assets/px-checkout-frontend/aa5cdc1402d718cd7eff.png);
    -webkit-background-size: 8.375em 2.125em;
    background-size: 8.375em 2.125em;
    height: 2.125em;
    top: 0.75em;
    width: 8.375em;
}
.user-title {
    margin-bottom: 1.5em;
}
.user-title__name {
    color: #000;
    display: block;
    line-height: 1;
}
.user-title__email {
    color: #666;
    font-size: 0.75em;
}
.login {
    background: #fff;
    -webkit-border-radius: 0.25em;
    border-radius: 0.25em;
    overflow: hidden;
    width: 100%;
}
.login .login-header {
    background: #009ee3;
    height: 73%;
    padding: 20%;
    text-align: center;
}
.login .login-header.paypal {
    height: 62%;
    padding: 8% 20%;
}
.login .login-header.paypal .icon-wrapper {
    background-color: #fff;
    -webkit-border-radius: 0.75em;
    border-radius: 0.75em;
    height: 4.25em;
    margin: auto;
    padding: 1.1875em 1em;
    width: 4.25em;
}
.login .login-header.paypal .icon-wrapper svg {
    height: unset;
    width: unset;
}
.login .login-header.paypal .login-titles {
    max-width: unset;
    padding-top: 1.4375em;
    width: 26.75em;
}
.login .login-header.paypal .login-titles .title-h2 {
    font-size: 20px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.2;
    margin: 0 auto;
    width: 18.75em;
}
.login .icon-wrapper {
    width: 100%;
}
.login .icon-wrapper svg {
    height: 3.875em;
    width: 5.9375em;
}
.login .login-titles {
    color: #fff;
    margin: 0 auto;
    max-width: 15.75em;
}
.login .c-title {
    line-height: 1.1;
}
.login .login-content {
    background: #fff;
    height: 100%;
    padding: 1em 20%;
}
.login .login-content .andes-button {
    display: block;
    margin: 0 auto;
    text-align: center;
    width: 11.9375em;
}
.login .login-content .andes-button.andes-button--quiet {
    margin-top: 1em;
}
.login .login-content.paypal {
    height: unset;
    padding: 1.5em 0;
}
.login .login-content.paypal .andes-button {
    max-width: 19.875em;
    padding: 0 1em;
    width: unset;
}
.login .login-content.paypal .andes-button.andes-button--loud {
    margin-bottom: 0.5em;
    margin-top: 0;
}
.login .login-content.paypal .paypal-payment-conditions {
    background-color: #fff;
    margin: 1em auto 0;
    padding: 0;
    text-align: center;
    width: 33em;
}
.login .login-content.paypal .paypal-payment-conditions p {
    color: rgba(0, 0, 0, 0.55);
    font-size: 16px;
    font-weight: 300;
}
.login .login-content.paypal .paypal-payment-conditions .info-logo {
    display: none;
}
.qr-code {
    padding: 1.25em;
}
.installment__interest {
    color: #2d8e5f;
    font-size: 1em;
    margin: auto;
}
.andes-dropdown.fixedMessage .andes-form-control__message {
    opacity: 1;
}
.andes-dropdown__popover {
    top: auto !important;
}
.andes-card--flat {
    -webkit-box-shadow: 0 0.0625em 0.1875em 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 0.0625em 0.1875em 0 rgba(0, 0, 0, 0.2);
}
.andes-dropdown--open .andes-dropdown__popover {
    max-height: 12.5em;
    overflow: scroll;
    padding-bottom: 0;
}
.andes-dropdown--open .andes-dropdown__popover::-webkit-scrollbar {
    background: transparent;
    -webkit-border-radius: 0.25em;
    border-radius: 0.25em;
    width: 0.3125em;
}
.andes-dropdown--open .andes-dropdown__popover::-webkit-scrollbar-thumb {
    background: #737373;
    -webkit-border-radius: 0.25em;
    border-radius: 0.25em;
}
.select-installments {
    max-width: 23.875em;
}
div#layout-modal .select-installments {
    max-width: 20.9375em;
}
.autoreturn {
    text-align: center;
}
.autoreturn-label {
    color: rgba(0, 0, 0, 0.9);
    display: inline-block;
    font-size: 0.875em;
    font-stretch: normal;
    font-style: normal;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.29;
    text-align: left;
    -webkit-text-emphasis: none;
    text-emphasis: none;
    width: 18.75em;
}
.progress {
    background: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    display: inline-block;
    margin-right: 1em;
    position: relative;
    vertical-align: middle;
}
.progress:after {
    -webkit-border-radius: 50%;
    border-radius: 50%;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}
.progress__large {
    height: 1.875em;
    line-height: 1.875em;
    width: 1.875em;
}
.progress__large:after {
    border: 0.625em solid #e5e5e5;
}
.progress__small {
    height: 1.125em;
    line-height: 1.125em;
    width: 1.125em;
}
.progress__small:after {
    border: 0.125em solid #e5e5e5;
}
.progress .progress-bar {
    border-color: #009ee3;
}
.progress > span {
    height: 100%;
    overflow: hidden;
    position: absolute;
    top: 0;
    width: 50%;
    z-index: 1;
}
.progress .progress-left {
    left: 0;
}
.progress .progress-bar {
    background: none;
    border-style: solid;
    height: 100%;
    position: absolute;
    top: 0;
    width: 100%;
}
.progress__large .progress-bar {
    border-width: 0.3125em;
}
.progress__small .progress-bar {
    border-width: 0.125em;
}
.progress .progress-left .progress-bar {
    -webkit-border-bottom-right-radius: 5em;
    border-bottom-right-radius: 5em;
    border-left: 0;
    -webkit-border-top-right-radius: 5em;
    border-top-right-radius: 5em;
    left: 100%;
    -webkit-transform-origin: center left;
    transform-origin: center left;
}
.progress .progress-right {
    right: 0;
}
.progress .progress-right .progress-bar {
    -webkit-border-bottom-left-radius: 5em;
    border-bottom-left-radius: 5em;
    border-right: 0;
    -webkit-border-top-left-radius: 5em;
    border-top-left-radius: 5em;
    left: -100%;
    -webkit-transform-origin: center right;
    transform-origin: center right;
}
.progress .progress-left .progress-bar,
.progress .progress-right .progress-bar {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}
@-webkit-keyframes loading {
    0% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }
    to {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}
@keyframes loading {
    0% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }
    to {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}
.expiration-date-wrapper {
    display: block;
}
.expiration-date-wrapper .andes-form-control__label {
    min-width: 136px;
}
.expiration-date-wrapper .expiration-date__inner_wrapper {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-grow: 1;
    flex-grow: 1;
}
.expiration-date-wrapper .expiration-date__inner_wrapper > :nth-child(n) {
    -webkit-flex-basis: 0;
    flex-basis: 0;
    -webkit-flex-grow: 1;
    flex-grow: 1;
}
.expiration-date-wrapper.error .andes-dropdown {
    margin-bottom: 0;
}
.expiration-date-wrapper.error .andes-form-control__message {
    color: #f23d4f;
    font-weight: 600;
    margin-top: 0;
    opacity: 1;
}
.expiration-date-wrapper.error .andes-form-control__border {
    background-color: #f23d4f;
}
.card-number-with-issuer__wrapper .card-number-with-issuer__group.hidden,
.expiration-date-wrapper .andes-form-control__message.hidden {
    display: none;
}
.card-number-with-issuer__wrapper {
    display: -webkit-flex;
    display: flex;
}
.card-number-with-issuer__wrapper .card-number-with-issuer__group {
    display: -webkit-flex;
    display: flex;
    -webkit-flex: 1;
    flex: 1;
    width: 0;
}
.card-number-with-issuer__wrapper .card-number-with-issuer__group > :nth-child(n) {
    -webkit-flex: 1;
    flex: 1;
}
.card-number-with-issuer__wrapper .card-number-with-issuer__group .icon-wrapper {
    -webkit-flex: none;
    flex: none;
    padding-bottom: 1em;
}
.card-number-with-issuer__wrapper .andes-dropdown,
.card-number-with-issuer__wrapper label {
    margin-right: 0.75em;
}
.card-number-with-issuer__wrapper > :nth-child(2) {
    margin-left: 0.6875em;
}
.card-number-with-issuer__wrapper > :last-child {
    margin-right: -0.6875em;
}
.split-amount {
    display: -webkit-flex;
    display: flex;
    padding-bottom: 0;
}
.split-amount .icon-wrapper {
    border: 1px solid #bfbfbf;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    height: 2.5em;
    width: 2.5em;
}
.split-amount .icon-wrapper svg {
    max-height: 1.25em;
    max-width: 1.25em;
}
.split-amount .payment-card-icon {
    zoom: 64%;
}
.split-amount .split-amount__input_container {
    -webkit-flex: 1;
    flex: 1;
    margin-left: 1.5em;
    position: relative;
}
.split-amount .split-amount__input_container .andes-form-control--disabled .andes-form-control__border {
    background-color: transparent;
    background-image: none;
}
.split-amount.disabled {
    background-color: #f5f5f5;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.split-amount.disabled input.andes-form-control__field {
    color: rgba(0, 0, 0, 0.9);
}
.split-amount.disabled .andes-form-control__message {
    margin-top: 0;
}
.split-amount.ui-card,
div.optimus div.group-payment-method-row-with-cvv .split-amount.group-row {
    padding-left: 1.9375em;
    padding-right: 1.9375em;
}
.split-amount .icon-wrapper {
    margin-top: 1.125em;
}
.sub_step_consumer_credits_tyc .layout.layout--redirect {
    padding-top: 0;
}
.sub_step_consumer_credits_tyc .layout #button_back_arrow + h1.c-title {
    margin-left: 0.6666666667em;
}
.sub_step_consumer_credits_tyc .layout .credits-conditions {
    background: #fff;
    padding: 0;
}
.sub_step_consumer_credits_tyc .layout .credits-conditions__iframe {
    border: 0;
    display: initial;
}
.sub_step_consumer_credits_tyc .layout .credits-conditions .message__content {
    color: rgba(0, 0, 0, 0.55);
    font-size: 0.875em;
    margin: 1.5em 0;
    text-align: center;
}
.sub_step_consumer_credits_tyc .layout .credits-conditions,
.sub_step_consumer_credits_tyc .layout .credits-conditions--particular {
    height: 28.75em;
}
.sub_step_consumer_credits_tyc .layout .credits-conditions--message {
    height: 7.625em;
    padding: 2em;
}
.collapsible-selector-container.payment-option-selector {
    background-color: #fff;
    font-weight: 400;
    line-height: 1;
}
.collapsible-selector-container.payment-option-selector .options-list.ui-card,
.collapsible-selector-container.payment-option-selector
    div.optimus
    div.group-payment-method-row-with-cvv
    .options-list.group-row,
div.optimus
    div.group-payment-method-row-with-cvv
    .collapsible-selector-container.payment-option-selector
    .options-list.group-row {
    width: 100%;
}
.collapsible-selector-container.payment-option-selector .select_mp_cards .group-media-object .text {
    color: rgba(0, 0, 0, 0.55);
    font-size: 0.875em;
}
.collapsible-selector-container.payment-option-selector.folded  .group-media-object > .icon-wrapper {
    margin-right: 1.25em;
}
.collapsible-selector-container.payment-option-selector .group-media-object > div:nth-of-type(3) {
    margin-left: auto;
}
.collapsible-selector-container.payment-option-selector .group-media-object > div:nth-of-type(3) > .icon-wrapper {
    margin: 0;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    width: 1.5em;
}
.collapsible-selector-container.payment-option-selector.unfolded
    .group-media-object
    > div:nth-of-type(3)
    > .icon-wrapper {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
}
.collapsible-selector-container.payment-option-selector .options-list__item.title {
    padding: 0.875em 0 0.875em 1.5em;
}
.collapsible-selector-container.payment-option-selector .andes-list__item {
    font-size: 1em;
    padding: 0.4375em 1em;
}
.collapsible-selector-container.payment-option-selector .andes-list__item .row-details .text_title {
    font-size: 1em;
}
.collapsible-selector-container.payment-option-selector .andes-list__item .options-list.ui-card,
.collapsible-selector-container.payment-option-selector
    .andes-list__item
    div.optimus
    div.group-payment-method-row-with-cvv
    .options-list.group-row,
div.optimus
    div.group-payment-method-row-with-cvv
    .collapsible-selector-container.payment-option-selector
    .andes-list__item
    .options-list.group-row {
    -webkit-box-shadow: none;
    box-shadow: none;
    margin: 0;
}
.collapsible-selector-container.payment-option-selector .andes-list__item .options-list.ui-card label,
.collapsible-selector-container.payment-option-selector
    .andes-list__item
    div.optimus
    div.group-payment-method-row-with-cvv
    .options-list.group-row
    label,
div.optimus
    div.group-payment-method-row-with-cvv
    .collapsible-selector-container.payment-option-selector
    .andes-list__item
    .options-list.group-row
    label {
    padding: 0;
}
.collapsible-selector-container {
    background-color: #fff;
    font-weight: 400;
    line-height: 1;
}
.collapsible-selector-container .andes-list__item {
    padding: 2em;
}
.collapsible-selector-container .andes-list__item:hover {
    background-color: #fff;
}
.collapsible-selector-container .andes-list__item.title {
    font-size: 1em;
    font-weight: 600;
    padding: 0.875em 0 0.875em 1em;
}
.collapsible-selector-container .andes-list__item-primary {
    color: rgba(0, 0, 0, 0.9);
    font-size: 1.125em;
}
.collapsible-selector-container .andes-list__item-primary span.quantity {
    font-weight: 600;
}
.collapsible-selector-container .andes-list__item-primary span.rate {
    color: #2d8e5f;
}
.collapsible-selector-container .andes-list__item-secondary {
    font-size: 0.875em;
    margin-top: 0.125em;
}
.collapsible-selector-container .account-money .andes-list__item-secondary {
    color: #2d8e5f;
}
.collapsible-selector-container .andes-list__item-tertiary {
    -webkit-align-self: center;
    align-self: center;
}
.collapsible-selector-container .andes-list__item-tertiary .icon-wrapper {
    width: 1.5em;
}
.collapsible-selector-container .andes-list .andes-list__item {
    border-top: 0.0625em solid #e5e5e5;
}
.collapsible-selector-container .andes-list__item-image-container .icon-wrapper {
    margin: 0.625em auto auto;
    width: 1.75em;
}
.collapsible-selector-container .andes-list__item-image-container .icon-circle-wrapper {
    border: 0.0625em solid rgba(0, 0, 0, 0.1);
    -webkit-border-radius: 50%;
    border-radius: 50%;
    height: 3em;
    margin-right: 1em;
    width: 3em;
}
.collapsible-selector-container.folded .andes-list__item.title,
.collapsible-selector-container.folded .andes-list__item:not(.selected) {
    border: none;
    height: 0;
    margin: 0;
    overflow: hidden;
    padding-bottom: 0;
    padding-top: 0;
}
.collapsible-selector-container.folded .andes-list__item.selected {
    height: 100%;
}
.collapsible-selector-container.folded .andes-list__item-tertiary .icon-wrapper {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}
.collapsible-selector-container.unfolded {
    -webkit-border-radius: 0.25em;
    border-radius: 0.25em;
    -webkit-box-shadow: 0 0.5em 0.75em 0 rgba(52, 131, 250, 0.12), 0 0 0.25em 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0.5em 0.75em 0 rgba(52, 131, 250, 0.12), 0 0 0.25em 0 rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 7.1875em;
    width: 92%;
    z-index: 100;
}
.collapsible-selector-container.unfolded .andes-list__item {
    height: 100%;
}
.collapsible-selector-container .andes-list__item {
    -webkit-transition: height 0.2s ease-in, padding 0.2s ease-in;
    transition: height 0.2s ease-in, padding 0.2s ease-in;
}
.payment-options-list {
    font-size: 1em;
}
.payment-options-list .group-row {
    -webkit-align-items: center;
    align-items: center;
    background: #fff;
    -webkit-border-radius: 0.25em;
    border-radius: 0.25em;
    display: -webkit-flex;
    display: flex;
    line-height: 1.2;
    margin-bottom: 0.75em;
    min-height: 5.25em;
}
.payment-options-list .group-row .group-media-object {
    -webkit-flex-grow: 1;
    flex-grow: 1;
    padding-right: 0.75em;
}
.payment-options-list .group-row .row-content-details {
    padding-right: 0.5em;
}
.payment-options-list .group-row .andes-button--link,
.payment-options-list .group-row .button-step {
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    font-size: 0.875em;
}
@media (max-width: 320px) {
    .collapsible-selector-container.unfolded {
        width: 95%;
    }
}
.user-avatar .ui-avatar {
    position: relative;
}
.user-avatar .ui-avatar__content {
    -webkit-border-radius: 50%;
    border-radius: 50%;
    font-size: 16px;
    height: 3.125em;
    overflow: hidden;
    width: 3.125em;
}
.user-avatar .ui-avatar__overlay {
    bottom: 0;
    display: block;
    left: 0;
    position: absolute;
}
.user-avatar .ui-avatar__content--img {
    border: 0.0625em solid #ccc;
}
.user-avatar .ui-avatar__content--img img {
    display: block;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
}
.user-avatar .ui-avatar__content--initials {
    background: #eff8fe;
    border: 0.0625em solid #60c1f8;
    line-height: 2.2;
    text-align: center;
}
.user-avatar .ui-avatar__content--initials span {
    color: #60c1f8;
    display: block;
    font-size: 1.375em;
    margin: 0 auto;
    text-transform: uppercase;
}
.user-avatar .ui-avatar__icon {
    background-repeat: no-repeat;
    display: block;
    height: 100%;
    width: 100%;
}
.row-summary--discount {
    display: -webkit-flex;
    display: flex;
    font-size: 1em;
    font-weight: 300;
    line-height: 1.5;
}
.row-summary--discount.small {
    font-size: 0.875em;
}
.row-summary--discount :last-child {
    -webkit-flex-grow: 1;
    flex-grow: 1;
    text-align: right;
}
.row-summary--discount .row-summary__text {
    color: #2d8e5f;
    display: block;
}
.row-summary--discount .row-summary__discount {
    color: #2d8e5f;
}
.row-summary--discount .question-mark {
    display: -webkit-flex;
    display: flex;
}
.row-summary--discount .question-mark .icon-wrapper {
    -webkit-align-self: center;
    align-self: center;
}
.row-summary--discount {
    margin-bottom: 0.75em;
}
.terms-and-conditions {
    background-color: #fff;
    font-size: 0.875em;
    padding: 2em;
}
.captcha-terms {
    text-align: center;
}
.captcha-terms p {
    color: #737373;
    font-size: 0.6875em;
}
.captcha-terms {
    bottom: 1.375em;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    left: 2em;
    position: absolute;
    right: 2em;
}
.redirect-view .captcha-terms {
    bottom: 0;
    left: 0;
    margin-top: 0;
    position: relative;
}
.redirect-view .captcha-terms.logged {
    margin-top: 2em;
}
.step_opensea_credits_first_use .layout--embed .modal-content,
.step_opensea_credits_first_use .layout--modal .modal-content,
.step_opensea_credits_first_use .layout--redirect .modal-content,
.step_paypal_first_use .layout--embed .modal-content,
.step_paypal_first_use .layout--modal .modal-content,
.step_paypal_first_use .layout--redirect .modal-content {
    background: transparent;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 3000;
}
.step_opensea_credits_first_use .layout--embed .modal-content .backdrop,
.step_opensea_credits_first_use .layout--modal .modal-content .backdrop,
.step_opensea_credits_first_use .layout--redirect .modal-content .backdrop,
.step_paypal_first_use .layout--embed .modal-content .backdrop,
.step_paypal_first_use .layout--modal .modal-content .backdrop,
.step_paypal_first_use .layout--redirect .modal-content .backdrop {
    background-color: rgba(0, 0, 0, 0.75);
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}
.step_opensea_credits_first_use .layout--embed .modal-content .modal-wrapper,
.step_opensea_credits_first_use .layout--modal .modal-content .modal-wrapper,
.step_opensea_credits_first_use .layout--redirect .modal-content .modal-wrapper,
.step_paypal_first_use .layout--embed .modal-content .modal-wrapper,
.step_paypal_first_use .layout--modal .modal-content .modal-wrapper,
.step_paypal_first_use .layout--redirect .modal-content .modal-wrapper {
    background-color: #fff;
    -webkit-border-radius: 0.25em;
    border-radius: 0.25em;
    -webkit-box-shadow: 0 0 0.0625em 0.0625em rgba(0, 0, 0, 0.07), 0 1.25em 1.5625em 0 rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 0.0625em 0.0625em rgba(0, 0, 0, 0.07), 0 1.25em 1.5625em 0 rgba(0, 0, 0, 0.15);
    color: rgba(0, 0, 0, 0.9);
    height: 32.25em;
    margin: 4em auto;
    position: relative;
    width: 20.5em;
}
.step_opensea_credits_first_use .layout--embed .modal-content .modal-wrapper .inner-wrapper,
.step_opensea_credits_first_use .layout--modal .modal-content .modal-wrapper .inner-wrapper,
.step_opensea_credits_first_use .layout--redirect .modal-content .modal-wrapper .inner-wrapper,
.step_paypal_first_use .layout--embed .modal-content .modal-wrapper .inner-wrapper,
.step_paypal_first_use .layout--modal .modal-content .modal-wrapper .inner-wrapper,
.step_paypal_first_use .layout--redirect .modal-content .modal-wrapper .inner-wrapper {
    margin: 0;
    padding: 0;
}
.step_opensea_credits_first_use .layout--embed .modal-content .modal-wrapper .header,
.step_opensea_credits_first_use .layout--modal .modal-content .modal-wrapper .header,
.step_opensea_credits_first_use .layout--redirect .modal-content .modal-wrapper .header,
.step_paypal_first_use .layout--embed .modal-content .modal-wrapper .header,
.step_paypal_first_use .layout--modal .modal-content .modal-wrapper .header,
.step_paypal_first_use .layout--redirect .modal-content .modal-wrapper .header {
    display: none;
}
.step_opensea_credits_first_use .layout--embed .modal-content .modal-wrapper .cross,
.step_opensea_credits_first_use .layout--modal .modal-content .modal-wrapper .cross,
.step_opensea_credits_first_use .layout--redirect .modal-content .modal-wrapper .cross,
.step_paypal_first_use .layout--embed .modal-content .modal-wrapper .cross,
.step_paypal_first_use .layout--modal .modal-content .modal-wrapper .cross,
.step_paypal_first_use .layout--redirect .modal-content .modal-wrapper .cross {
    height: 1em;
    position: absolute;
    right: 0.5em;
    top: -2em;
    width: 1em;
}
.step_opensea_credits_first_use .layout--embed .modal-content .modal-wrapper .cross svg path,
.step_opensea_credits_first_use .layout--modal .modal-content .modal-wrapper .cross svg path,
.step_opensea_credits_first_use .layout--redirect .modal-content .modal-wrapper .cross svg path,
.step_paypal_first_use .layout--embed .modal-content .modal-wrapper .cross svg path,
.step_paypal_first_use .layout--modal .modal-content .modal-wrapper .cross svg path,
.step_paypal_first_use .layout--redirect .modal-content .modal-wrapper .cross svg path {
    fill: hsla(0, 0%, 100%, 0.75);
}
.step_opensea_credits_first_use .layout--embed .modal-content .group-generic .icon-wrapper,
.step_opensea_credits_first_use .layout--modal .modal-content .group-generic .icon-wrapper,
.step_opensea_credits_first_use .layout--redirect .modal-content .group-generic .icon-wrapper,
.step_paypal_first_use .layout--embed .modal-content .group-generic .icon-wrapper,
.step_paypal_first_use .layout--modal .modal-content .group-generic .icon-wrapper,
.step_paypal_first_use .layout--redirect .modal-content .group-generic .icon-wrapper {
    -webkit-border-radius: 0.5625em;
    border-radius: 0.5625em;
    -webkit-box-shadow: 0 0.1875em 0.25em rgba(0, 0, 0, 0.1);
    box-shadow: 0 0.1875em 0.25em rgba(0, 0, 0, 0.1);
    height: 3.5em;
    margin: 1.5em auto 2em;
    padding: 0.8125em;
    width: 3.5em;
}
.step_opensea_credits_first_use .layout--embed .modal-content .group-generic .icon-wrapper.icon-mercado-credito-full,
.step_opensea_credits_first_use .layout--modal .modal-content .group-generic .icon-wrapper.icon-mercado-credito-full,
.step_opensea_credits_first_use .layout--redirect .modal-content .group-generic .icon-wrapper.icon-mercado-credito-full,
.step_paypal_first_use .layout--embed .modal-content .group-generic .icon-wrapper.icon-mercado-credito-full,
.step_paypal_first_use .layout--modal .modal-content .group-generic .icon-wrapper.icon-mercado-credito-full,
.step_paypal_first_use .layout--redirect .modal-content .group-generic .icon-wrapper.icon-mercado-credito-full {
    margin: 3em auto 2em;
    padding: 1em 1.5em;
    width: 12.5em;
}
.step_opensea_credits_first_use .layout--embed .modal-content .group-generic h1,
.step_opensea_credits_first_use .layout--modal .modal-content .group-generic h1,
.step_opensea_credits_first_use .layout--redirect .modal-content .group-generic h1,
.step_paypal_first_use .layout--embed .modal-content .group-generic h1,
.step_paypal_first_use .layout--modal .modal-content .group-generic h1,
.step_paypal_first_use .layout--redirect .modal-content .group-generic h1 {
    color: rgba(0, 0, 0, 0.9);
    font-size: 18px;
    font-weight: 600;
    margin: auto;
    max-width: 16.6666666667em;
    text-align: center;
}
.step_opensea_credits_first_use .layout--embed .modal-content .group-generic h2,
.step_opensea_credits_first_use .layout--modal .modal-content .group-generic h2,
.step_opensea_credits_first_use .layout--redirect .modal-content .group-generic h2,
.step_paypal_first_use .layout--embed .modal-content .group-generic h2,
.step_paypal_first_use .layout--modal .modal-content .group-generic h2,
.step_paypal_first_use .layout--redirect .modal-content .group-generic h2 {
    color: rgba(0, 0, 0, 0.55);
    font-size: 14px;
    font-weight: 300;
    margin: 1.7142857143em auto;
    max-width: 17.8571428571em;
    text-align: center;
}
.step_opensea_credits_first_use .layout--embed .modal-content .group-generic .paypal-payment-conditions,
.step_opensea_credits_first_use .layout--modal .modal-content .group-generic .paypal-payment-conditions,
.step_opensea_credits_first_use .layout--redirect .modal-content .group-generic .paypal-payment-conditions,
.step_paypal_first_use .layout--embed .modal-content .group-generic .paypal-payment-conditions,
.step_paypal_first_use .layout--modal .modal-content .group-generic .paypal-payment-conditions,
.step_paypal_first_use .layout--redirect .modal-content .group-generic .paypal-payment-conditions {
    background-color: #fff;
    margin: 0 auto;
    padding: 0;
    text-align: center;
    width: 16.875em;
}
.step_opensea_credits_first_use .layout--embed .modal-content .group-generic .paypal-payment-conditions p,
.step_opensea_credits_first_use .layout--modal .modal-content .group-generic .paypal-payment-conditions p,
.step_opensea_credits_first_use .layout--redirect .modal-content .group-generic .paypal-payment-conditions p,
.step_paypal_first_use .layout--embed .modal-content .group-generic .paypal-payment-conditions p,
.step_paypal_first_use .layout--modal .modal-content .group-generic .paypal-payment-conditions p,
.step_paypal_first_use .layout--redirect .modal-content .group-generic .paypal-payment-conditions p {
    color: rgba(0, 0, 0, 0.55);
    font-size: 14px;
    font-weight: 300;
}
.step_opensea_credits_first_use .layout--embed .modal-content .group-generic .paypal-payment-conditions .info-logo,
.step_opensea_credits_first_use .layout--modal .modal-content .group-generic .paypal-payment-conditions .info-logo,
.step_opensea_credits_first_use .layout--redirect .modal-content .group-generic .paypal-payment-conditions .info-logo,
.step_paypal_first_use .layout--embed .modal-content .group-generic .paypal-payment-conditions .info-logo,
.step_paypal_first_use .layout--modal .modal-content .group-generic .paypal-payment-conditions .info-logo,
.step_paypal_first_use .layout--redirect .modal-content .group-generic .paypal-payment-conditions .info-logo {
    display: none;
}
.step_opensea_credits_first_use .layout--embed .modal-content .group-generic .form.group_form,
.step_opensea_credits_first_use .layout--modal .modal-content .group-generic .form.group_form,
.step_opensea_credits_first_use .layout--redirect .modal-content .group-generic .form.group_form,
.step_paypal_first_use .layout--embed .modal-content .group-generic .form.group_form,
.step_paypal_first_use .layout--modal .modal-content .group-generic .form.group_form,
.step_paypal_first_use .layout--redirect .modal-content .group-generic .form.group_form {
    padding: 0 1.5625em;
}
.step_opensea_credits_first_use .layout--embed .modal-content .group-generic .form.group_form .andes-button,
.step_opensea_credits_first_use .layout--modal .modal-content .group-generic .form.group_form .andes-button,
.step_opensea_credits_first_use .layout--redirect .modal-content .group-generic .form.group_form .andes-button,
.step_paypal_first_use .layout--embed .modal-content .group-generic .form.group_form .andes-button,
.step_paypal_first_use .layout--modal .modal-content .group-generic .form.group_form .andes-button,
.step_paypal_first_use .layout--redirect .modal-content .group-generic .form.group_form .andes-button {
    font-size: 16px;
    width: 100%;
}
.step_opensea_credits_first_use .layout--embed .modal-content .group-generic .form.group_form .andes-button--loud,
.step_opensea_credits_first_use .layout--modal .modal-content .group-generic .form.group_form .andes-button--loud,
.step_opensea_credits_first_use .layout--redirect .modal-content .group-generic .form.group_form .andes-button--loud,
.step_paypal_first_use .layout--embed .modal-content .group-generic .form.group_form .andes-button--loud,
.step_paypal_first_use .layout--modal .modal-content .group-generic .form.group_form .andes-button--loud,
.step_paypal_first_use .layout--redirect .modal-content .group-generic .form.group_form .andes-button--loud {
    margin-top: 2em;
}
.step_opensea_credits_first_use .layout--redirect .modal-content .modal-wrapper {
    height: auto;
    margin: 4em auto;
    max-width: -webkit-calc(100% - 16px);
    max-width: calc(100% - 16px);
    padding-bottom: 1.5em;
}
.layout--embed .backdrop,
.layout--modal .backdrop,
.layout--redirect .backdrop {
    background-color: rgba(0, 0, 0, 0.75);
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}
.step_card_form .shield-endgame,
.step_review .shield-endgame {
    -webkit-align-items: center;
    align-items: center;
    display: -webkit-flex;
    display: flex;
    height: 100%;
    -webkit-justify-content: center;
    justify-content: center;
    width: 100%;
}
.step_card_form .shield-endgame .modal-wrapper,
.step_review .shield-endgame .modal-wrapper {
    max-width: 31.25em;
    padding: 2em 3em;
    z-index: 300;
}
.step_card_form .shield-endgame .modal-wrapper .inner-wrapper,
.step_review .shield-endgame .modal-wrapper .inner-wrapper {
    -webkit-align-items: center;
    align-items: center;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    justify-content: center;
}
.step_card_form .shield-endgame .modal-wrapper .inner-wrapper .header,
.step_review .shield-endgame .modal-wrapper .inner-wrapper .header {
    background: url(https://http2.mlstatic.com/frontend-assets/px-checkout-frontend/1f5ae4e3cb34cde4f9c8.svg) no-repeat;
    background-position-x: center;
    -webkit-background-size: 75% auto;
    background-size: 75% auto;
    height: 12.5em;
    margin: 0;
    padding: 0;
    width: 18.75em;
}
.step_card_form .shield-endgame .modal-wrapper .inner-wrapper .header .cross,
.step_review .shield-endgame .modal-wrapper .inner-wrapper .header .cross {
    display: none;
}
.step_card_form .shield-endgame .modal-wrapper .inner-wrapper .group-flex,
.step_review .shield-endgame .modal-wrapper .inner-wrapper .group-flex {
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-direction: column;
    flex-direction: column;
    padding: 0;
    text-align: center;
}
.step_card_form .shield-endgame .modal-wrapper .inner-wrapper .group-flex .title-h3,
.step_review .shield-endgame .modal-wrapper .inner-wrapper .group-flex .title-h3 {
    color: rgba(0, 0, 0, 0.9);
    font-size: 24px;
    font-weight: 600;
}
.step_card_form .shield-endgame .modal-wrapper .inner-wrapper .group-flex .title-h2,
.step_review .shield-endgame .modal-wrapper .inner-wrapper .group-flex .title-h2 {
    font-weight: 400;
    margin-top: 0.5em;
}
.step_card_form .shield-endgame .modal-wrapper .inner-wrapper .group-flex .kyc-why-link,
.step_review .shield-endgame .modal-wrapper .inner-wrapper .group-flex .kyc-why-link {
    color: rgba(71, 154, 209, 0.4);
    font-size: 24px;
    font-weight: 600;
}
.step_card_form .shield-endgame .modal-wrapper .inner-wrapper .group-flex .andes-button.andes-button--loud,
.step_review .shield-endgame .modal-wrapper .inner-wrapper .group-flex .andes-button.andes-button--loud {
    margin-bottom: 0.5em;
    margin-top: 1.5em;
}
.step_card_form .shield-endgame .andes-button--link,
.step_review .shield-endgame .andes-button--quiet {
    background: #009ee3;
    border-color: #009ee3;
    color: #fff;
    margin-bottom: 0.5em;
    margin-top: 1.5em;
    padding: 0 1.75em;
}
.layout--embed .modal-content,
.layout--redirect .modal-content {
    left: 50%;
    position: fixed;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 99;
}
.layout--embed .modal-content .modal-wrapper,
.layout--redirect .modal-content .modal-wrapper {
    background-color: #fff;
    -webkit-border-radius: 0.25em;
    border-radius: 0.25em;
    -webkit-box-shadow: 0 0 0.0625em 0.0625em rgba(0, 0, 0, 0.07), 0 1.25em 1.5625em 0 rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 0.0625em 0.0625em rgba(0, 0, 0, 0.07), 0 1.25em 1.5625em 0 rgba(0, 0, 0, 0.15);
    color: rgba(0, 0, 0, 0.9);
    width: 70vw;
}
.layout--embed .modal-content .modal-wrapper .header,
.layout--redirect .modal-content .modal-wrapper .header {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    margin-bottom: 4em;
}
.layout--embed .modal-content .modal-wrapper .cross,
.layout--redirect .modal-content .modal-wrapper .cross {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    justify-content: center;
}
.layout--embed .modal-content .modal-wrapper .cross svg,
.layout--redirect .modal-content .modal-wrapper .cross svg {
    -webkit-align-items: center;
    align-items: center;
}
.layout--embed .modal-content .modal-wrapper .cross svg path,
.layout--redirect .modal-content .modal-wrapper .cross svg path {
    fill: #000;
}
.layout--embed .modal-content .modal-wrapper .arrow,
.layout--redirect .modal-content .modal-wrapper .arrow {
    display: none;
}
.layout--embed .modal-content .modal-wrapper .title,
.layout--redirect .modal-content .modal-wrapper .title {
    font-size: 1.5em;
}
.layout--embed .modal-content .modal-wrapper .content,
.layout--redirect .modal-content .modal-wrapper .content {
    font-size: 0.875em;
    padding: 0 2em;
}
.layout--embed .modal-content .modal-wrapper .inner-wrapper,
.layout--redirect .modal-content .modal-wrapper .inner-wrapper {
    padding: 4em;
}
.layout--modal .modal-content {
    background: #ededed;
    color: rgba(0, 0, 0, 0.9);
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99;
}
.layout--modal .modal-content .inner-wrapper {
    margin: auto;
    max-width: 70%;
}
.layout--modal .modal-content .header {
    display: -webkit-flex;
    display: flex;
    margin-bottom: 2em;
    margin-top: 3em;
}
.layout--modal .modal-content .arrow {
    display: -webkit-flex;
    display: flex;
}
.layout--modal .modal-content .icon-back {
    -webkit-align-items: center;
    align-items: center;
}
.layout--modal .modal-content .title {
    font-size: 2em;
}
.layout--modal .modal-content .content {
    background: #fff;
    color: rgba(0, 0, 0, 0.9);
    font-size: 0.875em;
    padding: 2.2857142857em;
}
.modal-content.shield-modal .modal-wrapper {
    max-width: 31.25em;
    padding: 2em 3em;
}
.modal-content.shield-modal .modal-wrapper .inner-wrapper {
    background: url(https://http2.mlstatic.com/frontend-assets/px-checkout-frontend/c35678755dee1b384ef9.svg) no-repeat;
    background-position-y: 11%;
    -webkit-background-size: 100% auto;
    background-size: 100% auto;
    padding: 0 0 1em;
}
.modal-content.shield-modal .modal-wrapper .inner-wrapper .header {
    margin-top: 0;
}
.modal-content.shield-modal .modal-wrapper .inner-wrapper .header .cross:hover {
    cursor: pointer;
}
.modal-content.shield-modal .modal-wrapper .inner-wrapper .group-flex {
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-direction: column;
    flex-direction: column;
    padding-top: 6.875em;
    text-align: center;
}
.modal-content.shield-modal .modal-wrapper .inner-wrapper .group-flex .title-h3 {
    color: rgba(0, 0, 0, 0.9);
    font-size: 24px;
    font-weight: 600;
}
.modal-content.shield-modal .modal-wrapper .inner-wrapper .group-flex .title-h2 {
    font-weight: 400;
    margin-top: 0.5em;
}
.modal-content.shield-modal .modal-wrapper .inner-wrapper .group-flex .kyc-why-link {
    color: rgba(71, 154, 209, 0.4);
    font-size: 14px;
    font-weight: 600;
}
.modal-content.shield-modal .modal-wrapper .inner-wrapper .group-flex .andes-button.andes-button--loud {
    margin-bottom: 0.5em;
    margin-top: 1.5em;
}
.modal-content.shield-modal.without-icon .modal-wrapper .inner-wrapper {
    background: none;
}
.modal-content.shield-modal.without-icon .modal-wrapper .inner-wrapper .group-flex {
    padding-top: 0;
}
.modal-content.shield-modal.without-icon .modal-wrapper .inner-wrapper .group-flex .title-h3 {
    margin: 0 auto;
}
.modal-content.shield-modal.without-icon .modal-wrapper .inner-wrapper .header {
    margin-bottom: 0;
}
.step_opensea_credits_first_use .layout--redirect .modal-content,
.step_paypal_first_use .layout--redirect .modal-content {
    left: 50%;
    position: absolute;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.step_opensea_credits_first_use .layout--redirect .modal-content .modal-wrapper,
.step_paypal_first_use .layout--redirect .modal-content .modal-wrapper {
    margin: calc(50vh - 16.125em) auto;
}
.step_opensea_credits_first_use .layout--redirect .modal-content .modal-wrapper .cross,
.step_paypal_first_use .layout--redirect .modal-content .modal-wrapper .cross {
    display: none;
}
.step_opensea_credits_first_use .layout--modal .modal-content,
.step_paypal_first_use .layout--modal .modal-content {
    background: transparent;
    -webkit-border-radius: 0.375em;
    border-radius: 0.375em;
}
.step_opensea_credits_first_use .layout--modal .modal-content .modal-wrapper,
.step_paypal_first_use .layout--modal .modal-content .modal-wrapper {
    height: 31.75em;
    margin: 1.5em auto 2.125em;
}
.step_opensea_credits_first_use .layout--modal .modal-content .modal-wrapper .cross,
.step_paypal_first_use .layout--modal .modal-content .modal-wrapper .cross {
    display: none;
}
.step_opensea_credits_first_use .layout--modal .modal-content .inner-wrapper,
.step_paypal_first_use .layout--modal .modal-content .inner-wrapper {
    max-width: unset;
}
.step_opensea_credits_first_use .layout--redirect .modal-content .modal-wrapper {
    max-width: 100%;
    width: 30em;
}
.step_opensea_credits_first_use .layout--redirect .modal-content .modal-wrapper .c-title {
    font-size: 1.5em;
}
.step_opensea_credits_first_use .layout--redirect .modal-content .modal-wrapper .title-h2 {
    font-size: 1em;
    margin-bottom: 0.5em;
    max-width: 100%;
    padding: 0 4.5em;
}
.step_opensea_credits_first_use .layout--redirect .modal-content .modal-wrapper .inner-wrapper .cross {
    display: grid;
}
.step_opensea_credits_first_use .layout--redirect .modal-content .modal-wrapper .inner-wrapper .group_form {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
}
.step_opensea_credits_first_use
    .layout--redirect
    .modal-content
    .modal-wrapper
    .inner-wrapper
    .group_form
    .andes-button {
    width: auto;
}
.toggle-button-wrapper {
    display: -webkit-flex;
    display: flex;
}
.toggle-button-wrapper .toggle-button {
    font-size: 0.875em;
    margin-right: 0.3571428571em;
}
.toggle-button-wrapper .icon-wrapper {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    width: 0.75em;
}
.toggle-button-wrapper.toggle-show .icon-wrapper svg {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}
.toggle-button-wrapper {
    margin: 0;
    position: absolute;
    right: 1.5625em;
    top: 2.3125em;
}
.toggle-hide + .animated-group .group-coupon {
    visibility: hidden;
}
form.group_form .group-coupon {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    margin-bottom: 2em;
}
div.optimus div.group-payment-method-row-with-cvv form.group_form .group-coupon .group-row,
form.group_form .group-coupon .ui-card,
form.group_form .group-coupon div.optimus div.group-payment-method-row-with-cvv .group-row {
    margin-bottom: 2em;
    padding: 1em 2em;
}
div.optimus div.group-payment-method-row-with-cvv form.group_form .group-coupon .group-row .group-row,
form.group_form .group-coupon .ui-card .group-row,
form.group_form .group-coupon div.optimus div.group-payment-method-row-with-cvv .group-row .group-row {
    background: #fff;
    margin: 0.5em 0;
    padding: 0;
}
div.optimus
    div.group-payment-method-row-with-cvv
    form.group_form
    .group-coupon
    .group-row
    .group-row:last-of-type
    label.ui-input-text,
form.group_form .group-coupon .ui-card .group-row:last-of-type label.ui-input-text,
form.group_form
    .group-coupon
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group-row:last-of-type
    label.ui-input-text {
    margin-left: 3.75em;
}
div.optimus
    div.group-payment-method-row-with-cvv
    form.group_form
    .group-coupon
    .group-row
    .group-row:first-of-type
    label.ui-input-text,
form.group_form .group-coupon .ui-card .group-row:first-of-type label.ui-input-text,
form.group_form
    .group-coupon
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group-row:first-of-type
    label.ui-input-text {
    margin-left: 0;
}
form.group_form .group-coupon .icon-wrapper {
    margin-right: 1.5em;
}
form.group_form .group-coupon .andes-button.andes-button--loud {
    -webkit-align-self: flex-end;
    align-self: flex-end;
}
div.optimus div.group-payment-method-row-with-cvv form.group_form .group-coupon.applied .group-row,
form.group_form .group-coupon.applied .ui-card,
form.group_form .group-coupon.applied div.optimus div.group-payment-method-row-with-cvv .group-row {
    margin-bottom: 0;
    padding: 1em 2em;
}
div.optimus div.group-payment-method-row-with-cvv form.group_form .group-coupon.applied .group-row .group-row,
form.group_form .group-coupon.applied .ui-card .group-row,
form.group_form .group-coupon.applied div.optimus div.group-payment-method-row-with-cvv .group-row .group-row {
    margin: 0;
}
div.optimus
    div.group-payment-method-row-with-cvv
    form.group_form
    .group-coupon.applied
    .group-row
    .group-row
    .group-generic
    .text:last-of-type,
form.group_form .group-coupon.applied .ui-card .group-row .group-generic .text:last-of-type,
form.group_form
    .group-coupon.applied
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group-row
    .group-generic
    .text:last-of-type {
    color: #000;
    font-size: 1.125em;
    margin: 0.375em 0 0.25em;
}
.badge {
    color: #fff;
    font-size: 0.875em;
    margin-top: 0.25em;
    padding: 0.5em;
}
.congrats--approved .group-congrats-summary {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
}
.congrats--approved .group-congrats-summary  .group-generic {
    -webkit-flex-direction: column;
    flex-direction: column;
    margin: 0 0 0 1.5em;
}
.congrats--approved .group-congrats-summary  .group-generic .row-summary__discount_price {
    color: #5ba54d;
}
.congrats--approved .group-congrats-summary  .group-generic .row-summary:last-of-type {
    font-weight: 400;
}
.group-back-url.none {
    display: none;
}
.group-list-wrapper .andes-list__group--header {
    font-size: 0.875em;
    font-weight: 800;
    margin-bottom: 0.5em;
    margin-top: 1.5em;
}
.group-list-wrapper #undefined__group-heading-0,
.group-list-wrapper #undefined__group-heading-1 {
    color: #333;
    padding-left: 0;
}
.group-list-wrapper .andes-list {
    background-color: transparent;
}
.group-list-wrapper .andes-list .andes-list__item {
    background-color: #fff;
    border-bottom: 0.0625em solid #ededed;
    -webkit-border-radius: 0;
    border-radius: 0;
    font-size: 16px;
    height: 4.625em;
    margin-bottom: 0;
    margin-top: 0;
    padding: 1em;
}
.group-list-wrapper .andes-list .andes-list__item:hover {
    background-color: #f5f5f5;
}
.group-list-wrapper .andes-list .andes-list__item:first-of-type {
    -webkit-border-top-left-radius: 0.25em;
    border-top-left-radius: 0.25em;
    -webkit-border-top-right-radius: 0.25em;
    border-top-right-radius: 0.25em;
}
.group-list-wrapper .andes-list .andes-list__item:last-of-type {
    border-bottom: 0;
    -webkit-border-bottom-left-radius: 0.25em;
    border-bottom-left-radius: 0.25em;
    -webkit-border-bottom-right-radius: 0.25em;
    border-bottom-right-radius: 0.25em;
}
.group-list-wrapper .andes-list .andes-list__item .andes-radio {
    padding-left: 0.5625em;
}
.group-list-wrapper .andes-list .andes-list__item-primary {
    font-size: 16px;
    line-height: 1.125em;
}
.group-list-wrapper .andes-list .andes-list__item-with-secondary {
    font-size: 14px;
    line-height: 1.2857142857em;
}
.group-list-wrapper .andes-list .andes-list__item-with-secondary .andes-radio {
    -webkit-align-items: center;
    align-items: center;
    padding-left: 0.625em;
}
.group-list-wrapper .andes-list .andes-list__item-with-secondary .andes-radio-element {
    margin-top: 0;
}
.group-list-wrapper .andes-list .andes-list__item-tertiary {
    -webkit-align-self: center;
    align-self: center;
    font-size: 14px;
    line-height: 1.4285714286em;
    white-space: nowrap;
}
.group-list-wrapper .andes-list .andes-list__item-primary + .andes-list__item-secondary {
    margin-top: 0.1875em;
}
.group-list-wrapper .hide-header .andes-list__group--header {
    display: none;
}
.group-list-wrapper + .andes-button--loud,
.group-list-wrapper + .andes-button--loud + .button_back_default {
    margin-top: 1.875em;
}
.list-item .group-media-object div:first-of-type {
    -webkit-flex-grow: 1;
    flex-grow: 1;
}
.list-item.free .group-media-object > div > .text span {
    color: #2d8e5f;
}
.transition-redirect {
    display: -webkit-flex;
    display: flex;
}
.transition-redirect .ui-loading__container {
    font-size: 16px;
    height: 4em;
    width: 2em;
}
.transition-redirect .ui-loading__container .ui-loading__spinner {
    height: 2em;
    margin-top: 1em;
    width: 2em;
}
.transition-redirect .icon-wrapper.icon-arrow-head,
.transition-redirect .icon-wrapper.icon-arrow-tail {
    height: 4em;
    width: 3em;
}
.layout--modal .group-redirect-description #group_redirect_done .title-h3 {
    width: 17.75em;
}
.input-action .andes-form-control__embedded button.andes-button--quiet {
    font-size: 14px;
    margin-bottom: 0;
    padding: 0;
    white-space: nowrap;
}
.input-action .andes-form-control__embedded button.andes-button--transparent {
    font-size: 14px;
    margin: 0;
    padding-left: 1em;
    padding-right: 1em;
    white-space: nowrap;
}
.input-action .andes-form-control__embedded .andes-checkbox {
    margin-bottom: 0.25em;
}
.input-action .andes-form-control__embedded .andes-checkbox .andes-checkbox__label {
    font-size: 14px;
    padding-bottom: 0.25em;
    white-space: nowrap;
}
.andes-radio {
    font-size: 16px;
}
.andes-radio .andes-radio-element {
    height: 2em;
    padding-top: 0.5em;
    width: 2em;
}
.zipcode-finder .ui-card-wrapper > .ui-card,
.zipcode-finder div.optimus div.group-payment-method-row-with-cvv .ui-card-wrapper > .group-row,
div.optimus div.group-payment-method-row-with-cvv .zipcode-finder .ui-card-wrapper > .group-row {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
}
.zipcode-finder .ui-card-wrapper > .ui-card .andes-dropdown,
.zipcode-finder div.optimus div.group-payment-method-row-with-cvv .ui-card-wrapper > .group-row .andes-dropdown,
div.optimus div.group-payment-method-row-with-cvv .zipcode-finder .ui-card-wrapper > .group-row .andes-dropdown {
    margin-right: 0;
}
.zipcode-finder .ui-card-wrapper > .ui-card .group-flex,
.zipcode-finder div.optimus div.group-payment-method-row-with-cvv .ui-card-wrapper > .group-row .group-flex,
div.optimus div.group-payment-method-row-with-cvv .zipcode-finder .ui-card-wrapper > .group-row .group-flex {
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}
.zipcode-finder .ui-card-wrapper > .ui-card .group-flex .andes-form-control--textfield.ui-input-text:only-child,
.zipcode-finder
    div.optimus
    div.group-payment-method-row-with-cvv
    .ui-card-wrapper
    > .group-row
    .group-flex
    .andes-form-control--textfield.ui-input-text:only-child,
div.optimus
    div.group-payment-method-row-with-cvv
    .zipcode-finder
    .ui-card-wrapper
    > .group-row
    .group-flex
    .andes-form-control--textfield.ui-input-text:only-child {
    width: 100%;
}
.zipcode-finder .ui-card-wrapper > .ui-card .andes-button--loud,
.zipcode-finder div.optimus div.group-payment-method-row-with-cvv .ui-card-wrapper > .group-row .andes-button--loud,
div.optimus div.group-payment-method-row-with-cvv .zipcode-finder .ui-card-wrapper > .group-row .andes-button--loud {
    -webkit-align-self: flex-start;
    align-self: flex-start;
    float: unset;
}
.layout--embed .modal-wrapper .ui-card,
.layout--embed .modal-wrapper div.optimus div.group-payment-method-row-with-cvv .group-row,
.layout--redirect .modal-wrapper .ui-card,
.layout--redirect .modal-wrapper div.optimus div.group-payment-method-row-with-cvv .group-row,
div.optimus div.group-payment-method-row-with-cvv .layout--embed .modal-wrapper .group-row,
div.optimus div.group-payment-method-row-with-cvv .layout--redirect .modal-wrapper .group-row {
    -webkit-box-shadow: none;
    box-shadow: none;
}
.zipcode-finder .ui-card > .group-flex .andes-autocomplete,
.zipcode-finder div.optimus div.group-payment-method-row-with-cvv .group-row > .group-flex .andes-autocomplete,
div.optimus div.group-payment-method-row-with-cvv .zipcode-finder .group-row > .group-flex .andes-autocomplete {
    width: 100%;
}
.zipcode-finder .ui-card > .group-flex .andes-autocomplete .andes-form-control--error,
.zipcode-finder
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    > .group-flex
    .andes-autocomplete
    .andes-form-control--error,
div.optimus
    div.group-payment-method-row-with-cvv
    .zipcode-finder
    .group-row
    > .group-flex
    .andes-autocomplete
    .andes-form-control--error {
    margin-bottom: 1.0625em;
}
.zipcode-finder .andes-dropdown.andes-dropdown--form .andes-dropdown__popover {
    top: 0 !important;
}
.zipcode-finder .andes-autocomplete .andes-dropdown > .andes-dropdown__popover {
    max-height: 7.5em;
}
.zipcode-result .buttons-container {
    font-size: 16px;
}
.zipcode-result .buttons-container .andes-button--quiet {
    font-weight: 600;
    margin-bottom: 0;
}
.zipcode-result .single-result {
    -webkit-align-items: center;
    align-items: center;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    text-align: center;
}
.zipcode-result .single-result .icon-wrapper {
    background: rgba(0, 0, 0, 0.04);
    -webkit-border-radius: 3.125em;
    border-radius: 3.125em;
    height: 4em;
    width: 4em;
}
.zipcode-result .single-result h2 {
    font-weight: 600;
    margin: 0.5em 0;
}
.zipcode-result .single-result p.text.gray {
    margin-bottom: 1.5em;
}
.zipcode-result .single-result .buttons-container {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
}
.zipcode-result .single-result .buttons-container .andes-button--loud {
    -webkit-align-self: unset;
    align-self: unset;
}
.zipcode-result .single-result .buttons-container .andes-button--quiet {
    margin-left: 0;
    margin-top: 0.5em;
}
.zipcode-result .list {
    margin-bottom: 1.5em;
}
.zipcode-result .list .list-item .options-list.ui-card,
.zipcode-result .list .list-item div.optimus div.group-payment-method-row-with-cvv .options-list.group-row,
div.optimus div.group-payment-method-row-with-cvv .zipcode-result .list .list-item .options-list.group-row {
    padding: 1em 2em;
}
.zipcode-result .list .list-item .options-list.ui-card .options-list__label .row-details > .text,
.zipcode-result
    .list
    .list-item
    div.optimus
    div.group-payment-method-row-with-cvv
    .options-list.group-row
    .options-list__label
    .row-details
    > .text,
div.optimus
    div.group-payment-method-row-with-cvv
    .zipcode-result
    .list
    .list-item
    .options-list.group-row
    .options-list__label
    .row-details
    > .text {
    line-height: 1.25em;
}
.zipcode-result .list .list-item .options-list.ui-card .options-list__label .row-details > .text span,
.zipcode-result
    .list
    .list-item
    div.optimus
    div.group-payment-method-row-with-cvv
    .options-list.group-row
    .options-list__label
    .row-details
    > .text
    span,
div.optimus
    div.group-payment-method-row-with-cvv
    .zipcode-result
    .list
    .list-item
    .options-list.group-row
    .options-list__label
    .row-details
    > .text
    span {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
}
.zipcode-result .list .list-item .options-list.ui-card .options-list__label .row-details > .text span span:first-child,
.zipcode-result
    .list
    .list-item
    div.optimus
    div.group-payment-method-row-with-cvv
    .options-list.group-row
    .options-list__label
    .row-details
    > .text
    span
    span:first-child,
div.optimus
    div.group-payment-method-row-with-cvv
    .zipcode-result
    .list
    .list-item
    .options-list.group-row
    .options-list__label
    .row-details
    > .text
    span
    span:first-child {
    color: rgba(0, 0, 0, 0.9);
}
.zipcode-result .list + .buttons-container {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
}
.layout--modal .zipcode-result .single-result {
    background: #fff;
    -webkit-border-radius: 0.25em;
    border-radius: 0.25em;
    -webkit-box-shadow: 0 0.125em 0.0625em 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0.125em 0.0625em 0 rgba(0, 0, 0, 0.1);
    padding: 2.5em;
}
.layout--modal .zipcode-result .group-list-wrapper {
    margin-bottom: 1.5em;
    max-height: 21.875em;
    overflow: scroll;
}
.layout--modal .zipcode-result .group-list-wrapper .andes-list__group--header {
    margin: 0;
    padding: 0;
}
.layout--modal .group-list {
    -webkit-border-radius: 0.25em;
    border-radius: 0.25em;
    -webkit-box-shadow: 0 0.07em 0.125em 0 rgba(0, 0, 0, 0.25);
    box-shadow: 0 0.07em 0.125em 0 rgba(0, 0, 0, 0.25);
}
.layout--embed .modal-content > .modal-wrapper .inner-wrapper,
.layout--redirect .modal-content > .modal-wrapper .inner-wrapper {
    padding: 2em 0;
}
.layout--embed .modal-content > .modal-wrapper .inner-wrapper .header,
.layout--redirect .modal-content > .modal-wrapper .inner-wrapper .header {
    margin-bottom: 1.5em;
    padding: 0 2em;
}
.layout--embed .modal-content > .modal-wrapper .inner-wrapper .header .title,
.layout--redirect .modal-content > .modal-wrapper .inner-wrapper .header .title {
    font-weight: 600;
}
.layout--embed .modal-content > .modal-wrapper .inner-wrapper .zipcode-finder,
.layout--redirect .modal-content > .modal-wrapper .inner-wrapper .zipcode-finder {
    margin: 0;
}
.layout--embed .modal-content > .modal-wrapper .inner-wrapper .zipcode-finder .buttons-container,
.layout--redirect .modal-content > .modal-wrapper .inner-wrapper .zipcode-finder .buttons-container {
    padding: 0 2em;
}
.layout--embed .modal-content > .modal-wrapper .inner-wrapper .zipcode-finder .single-result p.text.gray,
.layout--redirect .modal-content > .modal-wrapper .inner-wrapper .zipcode-finder .single-result p.text.gray {
    margin-bottom: 2em;
}
.layout--embed .modal-content > .modal-wrapper .inner-wrapper .zipcode-finder .group-list-wrapper,
.layout--redirect .modal-content > .modal-wrapper .inner-wrapper .zipcode-finder .group-list-wrapper {
    margin-bottom: 1.5em;
    max-height: -webkit-calc(100vh - 300px);
    max-height: calc(100vh - 300px);
    overflow: scroll;
}
.layout--embed
    .modal-content
    > .modal-wrapper
    .inner-wrapper
    .zipcode-finder
    .group-list-wrapper
    .andes-list
    .andes-list__group--header,
.layout--redirect
    .modal-content
    > .modal-wrapper
    .inner-wrapper
    .zipcode-finder
    .group-list-wrapper
    .andes-list
    .andes-list__group--header {
    margin: 0;
    padding: 0;
}
.layout--embed
    .modal-content
    > .modal-wrapper
    .inner-wrapper
    .zipcode-finder
    .group-list-wrapper
    .andes-list
    .andes-radio-button-list__list-item:first-of-type,
.layout--redirect
    .modal-content
    > .modal-wrapper
    .inner-wrapper
    .zipcode-finder
    .group-list-wrapper
    .andes-list
    .andes-radio-button-list__list-item:first-of-type {
    -webkit-border-radius: 0;
    border-radius: 0;
    border-top: 0.0625em solid #e5e5e5;
}
.layout--embed
    .modal-content
    > .modal-wrapper
    .inner-wrapper
    .zipcode-finder
    .group-list-wrapper
    .andes-list
    .andes-radio-button-list__list-item:last-of-type,
.layout--redirect
    .modal-content
    > .modal-wrapper
    .inner-wrapper
    .zipcode-finder
    .group-list-wrapper
    .andes-list
    .andes-radio-button-list__list-item:last-of-type {
    border-bottom: 0.0625em solid #e5e5e5;
    -webkit-border-radius: 0;
    border-radius: 0;
}
.layout--embed .modal-content.shield-modal > .modal-wrapper .inner-wrapper .header,
.layout--redirect .modal-content.shield-modal > .modal-wrapper .inner-wrapper .header {
    padding: 0;
}
.zipcode-finder .andes-list__item-primary {
    font-size: 1em;
}
.zipcode-finder .andes-list__item-secondary {
    margin-top: 0.125em;
}
.zipcode-finder .finder-result--secondary {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
}
.zipcode-finder .finder-result--secondary span {
    font-size: 0.875em;
}
.zipcode-finder .finder-result--secondary span:first-of-type {
    color: rgba(0, 0, 0, 0.9);
}
.select-installments {
    -webkit-flex: 1;
    flex: 1;
}
.select-installments .select-additional-info {
    color: rgba(0, 0, 0, 0.9);
    -webkit-flex: 1 1 100%;
    flex: 1 1 100%;
    font-size: 0.875em;
    font-stretch: normal;
    font-style: normal;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.29;
}
div.optimus div.group-payment-method-row-with-cvv .group-row {
    background-color: #fff;
    -webkit-border-radius: 0.375em 0.375em 0 0;
    border-radius: 0.375em 0.375em 0 0;
    padding: 2em;
}
div.optimus div.group-payment-method-row-with-cvv .ui-card-wrapper .group-row,
div.optimus div.group-payment-method-row-with-cvv .ui-card-wrapper .ui-card {
    -webkit-border-radius: 0 0 0.375em 0.375em;
    border-radius: 0 0 0.375em 0.375em;
    margin-top: 0.0625em;
    padding: 1em;
}
.group-row-banner-container {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
}
.group-row-banner-container .group-row {
    margin-bottom: 0;
}
.group-row-banner-container .row-banner {
    background: #f5f5f5;
    -webkit-border-radius: 0 0 0.25em 0.25em;
    border-radius: 0 0 0.25em 0.25em;
    border-top: 0.0625em solid rgba(0, 0, 0, 0.1);
    color: #737373;
    font-size: 14px;
    padding: 0.25em 1.5em;
    text-align: center;
}
.andes-badge--notification {
    -webkit-border-radius: 50%;
    border-radius: 50%;
    height: 24px;
    overflow: hidden;
    position: relative;
    width: 24px;
}
.andes-badge__icon {
    height: 100%;
    width: 100%;
}
.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--standard {
    -webkit-border-radius: 8px;
    border-radius: 8px;
    height: 16px;
}
.andes-badge--small.andes-badge--rounded {
    -webkit-border-top-right-radius: 0;
    border-top-right-radius: 0;
}
.andes-badge--small.andes-badge--corner,
.andes-badge--small.andes-badge--rounded {
    -webkit-border-bottom-left-radius: 8px;
    border-bottom-left-radius: 8px;
    -webkit-border-bottom-right-radius: 0;
    border-bottom-right-radius: 0;
    -webkit-border-top-left-radius: 0;
    border-top-left-radius: 0;
}
.andes-badge--small.andes-badge--corner {
    -webkit-border-top-right-radius: 8px;
    border-top-right-radius: 8px;
}
.andes-badge--small.andes-badge--notification {
    -webkit-border-radius: 50%;
    border-radius: 50%;
    height: 16px;
    width: 16px;
}
.andes-message {
    -webkit-font-smoothing: antialiased;
    -webkit-border-radius: 6px;
    border-radius: 6px;
    display: -webkit-flex;
    display: flex;
    font-family: Proxima Nova, -apple-system, Helvetica Neue, Helvetica, Roboto, Arial, sans-serif;
    font-size: 14px;
    padding: 1.1428571429em 0;
    position: relative;
}
.andes-message__text,
.andes-message__title {
    color: #fff;
    font-weight: 400;
}
.andes-message__primary-button-closeable {
    margin-right: 26px;
}
.andes-message__close--bottom {
    top: 1.1428571429em;
}
.andes-message__secondary-button {
    margin-left: 8px;
}
.andes-message__content {
    width: 80%;
}
.andes-message__content.untitled {
    -webkit-align-items: center;
    align-items: center;
    display: -webkit-flex;
    display: flex;
}
.andes-message__badge {
    display: -webkit-flex;
    display: flex;
    margin: 0 1.1428571429em;
}
.andes-message__secondary-button--loud {
    color: #fff !important;
}
.andes-message__secondary-button--loud:hover {
    background: rgba(0, 0, 0, 0.1) !important;
}
.andes-message__secondary-button--loud:active {
    background: rgba(0, 0, 0, 0.25) !important;
}
.andes-message__close-in-line,
.andes-message__primary-button-inline {
    position: absolute;
    right: 1.1428571429em;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.andes-message__text-inline-action {
    max-width: 80%;
}
.andes-message__text-inline-action,
.andes-message__text-inline-action div,
.andes-message__text-inline-action div p,
.andes-message__text-inline-action div span,
.andes-message__text-inline-action p,
.andes-message__text-inline-action span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.andes-message__title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}
.andes-message__buttons-container {
    margin-top: 20px;
}
.andes-message__icon {
    display: -webkit-flex;
    display: flex;
    height: 1.1428571429em;
    margin: 0 1.1428571429em;
    width: 1.1428571429em;
}
.andes-message__thumbnail-container {
    height: 48px;
    margin: 0 16px;
    position: relative;
    width: 48px;
}
.andes-message__thumbnail-container .andes-badge {
    bottom: 0;
    margin: 0;
    position: absolute;
    right: -2px;
}
.andes-badge--error {
    background: #f23d4f;
}
.andes-badge--error--quiet {
    background: rgba(242, 61, 79, 0.1);
    border: 0;
}
.andes-badge--error--quiet.andes-badge--generic.andes-badge--pill {
    background: rgba(0, 0, 0, 0.07);
}
.andes-badge--error--quiet.andes-badge--generic.andes-badge--pill .andes-badge__content {
    color: rgba(0, 0, 0, 0.55);
}
.andes-badge--error--quiet .andes-badge__content {
    color: #f23d4f;
}
.andes-message__close--error {
    cursor: pointer;
    height: 1em;
    position: relative;
    position: absolute;
    right: 1.1428571429em;
    width: 1em;
}
.andes-message__close--error:after,
.andes-message__close--error:before {
    background-color: #fff;
    content: "";
    cursor: pointer;
    height: 1em;
    left: 0.5em;
    position: absolute;
    top: 0;
    width: 2px;
}
.andes-message__close--error:before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.andes-message__close--error:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.andes-message--error {
    background: #f23d4f;
}
.andes-message--error .andes-message__badge--error {
    background-color: #d12440;
}
.andes-message__primary-button--error {
    background-color: #d12440 !important;
}
.andes-message__primary-button--error:hover {
    background: #b31f37 !important;
}
.andes-message__primary-button--error:active {
    background: #90192c !important;
}
.andes-badge--warning {
    background: #f73;
}
.andes-badge--warning--quiet {
    background: rgba(255, 119, 51, 0.1);
    border: 0;
}
.andes-badge--warning--quiet.andes-badge--generic.andes-badge--pill {
    background: rgba(0, 0, 0, 0.07);
}
.andes-badge--warning--quiet.andes-badge--generic.andes-badge--pill .andes-badge__content {
    color: rgba(0, 0, 0, 0.55);
}
.andes-badge--warning--quiet .andes-badge__content {
    color: #f73;
}
.andes-message__close--warning {
    cursor: pointer;
    height: 1em;
    position: relative;
    position: absolute;
    right: 1.1428571429em;
    width: 1em;
}
.andes-message__close--warning:after,
.andes-message__close--warning:before {
    background-color: #fff;
    content: "";
    cursor: pointer;
    height: 1em;
    left: 0.5em;
    position: absolute;
    top: 0;
    width: 2px;
}
.andes-message__close--warning:before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.andes-message__close--warning:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.andes-message--warning {
    background: #f73;
}
.andes-message--warning .andes-message__badge--warning {
    background-color: #e6540b;
}
.andes-message__primary-button--warning {
    background-color: #e6540b !important;
}
.andes-message__primary-button--warning:hover {
    background: #c44809 !important;
}
.andes-message__primary-button--warning:active {
    background: #9d3908 !important;
}
.andes-badge--success {
    background: #2d8e5f;
}
.andes-badge--success--quiet {
    background: rgba(0, 166, 80, 0.1);
    border: 0;
}
.andes-badge--success--quiet.andes-badge--generic.andes-badge--pill {
    background: rgba(0, 0, 0, 0.07);
}
.andes-badge--success--quiet.andes-badge--generic.andes-badge--pill .andes-badge__content {
    color: rgba(0, 0, 0, 0.55);
}
.andes-badge--success--quiet .andes-badge__content {
    color: #2d8e5f;
}
.andes-message__close--success {
    cursor: pointer;
    height: 1em;
    position: relative;
    position: absolute;
    right: 1.1428571429em;
    width: 1em;
}
.andes-message__close--success:after,
.andes-message__close--success:before {
    background-color: #fff;
    content: "";
    cursor: pointer;
    height: 1em;
    left: 0.5em;
    position: absolute;
    top: 0;
    width: 2px;
}
.andes-message__close--success:before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.andes-message__close--success:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.andes-message--success {
    background: #2d8e5f;
}
.andes-message--success .andes-message__badge--success {
    background-color: #008744;
}
.andes-message__primary-button--success {
    background-color: #008744 !important;
}
.andes-message__primary-button--success:hover {
    background: #006332 !important;
}
.andes-message__primary-button--success:active {
    background: #003b1d !important;
}
.andes-badge--neutral {
    background: #009ee3;
}
.andes-badge--neutral--quiet {
    background: rgba(0, 158, 227, 0.1);
    border: 0;
}
.andes-badge--neutral--quiet.andes-badge--generic.andes-badge--pill {
    background: rgba(0, 0, 0, 0.07);
}
.andes-badge--neutral--quiet.andes-badge--generic.andes-badge--pill .andes-badge__content {
    color: rgba(0, 0, 0, 0.55);
}
.andes-badge--neutral--quiet .andes-badge__content {
    color: #009ee3;
}
.andes-badge__icon-inner {
    fill: #fff;
}
.andes-message__close--neutral {
    cursor: pointer;
    height: 1em;
    position: relative;
    position: absolute;
    right: 1.1428571429em;
    width: 1em;
}
.andes-message__close--neutral:after,
.andes-message__close--neutral:before {
    background-color: #fff;
    content: "";
    cursor: pointer;
    height: 1em;
    left: 0.5em;
    position: absolute;
    top: 0;
    width: 2px;
}
.andes-message__close--neutral:before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.andes-message__close--neutral:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.andes-message--neutral {
    background: #009ee3;
}
.andes-message--neutral .andes-message__badge--neutral {
    background-color: #007eb5;
}
.andes-message__primary-button--neutral {
    background-color: #007eb5 !important;
}
.andes-message__primary-button--neutral:hover {
    background: #006591 !important;
}
.andes-message__primary-button--neutral:active {
    background: #004969 !important;
}
.andes-message__close--quiet {
    cursor: pointer;
    height: 1em;
    position: relative;
    position: absolute;
    right: 1.1428571429em;
    width: 1em;
}
.andes-message__close--quiet:after,
.andes-message__close--quiet:before {
    background-color: rgba(0, 0, 0, 0.55);
    content: "";
    cursor: pointer;
    height: 1em;
    left: 0.5em;
    position: absolute;
    top: 0;
    width: 2px;
}
.andes-message__close--quiet:before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.andes-message__close--quiet:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.andes-message--neutral.andes-message--quiet .andes-message__icon-outer {
    stroke: #009ee3;
    fill: #009ee3;
}
.andes-message__border-color--neutral {
    background-color: #009ee3;
    -webkit-border-radius: 6px 0 0 6px;
    border-radius: 6px 0 0 6px;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 4px;
}
.andes-message--success.andes-message--quiet .andes-message__icon-outer {
    stroke: #2d8e5f;
    fill: #2d8e5f;
}
.andes-message__border-color--success {
    background-color: #2d8e5f;
    -webkit-border-radius: 6px 0 0 6px;
    border-radius: 6px 0 0 6px;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 4px;
}
.andes-message--warning.andes-message--quiet .andes-message__icon-outer {
    stroke: #f73;
    fill: #f73;
}
.andes-message__border-color--warning {
    background-color: #f73;
    -webkit-border-radius: 6px 0 0 6px;
    border-radius: 6px 0 0 6px;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 4px;
}
.andes-message--error.andes-message--quiet .andes-message__icon-outer {
    stroke: #f23d4f;
    fill: #f23d4f;
}
.andes-message__border-color--error {
    background-color: #f23d4f;
    -webkit-border-radius: 6px 0 0 6px;
    border-radius: 6px 0 0 6px;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 4px;
}
.andes-message--quiet {
    background: rgba(0, 0, 0, 0.07);
}
.andes-message--quiet .andes-message__text,
.andes-message--quiet .andes-message__title {
    color: #000;
}
.andes-spinner {
    font-family: Proxima Nova, -apple-system, Helvetica Neue, Helvetica, Roboto, Arial, sans-serif;
    font-size: 16px;
}
.andes-spinner__label {
    display: block;
    line-height: 1;
}
.andes-spinner__icon {
    -webkit-animation: rotate-all 1s linear infinite;
    animation: rotate-all 1s linear infinite;
    bottom: 0;
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
    top: 0;
}
.andes-spinner__icon-left,
.andes-spinner__icon-right {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    height: 100%;
    overflow: hidden;
    position: absolute;
    top: 0;
    width: 50%;
}
.andes-spinner__icon-left {
    left: 0;
}
.andes-spinner__icon-right {
    right: 0;
}
.andes-spinner__icon-right .andes-spinner__icon-border:after {
    left: -2px !important;
}
.andes-spinner__icon-left .andes-spinner__icon-border:after,
.andes-spinner__icon-right .andes-spinner__icon-border:after {
    background: #009ee3;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    bottom: -2px !important;
    content: "";
    display: block;
    height: 2.5px;
    position: absolute;
    width: 2.5px;
    z-index: 9999;
}
.andes-spinner__icon-left .andes-spinner__icon-border:after {
    right: -2px !important;
}
.andes-spinner__icon-border {
    border: 2px solid #009ee3;
    -webkit-border-radius: 200px 0 0 200px;
    border-radius: 200px 0 0 200px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    height: 100%;
    position: relative;
    width: 100%;
}
.andes-spinner__icon-right .andes-spinner__icon-border {
    -webkit-animation: rotate-right 0.75s linear infinite alternate;
    animation: rotate-right 0.75s linear infinite alternate;
    border-left: 0;
    -webkit-border-radius: 0 200px 200px 0;
    border-radius: 0 200px 200px 0;
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
    -webkit-transform-origin: left center;
    transform-origin: left center;
}
.andes-spinner__icon-right .andes-spinner__icon-border:after {
    bottom: -10px;
    left: -5px;
}
.andes-spinner__icon-left .andes-spinner__icon-border {
    -webkit-animation: rotate-left 0.75s linear infinite alternate;
    animation: rotate-left 0.75s linear infinite alternate;
    border-right: 0;
    -webkit-transform: rotate(10deg);
    transform: rotate(10deg);
    -webkit-transform-origin: right center;
    transform-origin: right center;
}
.andes-spinner__icon-left .andes-spinner__icon-border:after {
    bottom: -10px;
    right: -5px;
}
.andes-spinner--highlight .andes-spinner__label {
    color: #fff;
}
.andes-spinner--highlight .andes-spinner__icon-left .andes-spinner__icon-border:after,
.andes-spinner--highlight .andes-spinner__icon-right .andes-spinner__icon-border:after {
    background: #fff;
}
.andes-spinner--highlight .andes-spinner__icon-border {
    border-color: #fff;
}
@keyframes rotate-left {
    to {
        -webkit-transform: rotate(30deg);
        transform: rotate(30deg);
    }
    0% {
        -webkit-transform: rotate(175deg);
        transform: rotate(175deg);
    }
}
@keyframes rotate-right {
    0% {
        -webkit-transform: rotate(-175deg);
        transform: rotate(-175deg);
    }
    to {
        -webkit-transform: rotate(-30deg);
        transform: rotate(-30deg);
    }
}
@keyframes rotate-all {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn);
    }
}
.andes-spinner__mask {
    background-color: hsla(0, 0%, 100%, 0.9);
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}
.andes-spinner__mask--highlight {
    background-color: rgba(0, 158, 227, 0.9);
}
.andes-spinner--block {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1020;
}
.andes-spinner--block .andes-spinner__container {
    left: 50%;
    position: absolute;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 1021;
}
.andes-spinner__container--large-notlabel {
    height: 64px;
    width: 64px;
}
.andes-spinner__container--large .andes-spinner__label {
    font-size: 18px;
    line-height: 1.35;
    margin-top: 88px;
}
.andes-spinner__icon--large {
    height: 64px;
    width: 64px;
}
.threeds__iframe-container {
    -webkit-align-items: center;
    align-items: center;
    background: #fff;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    justify-content: center;
    margin-top: 1.5em;
    min-height: 25em;
    position: relative;
}
.threeds__iframe-container .threeds__loading-container .andes-spinner__container {
    text-align: center;
    width: 12.5em;
}
.threeds__iframe-container .threeds__loading-container .andes-spinner__mask {
    display: none;
    visibility: hidden;
}
.threeds__iframe-container .threeds__loading-container .threeds__loading-message {
    text-align: center;
}
.threeds__iframe {
    border: 0;
    display: block;
    min-height: 25em;
    width: 100%;
}
.threeds__iframe-hidden {
    display: none;
}
.challenge {
    background: #eee;
    -webkit-border-radius: 0.25em;
    border-radius: 0.25em;
    overflow: hidden;
    width: 100%;
}
.challenge .login-header {
    background: #eee;
    height: 50%;
    padding: 20% 20% 10%;
    text-align: center;
}
.challenge .icon-wrapper {
    height: 0;
    visibility: collapse;
}
.challenge .icon-wrapper svg {
    height: 0;
    width: 0;
}
.challenge .login-titles {
    margin: 0 auto;
    max-width: 15.75em;
}
.challenge .login-titles .c-title {
    color: rgba(0, 0, 0, 0.9);
    line-height: 1.1;
    margin: 0.25em;
}
.challenge .login-titles .text {
    color: #000;
    font-size: 1em;
    opacity: 0.8;
}
.challenge .login-content {
    background: #eee;
    height: 100%;
    padding: 1em 20%;
}
.challenge .login-content .andes-button {
    display: block;
    margin: 0 auto;
    padding: 0;
    text-align: center;
    width: 12.8125em;
}
.challenge .login-content .andes-button.andes-button--quiet {
    margin-top: 1em;
}
.challenge.emisor_kyc .login-titles,
.challenge.emisor_reauth .login-titles,
.challenge.kyc_ifpe .login-titles,
.challenge.reauth .login-titles {
    max-width: 21.25em;
}
.challenge.emisor_kyc .login-titles .c-title,
.challenge.emisor_reauth .login-titles .c-title,
.challenge.kyc_ifpe .login-titles .c-title,
.challenge.reauth .login-titles .c-title {
    font-size: 24px;
}
.challenge.emisor_kyc .login-titles .text,
.challenge.emisor_reauth .login-titles .text,
.challenge.kyc_ifpe .login-titles .text,
.challenge.reauth .login-titles .text {
    font-size: 16px;
}
.challenge.emisor_kyc .login-content .andes-button.andes-button--link,
.challenge.emisor_reauth .login-content .andes-button.andes-button--link,
.challenge.kyc_ifpe .login-content .andes-button.andes-button--link,
.challenge.reauth .login-content .andes-button.andes-button--link {
    margin-top: 0.5em;
}
.challenge.consumer_credits_kyc .andes-button--link {
    margin-top: 0.5em;
    width: auto;
}
.login-redirect-iframe-wrapper .login {
    margin-top: 1.25em;
}
.login-redirect-iframe-wrapper .login .login-header:not(.paypal) {
    height: 50%;
    padding: 19%;
}
.login-redirect-iframe-wrapper .login .login-header.paypal {
    height: 62%;
    padding: 8% 20%;
}
.login-redirect-iframe-wrapper .login .login-header.paypal .icon-wrapper {
    background-color: #fff;
    -webkit-border-radius: 0.75em;
    border-radius: 0.75em;
    height: 4.25em;
    margin: auto;
    padding: 1.1875em 1em;
    width: 4.25em;
}
.login-redirect-iframe-wrapper .login .login-header.paypal .icon-wrapper svg {
    height: unset;
    width: unset;
}
.login-redirect-iframe-wrapper .login .login-header.paypal .login-titles {
    max-width: unset;
    padding-top: 1.4375em;
    width: 26.75em;
}
.login-redirect-iframe-wrapper .login .login-header.paypal .login-titles .title-h2 {
    font-size: 20px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.2;
    margin: 0 auto;
    width: 18.75em;
}
.login-redirect-iframe-wrapper .login .login-content.paypal {
    height: unset;
    padding: 1.5em 0;
}
.login-redirect-iframe-wrapper .login .login-content.paypal .andes-button {
    max-width: 19.875em;
    padding: 0 1em;
    width: unset;
}
.login-redirect-iframe-wrapper .login .login-content.paypal .andes-button.andes-button--loud {
    margin-bottom: 0.5em;
    margin-top: 0;
}
.login-redirect-iframe-wrapper .login .login-content.paypal .paypal-payment-conditions {
    background-color: #fff;
    margin: 1em auto 0;
    padding: 0;
    text-align: center;
    width: 33em;
}
.login-redirect-iframe-wrapper .login .login-content.paypal .paypal-payment-conditions p {
    color: rgba(0, 0, 0, 0.55);
    font-size: 16px;
    font-weight: 300;
}
.login-redirect-iframe-wrapper .login .login-content.paypal .paypal-payment-conditions .info-logo {
    display: none;
}
.virtual-cvv-message {
    background: #fff;
    font-family: Proxima Nova, Helvetica Neue, Helvetica, Arial, sans-serif;
    height: 100%;
    left: 0;
    overflow: hidden;
    padding: 1.25em;
    position: absolute;
    top: 0;
    width: 20em;
    z-index: 2;
}
.virtual-cvv-message .icon-wrapper {
    margin: 0 auto;
}
.virtual-cvv-message .message-primary {
    color: rgba(0, 0, 0, 0.9);
    font-size: 0.9230769231em;
    font-weight: 600;
    margin: 0 auto;
    text-align: center;
}
.virtual-cvv-message .message-secondary {
    color: #737373;
    font-size: 0.9230769231em;
    letter-spacing: normal;
    margin: 0.7692307692em auto 0;
    text-align: center;
}
.virtual-cvv-message:after {
    background: rgba(71, 154, 209, 0.4);
    content: "";
    display: block;
    height: 0.3076923077em;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}
.group-generic-block {
    -webkit-border-radius: 0.375em;
    border-radius: 0.375em;
    -webkit-box-shadow: 0 0.07em 0.125em 0 rgba(0, 0, 0, 0.25);
    box-shadow: 0 0.07em 0.125em 0 rgba(0, 0, 0, 0.25);
    margin-bottom: 1em;
}
.group-generic-block .andes-dropdown__arrow:after {
    border-bottom-color: rgba(71, 154, 209, 0.4);
    border-right-color: rgba(71, 154, 209, 0.4);
}
.group-generic-block > :first-child:not(:only-child).form .ui-card-wrapper .ui-card,
.group-generic-block
    > :first-child:not(:only-child).form
    .ui-card-wrapper
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row,
.group-generic-block > :first-child:not(:only-child).group-row,
div.optimus
    div.group-payment-method-row-with-cvv
    .group-generic-block
    > :first-child:not(:only-child).form
    .ui-card-wrapper
    .group-row {
    -webkit-border-radius: 0.375em 0.375em 0 0;
    border-radius: 0.375em 0.375em 0 0;
}
.group-generic-block > :last-child:not(:only-child).form .ui-card-wrapper:last-child .ui-card,
.group-generic-block
    > :last-child:not(:only-child).form
    .ui-card-wrapper:last-child
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row,
.group-generic-block > :last-child:not(:only-child).group-row,
div.optimus
    div.group-payment-method-row-with-cvv
    .group-generic-block
    > :last-child:not(:only-child).form
    .ui-card-wrapper:last-child
    .group-row {
    -webkit-border-radius: 0 0 0.375em 0.375em;
    border-radius: 0 0 0.375em 0.375em;
}
.group-generic-block > :only-child ul.options-list,
.group-generic-block > :only-child.group-row {
    -webkit-border-radius: 0.375em;
    border-radius: 0.375em;
}
.group-generic-block > :only-child.form .ui-card-wrapper:first-child:not(:only-child) .ui-card,
.group-generic-block
    > :only-child.form
    .ui-card-wrapper:first-child:not(:only-child)
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row,
div.optimus
    div.group-payment-method-row-with-cvv
    .group-generic-block
    > :only-child.form
    .ui-card-wrapper:first-child:not(:only-child)
    .group-row {
    -webkit-border-radius: 0.375em 0.375em 0 0;
    border-radius: 0.375em 0.375em 0 0;
}
.group-generic-block > :only-child.form .ui-card-wrapper:last-child:not(:only-child) .ui-card,
.group-generic-block
    > :only-child.form
    .ui-card-wrapper:last-child:not(:only-child)
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row,
div.optimus
    div.group-payment-method-row-with-cvv
    .group-generic-block
    > :only-child.form
    .ui-card-wrapper:last-child:not(:only-child)
    .group-row {
    -webkit-border-radius: 0 0 0.375em 0.375em;
    border-radius: 0 0 0.375em 0.375em;
}
.group-generic-block > :only-child.form .ui-card-wrapper :only-child {
    -webkit-border-radius: 0.375em;
    border-radius: 0.375em;
}
.group-generic-block .group-row {
    background-color: #fff;
    -webkit-border-radius: 0;
    border-radius: 0;
    -webkit-border-radius: 0.25em 0.25em 0 0;
    border-radius: 0.25em 0.25em 0 0;
    -webkit-box-shadow: 0 0 0.125em 0 #e5e5e5;
    box-shadow: 0 0 0.125em 0 #e5e5e5;
    margin-bottom: 0.0625em;
    padding: inherit;
}
.group-generic-block .group-row + .group-row {
    -webkit-border-radius: 0 0 0.25em 0.25em;
    border-radius: 0 0 0.25em 0.25em;
}
.group-generic-block .form .ui-card-wrapper .ui-card,
.group-generic-block .form .ui-card-wrapper div.optimus div.group-payment-method-row-with-cvv .group-row,
div.optimus div.group-payment-method-row-with-cvv .group-generic-block .form .ui-card-wrapper .group-row {
    -webkit-border-radius: 0;
    border-radius: 0;
    margin-top: 0;
}
.group-generic-block .form .ui-card,
.group-generic-block .form div.optimus div.group-payment-method-row-with-cvv .group-row,
div.optimus div.group-payment-method-row-with-cvv .group-generic-block .form .group-row {
    -webkit-border-radius: 0;
    border-radius: 0;
}
.group-generic-block .row_cvv {
    display: -webkit-inline-flex;
    display: inline-flex;
    -webkit-flex-direction: row-reverse;
    flex-direction: row-reverse;
}
.group-generic-block .row_cvv .icon-wrapper {
    margin-right: 1em;
    width: 3em;
}
.group-generic-block .input-cvv {
    width: 100%;
}
.group-generic-block .card-hint {
    display: none;
}
.group-generic-block .andes-form-control {
    margin-bottom: 0.5em;
}
.group-generic-block ~ p {
    margin-bottom: 1em;
    text-align: center;
}
.group-generic-block form:first-child:not(:only-child) ul.options-list {
    -webkit-border-radius: 0.375em 0.375em 0 0;
    border-radius: 0.375em 0.375em 0 0;
    margin-bottom: 0;
}
.group-generic-block form:last-child:not(:only-child) ul.options-list {
    -webkit-border-radius: 0 0 0.375em 0.375em;
    border-radius: 0 0 0.375em 0.375em;
    margin-top: 0;
}
.group-generic-block form:last-child:not(:only-child) .ui-card-wrapper .ui-card,
.group-generic-block
    form:last-child:not(:only-child)
    .ui-card-wrapper
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row,
div.optimus
    div.group-payment-method-row-with-cvv
    .group-generic-block
    form:last-child:not(:only-child)
    .ui-card-wrapper
    .group-row {
    border-top: none;
}
.group-generic-block form:not(:last-child, :first-child, :only-child) ul.options-list {
    -webkit-box-shadow: none;
    box-shadow: none;
    margin-bottom: 0;
    margin-top: 0;
}
.group-generic-block form:not(:last-child, :first-child, :only-child) .ui-card-wrapper .ui-card,
.group-generic-block
    form:not(:last-child, :first-child, :only-child)
    .ui-card-wrapper
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row,
div.optimus
    div.group-payment-method-row-with-cvv
    .group-generic-block
    form:not(:last-child, :first-child, :only-child)
    .ui-card-wrapper
    .group-row {
    border-top: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.group-generic-block form:not(:last-child) ul.options-list {
    border-bottom: 0.0625em solid #eee;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.group-generic-block > form#group_pay:not(:last-child) .ui-card.installments_row,
.group-generic-block
    > form#group_pay:not(:last-child)
    div.optimus
    div.group-payment-method-row-with-cvv
    .installments_row.group-row,
div.optimus
    div.group-payment-method-row-with-cvv
    .group-generic-block
    > form#group_pay:not(:last-child)
    .installments_row.group-row {
    border-bottom: 0.0625em solid #eee;
}
.group-generic-block > form#group_pay:last-child > .options-list.ui-card + .ui-card-wrapper,
div.optimus
    div.group-payment-method-row-with-cvv
    .group-generic-block
    > form#group_pay:last-child
    > .options-list.group-row
    + .ui-card-wrapper {
    border-top: 0.0625em solid #eee;
}
.group-generic-block > form#group_pay .ui-card.installments_row,
.group-generic-block > form#group_pay div.optimus div.group-payment-method-row-with-cvv .installments_row.group-row,
div.optimus div.group-payment-method-row-with-cvv .group-generic-block > form#group_pay .installments_row.group-row {
    min-height: unset;
    overflow: auto;
    padding: 0;
}
.group-generic-block > form#group_pay .ui-card-wrapper:first-child:not(:only-child) .ui-card,
.group-generic-block
    > form#group_pay
    .ui-card-wrapper:first-child:not(:only-child)
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row,
div.optimus
    div.group-payment-method-row-with-cvv
    .group-generic-block
    > form#group_pay
    .ui-card-wrapper:first-child:not(:only-child)
    .group-row {
    border-bottom: 0.0625em solid #eee;
    margin-bottom: 0;
}
.group-generic-block form:first-child .options-list.ui-card,
.group-generic-block form:first-child div.optimus div.group-payment-method-row-with-cvv .options-list.group-row,
div.optimus div.group-payment-method-row-with-cvv .group-generic-block form:first-child .options-list.group-row {
    margin-top: 0;
}
.group-generic-block #select_local_pickup_row .options-list .icon-wrapper svg,
.group-generic-block #select_shipping_row .options-list .icon-wrapper svg {
    max-height: 1.5em;
    max-width: 1.5em;
}
div.optimus div.group-generic-block .form .ui-card-wrapper .ui-card,
div.optimus div.group-generic-block .form .ui-card-wrapper div.group-payment-method-row-with-cvv .group-row,
div.optimus div.group-payment-method-row-with-cvv div.group-generic-block .form .ui-card-wrapper .group-row {
    margin-bottom: 0.0625em;
}
div.optimus div.group-generic-block .form .ui-card-wrapper .ui-card .select-installments,
div.optimus
    div.group-generic-block
    .form
    .ui-card-wrapper
    div.group-payment-method-row-with-cvv
    .group-row
    .select-installments,
div.optimus
    div.group-payment-method-row-with-cvv
    div.group-generic-block
    .form
    .ui-card-wrapper
    .group-row
    .select-installments {
    margin-left: 0.0625em;
}
div.optimus div.group-generic-block #group_pay #installments_group_generic {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    min-height: 4.375em;
}
div.optimus div.group-generic-block #group_pay #installments_group_generic .icon-wrapper {
    margin-right: 1.25em;
    vertical-align: middle;
    width: 2.5em;
}
div.optimus div.group-generic-block #group_pay #installments_group_generic .andes-dropdown {
    margin-bottom: 0.5em;
}
div.optimus div.group-generic-block #group_pay #installments_group_generic .select-additional-info {
    margin-top: -0.375em;
}
div.optimus div.group-generic-block #group_pay #installments_group_generic .text {
    margin-left: 4.625em;
}
div.optimus div.group-generic-block #group_pay .ui-card .andes-message--quiet,
div.optimus div.group-generic-block #group_pay div.group-payment-method-row-with-cvv .group-row .andes-message--quiet,
div.optimus div.group-payment-method-row-with-cvv div.group-generic-block #group_pay .group-row .andes-message--quiet {
    margin-top: 2.375em;
}
div.optimus div.group-generic-block div.group-row,
div.optimus div.group-generic-block form.form div.ui-card-wrapper div.group-payment-method-row-with-cvv div.group-row,
div.optimus div.group-generic-block form.form div.ui-card-wrapper div.ui-card,
div.optimus div.group-payment-method-row-with-cvv div.group-generic-block form.form div.ui-card-wrapper div.group-row {
    padding: 1.125em 2em;
}
.paypal-payment-conditions {
    background-color: rgba(0, 0, 0, 0.04);
    -webkit-border-radius: 0.25em;
    border-radius: 0.25em;
    margin-bottom: 0.875em;
    margin-top: 1.5em;
    padding: 1em 3em;
    position: relative;
}
.paypal-payment-conditions p {
    color: rgba(0, 0, 0, 0.9);
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    font-size: 0.875em;
    font-weight: 600;
}
.paypal-payment-conditions .info-logo {
    background-color: rgba(71, 154, 209, 0.4);
    background-image: url(https://http2.mlstatic.com/frontend-assets/px-checkout-frontend/fd788f0485f641dd4fdd.png);
    background-position: 50%;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    height: 1em;
    left: 1em;
    position: absolute;
    top: 1em;
    width: 1em;
}
.paypal-header__content {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    padding: 0.75em 1em;
}
.paypal-header__content .icon-wrapper {
    width: 7.5em;
}
.paypal-header__content .payer-name {
    color: rgba(71, 154, 209, 0.4);
    margin-left: 0.25em;
}
.paypal-header__content .paypal-header__info {
    display: -webkit-flex;
    display: flex;
    font-size: 14px;
    line-height: 2em;
}
.paypal-header__content .paypal-header__info-text {
    display: -webkit-flex;
    display: flex;
    margin-top: 0.125em;
}
.paypal-header__content .paypal-header__info .user-avatar {
    margin-left: 0.7142857143em;
}
.paypal-header__content .paypal-header__info .ui-avatar__content {
    height: 2em;
    width: 2em;
}
.paypal-header__content .paypal-header__info .icon-wrapper {
    height: 2em;
    margin-left: 0.5714285714em;
    width: 2em;
}
.paypal-header .divider {
    -webkit-margin-before: 0;
    border-color: rgba(0, 0, 0, 0.1);
    border-width: 0.03125em;
    margin-block-start: 0;
    margin: 0 1em;
    opacity: 0.6;
}
.icon-with-tooltip {
    display: -webkit-flex;
    display: flex;
}
.icon-with-tooltip__content {
    width: 17.25em;
}
.icon-with-tooltip__content.andes-tooltip-placement-bottomLeft .andes-tooltip-arrow:before {
    left: 1.875em;
}
.icon-with-tooltip__content.andes-tooltip-placement-bottom .andes-tooltip-arrow:before {
    left: 8.125em;
}
.icon-with-tooltip .andes-tooltip__trigger {
    display: -webkit-flex;
    display: flex;
    margin: 0 0.625em;
}
.icon-with-tooltip .andes-tooltip__trigger .icon-wrapper {
    margin-top: 0.125em;
    width: 1em;
}
.user-header {
    background-color: #fff;
    -webkit-box-shadow: 0 0.125em 0.5em 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0.125em 0.5em 0 rgba(0, 0, 0, 0.1);
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 99;
}
.user-header__content {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    padding: 1em 1.5em;
}
.user-header__content .icon-wrapper.icon-mercadopago-full {
    -webkit-flex-grow: 1;
    flex-grow: 1;
    width: 7.5em;
}
.user-header__content {
    margin: 0 auto;
    max-width: 50.75em;
    padding: 1em 0;
}
.layout.layout--modal .user-header__content {
    margin: 0 auto;
    max-width: 50.75em;
    padding: 1em 2em;
}
.group-menu {
    display: inline-block;
    font-size: 16px;
    position: relative;
}
.group-menu__button {
    cursor: pointer;
    font-size: 0.75em;
    margin-left: 0.5em;
    margin-top: 0.3333333333em;
}
.group-menu__button:focus {
    -webkit-box-shadow: 0 0 0 0.21429em rgba(0, 158, 227, 0.15);
    box-shadow: 0 0 0 0.21429em rgba(0, 158, 227, 0.15);
    outline: none;
}
.group-menu__button span {
    border-bottom: 0.1666666667em solid #737373;
    border-right: 0.1666666667em solid #737373;
    display: inline-block;
    height: 0.5833333333em;
    margin-left: 0.6666666667em;
    position: relative;
    top: -0.25em;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    width: 0.5833333333em;
}
.group-menu__button .icon-wrapper {
    width: unset;
}
.group-menu__popup {
    -webkit-animation: fade-in 70ms ease-in;
    animation: fade-in 70ms ease-in;
    background: #fff;
    -webkit-border-radius: 0.375em;
    border-radius: 0.375em;
    -webkit-box-shadow: 0 0.1875em 0.375em 0 rgba(0, 0, 0, 0.25), 0 0.0625em 0.0625em 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0.1875em 0.375em 0 rgba(0, 0, 0, 0.25), 0 0.0625em 0.0625em 0 rgba(0, 0, 0, 0.1);
    position: absolute;
    right: -0.5em;
    text-align: center;
    top: 2.625em;
    width: 16.25em;
    z-index: 9;
}
.group-menu__popup:before {
    background: #fff;
    border-left: 0.0625em solid rgba(0, 0, 0, 0.1);
    border-top: 0.0625em solid rgba(0, 0, 0, 0.1);
    content: "";
    display: block;
    height: 0.75em;
    position: absolute;
    right: 0.75em;
    top: -0.375em;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    width: 0.75em;
}
.group-menu__popup-option {
    padding: 1em;
}
.group-menu__popup-option:not(:first-child) {
    border-top: 0.03125em solid rgba(0, 0, 0, 0.25);
}
.user-info {
    font-size: 14px;
    line-height: 2em;
}
.user-info,
.user-info__text {
    display: -webkit-flex;
    display: flex;
}
.user-info__text {
    color: rgba(0, 0, 0, 0.55);
}
.user-info .user-avatar {
    margin-left: 0.7142857143em;
}
.user-info .ui-avatar__content {
    height: 1.75em;
    width: 1.75em;
}
.user-info .icon-wrapper {
    height: 2em;
    margin-left: 0.5714285714em;
    width: 2em;
}
.info-row {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
}
.info-row .info-row__title {
    color: rgba(0, 0, 0, 0.55);
}
.info-row .info-row__detail {
    color: rgba(0, 0, 0, 0.55);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 14.25em;
}
.more-cards {
    cursor: pointer;
}
.more-cards.ui-card,
div.optimus div.group-payment-method-row-with-cvv .more-cards.group-row {
    border-top: 0.0625em solid #eee;
    -webkit-border-top-left-radius: 0;
    border-top-left-radius: 0;
    -webkit-border-top-right-radius: 0;
    border-top-right-radius: 0;
    margin-top: 0;
    padding: 0.9375em 1.75em 1em 2em;
}
.more-cards.visible {
    display: -webkit-flex;
    display: flex;
}
.more-cards.hidden {
    display: none;
}
.more-cards:hover {
    background-color: #f5f5f5;
}
.more-cards__label {
    color: rgba(71, 154, 209, 0.4);
    -webkit-flex-grow: 1;
    flex-grow: 1;
    font-size: 14px;
    font-stretch: normal;
    font-style: normal;
    font-weight: 600;
    letter-spacing: normal;
    line-height: 1.25;
}
.more-cards .icon-wrapper {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    width: 1.09375em;
}
.oneclick-fallback__cta {
    margin-top: 2em;
}
.qr_code_img {
    margin: 1.5em auto;
    width: 16.25em;
}
.qr_code_img .img {
    height: 16.25em;
    width: 16.25em;
}
.disabled-text {
      /* background-color: #fff; */
    /* border: 0.0625em solid rgba(0, 0, 0, 0.25); */
    border-radius: 0.375em;
    height: auto;
    margin-bottom: 0.25em;
    overflow: hidden;
    padding: 0.75em;
    position: relative;
    
    text-align: center;
    display: inline-block;
    
    vertical-align: top;
    width: 100%;
    line-break: anywhere;
}
.disabled-text .final-gradient {
    /* background-image: -webkit-gradient(linear, left top, right top, from(hsla(0, 0%, 100%, 0)), to(#fff));
    background-image: -webkit-linear-gradient(left, hsla(0, 0%, 100%, 0), #fff);
    background-image: linear-gradient(90deg, hsla(0, 0%, 100%, 0) 0, #fff);
    height: 2.875em;
    position: absolute;
    right: 0;
    top: 0;
    width: 3em; */
}
.intruction.andes-modal-dialog {
    max-height: 21.75em;
    max-width: 26.375em;
}
.intruction.andes-modal-dialog .andes-modal-dialog__container .andes-modal-dialog__header {
    padding-bottom: 1em;
}
.intruction-action {
    margin-top: 2em;
}
.modal-header__content {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    padding: 0.75em 1em;
}
.modal-header__content .icon-wrapper {
    width: 7.5em;
}
.modal-header__content .payer-name {
    color: rgba(71, 154, 209, 0.4);
    margin-left: 0.25em;
}
.modal-header__content .modal-header__info {
    display: -webkit-flex;
    display: flex;
    font-size: 14px;
    line-height: 2em;
}
.modal-header__content .modal-header__info-text {
    display: -webkit-flex;
    display: flex;
    margin-top: 0.125em;
}
.modal-header__content .modal-header__info .user-avatar {
    margin-left: 0.7142857143em;
}
.modal-header__content .modal-header__info .ui-avatar__content {
    height: 2em;
    width: 2em;
}
.modal-header__content .modal-header__info .icon-wrapper {
    height: 2em;
    margin-left: 0.5714285714em;
    width: 2em;
}
.modal-header .divider {
    -webkit-margin-before: 0;
    border-color: rgba(0, 0, 0, 0.1);
    border-width: 0.03125em;
    margin-block-start: 0;
    margin: 0 1em;
    opacity: 0.6;
}
.modal-header .cross {
    background: none;
    border: none;
    height: 1em;
    position: absolute;
    right: 0.5em;
    top: -2em;
    width: 1em;
}
.modal-header .cross svg path {
    fill: rgba(0, 0, 0, 0.75);
}
.modal-header__mask {
    background-color: #000;
    height: 100vh;
    left: 0;
    opacity: 0.7;
    position: fixed;
    top: -0.0125em;
    width: 100vw;
    z-index: -1;
}
.modal-header .cross {
    cursor: pointer;
}
.andes-dropdown.andes-form-control--disabled .andes-form-control__border,
.input-autofillable.andes-form-control--disabled .andes-form-control__border {
    background-color: rgba(0, 0, 0, 0.25);
    background-image: none;
    -webkit-background-size: 100% 100%;
    background-size: 100%;
}
.with-track-event-wrapper {
    display: inherit;
}
.intruction-steps__item {
    display: -webkit-flex;
    display: flex;
    margin: 0.5em 0;
}
.intruction-steps__item-counter {
    border: 0.0625em solid rgba(71, 154, 209, 0.4);
    -webkit-border-radius: 50%;
    border-radius: 50%;
    color: rgba(71, 154, 209, 0.4);
    height: 1.375em;
    margin-right: 1em;
    min-height: 1.375em;
    min-width: 1.375em;
    text-align: center;
    width: 1.375em;
}
.intruction-steps__item-label {
    color: rgba(0, 0, 0, 0.9);
    font-stretch: normal;
    font-style: normal;
    font-weight: 400;
    letter-spacing: normal;
    line-height: normal;
    text-align: left;
}
.spinner-wrapper {
    height: 2em;
    width: 100%;
}
.spinner-wrapper .andes-spinner {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
}
.spinner-wrapper .andes-spinner__container {
    -webkit-align-items: center;
    align-items: center;
    display: -webkit-flex;
    display: flex;
    height: 100%;
    top: 0;
}
.spinner-wrapper .andes-spinner__label {
    margin-left: 3em;
    margin-top: 0;
}
.qr-controller {
    margin-bottom: 1em;
}
.qr-controller .spinner-wrapper {
    height: 1em;
}
.qr-controller .spinner-wrapper .andes-spinner__icon {
    height: 1em;
    left: 0.5em;
    width: 1em;
}
.qr-controller .spinner-wrapper .andes-spinner__label {
    margin-left: 2.5em;
}
.qr-controller .row {
    -webkit-align-items: center;
    align-items: center;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
}
.qr-controller .row:not(:empty) {
    margin: 0 0 0.5em;
}
.qr-controller .row form:first-child:not(:last-child) {
    margin-right: 0.25em;
}
.qr-controller .row form:last-child:not(:first-child) {
    margin-left: 0.25em;
}
.qr-code-wrapper {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    margin-bottom: 0.5em;
}
.qr-code-wrapper.expired .qr-code {
    opacity: 0.3;
}
.qr-code-wrapper .qr-code {
    padding: 1.125em 1.75em 0.75em;
}
.qr-code-wrapper .qr-container {
    border: 1px solid rgba(0, 0, 0, 0.07);
    -webkit-border-radius: 0.25em;
    border-radius: 0.25em;
    margin-bottom: 0.5em;
}
.qr-code-wrapper .qr-container .brand-wrapper {
    border-bottom: 0.0625em dashed rgba(0, 0, 0, 0.07);
    font-size: 0.75em;
    padding: 0.5em 2em;
}
.qr-code-wrapper .qr-container .brand-wrapper .brand {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    padding: 0;
    position: relative;
}
.qr-code-wrapper .qr-container .brand-wrapper .brand .brand__img {
    height: 2em;
    width: 2em;
}
.qr-code-wrapper .qr-container .brand-wrapper .brand .brand__name.brand__name__small {
    font-size: 1.25em;
}
.qr-code-wrapper .qr-container .price-wrapper {
    padding-bottom: 0.5em;
    text-align: center;
}
.qr-code-wrapper .qr-container .price-wrapper h1 {
    font-size: 1.5em;
    font-weight: 600;
}
.layout__col-content .custom-medium {
    font-size: 0.875em;
    font-weight: 600;
    height: 2.3125em;
    line-height: 2.3125em;
    min-width: unset;
}
body.step_open_finance_awaiting {
    background-color: #fff;
}
body.step_open_finance_awaiting .page-mask {
    padding-top: 1.25em;
}
body.step_open_finance_awaiting .layout-main {
    padding: 0;
}
.open-finance-awaiting-container {
    width: 100%;
}
.open-finance-awaiting-container__text {
    -webkit-align-items: center;
    align-items: center;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
}
.open-finance-awaiting-container__text h1 {
    font-weight: 700;
    line-height: 1.25em;
    margin-bottom: 0.625em;
    text-align: center;
}
.open-finance-awaiting-container__text p {
    color: rgba(0, 0, 0, 0.55);
    font-size: 1.125em;
    font-weight: 600;
}
.open-finance-awaiting-container__lottie .lottie-wrapper {
    height: 18.75em;
}
.open-finance-awaiting-container__lottie div[aria-label="animation"] {
    -webkit-align-items: center;
    align-items: center;
    display: -webkit-flex;
    display: flex;
}
.open-finance-awaiting-container__text {
    margin: 1.25em auto 0;
}
.open-finance-awaiting-container__text h1 {
    font-size: 2.125em;
    max-width: 15.625em;
}
.error-hint {
    -webkit-align-items: center;
    align-items: center;
    display: -webkit-flex;
    display: flex;
    font-size: 0.8125em;
}
.error-hint .error-text {
    color: #f23d4f;
    margin-left: 0.5em;
}
.step_open_finance_bank_selection .andes-list__item {
    padding: 0 1.25em;
    position: relative;
}
.step_open_finance_bank_selection .andes-list__item:before {
    background: inherit;
    border-bottom: 0.0625em solid rgba(71, 154, 209, 0.4);
    border-right: 0.0625em solid rgba(71, 154, 209, 0.4);
    bottom: 0;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    content: "";
    height: 0.3125em;
    margin-bottom: auto;
    margin-top: auto;
    position: absolute;
    right: 0.9375em;
    top: 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    width: 0.3125em;
}
.step_open_finance_bank_selection .andes-list__item:focus {
    outline: 0;
}
.step_open_finance_bank_selection .andes-list__primary-text {
    color: rgba(0, 0, 0, 0.9);
}
.step_open_finance_bank_selection .group-bank-selection {
    padding: 0;
}
.step_open_finance_bank_selection .andes-form-control--search-box {
    height: 1.875em;
}
.step_open_finance_bank_selection .andes-list__item-primary span {
    font-size: 1.1875em;
}
.bank-search-wrapper {
    padding: 1.25em;
}
.open-finance-terms p {
    color: rgba(0, 0, 0, 0.9);
    font-size: 0.6875em;
    text-align: center;
}
.open-finance-terms a,
.open-finance-terms span {
    margin-right: 0.3636363636em;
}
.open-finance-terms {
    display: none;
}
.group-summary__container .open-finance-terms {
    display: -webkit-flex;
    display: flex;
    margin-top: 0.9375em;
}
.group-summary__container .open-finance-terms ~ div > button {
    margin-top: 0.9375em;
    position: relative;
}
.options-list__item #extra-info .andes-message .andes-badge {
    position: static;
}
.andes-message--quiet {
    background: #f5f5f5;
}
.andes-message--quiet .andes-message__title {
    line-height: 1;
}
div.optimus div.aspirational {
    margin-bottom: 1.625em;
}
.group-row + .group-generic .aspirational.andes-message--neutral {
    margin-top: 2em;
}
.tg-pcj-message {
    font-weight: 400;
    height: 2.5em;
}
.close-tg-pcj-message {
    background-color: #f5f5f5;
    border: 0;
}
.icons-list {
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 1em;
    margin: 1.5em 0;
}
.icons-list,
.icons-list .item {
    display: -webkit-flex;
    display: flex;
}
.step_account_money_second_factor .row-details {
    max-width: 9.375em;
}
.step_account_money_second_factor .group-media-object {
    margin-bottom: 1.5em;
}
.step_account_money_second_factor .group-button {
    margin-top: -0.25em;
}
.step_account_money_second_factor .group-button a {
    font-size: 0.875em;
    margin-right: 0.8571428571em;
}
.step_account_money_second_factor .group-button a:after {
    background: #bfbfbf;
    content: "";
    display: inline-block;
    height: 0.625em;
    margin-left: 0.75em;
    width: 0.0625em;
}
.step_account_money_second_factor .group-button a:last-child:after {
    display: none;
}
.step_account_money_second_factor .ui-card,
.step_account_money_second_factor div.optimus div.group-payment-method-row-with-cvv .group-row,
div.optimus div.group-payment-method-row-with-cvv .step_account_money_second_factor .group-row {
    padding: 1.75em 7.125em;
}
.step_account_money_second_factor .layout--modal .ui-card,
.step_account_money_second_factor .layout--modal div.optimus div.group-payment-method-row-with-cvv .group-row,
div.optimus div.group-payment-method-row-with-cvv .step_account_money_second_factor .layout--modal .group-row {
    height: 24.0625em;
}
.step_account_money_second_factor .group-media-object {
    height: auto;
}
.step_card_form .layout--modal .user-header.navbar ~ .layout__col-content {
    margin-top: 2.5em;
}
.step_card_form .layout--modal .user-header.navbar ~ .layout__col-content .scroller {
    height: 26.875em;
}
.step_card_form .c-title {
    margin-bottom: 1em;
}
.step_card_form .payment-card-wrapper {
    padding: 0.3125em 0 1.5em;
}
.step_card_form .payment-card {
    font-size: 0.625em;
    margin: 0 auto;
}
.step_card_form .ui-card,
.step_card_form div.optimus div.group-payment-method-row-with-cvv .group-row,
div.optimus div.group-payment-method-row-with-cvv .step_card_form .group-row {
    margin-bottom: 1.25em;
    margin-top: 0;
    padding: 1.375em 1.5em;
}
.step_card_form .ui-card .card-form-group:not(:last-child),
.step_card_form div.optimus div.group-payment-method-row-with-cvv .group-row .card-form-group:not(:last-child),
div.optimus div.group-payment-method-row-with-cvv .step_card_form .group-row .card-form-group:not(:last-child) {
    margin-bottom: 1em;
}
.step_card_form .card-form-group {
    display: -webkit-flex;
    display: flex;
}
.step_card_form .card-form-group > :first-child {
    -webkit-flex-grow: 1;
    flex-grow: 1;
    margin-right: 1em;
}
.step_card_form .card-form-group > :last-child {
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    margin-right: 0;
    width: 10.4375em;
}
.step_card_form .c-title ~ p.text {
    margin-bottom: 0.5em;
    margin-top: -1.75em;
}
.step_card_form_full .andes-dropdown__arrow:after {
    border-bottom: 0.125em solid rgba(71, 154, 209, 0.4);
    border-right: 0.125em solid rgba(71, 154, 209, 0.4);
}
.step_card_form_full .card-form-group .group-generic:empty {
    display: none;
}
.step_card_form_full .split-amount__input.andes-form-control--error .andes-form-control__message {
    min-height: 0.875em;
}
.step_card_form_full .andes-form-control--disabled .andes-form-control__border {
    background-color: rgba(0, 0, 0, 0.25);
    background-image: none;
    -webkit-background-size: auto auto;
    background-size: auto;
}
.step_card_form_full .bank-deals-link {
    margin: 0;
    position: absolute;
    right: 2.75em;
    top: 3.25em;
}
.step_card_form_full .form.group_form > .ui-card,
.step_card_form_full div.optimus div.group-payment-method-row-with-cvv .form.group_form > .group-row,
div.optimus div.group-payment-method-row-with-cvv .step_card_form_full .form.group_form > .group-row {
    padding: 1.5em;
}
.step_card_form_full .card-form-group {
    display: -webkit-flex;
    display: flex;
}
.step_card_form_full .card-form-group .group-generic {
    display: -webkit-flex;
    display: flex;
    -webkit-flex: 1;
    flex: 1;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 0;
}
.step_card_form_full .card-form-group .group-generic > :nth-child(n) {
    -webkit-flex: 1;
    flex: 1;
}
.step_card_form_full .card-form-group .group-generic .icon-wrapper {
    -webkit-flex: none;
    flex: none;
    padding-bottom: 1em;
}
.step_card_form_full .card-form-group .andes-dropdown,
.step_card_form_full .card-form-group .icon-wrapper,
.step_card_form_full .card-form-group label {
    margin-right: 0.75em;
}
.step_card_form_full .card-form-group > :nth-child(2) {
    margin-left: 0.6875em;
}
.step_card_form_full .card-form-group > :last-child {
    margin-right: -0.6875em;
}
.step_card_form_full .card-form-group .input-cvv {
    margin-right: 0;
    width: 9.6875em;
}
.step_card_form_full .card-form-group .input-cvv .andes-form-control__label {
    font-size: 1.0125em;
    letter-spacing: 0.01375em;
    top: 0.5em;
    width: 110%;
}
.step_card_form_full .card-form-group .input-cvv ::-webkit-input-placeholder {
    font-size: 0.9375em;
}
.step_card_form_full .card-form-group .input-cvv ::-moz-placeholder {
    font-size: 0.9375em;
}
.step_card_form_full .card-form-group .input-cvv ::placeholder {
    font-size: 0.9375em;
}
.step_card_form_full .card-form-group .icon-card-cvv {
    margin-left: 0;
    padding-bottom: 1.25em;
}
.step_card_form_full .card-form-group #installments_select_id {
    -webkit-flex: 1 1 100%;
    flex: 1 1 100%;
    max-width: 100%;
    overflow: hidden;
}
.step_card_form_full .card-form-group #installments_select_id.andes-dropdown--open {
    overflow: visible;
}
.step_card_form_full .card-form-group #installments_select_id .andes-dropdown__trigger {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.step_card_form_full .card-form-group .select-additional-info {
    color: rgba(0, 0, 0, 0.55);
    font-size: 1.5em;
    font-weight: 300;
    margin-top: -1.3125em;
}
.step_card_form_full .group-identification .group-identification__children .andes-dropdown {
    min-width: 25%;
}
.step_card_form_full .card-form-group:nth-child(3) .group-generic:nth-child(2) {
    -webkit-flex: 0.5;
    flex: 0.5;
}
.step_card_form_full .card-form-group:nth-child(4) .group-generic:first-child .andes-dropdown {
    margin-right: 0;
}
.step_card_form_full .layout--modal .card-form-group .group-generic .input-cvv .andes-form-control__label {
    font-size: 0.95em;
    letter-spacing: 0.01375em;
    top: 0.625em;
}
.step_card_form_full .layout--modal .card-form-group .group-generic .input-cvv ::-webkit-input-placeholder {
    font-size: 0.875em;
}
.step_card_form_full .layout--modal .card-form-group .group-generic .input-cvv ::-moz-placeholder {
    font-size: 0.875em;
}
.step_card_form_full .layout--modal .card-form-group .group-generic .input-cvv ::placeholder {
    font-size: 0.875em;
}
.step_card_form_full .card-number-with-issuer__group.multiple-issuers #card_number {
    font-size: 1.0625em;
}
.step_card_form_full .single-bin > :first-child .icon-wrapper {
    margin-right: 0;
}
.step_card_form_full .single-bin > :nth-child(2) {
    -webkit-flex: 0;
    flex: 0;
    visibility: hidden;
}
.step_card_form_full .icon-card-cvv {
    margin-right: -0.375em;
    width: 3.1875em;
}
.step_card_form_full .icon-card-cvv svg {
    -webkit-flex: none;
    flex: none;
    margin-left: 1.25em;
    width: 3.1875em;
}
.step_card_form_full .andes-button--link {
    margin-left: 2.625em;
}
.step_card_form_full .ui-card,
.step_card_form_full div.optimus div.group-payment-method-row-with-cvv .group-row,
div.optimus div.group-payment-method-row-with-cvv .step_card_form_full .group-row {
    overflow: visible;
}
.step_card_form_full #installments_generic_group {
    margin-right: 0;
}
.step_card_form_full #installments_generic_group #installments_select_id .andes-list__item,
.step_card_form_full .scroller > .group-generic {
    display: -webkit-flex;
    display: flex;
}
.step_card_form_full .scroller > .group-generic form {
    margin-left: auto;
    margin-right: 3.125em;
}
.step_card_form_full .layout--modal .layout__col-content .scroller {
    margin-bottom: 2em;
    top: 5em;
}
.step_card_form_full #installments_select_id > .andes-dropdown__popover {
    bottom: -20%;
    max-height: 15.625em;
    overflow-x: hidden;
    overflow-y: scroll;
    top: auto !important;
}
.step_card_form_full div[name*="identification_group_id"] > .andes-dropdown__popover {
    bottom: -20%;
    max-height: 15.625em;
    overflow-y: scroll;
    top: auto !important;
}
body.step_auth_callback {
    background: #fff;
    color: rgba(0, 0, 0, 0.55);
    font-family: Proxima Nova, -apple-system, Helvetica Neue, Helvetica, Roboto, Arial, sans-serif;
    font-weight: 400;
    text-align: center;
}
body.step_auth_callback .andes-spinner__label {
    text-align: center;
}
body.step_auth_callback .layout .layout-main {
    padding: 0;
}
.step_auth_callback .error-msg {
    height: 18em;
    left: 50%;
    margin-left: -15em;
    margin-top: -9em;
    position: fixed;
    text-align: center;
    top: 50%;
    width: 30em;
}
.step_auth_callback .error-msg h2 {
    font-weight: bolder;
    margin: 0.875em 0;
}
.step_auth_callback .navbar {
    background: #fff;
    height: 3.75em;
    position: relative;
    z-index: 9999;
}
.step_auth_callback .navbar:after {
    bottom: 0;
    -webkit-box-shadow: 0 0.125em 0.25em 0 rgba(155, 169, 187, 0.3);
    box-shadow: 0 0.125em 0.25em 0 rgba(155, 169, 187, 0.3);
    content: "";
    display: block;
    height: 0.125em;
    position: absolute;
    width: 100%;
    z-index: 10;
}
.step_auth_callback .navbar__logo {
    background-image: url(https://http2.mlstatic.com/ui/navigation/3.4.2/mercadopago/logo__small.png);
    background-repeat: no-repeat;
    display: inline-block;
    height: 2.1875em;
    left: 1.25em;
    overflow: hidden;
    position: absolute;
    text-indent: -62.4375em;
    top: 0.75em;
    width: 3.125em;
    z-index: 3;
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
    .step_auth_callback .navbar__logo {
        background-image: url(https://http2.mlstatic.com/ui/navigation/3.4.2/mercadopago/logo__small@2x.png);
        -webkit-background-size: 3.125em 2.1875em;
        background-size: 3.125em 2.1875em;
    }
}
.step_congrats_approved div.optimus div.group-payment-method-row-with-cvv .group-row,
.step_congrats_instructions div.optimus div.group-payment-method-row-with-cvv .group-row {
    padding: 1.5em 1em;
}
.step_congrats_approved .group-split-congrats .ui-card,
.step_congrats_approved .group-split-congrats div.optimus div.group-payment-method-row-with-cvv .group-row,
.step_congrats_instructions .group-split-congrats .ui-card,
.step_congrats_instructions .group-split-congrats div.optimus div.group-payment-method-row-with-cvv .group-row,
div.optimus div.group-payment-method-row-with-cvv .step_congrats_approved .group-split-congrats .group-row,
div.optimus div.group-payment-method-row-with-cvv .step_congrats_instructions .group-split-congrats .group-row {
    padding-bottom: 1.5em;
}
.step_congrats_approved .group-split-congrats .ui-card > .row-details,
.step_congrats_approved
    .group-split-congrats
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    > .row-details,
.step_congrats_instructions .group-split-congrats .ui-card > .row-details,
.step_congrats_instructions
    .group-split-congrats
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    > .row-details,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_approved
    .group-split-congrats
    .group-row
    > .row-details,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_instructions
    .group-split-congrats
    .group-row
    > .row-details {
    margin-bottom: 1.5em;
    margin-left: 3.75em;
}
.step_congrats_approved .group-split-congrats .group-generic:last-child,
.step_congrats_instructions .group-split-congrats .group-generic:last-child {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    width: auto;
}
.step_congrats_approved .group-split-congrats .group-generic:last-child .title-h2,
.step_congrats_instructions .group-split-congrats .group-generic:last-child .title-h2 {
    font-weight: 400;
    margin-bottom: 0;
}
.step_congrats_approved .group-split-congrats .group-generic:last-child .title-h2:first-child,
.step_congrats_instructions .group-split-congrats .group-generic:last-child .title-h2:first-child {
    color: #737373;
    margin-right: 1.5em;
    width: 2.25em;
}
.step_congrats_approved .ui-card .row-details .text_congrats_additional_info,
.step_congrats_approved
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .row-details
    .text_congrats_additional_info,
.step_congrats_instructions .ui-card .row-details .text_congrats_additional_info,
.step_congrats_instructions
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .row-details
    .text_congrats_additional_info,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_approved
    .group-row
    .row-details
    .text_congrats_additional_info,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_instructions
    .group-row
    .row-details
    .text_congrats_additional_info {
    color: rgba(0, 0, 0, 0.55);
    font-size: 14px;
    font-stretch: normal;
    font-style: normal;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.29;
    margin-bottom: 1.1428571429em;
}
.step_congrats_approved .ui-card .group-generic-block,
.step_congrats_approved div.optimus div.group-payment-method-row-with-cvv .group-row .group-generic-block,
.step_congrats_instructions .ui-card .group-generic-block,
.step_congrats_instructions div.optimus div.group-payment-method-row-with-cvv .group-row .group-generic-block,
div.optimus div.group-payment-method-row-with-cvv .step_congrats_approved .group-row .group-generic-block,
div.optimus div.group-payment-method-row-with-cvv .step_congrats_instructions .group-row .group-generic-block {
    margin-bottom: 0;
    margin-top: 1em;
}
.step_congrats_approved .ui-card .group_congrats_shipping_domicile .group-media-object:nth-child(2),
.step_congrats_approved
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group_congrats_shipping_domicile
    .group-media-object:nth-child(2),
.step_congrats_instructions .ui-card .group_congrats_shipping_domicile .group-media-object:nth-child(2),
.step_congrats_instructions
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group_congrats_shipping_domicile
    .group-media-object:nth-child(2),
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_approved
    .group-row
    .group_congrats_shipping_domicile
    .group-media-object:nth-child(2),
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_instructions
    .group-row
    .group_congrats_shipping_domicile
    .group-media-object:nth-child(2) {
    margin-top: 2em;
}
.step_congrats_approved .ui-card .group_congrats_shipping_domicile #front_media_object .icon-wrapper > svg,
.step_congrats_approved .ui-card .group_congrats_shipping_domicile #pick_up_media_object .icon-wrapper > svg,
.step_congrats_approved
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group_congrats_shipping_domicile
    #front_media_object
    .icon-wrapper
    > svg,
.step_congrats_approved
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group_congrats_shipping_domicile
    #pick_up_media_object
    .icon-wrapper
    > svg,
.step_congrats_instructions .ui-card .group_congrats_shipping_domicile #front_media_object .icon-wrapper > svg,
.step_congrats_instructions .ui-card .group_congrats_shipping_domicile #pick_up_media_object .icon-wrapper > svg,
.step_congrats_instructions
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group_congrats_shipping_domicile
    #front_media_object
    .icon-wrapper
    > svg,
.step_congrats_instructions
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group_congrats_shipping_domicile
    #pick_up_media_object
    .icon-wrapper
    > svg,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_approved
    .group-row
    .group_congrats_shipping_domicile
    #front_media_object
    .icon-wrapper
    > svg,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_approved
    .group-row
    .group_congrats_shipping_domicile
    #pick_up_media_object
    .icon-wrapper
    > svg,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_instructions
    .group-row
    .group_congrats_shipping_domicile
    #front_media_object
    .icon-wrapper
    > svg,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_instructions
    .group-row
    .group_congrats_shipping_domicile
    #pick_up_media_object
    .icon-wrapper
    > svg {
    height: 1.5em;
}
.step_congrats_approved .ui-card .group-congrats-shipping:nth-child(3),
.step_congrats_approved .ui-card .group_congrats_shipping_domicile:nth-child(3),
.step_congrats_approved
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group-congrats-shipping:nth-child(3),
.step_congrats_approved
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group_congrats_shipping_domicile:nth-child(3),
.step_congrats_instructions .ui-card .group-congrats-shipping:nth-child(3),
.step_congrats_instructions .ui-card .group_congrats_shipping_domicile:nth-child(3),
.step_congrats_instructions
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group-congrats-shipping:nth-child(3),
.step_congrats_instructions
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group_congrats_shipping_domicile:nth-child(3),
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_approved
    .group-row
    .group-congrats-shipping:nth-child(3),
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_approved
    .group-row
    .group_congrats_shipping_domicile:nth-child(3),
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_instructions
    .group-row
    .group-congrats-shipping:nth-child(3),
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_instructions
    .group-row
    .group_congrats_shipping_domicile:nth-child(3) {
    margin-top: 1.875em;
}
.step_congrats_approved .ui-card .group-congrats-shipping:nth-child(3) h1,
.step_congrats_approved .ui-card .group_congrats_shipping_domicile:nth-child(3) h1,
.step_congrats_approved
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group-congrats-shipping:nth-child(3)
    h1,
.step_congrats_approved
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group_congrats_shipping_domicile:nth-child(3)
    h1,
.step_congrats_instructions .ui-card .group-congrats-shipping:nth-child(3) h1,
.step_congrats_instructions .ui-card .group_congrats_shipping_domicile:nth-child(3) h1,
.step_congrats_instructions
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group-congrats-shipping:nth-child(3)
    h1,
.step_congrats_instructions
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group_congrats_shipping_domicile:nth-child(3)
    h1,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_approved
    .group-row
    .group-congrats-shipping:nth-child(3)
    h1,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_approved
    .group-row
    .group_congrats_shipping_domicile:nth-child(3)
    h1,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_instructions
    .group-row
    .group-congrats-shipping:nth-child(3)
    h1,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_instructions
    .group-row
    .group_congrats_shipping_domicile:nth-child(3)
    h1 {
    margin-bottom: 0.25em;
    margin-top: 0;
}
.step_congrats_approved .ui-card .group-congrats-shipping:nth-child(3) hr,
.step_congrats_approved .ui-card .group_congrats_shipping_domicile:nth-child(3) hr,
.step_congrats_approved
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group-congrats-shipping:nth-child(3)
    hr,
.step_congrats_approved
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group_congrats_shipping_domicile:nth-child(3)
    hr,
.step_congrats_instructions .ui-card .group-congrats-shipping:nth-child(3) hr,
.step_congrats_instructions .ui-card .group_congrats_shipping_domicile:nth-child(3) hr,
.step_congrats_instructions
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group-congrats-shipping:nth-child(3)
    hr,
.step_congrats_instructions
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group_congrats_shipping_domicile:nth-child(3)
    hr,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_approved
    .group-row
    .group-congrats-shipping:nth-child(3)
    hr,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_approved
    .group-row
    .group_congrats_shipping_domicile:nth-child(3)
    hr,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_instructions
    .group-row
    .group-congrats-shipping:nth-child(3)
    hr,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_instructions
    .group-row
    .group_congrats_shipping_domicile:nth-child(3)
    hr {
    border-bottom: 0;
    margin: 0 -2em;
}
.step_congrats_approved .ui-card .group-congrats-shipping:nth-child(3) .group-media-object:first-child .andes-badge,
.step_congrats_approved
    .ui-card
    .group_congrats_shipping_domicile:nth-child(3)
    .group-media-object:first-child
    .andes-badge,
.step_congrats_approved
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group-congrats-shipping:nth-child(3)
    .group-media-object:first-child
    .andes-badge,
.step_congrats_approved
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group_congrats_shipping_domicile:nth-child(3)
    .group-media-object:first-child
    .andes-badge,
.step_congrats_instructions .ui-card .group-congrats-shipping:nth-child(3) .group-media-object:first-child .andes-badge,
.step_congrats_instructions
    .ui-card
    .group_congrats_shipping_domicile:nth-child(3)
    .group-media-object:first-child
    .andes-badge,
.step_congrats_instructions
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group-congrats-shipping:nth-child(3)
    .group-media-object:first-child
    .andes-badge,
.step_congrats_instructions
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group_congrats_shipping_domicile:nth-child(3)
    .group-media-object:first-child
    .andes-badge,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_approved
    .group-row
    .group-congrats-shipping:nth-child(3)
    .group-media-object:first-child
    .andes-badge,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_approved
    .group-row
    .group_congrats_shipping_domicile:nth-child(3)
    .group-media-object:first-child
    .andes-badge,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_instructions
    .group-row
    .group-congrats-shipping:nth-child(3)
    .group-media-object:first-child
    .andes-badge,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_instructions
    .group-row
    .group_congrats_shipping_domicile:nth-child(3)
    .group-media-object:first-child
    .andes-badge {
    margin-left: 0.625em;
}
.step_congrats_approved .ui-card .group-congrats-shipping:nth-child(3) .group-media-object:first-child .row-details,
.step_congrats_approved .ui-card .group-congrats-shipping:nth-child(3) .group-media-object:first-child .text,
.step_congrats_approved
    .ui-card
    .group_congrats_shipping_domicile:nth-child(3)
    .group-media-object:first-child
    .row-details,
.step_congrats_approved .ui-card .group_congrats_shipping_domicile:nth-child(3) .group-media-object:first-child .text,
.step_congrats_approved
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group-congrats-shipping:nth-child(3)
    .group-media-object:first-child
    .row-details,
.step_congrats_approved
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group-congrats-shipping:nth-child(3)
    .group-media-object:first-child
    .text,
.step_congrats_approved
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group_congrats_shipping_domicile:nth-child(3)
    .group-media-object:first-child
    .row-details,
.step_congrats_approved
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group_congrats_shipping_domicile:nth-child(3)
    .group-media-object:first-child
    .text,
.step_congrats_instructions .ui-card .group-congrats-shipping:nth-child(3) .group-media-object:first-child .row-details,
.step_congrats_instructions .ui-card .group-congrats-shipping:nth-child(3) .group-media-object:first-child .text,
.step_congrats_instructions
    .ui-card
    .group_congrats_shipping_domicile:nth-child(3)
    .group-media-object:first-child
    .row-details,
.step_congrats_instructions
    .ui-card
    .group_congrats_shipping_domicile:nth-child(3)
    .group-media-object:first-child
    .text,
.step_congrats_instructions
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group-congrats-shipping:nth-child(3)
    .group-media-object:first-child
    .row-details,
.step_congrats_instructions
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group-congrats-shipping:nth-child(3)
    .group-media-object:first-child
    .text,
.step_congrats_instructions
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group_congrats_shipping_domicile:nth-child(3)
    .group-media-object:first-child
    .row-details,
.step_congrats_instructions
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group_congrats_shipping_domicile:nth-child(3)
    .group-media-object:first-child
    .text,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_approved
    .group-row
    .group-congrats-shipping:nth-child(3)
    .group-media-object:first-child
    .row-details,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_approved
    .group-row
    .group-congrats-shipping:nth-child(3)
    .group-media-object:first-child
    .text,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_approved
    .group-row
    .group_congrats_shipping_domicile:nth-child(3)
    .group-media-object:first-child
    .row-details,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_approved
    .group-row
    .group_congrats_shipping_domicile:nth-child(3)
    .group-media-object:first-child
    .text,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_instructions
    .group-row
    .group-congrats-shipping:nth-child(3)
    .group-media-object:first-child
    .row-details,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_instructions
    .group-row
    .group-congrats-shipping:nth-child(3)
    .group-media-object:first-child
    .text,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_instructions
    .group-row
    .group_congrats_shipping_domicile:nth-child(3)
    .group-media-object:first-child
    .row-details,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_instructions
    .group-row
    .group_congrats_shipping_domicile:nth-child(3)
    .group-media-object:first-child
    .text {
    margin-bottom: 0.625em;
}
.step_congrats_approved
    .ui-card
    .group-congrats-shipping:nth-child(3)
    .group-media-object:first-child
    .row-details
    .title_2,
.step_congrats_approved .ui-card .group-congrats-shipping:nth-child(3) .group-media-object:first-child .text .title_2,
.step_congrats_approved
    .ui-card
    .group_congrats_shipping_domicile:nth-child(3)
    .group-media-object:first-child
    .row-details
    .title_2,
.step_congrats_approved
    .ui-card
    .group_congrats_shipping_domicile:nth-child(3)
    .group-media-object:first-child
    .text
    .title_2,
.step_congrats_approved
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group-congrats-shipping:nth-child(3)
    .group-media-object:first-child
    .row-details
    .title_2,
.step_congrats_approved
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group-congrats-shipping:nth-child(3)
    .group-media-object:first-child
    .text
    .title_2,
.step_congrats_approved
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group_congrats_shipping_domicile:nth-child(3)
    .group-media-object:first-child
    .row-details
    .title_2,
.step_congrats_approved
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group_congrats_shipping_domicile:nth-child(3)
    .group-media-object:first-child
    .text
    .title_2,
.step_congrats_instructions
    .ui-card
    .group-congrats-shipping:nth-child(3)
    .group-media-object:first-child
    .row-details
    .title_2,
.step_congrats_instructions
    .ui-card
    .group-congrats-shipping:nth-child(3)
    .group-media-object:first-child
    .text
    .title_2,
.step_congrats_instructions
    .ui-card
    .group_congrats_shipping_domicile:nth-child(3)
    .group-media-object:first-child
    .row-details
    .title_2,
.step_congrats_instructions
    .ui-card
    .group_congrats_shipping_domicile:nth-child(3)
    .group-media-object:first-child
    .text
    .title_2,
.step_congrats_instructions
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group-congrats-shipping:nth-child(3)
    .group-media-object:first-child
    .row-details
    .title_2,
.step_congrats_instructions
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group-congrats-shipping:nth-child(3)
    .group-media-object:first-child
    .text
    .title_2,
.step_congrats_instructions
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group_congrats_shipping_domicile:nth-child(3)
    .group-media-object:first-child
    .row-details
    .title_2,
.step_congrats_instructions
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group_congrats_shipping_domicile:nth-child(3)
    .group-media-object:first-child
    .text
    .title_2,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_approved
    .group-row
    .group-congrats-shipping:nth-child(3)
    .group-media-object:first-child
    .row-details
    .title_2,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_approved
    .group-row
    .group-congrats-shipping:nth-child(3)
    .group-media-object:first-child
    .text
    .title_2,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_approved
    .group-row
    .group_congrats_shipping_domicile:nth-child(3)
    .group-media-object:first-child
    .row-details
    .title_2,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_approved
    .group-row
    .group_congrats_shipping_domicile:nth-child(3)
    .group-media-object:first-child
    .text
    .title_2,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_instructions
    .group-row
    .group-congrats-shipping:nth-child(3)
    .group-media-object:first-child
    .row-details
    .title_2,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_instructions
    .group-row
    .group-congrats-shipping:nth-child(3)
    .group-media-object:first-child
    .text
    .title_2,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_instructions
    .group-row
    .group_congrats_shipping_domicile:nth-child(3)
    .group-media-object:first-child
    .row-details
    .title_2,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_instructions
    .group-row
    .group_congrats_shipping_domicile:nth-child(3)
    .group-media-object:first-child
    .text
    .title_2 {
    font-size: 1em;
    font-weight: 700;
}
.step_congrats_approved .ui-card .group-congrats-shipping:nth-child(3) .group-media-object:nth-child(2),
.step_congrats_approved .ui-card .group_congrats_shipping_domicile:nth-child(3) .group-media-object:nth-child(2),
.step_congrats_approved
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group-congrats-shipping:nth-child(3)
    .group-media-object:nth-child(2),
.step_congrats_approved
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group_congrats_shipping_domicile:nth-child(3)
    .group-media-object:nth-child(2),
.step_congrats_instructions .ui-card .group-congrats-shipping:nth-child(3) .group-media-object:nth-child(2),
.step_congrats_instructions .ui-card .group_congrats_shipping_domicile:nth-child(3) .group-media-object:nth-child(2),
.step_congrats_instructions
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group-congrats-shipping:nth-child(3)
    .group-media-object:nth-child(2),
.step_congrats_instructions
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group_congrats_shipping_domicile:nth-child(3)
    .group-media-object:nth-child(2),
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_approved
    .group-row
    .group-congrats-shipping:nth-child(3)
    .group-media-object:nth-child(2),
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_approved
    .group-row
    .group_congrats_shipping_domicile:nth-child(3)
    .group-media-object:nth-child(2),
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_instructions
    .group-row
    .group-congrats-shipping:nth-child(3)
    .group-media-object:nth-child(2),
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_instructions
    .group-row
    .group_congrats_shipping_domicile:nth-child(3)
    .group-media-object:nth-child(2) {
    margin: 0 -2em 0.625em;
}
.step_congrats_approved .ui-card .group-congrats-shipping:nth-child(3) .group-media-object:nth-child(2) .andes-badge,
.step_congrats_approved
    .ui-card
    .group_congrats_shipping_domicile:nth-child(3)
    .group-media-object:nth-child(2)
    .andes-badge,
.step_congrats_approved
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group-congrats-shipping:nth-child(3)
    .group-media-object:nth-child(2)
    .andes-badge,
.step_congrats_approved
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group_congrats_shipping_domicile:nth-child(3)
    .group-media-object:nth-child(2)
    .andes-badge,
.step_congrats_instructions
    .ui-card
    .group-congrats-shipping:nth-child(3)
    .group-media-object:nth-child(2)
    .andes-badge,
.step_congrats_instructions
    .ui-card
    .group_congrats_shipping_domicile:nth-child(3)
    .group-media-object:nth-child(2)
    .andes-badge,
.step_congrats_instructions
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group-congrats-shipping:nth-child(3)
    .group-media-object:nth-child(2)
    .andes-badge,
.step_congrats_instructions
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group_congrats_shipping_domicile:nth-child(3)
    .group-media-object:nth-child(2)
    .andes-badge,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_approved
    .group-row
    .group-congrats-shipping:nth-child(3)
    .group-media-object:nth-child(2)
    .andes-badge,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_approved
    .group-row
    .group_congrats_shipping_domicile:nth-child(3)
    .group-media-object:nth-child(2)
    .andes-badge,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_instructions
    .group-row
    .group-congrats-shipping:nth-child(3)
    .group-media-object:nth-child(2)
    .andes-badge,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_instructions
    .group-row
    .group_congrats_shipping_domicile:nth-child(3)
    .group-media-object:nth-child(2)
    .andes-badge {
    margin-top: 0;
}
.step_congrats_approved .ui-card .group-congrats-shipping:nth-child(3) .group-media-object:nth-child(3),
.step_congrats_approved .ui-card .group_congrats_shipping_domicile:nth-child(3) .group-media-object:nth-child(3),
.step_congrats_approved
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group-congrats-shipping:nth-child(3)
    .group-media-object:nth-child(3),
.step_congrats_approved
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group_congrats_shipping_domicile:nth-child(3)
    .group-media-object:nth-child(3),
.step_congrats_instructions .ui-card .group-congrats-shipping:nth-child(3) .group-media-object:nth-child(3),
.step_congrats_instructions .ui-card .group_congrats_shipping_domicile:nth-child(3) .group-media-object:nth-child(3),
.step_congrats_instructions
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group-congrats-shipping:nth-child(3)
    .group-media-object:nth-child(3),
.step_congrats_instructions
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group_congrats_shipping_domicile:nth-child(3)
    .group-media-object:nth-child(3),
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_approved
    .group-row
    .group-congrats-shipping:nth-child(3)
    .group-media-object:nth-child(3),
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_approved
    .group-row
    .group_congrats_shipping_domicile:nth-child(3)
    .group-media-object:nth-child(3),
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_instructions
    .group-row
    .group-congrats-shipping:nth-child(3)
    .group-media-object:nth-child(3),
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_instructions
    .group-row
    .group_congrats_shipping_domicile:nth-child(3)
    .group-media-object:nth-child(3) {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    margin-top: 1em;
}
.step_congrats_approved
    .ui-card
    .group-congrats-shipping:nth-child(3)
    .group-media-object:nth-child(3)
    .group-congrats-shipping,
.step_congrats_approved
    .ui-card
    .group-congrats-shipping:nth-child(3)
    .group-media-object:nth-child(3)
    .group_congrats_shipping_domicile,
.step_congrats_approved
    .ui-card
    .group_congrats_shipping_domicile:nth-child(3)
    .group-media-object:nth-child(3)
    .group-congrats-shipping,
.step_congrats_approved
    .ui-card
    .group_congrats_shipping_domicile:nth-child(3)
    .group-media-object:nth-child(3)
    .group_congrats_shipping_domicile,
.step_congrats_approved
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group-congrats-shipping:nth-child(3)
    .group-media-object:nth-child(3)
    .group-congrats-shipping,
.step_congrats_approved
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group-congrats-shipping:nth-child(3)
    .group-media-object:nth-child(3)
    .group_congrats_shipping_domicile,
.step_congrats_approved
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group_congrats_shipping_domicile:nth-child(3)
    .group-media-object:nth-child(3)
    .group-congrats-shipping,
.step_congrats_approved
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group_congrats_shipping_domicile:nth-child(3)
    .group-media-object:nth-child(3)
    .group_congrats_shipping_domicile,
.step_congrats_instructions
    .ui-card
    .group-congrats-shipping:nth-child(3)
    .group-media-object:nth-child(3)
    .group-congrats-shipping,
.step_congrats_instructions
    .ui-card
    .group-congrats-shipping:nth-child(3)
    .group-media-object:nth-child(3)
    .group_congrats_shipping_domicile,
.step_congrats_instructions
    .ui-card
    .group_congrats_shipping_domicile:nth-child(3)
    .group-media-object:nth-child(3)
    .group-congrats-shipping,
.step_congrats_instructions
    .ui-card
    .group_congrats_shipping_domicile:nth-child(3)
    .group-media-object:nth-child(3)
    .group_congrats_shipping_domicile,
.step_congrats_instructions
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group-congrats-shipping:nth-child(3)
    .group-media-object:nth-child(3)
    .group-congrats-shipping,
.step_congrats_instructions
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group-congrats-shipping:nth-child(3)
    .group-media-object:nth-child(3)
    .group_congrats_shipping_domicile,
.step_congrats_instructions
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group_congrats_shipping_domicile:nth-child(3)
    .group-media-object:nth-child(3)
    .group-congrats-shipping,
.step_congrats_instructions
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group_congrats_shipping_domicile:nth-child(3)
    .group-media-object:nth-child(3)
    .group_congrats_shipping_domicile,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_approved
    .group-row
    .group-congrats-shipping:nth-child(3)
    .group-media-object:nth-child(3)
    .group-congrats-shipping,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_approved
    .group-row
    .group-congrats-shipping:nth-child(3)
    .group-media-object:nth-child(3)
    .group_congrats_shipping_domicile,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_approved
    .group-row
    .group_congrats_shipping_domicile:nth-child(3)
    .group-media-object:nth-child(3)
    .group-congrats-shipping,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_approved
    .group-row
    .group_congrats_shipping_domicile:nth-child(3)
    .group-media-object:nth-child(3)
    .group_congrats_shipping_domicile,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_instructions
    .group-row
    .group-congrats-shipping:nth-child(3)
    .group-media-object:nth-child(3)
    .group-congrats-shipping,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_instructions
    .group-row
    .group-congrats-shipping:nth-child(3)
    .group-media-object:nth-child(3)
    .group_congrats_shipping_domicile,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_instructions
    .group-row
    .group_congrats_shipping_domicile:nth-child(3)
    .group-media-object:nth-child(3)
    .group-congrats-shipping,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_instructions
    .group-row
    .group_congrats_shipping_domicile:nth-child(3)
    .group-media-object:nth-child(3)
    .group_congrats_shipping_domicile {
    width: 80%;
}
.step_congrats_approved
    .ui-card
    .group-congrats-shipping:nth-child(3)
    .group-media-object:nth-child(3)
    .group-congrats-shipping
    .title-h2,
.step_congrats_approved
    .ui-card
    .group-congrats-shipping:nth-child(3)
    .group-media-object:nth-child(3)
    .group_congrats_shipping_domicile
    .title-h2,
.step_congrats_approved
    .ui-card
    .group_congrats_shipping_domicile:nth-child(3)
    .group-media-object:nth-child(3)
    .group-congrats-shipping
    .title-h2,
.step_congrats_approved
    .ui-card
    .group_congrats_shipping_domicile:nth-child(3)
    .group-media-object:nth-child(3)
    .group_congrats_shipping_domicile
    .title-h2,
.step_congrats_approved
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group-congrats-shipping:nth-child(3)
    .group-media-object:nth-child(3)
    .group-congrats-shipping
    .title-h2,
.step_congrats_approved
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group-congrats-shipping:nth-child(3)
    .group-media-object:nth-child(3)
    .group_congrats_shipping_domicile
    .title-h2,
.step_congrats_approved
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group_congrats_shipping_domicile:nth-child(3)
    .group-media-object:nth-child(3)
    .group-congrats-shipping
    .title-h2,
.step_congrats_approved
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group_congrats_shipping_domicile:nth-child(3)
    .group-media-object:nth-child(3)
    .group_congrats_shipping_domicile
    .title-h2,
.step_congrats_instructions
    .ui-card
    .group-congrats-shipping:nth-child(3)
    .group-media-object:nth-child(3)
    .group-congrats-shipping
    .title-h2,
.step_congrats_instructions
    .ui-card
    .group-congrats-shipping:nth-child(3)
    .group-media-object:nth-child(3)
    .group_congrats_shipping_domicile
    .title-h2,
.step_congrats_instructions
    .ui-card
    .group_congrats_shipping_domicile:nth-child(3)
    .group-media-object:nth-child(3)
    .group-congrats-shipping
    .title-h2,
.step_congrats_instructions
    .ui-card
    .group_congrats_shipping_domicile:nth-child(3)
    .group-media-object:nth-child(3)
    .group_congrats_shipping_domicile
    .title-h2,
.step_congrats_instructions
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group-congrats-shipping:nth-child(3)
    .group-media-object:nth-child(3)
    .group-congrats-shipping
    .title-h2,
.step_congrats_instructions
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group-congrats-shipping:nth-child(3)
    .group-media-object:nth-child(3)
    .group_congrats_shipping_domicile
    .title-h2,
.step_congrats_instructions
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group_congrats_shipping_domicile:nth-child(3)
    .group-media-object:nth-child(3)
    .group-congrats-shipping
    .title-h2,
.step_congrats_instructions
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group_congrats_shipping_domicile:nth-child(3)
    .group-media-object:nth-child(3)
    .group_congrats_shipping_domicile
    .title-h2,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_approved
    .group-row
    .group-congrats-shipping:nth-child(3)
    .group-media-object:nth-child(3)
    .group-congrats-shipping
    .title-h2,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_approved
    .group-row
    .group-congrats-shipping:nth-child(3)
    .group-media-object:nth-child(3)
    .group_congrats_shipping_domicile
    .title-h2,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_approved
    .group-row
    .group_congrats_shipping_domicile:nth-child(3)
    .group-media-object:nth-child(3)
    .group-congrats-shipping
    .title-h2,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_approved
    .group-row
    .group_congrats_shipping_domicile:nth-child(3)
    .group-media-object:nth-child(3)
    .group_congrats_shipping_domicile
    .title-h2,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_instructions
    .group-row
    .group-congrats-shipping:nth-child(3)
    .group-media-object:nth-child(3)
    .group-congrats-shipping
    .title-h2,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_instructions
    .group-row
    .group-congrats-shipping:nth-child(3)
    .group-media-object:nth-child(3)
    .group_congrats_shipping_domicile
    .title-h2,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_instructions
    .group-row
    .group_congrats_shipping_domicile:nth-child(3)
    .group-media-object:nth-child(3)
    .group-congrats-shipping
    .title-h2,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_instructions
    .group-row
    .group_congrats_shipping_domicile:nth-child(3)
    .group-media-object:nth-child(3)
    .group_congrats_shipping_domicile
    .title-h2 {
    margin-bottom: 0.3125em;
}
.step_congrats_approved .group-congrats-shipping a,
.step_congrats_approved .group_congrats_shipping_domicile a,
.step_congrats_instructions .group-congrats-shipping a,
.step_congrats_instructions .group_congrats_shipping_domicile a {
    font-size: 14px;
    font-weight: 700;
}
.step_congrats_approved .group-congrats-shipping h1,
.step_congrats_approved .group_congrats_shipping_domicile h1,
.step_congrats_instructions .group-congrats-shipping h1,
.step_congrats_instructions .group_congrats_shipping_domicile h1 {
    margin-bottom: 0.25em;
    margin-top: 0;
}
.step_congrats_approved .group-congrats-shipping hr,
.step_congrats_approved .group_congrats_shipping_domicile hr,
.step_congrats_instructions .group-congrats-shipping hr,
.step_congrats_instructions .group_congrats_shipping_domicile hr {
    border-bottom: 0;
    margin: 0;
}
.step_congrats_approved .group-congrats-shipping .group-media-object:first-child,
.step_congrats_approved .group_congrats_shipping_domicile .group-media-object:first-child,
.step_congrats_instructions .group-congrats-shipping .group-media-object:first-child,
.step_congrats_instructions .group_congrats_shipping_domicile .group-media-object:first-child {
    margin-top: 2em;
}
.step_congrats_approved .group-congrats-shipping .group-media-object:nth-child(2) .andes-badge,
.step_congrats_approved .group_congrats_shipping_domicile .group-media-object:nth-child(2) .andes-badge,
.step_congrats_instructions .group-congrats-shipping .group-media-object:nth-child(2) .andes-badge,
.step_congrats_instructions .group_congrats_shipping_domicile .group-media-object:nth-child(2) .andes-badge {
    margin-top: 0;
}
.step_congrats_approved .group-congrats-shipping .group-media-object:nth-child(3),
.step_congrats_approved .group_congrats_shipping_domicile .group-media-object:nth-child(3),
.step_congrats_instructions .group-congrats-shipping .group-media-object:nth-child(3),
.step_congrats_instructions .group_congrats_shipping_domicile .group-media-object:nth-child(3) {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    margin-top: 1em;
}
.step_congrats_approved .group-congrats-shipping .group-media-object:nth-child(3) .group-congrats-shipping,
.step_congrats_approved .group-congrats-shipping .group-media-object:nth-child(3) .group_congrats_shipping_domicile,
.step_congrats_approved .group_congrats_shipping_domicile .group-media-object:nth-child(3) .group-congrats-shipping,
.step_congrats_approved
    .group_congrats_shipping_domicile
    .group-media-object:nth-child(3)
    .group_congrats_shipping_domicile,
.step_congrats_instructions .group-congrats-shipping .group-media-object:nth-child(3) .group-congrats-shipping,
.step_congrats_instructions .group-congrats-shipping .group-media-object:nth-child(3) .group_congrats_shipping_domicile,
.step_congrats_instructions .group_congrats_shipping_domicile .group-media-object:nth-child(3) .group-congrats-shipping,
.step_congrats_instructions
    .group_congrats_shipping_domicile
    .group-media-object:nth-child(3)
    .group_congrats_shipping_domicile {
    width: 80%;
}
.step_congrats_approved .group-congrats-shipping .group-media-object:nth-child(3) .group-congrats-shipping .title-h2,
.step_congrats_approved
    .group-congrats-shipping
    .group-media-object:nth-child(3)
    .group_congrats_shipping_domicile
    .title-h2,
.step_congrats_approved
    .group_congrats_shipping_domicile
    .group-media-object:nth-child(3)
    .group-congrats-shipping
    .title-h2,
.step_congrats_approved
    .group_congrats_shipping_domicile
    .group-media-object:nth-child(3)
    .group_congrats_shipping_domicile
    .title-h2,
.step_congrats_instructions
    .group-congrats-shipping
    .group-media-object:nth-child(3)
    .group-congrats-shipping
    .title-h2,
.step_congrats_instructions
    .group-congrats-shipping
    .group-media-object:nth-child(3)
    .group_congrats_shipping_domicile
    .title-h2,
.step_congrats_instructions
    .group_congrats_shipping_domicile
    .group-media-object:nth-child(3)
    .group-congrats-shipping
    .title-h2,
.step_congrats_instructions
    .group_congrats_shipping_domicile
    .group-media-object:nth-child(3)
    .group_congrats_shipping_domicile
    .title-h2 {
    margin-bottom: 0.3125em;
}
.step_congrats_approved .group-congrats-shipping .group-media-object:first-of-type,
.step_congrats_approved .group_congrats_shipping_domicile .group-media-object:first-of-type,
.step_congrats_instructions .group-congrats-shipping .group-media-object:first-of-type,
.step_congrats_instructions .group_congrats_shipping_domicile .group-media-object:first-of-type {
    margin-bottom: 0;
}
.step_congrats_approved .group-congrats-shipping .group-media-object:first-of-type .text + .text,
.step_congrats_approved .group_congrats_shipping_domicile .group-media-object:first-of-type .text + .text,
.step_congrats_instructions .group-congrats-shipping .group-media-object:first-of-type .text + .text,
.step_congrats_instructions .group_congrats_shipping_domicile .group-media-object:first-of-type .text + .text {
    margin-top: 0;
}
.step_congrats_approved .group-congrats-shipping .group-media-object:first-of-type .andes-badge,
.step_congrats_approved .group_congrats_shipping_domicile .group-media-object:first-of-type .andes-badge,
.step_congrats_instructions .group-congrats-shipping .group-media-object:first-of-type .andes-badge,
.step_congrats_instructions .group_congrats_shipping_domicile .group-media-object:first-of-type .andes-badge {
    margin-left: auto;
}
.step_congrats_approved
    .group-congrats-shipping
    .group-media-object:first-of-type
    .group-congrats-shipping
    .andes-badge,
.step_congrats_approved
    .group-congrats-shipping
    .group-media-object:first-of-type
    .group_congrats_shipping_domicile
    .andes-badge,
.step_congrats_approved
    .group_congrats_shipping_domicile
    .group-media-object:first-of-type
    .group-congrats-shipping
    .andes-badge,
.step_congrats_approved
    .group_congrats_shipping_domicile
    .group-media-object:first-of-type
    .group_congrats_shipping_domicile
    .andes-badge,
.step_congrats_instructions
    .group-congrats-shipping
    .group-media-object:first-of-type
    .group-congrats-shipping
    .andes-badge,
.step_congrats_instructions
    .group-congrats-shipping
    .group-media-object:first-of-type
    .group_congrats_shipping_domicile
    .andes-badge,
.step_congrats_instructions
    .group_congrats_shipping_domicile
    .group-media-object:first-of-type
    .group-congrats-shipping
    .andes-badge,
.step_congrats_instructions
    .group_congrats_shipping_domicile
    .group-media-object:first-of-type
    .group_congrats_shipping_domicile
    .andes-badge {
    margin-left: 1em;
}
.step_congrats_approved .group-congrats-shipping .group-media-object .group-congrats-shipping,
.step_congrats_approved .group-congrats-shipping .group-media-object .group_congrats_shipping_domicile,
.step_congrats_approved .group_congrats_shipping_domicile .group-media-object .group-congrats-shipping,
.step_congrats_approved .group_congrats_shipping_domicile .group-media-object .group_congrats_shipping_domicile,
.step_congrats_instructions .group-congrats-shipping .group-media-object .group-congrats-shipping,
.step_congrats_instructions .group-congrats-shipping .group-media-object .group_congrats_shipping_domicile,
.step_congrats_instructions .group_congrats_shipping_domicile .group-media-object .group-congrats-shipping,
.step_congrats_instructions .group_congrats_shipping_domicile .group-media-object .group_congrats_shipping_domicile {
    width: 80%;
}
.step_congrats_approved .group-congrats-shipping .group-media-object .group-congrats-shipping .title-h2,
.step_congrats_approved .group-congrats-shipping .group-media-object .group_congrats_shipping_domicile .title-h2,
.step_congrats_approved .group_congrats_shipping_domicile .group-media-object .group-congrats-shipping .title-h2,
.step_congrats_approved
    .group_congrats_shipping_domicile
    .group-media-object
    .group_congrats_shipping_domicile
    .title-h2,
.step_congrats_instructions .group-congrats-shipping .group-media-object .group-congrats-shipping .title-h2,
.step_congrats_instructions .group-congrats-shipping .group-media-object .group_congrats_shipping_domicile .title-h2,
.step_congrats_instructions .group_congrats_shipping_domicile .group-media-object .group-congrats-shipping .title-h2,
.step_congrats_instructions
    .group_congrats_shipping_domicile
    .group-media-object
    .group_congrats_shipping_domicile
    .title-h2 {
    margin-bottom: 0.3125em;
}
.step_congrats_approved .group-congrats-shipping .group-media-object .group-congrats-shipping .text,
.step_congrats_approved .group-congrats-shipping .group-media-object .group_congrats_shipping_domicile .text,
.step_congrats_approved .group_congrats_shipping_domicile .group-media-object .group-congrats-shipping .text,
.step_congrats_approved .group_congrats_shipping_domicile .group-media-object .group_congrats_shipping_domicile .text,
.step_congrats_instructions .group-congrats-shipping .group-media-object .group-congrats-shipping .text,
.step_congrats_instructions .group-congrats-shipping .group-media-object .group_congrats_shipping_domicile .text,
.step_congrats_instructions .group_congrats_shipping_domicile .group-media-object .group-congrats-shipping .text,
.step_congrats_instructions
    .group_congrats_shipping_domicile
    .group-media-object
    .group_congrats_shipping_domicile
    .text {
    color: #666;
}
.step_congrats_approved .group-congrats-shipping .group-media-object .group-congrats-shipping .group-media-object,
.step_congrats_approved .group-congrats-shipping .group-media-object .group-congrats-shipping .row-details .title,
.step_congrats_approved
    .group-congrats-shipping
    .group-media-object
    .group_congrats_shipping_domicile
    .group-media-object,
.step_congrats_approved
    .group-congrats-shipping
    .group-media-object
    .group_congrats_shipping_domicile
    .row-details
    .title,
.step_congrats_approved
    .group_congrats_shipping_domicile
    .group-media-object
    .group-congrats-shipping
    .group-media-object,
.step_congrats_approved
    .group_congrats_shipping_domicile
    .group-media-object
    .group-congrats-shipping
    .row-details
    .title,
.step_congrats_approved
    .group_congrats_shipping_domicile
    .group-media-object
    .group_congrats_shipping_domicile
    .group-media-object,
.step_congrats_approved
    .group_congrats_shipping_domicile
    .group-media-object
    .group_congrats_shipping_domicile
    .row-details
    .title,
.step_congrats_instructions .group-congrats-shipping .group-media-object .group-congrats-shipping .group-media-object,
.step_congrats_instructions .group-congrats-shipping .group-media-object .group-congrats-shipping .row-details .title,
.step_congrats_instructions
    .group-congrats-shipping
    .group-media-object
    .group_congrats_shipping_domicile
    .group-media-object,
.step_congrats_instructions
    .group-congrats-shipping
    .group-media-object
    .group_congrats_shipping_domicile
    .row-details
    .title,
.step_congrats_instructions
    .group_congrats_shipping_domicile
    .group-media-object
    .group-congrats-shipping
    .group-media-object,
.step_congrats_instructions
    .group_congrats_shipping_domicile
    .group-media-object
    .group-congrats-shipping
    .row-details
    .title,
.step_congrats_instructions
    .group_congrats_shipping_domicile
    .group-media-object
    .group_congrats_shipping_domicile
    .group-media-object,
.step_congrats_instructions
    .group_congrats_shipping_domicile
    .group-media-object
    .group_congrats_shipping_domicile
    .row-details
    .title {
    margin-top: 0;
}
.step_congrats_approved .group-congrats-shipping .group-media-object .group-congrats-shipping .c-title,
.step_congrats_approved .group-congrats-shipping .group-media-object .group_congrats_shipping_domicile .c-title,
.step_congrats_approved .group_congrats_shipping_domicile .group-media-object .group-congrats-shipping .c-title,
.step_congrats_approved
    .group_congrats_shipping_domicile
    .group-media-object
    .group_congrats_shipping_domicile
    .c-title,
.step_congrats_instructions .group-congrats-shipping .group-media-object .group-congrats-shipping .c-title,
.step_congrats_instructions .group-congrats-shipping .group-media-object .group_congrats_shipping_domicile .c-title,
.step_congrats_instructions .group_congrats_shipping_domicile .group-media-object .group-congrats-shipping .c-title,
.step_congrats_instructions
    .group_congrats_shipping_domicile
    .group-media-object
    .group_congrats_shipping_domicile
    .c-title {
    line-height: 1.4;
}
.step_congrats_approved .group-congrats-shipping .group-media-object .row-details .title,
.step_congrats_approved .group_congrats_shipping_domicile .group-media-object .row-details .title,
.step_congrats_instructions .group-congrats-shipping .group-media-object .row-details .title,
.step_congrats_instructions .group_congrats_shipping_domicile .group-media-object .row-details .title {
    margin-top: 0.4375em;
}
.step_congrats_approved .group-congrats-shipping .group-media-object .text,
.step_congrats_approved .group_congrats_shipping_domicile .group-media-object .text,
.step_congrats_instructions .group-congrats-shipping .group-media-object .text,
.step_congrats_instructions .group_congrats_shipping_domicile .group-media-object .text {
    margin-top: 0.25em;
}
.step_congrats_approved .group-congrats-shipping .group-media-object .text + .text,
.step_congrats_approved .group_congrats_shipping_domicile .group-media-object .text + .text,
.step_congrats_instructions .group-congrats-shipping .group-media-object .text + .text,
.step_congrats_instructions .group_congrats_shipping_domicile .group-media-object .text + .text {
    margin-top: 1.3125em;
}
.step_congrats_approved .group-congrats-shipping .group-media-object .andes-badge,
.step_congrats_approved .group_congrats_shipping_domicile .group-media-object .andes-badge,
.step_congrats_instructions .group-congrats-shipping .group-media-object .andes-badge,
.step_congrats_instructions .group_congrats_shipping_domicile .group-media-object .andes-badge {
    margin-left: 1em;
    padding: 0;
}
.step_congrats_approved .group-congrats-shipping .group-media-object .andes-badge .andes-badge__content,
.step_congrats_approved .group_congrats_shipping_domicile .group-media-object .andes-badge .andes-badge__content,
.step_congrats_instructions .group-congrats-shipping .group-media-object .andes-badge .andes-badge__content,
.step_congrats_instructions .group_congrats_shipping_domicile .group-media-object .andes-badge .andes-badge__content {
    -webkit-align-items: center;
    align-items: center;
    -webkit-column-gap: 0.3125em;
    -moz-column-gap: 0.3125em;
    column-gap: 0.3125em;
    display: -webkit-flex;
    display: flex;
    font-size: 0.6875em;
    font-weight: 700;
    text-transform: uppercase;
}
.step_congrats_approved .group_congrats_shipping_domicile .group-media-object .row-details .title,
.step_congrats_instructions .group_congrats_shipping_domicile .group-media-object .row-details .title {
    margin-top: 0;
}
.step_congrats_approved .separator,
.step_congrats_instructions .separator {
    background: #000;
    display: grid;
    height: 0.0625em;
    margin: 1em 0;
    opacity: 0.25;
}
.step_congrats_approved .icon-wrapper,
.step_congrats_instructions .icon-wrapper {
    border: 0.1px solid #bfbfbf;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    height: 2.5em;
    width: 2.5em;
}
.step_congrats_approved .icon-wrapper div.payment-card-icon,
.step_congrats_instructions .icon-wrapper div.payment-card-icon {
    zoom: 64%;
}
.step_congrats_approved #group_card_combination .ui-card .title_2,
.step_congrats_approved #group_card_combination div.optimus div.group-payment-method-row-with-cvv .group-row .title_2,
.step_congrats_instructions #group_card_combination .ui-card .title_2,
.step_congrats_instructions
    #group_card_combination
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .title_2,
div.optimus div.group-payment-method-row-with-cvv .step_congrats_approved #group_card_combination .group-row .title_2,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_instructions
    #group_card_combination
    .group-row
    .title_2 {
    font-size: 1em;
    font-weight: 600;
}
.step_congrats_approved #group_card_combination .ui-card .group-media-object + .group-media-object,
.step_congrats_approved
    #group_card_combination
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group-media-object
    + .group-media-object,
.step_congrats_instructions #group_card_combination .ui-card .group-media-object + .group-media-object,
.step_congrats_instructions
    #group_card_combination
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group-media-object
    + .group-media-object,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_approved
    #group_card_combination
    .group-row
    .group-media-object
    + .group-media-object,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_instructions
    #group_card_combination
    .group-row
    .group-media-object
    + .group-media-object {
    border-bottom: 0.0625em solid #bfbfbf;
    margin-top: 1.5em;
}
.step_congrats_approved
    #group_card_combination
    .ui-card
    .group-media-object
    + .group-media-object
    .row-instructions
    .row-details,
.step_congrats_approved
    #group_card_combination
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group-media-object
    + .group-media-object
    .row-instructions
    .row-details,
.step_congrats_instructions
    #group_card_combination
    .ui-card
    .group-media-object
    + .group-media-object
    .row-instructions
    .row-details,
.step_congrats_instructions
    #group_card_combination
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group-media-object
    + .group-media-object
    .row-instructions
    .row-details,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_approved
    #group_card_combination
    .group-row
    .group-media-object
    + .group-media-object
    .row-instructions
    .row-details,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_instructions
    #group_card_combination
    .group-row
    .group-media-object
    + .group-media-object
    .row-instructions
    .row-details {
    margin-bottom: 1em;
}
.step_congrats_approved #group_card_combination .ui-card .group-media-object + .group-media-object + .group-flex,
.step_congrats_approved
    #group_card_combination
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group-media-object
    + .group-media-object
    + .group-flex,
.step_congrats_instructions #group_card_combination .ui-card .group-media-object + .group-media-object + .group-flex,
.step_congrats_instructions
    #group_card_combination
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group-media-object
    + .group-media-object
    + .group-flex,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_approved
    #group_card_combination
    .group-row
    .group-media-object
    + .group-media-object
    + .group-flex,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_instructions
    #group_card_combination
    .group-row
    .group-media-object
    + .group-media-object
    + .group-flex {
    margin-top: 1.5em;
}
.step_congrats_approved
    #group_card_combination
    .ui-card
    .group-media-object
    + .group-media-object
    + .group-flex
    .title-h2,
.step_congrats_approved
    #group_card_combination
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group-media-object
    + .group-media-object
    + .group-flex
    .title-h2,
.step_congrats_instructions
    #group_card_combination
    .ui-card
    .group-media-object
    + .group-media-object
    + .group-flex
    .title-h2,
.step_congrats_instructions
    #group_card_combination
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group-media-object
    + .group-media-object
    + .group-flex
    .title-h2,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_approved
    #group_card_combination
    .group-row
    .group-media-object
    + .group-media-object
    + .group-flex
    .title-h2,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_instructions
    #group_card_combination
    .group-row
    .group-media-object
    + .group-media-object
    + .group-flex
    .title-h2 {
    font-weight: 400;
    margin-bottom: 0;
}
.step_congrats_approved
    #group_card_combination
    .ui-card
    .group-media-object
    + .group-media-object
    + .group-flex
    .title-h2:first-child,
.step_congrats_approved
    #group_card_combination
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group-media-object
    + .group-media-object
    + .group-flex
    .title-h2:first-child,
.step_congrats_instructions
    #group_card_combination
    .ui-card
    .group-media-object
    + .group-media-object
    + .group-flex
    .title-h2:first-child,
.step_congrats_instructions
    #group_card_combination
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group-media-object
    + .group-media-object
    + .group-flex
    .title-h2:first-child,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_approved
    #group_card_combination
    .group-row
    .group-media-object
    + .group-media-object
    + .group-flex
    .title-h2:first-child,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_instructions
    #group_card_combination
    .group-row
    .group-media-object
    + .group-media-object
    + .group-flex
    .title-h2:first-child {
    width: 4em;
}
.step_congrats_approved #group_open_finance .icon-wrapper,
.step_congrats_approved #group_open_finance .ui-card .group-media-object .icon-wrapper,
.step_congrats_approved
    #group_open_finance
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group-media-object
    .icon-wrapper,
.step_congrats_instructions #group_open_finance .icon-wrapper,
.step_congrats_instructions #group_open_finance .ui-card .group-media-object .icon-wrapper,
.step_congrats_instructions
    #group_open_finance
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group-media-object
    .icon-wrapper,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_approved
    #group_open_finance
    .group-row
    .group-media-object
    .icon-wrapper,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_instructions
    #group_open_finance
    .group-row
    .group-media-object
    .icon-wrapper {
    border: 0.1px solid #bfbfbf;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    height: 2.5em;
    width: 2.5em;
}
.step_congrats_approved #group_open_finance .ui-card .group-media-object .icon-wrapper svg,
.step_congrats_approved
    #group_open_finance
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group-media-object
    .icon-wrapper
    svg,
.step_congrats_instructions #group_open_finance .ui-card .group-media-object .icon-wrapper svg,
.step_congrats_instructions
    #group_open_finance
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group-media-object
    .icon-wrapper
    svg,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_approved
    #group_open_finance
    .group-row
    .group-media-object
    .icon-wrapper
    svg,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_instructions
    #group_open_finance
    .group-row
    .group-media-object
    .icon-wrapper
    svg {
    max-height: 90%;
    max-width: 60%;
}
.step_congrats_approved #group_open_finance .ui-card .group-media-object .icon-wrapper img,
.step_congrats_approved
    #group_open_finance
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group-media-object
    .icon-wrapper
    img,
.step_congrats_instructions #group_open_finance .ui-card .group-media-object .icon-wrapper img,
.step_congrats_instructions
    #group_open_finance
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group-media-object
    .icon-wrapper
    img,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_approved
    #group_open_finance
    .group-row
    .group-media-object
    .icon-wrapper
    img,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_instructions
    #group_open_finance
    .group-row
    .group-media-object
    .icon-wrapper
    img {
    max-height: 80%;
    max-width: 80%;
}
.step_congrats_approved #group_open_finance .ui-card .text,
.step_congrats_approved #group_open_finance div.optimus div.group-payment-method-row-with-cvv .group-row .text,
.step_congrats_instructions #group_open_finance .ui-card .text,
.step_congrats_instructions #group_open_finance div.optimus div.group-payment-method-row-with-cvv .group-row .text,
div.optimus div.group-payment-method-row-with-cvv .step_congrats_approved #group_open_finance .group-row .text,
div.optimus div.group-payment-method-row-with-cvv .step_congrats_instructions #group_open_finance .group-row .text {
    color: rgba(0, 0, 0, 0.9);
}
.step_congrats_approved #group_open_finance .group-media-object:last-child,
.step_congrats_instructions #group_open_finance .group-media-object:last-child {
    margin-top: 2em;
}
.step_congrats_approved #group_open_finance .row-details .title,
.step_congrats_instructions #group_open_finance .row-details .title {
    margin-top: 0;
}
.step_congrats_approved .layout--modal .congrats .scroller,
.step_congrats_instructions .layout--modal .congrats .scroller {
    bottom: 0;
    height: 100%;
    left: 0;
    overflow-y: scroll;
    padding: 0;
    position: absolute;
    top: 0;
    width: 100%;
}
.step_congrats_approved .congrats--recover .ui-card,
.step_congrats_approved .congrats--recover div.optimus div.group-payment-method-row-with-cvv .group-row,
.step_congrats_approved .congrats--rejected .ui-card,
.step_congrats_approved .congrats--rejected div.optimus div.group-payment-method-row-with-cvv .group-row,
.step_congrats_instructions .congrats--recover .ui-card,
.step_congrats_instructions .congrats--recover div.optimus div.group-payment-method-row-with-cvv .group-row,
.step_congrats_instructions .congrats--rejected .ui-card,
.step_congrats_instructions .congrats--rejected div.optimus div.group-payment-method-row-with-cvv .group-row,
div.optimus div.group-payment-method-row-with-cvv .step_congrats_approved .congrats--recover .group-row,
div.optimus div.group-payment-method-row-with-cvv .step_congrats_approved .congrats--rejected .group-row,
div.optimus div.group-payment-method-row-with-cvv .step_congrats_instructions .congrats--recover .group-row,
div.optimus div.group-payment-method-row-with-cvv .step_congrats_instructions .congrats--rejected .group-row {
    margin-bottom: 0;
}
.step_congrats_approved .congrats--recover .group-back-url,
.step_congrats_approved .congrats--rejected .group-back-url,
.step_congrats_instructions .congrats--recover .group-back-url,
.step_congrats_instructions .congrats--rejected .group-back-url {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    position: relative;
    right: 15em;
    top: 1.25em;
}
.step_congrats_approved .congrats--recover .group-back-url .chevron-left,
.step_congrats_approved .congrats--rejected .group-back-url .chevron-left,
.step_congrats_instructions .congrats--recover .group-back-url .chevron-left,
.step_congrats_instructions .congrats--rejected .group-back-url .chevron-left {
    margin: 0 0.375em;
}
.step_congrats_approved .congrats--recover .group-back-url .andes-button,
.step_congrats_approved .congrats--rejected .group-back-url .andes-button,
.step_congrats_instructions .congrats--recover .group-back-url .andes-button,
.step_congrats_instructions .congrats--rejected .group-back-url .andes-button {
    font-size: 0.875em;
    line-height: 0.875em;
    margin: 0;
}
.step_congrats_approved .redirect-view .layout-main,
.step_congrats_instructions .redirect-view .layout-main {
    max-width: 100%;
}
.step_congrats_rejected .layout--modal .congrats .scroller {
    bottom: 0;
    height: 100%;
    left: 0;
    overflow-y: scroll;
    padding: 0;
    position: absolute;
    top: 0;
    width: 100%;
}
.step_congrats_rejected .congrats--recover .ui-card,
.step_congrats_rejected .congrats--recover div.optimus div.group-payment-method-row-with-cvv .group-row,
.step_congrats_rejected .congrats--rejected .ui-card,
.step_congrats_rejected .congrats--rejected div.optimus div.group-payment-method-row-with-cvv .group-row,
div.optimus div.group-payment-method-row-with-cvv .step_congrats_rejected .congrats--recover .group-row,
div.optimus div.group-payment-method-row-with-cvv .step_congrats_rejected .congrats--rejected .group-row {
    margin-bottom: 0;
}
.step_congrats_rejected .congrats--recover .group-back-url,
.step_congrats_rejected .congrats--rejected .group-back-url {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    position: relative;
    right: 15em;
    top: 1.25em;
}
.step_congrats_rejected .congrats--recover .group-back-url .chevron-left,
.step_congrats_rejected .congrats--rejected .group-back-url .chevron-left {
    margin: 0 0.375em;
}
.step_congrats_rejected .congrats--recover .group-back-url .andes-button,
.step_congrats_rejected .congrats--rejected .group-back-url .andes-button {
    font-size: 0.875em;
    line-height: 0.875em;
    margin: 0;
}
.step_congrats_rejected .redirect-view .layout-main {
    max-width: 100%;
}
.step_congrats_rejected .andes-button {
    margin-bottom: 0;
    margin-right: 1.875em;
}
.step_congrats_bad_card_number #group_open_finance .icon-wrapper,
.step_congrats_bad_card_number #group_open_finance .ui-card .group-media-object .icon-wrapper,
.step_congrats_bad_card_number
    #group_open_finance
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group-media-object
    .icon-wrapper,
.step_congrats_bad_other #group_open_finance .icon-wrapper,
.step_congrats_bad_other #group_open_finance .ui-card .group-media-object .icon-wrapper,
.step_congrats_bad_other
    #group_open_finance
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group-media-object
    .icon-wrapper,
.step_congrats_call_for_auth #group_open_finance .icon-wrapper,
.step_congrats_call_for_auth #group_open_finance .ui-card .group-media-object .icon-wrapper,
.step_congrats_call_for_auth
    #group_open_finance
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group-media-object
    .icon-wrapper,
.step_congrats_call_for_auth_how_to #group_open_finance .icon-wrapper,
.step_congrats_call_for_auth_how_to #group_open_finance .ui-card .group-media-object .icon-wrapper,
.step_congrats_call_for_auth_how_to
    #group_open_finance
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group-media-object
    .icon-wrapper,
.step_congrats_call_for_auth_later #group_open_finance .icon-wrapper,
.step_congrats_call_for_auth_later #group_open_finance .ui-card .group-media-object .icon-wrapper,
.step_congrats_call_for_auth_later
    #group_open_finance
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group-media-object
    .icon-wrapper,
.step_congrats_card_disabled #group_open_finance .icon-wrapper,
.step_congrats_card_disabled #group_open_finance .ui-card .group-media-object .icon-wrapper,
.step_congrats_card_disabled
    #group_open_finance
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group-media-object
    .icon-wrapper,
.step_congrats_contingency #group_open_finance .icon-wrapper,
.step_congrats_contingency #group_open_finance .ui-card .group-media-object .icon-wrapper,
.step_congrats_contingency
    #group_open_finance
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group-media-object
    .icon-wrapper,
.step_congrats_insufficient_amount #group_open_finance .icon-wrapper,
.step_congrats_insufficient_amount #group_open_finance .ui-card .group-media-object .icon-wrapper,
.step_congrats_insufficient_amount
    #group_open_finance
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group-media-object
    .icon-wrapper,
.step_congrats_invalid_installments #group_open_finance .icon-wrapper,
.step_congrats_invalid_installments #group_open_finance .ui-card .group-media-object .icon-wrapper,
.step_congrats_invalid_installments
    #group_open_finance
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group-media-object
    .icon-wrapper,
.step_congrats_offline_payment #group_open_finance .icon-wrapper,
.step_congrats_offline_payment #group_open_finance .ui-card .group-media-object .icon-wrapper,
.step_congrats_offline_payment
    #group_open_finance
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group-media-object
    .icon-wrapper,
.step_congrats_open_finance_pending #group_open_finance .icon-wrapper,
.step_congrats_open_finance_pending #group_open_finance .ui-card .group-media-object .icon-wrapper,
.step_congrats_open_finance_pending
    #group_open_finance
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group-media-object
    .icon-wrapper,
.step_congrats_remedy_offer #group_open_finance .icon-wrapper,
.step_congrats_remedy_offer #group_open_finance .ui-card .group-media-object .icon-wrapper,
.step_congrats_remedy_offer
    #group_open_finance
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group-media-object
    .icon-wrapper,
.step_congrats_review_manual #group_open_finance .icon-wrapper,
.step_congrats_review_manual #group_open_finance .ui-card .group-media-object .icon-wrapper,
.step_congrats_review_manual
    #group_open_finance
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group-media-object
    .icon-wrapper,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_bad_card_number
    #group_open_finance
    .group-row
    .group-media-object
    .icon-wrapper,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_bad_other
    #group_open_finance
    .group-row
    .group-media-object
    .icon-wrapper,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_call_for_auth
    #group_open_finance
    .group-row
    .group-media-object
    .icon-wrapper,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_call_for_auth_how_to
    #group_open_finance
    .group-row
    .group-media-object
    .icon-wrapper,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_call_for_auth_later
    #group_open_finance
    .group-row
    .group-media-object
    .icon-wrapper,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_card_disabled
    #group_open_finance
    .group-row
    .group-media-object
    .icon-wrapper,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_contingency
    #group_open_finance
    .group-row
    .group-media-object
    .icon-wrapper,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_insufficient_amount
    #group_open_finance
    .group-row
    .group-media-object
    .icon-wrapper,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_invalid_installments
    #group_open_finance
    .group-row
    .group-media-object
    .icon-wrapper,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_offline_payment
    #group_open_finance
    .group-row
    .group-media-object
    .icon-wrapper,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_open_finance_pending
    #group_open_finance
    .group-row
    .group-media-object
    .icon-wrapper,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_remedy_offer
    #group_open_finance
    .group-row
    .group-media-object
    .icon-wrapper,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_review_manual
    #group_open_finance
    .group-row
    .group-media-object
    .icon-wrapper {
    border: 0.1px solid #bfbfbf;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    height: 2.5em;
    width: 2.5em;
}
.step_congrats_bad_card_number #group_open_finance .ui-card .group-media-object .icon-wrapper svg,
.step_congrats_bad_card_number
    #group_open_finance
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group-media-object
    .icon-wrapper
    svg,
.step_congrats_bad_other #group_open_finance .ui-card .group-media-object .icon-wrapper svg,
.step_congrats_bad_other
    #group_open_finance
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group-media-object
    .icon-wrapper
    svg,
.step_congrats_call_for_auth #group_open_finance .ui-card .group-media-object .icon-wrapper svg,
.step_congrats_call_for_auth
    #group_open_finance
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group-media-object
    .icon-wrapper
    svg,
.step_congrats_call_for_auth_how_to #group_open_finance .ui-card .group-media-object .icon-wrapper svg,
.step_congrats_call_for_auth_how_to
    #group_open_finance
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group-media-object
    .icon-wrapper
    svg,
.step_congrats_call_for_auth_later #group_open_finance .ui-card .group-media-object .icon-wrapper svg,
.step_congrats_call_for_auth_later
    #group_open_finance
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group-media-object
    .icon-wrapper
    svg,
.step_congrats_card_disabled #group_open_finance .ui-card .group-media-object .icon-wrapper svg,
.step_congrats_card_disabled
    #group_open_finance
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group-media-object
    .icon-wrapper
    svg,
.step_congrats_contingency #group_open_finance .ui-card .group-media-object .icon-wrapper svg,
.step_congrats_contingency
    #group_open_finance
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group-media-object
    .icon-wrapper
    svg,
.step_congrats_insufficient_amount #group_open_finance .ui-card .group-media-object .icon-wrapper svg,
.step_congrats_insufficient_amount
    #group_open_finance
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group-media-object
    .icon-wrapper
    svg,
.step_congrats_invalid_installments #group_open_finance .ui-card .group-media-object .icon-wrapper svg,
.step_congrats_invalid_installments
    #group_open_finance
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group-media-object
    .icon-wrapper
    svg,
.step_congrats_offline_payment #group_open_finance .ui-card .group-media-object .icon-wrapper svg,
.step_congrats_offline_payment
    #group_open_finance
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group-media-object
    .icon-wrapper
    svg,
.step_congrats_open_finance_pending #group_open_finance .ui-card .group-media-object .icon-wrapper svg,
.step_congrats_open_finance_pending
    #group_open_finance
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group-media-object
    .icon-wrapper
    svg,
.step_congrats_remedy_offer #group_open_finance .ui-card .group-media-object .icon-wrapper svg,
.step_congrats_remedy_offer
    #group_open_finance
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group-media-object
    .icon-wrapper
    svg,
.step_congrats_review_manual #group_open_finance .ui-card .group-media-object .icon-wrapper svg,
.step_congrats_review_manual
    #group_open_finance
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group-media-object
    .icon-wrapper
    svg,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_bad_card_number
    #group_open_finance
    .group-row
    .group-media-object
    .icon-wrapper
    svg,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_bad_other
    #group_open_finance
    .group-row
    .group-media-object
    .icon-wrapper
    svg,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_call_for_auth
    #group_open_finance
    .group-row
    .group-media-object
    .icon-wrapper
    svg,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_call_for_auth_how_to
    #group_open_finance
    .group-row
    .group-media-object
    .icon-wrapper
    svg,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_call_for_auth_later
    #group_open_finance
    .group-row
    .group-media-object
    .icon-wrapper
    svg,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_card_disabled
    #group_open_finance
    .group-row
    .group-media-object
    .icon-wrapper
    svg,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_contingency
    #group_open_finance
    .group-row
    .group-media-object
    .icon-wrapper
    svg,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_insufficient_amount
    #group_open_finance
    .group-row
    .group-media-object
    .icon-wrapper
    svg,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_invalid_installments
    #group_open_finance
    .group-row
    .group-media-object
    .icon-wrapper
    svg,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_offline_payment
    #group_open_finance
    .group-row
    .group-media-object
    .icon-wrapper
    svg,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_open_finance_pending
    #group_open_finance
    .group-row
    .group-media-object
    .icon-wrapper
    svg,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_remedy_offer
    #group_open_finance
    .group-row
    .group-media-object
    .icon-wrapper
    svg,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_review_manual
    #group_open_finance
    .group-row
    .group-media-object
    .icon-wrapper
    svg {
    max-height: 90%;
    max-width: 60%;
}
.step_congrats_bad_card_number #group_open_finance .ui-card .group-media-object .icon-wrapper img,
.step_congrats_bad_card_number
    #group_open_finance
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group-media-object
    .icon-wrapper
    img,
.step_congrats_bad_other #group_open_finance .ui-card .group-media-object .icon-wrapper img,
.step_congrats_bad_other
    #group_open_finance
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group-media-object
    .icon-wrapper
    img,
.step_congrats_call_for_auth #group_open_finance .ui-card .group-media-object .icon-wrapper img,
.step_congrats_call_for_auth
    #group_open_finance
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group-media-object
    .icon-wrapper
    img,
.step_congrats_call_for_auth_how_to #group_open_finance .ui-card .group-media-object .icon-wrapper img,
.step_congrats_call_for_auth_how_to
    #group_open_finance
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group-media-object
    .icon-wrapper
    img,
.step_congrats_call_for_auth_later #group_open_finance .ui-card .group-media-object .icon-wrapper img,
.step_congrats_call_for_auth_later
    #group_open_finance
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group-media-object
    .icon-wrapper
    img,
.step_congrats_card_disabled #group_open_finance .ui-card .group-media-object .icon-wrapper img,
.step_congrats_card_disabled
    #group_open_finance
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group-media-object
    .icon-wrapper
    img,
.step_congrats_contingency #group_open_finance .ui-card .group-media-object .icon-wrapper img,
.step_congrats_contingency
    #group_open_finance
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group-media-object
    .icon-wrapper
    img,
.step_congrats_insufficient_amount #group_open_finance .ui-card .group-media-object .icon-wrapper img,
.step_congrats_insufficient_amount
    #group_open_finance
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group-media-object
    .icon-wrapper
    img,
.step_congrats_invalid_installments #group_open_finance .ui-card .group-media-object .icon-wrapper img,
.step_congrats_invalid_installments
    #group_open_finance
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group-media-object
    .icon-wrapper
    img,
.step_congrats_offline_payment #group_open_finance .ui-card .group-media-object .icon-wrapper img,
.step_congrats_offline_payment
    #group_open_finance
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group-media-object
    .icon-wrapper
    img,
.step_congrats_open_finance_pending #group_open_finance .ui-card .group-media-object .icon-wrapper img,
.step_congrats_open_finance_pending
    #group_open_finance
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group-media-object
    .icon-wrapper
    img,
.step_congrats_remedy_offer #group_open_finance .ui-card .group-media-object .icon-wrapper img,
.step_congrats_remedy_offer
    #group_open_finance
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group-media-object
    .icon-wrapper
    img,
.step_congrats_review_manual #group_open_finance .ui-card .group-media-object .icon-wrapper img,
.step_congrats_review_manual
    #group_open_finance
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group-media-object
    .icon-wrapper
    img,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_bad_card_number
    #group_open_finance
    .group-row
    .group-media-object
    .icon-wrapper
    img,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_bad_other
    #group_open_finance
    .group-row
    .group-media-object
    .icon-wrapper
    img,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_call_for_auth
    #group_open_finance
    .group-row
    .group-media-object
    .icon-wrapper
    img,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_call_for_auth_how_to
    #group_open_finance
    .group-row
    .group-media-object
    .icon-wrapper
    img,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_call_for_auth_later
    #group_open_finance
    .group-row
    .group-media-object
    .icon-wrapper
    img,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_card_disabled
    #group_open_finance
    .group-row
    .group-media-object
    .icon-wrapper
    img,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_contingency
    #group_open_finance
    .group-row
    .group-media-object
    .icon-wrapper
    img,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_insufficient_amount
    #group_open_finance
    .group-row
    .group-media-object
    .icon-wrapper
    img,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_invalid_installments
    #group_open_finance
    .group-row
    .group-media-object
    .icon-wrapper
    img,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_offline_payment
    #group_open_finance
    .group-row
    .group-media-object
    .icon-wrapper
    img,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_open_finance_pending
    #group_open_finance
    .group-row
    .group-media-object
    .icon-wrapper
    img,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_remedy_offer
    #group_open_finance
    .group-row
    .group-media-object
    .icon-wrapper
    img,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_review_manual
    #group_open_finance
    .group-row
    .group-media-object
    .icon-wrapper
    img {
    max-height: 80%;
    max-width: 80%;
}
.step_congrats_bad_card_number #group_open_finance .ui-card .text,
.step_congrats_bad_card_number #group_open_finance div.optimus div.group-payment-method-row-with-cvv .group-row .text,
.step_congrats_bad_other #group_open_finance .ui-card .text,
.step_congrats_bad_other #group_open_finance div.optimus div.group-payment-method-row-with-cvv .group-row .text,
.step_congrats_call_for_auth #group_open_finance .ui-card .text,
.step_congrats_call_for_auth #group_open_finance div.optimus div.group-payment-method-row-with-cvv .group-row .text,
.step_congrats_call_for_auth_how_to #group_open_finance .ui-card .text,
.step_congrats_call_for_auth_how_to
    #group_open_finance
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .text,
.step_congrats_call_for_auth_later #group_open_finance .ui-card .text,
.step_congrats_call_for_auth_later
    #group_open_finance
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .text,
.step_congrats_card_disabled #group_open_finance .ui-card .text,
.step_congrats_card_disabled #group_open_finance div.optimus div.group-payment-method-row-with-cvv .group-row .text,
.step_congrats_contingency #group_open_finance .ui-card .text,
.step_congrats_contingency #group_open_finance div.optimus div.group-payment-method-row-with-cvv .group-row .text,
.step_congrats_insufficient_amount #group_open_finance .ui-card .text,
.step_congrats_insufficient_amount
    #group_open_finance
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .text,
.step_congrats_invalid_installments #group_open_finance .ui-card .text,
.step_congrats_invalid_installments
    #group_open_finance
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .text,
.step_congrats_offline_payment #group_open_finance .ui-card .text,
.step_congrats_offline_payment #group_open_finance div.optimus div.group-payment-method-row-with-cvv .group-row .text,
.step_congrats_open_finance_pending #group_open_finance .ui-card .text,
.step_congrats_open_finance_pending
    #group_open_finance
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .text,
.step_congrats_remedy_offer #group_open_finance .ui-card .text,
.step_congrats_remedy_offer #group_open_finance div.optimus div.group-payment-method-row-with-cvv .group-row .text,
.step_congrats_review_manual #group_open_finance .ui-card .text,
.step_congrats_review_manual #group_open_finance div.optimus div.group-payment-method-row-with-cvv .group-row .text,
div.optimus div.group-payment-method-row-with-cvv .step_congrats_bad_card_number #group_open_finance .group-row .text,
div.optimus div.group-payment-method-row-with-cvv .step_congrats_bad_other #group_open_finance .group-row .text,
div.optimus div.group-payment-method-row-with-cvv .step_congrats_call_for_auth #group_open_finance .group-row .text,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_call_for_auth_how_to
    #group_open_finance
    .group-row
    .text,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_call_for_auth_later
    #group_open_finance
    .group-row
    .text,
div.optimus div.group-payment-method-row-with-cvv .step_congrats_card_disabled #group_open_finance .group-row .text,
div.optimus div.group-payment-method-row-with-cvv .step_congrats_contingency #group_open_finance .group-row .text,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_insufficient_amount
    #group_open_finance
    .group-row
    .text,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_invalid_installments
    #group_open_finance
    .group-row
    .text,
div.optimus div.group-payment-method-row-with-cvv .step_congrats_offline_payment #group_open_finance .group-row .text,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_congrats_open_finance_pending
    #group_open_finance
    .group-row
    .text,
div.optimus div.group-payment-method-row-with-cvv .step_congrats_remedy_offer #group_open_finance .group-row .text,
div.optimus div.group-payment-method-row-with-cvv .step_congrats_review_manual #group_open_finance .group-row .text {
    color: rgba(0, 0, 0, 0.9);
}
.step_congrats_bad_card_number #group_open_finance .group-media-object:last-child,
.step_congrats_bad_other #group_open_finance .group-media-object:last-child,
.step_congrats_call_for_auth #group_open_finance .group-media-object:last-child,
.step_congrats_call_for_auth_how_to #group_open_finance .group-media-object:last-child,
.step_congrats_call_for_auth_later #group_open_finance .group-media-object:last-child,
.step_congrats_card_disabled #group_open_finance .group-media-object:last-child,
.step_congrats_contingency #group_open_finance .group-media-object:last-child,
.step_congrats_insufficient_amount #group_open_finance .group-media-object:last-child,
.step_congrats_invalid_installments #group_open_finance .group-media-object:last-child,
.step_congrats_offline_payment #group_open_finance .group-media-object:last-child,
.step_congrats_open_finance_pending #group_open_finance .group-media-object:last-child,
.step_congrats_remedy_offer #group_open_finance .group-media-object:last-child,
.step_congrats_review_manual #group_open_finance .group-media-object:last-child {
    margin-top: 2em;
}
.step_congrats_bad_card_number #group_open_finance .row-details .title,
.step_congrats_bad_other #group_open_finance .row-details .title,
.step_congrats_call_for_auth #group_open_finance .row-details .title,
.step_congrats_call_for_auth_how_to #group_open_finance .row-details .title,
.step_congrats_call_for_auth_later #group_open_finance .row-details .title,
.step_congrats_card_disabled #group_open_finance .row-details .title,
.step_congrats_contingency #group_open_finance .row-details .title,
.step_congrats_insufficient_amount #group_open_finance .row-details .title,
.step_congrats_invalid_installments #group_open_finance .row-details .title,
.step_congrats_offline_payment #group_open_finance .row-details .title,
.step_congrats_open_finance_pending #group_open_finance .row-details .title,
.step_congrats_remedy_offer #group_open_finance .row-details .title,
.step_congrats_review_manual #group_open_finance .row-details .title {
    margin-top: 0;
}
.step_congrats_bad_card_number .layout--modal .congrats .scroller,
.step_congrats_bad_other .layout--modal .congrats .scroller,
.step_congrats_call_for_auth .layout--modal .congrats .scroller,
.step_congrats_call_for_auth_how_to .layout--modal .congrats .scroller,
.step_congrats_call_for_auth_later .layout--modal .congrats .scroller,
.step_congrats_card_disabled .layout--modal .congrats .scroller,
.step_congrats_contingency .layout--modal .congrats .scroller,
.step_congrats_insufficient_amount .layout--modal .congrats .scroller,
.step_congrats_invalid_installments .layout--modal .congrats .scroller,
.step_congrats_offline_payment .layout--modal .congrats .scroller,
.step_congrats_open_finance_pending .layout--modal .congrats .scroller,
.step_congrats_remedy_offer .layout--modal .congrats .scroller,
.step_congrats_review_manual .layout--modal .congrats .scroller {
    bottom: 0;
    height: 100%;
    left: 0;
    overflow-y: scroll;
    padding: 0;
    position: absolute;
    top: 0;
    width: 100%;
}
.step_congrats_bad_card_number .congrats--recover .ui-card,
.step_congrats_bad_card_number .congrats--recover div.optimus div.group-payment-method-row-with-cvv .group-row,
.step_congrats_bad_card_number .congrats--rejected .ui-card,
.step_congrats_bad_card_number .congrats--rejected div.optimus div.group-payment-method-row-with-cvv .group-row,
.step_congrats_bad_other .congrats--recover .ui-card,
.step_congrats_bad_other .congrats--recover div.optimus div.group-payment-method-row-with-cvv .group-row,
.step_congrats_bad_other .congrats--rejected .ui-card,
.step_congrats_bad_other .congrats--rejected div.optimus div.group-payment-method-row-with-cvv .group-row,
.step_congrats_call_for_auth .congrats--recover .ui-card,
.step_congrats_call_for_auth .congrats--recover div.optimus div.group-payment-method-row-with-cvv .group-row,
.step_congrats_call_for_auth .congrats--rejected .ui-card,
.step_congrats_call_for_auth .congrats--rejected div.optimus div.group-payment-method-row-with-cvv .group-row,
.step_congrats_call_for_auth_how_to .congrats--recover .ui-card,
.step_congrats_call_for_auth_how_to .congrats--recover div.optimus div.group-payment-method-row-with-cvv .group-row,
.step_congrats_call_for_auth_how_to .congrats--rejected .ui-card,
.step_congrats_call_for_auth_how_to .congrats--rejected div.optimus div.group-payment-method-row-with-cvv .group-row,
.step_congrats_call_for_auth_later .congrats--recover .ui-card,
.step_congrats_call_for_auth_later .congrats--recover div.optimus div.group-payment-method-row-with-cvv .group-row,
.step_congrats_call_for_auth_later .congrats--rejected .ui-card,
.step_congrats_call_for_auth_later .congrats--rejected div.optimus div.group-payment-method-row-with-cvv .group-row,
.step_congrats_card_disabled .congrats--recover .ui-card,
.step_congrats_card_disabled .congrats--recover div.optimus div.group-payment-method-row-with-cvv .group-row,
.step_congrats_card_disabled .congrats--rejected .ui-card,
.step_congrats_card_disabled .congrats--rejected div.optimus div.group-payment-method-row-with-cvv .group-row,
.step_congrats_contingency .congrats--recover .ui-card,
.step_congrats_contingency .congrats--recover div.optimus div.group-payment-method-row-with-cvv .group-row,
.step_congrats_contingency .congrats--rejected .ui-card,
.step_congrats_contingency .congrats--rejected div.optimus div.group-payment-method-row-with-cvv .group-row,
.step_congrats_insufficient_amount .congrats--recover .ui-card,
.step_congrats_insufficient_amount .congrats--recover div.optimus div.group-payment-method-row-with-cvv .group-row,
.step_congrats_insufficient_amount .congrats--rejected .ui-card,
.step_congrats_insufficient_amount .congrats--rejected div.optimus div.group-payment-method-row-with-cvv .group-row,
.step_congrats_invalid_installments .congrats--recover .ui-card,
.step_congrats_invalid_installments .congrats--recover div.optimus div.group-payment-method-row-with-cvv .group-row,
.step_congrats_invalid_installments .congrats--rejected .ui-card,
.step_congrats_invalid_installments .congrats--rejected div.optimus div.group-payment-method-row-with-cvv .group-row,
.step_congrats_offline_payment .congrats--recover .ui-card,
.step_congrats_offline_payment .congrats--recover div.optimus div.group-payment-method-row-with-cvv .group-row,
.step_congrats_offline_payment .congrats--rejected .ui-card,
.step_congrats_offline_payment .congrats--rejected div.optimus div.group-payment-method-row-with-cvv .group-row,
.step_congrats_open_finance_pending .congrats--recover .ui-card,
.step_congrats_open_finance_pending .congrats--recover div.optimus div.group-payment-method-row-with-cvv .group-row,
.step_congrats_open_finance_pending .congrats--rejected .ui-card,
.step_congrats_open_finance_pending .congrats--rejected div.optimus div.group-payment-method-row-with-cvv .group-row,
.step_congrats_remedy_offer .congrats--recover .ui-card,
.step_congrats_remedy_offer .congrats--recover div.optimus div.group-payment-method-row-with-cvv .group-row,
.step_congrats_remedy_offer .congrats--rejected .ui-card,
.step_congrats_remedy_offer .congrats--rejected div.optimus div.group-payment-method-row-with-cvv .group-row,
.step_congrats_review_manual .congrats--recover .ui-card,
.step_congrats_review_manual .congrats--recover div.optimus div.group-payment-method-row-with-cvv .group-row,
.step_congrats_review_manual .congrats--rejected .ui-card,
.step_congrats_review_manual .congrats--rejected div.optimus div.group-payment-method-row-with-cvv .group-row,
div.optimus div.group-payment-method-row-with-cvv .step_congrats_bad_card_number .congrats--recover .group-row,
div.optimus div.group-payment-method-row-with-cvv .step_congrats_bad_card_number .congrats--rejected .group-row,
div.optimus div.group-payment-method-row-with-cvv .step_congrats_bad_other .congrats--recover .group-row,
div.optimus div.group-payment-method-row-with-cvv .step_congrats_bad_other .congrats--rejected .group-row,
div.optimus div.group-payment-method-row-with-cvv .step_congrats_call_for_auth .congrats--recover .group-row,
div.optimus div.group-payment-method-row-with-cvv .step_congrats_call_for_auth .congrats--rejected .group-row,
div.optimus div.group-payment-method-row-with-cvv .step_congrats_call_for_auth_how_to .congrats--recover .group-row,
div.optimus div.group-payment-method-row-with-cvv .step_congrats_call_for_auth_how_to .congrats--rejected .group-row,
div.optimus div.group-payment-method-row-with-cvv .step_congrats_call_for_auth_later .congrats--recover .group-row,
div.optimus div.group-payment-method-row-with-cvv .step_congrats_call_for_auth_later .congrats--rejected .group-row,
div.optimus div.group-payment-method-row-with-cvv .step_congrats_card_disabled .congrats--recover .group-row,
div.optimus div.group-payment-method-row-with-cvv .step_congrats_card_disabled .congrats--rejected .group-row,
div.optimus div.group-payment-method-row-with-cvv .step_congrats_contingency .congrats--recover .group-row,
div.optimus div.group-payment-method-row-with-cvv .step_congrats_contingency .congrats--rejected .group-row,
div.optimus div.group-payment-method-row-with-cvv .step_congrats_insufficient_amount .congrats--recover .group-row,
div.optimus div.group-payment-method-row-with-cvv .step_congrats_insufficient_amount .congrats--rejected .group-row,
div.optimus div.group-payment-method-row-with-cvv .step_congrats_invalid_installments .congrats--recover .group-row,
div.optimus div.group-payment-method-row-with-cvv .step_congrats_invalid_installments .congrats--rejected .group-row,
div.optimus div.group-payment-method-row-with-cvv .step_congrats_offline_payment .congrats--recover .group-row,
div.optimus div.group-payment-method-row-with-cvv .step_congrats_offline_payment .congrats--rejected .group-row,
div.optimus div.group-payment-method-row-with-cvv .step_congrats_open_finance_pending .congrats--recover .group-row,
div.optimus div.group-payment-method-row-with-cvv .step_congrats_open_finance_pending .congrats--rejected .group-row,
div.optimus div.group-payment-method-row-with-cvv .step_congrats_remedy_offer .congrats--recover .group-row,
div.optimus div.group-payment-method-row-with-cvv .step_congrats_remedy_offer .congrats--rejected .group-row,
div.optimus div.group-payment-method-row-with-cvv .step_congrats_review_manual .congrats--recover .group-row,
div.optimus div.group-payment-method-row-with-cvv .step_congrats_review_manual .congrats--rejected .group-row {
    margin-bottom: 0;
}
.step_congrats_bad_card_number .congrats--recover .group-back-url,
.step_congrats_bad_card_number .congrats--rejected .group-back-url,
.step_congrats_bad_other .congrats--recover .group-back-url,
.step_congrats_bad_other .congrats--rejected .group-back-url,
.step_congrats_call_for_auth .congrats--recover .group-back-url,
.step_congrats_call_for_auth .congrats--rejected .group-back-url,
.step_congrats_call_for_auth_how_to .congrats--recover .group-back-url,
.step_congrats_call_for_auth_how_to .congrats--rejected .group-back-url,
.step_congrats_call_for_auth_later .congrats--recover .group-back-url,
.step_congrats_call_for_auth_later .congrats--rejected .group-back-url,
.step_congrats_card_disabled .congrats--recover .group-back-url,
.step_congrats_card_disabled .congrats--rejected .group-back-url,
.step_congrats_contingency .congrats--recover .group-back-url,
.step_congrats_contingency .congrats--rejected .group-back-url,
.step_congrats_insufficient_amount .congrats--recover .group-back-url,
.step_congrats_insufficient_amount .congrats--rejected .group-back-url,
.step_congrats_invalid_installments .congrats--recover .group-back-url,
.step_congrats_invalid_installments .congrats--rejected .group-back-url,
.step_congrats_offline_payment .congrats--recover .group-back-url,
.step_congrats_offline_payment .congrats--rejected .group-back-url,
.step_congrats_open_finance_pending .congrats--recover .group-back-url,
.step_congrats_open_finance_pending .congrats--rejected .group-back-url,
.step_congrats_remedy_offer .congrats--recover .group-back-url,
.step_congrats_remedy_offer .congrats--rejected .group-back-url,
.step_congrats_review_manual .congrats--recover .group-back-url,
.step_congrats_review_manual .congrats--rejected .group-back-url {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    position: relative;
    right: 15em;
    top: 1.25em;
}
.step_congrats_bad_card_number .congrats--recover .group-back-url .chevron-left,
.step_congrats_bad_card_number .congrats--rejected .group-back-url .chevron-left,
.step_congrats_bad_other .congrats--recover .group-back-url .chevron-left,
.step_congrats_bad_other .congrats--rejected .group-back-url .chevron-left,
.step_congrats_call_for_auth .congrats--recover .group-back-url .chevron-left,
.step_congrats_call_for_auth .congrats--rejected .group-back-url .chevron-left,
.step_congrats_call_for_auth_how_to .congrats--recover .group-back-url .chevron-left,
.step_congrats_call_for_auth_how_to .congrats--rejected .group-back-url .chevron-left,
.step_congrats_call_for_auth_later .congrats--recover .group-back-url .chevron-left,
.step_congrats_call_for_auth_later .congrats--rejected .group-back-url .chevron-left,
.step_congrats_card_disabled .congrats--recover .group-back-url .chevron-left,
.step_congrats_card_disabled .congrats--rejected .group-back-url .chevron-left,
.step_congrats_contingency .congrats--recover .group-back-url .chevron-left,
.step_congrats_contingency .congrats--rejected .group-back-url .chevron-left,
.step_congrats_insufficient_amount .congrats--recover .group-back-url .chevron-left,
.step_congrats_insufficient_amount .congrats--rejected .group-back-url .chevron-left,
.step_congrats_invalid_installments .congrats--recover .group-back-url .chevron-left,
.step_congrats_invalid_installments .congrats--rejected .group-back-url .chevron-left,
.step_congrats_offline_payment .congrats--recover .group-back-url .chevron-left,
.step_congrats_offline_payment .congrats--rejected .group-back-url .chevron-left,
.step_congrats_open_finance_pending .congrats--recover .group-back-url .chevron-left,
.step_congrats_open_finance_pending .congrats--rejected .group-back-url .chevron-left,
.step_congrats_remedy_offer .congrats--recover .group-back-url .chevron-left,
.step_congrats_remedy_offer .congrats--rejected .group-back-url .chevron-left,
.step_congrats_review_manual .congrats--recover .group-back-url .chevron-left,
.step_congrats_review_manual .congrats--rejected .group-back-url .chevron-left {
    margin: 0 0.375em;
}
.step_congrats_bad_card_number .congrats--recover .group-back-url .andes-button,
.step_congrats_bad_card_number .congrats--rejected .group-back-url .andes-button,
.step_congrats_bad_other .congrats--recover .group-back-url .andes-button,
.step_congrats_bad_other .congrats--rejected .group-back-url .andes-button,
.step_congrats_call_for_auth .congrats--recover .group-back-url .andes-button,
.step_congrats_call_for_auth .congrats--rejected .group-back-url .andes-button,
.step_congrats_call_for_auth_how_to .congrats--recover .group-back-url .andes-button,
.step_congrats_call_for_auth_how_to .congrats--rejected .group-back-url .andes-button,
.step_congrats_call_for_auth_later .congrats--recover .group-back-url .andes-button,
.step_congrats_call_for_auth_later .congrats--rejected .group-back-url .andes-button,
.step_congrats_card_disabled .congrats--recover .group-back-url .andes-button,
.step_congrats_card_disabled .congrats--rejected .group-back-url .andes-button,
.step_congrats_contingency .congrats--recover .group-back-url .andes-button,
.step_congrats_contingency .congrats--rejected .group-back-url .andes-button,
.step_congrats_insufficient_amount .congrats--recover .group-back-url .andes-button,
.step_congrats_insufficient_amount .congrats--rejected .group-back-url .andes-button,
.step_congrats_invalid_installments .congrats--recover .group-back-url .andes-button,
.step_congrats_invalid_installments .congrats--rejected .group-back-url .andes-button,
.step_congrats_offline_payment .congrats--recover .group-back-url .andes-button,
.step_congrats_offline_payment .congrats--rejected .group-back-url .andes-button,
.step_congrats_open_finance_pending .congrats--recover .group-back-url .andes-button,
.step_congrats_open_finance_pending .congrats--rejected .group-back-url .andes-button,
.step_congrats_remedy_offer .congrats--recover .group-back-url .andes-button,
.step_congrats_remedy_offer .congrats--rejected .group-back-url .andes-button,
.step_congrats_review_manual .congrats--recover .group-back-url .andes-button,
.step_congrats_review_manual .congrats--rejected .group-back-url .andes-button {
    font-size: 0.875em;
    line-height: 0.875em;
    margin: 0;
}
.step_congrats_bad_card_number .redirect-view .layout-main,
.step_congrats_bad_other .redirect-view .layout-main,
.step_congrats_call_for_auth .redirect-view .layout-main,
.step_congrats_call_for_auth_how_to .redirect-view .layout-main,
.step_congrats_call_for_auth_later .redirect-view .layout-main,
.step_congrats_card_disabled .redirect-view .layout-main,
.step_congrats_contingency .redirect-view .layout-main,
.step_congrats_insufficient_amount .redirect-view .layout-main,
.step_congrats_invalid_installments .redirect-view .layout-main,
.step_congrats_offline_payment .redirect-view .layout-main,
.step_congrats_open_finance_pending .redirect-view .layout-main,
.step_congrats_remedy_offer .redirect-view .layout-main,
.step_congrats_review_manual .redirect-view .layout-main {
    max-width: 100%;
}
.step_error .text,
.step_expired .text,
.step_fatal .text,
.step_reversible_error .text {
    color: rgba(0, 0, 0, 0.9);
    font-size: 1em;
    margin-bottom: 1.5em;
}
.step_error .group-generic-message h1,
.step_expired .group-generic-message h1,
.step_fatal .group-generic-message h1,
.step_reversible_error .group-generic-message h1 {
    font-size: 1.25em;
    margin: 1.2em auto 0.6em;
    width: 15.85em;
}
.step_error .group-generic-message h2,
.step_expired .group-generic-message h2,
.step_fatal .group-generic-message h2,
.step_reversible_error .group-generic-message h2 {
    font-size: 1em;
    margin: 0 auto;
    width: 19.8125em;
}
.step_error .group-generic-message .andes-button--link,
.step_expired .group-generic-message .andes-button--link,
.step_fatal .group-generic-message .andes-button--link,
.step_reversible_error .group-generic-message .andes-button--link {
    display: inline-block;
    font-size: 1.125em;
    margin-top: 0.5em;
    width: 17.6111111111em;
}
.step_error .group-generic-message .andes-button--loud,
.step_expired .group-generic-message .andes-button--loud,
.step_fatal .group-generic-message .andes-button--loud,
.step_reversible_error .group-generic-message .andes-button--loud {
    margin: 1.5em auto 0;
    padding: 0;
    width: 15em;
}
.step_error .group-generic-message .pref-expired ~ .title-h3,
.step_error .group-generic-message .pref-unavailable ~ .title-h3,
.step_expired .group-generic-message .pref-expired ~ .title-h3,
.step_expired .group-generic-message .pref-unavailable ~ .title-h3,
.step_fatal .group-generic-message .pref-expired ~ .title-h3,
.step_fatal .group-generic-message .pref-unavailable ~ .title-h3,
.step_reversible_error .group-generic-message .pref-expired ~ .title-h3,
.step_reversible_error .group-generic-message .pref-unavailable ~ .title-h3 {
    text-align: center;
}
.step_error .layout-main .optimus,
.step_expired .layout-main .optimus,
.step_fatal .layout-main .optimus,
.step_reversible_error .layout-main .optimus {
    -webkit-align-items: center;
    align-items: center;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    justify-content: center;
    margin: 0 auto;
    max-width: 20em;
    padding: 0 1em;
    text-align: center;
}
.step_error .layout--embed .optimus,
.step_error .layout--redirect .optimus,
.step_expired .layout--embed .optimus,
.step_expired .layout--redirect .optimus,
.step_fatal .layout--embed .optimus,
.step_fatal .layout--redirect .optimus,
.step_reversible_error .layout--embed .optimus,
.step_reversible_error .layout--redirect .optimus {
    height: 100%;
    left: 50%;
    margin-left: -10em;
    position: absolute;
    top: 0;
}
.step_error .layout--modal .optimus .navbar,
.step_expired .layout--modal .optimus .navbar,
.step_fatal .layout--modal .optimus .navbar,
.step_reversible_error .layout--modal .optimus .navbar {
    position: absolute;
}
.step_error .pref-expired .oops__message,
.step_error .pref-unavailable .oops__message,
.step_expired .pref-expired .oops__message,
.step_expired .pref-unavailable .oops__message,
.step_fatal .pref-expired .oops__message,
.step_fatal .pref-unavailable .oops__message,
.step_reversible_error .pref-expired .oops__message,
.step_reversible_error .pref-unavailable .oops__message {
    font-weight: 600;
    margin-bottom: 0.5em;
    margin-top: 1.125em;
}
.step_error .navbar,
.step_expired .navbar,
.step_fatal .navbar,
.step_reversible_error .navbar {
    position: fixed;
}
.step_error .pref-expired .icon-timeout,
.step_error .pref-unavailable .icon-timeout,
.step_expired .pref-expired .icon-timeout,
.step_expired .pref-unavailable .icon-timeout,
.step_fatal .pref-expired .icon-timeout,
.step_fatal .pref-unavailable .icon-timeout,
.step_reversible_error .pref-expired .icon-timeout,
.step_reversible_error .pref-unavailable .icon-timeout {
    height: 5.75em;
    width: 5.625em;
}
.step_error .pref-expired .oops__message,
.step_error .pref-unavailable .oops__message,
.step_expired .pref-expired .oops__message,
.step_expired .pref-unavailable .oops__message,
.step_fatal .pref-expired .oops__message,
.step_fatal .pref-unavailable .oops__message,
.step_reversible_error .pref-expired .oops__message,
.step_reversible_error .pref-unavailable .oops__message {
    font-size: 1.25em;
}
.step_error .group-generic-message.expired .c-title,
.step_expired .group-generic-message.expired .c-title,
.step_fatal .group-generic-message.expired .c-title,
.step_reversible_error .group-generic-message.expired .c-title {
    text-align: center;
}
.step_exception .layout-main,
.step_exception .layout-main .expired-container,
.step_expired .layout-main,
.step_expired .layout-main .expired-container,
.step_not_found .layout-main,
.step_not_found .layout-main .expired-container {
    -webkit-align-items: center;
    align-items: center;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    justify-content: center;
}
.step_exception .layout-main .expired-container,
.step_expired .layout-main .expired-container,
.step_not_found .layout-main .expired-container {
    margin: 0 auto;
    max-width: 20em;
    padding: 0 1em;
    text-align: center;
}
.step_exception .layout--redirect .layout-main:before,
.step_expired .layout--redirect .layout-main:before,
.step_not_found .layout--redirect .layout-main:before {
    background: #009ee3;
    content: "";
    height: 3.75em;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
}
.step_exception .pref-expired .oops__message,
.step_exception .pref-unavailable .oops__message,
.step_expired .pref-expired .oops__message,
.step_expired .pref-unavailable .oops__message,
.step_not_found .pref-expired .oops__message,
.step_not_found .pref-unavailable .oops__message {
    font-weight: 600;
    margin-bottom: 0.5em;
    margin-top: 1.125em;
}
.step_exception .navbar,
.step_expired .navbar,
.step_not_found .navbar {
    position: fixed;
}
.step_exception .text,
.step_expired .text,
.step_not_found .text {
    color: rgba(0, 0, 0, 0.9);
    font-size: 1em;
    margin-bottom: 1.5em;
}
.step_exception .layout:not(.layout--modal) .layout-main,
.step_expired .layout:not(.layout--modal) .layout-main,
.step_not_found .layout:not(.layout--modal) .layout-main {
    height: 100%;
    left: 0;
    min-height: 21.875em;
    position: absolute;
    right: 0;
    text-align: center;
    top: 0;
    width: 100%;
}
.step_exception .pref-expired .icon-timeout,
.step_exception .pref-unavailable .icon-timeout,
.step_expired .pref-expired .icon-timeout,
.step_expired .pref-unavailable .icon-timeout,
.step_not_found .pref-expired .icon-timeout,
.step_not_found .pref-unavailable .icon-timeout {
    height: 5.75em;
    width: 5.625em;
}
.step_exception .pref-expired .oops__message,
.step_exception .pref-unavailable .oops__message,
.step_expired .pref-expired .oops__message,
.step_expired .pref-unavailable .oops__message,
.step_not_found .pref-expired .oops__message,
.step_not_found .pref-unavailable .oops__message {
    font-size: 1.25em;
}
.step_exception .page-mask,
.step_expired .page-mask,
.step_not_found .page-mask {
    -webkit-align-items: center;
    align-items: center;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    justify-content: center;
}
.step_identification_form .ui-card,
.step_identification_form div.optimus div.group-payment-method-row-with-cvv .group-row,
div.optimus div.group-payment-method-row-with-cvv .step_identification_form .group-row {
    padding: 2em;
}
.step_identification_form .ui-card .identification-card,
.step_identification_form div.optimus div.group-payment-method-row-with-cvv .group-row .identification-card,
div.optimus div.group-payment-method-row-with-cvv .step_identification_form .group-row .identification-card {
    margin: 0 auto 1.5em;
}
.step_identification_form .ui-card-wrapper {
    padding: 2.8125em 0 2.125em;
}
.step_identification_form .ui-card-wrapper .ui-document {
    margin: 0 auto;
}
.step_identification_form .c-title {
    margin-bottom: 1em;
}
.step_identification_form .ui-card,
.step_identification_form div.optimus div.group-payment-method-row-with-cvv .group-row,
div.optimus div.group-payment-method-row-with-cvv .step_identification_form .group-row {
    margin-bottom: 1.5em;
    margin-top: 0;
    overflow: visible;
    padding-left: 1.5em;
    padding-right: 1.5em;
}
.step_identification_form .ui-card .identification-card__list li:first-child span,
.step_identification_form
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .identification-card__list
    li:first-child
    span,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_identification_form
    .group-row
    .identification-card__list
    li:first-child
    span {
    color: gray;
    text-transform: uppercase;
}
.step_identification_form .andes-dropdown--form {
    margin-right: 1em;
    width: 6em;
}
.step_extra_data_form .ui-card,
.step_extra_data_form div.optimus div.group-payment-method-row-with-cvv .group-row,
div.optimus div.group-payment-method-row-with-cvv .step_extra_data_form .group-row {
    padding-bottom: 0;
}
.step_extra_data_form .ui-card .group-row > *,
.step_extra_data_form div.optimus div.group-payment-method-row-with-cvv .group-row .group-row > *,
div.optimus div.group-payment-method-row-with-cvv .step_extra_data_form .group-row .group-row > * {
    -webkit-flex-grow: 1;
    flex-grow: 1;
}
.step_extra_data_form .ui-card .group-row .andes-dropdown,
.step_extra_data_form div.optimus div.group-payment-method-row-with-cvv .group-row .group-row .andes-dropdown,
div.optimus div.group-payment-method-row-with-cvv .step_extra_data_form .group-row .group-row .andes-dropdown {
    margin-right: 1em;
}
.step_extra_data_form .ui-card .andes-dropdown.placeholder .andes-form-control__label,
.step_extra_data_form
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .andes-dropdown.placeholder
    .andes-form-control__label,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_extra_data_form
    .group-row
    .andes-dropdown.placeholder
    .andes-form-control__label {
    visibility: hidden;
}
.step_extra_data_form .ui-card .andes-dropdown.unselected select,
.step_extra_data_form div.optimus div.group-payment-method-row-with-cvv .group-row .andes-dropdown.unselected select,
div.optimus div.group-payment-method-row-with-cvv .step_extra_data_form .group-row .andes-dropdown.unselected select {
    color: #737373;
}
.step_extra_data_form .ui-card .identification-card,
.step_extra_data_form div.optimus div.group-payment-method-row-with-cvv .group-row .identification-card,
div.optimus div.group-payment-method-row-with-cvv .step_extra_data_form .group-row .identification-card {
    margin: 2em auto;
}
.step_extra_data_form .ui-card-wrapper {
    padding: 2.8125em 0 2.125em;
}
.step_extra_data_form .ui-card-wrapper .ui-document {
    margin: 0 auto;
}
.step_extra_data_form .ui-card,
.step_extra_data_form div.optimus div.group-payment-method-row-with-cvv .group-row,
div.optimus div.group-payment-method-row-with-cvv .step_extra_data_form .group-row {
    height: 24.0625em;
    margin-bottom: 1.5em;
    margin-top: 0;
    overflow: visible;
    padding-left: 1.5em;
    padding-right: 1.5em;
}
.step_extra_data_form .ui-card .group-row,
.step_extra_data_form div.optimus div.group-payment-method-row-with-cvv .group-row .group-row,
div.optimus div.group-payment-method-row-with-cvv .step_extra_data_form .group-row .group-row {
    -webkit-align-items: unset;
    align-items: unset;
    background-color: transparent;
    height: 5.25em;
    margin-bottom: 0;
    padding: 0;
}
.step_extra_data_form .ui-card .group-row > *,
.step_extra_data_form div.optimus div.group-payment-method-row-with-cvv .group-row .group-row > *,
div.optimus div.group-payment-method-row-with-cvv .step_extra_data_form .group-row .group-row > * {
    margin-right: 1em;
    width: 50%;
}
.step_extra_data_form .ui-card .group-row > :last-child,
.step_extra_data_form div.optimus div.group-payment-method-row-with-cvv .group-row .group-row > :last-child,
div.optimus div.group-payment-method-row-with-cvv .step_extra_data_form .group-row .group-row > :last-child {
    margin-right: 0;
}
.step_installments_form .andes-button {
    margin-bottom: 0;
}
.step_installments_form .layout--modal .scroller {
    height: 24.375em;
    margin-bottom: 1em;
}
.step_installments_form .layout--modal .user-header + .layout__col-content .scroller {
    height: 21.5625em;
}
.step_issuer_form .andes-button {
    margin-bottom: 0;
}
.step_mp_no_payment_option_form .no-payment-option,
.step_mp_payment_option_form .no-payment-option,
.step_payment_option_form .no-payment-option {
    padding: 2em;
}
.step_mp_no_payment_option_form .no-payment-option .title-h2,
.step_mp_payment_option_form .no-payment-option .title-h2,
.step_payment_option_form .no-payment-option .title-h2 {
    font-size: 1.25em;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 1.6em;
}
.step_mp_no_payment_option_form .no-payment-option .andes-button,
.step_mp_payment_option_form .no-payment-option .andes-button,
.step_payment_option_form .no-payment-option .andes-button {
    float: none;
}
.step_mp_no_payment_option_form .andes-button--quiet,
.step_mp_payment_option_form .andes-button--quiet,
.step_payment_option_form .andes-button--quiet {
    display: block;
    margin: 0 auto;
}
.step_mp_no_payment_option_form .select_mp_cards + .select_credit,
.step_mp_payment_option_form .select_mp_cards + .select_credit,
.step_payment_option_form .select_mp_cards + .select_credit {
    -webkit-border-top-left-radius: 0;
    border-top-left-radius: 0;
    -webkit-border-top-right-radius: 0;
    border-top-right-radius: 0;
    height: 4.75em;
    margin-top: -1.1875em;
}
.step_mp_no_payment_option_form .select_mp_cards + .select_credit li.item-consumer_credit_row,
.step_mp_payment_option_form .select_mp_cards + .select_credit li.item-consumer_credit_row,
.step_payment_option_form .select_mp_cards + .select_credit li.item-consumer_credit_row {
    border-top: 0.0625em solid #e5e5e5;
    margin-top: 0.125em;
}
.step_mp_no_payment_option_form .select_mp_cards + .select_credit li.item-consumer_credit_row div.row-details,
.step_mp_payment_option_form .select_mp_cards + .select_credit li.item-consumer_credit_row div.row-details,
.step_payment_option_form .select_mp_cards + .select_credit li.item-consumer_credit_row div.row-details {
    position: relative;
    top: -0.0625em;
}
.step_mp_no_payment_option_form .modal-content.group-modal .group-flex,
.step_mp_payment_option_form .modal-content.group-modal .group-flex,
.step_payment_option_form .modal-content.group-modal .group-flex {
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-direction: column;
    flex-direction: column;
    text-align: center;
}
.step_mp_no_payment_option_form .modal-content.group-modal .group-flex h2.title-h3,
.step_mp_payment_option_form .modal-content.group-modal .group-flex h2.title-h3,
.step_payment_option_form .modal-content.group-modal .group-flex h2.title-h3 {
    font-weight: 600;
}
.step_mp_no_payment_option_form .modal-content.group-modal .group-flex .title-h2,
.step_mp_payment_option_form .modal-content.group-modal .group-flex .title-h2,
.step_payment_option_form .modal-content.group-modal .group-flex .title-h2 {
    font-weight: 400;
}
.step_mp_no_payment_option_form #shield_footer.group-generic,
.step_mp_payment_option_form #shield_footer.group-generic,
.step_payment_option_form #shield_footer.group-generic {
    padding-bottom: 1em;
}
.step_mp_no_payment_option_form .andes-message,
.step_mp_payment_option_form .andes-message,
.step_payment_option_form .andes-message {
    margin-bottom: 1em;
}
.step_mp_no_payment_option_form .item-mp_login_credits_row label .group-media-object :nth-child(3),
.step_mp_no_payment_option_form .item-mp_login_row label .group-media-object :nth-child(3),
.step_mp_no_payment_option_form .item-opensea_credits_row label .group-media-object :nth-child(3),
.step_mp_payment_option_form .item-mp_login_credits_row label .group-media-object :nth-child(3),
.step_mp_payment_option_form .item-mp_login_row label .group-media-object :nth-child(3),
.step_mp_payment_option_form .item-opensea_credits_row label .group-media-object :nth-child(3),
.step_payment_option_form .item-mp_login_credits_row label .group-media-object :nth-child(3),
.step_payment_option_form .item-mp_login_row label .group-media-object :nth-child(3),
.step_payment_option_form .item-opensea_credits_row label .group-media-object :nth-child(3) {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row-reverse;
    flex-direction: row-reverse;
    left: 0;
    position: absolute;
    top: -0.25em;
    width: 100%;
}
.step_mp_no_payment_option_form .item-mp_login_credits_row label .group-media-object :nth-child(3) .andes-badge,
.step_mp_no_payment_option_form .item-mp_login_row label .group-media-object :nth-child(3) .andes-badge,
.step_mp_no_payment_option_form .item-opensea_credits_row label .group-media-object :nth-child(3) .andes-badge,
.step_mp_payment_option_form .item-mp_login_credits_row label .group-media-object :nth-child(3) .andes-badge,
.step_mp_payment_option_form .item-mp_login_row label .group-media-object :nth-child(3) .andes-badge,
.step_mp_payment_option_form .item-opensea_credits_row label .group-media-object :nth-child(3) .andes-badge,
.step_payment_option_form .item-mp_login_credits_row label .group-media-object :nth-child(3) .andes-badge,
.step_payment_option_form .item-mp_login_row label .group-media-object :nth-child(3) .andes-badge,
.step_payment_option_form .item-opensea_credits_row label .group-media-object :nth-child(3) .andes-badge {
    padding: 0.0625em;
}
.step_mp_no_payment_option_form
    .item-mp_login_credits_row
    label
    .group-media-object
    :nth-child(3)
    .andes-badge
    .andes-badge__content,
.step_mp_no_payment_option_form
    .item-mp_login_row
    label
    .group-media-object
    :nth-child(3)
    .andes-badge
    .andes-badge__content,
.step_mp_no_payment_option_form
    .item-opensea_credits_row
    label
    .group-media-object
    :nth-child(3)
    .andes-badge
    .andes-badge__content,
.step_mp_payment_option_form
    .item-mp_login_credits_row
    label
    .group-media-object
    :nth-child(3)
    .andes-badge
    .andes-badge__content,
.step_mp_payment_option_form
    .item-mp_login_row
    label
    .group-media-object
    :nth-child(3)
    .andes-badge
    .andes-badge__content,
.step_mp_payment_option_form
    .item-opensea_credits_row
    label
    .group-media-object
    :nth-child(3)
    .andes-badge
    .andes-badge__content,
.step_payment_option_form
    .item-mp_login_credits_row
    label
    .group-media-object
    :nth-child(3)
    .andes-badge
    .andes-badge__content,
.step_payment_option_form .item-mp_login_row label .group-media-object :nth-child(3) .andes-badge .andes-badge__content,
.step_payment_option_form
    .item-opensea_credits_row
    label
    .group-media-object
    :nth-child(3)
    .andes-badge
    .andes-badge__content {
    font-weight: 800;
    text-transform: uppercase;
}
.step_mp_no_payment_option_form
    .item-mp_login_row
    label
    .group-media-object
    div:nth-child(2)
    .row-details
    :nth-child(2),
.step_mp_payment_option_form .item-mp_login_row label .group-media-object div:nth-child(2) .row-details :nth-child(2),
.step_payment_option_form .item-mp_login_row label .group-media-object div:nth-child(2) .row-details :nth-child(2) {
    color: rgba(0, 0, 0, 0.55);
    font-size: 0.875em;
    padding-top: 0.25em;
}
.step_mp_no_payment_option_form
    .item-mp_login_row
    label
    .group-media-object
    div:nth-child(2)
    .row-details
    div.title_with_bpp
    svg,
.step_mp_payment_option_form
    .item-mp_login_row
    label
    .group-media-object
    div:nth-child(2)
    .row-details
    div.title_with_bpp
    svg,
.step_payment_option_form
    .item-mp_login_row
    label
    .group-media-object
    div:nth-child(2)
    .row-details
    div.title_with_bpp
    svg {
    font-size: unset;
    margin-bottom: 0.125em;
    margin-left: 0.5em;
    padding: 0;
    vertical-align: middle;
}
.step_mp_no_payment_option_form .item-mp_login_row label .group-media-object div:nth-child(2) :first-child,
.step_mp_payment_option_form .item-mp_login_row label .group-media-object div:nth-child(2) :first-child,
.step_payment_option_form .item-mp_login_row label .group-media-object div:nth-child(2) :first-child {
    font-weight: 400;
}
.step_mp_no_payment_option_form
    .item-mp_login_row
    label
    .group-media-object
    div:nth-child(3)
    .andes-badge
    .andes-badge__content,
.step_mp_payment_option_form
    .item-mp_login_row
    label
    .group-media-object
    div:nth-child(3)
    .andes-badge
    .andes-badge__content,
.step_payment_option_form
    .item-mp_login_row
    label
    .group-media-object
    div:nth-child(3)
    .andes-badge
    .andes-badge__content {
    -webkit-align-items: center;
    align-items: center;
    -webkit-column-gap: 0.3125em;
    -moz-column-gap: 0.3125em;
    column-gap: 0.3125em;
    display: -webkit-flex;
    display: flex;
    padding: 0.25em 0.375em 0.25em 0.625em;
    text-transform: unset;
}
.step_mp_no_payment_option_form .item-wallet_qr .row-details .title,
.step_mp_payment_option_form .item-wallet_qr .row-details .title,
.step_payment_option_form .item-wallet_qr .row-details .title {
    margin-bottom: 0.25em;
}
.step_mp_no_payment_option_form .item-wallet_qr .andes-badge .andes-badge__content,
.step_mp_payment_option_form .item-wallet_qr .andes-badge .andes-badge__content,
.step_payment_option_form .item-wallet_qr .andes-badge .andes-badge__content {
    color: #fff;
    font-size: 0.875em;
    font-weight: 700;
    text-transform: uppercase;
}
.step_mp_no_payment_option_form .icon-wrapper .icon-mercado-pago,
.step_mp_payment_option_form .icon-wrapper .icon-mercado-pago,
.step_payment_option_form .icon-wrapper .icon-mercado-pago {
    max-height: 1.5em;
    max-width: 1.5em;
}
.step_mp_no_payment_option_form .user-title + .scroller,
.step_mp_payment_option_form .user-title + .scroller,
.step_payment_option_form .user-title + .scroller {
    top: 9.125em;
}
.step_mp_no_payment_option_form .layout--redirect .modal-content.group-modal .modal-wrapper,
.step_mp_payment_option_form .layout--redirect .modal-content.group-modal .modal-wrapper,
.step_payment_option_form .layout--redirect .modal-content.group-modal .modal-wrapper {
    max-width: 70vh;
}
.step_mp_no_payment_option_form .layout--redirect .modal-content.group-modal .modal-wrapper .inner-wrapper,
.step_mp_payment_option_form .layout--redirect .modal-content.group-modal .modal-wrapper .inner-wrapper,
.step_payment_option_form .layout--redirect .modal-content.group-modal .modal-wrapper .inner-wrapper {
    padding: 3em;
}
.step_mp_no_payment_option_form .layout--redirect .modal-content.group-modal .modal-wrapper .inner-wrapper .header,
.step_mp_payment_option_form .layout--redirect .modal-content.group-modal .modal-wrapper .inner-wrapper .header,
.step_payment_option_form .layout--redirect .modal-content.group-modal .modal-wrapper .inner-wrapper .header {
    margin-bottom: 0.5em;
    padding: 0;
}
.step_mp_no_payment_option_form
    .layout--redirect
    .modal-content.group-modal
    .modal-wrapper
    .inner-wrapper
    .group-flex
    h2.title-h3,
.step_mp_payment_option_form
    .layout--redirect
    .modal-content.group-modal
    .modal-wrapper
    .inner-wrapper
    .group-flex
    h2.title-h3,
.step_payment_option_form
    .layout--redirect
    .modal-content.group-modal
    .modal-wrapper
    .inner-wrapper
    .group-flex
    h2.title-h3 {
    margin-bottom: 0.75em;
}
.step_mp_no_payment_option_form
    .layout--redirect
    .modal-content.group-modal
    .modal-wrapper
    .inner-wrapper
    .group-flex
    .andes-button--loud,
.step_mp_payment_option_form
    .layout--redirect
    .modal-content.group-modal
    .modal-wrapper
    .inner-wrapper
    .group-flex
    .andes-button--loud,
.step_payment_option_form
    .layout--redirect
    .modal-content.group-modal
    .modal-wrapper
    .inner-wrapper
    .group-flex
    .andes-button--loud {
    margin-top: 0.5em;
}
.step_mp_no_payment_option_form .layout--modal .modal-content.group-modal,
.step_mp_payment_option_form .layout--modal .modal-content.group-modal,
.step_payment_option_form .layout--modal .modal-content.group-modal {
    background-color: #ededed;
    -webkit-border-radius: 0.375em;
    border-radius: 0.375em;
    height: 35.375em;
    left: 50%;
    position: fixed;
    top: 1em;
    -webkit-transform: translate(-50%);
    transform: translate(-50%);
    width: 50.75em;
}
.step_mp_no_payment_option_form .layout--modal .modal-content.group-modal .modal-wrapper,
.step_mp_payment_option_form .layout--modal .modal-content.group-modal .modal-wrapper,
.step_payment_option_form .layout--modal .modal-content.group-modal .modal-wrapper {
    max-width: unset;
}
.step_mp_no_payment_option_form .layout--modal .modal-content.group-modal .modal-wrapper .inner-wrapper,
.step_mp_payment_option_form .layout--modal .modal-content.group-modal .modal-wrapper .inner-wrapper,
.step_payment_option_form .layout--modal .modal-content.group-modal .modal-wrapper .inner-wrapper {
    padding: 3em;
}
.step_mp_no_payment_option_form .layout--modal .modal-content.group-modal .modal-wrapper .inner-wrapper .header,
.step_mp_payment_option_form .layout--modal .modal-content.group-modal .modal-wrapper .inner-wrapper .header,
.step_payment_option_form .layout--modal .modal-content.group-modal .modal-wrapper .inner-wrapper .header {
    display: none;
}
.step_mp_no_payment_option_form .layout--modal .modal-content.group-modal .modal-wrapper .inner-wrapper .group-flex,
.step_mp_payment_option_form .layout--modal .modal-content.group-modal .modal-wrapper .inner-wrapper .group-flex,
.step_payment_option_form .layout--modal .modal-content.group-modal .modal-wrapper .inner-wrapper .group-flex {
    margin-top: 7.5em;
    padding: 0 2em;
}
.step_mp_no_payment_option_form
    .layout--modal
    .modal-content.group-modal
    .modal-wrapper
    .inner-wrapper
    .group-flex
    h2.title-h3,
.step_mp_payment_option_form
    .layout--modal
    .modal-content.group-modal
    .modal-wrapper
    .inner-wrapper
    .group-flex
    h2.title-h3,
.step_payment_option_form
    .layout--modal
    .modal-content.group-modal
    .modal-wrapper
    .inner-wrapper
    .group-flex
    h2.title-h3 {
    margin-bottom: 0.75em;
}
.step_mp_no_payment_option_form
    .layout--modal
    .modal-content.group-modal
    .modal-wrapper
    .inner-wrapper
    .group-flex
    .andes-button--loud,
.step_mp_payment_option_form
    .layout--modal
    .modal-content.group-modal
    .modal-wrapper
    .inner-wrapper
    .group-flex
    .andes-button--loud,
.step_payment_option_form
    .layout--modal
    .modal-content.group-modal
    .modal-wrapper
    .inner-wrapper
    .group-flex
    .andes-button--loud {
    margin-top: 0.5em;
}
.step_mp_no_payment_option_form
    .options-list__item:not(.disabled, .with-action-text, .with-switch)
    .options-list__label:before,
.step_mp_payment_option_form
    .options-list__item:not(.disabled, .with-action-text, .with-switch)
    .options-list__label:before,
.step_payment_option_form
    .options-list__item:not(.disabled, .with-action-text, .with-switch)
    .options-list__label:before {
    right: 2.125em;
}
.step_mp_no_payment_option_form .item-mp_login_row .andes-badge,
.step_mp_payment_option_form .item-mp_login_row .andes-badge,
.step_payment_option_form .item-mp_login_row .andes-badge {
    top: 0.25em;
}
.step_mp_no_payment_option_form .group-flex > .title-h2,
.step_mp_payment_option_form .group-flex > .title-h2,
.step_payment_option_form .group-flex > .title-h2 {
    margin-bottom: 0.5em;
}
.step_mp_no_payment_option_form .group-flex > .title-h2 + div.andes-badge,
.step_mp_payment_option_form .group-flex > .title-h2 + div.andes-badge,
.step_payment_option_form .group-flex > .title-h2 + div.andes-badge {
    margin-left: 1em;
    padding: 0.25em 0.375em 0.5em;
}
.step_mp_no_payment_option_form .group-flex > .title-h2 + div.andes-badge .andes-badge__content,
.step_mp_payment_option_form .group-flex > .title-h2 + div.andes-badge .andes-badge__content,
.step_payment_option_form .group-flex > .title-h2 + div.andes-badge .andes-badge__content {
    font-weight: 700;
    padding: 0;
}
.step_mp_no_payment_option_form .group-flex > .title-h2 + div.andes-badge svg,
.step_mp_payment_option_form .group-flex > .title-h2 + div.andes-badge svg,
.step_payment_option_form .group-flex > .title-h2 + div.andes-badge svg {
    margin-bottom: 0.0625em;
    vertical-align: middle;
}
.step_mp_no_payment_option_form .group-flex + p.text:first-of-type,
.step_mp_payment_option_form .group-flex + p.text:first-of-type,
.step_payment_option_form .group-flex + p.text:first-of-type {
    color: #000;
    margin-bottom: 1em;
}
.step_payment_unavailable .layout-main .optimus {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    justify-content: center;
}
.step_payment_unavailable .layout--embed .optimus,
.step_payment_unavailable .layout--redirect .optimus {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}
.step_payment_unavailable .group-media-object {
    display: block;
    height: auto;
    margin: auto;
    max-width: 18.75em;
    text-align: center;
}
.step_payment_unavailable .group-media-object > a {
    font-size: 1.125em;
}
.step_payment_unavailable .group-media-object .icon-wrapper {
    margin: auto;
    width: 6.375em;
}
.step_payment_unavailable .group-media-object .c-title {
    font-size: 1.25em;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 0.8em;
}
.step_payment_unavailable .group-media-object .text {
    color: #333;
    font-size: 1em;
    margin-bottom: 1em;
}
.step_processing .layout-main .optimus {
    -webkit-align-items: center;
    align-items: center;
}
.step_processing .processing {
    margin: -1em auto 0;
}
.step_review .andes-form-control,
.step_review_split_payment .andes-form-control {
    -webkit-flex-grow: 1;
    flex-grow: 1;
}
.step_review .group-split-card-review .group-row,
.step_review_split_payment .group-split-card-review .group-row {
    -webkit-border-radius: 0.25em 0.25em 0 0;
    border-radius: 0.25em 0.25em 0 0;
    margin-bottom: 0.0625em;
}
.step_review .group-split-card-review .group-row + .group-row,
.step_review_split_payment .group-split-card-review .group-row + .group-row {
    -webkit-border-radius: 0 0 0.25em 0.25em;
    border-radius: 0 0 0.25em 0.25em;
}
.step_review #g-recaptcha,
.step_review_split_payment #g-recaptcha {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-transform: scale(0.73);
    transform: scale(0.73);
}
.step_review #gctkn,
.step_review_split_payment #gctkn {
    display: none;
}
.step_review iframe,
.step_review_split_payment iframe {
    display: unset;
}
.step_review .group-summary > .group-summary__container .andes-button.andes-button--loud span.andes-button__content,
.step_review .sticky-container .andes-button.andes-button--loud span.andes-button__content,
.step_review_split_payment
    .group-summary
    > .group-summary__container
    .andes-button.andes-button--loud
    span.andes-button__content,
.step_review_split_payment .sticky-container .andes-button.andes-button--loud span.andes-button__content {
    padding-left: 0.5em;
}
.step_review
    .group-summary
    > .group-summary__container
    .andes-button.andes-button--loud
    span.andes-button__content:before,
.step_review .sticky-container .andes-button.andes-button--loud span.andes-button__content:before,
.step_review_split_payment
    .group-summary
    > .group-summary__container
    .andes-button.andes-button--loud
    span.andes-button__content:before,
.step_review_split_payment .sticky-container .andes-button.andes-button--loud span.andes-button__content:before {
    -webkit-background-size: cover;
    background-size: cover;
    background: url(https://http2.mlstatic.com/frontend-assets/px-checkout-frontend/62c51682870d62da04c4.svg) no-repeat;
    content: "";
    height: 0.9375em;
    left: -0.375em;
    position: relative;
    width: 0.8125em;
}
.step_review .group-total-summary .group-summary > .group-summary__container .andes-button.andes-button--loud span,
.step_review .group-total-summary ~ .form.group_form .sticky-container .andes-button.andes-button--loud span,
.step_review_split_payment
    .group-total-summary
    .group-summary
    > .group-summary__container
    .andes-button.andes-button--loud
    span,
.step_review_split_payment
    .group-total-summary
    ~ .form.group_form
    .sticky-container
    .andes-button.andes-button--loud
    span {
    padding-left: 0;
}
.step_review
    .group-total-summary
    .group-summary
    > .group-summary__container
    .andes-button.andes-button--loud
    span:before,
.step_review .group-total-summary ~ .form.group_form .sticky-container .andes-button.andes-button--loud span:before,
.step_review_split_payment
    .group-total-summary
    .group-summary
    > .group-summary__container
    .andes-button.andes-button--loud
    span:before,
.step_review_split_payment
    .group-total-summary
    ~ .form.group_form
    .sticky-container
    .andes-button.andes-button--loud
    span:before {
    display: none;
}
.step_review .group-row,
.step_review_split_payment .group-row {
    background: #fff;
}
.step_review .group-row + p.text,
.step_review_split_payment .group-row + p.text {
    color: rgba(0, 0, 0, 0.9);
    font-size: 1em;
    font-weight: 600;
    margin: 1.5em 0 0.5em;
}
.step_review .group-row + p.text + .group-row,
.step_review_split_payment .group-row + p.text + .group-row {
    border-bottom: 0.0625em solid rgba(0, 0, 0, 0.1);
    -webkit-border-radius: 0.25em 0.25em 0 0;
    border-radius: 0.25em 0.25em 0 0;
    margin-bottom: 0;
}
.step_review .group-row + p.text + .group-row + .group-row,
.step_review_split_payment .group-row + p.text + .group-row + .group-row {
    -webkit-border-radius: 0 0 0.25em 0.25em;
    border-radius: 0 0 0.25em 0.25em;
}
.step_review .group-row + p.text + .group-row + .group-row .text_title,
.step_review_split_payment .group-row + p.text + .group-row + .group-row .text_title {
    display: inline-block;
}
.step_review .group-row + p.text + .group-row + .group-row .text_title + .text_promo,
.step_review_split_payment .group-row + p.text + .group-row + .group-row .text_title + .text_promo {
    margin-left: 0.5em;
}
.step_review .group-row-banner-container .row-banner,
.step_review_split_payment .group-row-banner-container .row-banner {
    margin-bottom: 0.75em;
}
.step_review .group-row,
.step_review_split_payment .group-row {
    -webkit-border-radius: 0.25em;
    border-radius: 0.25em;
}
.step_review .group-row .icon-mercado-credito svg,
.step_review_split_payment .group-row .icon-mercado-credito svg {
    max-height: 2.5em;
    max-width: 2.5em;
}
.step_review .group-generic-block + .group-row,
.step_review_split_payment .group-generic-block + .group-row {
    background-color: #f5f5f5;
    -webkit-border-radius: 0.375em;
    border-radius: 0.375em;
    margin-top: 1em;
    min-height: 5.9375em;
}
.step_review .group-generic-block + .group-row .title,
.step_review_split_payment .group-generic-block + .group-row .title {
    font-size: 0.875em;
    font-weight: 600;
    line-height: 1.5;
}
.step_review .group-generic-block + .group-row .text,
.step_review_split_payment .group-generic-block + .group-row .text {
    color: rgba(0, 0, 0, 0.9);
    line-height: 1.25;
}
.step_review .group-generic-block + .group-row .row-details,
.step_review_split_payment .group-generic-block + .group-row .row-details {
    margin-bottom: 0.5em;
}
.step_review .group-generic-block + .group-row .andes-button--link,
.step_review_split_payment .group-generic-block + .group-row .andes-button--link {
    height: 100%;
}
.step_review .group-generic-block + .group-row .andes-button__content,
.step_review_split_payment .group-generic-block + .group-row .andes-button__content {
    line-height: 1.25;
}
.step_review .group-generic-block + .group-row #dismiss_consumer_credits,
.step_review_split_payment .group-generic-block + .group-row #dismiss_consumer_credits {
    -webkit-align-self: flex-start;
    align-self: flex-start;
}
.step_review .group-generic-block + .group-row #dismiss_consumer_credits .andes-button:before,
.step_review_split_payment .group-generic-block + .group-row #dismiss_consumer_credits .andes-button:before {
    background: url(https://http2.mlstatic.com/frontend-assets/px-checkout-frontend/cfd97ffb564f56feb1d9.svg) no-repeat;
    content: "";
    display: block;
    height: 1.25em;
    width: 1.25em;
}
.step_review .group-generic-block + .group-row > .group-media-object,
.step_review_split_payment .group-generic-block + .group-row > .group-media-object {
    border: none;
}
.step_review .andes-message,
.step_review_split_payment .andes-message {
    margin-bottom: 1em;
}
.step_review #group_switch_alternative_payment_method .ui-card,
.step_review #group_switch_alternative_payment_method div.optimus div.group-payment-method-row-with-cvv .group-row,
.step_review_split_payment #group_switch_alternative_payment_method .ui-card,
.step_review_split_payment
    #group_switch_alternative_payment_method
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row,
div.optimus div.group-payment-method-row-with-cvv .step_review #group_switch_alternative_payment_method .group-row,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_review_split_payment
    #group_switch_alternative_payment_method
    .group-row {
    -webkit-align-items: center;
    align-items: center;
    display: -webkit-flex;
    display: flex;
    padding: 1em 3em 1em 2em;
}
.step_review #group_switch_alternative_payment_method .ui-card p.text,
.step_review
    #group_switch_alternative_payment_method
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    p.text,
.step_review_split_payment #group_switch_alternative_payment_method .ui-card p.text,
.step_review_split_payment
    #group_switch_alternative_payment_method
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    p.text,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_review
    #group_switch_alternative_payment_method
    .group-row
    p.text,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_review_split_payment
    #group_switch_alternative_payment_method
    .group-row
    p.text {
    color: #000;
    font-weight: 400;
    margin-left: 0.3125em;
}
.step_review #group_switch_alternative_payment_method .ui-card .andes-checkbox,
.step_review
    #group_switch_alternative_payment_method
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .andes-checkbox,
.step_review_split_payment #group_switch_alternative_payment_method .ui-card .andes-checkbox,
.step_review_split_payment
    #group_switch_alternative_payment_method
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .andes-checkbox,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_review
    #group_switch_alternative_payment_method
    .group-row
    .andes-checkbox,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_review_split_payment
    #group_switch_alternative_payment_method
    .group-row
    .andes-checkbox {
    -webkit-align-items: center;
    align-items: center;
    display: -webkit-flex;
    display: flex;
}
.step_review #group_switch_alternative_payment_method .ui-card .andes-checkbox input.andes-checkbox__input,
.step_review
    #group_switch_alternative_payment_method
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .andes-checkbox
    input.andes-checkbox__input,
.step_review_split_payment
    #group_switch_alternative_payment_method
    .ui-card
    .andes-checkbox
    input.andes-checkbox__input,
.step_review_split_payment
    #group_switch_alternative_payment_method
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .andes-checkbox
    input.andes-checkbox__input,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_review
    #group_switch_alternative_payment_method
    .group-row
    .andes-checkbox
    input.andes-checkbox__input,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_review_split_payment
    #group_switch_alternative_payment_method
    .group-row
    .andes-checkbox
    input.andes-checkbox__input {
    margin: 0.25em 0 0;
    position: relative;
    width: 0.625em;
}
.step_review #group_switch_alternative_payment_method .ui-card .andes-checkbox span.andes-checkbox__mimic,
.step_review
    #group_switch_alternative_payment_method
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .andes-checkbox
    span.andes-checkbox__mimic,
.step_review_split_payment #group_switch_alternative_payment_method .ui-card .andes-checkbox span.andes-checkbox__mimic,
.step_review_split_payment
    #group_switch_alternative_payment_method
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .andes-checkbox
    span.andes-checkbox__mimic,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_review
    #group_switch_alternative_payment_method
    .group-row
    .andes-checkbox
    span.andes-checkbox__mimic,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_review_split_payment
    #group_switch_alternative_payment_method
    .group-row
    .andes-checkbox
    span.andes-checkbox__mimic {
    position: relative;
}
.step_review #group_content_combination .title-h2,
.step_review_split_payment #group_content_combination .title-h2 {
    font-size: 0.875em;
}
.step_review .free-interest,
.step_review_split_payment .free-interest {
    display: -webkit-inline-flex;
    display: inline-flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    width: 100%;
}
.step_review .free-interest .andes-list__item-first-column,
.step_review_split_payment .free-interest .andes-list__item-first-column {
    -webkit-flex-grow: unset;
    flex-grow: unset;
}
.step_review .free-interest .option-additional-info,
.step_review_split_payment .free-interest .option-additional-info {
    margin-left: 0.25em;
}
.step_review .free-interest .option-additional-info .installment__interest,
.step_review_split_payment .free-interest .option-additional-info .installment__interest {
    font-size: 0.875em;
}
.step_review #group_pay :first-child .ui-card,
.step_review #group_pay :first-child div.optimus div.group-payment-method-row-with-cvv .group-row,
.step_review_split_payment #group_pay :first-child .ui-card,
.step_review_split_payment #group_pay :first-child div.optimus div.group-payment-method-row-with-cvv .group-row,
div.optimus div.group-payment-method-row-with-cvv .step_review #group_pay :first-child .group-row,
div.optimus div.group-payment-method-row-with-cvv .step_review_split_payment #group_pay :first-child .group-row {
    -webkit-border-radius: 0;
    border-radius: 0;
}
.step_review #group_pay :only-child .ui-card,
.step_review #group_pay :only-child div.optimus div.group-payment-method-row-with-cvv .group-row,
.step_review_split_payment #group_pay :only-child .ui-card,
.step_review_split_payment #group_pay :only-child div.optimus div.group-payment-method-row-with-cvv .group-row,
div.optimus div.group-payment-method-row-with-cvv .step_review #group_pay :only-child .group-row,
div.optimus div.group-payment-method-row-with-cvv .step_review_split_payment #group_pay :only-child .group-row {
    -webkit-border-radius: 0 0 0.375em 0.375em;
    border-radius: 0 0 0.375em 0.375em;
}
.step_review .group-summary,
.step_review_split_payment .group-summary {
    background: #fff;
}
.step_review .layout__col-content .title-h2,
.step_review_split_payment .layout__col-content .title-h2 {
    margin: 2em 0 0.75em;
}
.step_review .layout__col-content .group-flex:first-child,
.step_review_split_payment .layout__col-content .group-flex:first-child {
    -webkit-flex-direction: row;
    flex-direction: row;
    margin: 1.625em 0 1.5em;
    padding-top: 0.375em;
}
.step_review .layout__col-content .group-flex:first-child .c-title,
.step_review_split_payment .layout__col-content .group-flex:first-child .c-title {
    margin: 0;
}
.step_review .layout__col-content .group-split-card-review .title-h2,
.step_review_split_payment .layout__col-content .group-split-card-review .title-h2 {
    margin-top: 1.5em;
}
.step_review .layout__col-content .ui-card,
.step_review .layout__col-content div.optimus div.group-payment-method-row-with-cvv .group-row,
.step_review_split_payment .layout__col-content .ui-card,
.step_review_split_payment .layout__col-content div.optimus div.group-payment-method-row-with-cvv .group-row,
div.optimus div.group-payment-method-row-with-cvv .step_review .layout__col-content .group-row,
div.optimus div.group-payment-method-row-with-cvv .step_review_split_payment .layout__col-content .group-row {
    padding: 1.5em 2em;
}
.step_review .layout__col-content .ui-card.options-list,
.step_review .layout__col-content div.optimus div.group-payment-method-row-with-cvv .options-list.group-row,
.step_review_split_payment .layout__col-content .ui-card.options-list,
.step_review_split_payment
    .layout__col-content
    div.optimus
    div.group-payment-method-row-with-cvv
    .options-list.group-row,
div.optimus div.group-payment-method-row-with-cvv .step_review .layout__col-content .options-list.group-row,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_review_split_payment
    .layout__col-content
    .options-list.group-row {
    padding: 0;
}
.step_review .layout__col-content .ui-card form,
.step_review .layout__col-content div.optimus div.group-payment-method-row-with-cvv .group-row form,
.step_review_split_payment .layout__col-content .ui-card form,
.step_review_split_payment .layout__col-content div.optimus div.group-payment-method-row-with-cvv .group-row form,
div.optimus div.group-payment-method-row-with-cvv .step_review .layout__col-content .group-row form,
div.optimus div.group-payment-method-row-with-cvv .step_review_split_payment .layout__col-content .group-row form {
    -webkit-align-items: center;
    align-items: center;
    display: -webkit-flex;
    display: flex;
}
.step_review .layout__col-content .ui-card .icon-wrapper,
.step_review .layout__col-content div.optimus div.group-payment-method-row-with-cvv .group-row .icon-wrapper,
.step_review_split_payment .layout__col-content .ui-card .icon-wrapper,
.step_review_split_payment
    .layout__col-content
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .icon-wrapper,
div.optimus div.group-payment-method-row-with-cvv .step_review .layout__col-content .group-row .icon-wrapper,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_review_split_payment
    .layout__col-content
    .group-row
    .icon-wrapper {
    margin-right: 1.5em;
}
.step_review .layout__col-content .content .title-h3,
.step_review_split_payment .layout__col-content .content .title-h3 {
    color: rgba(0, 0, 0, 0.55);
    font-size: 12px;
    margin: 1.3333333333em auto 0;
    max-width: 34.5em;
}
.step_review .group-total-summary ~ .form.group_form .icon-wrapper.icon-card-cvv,
.step_review_split_payment .group-total-summary ~ .form.group_form .icon-wrapper.icon-card-cvv {
    margin-right: 0;
}
.step_review .group-captcha .andes-button,
.step_review_split_payment .group-captcha .andes-button {
    margin-top: 0.75em;
}
.step_review .group-captcha .text,
.step_review_split_payment .group-captcha .text {
    color: #f23d4f;
    font-size: 0.875em;
    margin: 0 auto 0.75em;
    text-align: center;
}
.step_review_split_payment.modal-view .scroller,
.step_review_split_payment_split_payment.modal-view .scroller {
    margin-bottom: 1.5em;
}
.step_review .layout--modal #shield_footer,
.step_review_split_payment .layout--modal #shield_footer {
    bottom: -0.375em;
    position: absolute;
    width: 100%;
}
.step_review .layout--modal #shield_footer .text span,
.step_review_split_payment .layout--modal #shield_footer .text span {
    font-size: 0.75em;
}
.step_review .layout--modal .andes-button.andes-button--loud,
.step_review_split_payment .layout--modal .andes-button.andes-button--loud {
    bottom: 0.7142857143em;
}
.step_review .layout--modal .layout__col-sidebar .andes-button.andes-button--loud,
.step_review_split_payment .layout--modal .layout__col-sidebar .andes-button.andes-button--loud {
    margin-bottom: 0.1875em;
}
.step_review .layout--modal .group-captcha #g-recaptcha,
.step_review_split_payment .layout--modal .group-captcha #g-recaptcha {
    bottom: 6.25em;
    position: absolute;
    width: 100%;
}
.step_review .layout--modal .group-captcha .text,
.step_review_split_payment .layout--modal .group-captcha .text {
    bottom: 5.5714285714em;
    color: #f23d4f;
    font-size: 0.875em;
    height: 1.7142857143em;
    margin: 0 auto 0.75em;
    position: absolute;
    text-align: center;
}
.step_review .layout--modal .group-generic#group_shield,
.step_review_split_payment .layout--modal .group-generic#group_shield {
    background: #fff;
    -webkit-border-radius: 0.375em;
    border-radius: 0.375em;
    left: 0;
    padding-top: 3.75em;
    position: absolute;
    top: -3.75em;
    width: 50.75em;
    z-index: 201;
}
.step_review .layout--modal .group-generic#group_shield .group-flex,
.step_review_split_payment .layout--modal .group-generic#group_shield .group-flex {
    -webkit-align-items: center;
    align-items: center;
    background: url(https://http2.mlstatic.com/frontend-assets/px-checkout-frontend/c35678755dee1b384ef9.svg) no-repeat;
    background-position: top;
    -webkit-background-size: 20.4375em auto;
    background-size: 20.4375em auto;
    -webkit-flex-direction: column;
    flex-direction: column;
    padding: 7.125em 14em;
    text-align: center;
}
.step_review .layout--modal .group-generic#group_shield .group-flex .title-h3,
.step_review_split_payment .layout--modal .group-generic#group_shield .group-flex .title-h3 {
    font-weight: 600;
    margin-top: 0.5em;
}
.step_review .layout--modal .group-generic#group_shield .group-flex .title-h2,
.step_review_split_payment .layout--modal .group-generic#group_shield .group-flex .title-h2 {
    font-weight: 400;
    margin-top: 0.5em;
}
.step_review .layout--modal .group-generic#group_shield .group-flex .kyc-why-link,
.step_review_split_payment .layout--modal .group-generic#group_shield .group-flex .kyc-why-link {
    color: rgba(71, 154, 209, 0.4);
    font-size: 14px;
    font-weight: 600;
}
.step_review .layout--modal .group-generic#group_shield .group-flex .andes-button.andes-button--loud,
.step_review_split_payment .layout--modal .group-generic#group_shield .group-flex .andes-button.andes-button--loud {
    margin-bottom: 0.5em;
    margin-top: 1.5em;
}
.step_review .animated-content .group_form .ui-card,
.step_review .animated-content .group_form div.optimus div.group-payment-method-row-with-cvv .group-row,
.step_review_split_payment .animated-content .group_form .ui-card,
.step_review_split_payment .animated-content .group_form div.optimus div.group-payment-method-row-with-cvv .group-row,
div.optimus div.group-payment-method-row-with-cvv .step_review .animated-content .group_form .group-row,
div.optimus div.group-payment-method-row-with-cvv .step_review_split_payment .animated-content .group_form .group-row {
    margin-top: 0;
}
.step_review.site-mco .captcha-terms,
.step_review_split_payment.site-mco .captcha-terms {
    margin-bottom: 1em;
}
.step_review.site-mco .captcha-terms.logged,
.step_review_split_payment.site-mco .captcha-terms.logged {
    margin-top: 0;
}
.step_review.site-mco .group-back-url,
.step_review_split_payment.site-mco .group-back-url {
    margin-top: 0.5em;
}
.step_review #group_pay .ui-card,
.step_review #group_pay div.optimus div.group-payment-method-row-with-cvv .group-row,
.step_review_split_payment #group_pay .ui-card,
.step_review_split_payment #group_pay div.optimus div.group-payment-method-row-with-cvv .group-row,
div.optimus div.group-payment-method-row-with-cvv .step_review #group_pay .group-row,
div.optimus div.group-payment-method-row-with-cvv .step_review_split_payment #group_pay .group-row {
    height: 7em;
    padding: 1.25em 2em;
}
.step_review #group_pay .row_cvv,
.step_review_split_payment #group_pay .row_cvv {
    display: -webkit-flex;
    display: flex;
}
.step_review #group_pay .row_cvv .icon-card-cvv,
.step_review_split_payment #group_pay .row_cvv .icon-card-cvv {
    margin-left: 0.75em;
    width: 7.9375em;
}
.step_review .group-row,
.step_review_split_payment .group-row {
    -webkit-border-radius: 0.25em 0.25em 0 0;
    border-radius: 0.25em 0.25em 0 0;
    margin-bottom: 0.0625em;
}
.step_review .group-row + .group-row,
.step_review_split_payment .group-row + .group-row {
    -webkit-border-radius: 0 0 0.25em 0.25em;
    border-radius: 0 0 0.25em 0.25em;
}
.step_review .group-total-summary + .c-title,
.step_review_split_payment .group-total-summary + .c-title {
    font-size: 1.125em;
    font-weight: 700;
    margin: 1.5em 0 1em;
}
.step_review .group-total-summary + .c-title + .group-row,
.step_review_split_payment .group-total-summary + .c-title + .group-row {
    min-height: 4.625em;
}
.step_review .andes-button + .text.gray,
.step_review_split_payment .andes-button + .text.gray {
    text-align: center;
}
.step_review .group-row + .group-generic .aspirational.andes-message--neutral,
.step_review_split_payment .group-row + .group-generic .aspirational.andes-message--neutral {
    margin-top: 2em;
}
.step_review .layout--embed .modal-content .header + .content,
.step_review .layout--redirect .modal-content .header + .content,
.step_review_split_payment .layout--embed .modal-content .header + .content,
.step_review_split_payment .layout--redirect .modal-content .header + .content {
    padding: 0 2.5em;
}
.step_review #group_pay .icon-wrapper,
.step_review_split_payment #group_pay .icon-wrapper {
    padding-top: 0.375em;
}
.step_review #group_content_combination .c-title,
.step_review_split_payment #group_content_combination .c-title {
    margin: 1.25em 0 0.625em;
}
.step_review #group_content_combination .title-h2,
.step_review_split_payment #group_content_combination .title-h2 {
    margin-top: 0;
}
.step_review form#group_installment .ui-card-wrapper .group-generic,
.step_review_split_payment form#group_installment .ui-card-wrapper .group-generic {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}
.step_review form#group_installment .ui-card-wrapper .group-generic .icon-wrapper,
.step_review_split_payment form#group_installment .ui-card-wrapper .group-generic .icon-wrapper {
    margin-right: 1.125em;
    vertical-align: middle;
}
.step_review form#group_installment .ui-card-wrapper .ui-card,
.step_review form#group_installment .ui-card-wrapper div.optimus div.group-payment-method-row-with-cvv .group-row,
.step_review_split_payment form#group_installment .ui-card-wrapper .ui-card,
.step_review_split_payment
    form#group_installment
    .ui-card-wrapper
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row,
div.optimus div.group-payment-method-row-with-cvv .step_review form#group_installment .ui-card-wrapper .group-row,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_review_split_payment
    form#group_installment
    .ui-card-wrapper
    .group-row {
    min-height: 7em;
    overflow: visible;
    padding: 1.25em 2em;
}
.step_review form#group_installment .ui-card-wrapper .ui-card .andes-message--quiet,
.step_review
    form#group_installment
    .ui-card-wrapper
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .andes-message--quiet,
.step_review_split_payment form#group_installment .ui-card-wrapper .ui-card .andes-message--quiet,
.step_review_split_payment
    form#group_installment
    .ui-card-wrapper
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .andes-message--quiet,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_review
    form#group_installment
    .ui-card-wrapper
    .group-row
    .andes-message--quiet,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_review_split_payment
    form#group_installment
    .ui-card-wrapper
    .group-row
    .andes-message--quiet {
    margin-top: 2.375em;
}
.step_review #installments_group_generic .option-additional-info,
.step_review_split_payment #installments_group_generic .option-additional-info {
    padding: 0.875em 0;
}
.step_express #group_installments,
.step_paypal_express #group_installments {
    -webkit-flex-grow: 1;
    flex-grow: 1;
}
.step_express .group-summary > .group-summary__container .andes-button.andes-button--loud span,
.step_express .sticky-container .andes-button.andes-button--loud span,
.step_paypal_express .group-summary > .group-summary__container .andes-button.andes-button--loud span,
.step_paypal_express .sticky-container .andes-button.andes-button--loud span {
    padding-left: 0.5em;
}
.step_express .group-summary > .group-summary__container .andes-button.andes-button--loud span:before,
.step_express .sticky-container .andes-button.andes-button--loud span:before,
.step_paypal_express .group-summary > .group-summary__container .andes-button.andes-button--loud span:before,
.step_paypal_express .sticky-container .andes-button.andes-button--loud span:before {
    -webkit-background-size: cover;
    background-size: cover;
    background: url(https://http2.mlstatic.com/frontend-assets/px-checkout-frontend/62c51682870d62da04c4.svg) no-repeat;
    content: "";
    height: 0.9375em;
    left: -0.375em;
    position: relative;
    width: 0.8125em;
}
.step_express .layout--modal #shield_footer,
.step_paypal_express .layout--modal #shield_footer {
    bottom: -0.375em;
    position: absolute;
    width: 100%;
}
.step_express .layout--modal #shield_footer .text span,
.step_paypal_express .layout--modal #shield_footer .text span {
    font-size: 0.75em;
}
.step_express .layout--modal .andes-button.andes-button--loud,
.step_paypal_express .layout--modal .andes-button.andes-button--loud {
    bottom: 0.7142857143em;
}
.step_express .layout--modal .text.centered,
.step_paypal_express .layout--modal .text.centered {
    bottom: 0;
}
.step_express .layout--modal .scroller,
.step_paypal_express .layout--modal .scroller {
    height: 24.375em;
    margin-bottom: 1em;
}
.step_express .layout--modal .user-header + .layout__col-content .scroller,
.step_paypal_express .layout--modal .user-header + .layout__col-content .scroller {
    height: 21.5625em;
}
.step_express
    .group-total-summary
    .group-summary
    > .group-summary__container
    .andes-button.andes-button--loud
    span:before,
.step_paypal_express
    .group-total-summary
    .group-summary
    > .group-summary__container
    .andes-button.andes-button--loud
    span:before {
    display: none;
}
.step_express .group-row,
.step_paypal_express .group-row {
    -webkit-border-radius: 0.25em 0.25em 0 0;
    border-radius: 0.25em 0.25em 0 0;
    margin-bottom: 0.0625em;
}
.step_express .group-row + .group-row,
.step_paypal_express .group-row + .group-row {
    -webkit-border-radius: 0 0 0.25em 0.25em;
    border-radius: 0 0 0.25em 0.25em;
}
.step_express .group-total-summary + .c-title,
.step_paypal_express .group-total-summary + .c-title {
    font-size: 1.125em;
    font-weight: 700;
    margin: 1.5em 0 1em;
}
.step_express .andes-button + .text.gray,
.step_paypal_express .andes-button + .text.gray {
    text-align: center;
}
.step_express .row_cvv,
.step_paypal_express .row_cvv {
    display: -webkit-inline-flex;
    display: inline-flex;
    -webkit-flex-direction: row-reverse;
    flex-direction: row-reverse;
    width: 100%;
}
.step_express .row_cvv .icon-wrapper,
.step_paypal_express .row_cvv .icon-wrapper {
    margin-right: 1em;
}
.step_express .group-row + p.text,
.step_paypal_express .group-row + p.text {
    color: rgba(0, 0, 0, 0.9);
    font-size: 1em;
    font-weight: 600;
    margin: 1.5em 0 0.5em;
}
.step_express .group-row + p.text + .group-row,
.step_paypal_express .group-row + p.text + .group-row {
    border-bottom: 0.0625em solid rgba(0, 0, 0, 0.1);
    -webkit-border-radius: 0.25em 0.25em 0 0;
    border-radius: 0.25em 0.25em 0 0;
    margin-bottom: 0;
}
.step_express .group-row + p.text + .group-row + .group-row,
.step_paypal_express .group-row + p.text + .group-row + .group-row {
    -webkit-border-radius: 0 0 0.25em 0.25em;
    border-radius: 0 0 0.25em 0.25em;
}
.step_express .group-row + p.text + .group-row + .group-row .text_title,
.step_paypal_express .group-row + p.text + .group-row + .group-row .text_title {
    display: inline-block;
}
.step_express .group-row + p.text + .group-row + .group-row .text_title + .text_promo,
.step_paypal_express .group-row + p.text + .group-row + .group-row .text_title + .text_promo {
    margin-left: 0.5em;
}
.step_express .group-row,
.step_paypal_express .group-row {
    -webkit-border-radius: 0.25em;
    border-radius: 0.25em;
}
.step_express .group-row .icon-mercado-credito svg,
.step_paypal_express .group-row .icon-mercado-credito svg {
    max-height: 2.5em;
    max-width: 2.5em;
}
.step_express .group-generic-block + .group-row,
.step_paypal_express .group-generic-block + .group-row {
    background-color: #f5f5f5;
    -webkit-border-radius: 0.375em;
    border-radius: 0.375em;
    margin-top: 1em;
    min-height: 5.9375em;
}
.step_express .group-generic-block + .group-row .title,
.step_paypal_express .group-generic-block + .group-row .title {
    font-size: 0.875em;
    font-weight: 600;
    line-height: 1.5;
}
.step_express .group-generic-block + .group-row .text,
.step_paypal_express .group-generic-block + .group-row .text {
    color: rgba(0, 0, 0, 0.9);
    line-height: 1.25;
}
.step_express .group-generic-block + .group-row .row-details,
.step_paypal_express .group-generic-block + .group-row .row-details {
    margin-bottom: 0.5em;
}
.step_express .group-generic-block + .group-row .andes-button--link,
.step_paypal_express .group-generic-block + .group-row .andes-button--link {
    height: 100%;
}
.step_express .group-generic-block + .group-row .andes-button__content,
.step_paypal_express .group-generic-block + .group-row .andes-button__content {
    line-height: 1.25;
}
.step_express .group-generic-block + .group-row #dismiss_consumer_credits,
.step_paypal_express .group-generic-block + .group-row #dismiss_consumer_credits {
    -webkit-align-self: flex-start;
    align-self: flex-start;
}
.step_express .group-generic-block + .group-row #dismiss_consumer_credits .andes-button:before,
.step_paypal_express .group-generic-block + .group-row #dismiss_consumer_credits .andes-button:before {
    background: url(https://http2.mlstatic.com/frontend-assets/px-checkout-frontend/cfd97ffb564f56feb1d9.svg) no-repeat;
    content: "";
    display: block;
    height: 1.25em;
    width: 1.25em;
}
.step_express .group-generic-block + .group-row > .group-media-object,
.step_paypal_express .group-generic-block + .group-row > .group-media-object {
    border: none;
}
.step_express div.optimus .ui-card-wrapper div.group-payment-method-row-with-cvv div.group-row,
.step_express div.optimus .ui-card-wrapper div.ui-card,
.step_express div.optimus div.group-payment-method-row-with-cvv .ui-card-wrapper div.group-row,
.step_paypal_express div.optimus .ui-card-wrapper div.group-payment-method-row-with-cvv div.group-row,
.step_paypal_express div.optimus .ui-card-wrapper div.ui-card,
.step_paypal_express div.optimus div.group-payment-method-row-with-cvv .ui-card-wrapper div.group-row {
    -webkit-border-radius: 0 0 0.375em 0.375em;
    border-radius: 0 0 0.375em 0.375em;
    border-top: 0.00625em solid #f5f5f5;
    margin-top: 0;
}
.step_express div.group-payment-method-row-with-cvv .group-row,
.step_paypal_express div.group-payment-method-row-with-cvv .group-row {
    -webkit-border-radius: 0.375em 0.375em 0 0;
    border-radius: 0.375em 0.375em 0 0;
    margin-bottom: 0;
}
.step_express div.optimus div.group-payment-method-row-with-cvv .group-row,
.step_express div.ui-card,
.step_paypal_express div.optimus div.group-payment-method-row-with-cvv .group-row,
.step_paypal_express div.ui-card,
div.optimus div.group-payment-method-row-with-cvv .step_express div.group-row,
div.optimus div.group-payment-method-row-with-cvv .step_paypal_express div.group-row {
    padding: 1em;
}
.step_express #group_pay :first-child .ui-card,
.step_express #group_pay :first-child div.optimus div.group-payment-method-row-with-cvv .group-row,
.step_paypal_express #group_pay :first-child .ui-card,
.step_paypal_express #group_pay :first-child div.optimus div.group-payment-method-row-with-cvv .group-row,
div.optimus div.group-payment-method-row-with-cvv .step_express #group_pay :first-child .group-row,
div.optimus div.group-payment-method-row-with-cvv .step_paypal_express #group_pay :first-child .group-row {
    -webkit-border-radius: 0;
    border-radius: 0;
}
.step_express #group_pay :only-child .ui-card,
.step_express #group_pay :only-child div.optimus div.group-payment-method-row-with-cvv .group-row,
.step_paypal_express #group_pay :only-child .ui-card,
.step_paypal_express #group_pay :only-child div.optimus div.group-payment-method-row-with-cvv .group-row,
div.optimus div.group-payment-method-row-with-cvv .step_express #group_pay :only-child .group-row,
div.optimus div.group-payment-method-row-with-cvv .step_paypal_express #group_pay :only-child .group-row {
    -webkit-border-radius: 0 0 0.375em 0.375em;
    border-radius: 0 0 0.375em 0.375em;
}
.step_express .row_cvv .icon-wrapper,
.step_express .step_express .row_cvv .icon-wrapper,
.step_paypal_express .row_cvv .icon-wrapper,
.step_paypal_express .step_express .row_cvv .icon-wrapper {
    border: 0.00625em solid #bfbfbf;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    height: 2.5em;
    margin-right: 1em;
    width: 2.5em;
}
.step_express .row_cvv .icon-wrapper .payment-card-icon,
.step_express .step_express .row_cvv .icon-wrapper .payment-card-icon,
.step_paypal_express .row_cvv .icon-wrapper .payment-card-icon,
.step_paypal_express .step_express .row_cvv .icon-wrapper .payment-card-icon {
    zoom: 64%;
}
.step_express .row_cvv .icon-wrapper.icon-wrapper svg,
.step_express .step_express .row_cvv .icon-wrapper.icon-wrapper svg,
.step_paypal_express .row_cvv .icon-wrapper.icon-wrapper svg,
.step_paypal_express .step_express .row_cvv .icon-wrapper.icon-wrapper svg {
    max-height: 1.5em;
    max-width: 2em;
}
.step_express .row_cvv,
.step_paypal_express .row_cvv {
    -webkit-align-items: center;
    align-items: center;
}
.step_express #group_switch_alternative_payment_method .ui-card,
.step_express #group_switch_alternative_payment_method div.optimus div.group-payment-method-row-with-cvv .group-row,
.step_paypal_express #group_switch_alternative_payment_method .ui-card,
.step_paypal_express
    #group_switch_alternative_payment_method
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row,
div.optimus div.group-payment-method-row-with-cvv .step_express #group_switch_alternative_payment_method .group-row,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_paypal_express
    #group_switch_alternative_payment_method
    .group-row {
    -webkit-align-items: center;
    align-items: center;
    display: -webkit-flex;
    display: flex;
    padding: 1em 3em 1em 2em;
}
.step_express #group_switch_alternative_payment_method .ui-card p.text,
.step_express
    #group_switch_alternative_payment_method
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    p.text,
.step_paypal_express #group_switch_alternative_payment_method .ui-card p.text,
.step_paypal_express
    #group_switch_alternative_payment_method
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    p.text,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_express
    #group_switch_alternative_payment_method
    .group-row
    p.text,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_paypal_express
    #group_switch_alternative_payment_method
    .group-row
    p.text {
    color: #000;
    font-weight: 400;
    margin-left: 1.5em;
}
.step_express #group_switch_alternative_payment_method .ui-card .andes-checkbox,
.step_express
    #group_switch_alternative_payment_method
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .andes-checkbox,
.step_paypal_express #group_switch_alternative_payment_method .ui-card .andes-checkbox,
.step_paypal_express
    #group_switch_alternative_payment_method
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .andes-checkbox,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_express
    #group_switch_alternative_payment_method
    .group-row
    .andes-checkbox,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_paypal_express
    #group_switch_alternative_payment_method
    .group-row
    .andes-checkbox {
    -webkit-align-items: center;
    align-items: center;
    display: -webkit-flex;
    display: flex;
}
.step_express #group_switch_alternative_payment_method .ui-card .andes-checkbox input.andes-checkbox__input,
.step_express
    #group_switch_alternative_payment_method
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .andes-checkbox
    input.andes-checkbox__input,
.step_paypal_express #group_switch_alternative_payment_method .ui-card .andes-checkbox input.andes-checkbox__input,
.step_paypal_express
    #group_switch_alternative_payment_method
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .andes-checkbox
    input.andes-checkbox__input,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_express
    #group_switch_alternative_payment_method
    .group-row
    .andes-checkbox
    input.andes-checkbox__input,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_paypal_express
    #group_switch_alternative_payment_method
    .group-row
    .andes-checkbox
    input.andes-checkbox__input {
    margin: 0.25em 0 0;
    position: relative;
    width: 0.625em;
}
.step_express #group_switch_alternative_payment_method .ui-card .andes-checkbox span.andes-checkbox__mimic,
.step_express
    #group_switch_alternative_payment_method
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .andes-checkbox
    span.andes-checkbox__mimic,
.step_paypal_express #group_switch_alternative_payment_method .ui-card .andes-checkbox span.andes-checkbox__mimic,
.step_paypal_express
    #group_switch_alternative_payment_method
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .andes-checkbox
    span.andes-checkbox__mimic,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_express
    #group_switch_alternative_payment_method
    .group-row
    .andes-checkbox
    span.andes-checkbox__mimic,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_paypal_express
    #group_switch_alternative_payment_method
    .group-row
    .andes-checkbox
    span.andes-checkbox__mimic {
    position: relative;
}
.step_express .free-interest,
.step_paypal_express .free-interest {
    display: -webkit-inline-flex;
    display: inline-flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    width: 100%;
}
.step_express .free-interest .andes-list__item-first-column,
.step_paypal_express .free-interest .andes-list__item-first-column {
    -webkit-flex-grow: unset;
    flex-grow: unset;
}
.step_express .free-interest .option-additional-info,
.step_paypal_express .free-interest .option-additional-info {
    margin-left: 0.25em;
}
.step_express .free-interest .option-additional-info .installment__interest,
.step_paypal_express .free-interest .option-additional-info .installment__interest {
    font-size: 0.875em;
}
.step_express .group-summary,
.step_paypal_express .group-summary {
    background: #fff;
}
.step_express .layout__col-content .title-h2,
.step_paypal_express .layout__col-content .title-h2 {
    margin: 0 0 0.75em;
}
.step_express .layout__col-content .ui-card,
.step_express .layout__col-content div.optimus div.group-payment-method-row-with-cvv .group-row,
.step_paypal_express .layout__col-content .ui-card,
.step_paypal_express .layout__col-content div.optimus div.group-payment-method-row-with-cvv .group-row,
div.optimus div.group-payment-method-row-with-cvv .step_express .layout__col-content .group-row,
div.optimus div.group-payment-method-row-with-cvv .step_paypal_express .layout__col-content .group-row {
    padding: 2em;
}
.step_express .layout__col-content .ui-card.options-list,
.step_express .layout__col-content div.optimus div.group-payment-method-row-with-cvv .options-list.group-row,
.step_paypal_express .layout__col-content .ui-card.options-list,
.step_paypal_express .layout__col-content div.optimus div.group-payment-method-row-with-cvv .options-list.group-row,
div.optimus div.group-payment-method-row-with-cvv .step_express .layout__col-content .options-list.group-row,
div.optimus div.group-payment-method-row-with-cvv .step_paypal_express .layout__col-content .options-list.group-row {
    padding: 0;
}
.step_express .layout__col-content .ui-card form,
.step_express .layout__col-content div.optimus div.group-payment-method-row-with-cvv .group-row form,
.step_paypal_express .layout__col-content .ui-card form,
.step_paypal_express .layout__col-content div.optimus div.group-payment-method-row-with-cvv .group-row form,
div.optimus div.group-payment-method-row-with-cvv .step_express .layout__col-content .group-row form,
div.optimus div.group-payment-method-row-with-cvv .step_paypal_express .layout__col-content .group-row form {
    -webkit-align-items: center;
    align-items: center;
    display: -webkit-flex;
    display: flex;
}
.step_express .layout__col-content .andes-dropdown,
.step_paypal_express .layout__col-content .andes-dropdown {
    margin: 0;
}
.step_express .layout__col-content > .group-generic,
.step_paypal_express .layout__col-content > .group-generic {
    -webkit-align-items: center;
    align-items: center;
    display: -webkit-flex;
    display: flex;
    margin-bottom: 0.625em;
    margin-top: -1.25em;
}
.step_express .layout__col-content > .group-generic .bank-deals-link,
.step_express .layout__col-content > .group-generic .toggle-button-wrapper,
.step_paypal_express .layout__col-content > .group-generic .bank-deals-link,
.step_paypal_express .layout__col-content > .group-generic .toggle-button-wrapper {
    margin: 0;
    position: unset;
}
.step_express .layout__col-content > .group-generic span,
.step_paypal_express .layout__col-content > .group-generic span {
    padding-left: 0.9375em;
    padding-right: 0.9375em;
}
.step_express #group_pay .group-generic,
.step_paypal_express #group_pay .group-generic {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}
.step_express #group_pay .group-generic .icon-wrapper,
.step_paypal_express #group_pay .group-generic .icon-wrapper {
    margin-right: 1.125em;
    vertical-align: middle;
}
.step_express #group_pay .ui-card,
.step_express #group_pay div.optimus div.group-payment-method-row-with-cvv .group-row,
.step_paypal_express #group_pay .ui-card,
.step_paypal_express #group_pay div.optimus div.group-payment-method-row-with-cvv .group-row,
div.optimus div.group-payment-method-row-with-cvv .step_express #group_pay .group-row,
div.optimus div.group-payment-method-row-with-cvv .step_paypal_express #group_pay .group-row {
    min-height: 7em;
    overflow: visible;
    padding: 1.25em 2em;
}
.step_express #group_pay .ui-card .andes-message--quiet,
.step_express #group_pay div.optimus div.group-payment-method-row-with-cvv .group-row .andes-message--quiet,
.step_paypal_express #group_pay .ui-card .andes-message--quiet,
.step_paypal_express #group_pay div.optimus div.group-payment-method-row-with-cvv .group-row .andes-message--quiet,
div.optimus div.group-payment-method-row-with-cvv .step_express #group_pay .group-row .andes-message--quiet,
div.optimus div.group-payment-method-row-with-cvv .step_paypal_express #group_pay .group-row .andes-message--quiet {
    margin-top: 2.375em;
}
.step_express #group_pay .row_cvv,
.step_paypal_express #group_pay .row_cvv {
    max-width: 17.5em;
}
.step_express .group-generic .select-additional-info,
.step_paypal_express .group-generic .select-additional-info {
    margin-top: 0.375em;
}
.step_express .group-row,
.step_paypal_express .group-row {
    min-height: 4.625em;
}
@media (max-width: 832px) {
    .step_express .layout--modal .bank-deals-link,
    .step_paypal_express .layout--modal .bank-deals-link {
        margin: -1.4285714286em 0 0.5714285714em;
    }
}
.step_express .layout--modal .layout__col-sidebar,
.step_paypal_express .layout--modal .layout__col-sidebar {
    background: #fff;
}
.step_express .layout--modal .layout__col-sidebar .andes-button.andes-button--loud,
.step_paypal_express .layout--modal .layout__col-sidebar .andes-button.andes-button--loud {
    margin-bottom: 0.1875em;
}
.step_express .layout--modal .c-title ~ .group-row + .group-row,
.step_paypal_express .layout--modal .c-title ~ .group-row + .group-row {
    max-height: 4.625em;
}
.step_express .layout--modal .c-title,
.step_paypal_express .layout--modal .c-title {
    margin-bottom: 1em;
}
.step_express .animated-content .group_form .ui-card,
.step_express .animated-content .group_form div.optimus div.group-payment-method-row-with-cvv .group-row,
.step_paypal_express .animated-content .group_form .ui-card,
.step_paypal_express .animated-content .group_form div.optimus div.group-payment-method-row-with-cvv .group-row,
div.optimus div.group-payment-method-row-with-cvv .step_express .animated-content .group_form .group-row,
div.optimus div.group-payment-method-row-with-cvv .step_paypal_express .animated-content .group_form .group-row {
    margin-top: 0;
}
.step_express #change_payment_form .andes-button .andes-button__content,
.step_paypal_express #change_payment_form .andes-button .andes-button__content {
    white-space: nowrap;
}
.step_express .toggle-button-wrapper .toggle-button span.andes-button__content,
.step_paypal_express .toggle-button-wrapper .toggle-button span.andes-button__content {
    padding-left: 0;
    padding-right: 0;
}
.step_express .row_cvv .icon-wrapper,
.step_express .step_express .row_cvv .icon-wrapper,
.step_paypal_express .row_cvv .icon-wrapper,
.step_paypal_express .step_express .row_cvv .icon-wrapper {
    margin-right: 1.25em;
}
.step_express #installments_group_generic .option-additional-info,
.step_paypal_express #installments_group_generic .option-additional-info {
    padding: 0.875em 0;
}
.step_checkout_express_off_payment #group_installments {
    -webkit-flex-grow: 1;
    flex-grow: 1;
}
.step_checkout_express_off_payment .group-summary > .group-summary__container .andes-button.andes-button--loud span,
.step_checkout_express_off_payment .sticky-container .andes-button.andes-button--loud span {
    padding-left: 0.5em;
}
.step_checkout_express_off_payment
    .group-summary
    > .group-summary__container
    .andes-button.andes-button--loud
    span:before,
.step_checkout_express_off_payment .sticky-container .andes-button.andes-button--loud span:before {
    -webkit-background-size: cover;
    background-size: cover;
    background: url(https://http2.mlstatic.com/frontend-assets/px-checkout-frontend/62c51682870d62da04c4.svg) no-repeat;
    content: "";
    height: 0.9375em;
    left: -0.375em;
    position: relative;
    width: 0.8125em;
}
.step_checkout_express_off_payment .layout--modal #shield_footer {
    bottom: -0.375em;
    position: absolute;
    width: 100%;
}
.step_checkout_express_off_payment .layout--modal #shield_footer .text span {
    font-size: 0.75em;
}
.step_checkout_express_off_payment .layout--modal .andes-button.andes-button--loud {
    bottom: 0.7142857143em;
}
.step_checkout_express_off_payment .layout--modal .text.centered {
    bottom: 0;
}
.step_checkout_express_off_payment .layout--modal .scroller {
    height: 24.375em;
    margin-bottom: 1em;
}
.step_checkout_express_off_payment .layout--modal .user-header + .layout__col-content .scroller {
    height: 21.5625em;
}
.step_checkout_express_off_payment
    .group-total-summary
    .group-summary
    > .group-summary__container
    .andes-button.andes-button--loud
    span:before {
    display: none;
}
.step_checkout_express_off_payment .group-row {
    -webkit-border-radius: 0.25em 0.25em 0 0;
    border-radius: 0.25em 0.25em 0 0;
    margin-bottom: 0.0625em;
}
.step_checkout_express_off_payment .group-row + .group-row {
    -webkit-border-radius: 0 0 0.25em 0.25em;
    border-radius: 0 0 0.25em 0.25em;
}
.step_checkout_express_off_payment .group-total-summary + .c-title {
    font-size: 1.125em;
    font-weight: 700;
    margin: 1.5em 0 1em;
}
.step_checkout_express_off_payment .andes-button + .text.gray {
    text-align: center;
}
.step_checkout_express_off_payment .row_cvv {
    display: -webkit-inline-flex;
    display: inline-flex;
    -webkit-flex-direction: row-reverse;
    flex-direction: row-reverse;
    width: 100%;
}
.step_checkout_express_off_payment .row_cvv .icon-wrapper {
    margin-right: 1em;
}
.step_checkout_express_off_payment .group-row + p.text {
    color: rgba(0, 0, 0, 0.9);
    font-size: 1em;
    font-weight: 600;
    margin: 1.5em 0 0.5em;
}
.step_checkout_express_off_payment .group-row + p.text + .group-row {
    border-bottom: 0.0625em solid rgba(0, 0, 0, 0.1);
    -webkit-border-radius: 0.25em 0.25em 0 0;
    border-radius: 0.25em 0.25em 0 0;
    margin-bottom: 0;
}
.step_checkout_express_off_payment .group-row + p.text + .group-row + .group-row {
    -webkit-border-radius: 0 0 0.25em 0.25em;
    border-radius: 0 0 0.25em 0.25em;
}
.step_checkout_express_off_payment .group-row + p.text + .group-row + .group-row .text_title {
    display: inline-block;
}
.step_checkout_express_off_payment .group-row + p.text + .group-row + .group-row .text_title + .text_promo {
    margin-left: 0.5em;
}
.step_checkout_express_off_payment .group-row {
    -webkit-border-radius: 0.25em;
    border-radius: 0.25em;
}
.step_checkout_express_off_payment .group-row .icon-mercado-credito svg {
    max-height: 2.5em;
    max-width: 2.5em;
}
.step_checkout_express_off_payment .group-generic-block + .group-row {
    background-color: #f5f5f5;
    -webkit-border-radius: 0.375em;
    border-radius: 0.375em;
    margin-top: 1em;
    min-height: 5.9375em;
}
.step_checkout_express_off_payment .group-generic-block + .group-row .title {
    font-size: 0.875em;
    font-weight: 600;
    line-height: 1.5;
}
.step_checkout_express_off_payment .group-generic-block + .group-row .text {
    color: rgba(0, 0, 0, 0.9);
    line-height: 1.25;
}
.step_checkout_express_off_payment .group-generic-block + .group-row .row-details {
    margin-bottom: 0.5em;
}
.step_checkout_express_off_payment .group-generic-block + .group-row .andes-button--link {
    height: 100%;
}
.step_checkout_express_off_payment .group-generic-block + .group-row .andes-button__content {
    line-height: 1.25;
}
.step_checkout_express_off_payment .group-generic-block + .group-row #dismiss_consumer_credits {
    -webkit-align-self: flex-start;
    align-self: flex-start;
}
.step_checkout_express_off_payment .group-generic-block + .group-row #dismiss_consumer_credits .andes-button:before {
    background: url(https://http2.mlstatic.com/frontend-assets/px-checkout-frontend/cfd97ffb564f56feb1d9.svg) no-repeat;
    content: "";
    display: block;
    height: 1.25em;
    width: 1.25em;
}
.step_checkout_express_off_payment .group-generic-block + .group-row > .group-media-object {
    border: none;
}
.step_checkout_express_off_payment div.optimus .ui-card-wrapper div.group-payment-method-row-with-cvv div.group-row,
.step_checkout_express_off_payment div.optimus .ui-card-wrapper div.ui-card,
.step_checkout_express_off_payment div.optimus div.group-payment-method-row-with-cvv .ui-card-wrapper div.group-row {
    -webkit-border-radius: 0 0 0.375em 0.375em;
    border-radius: 0 0 0.375em 0.375em;
    border-top: 0.00625em solid #f5f5f5;
    margin-top: 0;
}
.step_checkout_express_off_payment div.group-payment-method-row-with-cvv .group-row {
    -webkit-border-radius: 0.375em 0.375em 0 0;
    border-radius: 0.375em 0.375em 0 0;
    margin-bottom: 0;
}
.step_checkout_express_off_payment div.optimus div.group-payment-method-row-with-cvv .group-row,
.step_checkout_express_off_payment div.ui-card,
div.optimus div.group-payment-method-row-with-cvv .step_checkout_express_off_payment div.group-row {
    padding: 1em;
}
.step_checkout_express_off_payment #group_pay :first-child .ui-card,
.step_checkout_express_off_payment #group_pay :first-child div.optimus div.group-payment-method-row-with-cvv .group-row,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_checkout_express_off_payment
    #group_pay
    :first-child
    .group-row {
    -webkit-border-radius: 0;
    border-radius: 0;
}
.step_checkout_express_off_payment #group_pay :only-child .ui-card,
.step_checkout_express_off_payment #group_pay :only-child div.optimus div.group-payment-method-row-with-cvv .group-row,
div.optimus div.group-payment-method-row-with-cvv .step_checkout_express_off_payment #group_pay :only-child .group-row {
    -webkit-border-radius: 0 0 0.375em 0.375em;
    border-radius: 0 0 0.375em 0.375em;
}
.step_checkout_express_off_payment .row_cvv .icon-wrapper,
.step_checkout_express_off_payment .step_express .row_cvv .icon-wrapper {
    border: 0.00625em solid #bfbfbf;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    height: 2.5em;
    margin-right: 1em;
    width: 2.5em;
}
.step_checkout_express_off_payment .row_cvv .icon-wrapper .payment-card-icon,
.step_checkout_express_off_payment .step_express .row_cvv .icon-wrapper .payment-card-icon {
    zoom: 64%;
}
.step_checkout_express_off_payment .row_cvv .icon-wrapper.icon-wrapper svg,
.step_checkout_express_off_payment .step_express .row_cvv .icon-wrapper.icon-wrapper svg {
    max-height: 1.5em;
    max-width: 2em;
}
.step_checkout_express_off_payment .row_cvv {
    -webkit-align-items: center;
    align-items: center;
}
.step_checkout_express_off_payment #group_switch_alternative_payment_method .ui-card,
.step_checkout_express_off_payment
    #group_switch_alternative_payment_method
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_checkout_express_off_payment
    #group_switch_alternative_payment_method
    .group-row {
    -webkit-align-items: center;
    align-items: center;
    display: -webkit-flex;
    display: flex;
    padding: 1em 3em 1em 2em;
}
.step_checkout_express_off_payment #group_switch_alternative_payment_method .ui-card p.text,
.step_checkout_express_off_payment
    #group_switch_alternative_payment_method
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    p.text,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_checkout_express_off_payment
    #group_switch_alternative_payment_method
    .group-row
    p.text {
    color: #000;
    font-weight: 400;
    margin-left: 1.5em;
}
.step_checkout_express_off_payment #group_switch_alternative_payment_method .ui-card .andes-checkbox,
.step_checkout_express_off_payment
    #group_switch_alternative_payment_method
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .andes-checkbox,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_checkout_express_off_payment
    #group_switch_alternative_payment_method
    .group-row
    .andes-checkbox {
    -webkit-align-items: center;
    align-items: center;
    display: -webkit-flex;
    display: flex;
}
.step_checkout_express_off_payment
    #group_switch_alternative_payment_method
    .ui-card
    .andes-checkbox
    input.andes-checkbox__input,
.step_checkout_express_off_payment
    #group_switch_alternative_payment_method
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .andes-checkbox
    input.andes-checkbox__input,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_checkout_express_off_payment
    #group_switch_alternative_payment_method
    .group-row
    .andes-checkbox
    input.andes-checkbox__input {
    margin: 0.25em 0 0;
    position: relative;
    width: 0.625em;
}
.step_checkout_express_off_payment
    #group_switch_alternative_payment_method
    .ui-card
    .andes-checkbox
    span.andes-checkbox__mimic,
.step_checkout_express_off_payment
    #group_switch_alternative_payment_method
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .andes-checkbox
    span.andes-checkbox__mimic,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_checkout_express_off_payment
    #group_switch_alternative_payment_method
    .group-row
    .andes-checkbox
    span.andes-checkbox__mimic {
    position: relative;
}
.step_checkout_express_off_payment .free-interest {
    display: -webkit-inline-flex;
    display: inline-flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    width: 100%;
}
.step_checkout_express_off_payment .free-interest .andes-list__item-first-column {
    -webkit-flex-grow: unset;
    flex-grow: unset;
}
.step_checkout_express_off_payment .free-interest .option-additional-info {
    margin-left: 0.25em;
}
.step_checkout_express_off_payment .free-interest .option-additional-info .installment__interest {
    font-size: 0.875em;
}
.step_checkout_express_off_payment .group-summary {
    background: #fff;
}
.step_checkout_express_off_payment .layout__col-content .title-h2 {
    margin: 0 0 0.75em;
}
.step_checkout_express_off_payment .layout__col-content .ui-card,
.step_checkout_express_off_payment .layout__col-content div.optimus div.group-payment-method-row-with-cvv .group-row,
div.optimus div.group-payment-method-row-with-cvv .step_checkout_express_off_payment .layout__col-content .group-row {
    padding: 2em;
}
.step_checkout_express_off_payment .layout__col-content .ui-card.options-list,
.step_checkout_express_off_payment
    .layout__col-content
    div.optimus
    div.group-payment-method-row-with-cvv
    .options-list.group-row,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_checkout_express_off_payment
    .layout__col-content
    .options-list.group-row {
    padding: 0;
}
.step_checkout_express_off_payment .layout__col-content .ui-card form,
.step_checkout_express_off_payment
    .layout__col-content
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    form,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_checkout_express_off_payment
    .layout__col-content
    .group-row
    form {
    -webkit-align-items: center;
    align-items: center;
    display: -webkit-flex;
    display: flex;
}
.step_checkout_express_off_payment .layout__col-content .andes-dropdown {
    margin: 0;
}
.step_checkout_express_off_payment .layout__col-content > .group-generic {
    -webkit-align-items: center;
    align-items: center;
    display: -webkit-flex;
    display: flex;
    margin-bottom: 0.625em;
    margin-top: -1.25em;
}
.step_checkout_express_off_payment .layout__col-content > .group-generic .bank-deals-link,
.step_checkout_express_off_payment .layout__col-content > .group-generic .toggle-button-wrapper {
    margin: 0;
    position: unset;
}
.step_checkout_express_off_payment .layout__col-content > .group-generic span {
    padding-left: 0.9375em;
    padding-right: 0.9375em;
}
.step_checkout_express_off_payment #group_pay .group-generic {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}
.step_checkout_express_off_payment #group_pay .group-generic .icon-wrapper {
    margin-right: 1.125em;
    vertical-align: middle;
}
.step_checkout_express_off_payment #group_pay .ui-card,
.step_checkout_express_off_payment #group_pay div.optimus div.group-payment-method-row-with-cvv .group-row,
div.optimus div.group-payment-method-row-with-cvv .step_checkout_express_off_payment #group_pay .group-row {
    min-height: 7em;
    overflow: visible;
    padding: 1.25em 2em;
}
.step_checkout_express_off_payment #group_pay .ui-card .andes-message--quiet,
.step_checkout_express_off_payment
    #group_pay
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .andes-message--quiet,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_checkout_express_off_payment
    #group_pay
    .group-row
    .andes-message--quiet {
    margin-top: 2.375em;
}
.step_checkout_express_off_payment #group_pay .row_cvv {
    max-width: 17.5em;
}
.step_checkout_express_off_payment .group-generic .select-additional-info {
    margin-top: 0.375em;
}
.step_checkout_express_off_payment .group-row {
    min-height: 4.625em;
}
@media (max-width: 832px) {
    .step_checkout_express_off_payment .layout--modal .bank-deals-link {
        margin: -1.4285714286em 0 0.5714285714em;
    }
}
.step_checkout_express_off_payment .layout--modal .layout__col-sidebar {
    background: #fff;
}
.step_checkout_express_off_payment .layout--modal .layout__col-sidebar .andes-button.andes-button--loud {
    margin-bottom: 0.1875em;
}
.step_checkout_express_off_payment .layout--modal .c-title ~ .group-row + .group-row {
    max-height: 4.625em;
}
.step_checkout_express_off_payment .layout--modal .c-title {
    margin-bottom: 1em;
}
.step_checkout_express_off_payment .animated-content .group_form .ui-card,
.step_checkout_express_off_payment
    .animated-content
    .group_form
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_checkout_express_off_payment
    .animated-content
    .group_form
    .group-row {
    margin-top: 0;
}
.step_checkout_express_off_payment #change_payment_form .andes-button .andes-button__content {
    white-space: nowrap;
}
.step_checkout_express_off_payment .toggle-button-wrapper .toggle-button span.andes-button__content {
    padding-left: 0;
    padding-right: 0;
}
.step_checkout_express_off_payment .row_cvv .icon-wrapper,
.step_checkout_express_off_payment .step_express .row_cvv .icon-wrapper {
    margin-right: 1.25em;
}
.step_checkout_express_off_payment #installments_group_generic .option-additional-info {
    padding: 0.875em 0;
}
.step_checkout_express_off_payment #extra_data_form .ui-card,
.step_checkout_express_off_payment #extra_data_form div.optimus div.group-payment-method-row-with-cvv .group-row,
div.optimus div.group-payment-method-row-with-cvv .step_checkout_express_off_payment #extra_data_form .group-row {
    overflow: visible;
    padding: 1.5em;
}
.step_checkout_express_off_payment #extra_data_form .ui-card .payment-extra-data,
.step_checkout_express_off_payment
    #extra_data_form
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .payment-extra-data,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_checkout_express_off_payment
    #extra_data_form
    .group-row
    .payment-extra-data {
    height: 0;
    visibility: hidden;
}
.step_checkout_express_off_payment #extra_data_form .ui-card .group-row,
.step_checkout_express_off_payment
    #extra_data_form
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group-row,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_checkout_express_off_payment
    #extra_data_form
    .group-row
    .group-row {
    -webkit-align-items: unset;
    align-items: unset;
    background-color: transparent;
    margin-bottom: 0;
    padding: 0;
}
.step_checkout_express_off_payment #extra_data_form .ui-card .group-row .andes-dropdown,
.step_checkout_express_off_payment
    #extra_data_form
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group-row
    .andes-dropdown,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_checkout_express_off_payment
    #extra_data_form
    .group-row
    .group-row
    .andes-dropdown {
    margin-right: 1em;
}
.step_checkout_express_off_payment #extra_data_form .ui-card .group-row .andes-dropdown .andes-form-control__border,
.step_checkout_express_off_payment
    #extra_data_form
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group-row
    .andes-dropdown
    .andes-form-control__border,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_checkout_express_off_payment
    #extra_data_form
    .group-row
    .group-row
    .andes-dropdown
    .andes-form-control__border {
    margin-top: -0.0625em;
}
.step_checkout_express_off_payment #extra_data_form .ui-card .group-row label,
.step_checkout_express_off_payment
    #extra_data_form
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group-row
    label,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_checkout_express_off_payment
    #extra_data_form
    .group-row
    .group-row
    label {
    margin-top: 0;
}
.step_checkout_express_off_payment #extra_data_form .ui-card .group-row > *,
.step_checkout_express_off_payment
    #extra_data_form
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group-row
    > *,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_checkout_express_off_payment
    #extra_data_form
    .group-row
    .group-row
    > * {
    -webkit-flex-grow: 1;
    flex-grow: 1;
    margin-right: 1em;
    width: 50%;
}
.step_checkout_express_off_payment #extra_data_form .ui-card .group-row > :last-child,
.step_checkout_express_off_payment
    #extra_data_form
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group-row
    > :last-child,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_checkout_express_off_payment
    #extra_data_form
    .group-row
    .group-row
    > :last-child {
    margin-right: 0;
}
.step_checkout_express_off_payment #extra_data_form .ui-card .group-row:not(:last-child),
.step_checkout_express_off_payment
    #extra_data_form
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group-row:not(:last-child),
div.optimus
    div.group-payment-method-row-with-cvv
    .step_checkout_express_off_payment
    #extra_data_form
    .group-row
    .group-row:not(:last-child) {
    margin-bottom: 0.75em;
}
.step_checkout_express_off_payment #extra_data_form .group-identification ~ .ui-input-text {
    max-width: 6.25em;
}
.step_checkout_express_off_payment .group-row + .title-h2 {
    margin-top: 1em;
}
.step_consumer_credits .group-summary__container > .text {
    color: #666;
    font-size: 0.75em;
    font-stretch: normal;
    font-style: normal;
    font-weight: 300;
    letter-spacing: normal;
    line-height: normal;
    margin-top: 2em;
    text-align: center;
}
.step_consumer_credits .group-summary__container .andes-button--loud {
    margin-top: 1.5em;
}
.step_consumer_credits .installment-detail {
    margin-bottom: 0.5em;
}
.step_consumer_credits .installment-detail__content {
    color: rgba(0, 0, 0, 0.25);
    font-size: 0.875em;
}
.step_consumer_credits .installment-detail__content.large {
    color: rgba(0, 0, 0, 0.55);
    font-size: 1.5em;
    font-weight: 300;
}
.step_consumer_credits .text.gray {
    color: rgba(0, 0, 0, 0.25);
    font-size: 0.75em;
}
.step_consumer_credits .icon-mercado-credito svg {
    max-height: 2.5em;
    max-width: 2.5em;
}
.step_consumer_credits .group-generic-block {
    -webkit-box-shadow: none;
    box-shadow: none;
}
.step_consumer_credits .group-generic-block form:last-child .ui-card-wrapper .ui-card,
.step_consumer_credits
    .group-generic-block
    form:last-child
    .ui-card-wrapper
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_consumer_credits
    .group-generic-block
    form:last-child
    .ui-card-wrapper
    .group-row {
    -webkit-box-shadow: 0 0.07em 0.125em 0 rgba(0, 0, 0, 0.15);
    box-shadow: 0 0.07em 0.125em 0 rgba(0, 0, 0, 0.15);
}
.step_consumer_credits .andes-message {
    margin-bottom: 1em;
}
.step_consumer_credits #group_installments {
    -webkit-flex-grow: 1;
    flex-grow: 1;
}
.step_consumer_credits .group-summary > .group-summary__container .andes-button.andes-button--loud span,
.step_consumer_credits .sticky-container .andes-button.andes-button--loud span {
    padding-left: 0.5em;
}
.step_consumer_credits .group-summary > .group-summary__container .andes-button.andes-button--loud span:before,
.step_consumer_credits .sticky-container .andes-button.andes-button--loud span:before {
    -webkit-background-size: cover;
    background-size: cover;
    background: url(https://http2.mlstatic.com/frontend-assets/px-checkout-frontend/62c51682870d62da04c4.svg) no-repeat;
    content: "";
    height: 0.9375em;
    left: -0.375em;
    position: relative;
    width: 0.8125em;
}
.step_consumer_credits .layout--modal #shield_footer {
    bottom: -0.375em;
    position: absolute;
    width: 100%;
}
.step_consumer_credits .layout--modal #shield_footer .text span {
    font-size: 0.75em;
}
.step_consumer_credits .layout--modal .andes-button.andes-button--loud {
    bottom: 0.7142857143em;
}
.step_consumer_credits .layout--modal .text.centered {
    bottom: 0;
}
.step_consumer_credits .layout--modal .scroller {
    height: 24.375em;
    margin-bottom: 1em;
}
.step_consumer_credits .layout--modal .user-header + .layout__col-content .scroller {
    height: 21.5625em;
}
.step_consumer_credits
    .group-total-summary
    .group-summary
    > .group-summary__container
    .andes-button.andes-button--loud
    span:before {
    display: none;
}
.step_consumer_credits .group-row {
    -webkit-border-radius: 0.25em 0.25em 0 0;
    border-radius: 0.25em 0.25em 0 0;
    margin-bottom: 0.0625em;
}
.step_consumer_credits .group-row + .group-row {
    -webkit-border-radius: 0 0 0.25em 0.25em;
    border-radius: 0 0 0.25em 0.25em;
}
.step_consumer_credits .group-total-summary + .c-title {
    font-size: 1.125em;
    font-weight: 700;
    margin: 1.5em 0 1em;
}
.step_consumer_credits .andes-button + .text.gray {
    text-align: center;
}
.step_consumer_credits .row_cvv {
    display: -webkit-inline-flex;
    display: inline-flex;
    -webkit-flex-direction: row-reverse;
    flex-direction: row-reverse;
    width: 100%;
}
.step_consumer_credits .row_cvv .icon-wrapper {
    margin-right: 1em;
}
.step_consumer_credits .group-row + p.text {
    color: rgba(0, 0, 0, 0.9);
    font-size: 1em;
    font-weight: 600;
    margin: 1.5em 0 0.5em;
}
.step_consumer_credits .group-row + p.text + .group-row {
    border-bottom: 0.0625em solid rgba(0, 0, 0, 0.1);
    -webkit-border-radius: 0.25em 0.25em 0 0;
    border-radius: 0.25em 0.25em 0 0;
    margin-bottom: 0;
}
.step_consumer_credits .group-row + p.text + .group-row + .group-row {
    -webkit-border-radius: 0 0 0.25em 0.25em;
    border-radius: 0 0 0.25em 0.25em;
}
.step_consumer_credits .group-row + p.text + .group-row + .group-row .text_title {
    display: inline-block;
}
.step_consumer_credits .group-row + p.text + .group-row + .group-row .text_title + .text_promo {
    margin-left: 0.5em;
}
.step_consumer_credits .group-row,
.step_paypal_express .group-row {
    -webkit-border-radius: 0.25em;
    border-radius: 0.25em;
}
.step_consumer_credits .group-row .icon-mercado-credito svg {
    max-height: 2.5em;
    max-width: 2.5em;
}
.step_consumer_credits .group-generic-block + .group-row {
    background-color: #f5f5f5;
    -webkit-border-radius: 0.375em;
    border-radius: 0.375em;
    margin-top: 1em;
    min-height: 5.9375em;
}
.step_consumer_credits .group-generic-block + .group-row .title {
    font-size: 0.875em;
    font-weight: 600;
    line-height: 1.5;
}
.step_consumer_credits .group-generic-block + .group-row .text {
    color: rgba(0, 0, 0, 0.9);
    line-height: 1.25;
}
.step_consumer_credits .group-generic-block + .group-row .row-details {
    margin-bottom: 0.5em;
}
.step_consumer_credits .group-generic-block + .group-row .andes-button--link {
    height: 100%;
}
.step_consumer_credits .group-generic-block + .group-row .andes-button__content {
    line-height: 1.25;
}
.step_consumer_credits .group-generic-block + .group-row #dismiss_consumer_credits {
    -webkit-align-self: flex-start;
    align-self: flex-start;
}
.step_consumer_credits .group-generic-block + .group-row #dismiss_consumer_credits .andes-button:before {
    background: url(https://http2.mlstatic.com/frontend-assets/px-checkout-frontend/cfd97ffb564f56feb1d9.svg) no-repeat;
    content: "";
    display: block;
    height: 1.25em;
    width: 1.25em;
}
.step_consumer_credits .group-generic-block + .group-row > .group-media-object {
    border: none;
}
.step_consumer_credits div.optimus .ui-card-wrapper div.group-payment-method-row-with-cvv div.group-row,
.step_consumer_credits div.optimus .ui-card-wrapper div.ui-card,
.step_consumer_credits div.optimus div.group-payment-method-row-with-cvv .ui-card-wrapper div.group-row {
    -webkit-border-radius: 0 0 0.375em 0.375em;
    border-radius: 0 0 0.375em 0.375em;
    border-top: 0.00625em solid #f5f5f5;
    margin-top: 0;
}
.step_consumer_credits div.group-payment-method-row-with-cvv .group-row {
    -webkit-border-radius: 0.375em 0.375em 0 0;
    border-radius: 0.375em 0.375em 0 0;
    margin-bottom: 0;
}
.step_consumer_credits div.optimus div.group-payment-method-row-with-cvv .group-row,
.step_consumer_credits div.ui-card,
div.optimus div.group-payment-method-row-with-cvv .step_consumer_credits div.group-row {
    padding: 1em;
}
.step_consumer_credits #group_pay :first-child .ui-card,
.step_consumer_credits #group_pay :first-child div.optimus div.group-payment-method-row-with-cvv .group-row,
div.optimus div.group-payment-method-row-with-cvv .step_consumer_credits #group_pay :first-child .group-row {
    -webkit-border-radius: 0;
    border-radius: 0;
}
.step_consumer_credits #group_pay :only-child .ui-card,
.step_consumer_credits #group_pay :only-child div.optimus div.group-payment-method-row-with-cvv .group-row,
div.optimus div.group-payment-method-row-with-cvv .step_consumer_credits #group_pay :only-child .group-row {
    -webkit-border-radius: 0 0 0.375em 0.375em;
    border-radius: 0 0 0.375em 0.375em;
}
.step_consumer_credits .row_cvv .icon-wrapper,
.step_consumer_credits .step_express .row_cvv .icon-wrapper {
    border: 0.00625em solid #bfbfbf;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    height: 2.5em;
    margin-right: 1em;
    width: 2.5em;
}
.step_consumer_credits .row_cvv .icon-wrapper .payment-card-icon,
.step_consumer_credits .step_express .row_cvv .icon-wrapper .payment-card-icon {
    zoom: 64%;
}
.step_consumer_credits .row_cvv .icon-wrapper.icon-wrapper svg,
.step_consumer_credits .step_express .row_cvv .icon-wrapper.icon-wrapper svg {
    max-height: 1.5em;
    max-width: 2em;
}
.step_consumer_credits .row_cvv {
    -webkit-align-items: center;
    align-items: center;
}
.step_consumer_credits #group_switch_alternative_payment_method .ui-card,
.step_consumer_credits
    #group_switch_alternative_payment_method
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_consumer_credits
    #group_switch_alternative_payment_method
    .group-row {
    -webkit-align-items: center;
    align-items: center;
    display: -webkit-flex;
    display: flex;
    padding: 1em 3em 1em 2em;
}
.step_consumer_credits #group_switch_alternative_payment_method .ui-card p.text,
.step_consumer_credits
    #group_switch_alternative_payment_method
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    p.text,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_consumer_credits
    #group_switch_alternative_payment_method
    .group-row
    p.text {
    color: #000;
    font-weight: 400;
    margin-left: 1.5em;
}
.step_consumer_credits #group_switch_alternative_payment_method .ui-card .andes-checkbox,
.step_consumer_credits
    #group_switch_alternative_payment_method
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .andes-checkbox,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_consumer_credits
    #group_switch_alternative_payment_method
    .group-row
    .andes-checkbox {
    -webkit-align-items: center;
    align-items: center;
    display: -webkit-flex;
    display: flex;
}
.step_consumer_credits #group_switch_alternative_payment_method .ui-card .andes-checkbox input.andes-checkbox__input,
.step_consumer_credits
    #group_switch_alternative_payment_method
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .andes-checkbox
    input.andes-checkbox__input,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_consumer_credits
    #group_switch_alternative_payment_method
    .group-row
    .andes-checkbox
    input.andes-checkbox__input {
    margin: 0.25em 0 0;
    position: relative;
    width: 0.625em;
}
.step_consumer_credits #group_switch_alternative_payment_method .ui-card .andes-checkbox span.andes-checkbox__mimic,
.step_consumer_credits
    #group_switch_alternative_payment_method
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .andes-checkbox
    span.andes-checkbox__mimic,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_consumer_credits
    #group_switch_alternative_payment_method
    .group-row
    .andes-checkbox
    span.andes-checkbox__mimic {
    position: relative;
}
.step_consumer_credits .free-interest {
    display: -webkit-inline-flex;
    display: inline-flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    width: 100%;
}
.step_consumer_credits .free-interest .andes-list__item-first-column {
    -webkit-flex-grow: unset;
    flex-grow: unset;
}
.step_consumer_credits .free-interest .option-additional-info {
    margin-left: 0.25em;
}
.step_consumer_credits .free-interest .option-additional-info .installment__interest {
    font-size: 0.875em;
}
.step_consumer_credits .group-summary {
    background: #fff;
}
.step_consumer_credits .layout__col-content .title-h2 {
    margin: 0 0 0.75em;
}
.step_consumer_credits .layout__col-content .ui-card,
.step_consumer_credits .layout__col-content div.optimus div.group-payment-method-row-with-cvv .group-row,
div.optimus div.group-payment-method-row-with-cvv .step_consumer_credits .layout__col-content .group-row {
    padding: 2em;
}
.step_consumer_credits .layout__col-content .ui-card.options-list,
.step_consumer_credits .layout__col-content div.optimus div.group-payment-method-row-with-cvv .options-list.group-row,
div.optimus div.group-payment-method-row-with-cvv .step_consumer_credits .layout__col-content .options-list.group-row {
    padding: 0;
}
.step_consumer_credits .layout__col-content .ui-card form,
.step_consumer_credits .layout__col-content div.optimus div.group-payment-method-row-with-cvv .group-row form,
div.optimus div.group-payment-method-row-with-cvv .step_consumer_credits .layout__col-content .group-row form {
    -webkit-align-items: center;
    align-items: center;
    display: -webkit-flex;
    display: flex;
}
.step_consumer_credits .layout__col-content .andes-dropdown {
    margin: 0;
}
.step_consumer_credits .layout__col-content > .group-generic {
    -webkit-align-items: center;
    align-items: center;
    display: -webkit-flex;
    display: flex;
    margin-bottom: 0.625em;
    margin-top: -1.25em;
}
.step_consumer_credits .layout__col-content > .group-generic .bank-deals-link,
.step_consumer_credits .layout__col-content > .group-generic .toggle-button-wrapper {
    margin: 0;
    position: unset;
}
.step_consumer_credits .layout__col-content > .group-generic span {
    padding-left: 0.9375em;
    padding-right: 0.9375em;
}
.step_consumer_credits #group_pay .group-generic {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}
.step_consumer_credits #group_pay .group-generic .icon-wrapper {
    margin-right: 1.125em;
    vertical-align: middle;
}
.step_consumer_credits #group_pay .ui-card,
.step_consumer_credits #group_pay div.optimus div.group-payment-method-row-with-cvv .group-row,
div.optimus div.group-payment-method-row-with-cvv .step_consumer_credits #group_pay .group-row {
    min-height: 7em;
    overflow: visible;
    padding: 1.25em 2em;
}
.step_consumer_credits #group_pay .ui-card .andes-message--quiet,
.step_consumer_credits #group_pay div.optimus div.group-payment-method-row-with-cvv .group-row .andes-message--quiet,
div.optimus div.group-payment-method-row-with-cvv .step_consumer_credits #group_pay .group-row .andes-message--quiet {
    margin-top: 2.375em;
}
.step_consumer_credits #group_pay .row_cvv {
    max-width: 17.5em;
}
.step_consumer_credits .group-generic .select-additional-info {
    margin-top: 0.375em;
}
.step_consumer_credits .group-row {
    min-height: 4.625em;
}
@media (max-width: 832px) {
    .step_consumer_credits .layout--modal .bank-deals-link {
        margin: -1.4285714286em 0 0.5714285714em;
    }
}
.step_consumer_credits .layout--modal .layout__col-sidebar {
    background: #fff;
}
.step_consumer_credits .layout--modal .layout__col-sidebar .andes-button.andes-button--loud {
    margin-bottom: 0.1875em;
}
.step_consumer_credits .layout--modal .c-title ~ .group-row + .group-row {
    max-height: 4.625em;
}
.step_consumer_credits .layout--modal .c-title {
    margin-bottom: 1em;
}
.step_consumer_credits .animated-content .group_form .ui-card,
.step_consumer_credits .animated-content .group_form div.optimus div.group-payment-method-row-with-cvv .group-row,
div.optimus div.group-payment-method-row-with-cvv .step_consumer_credits .animated-content .group_form .group-row {
    margin-top: 0;
}
.step_consumer_credits #change_payment_form .andes-button .andes-button__content {
    white-space: nowrap;
}
.step_consumer_credits .toggle-button-wrapper .toggle-button span.andes-button__content {
    padding-left: 0;
    padding-right: 0;
}
.step_consumer_credits .row_cvv .icon-wrapper,
.step_consumer_credits .step_express .row_cvv .icon-wrapper {
    margin-right: 1.25em;
}
.step_consumer_credits #installments_group_generic .option-additional-info {
    padding: 0.875em 0;
}
.step_consumer_credits .layout--modal .group-summary__container :not(.icon-wrapper) + .text {
    bottom: 5.75em;
    position: absolute;
}
.step_consumer_credits .select-installments .select-additional-info {
    margin-top: 0.25em;
}
.step_security_code_form .ui-card-wrapper + .text {
    margin-top: 1em;
}
.step_security_code_form .layout__col-content .group-generic-block .form .ui-card-wrapper {
    margin-bottom: 1em;
}
.step_security_code_form .layout__col-sidebar {
    min-width: 16.875em;
}
.step_first_split_payment .card-form-group .group-generic:empty,
.step_second_split_payment .card-form-group .group-generic:empty {
    display: none;
}
.step_first_split_payment .split-amount__input.andes-form-control--error .andes-form-control__message,
.step_second_split_payment .split-amount__input.andes-form-control--error .andes-form-control__message {
    min-height: 0.875em;
}
.step_first_split_payment .andes-form-control--disabled .andes-form-control__border,
.step_second_split_payment .andes-form-control--disabled .andes-form-control__border {
    background-color: rgba(0, 0, 0, 0.25);
    background-image: none;
    -webkit-background-size: auto auto;
    background-size: auto;
}
.step_first_split_payment .card-form-group .group-generic .icon-wrapper,
.step_first_split_payment .card-form-group .group-generic .icon-wrapper.icon-card-cvv,
.step_first_split_payment .card-number-with-issuer__group .icon-wrapper,
.step_first_split_payment .card-number-with-issuer__group .icon-wrapper.icon-card-cvv,
.step_second_split_payment .card-form-group .group-generic .icon-wrapper,
.step_second_split_payment .card-form-group .group-generic .icon-wrapper.icon-card-cvv,
.step_second_split_payment .card-number-with-issuer__group .icon-wrapper,
.step_second_split_payment .card-number-with-issuer__group .icon-wrapper.icon-card-cvv {
    -webkit-flex: 0 1 auto;
    flex: 0 1 auto;
    margin: 0;
    padding: 0;
    position: relative;
}
.step_first_split_payment .card-form-group .group-generic .icon-wrapper.icon-card-cvv > :first-child,
.step_first_split_payment .card-form-group .group-generic .icon-wrapper > :first-child,
.step_first_split_payment .card-number-with-issuer__group .icon-wrapper.icon-card-cvv > :first-child,
.step_first_split_payment .card-number-with-issuer__group .icon-wrapper > :first-child,
.step_second_split_payment .card-form-group .group-generic .icon-wrapper.icon-card-cvv > :first-child,
.step_second_split_payment .card-form-group .group-generic .icon-wrapper > :first-child,
.step_second_split_payment .card-number-with-issuer__group .icon-wrapper.icon-card-cvv > :first-child,
.step_second_split_payment .card-number-with-issuer__group .icon-wrapper > :first-child {
    margin: 0;
    position: absolute;
}
.step_first_split_payment .card-form-group .group-generic .icon-wrapper.icon-card-cvv > div,
.step_first_split_payment .card-form-group .group-generic .icon-wrapper > div,
.step_first_split_payment .card-number-with-issuer__group .icon-wrapper.icon-card-cvv > div,
.step_first_split_payment .card-number-with-issuer__group .icon-wrapper > div,
.step_second_split_payment .card-form-group .group-generic .icon-wrapper.icon-card-cvv > div,
.step_second_split_payment .card-form-group .group-generic .icon-wrapper > div,
.step_second_split_payment .card-number-with-issuer__group .icon-wrapper.icon-card-cvv > div,
.step_second_split_payment .card-number-with-issuer__group .icon-wrapper > div {
    top: 2em;
}
.step_first_split_payment .card-form-group .group-generic .icon-wrapper.icon-card-cvv > svg,
.step_first_split_payment .card-form-group .group-generic .icon-wrapper > svg,
.step_first_split_payment .card-number-with-issuer__group .icon-wrapper.icon-card-cvv > svg,
.step_first_split_payment .card-number-with-issuer__group .icon-wrapper > svg,
.step_second_split_payment .card-form-group .group-generic .icon-wrapper.icon-card-cvv > svg,
.step_second_split_payment .card-form-group .group-generic .icon-wrapper > svg,
.step_second_split_payment .card-number-with-issuer__group .icon-wrapper.icon-card-cvv > svg,
.step_second_split_payment .card-number-with-issuer__group .icon-wrapper > svg {
    top: 1.5em;
}
.step_first_split_payment .card-form-group .group-generic .icon-wrapper .payment-card-icon,
.step_first_split_payment .card-number-with-issuer__group .icon-wrapper .payment-card-icon,
.step_second_split_payment .card-form-group .group-generic .icon-wrapper .payment-card-icon,
.step_second_split_payment .card-number-with-issuer__group .icon-wrapper .payment-card-icon {
    margin-left: 0.5em;
}
.step_first_split_payment .bank-deals-link,
.step_second_split_payment .bank-deals-link {
    margin: 0;
    position: absolute;
    right: 2.75em;
    top: 3.25em;
}
.step_first_split_payment .form.group_form > .ui-card,
.step_first_split_payment div.optimus div.group-payment-method-row-with-cvv .form.group_form > .group-row,
.step_second_split_payment .form.group_form > .ui-card,
.step_second_split_payment div.optimus div.group-payment-method-row-with-cvv .form.group_form > .group-row,
div.optimus div.group-payment-method-row-with-cvv .step_first_split_payment .form.group_form > .group-row,
div.optimus div.group-payment-method-row-with-cvv .step_second_split_payment .form.group_form > .group-row {
    margin-bottom: 1.5em;
    padding: 1.5em 1.5em 2em;
}
.step_first_split_payment .card-form-group,
.step_second_split_payment .card-form-group {
    display: -webkit-flex;
    display: flex;
}
.step_first_split_payment .card-form-group .group-generic,
.step_second_split_payment .card-form-group .group-generic {
    display: -webkit-flex;
    display: flex;
    -webkit-flex: 1;
    flex: 1;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 0;
}
.step_first_split_payment .card-form-group .group-generic > :nth-child(n),
.step_second_split_payment .card-form-group .group-generic > :nth-child(n) {
    -webkit-flex: 1;
    flex: 1;
}
.step_first_split_payment .card-form-group .group-generic .input-cvv,
.step_second_split_payment .card-form-group .group-generic .input-cvv {
    max-width: 75%;
}
.step_first_split_payment .card-form-group .andes-dropdown,
.step_first_split_payment .card-form-group .icon-wrapper,
.step_first_split_payment .card-form-group label,
.step_second_split_payment .card-form-group .andes-dropdown,
.step_second_split_payment .card-form-group .icon-wrapper,
.step_second_split_payment .card-form-group label {
    margin-right: 0.75em;
}
.step_first_split_payment .card-form-group .select-installments .andes-dropdown,
.step_second_split_payment .card-form-group .select-installments .andes-dropdown {
    margin-right: 0;
}
.step_first_split_payment .card-form-group > :nth-child(2),
.step_second_split_payment .card-form-group > :nth-child(2) {
    margin-left: 0.6875em;
}
.step_first_split_payment .card-form-group > :last-child,
.step_second_split_payment .card-form-group > :last-child {
    margin-right: -0.6875em;
}
.step_first_split_payment .card-form-group #installments_select_id,
.step_second_split_payment .card-form-group #installments_select_id {
    -webkit-flex: 1 1 100%;
    flex: 1 1 100%;
    max-width: 100%;
}
.step_first_split_payment .card-form-group #installments_select_id.andes-dropdown--open,
.step_second_split_payment .card-form-group #installments_select_id.andes-dropdown--open {
    overflow: visible;
}
.step_first_split_payment .card-form-group #installments_select_id .andes-dropdown__trigger,
.step_second_split_payment .card-form-group #installments_select_id .andes-dropdown__trigger {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.step_first_split_payment .card-form-group:last-child,
.step_second_split_payment .card-form-group:last-child {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
}
.step_first_split_payment .card-form-group:last-child .group-generic,
.step_second_split_payment .card-form-group:last-child .group-generic {
    padding-right: 0;
    width: 100%;
}
.step_first_split_payment .card-form-group:last-child .group-generic:last-child,
.step_second_split_payment .card-form-group:last-child .group-generic:last-child {
    margin-left: 0;
}
.step_first_split_payment .card-form-group:last-child .group-generic:last-child .input-document,
.step_second_split_payment .card-form-group:last-child .group-generic:last-child .input-document {
    margin-right: 0;
}
.step_first_split_payment .group-identification__children .andes-dropdown,
.step_second_split_payment .group-identification__children .andes-dropdown {
    min-width: 22%;
}
.step_first_split_payment .layout--modal .scroller,
.step_second_split_payment .layout--modal .scroller {
    height: 25em;
}
.step_first_split_payment .layout--modal .user-header + .layout__col-content .scroller,
.step_second_split_payment .layout--modal .user-header + .layout__col-content .scroller {
    height: 21.25em;
}
.step_first_split_payment .card-number-with-issuer__group.multiple-issuers #card_number,
.step_second_split_payment .card-number-with-issuer__group.multiple-issuers #card_number {
    font-size: 1.0625em;
}
.step_first_split_payment .single-bin > :first-child .icon-wrapper,
.step_second_split_payment .single-bin > :first-child .icon-wrapper {
    margin-right: 0;
}
.step_first_split_payment .single-bin > :nth-child(2),
.step_second_split_payment .single-bin > :nth-child(2) {
    -webkit-flex: 0;
    flex: 0;
    visibility: hidden;
}
.step_first_split_payment .icon-card-cvv,
.step_second_split_payment .icon-card-cvv {
    margin-right: -0.375em;
    width: 3.1875em;
}
.step_first_split_payment .icon-card-cvv svg,
.step_second_split_payment .icon-card-cvv svg {
    -webkit-flex: none;
    flex: none;
    margin-left: 1.25em;
    width: 3.1875em;
}
.step_first_split_payment .andes-button--link,
.step_second_split_payment .andes-button--link {
    margin-left: 2.625em;
}
.step_first_split_payment .ui-card,
.step_first_split_payment div.optimus div.group-payment-method-row-with-cvv .group-row,
.step_second_split_payment .ui-card,
.step_second_split_payment div.optimus div.group-payment-method-row-with-cvv .group-row,
div.optimus div.group-payment-method-row-with-cvv .step_first_split_payment .group-row,
div.optimus div.group-payment-method-row-with-cvv .step_second_split_payment .group-row {
    overflow: visible;
}
.step_first_split_payment #installments_select_id .andes-list__item,
.step_first_split_payment .scroller > .group-generic,
.step_second_split_payment #installments_select_id .andes-list__item,
.step_second_split_payment .scroller > .group-generic {
    display: -webkit-flex;
    display: flex;
}
.step_first_split_payment .scroller > .group-generic form,
.step_second_split_payment .scroller > .group-generic form {
    margin-left: auto;
    margin-right: 3.125em;
}
.step_first_split_payment .layout--modal .layout__col-content .scroller,
.step_second_split_payment .layout--modal .layout__col-content .scroller {
    margin-bottom: 2em;
    top: 8em;
}
.step_first_split_payment .form.group_form > .ui-card.split-amount,
.step_first_split_payment div.optimus div.group-payment-method-row-with-cvv .form.group_form > .split-amount.group-row,
.step_second_split_payment .form.group_form > .ui-card.split-amount,
.step_second_split_payment div.optimus div.group-payment-method-row-with-cvv .form.group_form > .split-amount.group-row,
div.optimus div.group-payment-method-row-with-cvv .step_first_split_payment .form.group_form > .split-amount.group-row,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_second_split_payment
    .form.group_form
    > .split-amount.group-row {
    padding: 1.5em;
}
.step_first_split_payment .form.group_form > .ui-card.split-amount .andes-form-control.andes-form-control--textfield,
.step_first_split_payment
    div.optimus
    div.group-payment-method-row-with-cvv
    .form.group_form
    > .split-amount.group-row
    .andes-form-control.andes-form-control--textfield,
.step_second_split_payment .form.group_form > .ui-card.split-amount .andes-form-control.andes-form-control--textfield,
.step_second_split_payment
    div.optimus
    div.group-payment-method-row-with-cvv
    .form.group_form
    > .split-amount.group-row
    .andes-form-control.andes-form-control--textfield,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_first_split_payment
    .form.group_form
    > .split-amount.group-row
    .andes-form-control.andes-form-control--textfield,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_second_split_payment
    .form.group_form
    > .split-amount.group-row
    .andes-form-control.andes-form-control--textfield {
    padding-top: 0;
}
.step_first_split_payment .form.group_form > .ui-card.split-amount .icon-wrapper,
.step_first_split_payment
    div.optimus
    div.group-payment-method-row-with-cvv
    .form.group_form
    > .split-amount.group-row
    .icon-wrapper,
.step_second_split_payment .form.group_form > .ui-card.split-amount .icon-wrapper,
.step_second_split_payment
    div.optimus
    div.group-payment-method-row-with-cvv
    .form.group_form
    > .split-amount.group-row
    .icon-wrapper,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_first_split_payment
    .form.group_form
    > .split-amount.group-row
    .icon-wrapper,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_second_split_payment
    .form.group_form
    > .split-amount.group-row
    .icon-wrapper {
    margin-top: 1.5em;
}
.step_first_split_payment #installments_select_id > .andes-dropdown__popover,
.step_second_split_payment #installments_select_id > .andes-dropdown__popover {
    bottom: -20%;
    max-height: 15.625em;
    overflow-x: hidden;
    overflow-y: scroll;
    top: auto !important;
}
.step_first_split_payment div[name*="month"] > .andes-dropdown__popover,
.step_first_split_payment div[name*="year"] > .andes-dropdown__popover,
.step_second_split_payment div[name*="month"] > .andes-dropdown__popover,
.step_second_split_payment div[name*="year"] > .andes-dropdown__popover {
    max-height: 18.75em;
    overflow-y: scroll;
    top: -5.625em !important;
}
.step_first_split_payment div[name*="identification_group_id"] > .andes-dropdown__popover,
.step_second_split_payment div[name*="identification_group_id"] > .andes-dropdown__popover {
    bottom: -20%;
    max-height: 15.625em;
    overflow-y: scroll;
    top: auto !important;
}
.step_first_split_payment .ui-card .card-form-group:last-child > .group-generic:last-child,
.step_first_split_payment .ui-card .card-form-group:not(:last-child),
.step_first_split_payment .ui-card .card-number-with-issuer__wrapper:first-child,
.step_first_split_payment
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .card-form-group:last-child
    > .group-generic:last-child,
.step_first_split_payment
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .card-form-group:not(:last-child),
.step_first_split_payment
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .card-number-with-issuer__wrapper:first-child,
.step_second_split_payment .ui-card .card-form-group:last-child > .group-generic:last-child,
.step_second_split_payment .ui-card .card-form-group:not(:last-child),
.step_second_split_payment .ui-card .card-number-with-issuer__wrapper:first-child,
.step_second_split_payment
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .card-form-group:last-child
    > .group-generic:last-child,
.step_second_split_payment
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .card-form-group:not(:last-child),
.step_second_split_payment
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .card-number-with-issuer__wrapper:first-child,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_first_split_payment
    .group-row
    .card-form-group:last-child
    > .group-generic:last-child,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_first_split_payment
    .group-row
    .card-form-group:not(:last-child),
div.optimus
    div.group-payment-method-row-with-cvv
    .step_first_split_payment
    .group-row
    .card-number-with-issuer__wrapper:first-child,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_second_split_payment
    .group-row
    .card-form-group:last-child
    > .group-generic:last-child,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_second_split_payment
    .group-row
    .card-form-group:not(:last-child),
div.optimus
    div.group-payment-method-row-with-cvv
    .step_second_split_payment
    .group-row
    .card-number-with-issuer__wrapper:first-child {
    margin-bottom: 0.75em;
}
.step_access_denied .access-denied {
    left: 0;
    padding-bottom: 1em;
    padding-top: 1.5em;
    position: absolute;
    text-align: center;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 100%;
}
.step_access_denied .access-denied__icon {
    display: block;
    margin-bottom: 1.5em;
}
.step_access_denied .access-denied .button-link {
    margin-top: 1.5em;
}
.step_access_denied .access-denied h1 {
    font-size: 1.25em;
    margin: 0 auto 0.3125em;
}
.step_access_denied .access-denied h2 {
    font-size: 1em;
    height: 2.5em;
    margin: 0 auto;
    width: 18.875em;
}
.step_access_denied h1 {
    width: 23.125em;
}
.step_zipcode_form .andes-form-control__control .andes-button.andes-button--quiet {
    padding-left: 1em;
    padding-right: 1em;
}
.step_zipcode_form .layout--modal .layout__col-content {
    z-index: 100;
}
.step_zipcode_form .layout--modal .layout__col-content div.group-generic {
    background: #ededed;
    height: 100%;
    left: 0;
    padding: 1.5em 8.75em 0;
    position: absolute;
    top: 0;
    width: 50.625em;
}
.step_zipcode_form .layout--modal .layout__col-content div.group-generic .c-title {
    margin-bottom: 1em;
}
.step_zipcode_form .layout__col-content .ui-card-wrapper > .ui-card,
.step_zipcode_form .layout__col-content div.optimus div.group-payment-method-row-with-cvv .ui-card-wrapper > .group-row,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_zipcode_form
    .layout__col-content
    .ui-card-wrapper
    > .group-row {
    margin-top: 0;
    padding: 2em;
}
.step_zipcode_form .layout__col-content .ui-card-wrapper > .ui-card .group-flex,
.step_zipcode_form
    .layout__col-content
    div.optimus
    div.group-payment-method-row-with-cvv
    .ui-card-wrapper
    > .group-row
    .group-flex,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_zipcode_form
    .layout__col-content
    .ui-card-wrapper
    > .group-row
    .group-flex {
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}
.step_zipcode_form .layout--embed .layout__col-content > .modal-content .modal-wrapper,
.step_zipcode_form .layout--redirect .layout__col-content > .modal-content .modal-wrapper {
    max-width: 37.5em;
}
.step_zipcode_form .ui-card,
.step_zipcode_form div.optimus div.group-payment-method-row-with-cvv .group-row,
div.optimus div.group-payment-method-row-with-cvv .step_zipcode_form .group-row {
    overflow: inherit;
}
.step_zipcode_form .ui-card .group-flex .andes-dropdown,
.step_zipcode_form .ui-card .group-flex .andes-form-control,
.step_zipcode_form div.optimus div.group-payment-method-row-with-cvv .group-row .group-flex .andes-dropdown,
.step_zipcode_form div.optimus div.group-payment-method-row-with-cvv .group-row .group-flex .andes-form-control,
div.optimus div.group-payment-method-row-with-cvv .step_zipcode_form .group-row .group-flex .andes-dropdown,
div.optimus div.group-payment-method-row-with-cvv .step_zipcode_form .group-row .group-flex .andes-form-control {
    width: 50%;
}
.step_zipcode_form .ui-card .group-flex .andes-dropdown:first-child,
.step_zipcode_form .ui-card .group-flex label:first-child,
.step_zipcode_form div.optimus div.group-payment-method-row-with-cvv .group-row .group-flex .andes-dropdown:first-child,
.step_zipcode_form div.optimus div.group-payment-method-row-with-cvv .group-row .group-flex label:first-child,
div.optimus div.group-payment-method-row-with-cvv .step_zipcode_form .group-row .group-flex .andes-dropdown:first-child,
div.optimus div.group-payment-method-row-with-cvv .step_zipcode_form .group-row .group-flex label:first-child {
    margin-right: 0.5em;
}
.step_zipcode_form .ui-card .group-flex .andes-dropdown:nth-child(3),
.step_zipcode_form .ui-card .group-flex label:last-child,
.step_zipcode_form
    div.optimus
    div.group-payment-method-row-with-cvv
    .group-row
    .group-flex
    .andes-dropdown:nth-child(3),
.step_zipcode_form div.optimus div.group-payment-method-row-with-cvv .group-row .group-flex label:last-child,
div.optimus
    div.group-payment-method-row-with-cvv
    .step_zipcode_form
    .group-row
    .group-flex
    .andes-dropdown:nth-child(3),
div.optimus div.group-payment-method-row-with-cvv .step_zipcode_form .group-row .group-flex label:last-child {
    margin-left: 0.5em;
}
.step_zipcode_form .ui-card .autofiller,
.step_zipcode_form div.optimus div.group-payment-method-row-with-cvv .group-row .autofiller,
div.optimus div.group-payment-method-row-with-cvv .step_zipcode_form .group-row .autofiller {
    margin-bottom: 0.75em;
}
.step_address_form .andes-form-control.required .andes-form-control__label:after {
    content: " *";
    font-size: 1.25em;
}
.step_address_form .input-action .andes-checkbox--embedded.andes-checkbox {
    margin-bottom: 0;
}
.step_address_form .input-action .andes-checkbox--embedded.andes-checkbox .andes-checkbox__label-text {
    color: rgba(71, 154, 209, 0.4);
    font-size: 12px;
    padding-bottom: 0;
}
.step_address_form .group-flex > label,
.step_address_form .input-action input {
    -webkit-flex: 1;
    flex: 1;
}
.step_address_form .group-flex > label:first-of-type {
    margin-right: 2em;
}
.step_address_form .andes-form-control__control .andes-button.andes-button--quiet {
    margin-bottom: 0;
    padding-left: 1em;
    padding-right: 1em;
}
.step_address_form label.andes-form-control--multiline .andes-form-control__control textarea {
    max-height: 4.25em;
    min-height: 4.25em;
    padding: 1em;
    text-indent: unset;
}
.step_address_form
    label.andes-form-control--multiline
    .andes-form-control__control
    textarea::-webkit-input-placeholder {
    font-size: 14px;
}
.step_address_form label.andes-form-control--multiline .andes-form-control__control textarea::-moz-placeholder {
    font-size: 14px;
}
.step_address_form label.andes-form-control--multiline .andes-form-control__control textarea::placeholder {
    font-size: 14px;
}
.step_address_form label.andes-form-control--multiline .andes-form-control__control span.andes-form-control__label {
    font-size: 14px;
    padding: 1em 2em 1em 1em;
    white-space: pre-wrap;
}
.step_address_form label.andes-form-control--multiline.andes-form-control--focused span.andes-form-control__label {
    display: none;
}
.step_address_form p.text {
    color: rgba(0, 0, 0, 0.55);
    font-size: 16px;
    margin-bottom: 1.5em;
    margin-top: 2em;
}
.step_address_form p.text:last-of-type {
    color: rgba(0, 0, 0, 0.9);
    margin-bottom: 0;
}
.step_address_form .row-summary__free {
    color: #2d8e5f;
}
.step_address_form .layout--modal #input_street_number {
    width: 80%;
}
.step_address_form .c-title {
    margin-bottom: 1em;
}
.step_address_form .group_form_scroller .ui-card,
.step_address_form .group_form_scroller div.optimus div.group-payment-method-row-with-cvv .group-row,
div.optimus div.group-payment-method-row-with-cvv .step_address_form .group_form_scroller .group-row {
    margin-bottom: 1.5em;
}
.step_address_form .group_form_scroller button.andes-button {
    margin-top: 1em;
}
.step_address_form .ui-card,
.step_address_form div.optimus div.group-payment-method-row-with-cvv .group-row,
div.optimus div.group-payment-method-row-with-cvv .step_address_form .group-row {
    padding: 1.5em;
}
.step_address_form .andes-form-control {
    margin-bottom: 0.75em;
}
.step_address_form .group-flex .andes-form-control:first-child {
    margin-right: 0.375em;
}
.step_address_form .group-flex .andes-form-control:last-child {
    margin-left: 0.375em;
}
.step_address_form .layout--modal .layout__col-content {
    width: 66%;
}
.step_shipping_options .group-list .andes-list,
.step_shipping_review .group-list .andes-list {
    -webkit-border-radius: 0.25em;
    border-radius: 0.25em;
    -webkit-box-shadow: 0 0.07em 0.125em 0 rgba(0, 0, 0, 0.25);
    box-shadow: 0 0.07em 0.125em 0 rgba(0, 0, 0, 0.25);
}
.step_shipping_options.modal-view .scroller .list,
.step_shipping_review.modal-view .scroller .list {
    margin-bottom: 1.5em;
}
.step_address_selector .list .list-item {
    margin-bottom: 1em;
}
.step_address_selector .list .list-item .options-list.ui-card,
.step_address_selector .list .list-item div.optimus div.group-payment-method-row-with-cvv .options-list.group-row,
div.optimus div.group-payment-method-row-with-cvv .step_address_selector .list .list-item .options-list.group-row {
    max-height: 5.875em;
    min-height: 5.875em;
}
.step_address_selector .list .list-item .options-list__label {
    max-height: 5.875em;
    min-height: 5.875em;
    padding-bottom: 2.375em;
    padding-top: 2.125em;
}
.step_address_selector .list .list-item:last-of-type {
    margin-bottom: 0;
}
.step_address_selector .group-list .andes-list {
    -webkit-border-radius: 0.25em;
    border-radius: 0.25em;
    -webkit-box-shadow: 0 0.07em 0.125em 0 rgba(0, 0, 0, 0.25);
    box-shadow: 0 0.07em 0.125em 0 rgba(0, 0, 0, 0.25);
}
.step_address_selector .group-list,
.step_address_selector .group-list-wrapper {
    margin-bottom: 1.5em;
}
.step_shipping_type form > .group-generic .options-list,
.step_shipping_type form > .group-row,
.step_user_type form > .group-generic .options-list,
.step_user_type form > .group-row {
    margin-bottom: 0.5em;
}
.step_shipping_type form > .group-generic .options-list li .group-media-object > div:last-of-type,
.step_user_type form > .group-generic .options-list li .group-media-object > div:last-of-type {
    margin-left: auto;
}
.step_shipping_type form > .group-generic .options-list li .group-media-object > div:last-of-type .icon-wrapper,
.step_user_type form > .group-generic .options-list li .group-media-object > div:last-of-type .icon-wrapper {
    margin-right: 0;
    width: 1em;
}
.step_shipping_type .item-login_user_row_id label .group-media-object :nth-child(2),
.step_user_type .item-login_user_row_id label .group-media-object :nth-child(2) {
    font-weight: 400;
}
.step_shipping_type .item-login_user_row_id label .group-media-object :nth-child(2) .row-details :nth-child(2),
.step_user_type .item-login_user_row_id label .group-media-object :nth-child(2) .row-details :nth-child(2) {
    color: rgba(0, 0, 0, 0.55);
    font-size: 0.875em;
    padding-top: 0.25em;
}
.step_shipping_type .item-login_user_row_id label .group-media-object :nth-child(3),
.step_user_type .item-login_user_row_id label .group-media-object :nth-child(3) {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row-reverse;
    flex-direction: row-reverse;
    left: 0;
    position: absolute;
    top: -0.25em;
    width: 100%;
}
.step_shipping_type .item-login_user_row_id label .group-media-object :nth-child(3) .andes-badge,
.step_user_type .item-login_user_row_id label .group-media-object :nth-child(3) .andes-badge {
    padding: 0;
}
.step_shipping_type .item-login_user_row_id label .group-media-object :nth-child(3) .andes-badge .andes-badge__content,
.step_user_type .item-login_user_row_id label .group-media-object :nth-child(3) .andes-badge .andes-badge__content {
    -webkit-align-items: center;
    align-items: center;
    -webkit-column-gap: 0.3125em;
    -moz-column-gap: 0.3125em;
    column-gap: 0.3125em;
    display: -webkit-flex;
    display: flex;
    font-weight: 700;
}
.step_shipping_type .button-back-arrow + .c-title,
.step_user_type .button-back-arrow + .c-title {
    font-size: 1.375em;
}
.step_blocked_popups .blocked-popups-container {
    left: 0;
    padding-bottom: 1em;
    padding-top: 1.5em;
    position: absolute;
    text-align: center;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 100%;
}
.step_blocked_popups .icon-blocked-popups {
    margin-bottom: 1.25em;
}
.step_blocked_popups .icon-blocked-popups.icon-wrapper {
    width: unset;
}
.step_blocked_popups h1 {
    font-size: 20px;
    font-weight: 600;
    margin: 0 auto;
    width: 13.75em;
}
.step_blocked_popups h1,
.step_blocked_popups h2 {
    color: rgba(0, 0, 0, 0.9);
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    line-height: 1.25;
    text-align: center;
}
.step_blocked_popups h2 {
    font-size: 16px;
    font-weight: 400;
    margin: 0.875em auto 2.5em;
    width: 16.875em;
}
.step_blocked_popups a {
    color: rgba(71, 154, 209, 0.4);
    font-size: 16px;
    font-stretch: normal;
    font-style: normal;
    font-weight: 600;
    letter-spacing: normal;
    line-height: 1;
    margin: 0 auto;
    text-align: center;
}
.step_challenge_3ds .c-title {
    margin-bottom: 0.25em;
}
.step_challenge_3ds .title-h2 {
    color: rgba(0, 0, 0, 0.9);
    font-size: 1em;
    font-stretch: normal;
    font-style: normal;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.25;
    margin-bottom: 1.5em;
}
.step_challenge_3ds .threeds__container + .group-generic {
    margin-top: 1.25em;
}
.step_challenge_3ds .layout--modal .threeds__iframe-container,
.step_challenge_3ds .layout--modal .threeds__iframe-container .threeds__iframe {
    min-height: 17.8125em;
}
.step_challenge_3ds .layout__col-content {
    padding: 1em 2em;
}
.step_challenge_3ds .group-generic form {
    margin: 0;
}
.step_restart_flow .restart-flow-container {
    left: 0;
    padding-bottom: 1em;
    padding-top: 1.5em;
    position: absolute;
    text-align: center;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 100%;
}
.step_restart_flow .restart-flow-container .icon-blocked-new-tab,
.step_restart_flow .restart-flow-container .icon-megaphone {
    margin-bottom: 1.25em;
}
.step_restart_flow .restart-flow-container .icon-blocked-new-tab.icon-wrapper,
.step_restart_flow .restart-flow-container .icon-megaphone.icon-wrapper {
    width: unset;
}
.step_restart_flow .restart-flow-container h1 {
    font-size: 20px;
    font-weight: 600;
    margin: 0 auto;
}
.step_restart_flow .restart-flow-container h1,
.step_restart_flow .restart-flow-container h2 {
    color: rgba(0, 0, 0, 0.9);
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    line-height: 1.25;
    text-align: center;
    width: 17.75em;
}
.step_restart_flow .restart-flow-container h2 {
    font-size: 16px;
    font-weight: 400;
    margin: 0.875em auto 2.5em;
}
.step_restart_flow .restart-flow-container a {
    font-size: 16px;
    font-stretch: normal;
    font-style: normal;
    font-weight: 600;
    letter-spacing: normal;
    line-height: 1;
    padding: 1em;
    text-align: center;
    width: 10.9375em;
}
.step_sniffing_scan_qr .layout__col-sidebar .row-summary.row-summary--pay {
    margin-bottom: 4em;
}
.step_sniffing_scan_qr .layout__col-content .scroller {
    height: 100%;
}
.step_sniffing_scan_qr .ui-card,
.step_sniffing_scan_qr div.optimus div.group-payment-method-row-with-cvv .group-row,
div.optimus div.group-payment-method-row-with-cvv .step_sniffing_scan_qr .group-row {
    margin: 0 auto;
    max-width: 29.75em;
    padding: 2em;
}
.step_sniffing_scan_qr .ui-card .title-h2,
.step_sniffing_scan_qr div.optimus div.group-payment-method-row-with-cvv .group-row .title-h2,
div.optimus div.group-payment-method-row-with-cvv .step_sniffing_scan_qr .group-row .title-h2 {
    font-size: 1.125em;
    padding: 0 2em;
    text-align: center;
}
.step_sniffing_scan_qr .layout--modal .ui-card,
.step_sniffing_scan_qr .layout--modal div.optimus div.group-payment-method-row-with-cvv .group-row,
div.optimus div.group-payment-method-row-with-cvv .step_sniffing_scan_qr .layout--modal .group-row {
    margin-bottom: 0;
}
.step_sniffing_scan_qr .qr-code {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
}
.step_sniffing_scan_qr .andes-button {
    margin-bottom: 0;
}
.buyfast {
    margin: 0;
    padding: 0.125em 0.75em;
    position: absolute;
    right: 0;
    top: 0;
}
.buyfast.andes-badge--small.andes-badge--corner {
    -webkit-border-top-right-radius: 4px;
    border-top-right-radius: 4px;
}
.buyfast.andes-badge--small .andes-badge__content {
    padding: 0.1875em 0;
}
.buyfast svg {
    vertical-align: middle;
}
.buyfast .andes-badge__content {
    font-size: 0.75em;
    font-weight: 700;
    line-height: 0.75em;
}
.experiment.experiment--5100.step_payment_option_form .ui-card,
.experiment.experiment--5100.step_payment_option_form div.optimus div.group-payment-method-row-with-cvv .group-row,
div.optimus div.group-payment-method-row-with-cvv .experiment.experiment--5100.step_payment_option_form .group-row {
    margin: 0.625em 0 1.5em;
}
.experiment.experiment--5100.step_payment_option_form .title-h2 {
    color: rgba(0, 0, 0, 0.55);
    font-size: 0.75em;
    letter-spacing: 0.125em;
    line-height: 1.125em;
    margin-bottom: 0;
    text-transform: uppercase;
}
.experiment.experiment--5100.step_payment_option_form .title-h2:first-of-type {
    color: #009ee3;
}
.experiment.experiment--5100.step_payment_option_form .select_mp_login .item-mp_login_row {
    height: auto;
}
.experiment.experiment--5100.step_payment_option_form .select_mp_login .item-mp_login_row .options-list__label {
    padding: 1.25em 1em;
}
.experiment.experiment--5100.step_payment_option_form .select_mp_login .row-details {
    margin-right: 1em;
}
.experiment.experiment--5100.step_payment_option_form .select_mp_login .row-details .title {
    font-weight: 600;
    margin-bottom: 0.25em;
}
.experiment.experiment--5101.step_payment_option_form .ui-card,
.experiment.experiment--5101.step_payment_option_form div.optimus div.group-payment-method-row-with-cvv .group-row,
div.optimus div.group-payment-method-row-with-cvv .experiment.experiment--5101.step_payment_option_form .group-row {
    margin: 0.625em 0 1.5em;
}
.experiment.experiment--5101.step_payment_option_form .title-h2 {
    color: rgba(0, 0, 0, 0.55);
    font-size: 0.75em;
    letter-spacing: 0.125em;
    line-height: 1.125em;
    margin-bottom: 0;
    text-transform: uppercase;
}
.experiment.experiment--5101.step_payment_option_form .select_mp_login .group-media-object {
    -webkit-flex-direction: column;
    flex-direction: column;
    text-align: center;
}
.experiment.experiment--5101.step_payment_option_form .select_mp_login .group-media-object .icon-wrapper {
    background-color: #f5f5f5;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    height: 2.875em;
    margin: 0 auto 0.5em;
    padding: 0.5em;
    width: 2.875em;
}
.experiment.experiment--5101.step_payment_option_form .select_mp_login .group-media-object .icon-wrapper svg {
    width: 1.6875em;
}
.experiment.experiment--5101.step_payment_option_form
    .select_mp_login
    .group-media-object:only-child
    .row-details
    .title {
    font-size: 0.875em;
    font-weight: 600;
    margin: 0 auto 0.5em;
}
.experiment.experiment--5101.step_payment_option_form
    .select_mp_login
    .group-media-object:only-child
    .row-details
    .text {
    font-size: 0.8125em;
}
.experiment.experiment--5101.step_payment_option_form .select_mp_login .group-media-object .text.centered {
    background-color: rgba(71, 154, 209, 0.15);
    -webkit-border-radius: 0.3125em;
    border-radius: 0.3125em;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    color: rgba(71, 154, 209, 0.4);
    display: block;
    font-size: 0.875em;
    font-weight: 600;
    margin: 1em 0 0;
    padding: 0.5em;
    position: relative;
    width: 100%;
}
.experiment.experiment--5101.step_payment_option_form .select_mp_login .group-media-object:last-of-type {
    display: block;
    width: 100%;
}
.experiment.experiment--5101.step_payment_option_form .select_mp_login .options-list__item {
    height: auto;
}
.experiment.experiment--5101.step_payment_option_form .select_mp_login .options-list__label {
    padding: 1.25em;
}
.experiment.experiment--5101.step_payment_option_form .select_mp_login .options-list__label:before {
    display: none;
}
.experiment.experiment--5102.step_user_type .c-title {
    font-size: 1.125em;
}
.experiment.experiment--5102.step_user_type .row-details {
    margin-right: 3.125em;
}
.experiment.experiment--5102.step_user_type .row-details .title {
    font-size: 0.875em;
    font-weight: 600;
    margin: 0 auto 0.125em;
}
.experiment.experiment--5102.step_user_type .row-details .text {
    font-size: 0.8125em;
}
.experiment.experiment--5102.step_user_type .options-list__item {
    height: 5.75em;
}
.experiment.experiment--12838.step_payment_option_form .scroller .title-h2 {
    font-size: 14px;
    margin-bottom: 0.5em;
    margin-top: 1em;
}
.experiment.experiment--12838.step_payment_option_form .more-cards.withSavedOption {
    -webkit-border-radius: 0;
    border-radius: 0;
    margin-bottom: 0;
}
.experiment.experiment--12838.step_payment_option_form .options-list.select_mp_cards_experiment.with-margin-botton,
.experiment.experiment--12838.step_payment_option_form .options-list.select_open_finance.with-margin-botton {
    margin-bottom: 1em;
}
.experiment.experiment--12838.step_payment_option_form .options-list.select_mp_cards_experiment.with-no-margin-botton,
.experiment.experiment--12838.step_payment_option_form .options-list.select_open_finance.with-no-margin-botton {
    margin-bottom: 0;
}
.experiment.experiment--12838.step_payment_option_form .options-list.select_mp_cards_experiment.with-saved-option,
.experiment.experiment--12838.step_payment_option_form .options-list.select_open_finance.with-saved-option {
    -webkit-border-bottom-left-radius: 4px;
    border-bottom-left-radius: 4px;
    -webkit-border-bottom-right-radius: 4px;
    border-bottom-right-radius: 4px;
    border-top: 0.0625em solid #eee;
    -webkit-border-top-left-radius: 0;
    border-top-left-radius: 0;
    -webkit-border-top-right-radius: 0;
    border-top-right-radius: 0;
    -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.12);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.12);
    margin-top: 0;
}
.experiment.experiment--12838.step_payment_option_form
    .options-list.select_mp_cards_experiment.with-saved-option
    .options-list__item.item-new_card_row,
.experiment.experiment--12838.step_payment_option_form
    .options-list.select_mp_cards_experiment.with-saved-option
    .options-list__item.item-pix_opf,
.experiment.experiment--12838.step_payment_option_form
    .options-list.select_open_finance.with-saved-option
    .options-list__item.item-new_card_row,
.experiment.experiment--12838.step_payment_option_form
    .options-list.select_open_finance.with-saved-option
    .options-list__item.item-pix_opf {
    height: 3em;
}
.experiment.experiment--12838.step_payment_option_form
    .options-list.select_mp_cards_experiment.with-saved-option
    .options-list__item.item-new_card_row
    .title,
.experiment.experiment--12838.step_payment_option_form
    .options-list.select_mp_cards_experiment.with-saved-option
    .options-list__item.item-pix_opf
    .title,
.experiment.experiment--12838.step_payment_option_form
    .options-list.select_open_finance.with-saved-option
    .options-list__item.item-new_card_row
    .title,
.experiment.experiment--12838.step_payment_option_form
    .options-list.select_open_finance.with-saved-option
    .options-list__item.item-pix_opf
    .title {
    color: #009ee3;
    font-size: 14px;
    font-weight: 600;
}
.experiment.experiment--12838.step_payment_option_form
    .options-list.select_mp_cards_experiment.with-saved-option
    .options-list__item.item-new_card_row
    .icon-wrapper,
.experiment.experiment--12838.step_payment_option_form
    .options-list.select_mp_cards_experiment.with-saved-option
    .options-list__item.item-pix_opf
    .icon-wrapper,
.experiment.experiment--12838.step_payment_option_form
    .options-list.select_open_finance.with-saved-option
    .options-list__item.item-new_card_row
    .icon-wrapper,
.experiment.experiment--12838.step_payment_option_form
    .options-list.select_open_finance.with-saved-option
    .options-list__item.item-pix_opf
    .icon-wrapper {
    height: 1.75em;
    margin-left: 0.375em;
    margin-right: 1.6875em;
    width: 1.75em;
}
.experiment.experiment--12838.step_payment_option_form
    .options-list.select_mp_cards_experiment.with-saved-option
    .options-list__item.item-new_card_row
    .icon-wrapper
    svg,
.experiment.experiment--12838.step_payment_option_form
    .options-list.select_mp_cards_experiment.with-saved-option
    .options-list__item.item-pix_opf
    .icon-wrapper
    svg,
.experiment.experiment--12838.step_payment_option_form
    .options-list.select_open_finance.with-saved-option
    .options-list__item.item-new_card_row
    .icon-wrapper
    svg,
.experiment.experiment--12838.step_payment_option_form
    .options-list.select_open_finance.with-saved-option
    .options-list__item.item-pix_opf
    .icon-wrapper
    svg {
    height: 0.625em;
    width: 0.625em;
}
.experiment.experiment--12838.step_payment_option_form
    .options-list.select_mp_cards_experiment.with-saved-option
    .options-list__item.item-new_card_row
    .icon-wrapper
    svg.open-finance,
.experiment.experiment--12838.step_payment_option_form
    .options-list.select_mp_cards_experiment.with-saved-option
    .options-list__item.item-pix_opf
    .icon-wrapper
    svg.open-finance,
.experiment.experiment--12838.step_payment_option_form
    .options-list.select_open_finance.with-saved-option
    .options-list__item.item-new_card_row
    .icon-wrapper
    svg.open-finance,
.experiment.experiment--12838.step_payment_option_form
    .options-list.select_open_finance.with-saved-option
    .options-list__item.item-pix_opf
    .icon-wrapper
    svg.open-finance {
    height: 0.875em;
    width: 0.875em;
}
.experiment.experiment--12838.step_payment_option_form
    .options-list.select_mp_cards_experiment.with-saved-option
    .options-list__item.item-new_card_row
    .options-list__label:before,
.experiment.experiment--12838.step_payment_option_form
    .options-list.select_mp_cards_experiment.with-saved-option
    .options-list__item.item-pix_opf
    .options-list__label:before,
.experiment.experiment--12838.step_payment_option_form
    .options-list.select_open_finance.with-saved-option
    .options-list__item.item-new_card_row
    .options-list__label:before,
.experiment.experiment--12838.step_payment_option_form
    .options-list.select_open_finance.with-saved-option
    .options-list__item.item-pix_opf
    .options-list__label:before {
    background: url(https://http2.mlstatic.com/frontend-assets/px-checkout-frontend/017df8a6ef75d1ed823e.svg) no-repeat;
    border: none;
    height: 0.75em;
    right: 1.875em;
    -webkit-transform: none;
    transform: none;
    width: 0.75em;
}

/*# sourceMappingURL=app.desktop.3dbeab29.css.map*/
.price--wrapper {
    font-size: 40px;
}
@media (max-width: 767px) {
    .layout--redirect {
        display: inline-grid;
        justify-content: center;
        align-items: center;
        width: 100%;
        font-size: 0.6rem;
        overflow: hidden;
    }
}
