.basePublic {
    float: none;
    margin: 20px 0;
}

.cart {
    max-width: 1000px;
    padding: 10px;
    box-sizing: border-box;
    width: 100% !important;
    margin: auto;
    color: #333;
}

.cart-title {
    text-align: center;
    padding: 20px;
    font-size: 20px;
}

.cart-itens-wrap {
    margin: 20px 0;
}

    .cart-itens-wrap .cart-item-box:nth-child(2n+1) {
    }

.cart-item-box {
    display: flex;
    border: 1px solid #eee;
    border-bottom-width: 3px;
    padding: 10px;
    box-sizing: border-box;
    margin-bottom: 20px;
    align-items: center;
    justify-content: space-between;
}

.cart-item-img {
    width: 70px;
    max-width: 70px;
    margin: auto;
    height: 70px;
    background: #fff;
    /* border: 1px solid #eee; */
    display: flex;
    align-items: center;
    justify-content: center;
}

    .cart-item-img img {
        max-width: 100%;
        margin: auto;
        font-size: 10px;
        color: #ddd;
        text-align: center;
        overflow: hidden;
    }

.cart-item-descricao {
    width: 37%;
    padding: 0 10px;
    display: flex;
    flex-wrap: wrap;
}

span.cart-item-detalhe {
    font-size: 12px;
    display: block;
    color: #289d11;
}

.cart-item-painal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 180px;
}

.cart-item-control {
    display: flex;
}

.cart-item-minus, .cart-item-plus {
    padding: 10px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    /* background: #eeeeee; */
    color: #0177fd;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
}

.cart-item-qtd {
    padding: 10px;
    height: 36px;
    border: 1px solid #eeeeee;
    color: #666;
    border-radius: 5px;
    width: 50px;
    background: #fff;
    box-sizing: border-box;
    justify-content: center;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.cart-item-delete {
    padding: 10px;
    width: 36px;
    height: 36px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: #0177fd;
    /* background: #eee; */
    border: 1px solid #eeeeee;
    border-radius: 5px;
    cursor: pointer;
}

.cart-item-price {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    min-width: 100px;
    width: 15%;
    margin-left: 15px;
}

    .cart-item-price > span {
        display: block;
        width: 100%;
        text-align: right;
    }

.cart-item-desc-title, .cart-item-desc-boleto {
    font-size: 14px;
    margin-top: 5px;
    color: #999;
}

.cart-item-price-boleto {
    color: #289d11;
    font-weight: bold;
}

.cart-item-price-card {
    font-size: 16px;
}

.cart-detalhe-wrap {
    display: flex;
    margin: 20px auto;
    justify-content: space-between;
}

.cart-detalhe-btn {
    flex-grow: 1;
    padding: 10px;
    max-width: 255px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-transform: uppercase;
    display: flex;
    align-items: center;
}

.cart-detalhe-comprar-mais {
    background: #ececec;
}

.cart-detalhe-btn > i {
    font-size: 36px;
    margin: 0 10px;
}

.cart-detalhe-finalizar {
    background: #289d11;
    color: #fff;
}

.cart-detalhe-box {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    background: #fcfcfc;
    padding: 10px;
    margin-top: 25px;
}

.cart-detalhe-price-title {
    display: block;
    font-size: 14px;
}

.cart-detalhe-price, .cart-detalhe-price-boleto {
    color: #289d11;
    font-size: 20px;
}

.cart-detalhe-price-total {
    font-weight: bold;
}

.cart-frete-form-wrap {
    display: flex;
    justify-content: space-around;
    background: #fcfcfc;
    border-top: 3px solid #ddd;
    margin-top: 40px;
    padding: 10px 20px;
}

.cart-frete-enderero-low {
    font-size: 12px;
    color: #999;
}

.cart-frete-form-title {
    font-size: 16px;
    margin-right: 10px;
    text-align: right;
}

.cart-frete-form {
    display: flex;
    align-items: center;
    justify-content: left;
    margin-right: 20px;
    flex-wrap: wrap;
    min-width: 275px;
}

.cart-frete-form-input input {
    width: 120px;
    font-size: 18px;
    padding: 8px;
    box-sizing: border-box;
    border: 1px solid #0177fd;
    color: #333;
}

input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    cursor: pointer;
    display: block;
    width: 8px;
    color: #333;
    text-align: center;
    position: relative;
}

input[type=number] {
    -moz-appearance: textfield;
    appearance: textfield;
    margin: 0;
}

.cart-frete-form-btn {
    width: 39px;
    cursor: pointer;
    height: 39px;
    background: #0177fd;
    box-sizing: border-box;
    color: #fff;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.cart-frete-endereco-wrap span {
    display: block;
    text-align: center;
    width: 100%;
}

.cart-frete-endereco-rl span {
    height: min-content;
}

.cart-frete-metodo span {
    display: block;
    text-align: right;
}

.cart-frete-form-metodo-link {
    color: #289d11;
    font-size: 14px;
    font-weight: bold;
    margin-top: 10px;
    cursor: pointer;
}

.cart-item-nome {
    font-size: 14px;
    color: #333;
}

.empty-cart {
    text-align: center;
    padding: 100px 0;
}

    .empty-cart span {
        display: block;
        padding-bottom: 15px;
        font-size: 32px;
        color: #999;
    }

    .empty-cart a {
        color: #00f;
        text-decoration: underline;
    }

.cart-frete-endereco-wrap {
    flex-grow: 2;
}

.frete-obs {
    font-size: 14px;
    margin-top: 5px;
}

.cart-frete-metodo {
    flex-grow: 2;
    font-size: 14px;
    min-width: 100px;
}

.cart-detalhe-price-title-boleto {
    display: block;
}

.cart-frete-endereco-wrap {
    font-size: 14px;
    display: flex;
    flex-wrap: wrap;
}

.cart-frete-form-endereco-prazo {
    color: #289d11;
}

.cart-detalhe-prices {
    text-align: right;
    margin-left: 40px;
}

    .cart-detalhe-prices span {
        display: block;
        font-size: 16px;
    }

.cart-frete-correios-link {
    display: block;
    text-align: center;
    font-size: 12px;
    color: #0177fd;
}

.cart-frete-form-metodo-title-destaque {
    color: #289d11;
}

.dialog-delete {
    display: none;
}