/* ===================================
   Modern Payment Calculator Styles
   =================================== */

/* CSS Variables - Clean Design System */
:root {
  --primary: #3b82f6;
  --primary-dark: #2563eb;
  --primary-light: #60a5fa;
  --accent: #10b981;
  --danger: #ef4444;

  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;

  --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

* {
  box-sizing: border-box;
}

/* ===================================
   Hero Section - Modern Design
   =================================== */

.calculator-hero-section {
  height: 75vh !important;
}

/* ===================================
   Main Container
   =================================== */

.modern-calculator {
  padding: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  position: relative;
  margin-top: 24px;
  z-index: 10000;
  background: white;
}
#modernPPACalculateBtnContainer {
  display: flex;
  justify-content: center;
  align-items: center;
}
.modern-calculator-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px 60px;
  position: relative;
  z-index: 2;
}

/* Side-by-side layout for form and results */
.modern-layout {
  display: flex;
  gap: 0;
  align-items: flex-start;
  transition: gap 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-layout.has-results {
  gap: 24px;
}

.modern-calculator-section {
  flex: 1 1 100%;
  max-width: 100%;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* When results are shown, adjust the layout */
.modern-layout.has-results .modern-calculator-section {
  flex: 1 1 62%;
  max-width: 62%;
}

.results-sidebar {
  flex: 0 0 0;
  max-width: 0;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
}

.results-sidebar.show {
  flex: 0 0 34%;
  max-width: 34%;
  opacity: 1;
}

/* ===================================
   Header
   =================================== */

.modern-header {
  text-align: center;
  margin-bottom: 32px;
}

.modern-header h1 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gray-900);
  margin: 0 0 8px;
  letter-spacing: -0.025em;
}

.modern-header p {
  font-size: 1rem;
  color: var(--gray-600);
  margin: 0;
  font-weight: 400;
}

/* ===================================
   Product Toggle
   =================================== */

.modern-toggle-container {
  display: flex;
  justify-content: center;
  margin: 0;
}

.modern-toggle {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  gap: 4px;
  flex-shrink: 0;
  backdrop-filter: blur(10px);
}

.modern-toggle input[type="radio"] {
  display: none;
}

.modern-toggle label {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  background: transparent;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  user-select: none;
  position: relative;
}

.modern-toggle input:checked + label {
  background: white;
  color: #2563eb;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  font-weight: 600;
}

.modern-toggle label:hover {
  color: white;
  background: rgba(255, 255, 255, 0.1);
}

.modern-toggle input:checked + label:hover {
  color: #1d4ed8;
}

/* ===================================
   Main Card
   =================================== */

.modern-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05), 0 2px 4px rgba(0, 0, 0, 0.05);
  border: none;
  overflow: hidden;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.modern-card:hover {
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05), 0 4px 8px rgba(0, 0, 0, 0.08);
}

.modern-card-header {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  padding: 24px;
  border-bottom: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  position: relative;
}

.modern-card-header h2 {
  font-size: 1.25rem;
  font-weight: 600;
  color: white;
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}

.modern-card-header p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-weight: 400;
}

.modern-card-body {
  padding: 24px;
  background: white;
}

/* ===================================
   Form Sections
   =================================== */

.modern-section {
  margin-bottom: 24px;
  padding: 20px;
  background: #f9fafb;
  border-radius: 12px;
  border: 1px solid #f3f4f6;
}

.modern-section:last-child {
  margin-bottom: 0;
}

.modern-section-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #111827;
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.modern-section-title::before {
  content: "";
  width: 3px;
  height: 18px;
  background: linear-gradient(to bottom, #3b82f6, #2563eb);
  border-radius: 2px;
}

/* ===================================
   Form Grid
   =================================== */

.modern-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 0;
}

