﻿
:root {
    --app-base-intro-color-background: #F3F8FC;
    --app-document-card-color-background: #ffffff;
    --app-document-card-color-border: #000000;
}

:root {
    --app-base-color-primary: #E33131;
    --app-base-color-secondary: #27BD63;
    --app-base-color-background: #ffffff;
    --app-base-color-heading: #00060a;
    --app-base-color-text: #474d52;
    --app-base-color-link: #E33131;
    --app-base-color-link-hover: #C12A21;
    --app-base-color-border: #e6e6e6;
    --app-base-color-mark-background: #ffee99;
    --app-base-color-mark-foreground: #00060a;
    --app-base-color-code-background: #f0ecf9;
    --app-base-color-code-foreground: #00060a;
    --app-base-color-blockquote-border: #E33131;
}

:root {
    --app-selection-color-foreground: #ffffff;
    --app-selection-color-background: #E33131;
}

:root {
    --app-alert-color-danger: #db2929;
    --app-alert-color-info: #00a1d6;
    --app-alert-color-success: #00a854;
    --app-alert-color-warning: #f2ca26;
}

:root {
    --app-btn-color-primary-background: #E33131;
    --app-btn-color-primary-background-hover: #C12A21;
    --app-btn-color-primary-foreground: #ffffff;
    --app-btn-color-primary-foreground-hover: #ffffff;
    --app-btn-color-primary-shadow-focus: #8660cd40;
    --app-btn-color-secondary-background: #27BD63;
    --app-btn-color-secondary-background-hover: #27BD63;
    --app-btn-color-secondary-foreground: #ffffff;
    --app-btn-color-secondary-foreground-hover: #ffffff;
    --app-btn-color-secondary-shadow-focus: #2350f640;
    --app-btn-color-tertiary-background: #F0F0F0;
    --app-btn-color-tertiary-background-hover: #F3F3F3;
    --app-btn-color-tertiary-foreground: #666666;
    --app-btn-color-tertiary-foreground-hover: #666666;
    --app-btn-color-tertiary-shadow-focus: #2350f640;
}

:root {
    --app-form-color-background: #ffffff;
    --app-form-color-background-disabled: #f2f2f2;
    --app-form-color-border: hsl(0deg, 0%, 90%);
    --app-form-color-border-disabled: hsl(0deg, 0%, 90%);
    --app-form-color-border-focus: hsl(261deg, 52%, 59%);
    --app-form-color-shadow-focus: rgba(134, 96, 205, 0.25);
    --app-form-color-check-foreground: hsl(0deg, 0%, 100%);
    --app-form-color-check-background: hsl(261deg, 52%, 59%);
    --app-form-color-invalid: hsl(0deg, 71%, 51%);
    --app-form-color-invalid-shadow: rgba(219, 41, 41, 0.25);
    --app-form-color-label: hsl(205deg, 100%, 2%);
    --app-form-color-legend: hsl(205deg, 100%, 2%);
    --app-form-color-placeholder: hsl(208deg, 7%, 40%);
    --app-form-color-text: hsl(208deg, 7%, 30%);
    --app-form-color-select-foreground: hsl(261deg, 52%, 59%);
    --app-form-color-valid: hsl(150deg, 100%, 33%);
    --app-form-color-valid-shadow: rgba(0, 168, 84, 0.25);
}

:root {
    --app-table-color-border: hsl(0deg, 0%, 90%);
    --app-table-color-caption: hsl(208deg, 7%, 30%);
    --app-table-color-heading: hsl(205deg, 100%, 2%);
    --app-table-color-hover: hsla(0deg, 0%, 0%, 0.05);
    --app-table-color-text: hsl(208deg, 7%, 30%);
    --app-table-color-stripe: hsla(0deg, 0%, 0%, 0.025);
}

:root {
    --app-scrollbar-color-thumb-background: hsla(0deg, 0%, 0%, 0.15);
    --app-scrollbar-color-thumb-background-hover: hsla(0deg, 0%, 0%, 0.25);
    --app-scrollbar-color-track-background: hsla(0deg, 0%, 0%, 0.05);
}

:root {
    --app-transition-duration: 0.15s;
    --app-transition-timing-function: ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    :root {
        --app-transition-duration: 0;
    }
}

.sr-only {
    border: 0 !important;
    clip: rect(0, 0, 0, 0) !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
}

::selection {
    background-color: var(--app-selection-color-background);
    color: var(--app-selection-color-foreground);
    text-shadow: none;
}

