*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

html
{
  background-color: #f4f5f7;
  background-image:url('../images/bg.jpg');
  background-size:cover;
  background-repeat:no-repeat;
  background-attachment:fixed;
}
body {
  margin: 0;
  font-family: "Source Sans Pro", Helvetica, sans-serif !important;
  color: #2b2b2b;
  display: flex;
  flex-direction: column;
}

body *:not(.fa):not(.fas):not(.far):not(.fal):not(.fab) {
  font-family: "Source Sans Pro", Helvetica, sans-serif !important;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.site-header {
  background-color: #05070b;
  border-bottom: 1px solid #111827;
}

.situation-header {
  background-color: #0174c7;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
}

.logo img {
  display: block;
  height: 52px;
  width: auto;
}

.situation-logo img {
  display: block;
  height: 62px;
  width: auto;
  margin: 16px auto;
}

.main-nav {
  display: flex;
  gap: 24px;
  font-size: 20px;
  text-transform: none;
  letter-spacing: 0.02em;
}

.main-nav a {
  position: relative;
  display: inline-block;
  padding: 6px 12px;
  border-radius: 6px;
  font-family: Poppins, Helvetica, sans-serif !important;
  font-weight: bold;
  color: #ffffff;
  background-color: transparent;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.main-nav a:hover {
  background-color: #ffffff;
  color: #000 !important;
}

/* Page layout */
.order-page {
  flex: 1 0 auto;
}

.page-title {
  font-family: Poppins, Helvetica, sans-serif !important;
  font-weight: 600;
  font-size: 44px;
  color: rgb(0, 149, 217);
  text-align: left;
  text-transform: capitalize;
  line-height: 1.3em;
  margin: 24px 0 24px;
}

.page-title-thank-you {
  font-family: Poppins, Helvetica, sans-serif !important;
  font-weight: 600;
  font-size: 44px;
  color: #ff0000;
  text-align: left;
  text-transform: capitalize;
  line-height: 1.3em;
  margin: 24px 0 24px;
}

.order-card {
  background-color: #ffffff;
  border-radius: 3px;
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.12),
    0 22px 60px rgba(15, 23, 42, 0.35);
  margin: 0 auto;
  max-width: 1120px;
  width: 100%;
  padding-left: 100px;
  padding-right: 100px;
}

/* Simple situation pages (thank-you / cancel) */
.situation-body .order-page {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
}

.situation-body .order-page > .container {
  flex: 1 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 40px;
  padding-bottom: 40px;
}

.situation-body .order-card {
  max-width: 720px;
  padding-top: 36px;
  padding-bottom: 40px;
  padding-left: 72px;
  padding-right: 72px;
}

.situation-body .site-footer {
  margin-top: auto;
}

@media (max-width: 720px) {
  .situation-body .order-card {
    padding: 24px 18px 28px;
  }
}

.margin-bottom-10 {
  margin-bottom: 10px;
}

.margin-top-10 {
  margin-top: 10px;
}

/* Sections */
.form-section + .form-section {
  margin-top: 32px;
  margin-bottom: 32px;
}

.section-heading {
    margin-bottom: 10px;
}

.section-title {
  font-family: "Source Sans Pro", Helvetica, sans-serif !important;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgb(45, 45, 45);
  text-align: left;
  line-height: 1.3em;
  margin: 0;
}

.section-divider {
  width: 100%;
  min-height: 1px;
  height: 1px;
  margin: 8px 0 0;
  background-color: rgb(45, 45, 45);
}

.section-description {
  margin: 0 0 18px;
  font-size: 14px;
  color: #4b5563;
}

.section-note {
  margin: 0 0 18px;
  font-size: 14px;
  color: rgb(45, 45, 45);
  text-align: left;
  letter-spacing: 1px;
  line-height: 1.3em;
  font-family: "Source Sans Pro", Helvetica, sans-serif;
  font-weight: 700;
}

.situation-expectations {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
  margin-top: 32px;
  margin-bottom: 32px;
}

.situation-expectations-image {
  height: 100%;
}

.situation-expectations-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.situation-expectations-text {
  font-size: 16px;
  color: #4b5563;
  line-height: 1.6;
}

@media (max-width: 720px) {
  .situation-expectations {
    grid-template-columns: 1fr;
  }
}

/* Alerts */
.alert {
  margin: 12px 0 18px;
  padding: 12px 14px;
  border-radius: 4px;
  border: 1px solid transparent;
  font-size: 14px;
}

.alert-success {
  background-color: #ecfdf3;
  border-color: #4ade80;
  color: #166534;
}

.alert-error {
  background-color: #fef2f2;
  border-color: #fca5a5;
  color: #991b1b;
}

/* Product row */
.product-row {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 24px;
  align-items: flex-start;
}

.product-image-img {
  width: 100%;
  border-radius: 2px;
  display: block;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.45);
}

