<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
.title {
  color: #cb2027;
  text-align: center;
}

.container__payment{
  max-width: 1000px;
  margin: 0 auto;
}

.card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  margin-bottom: 2rem;
}

.guarantee-banner {
  background: #0066cc;
  color: white;
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.guarantee-icon {
  background: white;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.guarantee-icon svg {
  width: 28px;
  height: 28px;
  color: #0066cc;
}

.guarantee-content h2 {
  color:white!important;
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.guarantee-content p {
  margin: 0;
  opacity: 0.9;
}

.email-display {
  background: #f8f9fa;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.email-enter {
  background: #f8f9fa;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.email-display .email {
  font-weight: 700;
max-width: 100%; /* Limit width */
display: inline-block;
overflow: hidden;
text-overflow: ellipsis; /* Add ellipsis for long text */
white-space: nowrap;
vertical-align: bottom;
}

.email-display a {
  color: #cb2027;
  text-decoration: none;
  font-size: 0.9rem;
}

.payment-tabs {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid #e1e1e1;
  padding-bottom: 1rem;
}

.payment-tab {
  flex: 1;
  padding: 1rem;
  border: 2px solid #e1e1e1;
  border-radius: 8px;
  background: white;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s ease;
}
.payment-icon {
  margin-right: 5px;
}
.payment-tab.active {
  border-color: #cb2027;
  background: #e8f0fe;
}

.plan-options {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

.plan-option {
  border: 2px solid #e1e1e1;
  border-radius: 8px;
  padding: 1.25rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.2s ease;
}

.plan-option-pp {
  border: 2px solid #e1e1e1;
  border-radius: 8px;
  padding: 1.25rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.2s ease;
}

.payment-tab:hover {
  border-color: #cb2027;
}
.plan-option:hover {
  border-color: #cb2027;
}

.plan-option.selected {
  border-color: #cb2027;
  background: #e8f0fe;
}

.plan-option-pp:hover {
  border-color: #cb2027;
}

.plan-option-pp.selected {
  border-color: #cb2027;
  background: #e8f0fe;
}

.plan-price {
  font-size: 1.25rem;
  font-weight: 600;
}

.discount-badge {
  background: #cb2027;
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.875rem;
  margin-left: 0.5rem;
}

.discount-badge-lifetime {
  background: #0066cc;
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.875rem;
}

.original-price {
  text-decoration: line-through;
  color: #666666;
  font-size: 0.875rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group-check {
  margin-bottom: 1.5rem;
}

.form-group-check label {
  margin-left: 0.3rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.StripeElement {
  display: block;
  width: 100%;
  height: calc(1.6em + 1rem + 2px);
  padding: 0.5rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 2px solid #e1e1e1;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.StripeElement.is-focused {
  border-color: #cb2027;
  outline: none;
}

.StripeElement--invalid {
  border-color: #cb2027;
}
/* Base style for the error popups */
.hide-errors {
  color: red;
  font-size: 12px;
  margin-top: 5px;
  display: none; /* Hidden by default */
}

.popup-active {
  display: block; /* Show popup when active */
}

/* Optional: Add animations for the popup */
.hide-errors.popup-active {
  animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.StripeElement iframe {
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  display: block !important;
  transform: none !important;
}

.form-control {
  width: 100%;
  border: 2px solid #e1e1e1;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.2s ease;
  outline: none; 
}

.form-control:focus {
  border-color: #cb2027;
  outline: none;
  box-shadow: none;
}


.form-control-check {
  border: 2px solid #e1e1e1;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.2s ease;
}

.form-control-check:focus {
  border-color: #cb2027;
  outline: none;
}

.form-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 1rem;
}
.form-row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.btn__payment {
  width: 100%;
  padding: 1rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-top {
  width: 100%;
  max-width: 800px;
  
  padding: 1rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-bottom: 2rem;
}

.top-btn-container {
  display: flex;
justify-content: center;
}

.btn-primary {
  background: #cb2027;
  color: white;
}

.btn-primary:hover {
  background: #b31b21;
}

.btn-paypal {
  background: #0066cc;
  color: white;
}

.payment-logos {
  height: 60px;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e1e1e1;
}

@media (max-width: 768px) {
  .container__payment {
    padding: 1rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-row2 {
    grid-template-columns: 1fr;
  }

  .payment-tabs {
    flex-direction: column;
  }
.discount-badge {
  margin-left: 0;
}
  .guarantee-banner {
    flex-direction: column;
    text-align: center;
    padding: 1rem;
  }
}
.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}
.header {
  padding-top: 10px;
  width: 100%;
}
.navbar-brand {
  width: 10rem;
  display: block;
}
.brand-img {
  display: block;
  width: 10rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}
.discount-newline {
    display: none;
  }
@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .discount-newline {
    display: block;
  }
  .pricing-newline {
    display: none;
  }
  .btn-top {
    display: none;
  }
}
.payment-section {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 30px;
  border-top: 1px solid #ddd;
}
.order-summary {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  padding: 5px 0;
}
.summary-total {
  border-top: 2px solid #ddd;
  margin-top: 10px;
  padding-top: 10px;
  font-weight: bold;
}
.hidden {
  display: none;
}
.email-input {
  width: 100%;
  padding: 0.875rem;
  border: 2px solid #e1e1e1;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.2s ease;
}

.email-input:focus {
  border-color: #cb2027;
  outline: none;
}
.per-month {
  display: block;
  color: #666666;  /* Same color as the original price for consistency */
  font-size: 0.875rem; /* Slightly smaller than original to match screenshot */
  font-weight: normal;
}

@media (max-width: 768px) {
  .per-month {
    display: inline-block;
    margin-left: 0.5rem;
    margin-top: 0;
  }
}

.text-required {
  color: #cb2027;
  margin-left: 0.25rem;
}

.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.loading-overlay.active {
  opacity: 1;
  visibility: visible;
}

.spinner {
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #3498db;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.processing-text {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 18px;
  color: #333;
  margin-top: 16px;
  text-align: center;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Additional status elements */
.status-icon {
  display: none;
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
}

.status-icon.success {
  display: block;
  color: #2ecc71;
}

.status-icon.error {
  display: block;
  color: #e74c3c;
}</pre></body></html>