


.base_item_show_list{
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 18px;
}

.item_show_list{
    display: flex;
    flex-direction: column;
    width: 100%;
}
.item_show_list div{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
}

/* primeiro span (por exemplo, o rótulo) */
.item_show_list div span:first-child {
    color: #6c757d !important;
}

/* segundo span (por exemplo, o valor) */
.item_show_list div span:last-child {
    font-weight: bold;
    text-align: right;
}

@media (min-width: 992px) {
    .item_show_list{
        display: flex;
        flex-direction: column;
        gap: 25px;
        width: 100%;
    }
    .item_show_list div{
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        gap: 20px;
        width: 100%;
    }
}


