.checkout-form {
  width: 100%;
  margin: 0;
  padding: 0;
  color: var(--color-text, #000);
  font-family: var(--font-body, "Figtree", sans-serif);
  font-size: 14px;
  font-weight: 400;
  line-height: 18.9px;
}

.checkout-form button,
.checkout-form input,
.checkout-form select {
  color: inherit;
  font: inherit;
}

.checkout-form button {
  cursor: pointer;
}

.checkout-form h2,
.checkout-form h3,
.checkout-form p {
  margin: 0;
}

.checkout-form h2 {
  font-family: var(--font-heading, "Halant", serif);
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
}

.checkout-form h3 {
  font-family: var(--font-heading, "Halant", serif);
  font-size: 16px;
  font-weight: 700;
  line-height: 19.2px;
}

.checkout-form .checkout-form__visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.checkout-form .checkout-form__express-title {
  color: var(--color-muted, #707070);
  text-align: center;
  margin-bottom: 16px;
}

.checkout-form .checkout-form__express-buttons {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.checkout-form .checkout-form__express-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 48px;
  padding: 0 12px;
  border: 0;
  border-radius: var(--radius, 12px);
}

.checkout-form .checkout-form__express-button:focus-visible {
  outline: 2px solid var(--color-focus, #e29595);
  outline-offset: 2px;
}

.checkout-form .checkout-form__express-button--shop {
  color: #fff;
  background: #592ff4;
}

.checkout-form .checkout-form__express-button--paypal {
  background: #ffc439;
}

.checkout-form .checkout-form__express-button--gpay {
  background: #000;
}

.checkout-form .checkout-form__express-logo {
  display: block;
  flex: 0 0 auto;
  max-width: 100%;
  object-fit: contain;
}

.checkout-form .checkout-form__express-logo--shop {
  width: 47px;
  height: 20px;
}

.checkout-form .checkout-form__express-logo--paypal {
  width: 72px;
  height: 20px;
}

.checkout-form .checkout-form__express-logo--gpay {
  width: 60px;
  height: 23px;
}

.checkout-form .checkout-form__divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 19px 0 17px;
  color: var(--color-muted, #707070);
}

.checkout-form .checkout-form__divider span {
  height: 1px;
  flex: 1;
  background: var(--color-border, #dedede);
}

.checkout-form .checkout-form__divider b {
  font-size: 12px;
  font-weight: 400;
  line-height: 18.9px;
}

.checkout-form .checkout-form__section-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.checkout-form .checkout-form__section-heading a,
.checkout-form .checkout-form__remember a {
  color: var(--color-link, #eab9b9);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.checkout-form .checkout-form__section-heading a:focus-visible,
.checkout-form .checkout-form__remember a:focus-visible {
  border-radius: 3px;
  outline: 2px solid var(--color-focus, #e29595);
  outline-offset: 2px;
}

.checkout-form .checkout-form__field {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 49px;
  overflow: hidden;
  border: 1px solid var(--color-border, #dedede);
  border-radius: var(--radius, 12px);
  background: #fff;
  transition: border-color 120ms ease, box-shadow 120ms ease;
}

.checkout-form .checkout-form__control-group,
.checkout-form [data-tooltip-root] {
  position: relative;
  min-width: 0;
}

.checkout-form .checkout-form__control-group > .checkout-form__field {
  width: 100%;
}

.checkout-form .checkout-form__field:focus-within {
  border-color: var(--color-focus, #e29595);
  box-shadow: 0 0 0 1px rgba(226, 149, 149, 0.25);
}

.checkout-form .checkout-form__field input,
.checkout-form .checkout-form__field select {
  width: 100%;
  height: 100%;
  min-width: 0;
  padding: 0 13px;
  border: 0;
  outline: 0;
  background: transparent;
}

.checkout-form .checkout-form__field input::placeholder {
  color: var(--color-muted, #707070);
  opacity: 1;
}

.checkout-form .checkout-form__field--icon input {
  padding-right: 43px;
}

.checkout-form .checkout-form__field-icon {
  position: absolute;
  top: 50%;
  right: 13px;
  transform: translateY(-50%);
  color: var(--color-muted, #707070);
  pointer-events: none;
}

.checkout-form .checkout-form__field-help {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 10px;
  display: grid;
  width: 18px;
  height: 18px;
  padding: 0;
  transform: translateY(-50%);
  border: 0;
  border-radius: 50%;
  color: var(--color-muted, #707070);
  background: transparent;
  place-items: center;
}

.checkout-form .checkout-form__field-help svg {
  display: block;
  width: 18px;
  height: 18px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.25;
}

.checkout-form .checkout-form__field-help .checkout-form__question-dot {
  fill: currentColor;
  stroke: none;
}

.checkout-form .checkout-form__field-help:focus-visible {
  outline: 2px solid var(--color-focus, #e29595);
  outline-offset: 2px;
}

.checkout-form .checkout-form__tooltip {
  position: absolute;
  z-index: 30;
  right: -58px;
  bottom: calc(100% + 8px);
  display: none;
  width: 154px;
  padding: 10px;
  border-radius: 14px;
  color: #fff;
  background: rgba(0, 0, 0, 0.9);
  font-size: 12px;
  font-weight: 700;
  line-height: 16.2px;
  text-align: center;
  white-space: normal;
}

.checkout-form .checkout-form__tooltip::after {
  content: "";
  position: absolute;
  right: 77px;
  bottom: -4px;
  width: 0;
  height: 0;
  border-top: 4px solid rgba(0, 0, 0, 0.9);
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}

.checkout-form [data-tooltip-root]:has([data-tooltip-trigger]:hover) > [data-tooltip],
.checkout-form [data-tooltip-root]:has([data-tooltip-trigger]:focus-visible) > [data-tooltip],
.checkout-form [data-tooltip-root][data-tooltip-open="true"] > [data-tooltip],
.checkout-form [data-tooltip-root] > [data-tooltip]:not([hidden]) {
  display: block !important;
}

.checkout-form .checkout-form__field-icon--search {
  width: 14px;
  height: 14px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.checkout-form .checkout-form__field-icon--search::after {
  content: "";
  position: absolute;
  right: -4px;
  bottom: -3px;
  width: 6px;
  height: 2px;
  border-radius: 1px;
  background: currentColor;
  transform: rotate(45deg);
  transform-origin: center;
}

.checkout-form .checkout-form__field-icon--lock {
  width: 13px;
  height: 11px;
  margin-top: 3px;
  border: 1.5px solid currentColor;
  border-radius: 2px;
}

.checkout-form .checkout-form__field-icon--lock::before {
  content: "";
  position: absolute;
  left: 2px;
  top: -8px;
  width: 6px;
  height: 7px;
  border: 1.5px solid currentColor;
  border-bottom: 0;
  border-radius: 6px 6px 0 0;
}

.checkout-form .checkout-form__field--select::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid var(--color-muted, #707070);
  border-bottom: 1.5px solid var(--color-muted, #707070);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}

.checkout-form .checkout-form__field--select select {
  appearance: none;
  padding-right: 40px;
  color: var(--color-muted, #707070);
}

.checkout-form .checkout-form__field--country {
  align-items: stretch;
}

.checkout-form .checkout-form__field--country > span {
  position: absolute;
  z-index: 1;
  top: 6px;
  left: 13px;
  color: var(--color-muted, #707070);
  font-size: 11px;
  line-height: 13px;
  pointer-events: none;
}

.checkout-form .checkout-form__field--country select {
  padding-top: 14px;
  color: var(--color-text, #000);
  font-size: 13px;
}

.checkout-form .checkout-form__field--floating {
  align-items: stretch;
}

.checkout-form .checkout-form__floating-label {
  position: absolute;
  z-index: 1;
  top: 5px;
  left: 13px;
  overflow: hidden;
  max-width: calc(100% - 26px);
  color: var(--color-muted, #707070);
  font-size: 12px;
  font-weight: 400;
  line-height: 16.2px;
  opacity: 0;
  pointer-events: none;
  text-overflow: ellipsis;
  transform: translateY(5px);
  transition: opacity 120ms ease, transform 120ms ease;
  white-space: nowrap;
}

.checkout-form .checkout-form__field--floating:focus-within .checkout-form__floating-label,
.checkout-form .checkout-form__field--floating:has(input:not(:placeholder-shown)) .checkout-form__floating-label {
  opacity: 1;
  transform: translateY(0);
}

.checkout-form .checkout-form__field--floating input {
  padding-top: 15px;
}

.checkout-form .checkout-form__field--icon.checkout-form__field--floating .checkout-form__floating-label {
  max-width: calc(100% - 58px);
}

.checkout-form .checkout-form__field--floating:focus-within input::placeholder,
.checkout-form .checkout-form__field--floating:has(input:not(:placeholder-shown)) input::placeholder {
  color: transparent;
}

.checkout-form .checkout-form__check-row {
  display: flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  min-height: 20px;
  cursor: pointer;
}

.checkout-form .checkout-form__check-row input,
.checkout-form .checkout-form__payment-choice input,
.checkout-form .checkout-form__payment-row > input {
  appearance: none;
  flex: 0 0 auto;
  margin: 0;
  background: #fff;
  cursor: pointer;
}

.checkout-form .checkout-form__check-row input {
  position: relative;
  box-sizing: content-box;
  width: 18px;
  height: 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  box-shadow: inset 0 0 0 1px var(--color-border, #dedede);
}

.checkout-form .checkout-form__payment-choice input,
.checkout-form .checkout-form__payment-row > input {
  width: 18px;
  height: 18px;
  border: 1px solid var(--color-border, #dedede);
}

.checkout-form .checkout-form__check-row input:checked {
  border-color: transparent;
  background: #fff;
  box-shadow: inset 0 0 0 10px var(--color-link, #eab9b9);
}

.checkout-form .checkout-form__check-row input:checked::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 3px;
  width: 5px;
  height: 9px;
  border: solid #000;
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
}

.checkout-form .checkout-form__check-row input:focus-visible,
.checkout-form .checkout-form__payment-choice input:focus-visible,
.checkout-form .checkout-form__payment-row > input:focus-visible {
  outline: 2px solid var(--color-focus, #e29595);
  outline-offset: 2px;
}

.checkout-form .checkout-form__contact > .checkout-form__control-group {
  margin-top: 12px;
}

.checkout-form .checkout-form__contact > .checkout-form__check-row {
  margin-top: 10px;
}

.checkout-form .checkout-form__delivery {
  margin-top: 29px;
}

.checkout-form .checkout-form__delivery-fields {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.checkout-form .checkout-form__address-autocomplete {
  position: relative;
  min-width: 0;
}

.checkout-form .checkout-form__address-autocomplete > .checkout-form__field {
  width: 100%;
}

.checkout-form .checkout-form__address-autocomplete > .checkout-form__field:focus-within {
  border-color: var(--color-link, #eab9b9);
  box-shadow: 0 0 0 1px var(--color-link, #eab9b9);
}

.checkout-form .checkout-form__address-hint {
  display: flex;
  align-items: center;
  min-height: 19px;
  gap: 7px;
  margin: 4px 0 0 1px;
  line-height: 18.9px;
}

.checkout-form .checkout-form__address-hint[hidden] {
  display: none;
}

.checkout-form .checkout-form__address-hint svg {
  display: block;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--color-muted, #707070);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.25;
}

.checkout-form .checkout-form__address-hint svg circle:last-child {
  fill: var(--color-muted, #707070);
  stroke: none;
}

.checkout-form .checkout-form__address-suggestions {
  position: absolute;
  z-index: 25;
  top: 55px;
  left: 0;
  display: block;
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--color-border, #dedede);
  border-radius: var(--radius, 12px);
  background: #fff;
  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.2);
}

.checkout-form .checkout-form__address-autocomplete:has(.checkout-form__address-hint:not([hidden])) .checkout-form__address-suggestions {
  top: 80px;
}

.checkout-form .checkout-form__address-suggestions[hidden] {
  display: none;
}

.checkout-form .checkout-form__address-autocomplete[data-address-open="true"] .checkout-form__address-suggestions {
  display: block !important;
}

.checkout-form .checkout-form__address-suggestions-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 36px;
  padding: 0 9px 0 10px;
  color: var(--color-muted, #707070);
  font-size: 11px;
  line-height: 15px;
}

.checkout-form .checkout-form__address-suggestions-header button {
  display: grid;
  width: 18px;
  height: 18px;
  padding: 0;
  border: 0;
  border-radius: 4px;
  color: var(--color-muted, #707070);
  background: transparent;
  place-items: center;
}

.checkout-form .checkout-form__address-suggestions-header button:focus-visible {
  outline: 2px solid var(--color-focus, #e29595);
  outline-offset: 1px;
}

.checkout-form .checkout-form__address-suggestions-header svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.5;
}

.checkout-form .checkout-form__address-status {
  display: flex;
  align-items: center;
  min-height: 39px;
  padding: 9px 10px;
  color: var(--color-muted, #707070);
  background: #fff;
  font-size: 14px;
  line-height: 18.9px;
}

.checkout-form .checkout-form__address-status[hidden],
.checkout-form .checkout-form__address-listbox[hidden],
.checkout-form .checkout-form__address-sandbox {
  display: none;
}

.checkout-form .checkout-form__address-option {
  display: flex;
  align-items: center;
  width: 100%;
  height: 39px;
  min-width: 0;
  padding: 0 10px;
  border: 0;
  color: var(--color-muted, #707070);
  background: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 18.9px;
  text-align: left;
}

.checkout-form .checkout-form__address-option > span {
  display: block;
  overflow: hidden;
  min-width: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.checkout-form .checkout-form__address-option strong {
  color: var(--color-text, #000);
  font-weight: 700;
}

.checkout-form .checkout-form__address-option:hover,
.checkout-form .checkout-form__address-option:focus-visible,
.checkout-form .checkout-form__address-option[aria-selected="true"] {
  color: var(--color-text, #000);
  background: var(--color-link, #eab9b9);
  outline: 0;
}

.checkout-form .checkout-form__span-full {
  grid-column: span 6;
}

.checkout-form .checkout-form__span-half {
  grid-column: span 3;
}

.checkout-form .checkout-form__span-third {
  grid-column: span 2;
}

.checkout-form .checkout-form__delivery > .checkout-form__check-row {
  margin-top: 10px;
}

.checkout-form .checkout-form__shipping {
  margin-top: 28px;
}

.checkout-form .checkout-form__shipping-placeholder {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 50px;
  margin-top: 13px;
  padding: 13px 14px;
  border-radius: var(--radius, 12px);
  color: var(--color-muted, #707070);
  background: var(--color-surface, #f5f5f5);
  line-height: 18.9px;
}

.checkout-form .checkout-form__payment {
  margin-top: 35px;
  padding-bottom: 34px;
}

.checkout-form .checkout-form__payment-note {
  margin-top: 2px;
  color: var(--color-muted, #707070);
}

.checkout-form .checkout-form__payment-panel {
  overflow: visible;
  margin-top: 16px;
  border: 1px solid #ead4d4;
  border-radius: var(--radius, 12px);
  background: #fff;
}

.checkout-form .checkout-form__credit-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 50px;
  padding: 0 14px;
  border-radius: calc(var(--radius, 12px) - 1px) calc(var(--radius, 12px) - 1px) 0 0;
  background: var(--color-payment, #fcf5f5);
}

.checkout-form .checkout-form__payment-choice,
.checkout-form .checkout-form__payment-row {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.checkout-form .checkout-form__payment-choice input,
.checkout-form .checkout-form__payment-row > input {
  position: relative;
  border-radius: 50%;
}

.checkout-form .checkout-form__payment-choice input:checked,
.checkout-form .checkout-form__payment-row > input:checked {
  border-color: var(--color-link, #eab9b9);
  background: var(--color-link, #eab9b9);
  box-shadow: inset 0 0 0 5px var(--color-link, #eab9b9);
}

.checkout-form .checkout-form__payment-choice input:checked::after,
.checkout-form .checkout-form__payment-row > input:checked::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: #111;
}

.checkout-form .checkout-form__payment-choice strong,
.checkout-form .checkout-form__payment-copy strong {
  font-weight: 700;
}

.checkout-form .checkout-form__payment-badges {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 10px;
}

.checkout-form .checkout-form__payment-badges > img {
  display: block;
  width: 38px;
  height: 24px;
  object-fit: contain;
}

.checkout-form .checkout-form__more-cards {
  position: relative;
  display: block;
  flex: 0 0 auto;
  width: 22px;
  height: 24px;
}

.checkout-form .checkout-form__more-cards-trigger {
  display: grid;
  place-items: center;
  width: 22px;
  height: 24px;
  padding: 0 4px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 3px;
  color: var(--color-link, #eab9b9);
  background: #000;
  font-size: 14px;
  font-weight: 400;
  line-height: 18.9px;
}

.checkout-form .checkout-form__more-cards-trigger:focus-visible {
  outline: 2px solid var(--color-focus, #e29595);
  outline-offset: 2px;
}

.checkout-form .checkout-form__cards-popover {
  position: absolute;
  z-index: 35;
  bottom: calc(100% + 8px);
  left: 50%;
  display: none;
  box-sizing: border-box;
  width: 154px;
  height: 65px;
  padding: 11px;
  transform: translateX(-50%);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.9);
  grid-template-columns: repeat(3, 31px);
  grid-template-rows: 20px 18px;
  gap: 5px 6px;
}

.checkout-form .checkout-form__cards-popover::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 0;
  transform: translateX(-50%);
  border-top: 4px solid rgba(0, 0, 0, 0.9);
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}

.checkout-form .checkout-form__cards-popover img {
  display: block;
  width: 31px;
  height: 20px;
  object-fit: contain;
}

.checkout-form .checkout-form__more-cards:has(.checkout-form__more-cards-trigger:hover) > .checkout-form__cards-popover,
.checkout-form .checkout-form__more-cards:has(.checkout-form__more-cards-trigger:focus-visible) > .checkout-form__cards-popover,
.checkout-form .checkout-form__more-cards[data-tooltip-open="true"] > .checkout-form__cards-popover,
.checkout-form .checkout-form__more-cards > .checkout-form__cards-popover:not([hidden]) {
  display: grid !important;
}

.checkout-form .checkout-form__card-fields {
  display: grid;
  gap: 10px;
  padding: 14px;
  border-top: 1px solid #ead4d4;
  background: var(--color-surface, #f5f5f5);
}

.checkout-form .checkout-form__card-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.checkout-form .checkout-form__card-field-group {
  position: relative;
  min-width: 0;
}

.checkout-form .checkout-form__card-field-group > .checkout-form__field {
  width: 100%;
}

.checkout-form .checkout-form__card-field-group.is-invalid > .checkout-form__field,
.checkout-form .checkout-form__card-field-group > .checkout-form__field.is-invalid,
.checkout-form .checkout-form__card-field-group > .checkout-form__field:has(input[aria-invalid="true"]) {
  border: 2px solid #d91c1c;
  border-color: #d91c1c !important;
  box-shadow: none !important;
}

.checkout-form .checkout-form__field-error {
  margin: 3px 0 0;
  color: #d91c1c;
  font-size: 14px;
  font-weight: 400;
  line-height: 18.9px;
}

.checkout-form .checkout-form__field-error[hidden] {
  display: none;
}

.checkout-form .checkout-form__card-field-group.is-invalid > .checkout-form__field-error {
  display: block !important;
}

.checkout-form .checkout-form__billing-check {
  margin-top: 2px;
}

.checkout-form .checkout-form__payment-row {
  min-height: 48px;
  padding: 9px 14px;
  border-top: 1px solid var(--color-border, #dedede);
}

.checkout-form .checkout-form__payment-row--paypal {
  min-height: 48px;
  border-radius: 0 0 calc(var(--radius, 12px) - 1px) calc(var(--radius, 12px) - 1px);
}

.checkout-form .checkout-form__payment-copy {
  display: flex;
  flex: 1;
  min-width: 0;
  flex-direction: row;
  align-items: baseline;
}

.checkout-form .checkout-form__payment-copy small {
  color: var(--color-muted, #707070);
  font-size: 12px;
  line-height: 16px;
}

.checkout-form .checkout-form__payment-copy small::before {
  content: "·";
  margin: 0 4px;
}

.checkout-form .checkout-form__payment-row img {
  display: block;
  flex: 0 0 auto;
  width: 38px;
  height: auto;
  max-height: 20px;
  object-fit: contain;
}

.checkout-form .checkout-form__payment-row--paypal img {
  width: 48px;
}

.checkout-form .checkout-form__remember {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-top: 37px;
}

.checkout-form .checkout-form__remember > div {
  min-width: 0;
}

.checkout-form .checkout-form__remember p {
  line-height: 18.9px;
}

.checkout-form .checkout-form__remember small {
  display: block;
  margin-top: 1px;
  color: var(--color-muted, #707070);
  font-size: 12px;
  line-height: 16px;
}

.checkout-form .checkout-form__remember button {
  flex: 0 0 auto;
  margin-top: 8px;
  padding: 0;
  border: 0;
  color: var(--color-link, #eab9b9);
  background: transparent;
}

.checkout-form .checkout-form__remember button:focus-visible {
  border-radius: 3px;
  outline: 2px solid var(--color-focus, #e29595);
  outline-offset: 3px;
}

@media (min-width: 1000px) {
  .checkout-form .checkout-form__payment-panel {
    border-bottom: 0;
    box-shadow: inset 0 -1px 0 #ead4d4;
  }
}

@media (max-width: 999px) {
  .checkout-form {
    max-width: 552px;
  }

  .checkout-form .checkout-form__express-title {
    margin-bottom: 14px;
  }

  .checkout-form .checkout-form__express-buttons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px 10px;
  }

  .checkout-form .checkout-form__express-button--shop {
    grid-column: 1 / -1;
  }

  .checkout-form .checkout-form__divider {
    margin-top: 14px;
    margin-bottom: 15px;
  }

  .checkout-form .checkout-form__contact > .checkout-form__control-group {
    margin-top: 14px;
  }

  .checkout-form .checkout-form__delivery {
    margin-top: 32px;
  }

  .checkout-form .checkout-form__delivery-fields {
    gap: 10px;
    margin-top: 13px;
  }

  .checkout-form .checkout-form__payment {
    margin-top: 31px;
    padding-bottom: 0;
  }

  .checkout-form .checkout-form__payment-panel {
    margin-top: 15px;
  }

  .checkout-form .checkout-form__payment-row {
    min-height: 64px;
  }

  .checkout-form .checkout-form__payment-row--paypal {
    min-height: 54px;
  }

  .checkout-form .checkout-form__payment-copy {
    flex-direction: column;
    align-items: stretch;
  }

  .checkout-form .checkout-form__payment-copy small::before {
    content: none;
    margin: 0;
  }

}

@media (max-width: 579px) {
  .checkout-form .checkout-form__cards-popover {
    right: 0;
    left: auto;
    transform: none;
  }

  .checkout-form .checkout-form__cards-popover::after {
    right: 11px;
    left: auto;
    transform: none;
  }

  .checkout-form .checkout-form__tooltip {
    right: 0;
  }

  .checkout-form .checkout-form__tooltip::after {
    right: 19px;
  }

  .checkout-form .checkout-form__span-full,
  .checkout-form .checkout-form__span-half,
  .checkout-form .checkout-form__span-third {
    grid-column: 1 / -1;
  }

  .checkout-form .checkout-form__shipping-placeholder {
    min-height: 68px;
    padding: 14px;
  }

  .checkout-form .checkout-form__card-split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 374px) {
  .checkout-form .checkout-form__credit-header {
    padding-right: 10px;
    padding-left: 10px;
  }

  .checkout-form .checkout-form__payment-badges {
    gap: 2px;
    margin-left: 6px;
  }

  .checkout-form .checkout-form__payment-badges > img {
    width: 32px;
  }

  .checkout-form .checkout-form__more-cards,
  .checkout-form .checkout-form__more-cards-trigger {
    width: 22px;
  }
}
