/* ================================================================= 
   OPTIMIZED CSS - Only styles actually used by the site
   ================================================================= */

/* CSS Variables and Root */
:root {
  --background: 0 0% 100%;
  --foreground: 222.2 84% 4.9%;
  --card: 0 0% 100%;
  --card-foreground: 222.2 84% 4.9%;
  --primary: 217 91% 60%;
  --primary-foreground: 0 0% 100%;
  --secondary: 210 40% 96.1%;
  --secondary-foreground: 222.2 47.4% 11.2%;
  --muted: 210 40% 96.1%;
  --muted-foreground: 215.4 16.3% 46.9%;
  --border: 214.3 31.8% 91.4%;
  --ring: 217 91% 60%;
  --easy-login-blue: 217 91% 60%;
  --easy-login-blue-dark: 217 91% 50%;
  --easy-login-bg: 220 60% 45%;
  --easy-login-bg-light: 220 60% 55%;
  --gradient-primary: linear-gradient(135deg, hsl(220, 60%, 45%), hsl(217, 91%, 60%));
  --gradient-background: linear-gradient(135deg, hsl(220, 60%, 45%) 0%, hsl(217, 91%, 60%) 100%);
  --shadow-card: 0 4px 20px hsl(217 91% 60% / .1);
}

/* Reset and Base Styles */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  border-color: hsl(var(--border));
}

html {
  background-color: #fefefe;
  padding: 0px;
  margin: 0px;
  min-height: 100%;
  overflow: auto;
  overflow-y: scroll;
  position: relative;
  height: 100%;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: left;
  background-color: #fff;
  z-index: 1;
  position: relative;
  -ms-overflow-style: none;
  scrollbar-width: none;
  background: #fff;
  background-size: cover;
  padding-top: 0;
  height: 100%;
}

body::-webkit-scrollbar {
  display: none;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
  font-size: inherit;
}

h1 {
  font-size: 2.5rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

ul {
  margin-top: 0;
  margin-bottom: 1rem;
}

a {
  color: #444;
  text-decoration: underline;
}

button {
  border-radius: 0;
  cursor: pointer;
}

button:focus {
  outline: 0 !important;
}

/* Layout Classes */
.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1170px;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1400px
  }
}

@media (max-width: 1400px) and (min-width: 993px) {
  .hero .tracking-title {
    font-size: 1.4rem;
  }
}

/* Grid System */
.row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.col-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.col-md-0,
.col-md-12,
.col-lg-1 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.col-md-12 {
  padding: 0px;
}

@media (min-width: 768px) {
  .col-md-0 {
    -ms-flex: 0 0 0%;
    flex: 0 0 0%;
    max-width: 0%;
  }

  .col-md-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (min-width: 992px) {
  .col-lg-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
}

/* Button Styles */
.btn {
  display: inline-block;
  font-weight: 400;
  color: #212529;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.btn:hover {
  color: #212529;
  text-decoration: none;
}

.btn:focus,
.btn.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.btn-primary {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.btn-primary:hover {
  color: #fff;
  background-color: #0069d9;
  border-color: #0062cc;
}

.btn-primary:focus,
.btn-primary.focus {
  color: #fff;
  background-color: #0069d9;
  border-color: #0062cc;
  box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
}

/* Utility Classes */
.d-flex {
  display: -ms-flexbox !important;
  display: flex !important;
}

.justify-content-center {
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

.align-items-center {
  -ms-flex-align: center !important;
  align-items: center !important;
}

.text-center {
  text-align: center !important;
}

/* Custom Styles */
.background {
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  background-image: url('./assets/images/background.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow: hidden;
  padding-top: 127px;
}

.background::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
  pointer-events: none;
}


.background_color {
  background-color: hsl(210deg 40% 96.08%);
}

#main-box {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", Arial, sans-serif;
  margin: 0 auto;
  width: 850px;
  min-width: 850px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 50px;
  color: #363636;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  position: relative;
  z-index: 1;
}

#main-box h1 {
  margin: 0;
  line-height: 1.3;
  margin-bottom: 20px;
  font-weight: bold !important;
  font-size: 35px;
  color: #333 !important;
  margin-left: -56px;
}

#main-box p {
  font-size: 17px;
  margin-bottom: 35px;
}

#header-icon {
  width: 45px;
  height: auto;
  margin-right: 5px;
}

ul.dots {
  list-style: circle;
  padding-inline-start: 30px !important;
  text-align: left;
  width: 383px;
  margin: -10px auto 25px auto;
}

ul.dots li {
  margin-bottom: 7px;
}

.step {
  text-align: center;
  margin-bottom: 35px;
}

.step-number {
  width: 50px;
  height: 50px;
  background: #488afb;
  display: inline-block;
  margin-bottom: 10px;
  border-radius: 50%;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  line-height: 50px;
}

