.bar-pro-story,
.bar-pro-story * {
  box-sizing: border-box;
}

.bar-pro-story {
  display: block;
  width: 100%;
  overflow: hidden;
  color: var(--bar-pro-text);
  background: var(--bar-pro-background);
}

.bar-pro-story__content {
  width: 100%;
  max-width: var(--bar-pro-max-width);
  margin: 0 auto;
}

.bar-pro-story__picture,
.bar-pro-feature__media {
  display: block;
  width: 100%;
  margin: 0;
}

.bar-pro-story__image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  background: var(--bar-pro-background);
}

.bar-pro-feature {
  position: relative;
  margin: 0 0 var(--bar-pro-gap);
}

.bar-pro-feature__copy {
  position: absolute;
  z-index: 2;
  max-width: min(33vw, 540px);
  color: var(--bar-pro-heading);
}

.bar-pro-feature__copy--hero {
  top: 12%;
  left: 6%;
  max-width: 520px;
}

.bar-pro-feature__copy--right {
  top: 27%;
  right: 10%;
}

.bar-pro-feature__copy--left {
  top: 23%;
  left: 6.8%;
}

.bar-pro-feature--graffiti .bar-pro-feature__copy--left {
  top: 13%;
}

.bar-pro-feature--mesh .bar-pro-feature__copy--right {
  top: 21%;
  right: 8.5%;
}

.bar-pro-feature--compact .bar-pro-feature__copy--right {
  top: 25%;
  right: 8%;
}

.bar-pro-feature__eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  margin-bottom: 14px;
  border-radius: 999px;
  color: var(--bar-pro-accent);
  background: rgba(255,255,255,0.78);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.bar-pro-feature__title {
  margin: 0;
  color: var(--bar-pro-heading);
  font-size: clamp(34px, 3.35vw, 64px);
  line-height: 0.98;
  font-weight: 950;
  letter-spacing: -1.4px;
}

.bar-pro-feature__text {
  max-width: 430px;
  margin: 16px 0 0;
  color: var(--bar-pro-text);
  font-size: clamp(16px, 1.3vw, 22px);
  line-height: 1.38;
  font-weight: 500;
}

.bar-pro-feature__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.bar-pro-feature__stat,
.bar-pro-feature__meta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 18px;
  border-radius: 999px;
  color: var(--bar-pro-heading);
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(17,17,17,0.08);
  box-shadow: 0 10px 22px rgba(0,0,0,0.06);
  font-size: clamp(14px, 1vw, 18px);
  font-weight: 800;
  line-height: 1.2;
}

.bar-pro-feature__meta {
  margin-top: 18px;
}

.bar-pro-flavours {
  padding: 58px 54px 52px;
  background:
    radial-gradient(circle at 8% 0%, rgba(35, 169, 232, 0.13), transparent 32%),
    radial-gradient(circle at 92% 100%, rgba(124, 86, 214, 0.10), transparent 35%),
    var(--bar-pro-panel);
}

.bar-pro-flavours__header {
  max-width: 720px;
  margin: 0 auto 30px;
  text-align: center;
}

.bar-pro-flavours__eyebrow,
.bar-pro-parameters__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  padding: 7px 12px;
  color: var(--bar-pro-accent);
  background: rgba(35, 169, 232, 0.10);
  border: 1px solid rgba(35, 169, 232, 0.20);
  border-radius: 999px;
  font-size: 10px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.75px;
  text-transform: uppercase;
}

.bar-pro-flavours__title,
.bar-pro-parameters__title {
  margin: 0 0 9px;
  color: var(--bar-pro-heading);
  font-size: clamp(27px, 3vw, 42px);
  line-height: 1.1;
  font-weight: 950;
  letter-spacing: -0.7px;
  text-transform: uppercase;
}

.bar-pro-flavours__description {
  margin: 0;
  color: var(--bar-pro-muted);
  font-size: 14px;
  line-height: 1.6;
}

