.container-totais-mapa{
    display: flex;
    flex-wrap: wrap;
}

.container-totais-mapa > div{
    padding: 5px; 
    color: #7e7e7e;     
    font-size: 14px;
}

.container-totais-mapa > div > span{
    font-weight: bold;
}

@media (max-width: 992px){
    .container-totais-mapa{
        flex-direction: column;
    }
}
.container-mapa{
    width: 100%;
}

.item-cell{
    flex-grow: 1; 
    overflow: hidden; 
    padding: 0.8em 0;
    text-align: center;    
}

.lista-mapa{
    display: flex;
    flex-wrap: wrap;
}

.header-mapa{
    display: flex; 
    width: 100%; 
    background: var(--cor-2);
}

.header-cell{
    flex-grow: 1; 
    overflow: hidden; 
    padding: 0.8em 0;
    text-align: center;
}

.wrapper-item-mapa{
    display: flex; 
    flex-direction: column; 
    width: 100%; 
    box-shadow: 0px 1px 0px 0px var(--cor-2);
}

.item-mapa{
    display: flex; 
    align-items: center;
    width: 100%;
    min-height: 70px;
    box-shadow: 0px 1px 0px 0px var(--cor-2);
}

.lista-mapa .cell-img{
    width: 15%;
}

.lista-mapa .cell-descricao{
    width: 25%;
}

.lista-mapa .cell-cor{
    width: 15%;
}

.lista-mapa .cell-tamanho{
    width: 15%;
}

.lista-mapa .cell-pecas{
    width: 15%;
}

.lista-mapa .cell-preco{
    width: 15%;
}

.flex-img-produto{
    flex-basis: 100px;
}
.flex-img-produto img{
    max-height: 150px;
    width: auto;
    margin: 0 auto;
}

@media (max-width: 992px){
    .header-mapa{
        display: none;
    }

    .item-mapa{
        flex-direction: column;
        align-items: initial;
    }
    .cell-img .item-cell-title{
        display: none !important
    }

    .item-cell-title{
        display: inline-block;
        flex-basis: 100px;
        text-align: left;
        padding-left: 10px;
    }

    .item-cell-valor{
        flex-grow: 2;
        text-align: left;
    }

    .item-cell-acoes{
        display: flex;
        justify-content: center; 
    }

    .lista-mapa .cell-img, .lista-mapa .cell-descricao, .lista-mapa .cell-cor, .lista-mapa .cell-tamanho, 
    .lista-mapa .cell-pecas, .lista-mapa .cell-preco{
        width: unset;
    }


    .item-cell{
        display: flex;
        justify-content: space-between;
        padding: 0.5em 0;
    }

    .header-cell.hide-empty{
        display: none !important;
    }

    .item-cell.hide-empty{
        display: none !important;
    }

    .item-cell-img{        
        flex-grow: 1;
        justify-content: flex-start;
    }



    .item-cell-img > .item-cell-valor {
        flex-grow: 0;
        justify-content: flex-start;
        text-align: left;
    }



}