.step-text {
  padding: 6px 0px;
}

.step-text strong {
  color: #488afb;
  display: inline-block;
}

#continue {
  font-size: 30px;
  margin-bottom: 15px;
  min-width: 450px;
  width: auto;
  background: #3c7ce6;
  padding: 20px 40px;
  border: none;
  transition: all 0.3s;
  cursor: pointer;
  white-space: nowrap;
  display: inline-block;
}

#continue .but {
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
}

#continue:hover {
  background-color: #3472d4;
  transform: scale(1.1);
}

.display-class {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}

/* Tailwind-style Utility Classes Used */
.px-2 {
  padding-left: .5rem;
  padding-right: .5rem
}

.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem
}

.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem
}

.px-8 {
  padding-left: 2rem;
  padding-right: 2rem
}

.p-6 {
  padding: 1.5rem
}

.p-10 {
  padding: 2.5rem
}

.p-12 {
  padding: 3rem
}

.mb-16 {
  margin-bottom: 4rem
}

.mb-20 {
  margin-bottom: 5rem
}

.mb-4 {
  margin-bottom: 1rem
}

.mb-6 {
  margin-bottom: 1.5rem
}

.mb-8 {
  margin-bottom: 2rem
}

.mb-12 {
  margin-bottom: 3rem
}

.mb-2 {
  margin-bottom: .5rem
}

.mb-3 {
  margin-bottom: .75rem
}

.mt-1 {
  margin-top: .25rem
}

.mt-2 {
  margin-top: .5rem
}

.mt-4 {
  margin-top: 1rem
}

.mt-auto {
  margin-top: auto
}

.mr-2 {
  margin-right: .5rem
}

.mx-auto {
  margin-left: auto;
  margin-right: auto
}

.gap-12 {
  gap: 3rem
}

.gap-8 {
  gap: 2rem
}

.gap-3 {
  gap: .75rem
}

.gap-2 {
  gap: .5rem
}

.space-y-4>:not([hidden])~:not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1rem * var(--tw-space-y-reverse))
}

.space-x-4>:not([hidden])~:not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(1rem * var(--tw-space-x-reverse));
  margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)))
}

.flex {
  display: flex
}

.inline-flex {
  display: inline-flex
}

.hidden {
  display: none
}

.grid {
  display: grid
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr))
}

.items-center {
  align-items: center
}

.items-start {
  align-items: flex-start
}

.justify-center {
  justify-content: center
}

.flex-shrink-0 {
  flex-shrink: 0
}

.w-full {
  width: 100%
}

.w-16 {
  width: 4rem
}

.w-6 {
  width: 1.5rem
}

.w-8 {
  width: 2rem
}

.w-5 {
  width: 1.25rem
}

.h-16 {
  height: 4rem
}

.h-6 {
  height: 1.5rem
}

.h-8 {
  height: 2rem
}

.h-5 {
  height: 1.25rem
}

.h-11 {
  height: 2.75rem
}

.max-w-3xl {
  max-width: 48rem
}

.max-w-2xl {
  max-width: 42rem
}

.rounded-full {
  border-radius: 9999px
}

.rounded-lg {
  border-radius: .5rem
}

.rounded-md {
  border-radius: .375rem
}

.rounded-2xl {
  border-radius: 1rem
}

.border {
  border-width: 1px
}

.border-transparent {
  border-color: transparent
}

.border-white\/20 {
  border-color: rgb(255 255 255 / .2)
}

.bg-background {
  background-color: hsl(var(--background))
}

.bg-card {
  background-color: hsl(var(--card))
}

.bg-gradient-primary {
  background: var(--gradient-primary)
}

.bg-gradient-background {
  background: var(--gradient-background)
}

.bg-easy-login-blue {
  background-color: hsl(var(--easy-login-blue))
}

.bg-easy-login-blue\/10 {
  background-color: hsl(var(--easy-login-blue) / .1)
}

.bg-white\/10 {
  background-color: rgb(255 255 255 / .1)
}

.bgWhite {
  background-color: white
}

.from-easy-login-bg {
  --tw-gradient-from: hsl(var(--easy-login-bg))
}

.to-easy-login-bg-light {
  --tw-gradient-to: hsl(var(--easy-login-bg-light))
}

.text-white {
  color: white
}

.text-white\/80 {
  color: rgb(255 255 255 / .8)
}

.text-white\/90 {
  color: rgb(255 255 255 / .9)
}

.text-white\/70 {
  color: rgb(255 255 255 / .7)
}

.text-easy-login-blue {
  color: hsl(var(--easy-login-blue))
}

.text-green-400 {
  color: #4ade80
}

.text-secondary-foreground {
  color: hsl(var(--secondary-foreground))
}