.product-info {
  font-size: 14px;
}

.product-table-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  background-color: #f3f4f6;
  border-radius: 3px 3px 0 0;
  border: 1px solid #e5e7eb;
  border-bottom: none;
  font-size: 14px;
  text-transform: none;
  letter-spacing: 0.04em;
  color: #000000;
  font-weight: 600;
}

.product-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
  padding: 10px 12px 12px;
  border: 1px solid #e5e7eb;
  border-top: none;
  border-radius: 0 0 3px 3px;
  background-color: #f9fafb;
}

.product-radio {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  cursor: pointer;
}

.product-radio input[type="radio"] {
  width: 16px;
  height: 16px;
}

.product-name {
  font-family: "Source Sans Pro", Helvetica, sans-serif;
  font-weight: 600;
  color: #000000;
  font-size: 14px;
}

.product-subtitle {
  font-size: 12px;
  color: #4b5563;
  margin-top: 6px;
}

.product-price {
  font-family: "Source Sans Pro", Helvetica, sans-serif;
  font-weight: 600;
  white-space: nowrap;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 32px;
}

.feature-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  font-size: 17px;
  font-family: Poppins, Helvetica, sans-serif;
}

.feature-list li::before {
  content: "\f00c";
  position: absolute;
  left: 0;
  top: 0;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 15px;
  color: rgb(250, 25, 6);
}

.product-note {
  margin: 36px 0 0;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 14px;
  font-weight: 700;
  color: rgb(151, 69, 222);
  line-height: 1.4;
}

.product-note span {
  font-size: 16px;
}

.product-note-extra {
  font-size: 14px;
  font-family: "Source Sans Pro", Helvetica, sans-serif;
  font-weight: 400;
  display: block;
  color: #000000;
  margin-top: 4px;
}

.product-note img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  grid-row: 1 / 3;
  grid-column: 1;
}

.product-footnote {
  margin-top: 25px;
  font-size: 12px;
  color: #4b5563;
}

/* Form fields */
.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 6px 18px;
}

.form-field {
  display: flex;
  flex-direction: column;
}

.form-field-full {
  margin-top: 18px;
  grid-column: 1 / -1;
}

.site-footer {
  background-color: #05070b;
  color: #f9fafb;
  padding: 32px 0 26px;
  font-size: 13px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}

.footer-eyebrow {
  font-size: 12px;
  letter-spacing: 2px;
  color: rgb(255, 255, 255);
  margin: 0 0 10px;
}

.footer-logo {
  text-align: center;
  margin-bottom: 8px;
}

.footer-logo img {
  display: block;
  max-width: 220px;
  margin: 0 auto 6px;
}

.footer-tagline {
  margin: 0;
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #9ca3af;
}

.footer-copy {
  margin: 4px 0 0;
  color: rgb(255, 255, 255);
  font-size: 14px;
}

.footer-links {
  margin: 6px 0 0;
  color: rgb(255, 255, 255);
  font-size: 14px;
}

.footer-links a {
  text-decoration: none;
}