.bar-pro-flavours__carousel { position: relative; }
.bar-pro-flavours__track {
  display: flex;
  flex-wrap: nowrap;
  gap: 16px;
  overflow-x: auto;
  padding: 3px 2px 13px;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
}
.bar-pro-flavours__track.is-dragging { cursor: grabbing; scroll-behavior: auto; user-select: none; }
.bar-pro-flavours__track::-webkit-scrollbar { display: none; }
.bar-pro-flavour-card {
  flex: 0 0 calc((100% - 64px) / 5);
  min-width: 0;
  aspect-ratio: 7 / 10;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: transparent;
  border-radius: 18px;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  transition: transform 0.22s ease, filter 0.22s ease;
}
.bar-pro-flavour-card:hover { transform: translateY(-4px); filter: drop-shadow(0 14px 18px rgba(0, 0, 0, 0.12)); }
.bar-pro-flavour-card__image { width: 100%; height: 100%; display: block; object-fit: contain; object-position: center; pointer-events: none; }
.bar-pro-flavours__arrow {
  position: absolute; top: 50%; z-index: 5; width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center;
  padding: 0; color: #ffffff; background: rgba(17, 17, 17, 0.84); border: 1px solid rgba(255, 255, 255, 0.24); border-radius: 50%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18); cursor: pointer; transform: translateY(-50%); transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}
.bar-pro-flavours__arrow:hover { transform: translateY(-50%) scale(1.06); background: var(--bar-pro-accent); }
.bar-pro-flavours__arrow:disabled { opacity: 0.3; cursor: default; }
.bar-pro-flavours__arrow--previous { left: -22px; }
.bar-pro-flavours__arrow--next { right: -22px; }
.bar-pro-flavours__arrow span { font-size: 31px; line-height: 1; transform: translateY(-1px); }
.bar-pro-flavours__dots { min-height: 9px; display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 15px; }
.bar-pro-flavours__dot { width: 7px; height: 7px; padding: 0; background: rgba(17, 17, 17, 0.18); border: 0; border-radius: 50%; cursor: pointer; transition: width 0.2s ease, background 0.2s ease, border-radius 0.2s ease; }
.bar-pro-flavours__dot.is-active { width: 22px; background: var(--bar-pro-accent); border-radius: 999px; }
.bar-pro-flavours__hint { display: none; margin: 12px 0 0; color: var(--bar-pro-muted); font-size: 11.5px; line-height: 1.4; font-weight: 700; text-align: center; }

.bar-pro-parameters { padding: 58px 54px; background: var(--bar-pro-background); }
.bar-pro-parameters__header { margin-bottom: 28px; text-align: center; }
.bar-pro-parameters__grid { max-width: 1120px; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 13px; margin: 0 auto; }
.bar-pro-parameter {
  min-height: 112px; display: flex; flex-direction: column; justify-content: center; padding: 19px 18px;
  background: rgba(255, 255, 255, 0.78); border: 1px solid rgba(35, 169, 232, 0.14); border-radius: 15px; text-align: center;
}
.bar-pro-parameter__label { margin-bottom: 8px; color: var(--bar-pro-muted); font-size: 11px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; }
.bar-pro-parameter__value { color: var(--bar-pro-heading); font-size: 21px; line-height: 1.2; font-weight: 900; }

.bar-pro-story__cta {
  padding: 72px 20px 88px; background: linear-gradient(135deg, rgba(35, 169, 232, 0.12), rgba(124, 86, 214, 0.10)); text-align: center;
}
.bar-pro-story__cta-heading { margin: 0 0 14px; color: var(--bar-pro-heading); font-size: clamp(30px, 4vw, 52px); line-height: 1.05; font-weight: 950; text-transform: uppercase; }
.bar-pro-story__cta-text { max-width: 720px; margin: 0 auto 28px; color: var(--bar-pro-text); font-size: 16px; line-height: 1.6; }
.bar-pro-story__cta-button {
  display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 26px; color: #ffffff; background: var(--bar-pro-accent); border-radius: 999px; text-decoration: none; font-size: 13px; font-weight: 900; letter-spacing: 1px; text-transform: uppercase;
}

@media (max-width: 1280px) {
  .bar-pro-feature__copy { max-width: min(39vw, 500px); }
  .bar-pro-feature__title { font-size: clamp(30px, 3vw, 52px); }
  .bar-pro-feature__text { font-size: clamp(15px, 1.15vw, 20px); }
}

@media (max-width: 900px) {
  .bar-pro-feature__copy { max-width: min(43vw, 420px); }
  .bar-pro-feature__title { font-size: clamp(26px, 2.8vw, 40px); }
  .bar-pro-feature__text { margin-top: 12px; }
  .bar-pro-flavour-card { flex-basis: calc((100% - 32px) / 3); }
  .bar-pro-parameters__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 768px) {
  .bar-pro-story__content { width: 100%; }
  .bar-pro-feature { display: flex; flex-direction: column; }
  .bar-pro-feature__media { order: 1; }
  .bar-pro-feature__copy {
    position: static;
    order: 2;
    max-width: none;
    padding: 24px 20px 28px;
    background: #ffffff;
  }
  .bar-pro-feature__copy--hero {
    padding-top: 22px;
    background: linear-gradient(180deg, rgba(35, 169, 232, 0.06), rgba(35, 169, 232, 0));
  }
  .bar-pro-feature__title { font-size: clamp(28px, 8vw, 40px); line-height: 1.02; }
  .bar-pro-feature__text { max-width: none; font-size: 16px; }
  .bar-pro-feature__eyebrow { margin-bottom: 12px; font-size: 11px; }
  .bar-pro-feature__stats { margin-top: 16px; gap: 10px; }
  .bar-pro-feature__stat, .bar-pro-feature__meta { min-height: 42px; padding: 8px 14px; font-size: 13px; }
  .bar-pro-flavours { padding: 40px 16px 38px; }
  .bar-pro-flavour-card { flex: 0 0 var(--bar-pro-mobile-card-width); }
  .bar-pro-flavours__arrow { display: none; }
  .bar-pro-flavours__hint { display: block; }
  .bar-pro-parameters { padding: 40px 16px; }
  .bar-pro-parameters__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .bar-pro-parameter { min-height: 100px; padding: 16px 14px; }
  .bar-pro-parameter__value { font-size: 18px; }
  .bar-pro-story__cta { padding: 52px 16px 60px; }
}

@media (max-width: 480px) {
  .bar-pro-feature__copy { padding: 20px 15px 24px; }
  .bar-pro-feature__title { font-size: 30px; }
  .bar-pro-feature__text { font-size: 15px; }
  .bar-pro-flavour-card { flex-basis: 78%; }
  .bar-pro-parameters__grid { grid-template-columns: 1fr; }
}

/* IGET MOBILE OVERLAY FIX — 2026-08-06
   Keep the official-style copy inside each image on small screens.
   Desktop rules above remain unchanged. */
@media (max-width: 768px) {
  .bar-pro-feature {
    position: relative !important;
    display: block !important;
    overflow: hidden;
    isolation: isolate;
    background: #eef8ff;
  }

  .bar-pro-feature--hero {
    min-height: clamp(315px, 91vw, 365px);
  }

  .bar-pro-feature--puffs,
  .bar-pro-feature--graffiti,
  .bar-pro-feature--mesh,
  .bar-pro-feature--battery,
  .bar-pro-feature--compact {
    min-height: clamp(350px, 105vw, 410px);
  }

  .bar-pro-feature__media {
    position: absolute !important;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    margin: 0 !important;
  }

  .bar-pro-feature__media .bar-pro-story__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Each source image has a different empty text area. */
  .bar-pro-feature--hero .bar-pro-story__image {
    object-position: 55% center;
  }

  .bar-pro-feature--puffs .bar-pro-story__image {
    object-position: 29% center;
  }

  .bar-pro-feature--graffiti .bar-pro-story__image {
    object-position: 70% center;
  }

  .bar-pro-feature--mesh .bar-pro-story__image {
    object-position: 28% center;
  }

  .bar-pro-feature--battery .bar-pro-story__image {
    object-position: 74% center;
  }

  .bar-pro-feature--compact .bar-pro-story__image {
    object-position: 46% center;
  }

  .bar-pro-feature::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
  }

  .bar-pro-feature--hero::after {
    background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.97) 0%,
      rgba(255, 255, 255, 0.80) 35%,
      rgba(255, 255, 255, 0.04) 68%
    );
  }

  .bar-pro-feature--puffs::after,
  .bar-pro-feature--mesh::after,
  .bar-pro-feature--compact::after {
    background: linear-gradient(
      270deg,
      rgba(255, 255, 255, 0.97) 0%,
      rgba(255, 255, 255, 0.80) 40%,
      rgba(255, 255, 255, 0.02) 69%
    );
  }

  .bar-pro-feature--graffiti::after,
  .bar-pro-feature--battery::after {
    background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.97) 0%,
      rgba(255, 255, 255, 0.79) 40%,
      rgba(255, 255, 255, 0.02) 69%
    );
  }

  .bar-pro-feature__copy,
  .bar-pro-feature__copy--hero,
  .bar-pro-feature__copy--left,
  .bar-pro-feature__copy--right,
  .bar-pro-feature__copy--compact {
    position: absolute !important;
    z-index: 2;
    max-width: none !important;
    padding: 0 !important;
    background: transparent !important;
    text-align: left;
  }

  .bar-pro-feature__copy--hero {
    top: 7.5%;
    left: 4.5%;
    width: 54%;
  }

  .bar-pro-feature--puffs .bar-pro-feature__copy {
    top: 11%;
    right: 4.5%;
    left: auto;
    width: 48%;
  }

  .bar-pro-feature--graffiti .bar-pro-feature__copy {
    top: 8.5%;
    left: 4.5%;
    right: auto;
    width: 47%;
  }

  .bar-pro-feature--mesh .bar-pro-feature__copy {
    top: 10%;
    right: 4.5%;
    left: auto;
    width: 49%;
  }

  .bar-pro-feature--battery .bar-pro-feature__copy {
    top: 10%;
    left: 4.5%;
    right: auto;
    width: 47%;
  }

  .bar-pro-feature--compact .bar-pro-feature__copy {
    top: 11%;
    right: 4.5%;
    left: auto;
    width: 48%;
  }

  .bar-pro-feature__title {
    color: #171a1f;
    font-size: clamp(23px, 7.5vw, 32px) !important;
    line-height: 1.02;
    letter-spacing: -0.75px;
    text-wrap: balance;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.6);
  }

  .bar-pro-feature__text {
    max-width: none;
    margin-top: 10px;
    color: #2d333b;
    font-size: clamp(12px, 3.55vw, 15px) !important;
    line-height: 1.38;
    font-weight: 520;
  }

  .bar-pro-feature__eyebrow {
    margin-bottom: 9px;
    padding: 6px 9px;
    font-size: 9px;
    letter-spacing: 0.9px;
    background: rgba(255, 255, 255, 0.88);
  }

  .bar-pro-feature__stats {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 7px;
    margin-top: 13px;
  }

  .bar-pro-feature__stat,
  .bar-pro-feature__meta {
    min-height: 33px;
    padding: 7px 11px;
    font-size: 11px;
    box-shadow: 0 6px 18px rgba(22, 33, 44, 0.08);
  }

  .bar-pro-feature__meta {
    margin-top: 12px;
  }

  .bar-pro-flavours {
    padding-inline: 14px;
  }

  .bar-pro-flavours__track {
    padding-inline: 2px;
  }

  .bar-pro-flavour-card {
    flex-basis: min(76vw, 285px);
  }
}

