.cart-head {
  display: flex;
  background-color: rgba(var(--color-grey-rgb), 0.15);
  border-radius: 8px;
  padding: 8px 12px;
  position: relative;
}
.cart-head_title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--color-dark);
}
.cart-product {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(var(--color-grey-rgb), 0.3);
  padding: 10px 0;
  position: relative;
}
.cart-product_item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.cart-product_item.col-name {
  flex-direction: row;
}
.cart-product_img {
  max-width: 64px;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  margin-right: 10px;
}
.cart-product_title {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-dark);
  margin-bottom: 4px;
}
.cart-product_option {
  font-size: 13px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.2;
  color: #555;
}
.cart-product_price {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.2;
}
.cart-product_price small {
  font-size: 0.8em;
}
@media (min-width: 1200px) {
  .cart-product_price {
    font-size: 18px;
  }
}
@media (min-width: 1400px) {
  .cart-product_price {
    font-size: 22px;
  }
}
.cart-product_price.new {
  color: var(--color-accent);
}
.cart-product_price.old {
  color: var(--color-grey);
  position: relative;
}
.cart-product_price.old:after {
  content: "";
  display: block;
  width: calc(100% + 2px);
  height: 1px;
  background-color: var(--color-grey);
  position: absolute;
  top: 50%;
  left: -1px;
}
.cart-product_item .qty-widget {
  padding: 0 8px;
}
.cart-product_item .qty-widget input {
  width: 56px;
}
.cart-product_remove {
  display: flex;
  width: 36px;
  height: 36px;
  position: relative;
  /* position: absolute;
  top: 50%;
  right: 36px;
  transform: translateY(-50%); */
}
.cart-product_remove:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #bfbdc0;
  -webkit-mask: url(/assets/images/elements/TrashSimple.svg) center center /
    24px no-repeat;
  mask: url(/assets/images/elements/TrashSimple.svg) center center / 24px
    no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  transition: background-color 0.2s;
}
.cart-clear-all {
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  color: #888;
  text-align: center;
  display: inline-block;
}
@media (min-width: 992px) {
  .cart-page .sticky-col {
    position: sticky;
    top: 82px;
  }
}
.order-final {
  background-color: #fff;
  border: 1px solid rgba(var(--color-grey-rgb), 0.3);
  border-radius: 8px;
  padding: 20px 16px 12px;
  margin-bottom: 24px;
}
@media (min-width: 992px) {
  .order-final {
    max-width: 456px;
    margin-left: auto;
  }
}
.order-final_head {
  border-bottom: 2px solid var(--color-grey);
}
.order-final_head table {
  width: 100%;
}
.order-final_head td {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.2;
}
.order-final_head td small {
  font-size: 0.8em;
}
.order-final_head td.col {
  border-bottom: 1px dashed var(--color-grey);
}
.order-final_body table {
  width: 100%;
}
.order-final_body td {
  font-weight: 600;
  font-size: 18px;
  line-height: 1;
  color: var(--color-dark);
  padding: 0;
}
.order-final_body td:first-child {
  padding-right: 8px;
}
.order-final_body td:last-child {
  text-align: right;
}
.order-final_body td:last-child small {
  font-size: 0.8em;
}
.order-info {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  color: #333;
  max-width: 336px;
  padding: 0 24px;
  margin-left: auto;
}
.order-info_label {
  display: block;
  background: url(/assets/images/elements/seal-warning.svg) top left / 20px
    no-repeat;
  padding-left: 28px;
}
.discount-form .control-row {
  margin-bottom: 0;
}
.discount-form .control-row_input,
.discount-form .btn {
  height: 48px;
}
@media (min-width: 576px) {
  .discount-form .control-row {
    width: 254px;
    max-width: 100%;
  }
  .discount-form .btn {
    width: 128px;
    max-width: 100%;
  }
}
.msg-success {
  font-style: italic;
  line-height: 1.3;
  color: var(--color-primary);
}
.cart-form {
  padding-top: 32px;
}
.cart-form .row {
  --bs-gutter-x: 8px;
  --bs-gutter-y: 16px;
}
.showroom-wrapper {
  display: none;
  border-top: 1px solid #ebece7;
  padding-top: 20px;
  margin-top: 24px;
}
.showroom-wrapper .radio-row_label:after {
  background-color: #140101;
}
.cart-form_line {
  border-color: #8888884d;
  margin: 8px 0 32px;
}
.cart-form_title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--color-dark);
  display: block;
  background-color: rgba(var(--color-grey-rgb), 0.15);
  border-radius: 8px;
  padding: 8px;
  margin-bottom: 16px;
}
.delivery-info {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #888;
}
.cart-form .control-row_select {
  background-color: #fff;
}
.cart-product_item.col-qty {
  align-items: center;
}
@media (max-width: 767.98px) {
  .cart-product {
    border: 1px solid rgba(var(--color-grey-rgb), 0.3);
    border-bottom-width: 3px;
    padding-right: 16px;
    padding-left: 16px;
    margin-bottom: 8px;
  }
  .cart-product_item {
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-bottom: 12px;
  }
  .cart-product_item:before {
    content: attr(data-label) ":";
    font-size: 12px;
    font-weight: 600;
    line-height: 1.6;
    color: #7f7b82;
    text-transform: uppercase;
    width: 100%;
    margin-bottom: 8px;
  }
  .cart-product_item.col-name {
    padding-right: 42px;
  }
  .cart-product_item.col-name:before {
    width: 100%;
    margin-bottom: 8px;
  }
  .cart-product_remove {
    width: 48px;
    height: 48px;
    position: absolute;
    top: 38px;
    right: 0;
    transform: none;
  }
  .cart-product_item.col-total {
    flex-direction: row;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0;
  }
  .cart-product_item.col-total:before {
    width: auto;
    margin-bottom: 0;
    margin-right: 8px;
  }
}
@media (min-width: 768px) {
  .cart-head_title.col-price {
    text-align: center;
  }
  /* .cart-page .col-name {
    max-width: 350px;
  }
  .cart-page .col-price {
    max-width: 140px;
  } */
  .cart-page .col-qty {
    /* max-width: 164px; */
  }
  .cart-page .col-total {
    /* max-width: 216px;
    padding-right: 56px; */
  }
  .cart-product_item.col-price,
  .cart-product_item.col-qty,
  .cart-product_item.col-total {
    align-items: center;
  }
  .delivery-info {
    padding: 10px 0 11px 18px;
  }
}
@media (min-width: 992px) {
  .cart-product_item.col-name {
    flex-direction: column;
  }
  /* .cart-product_img {
    max-width: 80px;
  } */
}
@media (min-width: 1200px) {
  .checkbox-row_label.policy a {
    transition: color 0.2s;
  }
  .checkbox-row_label.policy a:hover {
    color: var(--color-primary);
  }
  .cart-product_item.col-name {
    flex-direction: row;
    align-items: center;
  }
  .cart-product_remove:hover:before {
    background-color: var(--color-accent);
  }
  .cart-clear-all {
    transition: color 0.2s, border-color 0.2s;
  }
  .cart-clear-all:hover {
    color: var(--color-accent);
  }
}
@media (min-width: 1400px) {
  .cart-product_item .qty-widget input {
    width: 76px;
  }
  .order-final {
    padding: 40px 32px 24px;
  }
  .order-final_head td {
    font-size: 18px;
  }
  .order-final_body td {
    font-size: 20px;
  }
  .cart-head {
    padding: 18px 24px;
  }
  .cart-head_title {
    font-size: 20px;
  }
  .cart-product {
    padding: 24px 0;
  }
  .cart-form {
    padding-top: 64px;
  }
  .delivery-info {
    font-size: 18px;
  }
  .cart-form_title {
    font-size: 20px;
    padding: 18px 16px;
    margin-bottom: 32px;
  }
  .cart-clear-all {
    font-size: 16px;
  }
}
