/**
 * Wellness Calculator Styles
 */

/* Base Styles */
.wellness-calculator-container {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue",
    sans-serif;
  color: #333;
  line-height: 1.5;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.wellness-calculator-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(219, 3, 57, 0.1);
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
}

.wellness-calculator-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, #db0339, #ff3358);
}

/* Header Styles */
.wellness-calculator-header {
  padding: 24px 24px 0;
}

.wellness-calculator-title {
  font-size: 28px;
  font-weight: 700;
  color: #db0339;
  text-align: center;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.wellness-calculator-progress-bar {
  height: 8px;
  background-color: #f3f4f6;
  border-radius: 4px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05);
}

.wellness-calculator-progress-indicator {
  height: 100%;
  background: linear-gradient(to right, #db0339, #ff3358);
  width: 20%; /* Will be updated via JS */
  transition: width 0.5s ease;
  border-radius: 4px;
}

.wellness-calculator-steps {
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
}

.wellness-calculator-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #9ca3af;
  transition: color 0.3s ease;
  position: relative;
}

.wellness-calculator-step.active {
  color: #db0339;
  font-weight: 500;
}

.wellness-calculator-step.completed {
  color: #db0339;
}

.wellness-calculator-step-number {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  margin-bottom: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.wellness-calculator-step.active .wellness-calculator-step-number {
  background-color: #ffebef;
  border: 2px solid #db0339;
  color: #db0339;
  transform: scale(1.1);
}

.wellness-calculator-step.completed .wellness-calculator-step-number {
  background-color: #db0339;
  color: white;
}

.wellness-calculator-step-label {
  font-size: 13px;
  display: none;
  white-space: nowrap;
}

@media (min-width: 640px) {
  .wellness-calculator-step-label {
    display: block;
  }
}

/* Content Styles */
.wellness-calculator-content {
  padding: 24px;
}

.wellness-calculator-step-title {
  font-size: 22px;
  font-weight: 600;
  color: #db0339;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: -0.5px;
}

.wellness-calculator-step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #db0339;
}

.wellness-calculator-description {
  color: #4b5563;
  margin-bottom: 24px;
  font-size: 16px;
  line-height: 1.6;
}

/* Options Styles */
.wellness-calculator-options {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.wellness-calculator-option {
  position: relative;
  transition: transform 0.2s ease;
}

.wellness-calculator-option:hover {
  transform: translateY(-2px);
}

.wellness-calculator-radio {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.wellness-calculator-option-label {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.wellness-calculator-radio:checked + .wellness-calculator-option-label {
  border-color: #db0339;
  background-color: #fff5f7;
  box-shadow: 0 4px 12px rgba(219, 3, 57, 0.1);
}

.wellness-calculator-option-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  transition: color 0.2s ease;
  width: 40px;
  height: 40px;
  background-color: #f9fafb;
  border-radius: 50%;
}

.wellness-calculator-radio:checked + .wellness-calculator-option-label .wellness-calculator-option-icon {
  color: #db0339;
  background-color: #ffebef;
}

.wellness-calculator-option-content {
  flex: 1;
}

.wellness-calculator-option-title {
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 17px;
}

.wellness-calculator-option-description {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.5;
}

/* Form Styles */
.wellness-calculator-form {
  display: flex;
  flex-direction: column;
  gap: 16px; /* Reduced from 24px */
}

.wellness-calculator-form-row {
  display: flex;
  flex-direction: column;
  gap: 8px; /* Reduced from 12px */
  margin-bottom: 8px; /* Added to reduce vertical spacing */
}

@media (min-width: 640px) {
  .wellness-calculator-form-row {
    flex-direction: row;
  }
}

.wellness-calculator-form-group {
  flex: 1;
  margin-bottom: 5px; /* Reduced from 10px */
}

.wellness-calculator-form-group.full-width {
  width: 100%;
}

.wellness-calculator-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  margin-bottom: 3px; /* Reduced from 6px */
  font-size: 15px;
}

.wellness-calculator-label-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #db0339;
}

.wellness-calculator-input,
.wellness-calculator-select {
  width: 100%;
  padding: 10px 12px; /* Reduced from 12px 14px */
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.2s ease;
  background-color: #fff;
}

.wellness-calculator-input:focus,
.wellness-calculator-select:focus {
  outline: none;
  border-color: #db0339;
  box-shadow: 0 0 0 3px rgba(219, 3, 57, 0.1);
}

.wellness-calculator-input.error,
.wellness-calculator-select.error {
  border-color: #ef4444;
  background-color: #fef2f2;
}