.modern-form-grid-3 {
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.modern-form-grid-custom {
  display: flex;
  gap: 14px;
  margin-bottom: 0;
  width: 100%;
}

.modern-form-grid-custom > .modern-form-group:first-child {
  width: calc(50% - 8px);
  flex-shrink: 0;
}

.modern-form-grid-custom > .modern-form-group:nth-child(2) {
  width: calc(25% - 11px);
  flex-shrink: 0;
}

.modern-form-grid-custom > .modern-form-group:nth-child(3) {
  width: calc(25% - 11px);
  flex-shrink: 0;
}

.modern-form-grid.single-column {
  grid-template-columns: 1fr;
}

.modern-form-group {
  display: flex;
  flex-direction: column;
}

.modern-form-group.full-width {
  grid-column: 1 / -1;
}

.modern-section-compact {
  margin-block: 24px;
  padding: 20px;
  background: #f9fafb;
  border-radius: 12px;
  border: 1px solid #f3f4f6;
}

.modern-section-compact:last-child {
  margin-bottom: 0;
}

.modern-section-compact .modern-section-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #111827;
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.modern-section-compact .modern-section-title::before {
  content: "";
  width: 3px;
  height: 18px;
  background: linear-gradient(to bottom, #3b82f6, #2563eb);
  border-radius: 2px;
}

.text-red-500 {
  color: #ef4444;
  margin-left: 2px;
}

/* ===================================
   Form Controls
   =================================== */

.modern-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 6px;
  display: block;
}

.modern-input,
.modern-select {
  height: 42px;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  color: #111827;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  transition: all 0.2s ease;
  font-family: inherit;
  width: 100%;
}

.modern-input:hover,
.modern-select:hover {
  border-color: #d1d5db;
}

.modern-input:focus,
.modern-select:focus {
  outline: none;
  background: white;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.modern-input:disabled,
.modern-select:disabled {
  background: #f3f4f6;
  color: #9ca3af;
  cursor: not-allowed;
  border-color: #e5e7eb;
}

.modern-input::placeholder {
  color: #9ca3af;
}

/* Select placeholder styling */
.modern-select option[value=""] {
  color: #9ca3af;
}

.modern-select:invalid {
  color: #9ca3af;
}

.modern-select:valid {
  color: #111827;
}

/* Input with prefix */
.modern-input-wrapper {
  position: relative;
  width: 100%;
}

.modern-input-prefix {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.875rem;
  font-weight: 500;
  color: #6b7280;
  pointer-events: none;
}

.modern-input-wrapper .modern-input {
  padding-left: 32px;
}

/* Range Slider */
.modern-range-wrapper {
  padding: 16px 0;
}

.modern-range {
  width: 100%;
  height: 8px;
  background: var(--gray-200);
  border-radius: 4px;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.modern-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  background: var(--primary);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(30, 64, 175, 0.3);
  transition: all 0.2s ease;
}

.modern-range::-webkit-slider-thumb:hover {
  transform: scale(1.1);
  box-shadow: 0 3px 8px rgba(30, 64, 175, 0.4);
}

.modern-range::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: var(--primary);
  border-radius: 50%;
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 4px rgba(30, 64, 175, 0.3);
  transition: all 0.2s ease;
}

.modern-range-label {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 0.8125rem;
  color: var(--gray-500);
}

.modern-range-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  text-align: center;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

/* ===================================
   Buttons
   =================================== */

.modern-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
  text-decoration: none;
}

.modern-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.modern-btn-primary {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.modern-btn-primary:hover:not(:disabled) {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
  transform: translateY(-2px);
}

.modern-btn-primary:active:not(:disabled) {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.modern-btn-secondary {
  background: white;
  color: #374151;
  border: 1px solid #d1d5db;
}

.modern-btn-secondary:hover:not(:disabled) {
  background: #f9fafb;
  border-color: #9ca3af;
}

.modern-btn-large {
  width: 100%;
  padding: 0.75rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 10px;
}

/* ===================================
   Results Panel
   =================================== */

.modern-results {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.08),
    0 2px 4px -1px rgba(0, 0, 0, 0.04);
  border: 1px solid #e5e7eb;
  overflow: hidden;
}

.modern-results-header {
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  padding: 24px 28px;
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.modern-results-header h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gray-900);
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}

.modern-results-header p {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin: 0;
  font-weight: 400;
}

.modern-results-body {
  padding: 24px 28px;
}

.modern-result-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(226, 232, 240, 0.5);
  transition: all 0.2s ease;
}

.modern-result-item:hover {
  padding-left: 6px;
  padding-right: 6px;
  background: rgba(248, 250, 252, 0.4);
  border-radius: 6px;
}

