.checkout-page {
  position: relative;
  min-width: 320px;
  min-height: 100vh;
  overflow-x: hidden;
}

.checkout-stage {
  position: relative;
  z-index: 1;
  width: 100%;
}

.checkout-main-pane {
  width: 100%;
  max-width: 580px;
  margin: 0 auto;
  padding: 20px 14px;
}

.checkout-form__field.is-invalid {
  border-color: #d91c1c !important;
  box-shadow: 0 0 0 1px rgb(217 28 28 / 20%) !important;
}

.checkout-form__card-fields[hidden] { display: none; }

.local-status {
  margin-top: 10px;
  color: #d91c1c;
  font-size: 12px;
  line-height: 16px;
}

.local-status:empty { display: none; }

@media (min-width: 1000px) {
  .checkout-stage {
    width: calc(50% + 50px);
  }

  .checkout-main-pane {
    max-width: 580px;
    min-height: calc(100vh - 141px);
    margin-right: 0;
    margin-left: auto;
    padding: 40px;
    border-right: 1px solid var(--color-border);
  }

  .desktop-order-pane {
    position: absolute;
    z-index: 1;
    top: 141px;
    right: 0;
    bottom: 0;
    display: block;
    width: calc(50% - 50px);
    min-height: calc(100vh - 141px);
    padding: 40px 0 48px 40px;
    background: var(--color-surface);
  }

  .desktop-summary {
    width: min(400px, calc(100% - 40px));
  }
}

@media (max-width: 999px) {
  .checkout-main-pane {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

