.mall-loader {
  background: rgba(255, 255, 255, 0.8);
  z-index: 9;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  cursor: wait;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
}
.cart-loader {
  background: rgba(255, 255, 255, 0.8);
  z-index: 9;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  cursor: wait;
  opacity: 1;
  transition: opacity 0.3s;
  visibility: visible;
}
.cart-loader.loaded {
  opacity: 0;
  pointer-events: none;
}
.cart-loader > svg {
  position: sticky;
  display: block;
  margin: auto;
  top: 50vh;
}
._summary-table {
  position: relative;
}
