:root {
  --GGR-bg: #050608;
  --GGR-text: #ffffff;

  --GGR-gold: #ffe800;
  --GGR-gold2: #d9c900;

  --GGR-neon: #ffe800;
  --GGR-neonSoft: rgba(255, 232, 0, 0.22);

  --GGR-contentW: 1300px;
  --GGR-contentPad: 18px;
  --GGR-utilH: 42px;
  --GGR-navH: 90px;

  --GGR-shadow: 0 20px 70px rgba(0, 0, 0, 0.6);
  --GGR-shadow2: 0 12px 32px rgba(0, 0, 0, 0.4);

  --GMXC-card: #111722;
  --GMXC-card2: #151c28;
  --GMXC-line: rgba(255, 255, 255, 0.11);
  --GMXC-line2: rgba(255, 232, 0, 0.28);
  --GMXC-muted: rgba(255, 255, 255, 0.72);
  --GMXC-soft: rgba(255, 255, 255, 0.54);
  --GMXC-green: #35d07f;
  --GMXC-red: #ff6868;
  --GMXC-radius: 28px;
  --GMXC-shadow: 0 30px 90px rgba(0, 0, 0, 0.46);
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
  margin: 0;
  background: var(--GGR-bg);
  color: var(--GGR-text);
  overflow-x: hidden;
}

body.GMXC-page {
  font-family:
    "Rubik",
    ui-sans-serif,
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    Arial,
    "Noto Sans";
  font-size: 16px;
  line-height: 1.45;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  background:
    radial-gradient(
      980px 520px at 8% 0%,
      rgba(255, 232, 0, 0.075),
      transparent 62%
    ),
    radial-gradient(
      820px 520px at 95% 8%,
      rgba(255, 255, 255, 0.052),
      transparent 60%
    ),
    linear-gradient(180deg, #050608 0%, #080d14 52%, #050608 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

button {
  -webkit-tap-highlight-color: transparent;
}

.GMXC-shell {
  width: min(
    var(--GGR-contentW, 1300px),
    calc(100% - (var(--GGR-contentPad, 18px) * 2))
  );
  margin: 0 auto;
}

.GMXC-header {
  position: sticky;
  top: 0;
  z-index: 80;
  min-height: var(--GGR-navH);
  display: flex;
  align-items: center;
  background:
    linear-gradient(180deg, rgba(10, 10, 12, 0.92), rgba(10, 10, 12, 0.78)),
    rgba(10, 10, 12, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.34);
}

.GMXC-headerInner {
  min-height: var(--GGR-navH, 90px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-width: 0;
}

.GMXC-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 280px;
  flex: 0 0 auto;
  color: #ffffff;
}

.GMXC-brandImg {
  display: block;
  width: 70px;
  height: 70px;
  object-fit: contain;
  border-radius: 14px;
  flex: 0 0 auto;
}

.GMXC-brandText {
  display: block;
  min-width: 0;
}

.GMXC-brandName {
  display: block;
  font-family:
    "Rubik",
    ui-sans-serif,
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    Arial,
    "Noto Sans";
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.1px;
  line-height: 1.08;
  color: #ffffff;
  white-space: nowrap;
}

.GMXC-brandTag {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.15px;
  line-height: 1.25;
  white-space: nowrap;
}

.GMXC-brandCheckout {
  display: block;
  margin-top: 4px;
  color: rgba(255, 232, 0, 0.9);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
  white-space: nowrap;
}

.GMXC-headerActions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  min-width: 210px;
  flex: 0 0 auto;
}

.GMXC-backLink,
.GMXC-helpBtn {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 16px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease,
    filter 0.18s ease;
}

.GMXC-backLink {
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.11);
}

.GMXC-helpBtn {
  color: #08090d;
  background: linear-gradient(180deg, var(--GGR-gold2), var(--GGR-gold));
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
}

.GMXC-backLink:hover,
.GMXC-helpBtn:hover {
  transform: translateY(-1px);
}

.GMXC-main {
  position: relative;
  padding: 34px 0 34px;
  overflow: hidden;
}