@media (max-width: 390px) {
  .bar-pro-feature--hero {
    min-height: 310px;
  }

  .bar-pro-feature--puffs,
  .bar-pro-feature--graffiti,
  .bar-pro-feature--mesh,
  .bar-pro-feature--battery,
  .bar-pro-feature--compact {
    min-height: 355px;
  }

  .bar-pro-feature__title {
    font-size: clamp(22px, 7.1vw, 27px) !important;
  }

  .bar-pro-feature__text {
    font-size: 12px !important;
  }
}


.bar-pro-story--has-floating-cta .bar-pro-story__content { padding-bottom: 110px; }
.bar-pro-story__floating-cta {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 40;
  display: flex;
  justify-content: center;
  pointer-events: none;
}
.bar-pro-story__floating-button {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: min(100%, 440px);
  min-height: 56px;
  padding: 16px 24px;
  border-radius: 16px;
  background: var(--bar-pro-cta-bg, #FF9F0A);
  color: var(--bar-pro-cta-text, #111111) !important;
  text-decoration: none;
  font-size: 15px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: .15px;
  box-shadow: 0 14px 36px rgba(255, 159, 10, 0.28), 0 6px 18px rgba(0,0,0,.18);
  transition: transform .2s ease, box-shadow .2s ease;
}
.bar-pro-story__floating-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(255, 159, 10, 0.34), 0 8px 20px rgba(0,0,0,.22);
}
.bar-pro-story__floating-button span { font-size: 17px; line-height: 1; }
@media (min-width: 769px) {
  .bar-pro-story__floating-cta { bottom: 24px; }
}
@media (max-width: 768px) {
  .bar-pro-story--has-floating-cta .bar-pro-story__content { padding-bottom: 94px; }
  .bar-pro-story__floating-cta { left: 12px; right: 12px; bottom: 12px; }
  .bar-pro-story__floating-button { width: 100%; min-height: 54px; font-size: 14px; border-radius: 14px; }
}


/* Floating CTA visibility hardening */
.bar-pro-story__floating-button {
  -webkit-appearance: none !important;
  appearance: none !important;
  opacity: 1 !important;
  background: #FF9F0A !important;
  background-color: #FF9F0A !important;
  color: #111111 !important;
  border: 1px solid #E98C00 !important;
  box-shadow: 0 10px 28px rgba(255, 159, 10, .38), 0 4px 12px rgba(0, 0, 0, .16) !important;
  text-shadow: none !important;
  filter: none !important;
  isolation: isolate;
}

.bar-pro-story__floating-button::before,
.bar-pro-story__floating-button::after {
  display: none !important;
  content: none !important;
  opacity: 0 !important;
  background: transparent !important;
}

.bar-pro-story__floating-button:hover {
  background: #F09400 !important;
  background-color: #F09400 !important;
  color: #111111 !important;
  border-color: #D98200 !important;
}

.bar-pro-story__floating-button:focus,
.bar-pro-story__floating-button:focus-visible {
  background: #FF9F0A !important;
  color: #111111 !important;
  outline: 2px solid rgba(17, 17, 17, .22) !important;
  outline-offset: 2px;
}

/* Floating CTA attention animation: subtle bounce every 7 seconds */
.bar-pro-story__floating-button {
  animation: bar-pro-cta-attention 7s ease-in-out 1.5s infinite;
  transform-origin: center bottom;
  will-change: transform, box-shadow;
}

.bar-pro-story__floating-button:hover,
.bar-pro-story__floating-button:active,
.bar-pro-story__floating-button:focus-visible {
  animation-play-state: paused;
}

@keyframes bar-pro-cta-attention {
  0%, 16%, 100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 10px 28px rgba(255, 159, 10, .38), 0 4px 12px rgba(0, 0, 0, .16);
  }
  4% {
    transform: translateY(-5px) scale(1.015);
    box-shadow: 0 16px 34px rgba(255, 159, 10, .48), 0 8px 18px rgba(0, 0, 0, .18);
  }
  8% {
    transform: translateY(0) scale(1);
  }
  11% {
    transform: translateY(-2px) scale(1.006);
  }
}

