#CarritoMain .text-center {
    text-align: center;
}
.cart #order_comments_field textarea{
    margin-left: 0;
}
.cart #Comentarios {
    background-color: #f5f5f5;
    color: #808080;
    padding: 0 10px;
    line-height: 40px;
    width: 100%;
    border: none;
}
.cart .cart-form {
    border-bottom: 1px solid #eee;
    margin: 20px 0;
}
.cart table {
    width: 100%;
}
.cart .cart-form tr {
    border-bottom: 1px solid #eee;
}
.cart .cart-form th {
    background-color: #333;
    color: #fff;
    letter-spacing: 0.5px;
    padding: 20px 10px;
}
.cart .cart-total {
    margin: 20px 0 45px 0;
}
.cart .cart-form tr input {
    border: 2px solid #ddd;
    margin: 0 30px;
    padding: 0 5px;
    width: 75px;
}
.cart .cart-total {
    margin: 20px 0 45px 0;
}
.cart .cart-total table tr td {
    padding: 5px 0;
}
.cart .cart-total table tr {
    border-top: 1px solid #eee;
}
.cart .btn-compra {
    background-color: #333;
    border: medium none;
    color: #fff;
    padding: 10px 20px;
    font-size: 13px;
    float: right;
}
@media (max-width: 767px) {
    body.cart .cart-form table th, body .wishlist-form table th {
        display: none;
    }
    body.cart .cart-form table tr:first-child, body .wishlist-form table tr:first-child {
        border: none;
    }
    body.cart .cart-form table td, body .wishlist-form table td {
        border-bottom: 1px solid #ddd;
        display: inline-block;
        padding: 10px 0 10px 100px;
        position: relative;
        text-align: center;
        width: 100%;
    }
    body.cart .cart-form table td::before, body .wishlist-form table td::before {
        content: attr(data-title);
        height: 100%;
        left: 0;
        padding-top: 10px;
        position: absolute;
        top: 0;
    }
    body.cart .cart-form table td::after, body .wishlist-form table td::after {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 100px;
        width: 1px;
        background-color: #eee;
        content: "";
    }
}