html {
    box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

*,
::before,
::after {
    box-sizing: inherit;
}

body {
    background: var(--app-base-color-background);
    color: var(--app-base-color-text);
}

a {
    color: var(--app-base-color-link);
    text-decoration: underline;
    transition-duration: var(--app-transition-duration);
    transition-property: color;
    transition-timing-function: var(--app-transition-timing-function);
}

    a:hover {
        color: var(--app-base-color-link-hover);
    }

button {
    color: inherit;
}

a,
button {
    touch-action: manipulation;
}

hr {
    border: 0;
    border-top: 1px solid var(--app-base-color-border);
}

img {
    display: block;
    height: auto;
    max-width: 100%;
    user-select: none;
}

iframe {
    display: block;
    height: 100%;
    width: 100%;
}

figure {
    margin-left: 0;
    margin-right: 0;
}

    figure figcaption {
        margin-top: 0.5rem;
        text-align: center;
    }

.table-responsive {
    -webkit-overflow-scrolling: touch;
    overflow-x: auto;
}

    .table-responsive table {
        min-width: 40rem;
    }

.table {
    border-collapse: collapse;
    color: var(--app-table-color-text);
    width: 100%;
}

    .table caption {
        color: var(--app-table-color-caption);
        margin-bottom: 1rem;
    }

    .table th,
    .table td {
        border-bottom: 1px solid var(--app-table-color-border);
        line-height: 1.5;
        padding: 1rem;
    }

    .table th {
        color: var(--app-table-color-heading);
        text-align: inherit;
        text-align: -webkit-match-parent;
    }

.table--striped > tbody > tr:nth-child(even) {
    background-color: var(--app-table-color-stripe);
}

.table--hover > tbody > tr:hover {
    background: var(--app-table-color-hover);
}

.table--clear-border th,
.table--clear-border td {
    border: 0;
}

.table--in-line th:first-child,
.table--in-line td:first-child {
    padding-inline-start: 0;
}

.table--in-line th:last-child,
.table--in-line td:last-child {
    padding-inline-end: 0;
}

.table--sm th,
.table--sm td {
    padding: 0.25rem 0.5rem;
}

.table--rounded th:first-child,
.table--rounded td:first-child {
    border-end-start-radius: 0.5rem;
    border-start-start-radius: 0.5rem;
}

.table--rounded th:last-child,
.table--rounded td:last-child {
    border-end-end-radius: 0.5rem;
    border-start-end-radius: 0.5rem;
}


body {
    font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 1rem;
    line-height: 1.8;
}

p,
li,
h1,
h2,
h3,
h4,
h5,
h6 {
    hyphens: auto;
    overflow-wrap: break-word;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--app-base-color-heading);
    font-family: "MontSerrat SemiBold", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-weight: 700;
    line-height: calc(2px + 2ex + 2px);
}

h1,
.h1 {
    font-size: clamp(2.6837343406rem, 2vw + 1rem, 3.1573345183rem);
}

h2,
.h2 {
    font-size: clamp(2.0133040815rem, 2vw + 1rem, 2.368593037rem);
}

h3,
.h3 {
    font-size: clamp(1.51035565rem, 2vw + 1rem, 1.776889rem);
}

h4,
.h4 {
    font-size: clamp(1.13305rem, 2vw + 1rem, 1.333rem);
}

h5,
.h5 {
    font-size: 1rem;
}

h6,
.h6 {
    font-size: 1rem;
}

ul,
ol {
    list-style-position: inside;
}

    ul > *,
    ol > * {
        margin-block-end: 0;
        margin-block-start: 0;
    }

        ul > * + *,
        ol > * + * {
            margin-block-start: 0.25rem;
        }

    ul li,
    ol li {
        list-style-position: outside;
    }

        ul li::marker,
        ol li::marker {
            color: var(--app-base-color-primary);
        }

li > ul,
li > ol {
    margin-top: 0.25rem;
}

dl dt {
    color: var(--app-base-color-heading);
    font-weight: bold;
}

dl dd {
    margin: 0;
}

    dl dd + dt {
        margin-top: 1rem;
    }

blockquote {
    border-left: 0.5rem solid var(--app-base-color-blockquote-border);
    margin-left: 0;
    padding: 0 0 0 1.5rem;
}

    blockquote > * {
        margin-block-end: 0;
        margin-block-start: 0;
    }

        blockquote > * + * {
            margin-block-start: 0.5rem;
        }

    blockquote cite {
        display: block;
    }

abbr[title] {
    border-bottom: 1px dotted;
    cursor: help;
    text-decoration: none;
}

mark {
    background-color: var(--app-base-color-mark-background);
    border-radius: 0.25rem;
    color: var(--app-base-color-mark-foreground);
    padding: 0.1em 0.3em;
}

