.totals {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.totals > * {
  font-size: 1.6rem;
  margin: 0;
}

.totals > h2 {
  font-size: calc(var(--font-heading-scale) * 1.6rem);
}

.totals * {
  line-height: 1;
}

.totals > * + * {
  margin-left: 2rem;
}

.drawer__totals {
  position: relative;
}

.cart-totals.loading {
  opacity: 0.2;
}

.drawer__totals .loading-overlay {
  opacity: 0.2;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  text-align: center;
}

.cart-totals {
  margin-bottom: 0.5em;
  display: grid;
  row-gap: 0;
}

.cart-totals .subtotals {
  font-size: 1.1em;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-totals .subtotals .label {
  text-transform: uppercase;
}

.cart-totals .totals__subtotal-value {
  display: flex;
  align-items: center;
  position: relative;
}

.cart-totals .totals__subtotal-discount {
  color: var(--color-grey5);
  font-weight: 400;
}

.cart-totals .totals__original-price {
  color: var(--color-grey5);
  font-weight: 400;
  text-decoration: line-through;
  margin-right: 7px;
}


@media screen and (min-width: 990px) { 
  .cart-totals {
    margin-bottom: 1em;
  }
}

@media all and (min-width: 750px) {
  .totals {
    justify-content: flex-end;
  }
}