.modern-result-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.modern-result-item:first-child {
  padding-top: 0;
}

.modern-result-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-600);
}

.modern-result-value {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gray-900);
  letter-spacing: -0.01em;
}

.modern-result-highlight {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  padding: 20px 24px;
  border-radius: 12px;
  margin-bottom: 20px;
  border: 1px solid #bfdbfe;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.08);
}

.modern-result-highlight::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: radial-gradient(
    circle,
    rgba(59, 130, 246, 0.15) 0%,
    transparent 70%
  );
}

.modern-result-highlight .modern-result-label {
  color: var(--primary-dark);
  font-weight: 500;
  font-size: 0.875rem;
}

.modern-result-highlight .modern-result-value {
  color: var(--primary);
  font-size: 1.5rem;
  font-weight: 700;
}

/* ===================================
   Error Messages & Helper Text
   =================================== */

.modern-error {
  font-size: 0.75rem;
  color: #ef4444;
  margin-top: 4px;
  display: none;
}

.modern-error:not(:empty) {
  display: flex;
  align-items: center;
  gap: 4px;
}

.modern-input.error,
.modern-select.error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.modern-helper-text {
  font-size: 0.75rem;
  color: #6b7280;
  margin-top: 4px;
  display: block;
}

/* ===================================
   Loading State
   =================================== */

.modern-loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.modern-btn .modern-loading {
  margin-left: 8px;
}

/* ===================================
   Calculator Button Container
   =================================== */

.calculator-button-container {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.calculator-main-btn {
  flex: 1;
  min-width: 150px;
}

.calculator-demo-btn {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: white;
  padding: 10px 24px;
  border: none;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 6px -1px rgba(59, 130, 246, 0.3);
  transition: all 0.3s ease;
  flex: 1;
  min-width: 150px;
}

.calculator-demo-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px -1px rgba(59, 130, 246, 0.4);
}

/* ===================================
   Responsive Design
   =================================== */

/* Below 1000px: Stack layout for cards and buttons */
@media (max-width: 1000px) {
  .modern-layout {
    flex-direction: column;
  }

  .modern-calculator-section {
    flex: 1 1 100% !important;
    max-width: 100% !important;
    width: 100% !important;
  }

  .modern-layout.has-results .modern-calculator-section {
    flex: 1 1 100% !important;
    max-width: 100% !important;
  }

  .results-sidebar {
    flex: 1 1 100% !important;
    max-width: 100% !important;
    position: relative;
    top: 0;
  }

  .results-sidebar.show {
    flex: 1 1 100% !important;
    max-width: 100% !important;
    position: relative;
    top: 0;
    margin-top: 24px;
    width: 100% !important;
  }

  .calculator-button-container {
    flex-direction: column;
    gap: 10px;
  }

  .calculator-main-btn,
  .calculator-demo-btn {
    width: 100%;
    flex: none;
  }

  /* Form fields full width */
  .modern-form-grid,
  .modern-form-grid-3 {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }

  .modern-form-grid-custom {
    flex-direction: column !important;
    gap: 16px;
  }

  .modern-form-grid-custom > .modern-form-group:first-child,
  .modern-form-grid-custom > .modern-form-group:nth-child(2),
  .modern-form-grid-custom > .modern-form-group:nth-child(3) {
    width: 100% !important;
    flex: 1 1 100% !important;
  }

  .modern-form-group {
    width: 100%;
  }

  .modern-card-header {
    gap: 16px;
  }
}

/* Above 1000px: Side by side layout */
@media (min-width: 1001px) {
  .calculator-main-btn {
    flex: 0 1 auto;
    width: auto;
  }

  .calculator-demo-btn {
    flex: 0 1 auto;
    width: auto;
  }
}