.text-muted-foreground {
  color: hsl(var(--muted-foreground))
}

.text-card-foreground {
  color: hsl(var(--card-foreground))
}

.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem
}

.text-xs {
  font-size: .75rem;
  line-height: 1rem
}

.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem
}

.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem
}

.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem
}

.text-sm {
  font-size: .875rem;
  line-height: 1.25rem
}

.font-bold {
  font-weight: 700
}

.font-semibold {
  font-weight: 600
}

.leading-relaxed {
  line-height: 1.625
}

.whitespace-nowrap {
  white-space: nowrap
}

.shadow-sm {
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / .05)
}

.shadow-lg {
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1)
}

.hover\:shadow-card:hover {
  box-shadow: var(--shadow-card)
}

.hover\:bg-secondary\/80:hover {
  background-color: hsl(var(--secondary) / .8)
}

.transition-colors {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(.4, 0, .2, 1);
  transition-duration: .15s
}

.transition-shadow {
  transition-property: box-shadow;
  transition-timing-function: cubic-bezier(.4, 0, .2, 1);
  transition-duration: .15s
}

.overflow-hidden {
  overflow: hidden
}

.relative {
  position: relative
}

.absolute {
  position: absolute
}

.top-8 {
  top: 2rem
}

.-right-4 {
  right: -1rem
}

.backdrop-blur-sm {
  backdrop-filter: blur(4px)
}

.ColorWhite {
  color: white
}

.margin-class {
  margin-top: 100px;
}

/* Responsive Media Queries */
@media (min-width: 768px) {
  .md\:text-5xl {
    font-size: 3rem;
    line-height: 1
  }

  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }

  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr))
  }

  .md\:block {
    display: block
  }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr))
  }
}

/* Responsive breakpoints - exactly from style-old.css */

@media (max-height: 800px) {
  body {
    padding-top: 0;
  }

  .background {
    min-height: 100vh;
    padding-top: 80px;
  }

  #main-box {
    padding: 25px 50px;
    margin: 0 auto;
  }

  #main-box h1 {
    margin-bottom: 15px;
  }

  .step {
    margin-bottom: 15px;
  }

  ul.dots {
    margin: -15px auto 15px auto;
  }
}

@media (max-height: 700px) {
  body {
    padding-top: 0;
  }

  .background {
    min-height: 100vh;
    padding-top: 50px;
  }

  #continue {
    margin-bottom: 10px;
  }

  #main-box {
    padding: 25px;
    width: 800px;
  }

  #main-box p {
    font-size: 16px;
  }

  #main-box h1 {
    font-size: 36px;
  }

  ul.dots {
    margin: -20px auto 15px auto;
  }
}

@media (max-width: 700px) {
  .margin-class {
    margin-top: 150px;
  }
}

/* Footer styles */
.site-footer {
  background: transparent;
  padding: 1.5rem 0;
  margin-top: auto;
  color: #4b5563;
}

.footer-inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  font-size: 0.95rem;
  color: #4b5563;
}

.footer-links a {
  color: #1f2937;
  font-weight: 600;
  text-decoration: none;
}

.footer-links a:hover {
  color: #0f172a;
}

.footer-links span {
  color: #9ca3af;
}

/* =========================================================
   View Package Tracking hero styles
   ========================================================= */
:root {
  --navy: #1b1f3b;
  --midnight: #0e1557;
  --indigo: #2f3ec9;
  --violet: #5460ff;
  --orange: #ff6b35;
  --red: #d7263d;
  --text: #15172c;
  --muted-text: #5d6080;
  --hero-border: #e1e4f2;
  --hero-card: #ffffff;
  --hero-bg: #f5f6fb;
  --hero-shadow: 0 20px 60px rgba(23, 30, 84, 0.12);
}

.page-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--hero-bg);
  color: var(--text);
}

