/* Final mobile checkout polish */
.checkoutCard,
.checkoutPage,
.twoInputs,
.input,
.input.full {
  min-width: 0;
  max-width: 100%;
}

.checkoutCard {
  overflow: hidden;
}

.input {
  width: 100%;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 16px;
}

.twoInputs {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  width: 100%;
}

.twoInputs > .input {
  width: 100%;
  min-width: 0;
}

.phoneAutoButton {
  display: block;
  box-sizing: border-box;
}

@media (max-width: 390px) {
  .checkoutCard {
    padding: 13px;
    border-radius: 18px;
  }

  .twoInputs {
    gap: 8px;
  }

  .twoInputs > .input,
  .input.full {
    padding-left: 12px;
    padding-right: 12px;
  }
}