.GMXC-main::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.045;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.GMXC-checkoutGrid {
  display: grid;
  grid-template-columns: 470px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.GMXC-summaryCard,
.GMXC-formCard {
  position: relative;
  overflow: hidden;
  border-radius: var(--GMXC-radius);
  border: 1px solid var(--GMXC-line);
  box-shadow: var(--GMXC-shadow);
}

.GMXC-summaryCard {
  align-self: center;
  height: fit-content;
  padding: 30px;
  background:
    radial-gradient(
      680px 320px at 50% 0%,
      rgba(255, 232, 0, 0.115),
      transparent 65%
    ),
    radial-gradient(
      460px 260px at 100% 0%,
      rgba(255, 255, 255, 0.055),
      transparent 62%
    ),
    linear-gradient(180deg, #121a27 0%, #080c12 100%);
}

.GMXC-summaryCard::after {
  content: "";
  position: absolute;
  left: -80px;
  right: -80px;
  bottom: -140px;
  height: 240px;
  transform: rotate(-7deg);
  background: linear-gradient(
    180deg,
    rgba(255, 232, 0, 0.11),
    rgba(255, 232, 0, 0.018)
  );
  pointer-events: none;
}

.GMXC-formCard {
  background:
    radial-gradient(
      680px 310px at 100% 0%,
      rgba(255, 232, 0, 0.07),
      transparent 62%
    ),
    radial-gradient(
      560px 300px at 0% 100%,
      rgba(255, 255, 255, 0.042),
      transparent 65%
    ),
    linear-gradient(180deg, #151d2b 0%, #090d13 100%);
}

.GMXC-summaryTop,
.GMXC-priceBox,
.GMXC-offerBox,
.GMXC-summaryList,
.GMXC-noteBox {
  position: relative;
  z-index: 2;
}

.GMXC-securePill,
.GMXC-cardHead > span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.GMXC-securePill {
  gap: 9px;
}

.GMXC-securePill span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--GMXC-green);
  box-shadow: 0 0 0 6px rgba(53, 208, 127, 0.12);
}

.GMXC-summaryTop h1 {
  margin: 19px 0 12px;
  max-width: 11ch;
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(42px, 3.5vw, 52px);
  line-height: 0.96;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: #ffffff;
}

.GMXC-summaryTop p {
  margin: 0;
  color: var(--GMXC-muted);
  font-size: 14.5px;
  line-height: 1.7;
}

.GMXC-priceBox {
  margin-top: 24px;
  padding: 22px;
  border-radius: 23px;
  background:
    radial-gradient(
      360px 170px at 100% 0%,
      rgba(255, 232, 0, 0.1),
      transparent 64%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.105),
      rgba(255, 255, 255, 0.04)
    );
  border: 1px solid rgba(255, 255, 255, 0.13);
}

.GMXC-priceMeta span {
  display: block;
  color: var(--GMXC-soft);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.GMXC-priceMeta strong {
  display: block;
  margin-top: 7px;
  font-size: 20px;
  line-height: 1.1;
  color: #ffffff;
}

.GMXC-priceAmount {
  margin-top: 18px;
  color: var(--GGR-gold);
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(50px, 4.5vw, 62px);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.045em;
  text-shadow: 0 14px 38px rgba(255, 232, 0, 0.14);
}

.GMXC-priceBox small {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
}

.GMXC-offerBox {
  margin-top: 15px;
  padding: 17px;
  border-radius: 21px;
  background: rgba(255, 232, 0, 0.078);
  border: 1px solid rgba(255, 232, 0, 0.22);
}

.GMXC-offerBox span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  margin-bottom: 9px;
  padding: 0 9px;
  border-radius: 999px;
  color: #08090d;
  background: var(--GGR-gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.GMXC-offerBox strong {
  display: block;
  font-size: 16px;
  font-weight: 800;
}

.GMXC-offerBox p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.55;
}

.GMXC-summaryList {
  margin-top: 18px;
  display: grid;
}

.GMXC-summaryList div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.085);
}

.GMXC-summaryList span {
  color: var(--GMXC-soft);
  font-size: 13px;
}

.GMXC-summaryList strong {
  text-align: right;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.94);
}

.GMXC-noteBox {
  margin-top: 18px;
  padding: 15px;
  border-radius: 19px;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.GMXC-noteBox strong {
  display: block;
  margin-bottom: 5px;
  color: var(--GGR-gold);
  font-size: 13px;
}

.GMXC-noteBox p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  line-height: 1.6;
}

.GMXC-cardHead {
  padding: 30px 32px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.075);
}