code,
kbd,
samp {
    background-color: var(--app-base-color-code-background);
    border-radius: 0.25rem;
    color: var(--app-base-color-code-foreground);
    padding: 0.1em 0.3em;
}

.lead {
    font-size: 1.333rem;
}

.btn {
    align-items: center;
    border: 0;
    border-radius: 0.65rem;
    cursor: pointer;
    display: inline-flex;
    font-size: 1rem;
    font-weight: normal;
    gap: 0.5rem;
    justify-content: center;
    line-height: 1;
    padding: 1.25em 1.75em;
    text-align: start;
    text-decoration: none;
    transition-duration: var(--app-transition-duration);
    transition-property: background-color, box-shadow, color;
    transition-timing-function: var(--app-transition-timing-function);
    font-family: "Montserrat SemiBold", sans-serif, serif;
}

    .btn:focus {
        outline-color: transparent;
        outline-style: solid;
    }

.btn--icon {
    padding: 0.75em;
}

    .btn--icon.btn--sm {
        padding: 0.5em;
    }

    .btn--icon.btn--lg {
        padding: 0.9em;
    }

.btn--sm {
    font-size: 0.8rem;
    padding: 0.6em 1em 0.4em 1em;
}

.btn--lg {
    padding: 0.9em 1.15em;
}

.btn--md {
    padding: 0.85em 1.25em 0.65em 1.25em;
}

/* specific: Tracking */

.header__content {
    display: grid;
    grid-template-columns: auto auto;
}

.app_logo-atendimento {
    margin-left: auto;
}

.app__steps {
    position: relative;
    margin: 0 -1.75em;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column-reverse;
    overflow: hidden;
}

.app__steps-history {
    margin: 0;
    padding: 0 1.75em 0 3em;
}

    .app__steps-history:last-child {
        background-color: #f3f3f3;
    }

.app__steps-history-content {
    background-color: #f3f3f3;
    border-radius: 12px 12px 0 0;
    border-bottom: 2px solid #fff;
}

.app__steps-history-date {
    font-family: "MontSerrat", sans-serif, serif;
    color: #707070;
    font-size: 14px;
}

.app__steps-history-status,
.app__steps-history-next {
    position: relative;
}

.app__steps-history-next {
}

.app__steps-history-date,
.app__steps-history-status,
.app__steps-history-next {
    padding: 0 20px;
}

.app__steps-history:last-child .app__steps-history-next {
    padding: 36px 20px 20px 74px
}

.app__steps-history-date {
    padding-top: 24px;
}

.app__item-status-title,
.app__item-status-subtitle {
    font-family: "MontSerrat SemiBold", sans-serif, serif;
    font-size: 16px;
    color: #707070;
    margin-top: 0;
}

.app__steps-history:last-child .app__item-status-title {
    font-size: 24px;
    color: #101010;
    margin-top: 0;
}

.app__item-status-text {
    margin: 0;
    padding: 0;
    font-family: "Montserrat SemiBold";
    font-weight: normal;
    font-size: 16px;
    color: #BBBBBB;
    position: relative;
}

.app__item-status-text-key {
    color: #707070;
}

.app__item-status-text-value {
    color: #101010;
}

.app__steps-history-next {
    overflow: hidden;
}

.app__steps-history:last-child .app__item-status-next:before {
    content: '';
    height: 100%;
    position: absolute;
    top: 73px;
    left: 38px;
    width: 6px;
    content: '';
    background-color: #bbb;
    z-index: 0;
    border: 2px solid #fff;
    border-top: none;
    border-bottom: none;
}

.app__item-status-next .app__item-status-text {
    padding: 0 0 12px 0;
}

    .app__item-status-next .app__item-status-text:before {
        content: '';
        position: absolute;
        left: -41px;
        top: 5px;
        height: 16px;
        width: 16px;
        border-radius: 24px;
        border: 2px solid #fff;
        background-color: #BBBBBB;
    }

    .app__item-status-next .app__item-status-text:first-child:before {
        content: none;
    }

    .app__item-status-next .app__item-status-text:last-child:after {
        content: '';
        position: absolute;
        left: -41px;
        top: 20px;
        height: 100%;
        width: 16px;
        background-color: #f3f3f3;
    }

    .app__item-status-next .app__item-status-text:first-child:after {
        top: 32px;
    }

    .app__item-status-next .app__item-status-text:first-child,
    .app__item-status-subtitle {
        color: #F27200;
        margin-top: 5px;
    }

.app__help {
    border: 2px solid #999999;
    border-radius: 16px;
    padding: 32px 40px;
    margin: 5em 0;
}

