/*faturamento*/
.fatView {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.fat_bar {
    padding: 1vw;
    width: 97%;
    background: var(--base2);
    text-align: center;
    border-radius: 5px;

    & span {
        font-size: 1.5vw;
    }
}

.fat_body {
    padding: 1vw 0;
    display: flex;
    flex-direction: row;
}

.fat_cards,
.fat_historico {
    width: 50%;

    & span {
        font-size: 1.5vw;
    }
}

.fat_hist {
    display: flex;
    height: 70vh;
    overflow: auto;
}

.fat_cards {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.fat_hist_items {
    height: max-content;
    width: 99%;
}

.fat_hist_items span {
    padding: 1vw 0vw;
}

.fat_invoice {
    padding: 0.5vw;
    background: var(--base2);
    border-radius: 2px;
    border-style: dotted;
    border-width: 2px;
    width: 97%;
    margin: 5px 0px;
    font-size: 1.2vw;
}

.fat_hist::-webkit-scrollbar {
    width: 10px;
}

.fat_hist::-webkit-scrollbar-thumb {
    background-color: var(--global-color-primare);
    width: 1vw;
    border-radius: 10dvw;
}

.fat_hist::-webkit-scrollbar-track {
    background: #3e8e4167;
    border-radius: 10dvw;
}