.GMXC-cardHead h2 {
  margin: 15px 0 8px;
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(38px, 3vw, 46px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.035em;
  color: #ffffff;
}

.GMXC-cardHead p {
  margin: 0;
  max-width: 68ch;
  color: var(--GMXC-muted);
  font-size: 14.5px;
  line-height: 1.7;
}

.GMXC-form {
  padding: 28px 32px 32px;
}

.GMXC-sectionBlock {
  padding: 20px;
  border-radius: 23px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.095);
}

.GMXC-sectionBlock + .GMXC-sectionBlock {
  margin-top: 15px;
}

.GMXC-sectionTitle {
  margin-bottom: 15px;
}

.GMXC-sectionTitle span {
  display: block;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #ffffff;
}

.GMXC-sectionTitle small {
  display: block;
  margin-top: 5px;
  color: var(--GMXC-muted);
  font-size: 13.5px;
  line-height: 1.55;
}

.GMXC-planGrid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 11px;
}

.GMXC-planOption {
  position: relative;
  min-height: 108px;
  padding: 14px 12px;
  border-radius: 19px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--GGR-text);
  cursor: pointer;
  text-align: left;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.09),
      rgba(255, 255, 255, 0.04)
    ),
    rgba(255, 255, 255, 0.035);
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease,
    box-shadow 0.18s ease;
}

.GMXC-planOption:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 232, 0, 0.32);
  background: rgba(255, 255, 255, 0.08);
}

.GMXC-planOption.is-active {
  border-color: rgba(255, 232, 0, 0.75);
  background:
    radial-gradient(
      190px 110px at 100% 0%,
      rgba(255, 232, 0, 0.18),
      transparent 62%
    ),
    rgba(255, 232, 0, 0.088);
  box-shadow: 0 15px 34px rgba(0, 0, 0, 0.25);
}

.GMXC-planOption.is-active::after {
  content: "✓";
  position: absolute;
  top: 9px;
  right: 9px;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--GGR-gold);
  color: #08090d;
  font-size: 13px;
  font-weight: 800;
}

.GMXC-planOption span {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.GMXC-planOption strong {
  display: block;
  margin-top: 9px;
  color: #ffffff;
  font-family: "Rajdhani", sans-serif;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1;
}

.GMXC-planOption.is-active strong {
  color: var(--GGR-gold);
}

.GMXC-planOption small {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.GMXC-fieldGrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.GMXC-field {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.GMXC-fieldFull {
  grid-column: 1 / -1;
}

.GMXC-field span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.GMXC-field input,
.GMXC-field select {
  width: 100%;
  min-width: 0;
  min-height: 54px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  outline: none;
  color: #ffffff;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.075),
      rgba(255, 255, 255, 0.035)
    ),
    rgba(0, 0, 0, 0.16);
  padding: 0 14px;
  font-size: 14.5px;
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
}

.GMXC-field select option {
  color: #10131a;
}

.GMXC-field input::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.GMXC-field input:focus,
.GMXC-field select:focus {
  border-color: rgba(255, 232, 0, 0.55);
  box-shadow: 0 0 0 4px rgba(255, 232, 0, 0.08);
  background: rgba(255, 255, 255, 0.075);
}

.GMXC-field.is-error input,
.GMXC-field.is-error select {
  border-color: rgba(255, 104, 104, 0.72);
  box-shadow: 0 0 0 4px rgba(255, 104, 104, 0.08);
}

.GMXC-mobileSummary {
  display: none;
  margin-top: 15px;
  padding: 15px;
  border-radius: 18px;
  background: rgba(255, 232, 0, 0.09);
  border: 1px solid rgba(255, 232, 0, 0.22);
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.GMXC-mobileSummary span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
}

.GMXC-mobileSummary strong {
  color: var(--GGR-gold);
  font-family: "Rajdhani", sans-serif;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.GMXC-termsBox {
  margin-top: 17px;
  padding: 16px 18px;
  border-radius: 20px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.07),
      rgba(255, 255, 255, 0.035)
    ),
    rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.11);
}

.GMXC-checkAgree {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  cursor: pointer;
}

.GMXC-checkAgree input {
  width: 19px;
  height: 19px;
  margin: 3px 0 0;
  accent-color: var(--GGR-gold);
  cursor: pointer;
}

.GMXC-checkAgree span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13.5px;
  line-height: 1.6;
}