.app__help-title {
    font-family: "Montserrat SemiBold";
    margin: 0;
    color: #E33131;
    font-size: 24px;
}

.app__help-text {
    font-family: "Montserrat SemiBold";
    font-size: 16px;
    color: #707070
}

/*  */

.btn--block {
    width: 100%;
}

.btn__icon {
    flex-shrink: 0;
    height: 1em;
    width: 1em;
}

.btn__icon--sm {
    height: 0.85em;
    width: 0.85em;
}

.btn--primary {
    background-color: var(--app-btn-color-primary-background);
    color: var(--app-btn-color-primary-foreground);
}

    .btn--primary:hover {
        background-color: var(--app-btn-color-primary-background-hover);
        color: var(--app-btn-color-primary-foreground-hover);
    }

    .btn--primary:focus {
        box-shadow: 0 0 0 0.25rem var(--app-btn-color-primary-shadow-focus);
        outline: 2px solid transparent;
    }

.btn--secondary {
    background-color: var(--app-btn-color-secondary-background);
    color: var(--app-btn-color-secondary-foreground);
}

    .btn--secondary:hover {
        background-color: var(--app-btn-color-secondary-background-hover);
        color: var(--app-btn-color-secondary-foreground-hover);
    }

    .btn--secondary:focus {
        box-shadow: 0 0 0 0.25rem var(--app-btn-color-secondary-shadow-focus);
        outline: 2px solid transparent;
    }

.btn--tertiary {
    background-color: var(--app-btn-color-tertiary-background);
    color: var(--app-btn-color-tertiary-foreground);
}

    .btn--tertiary:hover {
        background-color: var(--app-btn-color-tertiary-background-hover);
        color: var(--app-btn-color-tertiary-foreground-hover);
    }

    .btn--tertiary:focus {
        box-shadow: 0 0 0 0.25rem var(--app-btn-color-tertiary-shadow-focus);
        outline: 2px solid transparent;
    }

.form-check {
    align-items: center;
    display: inline-flex;
}

.form-check--sm .form-check__control {
    font-size: 0.9rem;
}

.form-check--lg .form-check__control {
    font-size: 1.1rem;
}

.form-check__control {
    appearance: none;
    background-color: var(--app-form-color-background);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    border: 1px solid var(--app-form-color-border);
    flex-shrink: 0;
    font-size: 1rem;
    height: 1em;
    line-height: 1;
    margin-bottom: -0.1em;
    margin-inline-end: 0.5rem;
    transition-duration: var(--app-transition-duration);
    transition-property: border, box-shadow;
    transition-timing-function: var(--app-transition-timing-function);
    width: 1em;
}

    .form-check__control[type=radio] {
        border-radius: 50%;
    }

    .form-check__control[type=checkbox] {
        border-radius: 0.25rem;
    }

    .form-check__control:focus {
        border-color: var(--app-form-color-border-focus);
        box-shadow: 0 0 0 0.25rem var(--app-form-color-shadow-focus);
        outline: 2px solid transparent;
    }

    .form-check__control:checked {
        background-color: var(--app-form-color-check-background);
        border-color: var(--app-form-color-check-background);
    }

        .form-check__control:checked[type=radio] {
            background-image: url('data:image/svg+xml,%3csvg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"%3e%3ccircle cx="12" cy="12" r="6" style="fill:hsl%280deg, 0%, 100%%29;"/%3e%3c/svg%3e');
        }

        .form-check__control:checked[type=checkbox] {
            background-image: url('data:image/svg+xml,%3csvg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"%3e%3cpath d="M9.525,13.777l-2.411,-2.412c-0.234,-0.233 -0.613,-0.233 -0.846,0l-1.27,1.27c-0.233,0.233 -0.233,0.612 0,0.846l4.104,4.103c0.116,0.117 0.269,0.175 0.422,0.175l0.003,0c0.152,0 0.305,-0.058 0.421,-0.175l9.054,-9.053c0.233,-0.234 0.233,-0.613 -0,-0.846l-1.27,-1.269c-0.233,-0.234 -0.612,-0.234 -0.846,-0l-7.361,7.361Z" style="fill:hsl%280deg, 0%, 100%%29;"/%3e%3c/svg%3e');
        }

    .form-check__control:indeterminate[type=checkbox] {
        background-image: url('data:image/svg+xml,%3csvg viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg"%3e%3cpath d="M19.5,11.1c-0,-0.331 -0.269,-0.6 -0.6,-0.6l-13.8,0c-0.331,0 -0.6,0.269 -0.6,0.6l0,1.8c0,0.331 0.269,0.6 0.6,0.6l13.8,0c0.331,0 0.6,-0.269 0.6,-0.6l-0,-1.8Z" style="fill:hsl%280deg, 0%, 100%%29;"/%3e%3c/svg%3e');
        background-color: var(--app-form-color-check-background);
        border-color: var(--app-form-color-check-background);
    }

    .form-check__control:disabled {
        background-color: var(--app-form-color-background-disabled);
        border-color: var(--app-form-color-border-disabled);
        cursor: not-allowed;
    }

        .form-check__control:disabled + .form-check__label {
            opacity: 0.5;
        }