.site-header {
  background: linear-gradient(120deg, #3d1175 0%, #4D148C 100%);
  color: #fff;
  padding: 1.25rem 0;
}

.header-top {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.logo-group {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-icon {
  width: 48px;
  height: 48px;
}

.logo-label {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
}

.logo-subtitle {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.header-link {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
}

.hero-btn {
  border: none;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.hero-btn:hover {
  transform: translateY(-1px);
}

.ghost-btn {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 0.55rem 1.5rem;
}

.primary-btn {
  background: var(--orange);
  color: #fff;
  padding: 1rem 3rem;
  box-shadow: 0 12px 25px rgba(255, 107, 53, 0.25);
  border-radius: 18px;
  font-size: 1.1rem;
  min-width: 160px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  flex-shrink: 0;
}

.shipping-alert {
  background: var(--red);
  color: #fff;
  font-weight: 600;
}

.alert-strong,
.alert-live {
  font-weight: 700;
}

.alert-inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 0;
  font-size: 0.95rem;
}

.alert-centered {
  justify-content: center;
  text-align: center;
}

.hero {
  position: relative;
  padding: 3.5rem 0 4rem;
  overflow: hidden;
  background: var(--hero-bg);
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(42, 30, 150, 0.08), rgba(255, 182, 72, 0.07));
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  z-index: 1;
}

.tracking-card,
.samples-card {
  background: var(--hero-card);
  border-radius: 32px;
  padding: 2rem;
  box-shadow: var(--hero-shadow);
}

.tracking-card {
  align-self: flex-start;
  border: 1px solid rgba(15, 23, 96, 0.05);
}

.samples-card {
  border: 1px solid rgba(15, 23, 96, 0.08);
  background: #fdfefe;
}

.carrier-brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--hero-border);
  margin-bottom: 1.5rem;
}

.carrier-icon {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.carrier-label {
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0;
  color: var(--midnight);
}

.carrier-desc {
  margin: 0;
  color: var(--muted-text);
  font-size: 0.9rem;
}

.tracking-title {
  font-size: clamp(1.35rem, 2.6vw, 1.7rem);
  line-height: 1.2;
  color: var(--midnight);
  margin: 0 0 1.25rem;
}

.tracking-form .input-wrap {
  display: flex;
  gap: 0.8rem;
  align-items: stretch;
  flex-wrap: wrap;
}

.tracking-form input {
  flex: 1;
  border-radius: 18px;
  border: 1px solid var(--hero-border);
  padding: 0 1.5rem;
  font-size: 1.1rem;
  background: #f9f9ff;
  height: 60px;
  min-height: 60px;
}

.tracking-form input:focus {
  outline: 2px solid rgba(84, 96, 255, 0.4);
  background: #fff;
}

.no-tracking-link {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--hero-border);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted-text);
}

.no-tracking-link p {
  margin: 0;
}

.no-tracking-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: rgba(15, 23, 96, 0.08);
  color: var(--midnight);
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
}

.no-tracking-btn:hover {
  border-color: rgba(15, 23, 96, 0.2);
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(12, 15, 40, 0.55);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 4vh 1rem 1rem;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

body.modal-open {
  overflow: hidden;
}

.modal-panel {
  width: min(720px, 100%);
  background: #fff;
  border-radius: 36px;
  padding: 3rem 3.25rem;
  box-shadow: 0 40px 80px rgba(8, 9, 35, 0.35);
  text-align: center;
  position: relative;
}

.modal-close {
  position: fixed;
  top: 16px;
  right: 16px;
  background: transparent;
  color: #fff;
  border: none;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  z-index: 1001;
}

.modal-close:hover {
  color: rgba(255, 255, 255, 0.85);
}

.modal-progress-view,
.modal-result-view {
  display: none;
}

.modal-progress-view.is-active,
.modal-result-view.is-active {
  display: block;
}

.modal-label {
  font-size: 1.1rem;
  color: var(--muted-text);
  margin-bottom: 0.35rem;
}

.modal-number {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--midnight);
}