@media (max-width: 768px) {
  .calculator-hero-section {
    height: 60vh !important;
  }

  .modern-calculator {
    margin-top: 32px;
  }

  .modern-calculator-container {
    padding: 0 16px 60px;
  }

  .modern-header h1 {
    font-size: 2rem;
  }

  .modern-header p {
    font-size: 1rem;
  }

  .modern-card-body {
    padding: 20px;
  }

  .modern-form-grid,
  .modern-form-grid-3 {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .modern-form-grid-custom {
    flex-direction: column;
  }

  .modern-form-grid-custom > .modern-form-group:first-child,
  .modern-form-grid-custom > .modern-form-group:nth-child(2),
  .modern-form-grid-custom > .modern-form-group:nth-child(3) {
    flex: 1 1 100%;
  }

  .modern-toggle {
    width: 100%;
  }

  .modern-toggle label {
    padding: 10px 20px;
    font-size: 0.875rem;
    flex: 1;
    text-align: center;
  }

  .modern-result-value {
    font-size: 1.25rem;
  }

  .modern-result-highlight .modern-result-value {
    font-size: 1.5rem;
  }
}

@media (max-width: 580px) {
  .calculator-hero-section {
    height: 50vh !important;
  }

  .modern-calculator {
    margin-top: 24px;
  }

  .modern-calculator-container {
    padding: 0 12px 48px;
  }

  .modern-header h1 {
    font-size: 1.75rem;
  }

  .modern-card-body {
    padding: 20px 16px;
  }

  .modern-toggle {
    flex-direction: column;
    width: 100%;
  }

  .modern-toggle label {
    text-align: center;
  }
}

.text-center {
  text-align: center;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mt-4 {
  margin-top: 16px;
}

.mt-6 {
  margin-top: 24px;
}

/* ===================================
   New Results Summary Card Design
   =================================== */

.result-summary-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.08),
    0 2px 4px -1px rgba(0, 0, 0, 0.04);
  border: 1px solid #e5e7eb;
  overflow: hidden;
}

.result-summary-header {
  padding: 24px 28px;
  border-bottom: 1px solid #e5e7eb;
  background: #2f71f0;
}

.result-summary-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 4px;
  letter-spacing: -0.02em;
}

.result-summary-subtitle {
  font-size: 0.875rem;
  color: #fff;
  margin: 0;
  font-weight: 400;
}

/* PPA Result Cards */
.ppa-result-card {
  border-bottom: 1px solid #e5e7eb;
  padding: 24px 28px;
}

.ppa-result-card:last-child {
  border-bottom: none;
}

.ppa-result-header {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.ppa-rate-badge,
.ppa-escalation-badge {
  flex: 1;
  min-width: 140px;
  background: #f3f4f6;
  padding: 12px 16px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ppa-rate-label,
.ppa-escalation-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ppa-rate-value,
.ppa-escalation-value {
  font-size: 1.125rem;
  font-weight: 700;
  color: #111827;
  letter-spacing: -0.01em;
}

.ppa-result-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ppa-result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
}

.ppa-result-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #6b7280;
}

.ppa-result-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  letter-spacing: -0.01em;
}

/* Prepaid PPA Section Cards */
.prepaid-section-card {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  margin: 16px 24px;
  overflow: hidden;
}

.prepaid-section-card:first-of-type {
  margin-top: 24px;
}

.prepaid-section-card:last-of-type {
  margin-bottom: 24px;
}

.prepaid-section-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: #f9fafb;
  border-bottom: 1px solid #e5e7eb;
}

.prepaid-icon {
  width: 24px;
  height: 24px;
  color: #3b82f6;
  flex-shrink: 0;
}

.prepaid-section-title {
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
  margin: 0;
}

.prepaid-section-body {
  padding: 20px;
  background: white;
}

.prepaid-result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid #f3f4f6;
}

.prepaid-result-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.prepaid-result-row:first-child {
  padding-top: 0;
}

.prepaid-result-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #6b7280;
  max-width: 160px;
}

.prepaid-result-value {
  font-size: 1.125rem;
  font-weight: 700;
  color: #111827;
  letter-spacing: -0.01em;
}

/* Responsive adjustments for new design */
@media (max-width: 768px) {
  .ppa-result-header {
    flex-direction: column;
  }

  .ppa-rate-badge,
  .ppa-escalation-badge {
    min-width: 100%;
  }

  .result-summary-header,
  .ppa-result-card,
  .prepaid-section-body {
    padding: 20px;
  }

  .prepaid-section-card {
    margin: 12px 16px;
  }

  .ppa-result-value,
  .prepaid-result-value {
    font-size: 1.125rem;
  }
}