.form-check__label {
    line-height: calc(2px + 2ex + 2px);
}

.content__container {
    margin-inline: auto;
}

.content__inner {
    display: grid;
    padding: 1rem 0;
    grid-gap: 1.5rem;
}

.btn:disabled, .btn--disabled {
    background-color: var(--app-base-intro-color-background);
    color: var(--app-base-color-secondary);
    pointer-events: none;
    cursor: none;
}


/* @supports (width: min(20rem, 100%)) {
  .content__inner {
    grid-template-columns: repeat(auto-fit, minmax(min(20rem, 100%), 1fr));
  }
} */

.document-card {
    background-color: var(--app-document-card-color-background);
    border: 2px solid var(--app-document-card-color-border);
    border-radius: 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 20rem;
    padding: clamp(1.5rem, 7vw, 3rem);
    text-decoration: none;
    transition: 0.1s ease-in-out;
}

    .document-card:hover, .document-card:focus {
        background-color: var(--app-base-color-primary);
        border-color: var(--app-base-color-primary);
    }

        .document-card:hover .document-card__serial-number,
        .document-card:hover .document-card__title, .document-card:focus .document-card__serial-number,
        .document-card:focus .document-card__title {
            color: var(--app-document-card-color-background);
        }

.corretor__breadcrumb-box {
    padding: 0;
    background-color: #fff;
}

.corretor__breadcrumb {
    display: flex;
    list-style-type: none;
    margin: 0;
    padding: 0;
    height: 60px;
}

.corretor__breadcrumb-item {
    font-family: "MontSerrat SemiBold", sans-serif, serif;
    font-size: 0.8rem;
    color: #707070;
    padding: 10px;
    display: none;
}

.corretor__breadcrumb-item--current:nth-child(1):after {
    width: 25%;
}

.corretor__breadcrumb-item--current:nth-child(2):after {
    width: 50%;
}

.corretor__breadcrumb-item--current:nth-child(3):after {
    width: 75%;
}

.corretor__breadcrumb-item--current:nth-child(4):after {
    width: 100%;
}

.corretor__breadcrumb-item--current,
.corretor__breadcrumb-item--active:nth-child(4) {
    position: relative;
    display: block;
    width: 100%;
    text-align: center;
    color: var(--app-base-color-secondary);
    margin: 0 36px;
}

.corretor__breadcrumb-status {
    position: relative;
    top: -12px;
}

.corretor__breadcrumb-item:before {
    content: '';
    position: absolute;
    left: 0;
    top: 30px;
    height: 16px;
    width: 100%;
    background-color: #EEEEEE;
    border-radius: 40px;
    border: 1px solid #fff;
}

.corretor__breadcrumb-item:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    width: 0;
    top: 30px;
    background: var(--app-base-color-secondary);
    height: 16px;
    border-radius: 12px;
}

.corretor__breadcrumb-item--current:nth-child(2):after {
    width: 50%;
}


.sell__form {
    margin-top: 40px;
    margin-bottom: 40px;
}


.checkbox {
    display: none;
}

    .checkbox + label {
        position: relative;
        cursor: pointer;
        display: inline-block;
        text-decoration: none;
        text-align: center;
        user-select: none;
        text-align: left;
        height: 34px;
        box-sizing: border-box;
        padding: 1px 0 0 26px;
        font-size: 1rem;
        width: 48%;
        line-height: 1.25em;
        text-transform: lowercase;
        font-family: "MontSerrat SemiBold", sans-serif, serif;
    }

    .checkbox:checked + label {
        cursor: default;
        color: var(--app-base-color-primary);
    }

        .checkbox + label:before, .checkbox:checked + label:before {
            width: 20px;
            height: 20px;
            content: '';
            left: 0;
            top: 0;
            border: 2px solid var(--app-base-color-primary);
            position: absolute;
            border-radius: 100px;
        }

        .checkbox:checked + label:after {
            width: 12px;
            height: 12px;
            content: '';
            position: absolute;
            left: 4px;
            top: 4px;
            border-radius: 100px;
            background: var(--app-base-color-primary);
        }

