#paginaCarrinho {
    float: left;
    width: 100%;
    padding: 70px 0 0 0;
}

#paginaCarrinho .boxTitulo {
    margin: 0 0 30px 0;
}

/* Lista de Produtos */

.listaDeProdutos {
    float: left;
    width: 100%;
}

.listaDeProdutos .boxListagemScroll {
    float: left;
    width: 100%;
    overflow: auto;
}

.listaDeProdutos table {
    float: left;
    width: 100%;
    min-width: 700px;
}

.listaDeProdutos table tr td {
    padding: 12px;
}

.listaDeProdutos table thead tr td {
    background-color: #E0E0E0;
}

.listaDeProdutos table tbody tr td a {
    color: #333;
}

.listaDeProdutos table tbody tr:nth-child(even) td {
    background-color: #E0E0E0;
}

.listaDeProdutos table tbody tr td .boxQuantidade {
    display: flex;
    width: 100%;
    float: left;
    align-items: center;
    justify-content: flex-start;
}

.listaDeProdutos table tbody tr td .boxQuantidade button {
    background: #FFEC38;
    color: #30373E;
    border: 0;
    width: 23px;
    height: 23px;
    line-height: 20px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.listaDeProdutos table tbody tr td .boxQuantidade input {
    width: 70px;
    height: 40px;
    border: solid 1px #E0E0E0;
    background: #F3EFEF;
    text-align: center;
    margin: 0 5px;
    font-weight: bold;
}

.listaDeProdutos table tbody tr td img.removeProduto {
    cursor: pointer;
}

/* Sem Produtos */

.boxSemProdutos {
    float: left;
    width: 100%;
}

.boxSemProdutos span {
    float: left;
    width: 100%;
    text-align: center;
}

/* Formulário */

.boxFormulario {
    float: left;
    width: 100%;
    text-align: center;
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.boxFormulario #produtosForm {
    display: none;
}

.boxFormulario textarea {
    float: left;
    width: 100%;
    background: #F3EFEF;
    border: solid 1px #BDBDBD;
    padding: 10px;
    height: 150px;
}

.boxFormulario .boxBotao {
	float: left;
	width: 100%;
	text-align: center;
	position: relative;
    margin-top: 15px;
}

.boxFormulario .boxBotao input {
	background: #FFEC38;
    color: #30373E;
    border: 0;
	padding: 0 50px;
    height: 50px;
    font-size: 15px;
    line-height: 15px;
}

.boxFormulario .boxBotao .wpcf7-spinner {
	position: absolute;
    top: 14px;
    margin: 0;
    left: calc(50% - 12px);
}

.boxFormulario .wpcf7 form .wpcf7-response-output {
	float: left;
    width: 100%;
    margin: 15px 0 0 0;
    padding: 10px;
    color: #000;
    font-size: 13px;
}

@media only screen and (max-width: 768px) {

    #paginaCarrinho {
        padding: 50px 0 0 0;
    }

    /* Lista de Produtos */

    .listaDeProdutos .boxListagemScroll {
        padding-bottom: 20px;
    }

    .listaDeProdutos table tr td.codigo,
    .listaDeProdutos table tr td.preco {
        min-width: 120px;
    }

    /* Formulário */

    .boxFormulario {
        margin-top: 0;
    }

    .boxFormulario .col-sm-6 {
        width: 100%;
        max-width: 100%;
    }

}