.GMXC-checkAgree a {
  color: var(--GGR-gold);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(255, 232, 0, 0.55);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.GMXC-errorBox {
  margin-top: 14px;
  padding: 13px 15px;
  border-radius: 16px;
  color: #ffd7d7;
  background: rgba(255, 104, 104, 0.1);
  border: 1px solid rgba(255, 104, 104, 0.28);
  font-size: 13px;
  line-height: 1.55;
}

.GMXC-actionRow {
  margin-top: 17px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 148px;
  gap: 12px;
}

.GMXC-payBtn,
.GMXC-whatsappBtn {
  min-height: 58px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
  font-size: 15px;
  font-weight: 800;
  transition:
    transform 0.16s ease,
    filter 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease;
}

.GMXC-payBtn {
  color: #08090d;
  background: linear-gradient(180deg, #fff35a 0%, #ffe800 42%, #d9c900 100%);
  box-shadow:
    0 22px 54px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(255, 255, 255, 0.18) inset;
}

.GMXC-whatsappBtn {
  min-width: 130px;
  padding: 0 16px;
  color: #ffffff;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.095),
    rgba(255, 255, 255, 0.04)
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.GMXC-payBtn:hover,
.GMXC-whatsappBtn:hover {
  transform: translateY(-2px);
}

.GMXC-payBtn:disabled {
  cursor: not-allowed;
  opacity: 0.68;
  transform: none;
  filter: grayscale(0.3);
}

.GMXC-smallNote {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 12.5px;
  line-height: 1.6;
}

.GMXC-footer {
  padding: 18px 0 30px;
}

.GMXC-footerInner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
}

.GMXC-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.GMXC-footer a {
  color: rgba(255, 255, 255, 0.72);
}

.GMXC-footer a:hover {
  color: var(--GGR-gold);
}

@media (max-width: 1210px) {
  .GMXC-checkoutGrid {
    grid-template-columns: 1fr;
    max-width: 880px;
    margin: 0 auto;
    align-items: start;
  }

  .GMXC-summaryCard {
    align-self: auto;
  }

  .GMXC-summaryTop h1 {
    max-width: none;
  }

  .GMXC-summaryList {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .GMXC-summaryList div {
    display: grid;
    gap: 5px;
  }

  .GMXC-summaryList strong {
    text-align: left;
  }
}

@media (max-width: 760px) {
  :root {
    --GGR-contentPad: 14px;
  }

  .GMXC-headerInner {
    min-height: 78px;
  }

  .GMXC-brand {
    min-width: 0;
    gap: 10px;
  }

  .GMXC-brandImg {
    width: 58px;
    height: 58px;
    border-radius: 14px;
  }

  .GMXC-brandName {
    font-size: 15px;
  }

  .GMXC-brandTag {
    font-size: 11px;
  }

  .GMXC-brandCheckout {
    display: none;
  }

  .GMXC-backLink {
    display: none;
  }

  .GMXC-helpBtn {
    min-height: 40px;
    padding-inline: 12px;
  }

  .GMXC-main {
    padding-top: 20px;
  }

  .GMXC-summaryCard,
  .GMXC-formCard {
    border-radius: 24px;
  }

  .GMXC-summaryCard {
    padding: 22px;
  }

  .GMXC-summaryTop h1 {
    font-size: 38px;
  }

  .GMXC-priceAmount {
    font-size: 46px;
  }

  .GMXC-cardHead {
    padding: 24px 20px 20px;
  }

  .GMXC-cardHead h2 {
    font-size: 36px;
  }

  .GMXC-form {
    padding: 20px;
  }

  .GMXC-sectionBlock {
    padding: 16px;
    border-radius: 20px;
  }

  .GMXC-planGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .GMXC-fieldGrid {
    grid-template-columns: 1fr;
  }

  .GMXC-fieldFull {
    grid-column: auto;
  }

  .GMXC-mobileSummary {
    display: flex;
  }

  .GMXC-actionRow {
    grid-template-columns: 1fr;
  }

  .GMXC-whatsappBtn {
    width: 100%;
  }

  .GMXC-footerInner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 430px) {
  .GMXC-brandText {
    max-width: 180px;
  }

  .GMXC-brandName,
  .GMXC-brandTag {
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .GMXC-planGrid {
    grid-template-columns: 1fr;
  }

  .GMXC-planOption {
    min-height: 94px;
  }

  .GMXC-summaryList {
    grid-template-columns: 1fr;
  }

  .GMXC-checkAgree {
    grid-template-columns: 20px 1fr;
  }
}