.sell__resume-section {
    background-color: #F3F8FC;
    border-radius: 16px;
    margin: 0;
    padding: 0.5rem 1rem;
    margin-bottom: 32px;
}


.pay-list {
    margin: 0;
    padding: 0;
    list-style-type: none;
    padding-left: 1rem;
    background-color: #F3F8FC;
    border-radius: 16px;
    margin: 0;
    padding: 0.5rem 1rem;
    margin-bottom: 32px;
}

.pay-list-item {
    color: #707070;
    font-size: 1rem;
    font-family: "Montserrat", sans-serif, serif;
}

.pay-list-item-highlight {
    color: var(--app-base-color-primary);
}

.tab-wrap {
    max-width: 100%;
    position: relative;
    list-style: none;
    background-color: #fff;
}


.btn__chose-pay {
    cursor: pointer;
    color: #AAA;
    border: 2px solid #AAA;
    font-size: 0.9rem;
    width: 48%;
    padding-left: 0.5em;
    padding-right: 0.5em;
}

.btn__chose-pay--active {
    background-color: #EEEEEE;
    color: var(--app-btn-color-primary-background);
    border-color: var(--app-btn-color-primary-background);
}

.tab__content-visible {
    position: relative;
}

.sell__payment-grid {
    display: grid;
    margin-top: 30px;
}

.sell__box-pay-image {
    margin-bottom: 16px;
    text-align: center;
}

.sell__bankslip-image, .sell__card-image--front {
    max-width: 100%;
    display: inline-block;
}


#bandeiraCartao {
    position: absolute;
    top: 28px;
    left: 0;
    font-size: 0;
}

    #bandeiraCartao img {
        width: 24px;
    }

.sell__link-highlight--secondary {
    color: var(--app-base-color-secondary);
}

.sell__icon-view-container {
    position: absolute;
    right: 12px;
    top: 26px;
    position: absolute;
    right: 0px;
    top: 14px;
    background-color: var(--app-document-card-color-background);
}

