.cart {
  width: 100%;
}
.cart_loading {
  pointer-events: none;
  position: relative;
}
.cart_loading:before {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
}
.cart__heading {
  font-size: 28px;
  line-height: 34px;
  color: #111111;
  font-weight: 600;
}
.cart__empty {
  text-align: center;
  padding: 50px;
}
.cart__empty .cart__heading {
  margin-bottom: 36px;
}
.cart__content {
  padding: 30px 40px 40px;
}
.cart__buttons {
  display: flex;
  justify-content: flex-end;
  column-gap: 20px;
  margin-top: 20px;
}
.cart__items {
  margin-top: 6px;
}
.cart__total {
  border-top: 1px solid #F1F1F1;
  margin-top: 10px;
  padding-top: 7px;
  font-size: 18px;
  line-height: 22px;
  color: #111111;
  text-align: right;
}
.cart__total strong {
  margin-left: 10px;
  font-weight: 600;
}