.footer-links a:hover {
  color: rgb(221, 221, 221);
}

label {
  font-size: 12px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.04em;
  color: #374151;
  margin-bottom: 6px;
}

label span {
  color: #000000;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
select {
  border-radius: 5px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 15px 20px;
  box-shadow: inset 0px 2px 4px rgba(128, 128, 128, 0.15),
    0px 3px 2px rgba(140, 157, 169, 0.14) !important;
  font-size: 14px;
  font-family: inherit;
  color: inherit;
  background-color: #ffffff;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

input:focus,
select:focus {
  border-color: #0098ff;
  box-shadow: 0 0 0 2px rgba(0, 152, 255, 0.15);
}

input::placeholder {
  color: #9ca3af;
}

/* Checkbox grid */
.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 6px 18px;
  margin-top: 4px;
}

.checkbox-grid label {
  display: flex;
  align-items: center;
  text-transform: none;
  letter-spacing: normal;
  font-weight: 400;
  font-size: 13px;
  color: #000000;
}

.checkbox-grid input[type="checkbox"] {
  margin-right: 8px;
}

/* Order summary */
.order-summary {
  border: 1px solid #e5e7eb;
  border-radius: 3px;
  font-size: 14px;
}

.order-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
}

.order-line.headers {
  background-color: #f9fafb;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.04em;
  font-size: 14px;
  color: #000000;
}

.order-line + .order-line {
  border-top: 1px solid #e5e7eb;
}

.order-line.total {
  font-weight: 600;
}

/* Current subscriptions */
.current-subscriptions {
  margin-top: 40px;
}

.current-subscriptions-table {
  border-radius: 3px;
  border: 1px solid #e5e7eb;
  overflow: hidden;
  font-size: 14px;
}

.current-subscriptions-header,
.current-subscriptions-row {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.9fr) minmax(0, 0.9fr) minmax(0, 0.9fr);
  gap: 12px;
  padding: 10px 14px;
}

.current-subscriptions-header {
  background-color: #f9fafb;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
}

.current-subscriptions-row:nth-child(odd) {
  background-color: #ffffff;
}

.current-subscriptions-row:nth-child(even) {
  background-color: #f9fafb;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 90px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  text-transform: capitalize;
}

.status-badge.status-created,
.status-badge.status-initiated {
  background-color: #eff6ff;
  color: #1d4ed8;
}

.status-badge.status-active {
  background-color: #ecfdf3;
  color: #15803d;
}

.status-badge.status-cancelled,
.status-badge.status-canceled {
  background-color: #fef2f2;
  color: #b91c1c;
}

/* Payment */
.payment-area {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.paypal-button {
  border: none;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius: 3px;
  padding: 15px 40px;
  background-color: #0070ba;
  color: #ffffff;
  font-family: "Source Sans Pro", Helvetica, sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 112, 186, 0.35);
  transition: background-color 0.15s ease, transform 0.05s ease,
    box-shadow 0.15s ease;
  width: 50%;
  min-width:320px;
  text-align: center;
}

.payment-image {
  max-width: 200px;
  width: 100%;
  height: auto;
  display: block;
  margin:0 auto;
}

.paypal-button:hover {
  background-color: #005ea6;
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(0, 112, 186, 0.4);
}

.payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #6b7280;
}

.card {
  border-radius: 2px;
  border: 1px solid #d1d5db;
  background-color: #ffffff;
}

.card.visa {
  border-color: #1a4fb7;
}

.card.mc {
  border-color: #f97316;
}

.card.amex {
  border-color: #0596de;
}

.card.disc {
  border-color: #f97316;
}

/* Responsive */
@media (max-width: 720px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .order-card {
    padding: 24px 18px 28px;
  }

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

  .product-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .payment-area {
    align-items: stretch;
  }

  .paypal-button {
    width: 100%;
	min-width:0;
    text-align: center;
  }
}

.paypal-logo
{
	height:24px;
}