.cart-page-content {
  max-width: 60rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;

  h3 {
    width: 100%;
  }
}

.cart-items-container {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.cart-item-wrapper {
  display: flex;
  background: white;
  padding: .5rem 2rem;
  flex-direction: row;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  border-bottom: 1px solid rgba(150, 150, 150, 0.3);
  gap: 2rem;

  img {
    max-width: 6rem;
    height: auto;
    background: lightgrey;
  }

  button {
    padding: 0;
    background: transparent;

    span {
      color: var(--accent-color);
    }
  }
}

.amount-section {
  display: flex;
  justify-content: center;

  p {
    padding: 0 .5rem;
    margin: 0;
  }
}

.remove-section {
  button {
    width: 2rem;
    height: 2rem;
  }
}

#cart-confirm {
}

.cart-empty-state {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 12rem;
}

.text-section {
  text-align: left;
  height: 100%;
  width: 100%;
  justify-content: flex-start;

  h4 {
    margin-top: 0;
  }

  p {
    margin: 0;
  }
}

#at_order_confirmation_form {
  padding: 0 2rem;
}