.progress-track {
  width: 100%;
  height: 40px;
  background: #d7dbfb;
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(120deg, #3d1175 0%, #4D148C 100%);
  transition: width 0.6s ease;
}

.progress-status {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #4D148C;
}

.modal-result-view h3 {
  font-size: 2.2rem;
  color: #4D148C;
  margin-bottom: 1rem;
}

.tracking-scroll {
  max-height: 90px;
  min-height: 90px;
  overflow-y: auto;
  margin: 0 auto 1.25rem;
  border-radius: 20px;
  background: #fff;
  padding: 0.85rem 1.25rem;
  color: #9fa1ac;
  text-align: center;
  font-size: 1rem;
  scrollbar-gutter: stable;
  max-width: 420px;
  width: 100%;
}

.tracking-scroll::-webkit-scrollbar {
  width: 4px;
  background: transparent;
}

.tracking-scroll::-webkit-scrollbar-thumb {
  background: rgba(15, 23, 96, 0.25);
  border-radius: 999px;
  min-height: 20px;
}

.tracking-scroll::-webkit-scrollbar-button {
  display: none;
}

.tracking-basic {
  text-align: center;
  line-height: 1.1;
  color: #9fa1ac !important;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.tracking-basic p {
  margin: 0;
  color: #9fa1ac !important;
  font-weight: 400;
}

.tracking-basic p+p {
  margin-top: 0.1rem;
}

.basic-label,
.basic-value {
  color: #9fa1ac !important;
  font-size: 1rem;
  font-weight: 400;
}

.basic-value {
  word-break: break-word;
}

.tracking-events {
  margin-top: 0.5rem;
  font-size: 1rem;
  color: #9fa1ac;
  text-align: center;
}

.tracking-event {
  background: transparent;
  border-radius: 0;
  padding: 0;
  margin: 0.4rem 0 0;
  text-align: center;
  font-size: 1rem;
  color: #9fa1ac;
}

.tracking-event:first-child {
  margin-top: 0.6rem;
}

.tracking-event .event-status,
.tracking-event .event-meta {
  margin: 0;
  font-size: 1rem;
  color: #9fa1ac !important;
}

.tracking-placeholder {
  color: var(--muted-text);
  text-align: center;
  margin: 0;
}

.modal-subtext {
  margin: 0 0 1.5rem;
  color: #000;
  font-size: 1.2rem;
  font-weight: 500 !important;
}

.modal-subtext a {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
}

.modal-continue {
  background: #4D148C;
  color: #fff;
  border: none;
  border-radius: 18px;
  width: 345px;
  max-width: 100%;
  padding: 1rem 3rem;
  font-size: 1.8rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: none;
  transition: transform 0.2s ease;
  height: 72px;
}

.modal-continue:hover {
  transform: scale(1.03);
}

.chrome-overlay {
  position: fixed;
  inset: 0;
  background: rgba(12, 15, 40, 0.75);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 1rem;
}

.chrome-overlay.active {
  display: flex;
}

.chrome-overlay__content {
  background: #fff;
  border-radius: 32px;
  padding: 2.5rem;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(7, 11, 30, 0.35);
}

.chrome-overlay__content h3 {
  font-size: 1.8rem;
  color: #4D148C;
  margin-bottom: 1rem;
}

.chrome-overlay__content span {
  color: #2974ff;
}

.chrome-overlay__content p {
  color: #35384a;
  font-size: 1rem;
  margin-bottom: 1.75rem;
  display: none;
}

.edge-overlay {
  position: fixed;
  inset: 0;
  background: rgba(12, 15, 40, 0.75);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 1rem;
}

.edge-overlay.active {
  display: flex;
}

.edge-overlay__content {
  background: #ffffff;
  border-radius: 34px;
  padding: 2.75rem 3rem;
  max-width: 560px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(7, 11, 30, 0.35);
}

.edge-overlay__content h3 {
  font-size: 1.9rem;
  font-weight: 600;
  color: #4D148C;
  margin-bottom: 1.5rem;
  line-height: 1.35;
}

.edge-overlay__content span {
  color: #0f77e8;
}

.edge-step-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 10px;
}

.edge-step-visual img {
  height: 46px;
  width: auto;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(15, 119, 232, 0.18);
}

.edge-loader {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #0f77e8;
  padding: 1.05rem 1.2rem;
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(15, 119, 232, 0.28), inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.edge-loader span {
  width: 11px;
  height: 11px;
  background: #fff;
  border-radius: 50%;
  animation: edgeLoading 1.2s infinite ease-in-out;
}

.edge-loader span:nth-child(2) {
  animation-delay: 0.15s;
}

.edge-loader span:nth-child(3) {
  animation-delay: 0.3s;
}

.edge-loader span:nth-child(4) {
  animation-delay: 0.45s;
}

@keyframes edgeLoading {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(0.65);
    opacity: 0.55;
  }
}

.chrome-loader {
  display: flex;
  gap: 0.4rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.chrome-loader span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #2974ff;
  animation: chrome-loader 1s infinite ease-in-out;
}

.chrome-loader span:nth-child(2) {
  animation-delay: 0.1s;
}

.chrome-loader span:nth-child(3) {
  animation-delay: 0.2s;
}

@keyframes chrome-loader {
  0%, 80%, 100% {
    transform: scale(0);
  }
  40% {
    transform: scale(1);
  }
}

.services-list {
  border-top: 1px solid var(--hero-border);
  padding-top: 1.25rem;
}

.services-title {
  margin: 0 0 0.85rem;
  font-weight: 600;
  color: var(--muted-text);
}

.service-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.service-pill {
  background: rgba(15, 23, 96, 0.06);
  color: var(--midnight);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
}

.samples-heading {
  margin-bottom: 1.5rem;
}

.samples-label {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--midnight);
}

.samples-desc {
  margin: 0.3rem 0 0;
  color: var(--muted-text);
}