@media (prefers-reduced-motion: reduce) {
  .bar-pro-story__floating-button {
    animation: none !important;
    transition: none !important;
  }
}

/* CTA placement: part of page content, directly above footer */
.bar-pro-story--has-floating-cta .bar-pro-story__content {
  padding-bottom: 0 !important;
}
.bar-pro-story__floating-cta {
  position: relative !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  z-index: auto !important;
  width: 100%;
  padding: 26px 16px 30px;
  margin: 0;
  display: flex;
  justify-content: center;
  background: var(--bar-pro-background, #ECF9FF);
  pointer-events: auto !important;
}
@media (max-width: 768px) {
  .bar-pro-story--has-floating-cta .bar-pro-story__content {
    padding-bottom: 0 !important;
  }
  .bar-pro-story__floating-cta {
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    padding: 20px 12px 24px;
  }
  .bar-pro-story__floating-button {
    width: 100%;
    max-width: 420px;
  }
}


/* CTA boundary behavior: floats only while the real bottom CTA is still below the viewport */
.bar-pro-story--has-floating-cta .bar-pro-story__content,
.bar-pro-story--has-floating-cta .bar-pro-story__story {
  padding-bottom: 0 !important;
}

.bar-pro-story__inline-cta {
  position: relative !important;
  z-index: 2;
  width: 100%;
  padding: 26px 16px 30px;
  margin: 0;
  display: flex;
  justify-content: center;
  background: transparent;
  pointer-events: auto !important;
}

.bar-pro-story__inline-button {
  width: min(100%, 440px);
}

.bar-pro-story__floating-cta {
  position: fixed !important;
  left: 16px !important;
  right: 16px !important;
  bottom: 16px !important;
  z-index: 60 !important;
  width: auto !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  justify-content: center;
  background: transparent !important;
  pointer-events: none !important;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
}

.bar-pro-story__floating-cta.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.bar-pro-story__floating-cta.is-visible .bar-pro-story__floating-button {
  pointer-events: auto !important;
}

@media (min-width: 769px) {
  .bar-pro-story__floating-cta { bottom: 24px !important; }
}

@media (max-width: 768px) {
  .bar-pro-story__inline-cta { padding: 20px 12px 24px; }
  .bar-pro-story__inline-button { width: 100%; max-width: 420px; }
  .bar-pro-story__floating-cta { left: 12px !important; right: 12px !important; bottom: 12px !important; }
  .bar-pro-story__floating-cta .bar-pro-story__floating-button { width: 100%; max-width: 420px; }
}