.sell__icon-view {
    height: 44px;
    width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.sell__paragraph, .sell__final-paragraph, .sell__final-contact-link {
    color: #707070;
    font-weight: 400;
    font-family: "Montserrat", sans-serif, serif;
    font-size: 1rem;
    margin-bottom: 2px;
    line-height: 1.5em;
}


.sell__input-box--checkbox {
    margin: 10px 0 20px 0;
    position: relative;
}

.sell__label-checkbox {
    margin-left: 4px;
    display: inline !important;
    width: auto !important;
}

.sell__link-text {
    display: inline;
    margin: 0;
}

.sell__paragraph--highlight, .sell__link-text {
    color: var(--app-btn-color-primary-background);
}

/* detalhes popup */

.sell__resume-side {
    background-color: var(--app-base-color-background);
    padding-top: 2rem;
    margin: 0;
    display: none;
}

.sell__resume-side--visible-mobile {
    display: block;
    position: fixed;
    overflow-y: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0;
    z-index: 9999;
}

.sell__resume-head {
    display: grid;
    grid-template-columns: 1fr auto;
    border-top: 1px solid #B7B7B7;
    padding: 12px 0;
    align-items: center;
    grid-gap: 12px;
}

.sell__resume-section .sell__resume-head {
    border: none;
    padding: 0;
}

.sell__resume-head-subtitle {
    color: #484848;
    font-family: "MontSerrat SemiBold", sans-serif, serif;
    font-size: 0.75rem;
    margin: 0;
    letter-spacing: -0.5px;
}

.sell__resume-head-value {
    color: var(--app-btn-color-primary-background);
    font-size: 27px;
    margin: 0;
    font-family: "MontSerrat SemiBold", sans-serif, serif;
    white-space: nowrap;
    letter-spacing: -0.75px;
    line-height: 1.25em;
}

.sell__resume-head-subtitle {
    color: #484848;
    font-family: "MontSerrat SemiBold", sans-serif, serif;
    font-size: 0.75rem;
    margin: 0;
    letter-spacing: -0.5px;
}

.sell__resume-image {
    width: 125px;
}

.sell__resume-line {
    border-top: 1px solid #B7B7B7;
    padding: 16px 0;
}

    .sell__resume-line:last-child {
        border-bottom: 1px solid #B7B7B7;
    }

.sell__resume-subtitle, .sell__resume-paragraph {
    color: #707070;
    font-family: "MontSerrat SemiBold", sans-serif, serif;
    font-size: 0.8rem;
    margin: 0;
}

.sell__resume-paragraph {
    font-family: "Montserrat", sans-serif, serif;
    font-size: 1rem;
}

.sell__title,
.main__title {
    font-family: "MontSerrat SemiBold", sans-serif, serif;
    font-size: 20px;
    color: var(--app-btn-color-primary-background);
    margin: 16px 0;
    text-transform: lowercase;
}

.main__title {
    font-family: "MontSerrat Bold", sans-serif, serif;
    font-size: 28px;
}

.sell__input-box {
    margin: 8px 0 16px 0;
    position: relative;
}

    .sell__input-box label {
        display: block;
        width: 100%;
        color: #707070;
        font-family: "Montserrat", sans-serif, serif;
        font-size: 1rem;
        text-transform: lowercase;
    }

.sell__input-text {
    background: transparent;
    border: none;
    width: 100%;
    font-family: "Montserrat", sans-serif, serif;
    font-size: 1rem;
    color: #9B9B9B;
    border-bottom: 2px solid #C4C6C6;
    padding: 6px 0;
    outline: none;
}

.sell__input-text--cartao {
    position: relative;
    padding-left: 32px;
}

.field-validation-error {
    font-size: 1rem;
    font-family: "MontSerrat SemiBold", sans-serif, serif;
    color: #C7161D;
    display: block;
    margin-top: 2px;
}

.nav_link {
    position: absolute;
}


.nav_link--top-left {
    top: 0;
    left: 0;
}

.nav_link--top-right {
    top: 0;
    right: 0;
}

@media (prefers-reduced-motion: reduce) {
    .document-card {
        transition: none;
    }
}

.document-card__serial-number {
    color: var(--app-base-color-primary);
    font-size: clamp(2.8rem, 2vw + 1rem, 4rem);
    font-weight: 700;
    line-height: 1;
}

.document-card__title {
    margin: 1.5rem 0 0;
}

.app__warning-text {
    font-family: "MontSerrat SemiBold", sans-serif, serif;
    font-size: 12px;
    color: #707070;
}

.intro__image {
    margin: auto;
}

.intro__image--logo {
    margin: auto auto 0 auto;
}

.content--intro {
    overflow: hidden;
}

.content__container--intro {
    padding: 0;
    background-color: var(--app-base-intro-color-background);
}

.content__inner--intro {
    height: 100vh;
    grid-template-rows: minmax(150px, 1fr) 2fr;
    grid-gap: 0;
    padding: 0;
}

.slide-bottom {
    padding: 2.5rem 0;
    position: fixed;
    width: 100%;
    bottom: 0;
    background: var(--app-base-color-background);
    border-radius: 1.5rem 1.5rem 0 0;
    box-shadow: 0px 0px 3px rgb(1 1 1 / 20%);
}

.slide-bottom__inner {
    display: grid;
}

.slide-bottom__container {
    margin-inline: auto;
    max-width: 80rem;
    padding-inline: clamp(1.5rem, 5vw, 3rem);
}

.slide-bottom__copyright {
    margin-bottom: 0;
    margin-top: 0;
}

.app__steps-history-label {
    padding: 16px 20px 2px;
    font-size: 14px;
    color: #999999;
    font-family: "MontSerrat SemiBold", sans-serif, serif;
}

.app__icon-status {
    left: -23px;
    top: 2px;
    width: 16px;
    height: 16px;
    position: absolute;
    padding: 0;
    z-index: 1;
}

.app__steps-history:last-child .app__icon-status {
    width: 43px;
    height: 43px;
    left: -36px;
    top: -8px;
}


    .app__steps-history:last-child .app__icon-status:before {
        top: 43px;
        left: 18px;
    }
/* media desktop devices  */


.app__item-status-detail {
    margin-bottom: 24px;
    width: 100%;
}

.app__steps-history-content,
.app__item-status-subtitle,
.app__item-status-subtext,
.app__item-status-detail,
.app__item-status-action,
.app__item-status-next,
.app__icon-status-next {
    display: none;
}

.app__steps-history:last-child .app__steps-history-content,
.app__steps-history:last-child .app__item-status-subtitle,
.app__steps-history:last-child .app__item-status-subtext,
.app__steps-history:last-child .app__item-status-detail,
.app__steps-history:last-child .app__item-status-action,
.app__steps-history:last-child .app__item-status-next,
.app__steps-history:last-child .app__icon-status-next {
    display: inline-block;
}

.app__item-status-next {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.app__icon-status-next {
    position: absolute;
    top: 30px;
    left: 20px;
}

.app__item-status-action {
    margin: 16px 0;
}

.app__steps-history-item {
    display: grid;
    grid-template-columns: auto;
    justify-content: left;
    align-items: baseline;
}

.app__item-date {
    line-height: 18px
}


.app__steps-history:nth-last-child(+2) .app__steps-history-date {
    padding-top: 30px;
}

.app__steps:before {
    content: '';
    height: 100%;
    position: absolute;
    top: 44px;
    left: 30px;
    width: 6px;
    content: '';
    background-color: #bbb;
    z-index: 0;
    border: 2px solid #fff;
    border-top: none;
    border-bottom: none;
}

.app__steps-history:first-child .app__icon-status:after {
    content: '';
    position: absolute;
    top: 16px;
    height: 100px;
    width: 30px;
    background: #fff;
}

.app__steps-history:last-child .app__icon-status:after {
    content: none;
}

.app__info {
    margin-bottom: 2em;
}

.app__info-greetings {
    font-size: 24px;
    color: #666666;
    font-family: "MontSerrat SemiBold", sans-serif, serif;
}

.app__info-text {
    font-size: 16px;
    color: #707070;
    font-family: "MontSerrat", sans-serif, serif;
    line-height: 1.5em
}

.app__info-order {
    margin-bottom: 2em;
}

@media (min-width: 64em) {

    .app__steps-history:last-child {
        border-radius: 0 0 12px 12px;
    }

    .grid {
        display: grid;
    }

    .grid-2 {
        grid-template-columns: auto auto;
    }

    .app__steps {
        margin: 0;
    }

    .app__steps-history {
        padding: 0;
    }

    .app__steps:before {
        display: none;
    }

    .app__icon-status {
        left: -33px;
        top: 21px;
    }

    .app__steps-history:last-child .app__steps-history-date {
        padding-top: 36px;
    }

    .app__steps-history:last-child .app__icon-status {
        top: 29px;
    }

    .app__steps-history:nth-last-child(+2) .app__steps-history-status {
        padding-top: 24px;
    }

    .app__steps-history:nth-last-child(+2) .app__icon-status {
        top: 41px;
    }


    .app__item-status-title {
        margin-top: 14px;
    }

    .app__steps-history-date,
    .app__steps-history-status,
    .app__steps-history-next {
        padding: 4px 20px;
    }

    .app__steps-history:last-child .app__icon-status {
        left: -46px;
    }

    .app__icon-status-stream {
        height: 100vh;
        position: absolute;
        top: 0;
        left: -28px;
        width: 6px;
        content: '';
        background-color: #bbb;
        z-index: 0;
        border: 2px solid #fff;
        border-top: none;
        border-bottom: none;
    }

    .app__steps-history:last-child .app__icon-status-stream:after {
        content: '';
        top: 0;
        left: -4px;
        background: #f3f3f3;
        width: 10px;
        height: 30px;
        position: absolute;
    }

    .app__steps-history:first-child .app__icon-status-stream {
        height: 50%;
    }

    .app__steps-history-content {
        display: block;
    }

    .app__steps-history:last-child .app__steps-history-status {
        padding: 36px 20px 24px 20px;
    }

    .app__steps-history:last-child .app__steps-history-next {
        padding: 36px 20px 20px 74px;
    }

    .app__steps-history-date {
        padding: 10px 120px 10px 20px;
    }

    .app__item-date {
        display: block;
        text-align: right;
    }

    .app__steps-history-item,
    .app__steps-history-content {
        display: grid;
        grid-template-columns: 20% 42.5% 37.5%;
        justify-content: left;
        align-items: flex-start;
    }

    .btn--lg {
        font-size: 1.15rem;
    }
}


@font-face {
    font-family: 'MontSerrat';
    src: url('../fonts/MontSerrat/Regular/Montserrat-Regular.woff2') format('woff2'), url('../fonts/MontSerrat/Regular/Montserrat-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'MontSerrat Bold';
    src: url('../fonts/MontSerrat/Bold/Montserrat-Bold.woff2') format('woff2'), url('../fonts/MontSerrat/Bold/Montserrat-Bold.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'MontSerrat Medium';
    src: url('../fonts/MontSerrat/Medium/Montserrat-Medium.woff2') format('woff2'), url('../fonts/MontSerrat/Medium/Montserrat-Medium.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'MontSerrat Light';
    src: url('../fonts/MontSerrat/Light/Montserrat-Light.woff2') format('woff2'), url('../fonts/MontSerrat/Light/Montserrat-Light.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'MontSerrat SemiBold';
    src: url('../fonts/MontSerrat/Semi-Bold/Montserrat-SemiBold.woff2') format('woff2'), url('../fonts/MontSerrat/Semi-Bold/Montserrat-SemiBold.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