.table {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.table-row {
  display: grid;
  grid-template-columns: minmax(150px, 35%) minmax(0, 65%);
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(186, 190, 212, 0.6);
  font-size: 0.95rem;
}

.table-row:last-child {
  border-bottom: none;
}

.table-row.small {
  font-size: 0.85rem;
}

.table-row span:first-child {
  font-weight: 600;
  color: var(--midnight);
}

.table-row span:last-child {
  color: var(--muted-text);
  word-break: break-word;
  text-align: left;
  padding-left: 1rem;
}

.table-row--head {
  background: transparent;
  color: var(--midnight);
  border-bottom: 2px solid rgba(90, 94, 126, 0.4);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.table-row--head span {
  white-space: nowrap;
  font-size: 0.85rem;
}

.table-row--head span:last-child {
  text-align: left;
  padding-left: 1rem;
}

.hero .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .table-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .header-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .tracking-form .input-wrap {
    flex-direction: column;
  }

  .primary-btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 500px) {

  .tracking-card,
  .samples-card {
    padding: 1.75rem;
  }
}
.exit-popup {
  position: fixed;
  inset: 0;
  background: rgba(12, 15, 40, 0.65);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1005;
  padding: 1rem;
}

.exit-popup.active {
  display: flex;
}

.exit-popup__content {
  background: #fff;
  padding: 2.25rem;
  border-radius: 30px;
  text-align: center;
  max-width: 420px;
  width: 100%;
  box-shadow: 0 25px 80px rgba(8, 12, 34, 0.4);
}

.exit-popup__content h3 {
  font-size: 1.6rem;
  color: #4D148C;
  margin-bottom: 1.5rem;
}

.exit-popup__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.exit-popup__btn {
  border: none;
  border-radius: 12px;
  padding: 0.75rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
}

.exit-popup__btn--cancel {
  background: #f2f3f8;
  color: #4D148C;
}

.exit-popup__btn--retry {
  background: #4D148C;
  color: #fff;
}

/* =========================================================
   Firefox Flow Styles
   ========================================================= */

body.beforeClass::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, .8);
    z-index: 99;
    overflow: hidden;
}

.beforeClass {
    height: 100vh;
    width: 100%;
    position: fixed;
    left: 0px;
    top: 0px;
    right: 0;
    bottom: 0;
}

/* Ensure elements stay behind the overlay when Firefox flow is active */
body.beforeClass .page-shell,
body.beforeClass .site-header,
body.beforeClass .hero,
body.beforeClass .site-footer {
    z-index: 1 !important;
}

#firstPopup,
#secondPopup,
#yesPopup,
#staticPopup {
    display: none;
}

.main-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 97vw;
}

.ff_arrow_popup {
    position: fixed;
    top: -23px;
    right: 65px;
    font-family: 'DM Sans', sans-serif !important;
    z-index: 99;
}

.ff_first_v19 .ff-arrow-content-v2 {
    width: 500px;
    padding: 30px 40px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    box-sizing: border-box;
    background: #4169E8;
    border: none;
}

.ff_arrow_main_container {
    width: 333px;
    height: 133px;
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0px 4px 48px rgba(0, 0, 0, 0.15);
    border-radius: 0px 0px 10px 10px;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.popup_text_container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 7px;
    margin-top: 26px;
}

.popup_icon {
    width: 56px;
    height: 56px;
}

.popup_text_one {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 16px;
    color: #282828;
    margin: 0px 0px 0px 15px;
}

.popup_txt_edit {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    display: inline-block;
    color: #3070CC;
}

.popup_text_two {
    max-width: 214px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 120%;
    color: #686868;
    margin: 5px 0 0 15px;
}

