#checkout-cart h1{
  padding: 80px 0 55px 0;
}
a{
  cursor: pointer;
}
.form-check {
  position: relative;
}
.table-prod .table.mobile{
    display: none;
}
.table-prod input[type=checkbox] {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  position: relative;
}
.table-prod input[type=checkbox]:before {
    content: '';
    width: 20px;
    height: 20px;
    background-color: #606060;
    position: absolute;
    border-radius: 4px;
}
.table-prod input[type=checkbox]:checked::before {
  content: "";
  display: block;
  position: absolute;
  text-align: center;
  height: 20px;
  width: 20px;
  left: 0px;
  top: 0px;
  background-color: #44ac49;
  font-family: "Montserrat";
      border-radius: 4px;
}
.table-prod input[type=checkbox]:checked::after {
  content: url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" fill="white" viewBox="0 0 24 24"><path d="M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z"/></svg>');
  display: block;
  position: absolute;
  left: 3px;
  top: 3px;
}
.row .table-prod:first-child {
    padding-right: calc(var(--bs-gutter-x) * 2.5);
}
.table-prod  tr{
  display: flex;
  align-items: center;
}
.table-prod .image_prod{
    width: 17%;
}
.table-prod .image_prod img{
    border-radius: 15px;
}
.table-bordered>:not(caption)>*{
  border: none;
}
.table-bordered>:not(caption)>*>* {
    border-width: 0 0px;
}
.table-prod td.text-left.infor_prod {
    width: 45%;
    padding-left: 15px;
}
.table-prod td.text-right.price {
    width: 15%;
    text-align: left;
}

.table-prod td.text-right.total {
    width: 25%;
    text-align: right;
    padding-top: 26px;
    padding-right: 20px;
}
.table-prod td.text-right.total .text-line-through {
    font-size: 16px;
    opacity: 0.8;
}
.table-prod td.text-right.del {
    width: 12px;
    padding: 0;
    padding-top: 18px;
}

.table-prod td.text-left.infor_prod p {
    font-size: 14px;
}
.table-prod td.text-right.price span, td.text-right.total  span, .checkout-cart .price {
    font-size: 21px;
    line-height: 35px;
}
.table-prod tr{
  padding: 15px 15px;
  border-radius: 10px;
  box-shadow: 0px 10px 10px 10px rgb(0 0 0 / 10%);
  margin-bottom: 30px;
}
.checkout-cart img {
    width: 280px;
    margin-left: 20px;
    box-shadow: 10px 10px 15px 0px rgb(0 0 0 / 10%);
    border-radius: 9px;
}
.checkout-cart p {
    margin-left: 20px;
}
#checkout-cart .row .table-prod:first-child{
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
}
.checkout-cart {
    justify-content: end;
    align-items: center;
}
.other_prod {
    border-bottom: 1px solid #60606060;
    padding-bottom: 50px;
}
#account-order .list_item {
    padding: 35px 30px;
    box-shadow: 0px 7px 10px 5px rgb(0 0 0 / 10%);
    border-radius: 20px;
}

.row .table-prod:last-child {
    padding-left: calc(var(--bs-gutter-x) * 1);
}
.table-prod input.select-product-checkbox:before {
    content: '';
    width: 20px;
    height: 20px;
    background-color: #cfcfcf;
    position: absolute;
    border-radius: 0;
}
@media (max-width: 768px) {
    #checkout-cart h1 {
        padding: 40px 0 40px 0;
    }
    .table-prod .table{
        display: none;
    }
    .table-prod .table.mobile{
        display: block;
    }
    .table-prod .image_prod{
        width: 30%;
    }
    .table-prod .table.mobile tr{
        position: relative;
        display: block;
        box-shadow: none;
        padding: 10px
    }
    .table-prod .table.mobile > tbody > tr{
        box-shadow: 0px 10px 10px 10px rgb(0 0 0 / 10%);
    }
    .table-prod .table.mobile .del{
        position: absolute;
        top: 0;
        right: 0;
        width: 12px;
    }
    .table-prod .table.mobile td.text-right.total{
        text-align: right;
        padding-left: 10px;
    }
    .checkout-cart{
        display: block !important;
        margin-top:20px
    }
    .checkout-cart img{
        float: right;
    }
}