.wellness-calculator-error {
  color: #ef4444;
  font-size: 13px;
  margin-top: 2px; /* Reduced from 6px */
  min-height: 14px; /* Reduced from 16px */
  font-weight: 500;
}

.wellness-calculator-gender-options {
  display: flex;
  gap: 10px; /* Reduced from 16px */
}

.wellness-calculator-gender-option {
  position: relative;
  flex: 1;
}

.wellness-calculator-gender-label {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-weight: 500;
}

.wellness-calculator-radio:checked + .wellness-calculator-gender-label {
  border-color: #db0339;
  background-color: #fff5f7;
  color: #db0339;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(219, 3, 57, 0.1);
}

/* Loading Styles */
.wellness-calculator-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  text-align: center;
}

.wellness-calculator-spinner {
  position: relative;
  width: 140px;
  height: 140px;
  margin-bottom: 32px;
}

.wellness-calculator-spinner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 4px solid #ffebef;
  border-radius: 50%;
}

.wellness-calculator-spinner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 4px solid transparent;
  border-top-color: #db0339;
  border-radius: 50%;
  animation: spin 1.2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.wellness-calculator-spinner-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #db0339;
  font-size: 48px;
}

.wellness-calculator-goal-icon {
  width: 56px;
  height: 56px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.wellness-calculator-loading-text h4 {
  font-size: 20px;
  font-weight: 600;
  color: #db0339;
  margin-bottom: 12px;
}

.wellness-calculator-loading-text p {
  color: #4b5563;
  max-width: 400px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.6;
}

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

/* Disclaimer Styles */
.wellness-calculator-disclaimer {
  background-color: #f9fafb;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
  font-size: 14px;
  border: 1px solid #e5e7eb;
  max-height: 300px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #db0339 #f9fafb;
}

.wellness-calculator-disclaimer::-webkit-scrollbar {
  width: 6px;
}

.wellness-calculator-disclaimer::-webkit-scrollbar-track {
  background: #f9fafb;
}

.wellness-calculator-disclaimer::-webkit-scrollbar-thumb {
  background-color: #db0339;
  border-radius: 6px;
}

.wellness-calculator-disclaimer h4 {
  font-weight: 600;
  color: #db0339;
  margin-bottom: 12px;
  font-size: 16px;
}

.wellness-calculator-disclaimer p {
  margin-bottom: 16px;
  line-height: 1.6;
}

.wellness-calculator-disclaimer ul {
  list-style-type: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.wellness-calculator-agreement {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background-color: #fff5f7;
  border: 1px solid #ffccd5;
  border-radius: 12px;
  transition: all 0.2s ease;
}

.wellness-calculator-agreement:focus-within {
  box-shadow: 0 0 0 3px rgba(219, 3, 57, 0.1);
}

.wellness-calculator-checkbox {
  margin-top: 3px;
  accent-color: #db0339;
  width: 18px;
  height: 18px;
}

.wellness-calculator-checkbox-label {
  font-size: 15px;
  line-height: 1.5;
}

/* Results Styles */
.wellness-calculator-results-header {
  text-align: center;
  margin-bottom: 36px;
}

.wellness-calculator-results-icon {
  width: 72px;
  height: 72px;
  background-color: #fff5f7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #db0339;
  box-shadow: 0 8px 16px rgba(219, 3, 57, 0.1);
}

.wellness-calculator-results-title {
  font-size: 28px;
  font-weight: 700;
  color: #db0339;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.wellness-calculator-results-description {
  color: #4b5563;
  max-width: 500px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.6;
}

.wellness-calculator-results-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 36px;
}

@media (min-width: 640px) {
  .wellness-calculator-results-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.wellness-calculator-result-card {
  background: linear-gradient(to bottom right, #fff5f7, #ffebef);
  border: 1px solid #ffccd5;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(219, 3, 57, 0.08);
  transition: all 0.3s ease;
}

.wellness-calculator-result-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(219, 3, 57, 0.12);
}

.wellness-calculator-result-icon {
  width: 56px;
  height: 56px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  color: #db0339;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}

.wellness-calculator-result-label {
  font-size: 15px;
  color: #4b5563;
  margin-bottom: 6px;
  font-weight: 500;
}

.wellness-calculator-result-value {
  font-size: 32px;
  font-weight: 700;
  color: #db0339;
  margin-bottom: 0;
  line-height: 1.2;
}

.wellness-calculator-result-unit {
  font-size: 13px;
  color: #6b7280;
  margin-top: 2px;
}

.wellness-calculator-references {
  margin-top: 36px;
  border-top: 1px solid #e5e7eb;
  padding-top: 24px;
}

.wellness-calculator-references h4 {
  font-weight: 600;
  color: #db0339;
  margin-bottom: 12px;
  font-size: 16px;
}

.wellness-calculator-references ul {
  list-style-type: none;
  padding: 0;
  font-size: 13px;
  color: #4b5563;
  line-height: 1.6;
}

.wellness-calculator-references li {
  margin-bottom: 10px;
}

.wellness-calculator-references a {
  color: #db0339;
  text-decoration: none;
  transition: all 0.2s ease;
}

.wellness-calculator-references a:hover {
  text-decoration: underline;
  color: #9a0329;
}

.wellness-calculator-success-message {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #fff5f7;
  color: #db0339;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  margin: 32px auto 0;
  width: fit-content;
  box-shadow: 0 4px 12px rgba(219, 3, 57, 0.1);
  transition: all 0.3s ease;
}

.wellness-calculator-success-message:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(219, 3, 57, 0.15);
}

/* Footer Styles */
.wellness-calculator-footer {
  display: flex;
  justify-content: space-between;
  padding: 24px;
  border-top: 1px solid #e5e7eb;
}

.wellness-calculator-button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 15px;
}

.wellness-calculator-button.back-button {
  background-color: transparent;
  border: 1px solid #e5e7eb;
  color: #4b5563;
}

.wellness-calculator-button.back-button:hover {
  background-color: #f9fafb;
  color: #111827;
  border-color: #d1d5db;
}

.wellness-calculator-button.next-button {
  background-color: #db0339;
  border: 1px solid #db0339;
  color: white;
  box-shadow: 0 4px 12px rgba(219, 3, 57, 0.2);
}

.wellness-calculator-button.next-button:hover {
  background-color: #b00230;
  box-shadow: 0 6px 16px rgba(219, 3, 57, 0.25);
  transform: translateY(-1px);
}

.wellness-calculator-button.next-button:disabled {
  background-color: #9ca3af;
  border-color: #9ca3af;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

.wellness-calculator-button.start-over-button {
  background-color: transparent;
  border: 1px solid #db0339;
  color: #db0339;
}

.wellness-calculator-button.start-over-button:hover {
  background-color: #fff5f7;
  box-shadow: 0 2px 8px rgba(219, 3, 57, 0.1);
}

/* Email Styles */
.wellness-calculator-email-field {
  margin-bottom: 24px;
}

.wellness-calculator-email-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #db0339;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 14px 28px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  margin: 24px auto;
  box-shadow: 0 4px 12px rgba(219, 3, 57, 0.2);
  font-size: 16px;
}

.wellness-calculator-email-button:hover {
  background-color: #b00230;
  box-shadow: 0 6px 16px rgba(219, 3, 57, 0.25);
  transform: translateY(-2px);
}

.wellness-calculator-email-button:disabled {
  background-color: #9ca3af;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

.wellness-calculator-spinner-small {
  width: 18px;
  height: 18px;
  border: 2px solid white;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  display: inline-block;
  margin-right: 8px;
}

.wellness-calculator-email-success {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #db0339;
  background-color: #fff5f7;
  padding: 12px 24px;
  border-radius: 30px;
  margin: 24px auto;
  width: fit-content;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(219, 3, 57, 0.1);
}

.wellness-calculator-email-error {
  color: #ef4444;
  text-align: center;
  margin: 12px 0;
  font-weight: 500;
  background-color: #fef2f2;
  padding: 10px 16px;
  border-radius: 8px;
  border: 1px solid #fee2e2;
}

/* Accessibility Improvements */
.wellness-calculator-radio:focus-visible + .wellness-calculator-option-label,
.wellness-calculator-radio:focus-visible + .wellness-calculator-gender-label {
  outline: 2px solid #db0339;
  outline-offset: 2px;
}

.wellness-calculator-input:focus-visible,
.wellness-calculator-select:focus-visible {
  outline: 2px solid #db0339;
  outline-offset: 2px;
}

/* Animation Enhancements */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.wellness-calculator-step-content {
  animation: fadeIn 0.3s ease-out;
}

/* Mobile Optimizations */
@media (max-width: 640px) {
  .wellness-calculator-container {
    padding: 12px;
  }

  .wellness-calculator-card {
    border-radius: 8px;
  }

  .wellness-calculator-header,
  .wellness-calculator-content,
  .wellness-calculator-footer {
    padding: 16px;
  }

  .wellness-calculator-title {
    font-size: 24px;
  }

  .wellness-calculator-step-title {
    font-size: 20px;
  }

  .wellness-calculator-option-label {
    padding: 12px;
  }

  .wellness-calculator-result-card {
    padding: 16px;
  }

  .wellness-calculator-result-value {
    font-size: 28px;
  }

  .wellness-calculator-button {
    padding: 10px 16px;
    font-size: 14px;
  }
}

/* Focus Visible Improvements */
:focus-visible {
  outline: 2px solid #db0339;
  outline-offset: 2px;
}

/* Keyboard Navigation Improvements */
.wellness-calculator-button:focus-visible,
.wellness-calculator-checkbox:focus-visible,
.wellness-calculator-radio:focus-visible + label {
  outline: 2px solid #db0339;
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(219, 3, 57, 0.2);
}

/* Skip to content for screen readers */
.wellness-calculator-skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.wellness-calculator-skip-link:focus {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  background-color: #db0339;
  color: white;
  padding: 10px 16px;
  margin: 10px auto;
  display: block;
  text-align: center;
  border-radius: 4px;
  font-weight: 600;
}

/* ARIA live region for announcements */
.wellness-calculator-announcer {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Tooltip enhancements */
.wellness-calculator-tooltip {
  position: relative;
  display: inline-block;
}

.wellness-calculator-tooltip-content {
  visibility: hidden;
  width: 200px;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 8px;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -100px;
  opacity: 0;
  transition: opacity 0.3s;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.wellness-calculator-tooltip:hover .wellness-calculator-tooltip-content,
.wellness-calculator-tooltip:focus .wellness-calculator-tooltip-content,
.wellness-calculator-tooltip:focus-within .wellness-calculator-tooltip-content {
  visibility: visible;
  opacity: 1;
}

/* Improved form field focus states */
.wellness-calculator-input:focus,
.wellness-calculator-select:focus {
  border-color: #db0339;
  box-shadow: 0 0 0 3px rgba(219, 3, 57, 0.2);
}

/* Improved button states */
.wellness-calculator-button:active {
  transform: translateY(1px);
}

/* Improved loading animation */
@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(219, 3, 57, 0.4);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(219, 3, 57, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(219, 3, 57, 0);
  }
}

.wellness-calculator-spinner-icon {
  animation: pulse 2s infinite;
}

/* Improved hover effects */
.wellness-calculator-option-label:hover {
  border-color: #ffccd5;
  background-color: #fff5f7;
}

.wellness-calculator-gender-label:hover {
  border-color: #ffccd5;
  background-color: #fff5f7;
}

/* Improved scrollbar for all scrollable elements */
* {
  scrollbar-width: thin;
  scrollbar-color: #db0339 #f9fafb;
}

*::-webkit-scrollbar {
  width: 6px;
}

*::-webkit-scrollbar-track {
  background: #f9fafb;
}

*::-webkit-scrollbar-thumb {
  background-color: #db0339;
  border-radius: 6px;
}

/* Print styles */
@media print {
  .wellness-calculator-container {
    padding: 0;
  }

  .wellness-calculator-card {
    box-shadow: none;
    border: 1px solid #e5e7eb;
  }

  .wellness-calculator-button,
  .wellness-calculator-email-button {
    display: none;
  }

  .wellness-calculator-results-grid {
    page-break-inside: avoid;
  }
}

/* Add shimmer animation at the end of the file */
@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

.shimmer-effect {
  animation: shimmer 2s infinite linear;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.5) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  background-size: 1000px 100%;
}

.shimmer-bar {
  animation: shimmer 2s infinite linear;
  background: linear-gradient(to right, #ffccd5 0%, #db0339 50%, #ffccd5 100%);
  background-size: 1000px 100%;
}

/* Order Now Button - Updated for better centering */
.wellness-calculator-order-button {
  display: inline-block !important;
  background-color: #db0339 !important;
  color: white !important;
  font-weight: bold !important;
  padding: 12px 24px !important;
  border-radius: 8px !important;
  text-decoration: none !important;
  font-size: 18px !important;
  transition: all 0.3s ease !important;
  text-align: center !important;
  border: none !important;
  margin: 0 auto !important;
  max-width: 200px !important;
  position: relative !important;
  z-index: 1 !important;
}

.wellness-calculator-order-button:hover {
  background-color: #b5022f !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1) !important;
}

.wellness-calculator-order-button:before,
.wellness-calculator-order-button:after {
  display: none !important;
}

/* Make sure the container is also centered */
#orderNowContainer {
  position: relative !important;
  z-index: 1 !important;
  background: none !important;
  text-align: center !important;
  width: 100% !important;
  margin: 30px auto !important;
  display: block !important;
}

#orderNowContainer:before,
#orderNowContainer:after {
  display: none !important;
}