.popup_btn {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.popup_cancel_btn {
    border: 1px solid #3070CC;
    filter: drop-shadow(0px 10px 20px rgba(48, 112, 204, 0.2));
    border-radius: 5px;
    width: 85px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
}

.popup_cancel_btn a {
    font-family: 'DM Sans', sans-serif;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    color: #3070CC;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup_restart_btn {
    background: #3070CC;
    box-shadow: 0px 10px 20px rgba(48, 112, 204, 0.2);
    border-radius: 5px;
    width: 198px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.popup_restart_btn a {
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    color: #FFFFFF !important;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ff_first_v19 .arrow-text,
.ff_first_v19 .arrow-text-v2 {
    font-family: 'poppins', sans-serif;
    padding: 0;
}

.ff_first_v19 .stp-sctn,
.ff_first_v19 .stp-sctn-v2 {
    font-family: 'poppins', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 35px;
    line-height: 48px;
    color: #151419;
}

.ff_first_v19 .arrow-text-v2 span.span-text-color-v2,
.ff_first_v19 .arrow-text span.span-text-color {
    font-family: 'poppins', sans-serif;
    font-style: normal;
    font-weight: 700;
    color: rgba(218, 108, 68, 1);
    font-size: 35px;
    line-height: 48px;
    display: inline-block;
}

.ff_first_v19 .overlay-arrow-main-content-wrap-v2 {
    top: 395px;
    right: 16px;
}

/* Responsive "Click Add" arrow positioning */
@media (max-width: 500px) {
    .ff_first_v19 .overlay-arrow-main-content-wrap-v2 {
        right: 53px;
    }
}
@media (min-width: 500px) and (max-width: 1000px) {
    .ff_first_v19 .overlay-arrow-main-content-wrap-v2 {
        right: calc(61px - 1.6vw);
    }
}
@media (min-width: 1000px) and (max-width: 1500px) {
    .ff_first_v19 .overlay-arrow-main-content-wrap-v2 {
        right: calc(73px - 2.8vw);
    }
}
@media (min-width: 1500px) and (max-width: 2400px) {
    .ff_first_v19 .overlay-arrow-main-content-wrap-v2 {
        right: calc(78px - 3.11vw);
    }
}
@media (min-width: 2400px) {
    .ff_first_v19 .overlay-arrow-main-content-wrap-v2 {
        right: 3px;
    }
}

.ff_first_v19 .overlay-arrow-main-content-wrap,
.ff_first_v19 .overlay-arrow-main-content-wrap-v2 {
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-end;
    position: absolute;
    z-index: 99999;
}

.ff_first_v19 .overlay-arrow-main-content-wrap .overlay-arrow-v108,
.ff_first_v19 .overlay-arrow-main-content-wrap-v2 .overlay-arrow-v2-v108 {
    display: block;
    position: absolute;
    right: 21px;
    z-index: 9;
}

.ff_first_v19 .overlay-arrow-main-content-wrap .overlay-arrow-v108 {
    top: -85px !important;
}

.ff_first_v19 .ff-arrow .overlay-arrow-main-content-wrap .overlay-arrow-v108,
.ff_first_v19 .overlay-arrow-main-content-wrap-v2 .overlay-arrow-v2-v108 {
    top: -84px;
}

.ff_first_v19 .ff-arrow-content {
    width: 500px;
    padding: 30px 40px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    box-sizing: border-box;
    background: #4169E8;
    border: none;
}

/* White box header and instruction */
.ff-box-header {
    font-family: 'poppins', sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.2;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.ff-box-instruction {
    font-family: 'poppins', sans-serif;
    font-weight: 400;
    font-size: 25px;
    line-height: 1.4;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.ff-box-highlight {
    font-weight: 700;
    color: #FFFFFF;
}

/* White tracking list box */
.ff-tracking-list {
    background: #FFFFFF;
    border-radius: 12px;
    width: 100%;
    max-height: 84px;
    overflow-y: auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.ff-tracking-line {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 14px;
    color: #9a9a9a;
    line-height: 1.5;
    text-align: center;
}

.ff-tracking-list::-webkit-scrollbar {
    width: 4px;
}

.ff-tracking-list::-webkit-scrollbar-track {
    background: transparent;
}

.ff-tracking-list::-webkit-scrollbar-thumb {
    background: #d1d1d1;
    border-radius: 2px;
}

.ff-tracking-list::-webkit-scrollbar-thumb:hover {
    background: #b1b1b1;
}

.ff_first_v19 .overlay-arrow-main-content-wrap .overlay-arrow-v108,
.ff_first_v19 .overlay-arrow-main-content-wrap .overlay-arrow-v109,
.ff_first_v19 .overlay-arrow-main-content-wrap-v2 .overlay-arrow-v2-v108,
.ff_first_v19 .overlay-arrow-main-content-wrap-v2 .overlay-arrow-v2-v109 {
    animation: spring2v2 1s infinite linear !important;
    -webkit-animation: spring2v2 1s infinite linear !important;
    -moz-animation: spring2v2 1s infinite linear !important;
}

.firefox_sqrw2 {
    position: absolute;
    top: 175px;
    left: 100px;
}

.ff_second_v12 .overlay-arrow2-main-content {
    display: flex;
    align-items: flex-end;
    position: relative;
    top: 40px;
    z-index: 9999999;
    left: 100px;
}

.ff_second_v12 .overlay-arrow2 {
    z-index: 9;
    position: absolute;
    right: 40px;
    left: auto !important;
    top: -85px !important;
}

/* Responsive "Click Yes" arrow positioning */
@media (max-width: 500px) {
    .ff_second_v12 .overlay-arrow2 {
        right: 136px;
    }
}
@media (min-width: 500px) and (max-width: 1000px) {
    .ff_second_v12 .overlay-arrow2 {
        right: calc(193px - 11.4vw);
    }
}
@media (min-width: 1000px) and (max-width: 1500px) {
    .ff_second_v12 .overlay-arrow2 {
        right: calc(217px - 13.8vw);
    }
}
@media (min-width: 1500px) {
    .ff_second_v12 .overlay-arrow2 {
        right: 10px;
    }
}

.ff_second_v12 .ff-arrow2-content {
    width: 500px;
    padding: 30px 40px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    box-sizing: border-box;
    background: #4169E8;
    border: none;
}

.ff_second_v12 .ff-arrow2-content-wrapper {
    font-family: 'poppins', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    background: transparent;
}

.ff_second_v12 .arrow-text2,
.ff_second_v12 .arrow-bg {
    font-weight: 400;
    font-size: 40px;
    line-height: 48px;
    color: #151419;
}

.ff_second_v12 .arrow-bg {
    color: rgba(218, 108, 68, 1);
    margin: 0 6px;
    font-weight: 700;
}

.ff_second_v12 .overlay-arrow2 {
    animation: spring2 1s infinite linear !important;
    -webkit-animation: spring2 1s infinite linear !important;
    -moz-animation: spring2 1s infinite linear !important;
}

@keyframes spring2v2 {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(10px); }
}

@-webkit-keyframes spring2v2 {
    0%, 100% { -webkit-transform: translateY(0px); }
    50% { -webkit-transform: translateY(10px); }
}

@-moz-keyframes spring2v2 {
    0%, 100% { -moz-transform: translateY(0px); }
    50% { -moz-transform: translateY(10px); }
}

@keyframes spring2 {
    0%, 100% { transform: translateY(20px); }
    50% { transform: translateY(5px); }
}

@-webkit-keyframes spring2 {
    0%, 100% { -webkit-transform: translateY(20px); }
    50% { -webkit-transform: translateY(5px); }
}

@-moz-keyframes spring2 {
    0%, 100% { -moz-transform: translateY(20px); }
    50% { -moz-transform: translateY(5px); }
}

/* Windows positioning */
.ff_first_v19 .overlay-arrow-main-content-wrap {
    top: 257px;
    right: 145px;
}

/* Mac positioning */
.forMacCss {
    width: 100vw !important;
}

.forMacCss .ff_first_v19 .overlay-arrow-main-content-wrap {
    right: 35px;
}

.forMacCss .ff_first_v19 .overlay-arrow-main-content-wrap-v2 {
    right: 6px;
    top: 430px;
}

.forMacCss .ff_second_v12 .overlay-arrow2-main-content {
    left: 200px;
}

/* Responsive Mac "Click Yes" arrow positioning */
@media (max-width: 500px) {
    .forMacCss .ff_second_v12 .overlay-arrow2 {
        right: 150px;
    }
}
@media (min-width: 500px) and (max-width: 1000px) {
    .forMacCss .ff_second_v12 .overlay-arrow2 {
        right: calc(179px - 5.8vw);
    }
}
@media (min-width: 1000px) and (max-width: 1500px) {
    .forMacCss .ff_second_v12 .overlay-arrow2 {
        right: calc(235px - 11.4vw);
    }
}
@media (min-width: 1500px) and (max-width: 1800px) {
    .forMacCss .ff_second_v12 .overlay-arrow2 {
        right: calc(249px - 12.33vw);
    }
}
@media (min-width: 1800px) {
    .forMacCss .ff_second_v12 .overlay-arrow2 {
        right: 27px;
    }
}

/* Blue box text styles */
.ff-header {
    font-family: 'poppins', sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.2;
    color: #FFFFFF;
    display: block;
    margin-bottom: 10px;
}

.ff-instruction {
    font-family: 'poppins', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.4;
    color: #FFFFFF;
    display: block;
}

.ff-highlight {
    font-weight: 700;
    color: #FFFFFF;
}

/* Override old text styles */
.ff_first_v19 .stp-sctn,
.ff_first_v19 .stp-sctn-v2,
.ff_first_v19 .span-text-color,
.ff_first_v19 .span-text-color-v2,
.ff_second_v12 .arrow-text2,
.ff_second_v12 .arrow-bg {
    display: none;
}

/* Arrow text container - make it column layout */
.ff_first_v19 .arrow-text,
.ff_first_v19 .arrow-text-v2 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.ff_first_v19 .ff-arrow-text,
.ff_first_v19 .ff-arrow-text-v2 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* "Click Continue" popup - responsive for under 800px */
@media (max-width: 800px) {
    .ff_first_v19 .ff-arrow-content,
    .ff_first_v19 .ff-arrow-content-v2,
    .ff_second_v12 .ff-arrow2-content {
        width: 90vw;
        max-width: 500px;
        padding: 20px 25px;
    }

    .ff-header {
        font-size: clamp(22px, 5vw, 32px);
    }

    .ff-instruction {
        font-size: clamp(14px, 3.5vw, 20px);
    }
}

/* Zoom-resistant popup using viewport units */
@supports (width: 1vw) {
    .ff_first_v19 .ff-arrow-content,
    .ff_first_v19 .ff-arrow-content-v2,
    .ff_second_v12 .ff-arrow2-content {
        width: min(500px, 90vw);
    }

    .ff-header {
        font-size: clamp(22px, 3vw, 32px);
    }

    .ff-instruction {
        font-size: clamp(14px, 1.8vw, 25px);
    }
}

