.container {
    max-width: 900px;
    margin: 0 auto;
}

#orderSummary {
    padding-bottom: var(--spacing-md);
}

#orderSummary p {
    margin-bottom: 0;
}

input {
  padding: 0.75rem;
  background-color: var(--color-bg);
  border: 1px solid var(--gray-medium);
  border-radius: var(--radius-sm);
  font-size: var(--font-size-base);
  color: var(--color-text);
  width: 400px;
}

label {
    display: flex;
    flex-direction: column;
    font-size: var(--font-size-base);
}

.field {
    padding-left: var(--spacing-md);
    padding-right: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
}

fieldset {
    margin-bottom: var(--spacing-md);
    border: none;
}

legend {
    font-weight: bolder;
    font-size: var(--font-size-lg);
}

.hint {
    font-size: var(--font-size-sm);
    padding-left: var(--spacing-md);
}

.checkout-contact {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.checkout-add-combined {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.checkout-add2 label {
    flex-direction: row;
    gap: var(--spacing-sm);
}

.checkout-csz {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.checkout-state input {
    width: 75px;
}

.checkout-zip input {
    width: 150px;
}

.checkout-country {
    display: none;
}

#card-container {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-evenly;
}

.sq-card-wrapper {
    width: 400px;
}