/* ───────────────────────────────────────────
       RESET & BASE
    ─────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* @font-face {
    font-family: Very Vogue;
    src: url(fonts/nicky-laatz-very-vogue-text.otf);
}

@font-face {
    font-family: Halyard Display;
    src: url(fonts/fonnts.com-Halyard_Display.otf);
} */

@font-face {
  font-family: "Halyard Display";
  src: url("../fonts/Halyard-Display-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Very Vogue";
  src: url("../fonts/Very-Vogue.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

:root {
  --vsdmcp-pink-light: #fce4ec;
  --vsdmcp-pink-mid: #f8bbd0;
  --vsdmcp-pink-bg: linear-gradient(
    160deg,
    #f9b8cc 0%,
    #fce4ec 50%,
    #fff5f8 100%
  );
  --vsdmcp-dark: #4f1f1f;
  --vsdmcp-dark-hover: #1a0e0e;
  --vsdmcp-accent: #c0375a;
  --vsdmcp-accent-light: #e8557a;
  --vsdmcp-white: #ffffff;
  --vsdmcp-card-bg: rgba(255, 255, 255, 0.92);
  --vsdmcp-border: rgba(255, 255, 255, 0.7);
  --vsdmcp-text-muted: #6b4a52;
  --vsdmcp-step-inactive: rgba(45, 26, 26, 0.25);
  --vsdmcp-radius: 18px;
  --vsdmcp-radius-sm: 12px;
  --vsdmcp-radius-pill: 999px;
  --vsdmcp-shadow: 0 4px 24px rgba(192, 55, 90, 0.1);
  --vsdmcp-shadow-card: 0 8px 40px rgba(192, 55, 90, 0.08);
}

body {
  font-family: "DM Sans", sans-serif;
  min-height: 100vh;
  color: var(--vsdmcp-dark);
  background: linear-gradient(
    180deg,
    rgba(255, 164, 213, 0.75) 0%,
    rgba(255, 164, 213, 0.466667) 50.48%,
    #ffffff 100%
  );
  background-image: linear-gradient(
    rgba(255, 164, 213, 0.75) 0%,
    rgba(255, 164, 213, 0.467) 50.48%,
    rgb(255, 255, 255) 100%
  );
}

/* ───────────────────────────────────────────
       NAVBAR
    ─────────────────────────────────────────── */
.vsdmcp-navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(249, 184, 204, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.vsdm-error {
  display: none;
}

.vsdmcp-logo {
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--vsdmcp-dark);
  line-height: 1.3;
  letter-spacing: -0.2px;
}

.vsdmcp-logo span {
  color: var(--vsdmcp-accent);
}

.vsdmcp-nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.vsdmcp-lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.6);
  border: 1.5px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--vsdmcp-radius-pill);
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--vsdmcp-dark);
  cursor: pointer;
  transition: background 0.2s;
}

.vsdmcp-lang-btn:hover {
  background: rgba(255, 255, 255, 0.85);
}

.vsdmcp-lang-btn img {
  width: 20px;
  height: 14px;
  border-radius: 2px;
}

.vsdmcp-lang-btn svg {
  width: 12px;
  height: 12px;
  opacity: 0.5;
}

.vsdmcp-login-btn {
  background: transparent;
  border: 2px solid var(--vsdmcp-dark);
  border-radius: var(--vsdmcp-radius-pill);
  padding: 8px 22px;
  font-size: 14px;
  font-weight: 600;
  color: var(--vsdmcp-dark);
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s;
  font-family: "DM Sans", sans-serif;
}

.vsdmcp-login-btn:hover {
  background: var(--vsdmcp-dark);
  color: #fff;
}

/* ───────────────────────────────────────────
       MAIN WRAPPER
    ─────────────────────────────────────────── */
.vsdmcp-main {
  min-height: calc(100vh - 65px);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px 80px;
}

/* ───────────────────────────────────────────
       STEP PROGRESS INDICATOR
    ─────────────────────────────────────────── */
.vsdmcp-progress {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 35px;
}

.vsdmcp-step-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 400;
  background: #eee9e9;
  color: #4f1f1f;
  border: 2px solid transparent;
  transition:
    background 0.35s,
    color 0.35s,
    border-color 0.35s;
  position: relative;
  z-index: 2;
  font-family: "Halyard Display", sans-serif;
}

.vsdmcp-step-dot.vsdmcp-active {
  background: var(--vsdmcp-dark);
  color: #fff;
  /* box-shadow: 0 0 0 4px rgba(45, 26, 26, 0.12); */
}

.vsdmcp-step-dot.vsdmcp-completed {
  background: var(--vsdmcp-dark);
  color: #fff;
}

.vsdmcp-step-line {
  width: 196px;
  height: 2px;
  background: #eee9e9;
  position: relative;
  overflow: hidden;
  margin: 0px 6px;
}

.vsdmcp-step-line::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: var(--vsdmcp-dark);
  transition: width 0.5s ease;
}

.vsdmcp-step-line.vsdmcp-filled::after {
  width: 100%;
}

/* ───────────────────────────────────────────
       STEP PANELS
    ─────────────────────────────────────────── */
.vsdmcp-step-panel {
  display: none;
  width: 100%;
  max-width: 1240px;
  animation: vsdmcpFadeIn 0.4s ease;
}

.vsdmcp-step-panel.vsdmcp-visible {
  display: block;
}

@keyframes vsdmcpFadeIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ───────────────────────────────────────────
       HEADINGS
    ─────────────────────────────────────────── */
h1.vsdmcp-heading, h3.vsdmcp-heading {
  font-family: "Very Vogue", sans-serif;
  font-weight: 400;
  font-size: 54px;
  line-height: 110.00000000000001%;
  letter-spacing: 0px;
  margin-bottom: 0;
  color: #4f1f1f;
  text-align: center;
  margin-top: 27px;
  margin-bottom: 18px;
}

p.vsdmcp-subheading {
  font-family: "Halyard Display", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0%;
  text-align: center;
  color: #4f1f1f;
  margin-bottom: 40px;
}

/* ───────────────────────────────────────────
       CARD
    ─────────────────────────────────────────── */
.vsdmcp-card {
  background: var(--vsdmcp-card-bg);
  border-radius: var(--vsdmcp-radius);
  padding: 28px 32px;
  box-shadow: var(--vsdmcp-shadow-card);
  border: 1px solid var(--vsdmcp-border);
  backdrop-filter: blur(8px);
}

h3.vsdmcp-card-title {
  font-size: 40px;
  letter-spacing: 0px;
  font-weight: 400;
  font-family: "Very Vogue", sans-serif;
  margin: 0;
}

p.vsdmcp-card-desc {
  margin: 5px 0 40px 0;
  color: #4f1f1f;
  font-family: "Halyard Display", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0px;
  text-align: left;
}

/* ───────────────────────────────────────────
       CHECKBOXES (Step 1)
    ─────────────────────────────────────────── */
.vsdmcp-checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.vsdmcp-checkbox-label {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  user-select: none;
}

.vsdmcp-checkbox-label input[type="checkbox"] {
  display: none;
}

.vsdmcp-checkbox-box {
  width: 25px;
  height: 25px;
  min-width: 25px;
  border-radius: 4px;
  background: #ede9e9;
  border: 1px solid #4f1f1f;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s,
    border-color 0.2s;
}

.vsdmcp-checkbox-box svg {
  display: none;
  width: 13px;
  height: 13px;
  fill: none;
  stroke: #fff;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.vsdmcp-checkbox-label input:checked ~ .vsdmcp-checkbox-box {
  background: var(--vsdmcp-dark);
  border-color: var(--vsdmcp-dark);
}

.vsdmcp-checkbox-label input:checked ~ .vsdmcp-checkbox-box svg {
  display: block;
}

.vsdmcp-checkbox-text {
  font-family: "Halyard Display", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0%;
  color: #4f1f1f;
  margin: 0;
}

/* ───────────────────────────────────────────
       SELECT (Step 2)
    ─────────────────────────────────────────── */
.vsdmcp-select-wrap {
  position: relative;
  max-width: 300px;
  margin: 0 auto;
}

.vsdmcp-select {
  background: #fff !important;
  min-width: 300px;
  padding: 11px 20px;
  border-radius: 55px;
  color: #4f1f1f;
  font-family: "Halyard Display", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0px;
  min-height: 48px;
  margin: 0 auto;
  border: 1.5px solid #4f1f1f80;
  max-width: 300px;
  appearance: none;
}

.vsdmcp-select-wrap:after {
  content: "";
  display: block;
  border-bottom: 2px solid #4f1f1f80;
  border-right: 2px solid #4f1f1f80;
  transform: rotate(45deg);
  height: 9px;
  width: 9px;
  position: absolute;
  cursor: pointer;
  right: 17px;
  top: 17px;
  background: #fff;
  pointer-events: none;
}

.vsdmcp-select:focus {
  border-color: var(--vsdmcp-accent);
}

.vsdmcp-select-arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--vsdmcp-text-muted);
}

/* ───────────────────────────────────────────
       HOW IT WORKS GRID (Step 2)
    ─────────────────────────────────────────── */
.vsdmcp-hiw-heading {
  margin-bottom: 25px;
  font-family: "Halyard Display", sans-serif;
  font-weight: 500;
  font-size: 28px;
  line-height: 130%;
  letter-spacing: 0px;
  text-align: center;
  text-transform: capitalize;
  color: #4f1f1f;
}

.vsdmcp-hiw-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 920px;
  padding: 0 20px;
  margin: 0 auto;
}

.vsdmcp-hiw-card {
  background: #fff;
  padding: 24px 14px;
  gap: 20px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  text-align: start;
  box-sizing: border-box;
  min-height: 121px;
  background: linear-gradient(
    270.08deg,
    #ffffff 3.07%,
    #ffd9ed 47.5%,
    #ffffff 89.9%
  );
}

.vsdmcp-hiw-num {
  font-family: "Playfair Display", serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--vsdmcp-pink-mid);
  line-height: 1;
  min-width: 60px;
}

.vsdmcp-hiw-content h4 {
  font-family: "Halyard Display", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 130%;
  letter-spacing: 0px;
  text-transform: capitalize;
  color: #4f1f1f;
  display: block;
  margin-bottom: 7px;
}

.vsdmcp-hiw-content p {
  font-family: "Halyard Display", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0px;
}

/* ───────────────────────────────────────────
       CONTACT FORM (Step 3)
    ─────────────────────────────────────────── */
.vsdmcp-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 44px;
  max-width: 612px;
  margin: 30px auto;
  gap: 12px;
}

input.vsdmcp-input {
  width: 100%;
  border-radius: 55px;
  box-sizing: border-box;
  padding: 11px 20px;
  font-family: "Halyard Display", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0px;
  color: #4f1f1f;
  border: 1.5px solid rgba(79, 31, 31, 0.5);
}

input.vsdmcp-input::placeholder {
  color: rgba(45, 26, 26, 0.38);
}

input.vsdmcp-input:focus {
  /* border-color: var(--vsdmcp-accent);
      box-shadow: 0 0 0 3px rgba(192, 55, 90, 0.1); */
}

select.vsdmcp-select.vsdmcp-error {
  border-color: #e53935;
}

input.vsdmcp-input.vsdmcp-error {
  border-color: #e53935;
}

/* ───────────────────────────────────────────
       TRUST STRIP (Step 3)
    ─────────────────────────────────────────── */
.vsdmcp-trust-heading {
  font-family: "DM Sans", sans-serif;
  font-size: 19px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 22px;
  color: var(--vsdmcp-dark);
}

.vsdmcp-trust-strip {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.vsdmcp-trust-item {
  flex-direction: column;
  text-align: center;
  justify-content: flex-start;
  gap: 12px;
  flex: 1 1;
  background: linear-gradient(
    221.15deg,
    #ffffff 8.99%,
    #ffd9ed 51.74%,
    #ffffff 92.53%
  );
  padding: 24px 14px;
  border-radius: 20px;
  display: flex;
}

.vsdmcp-trust-icon {
  width: 40px;
  height: 40px;
  max-width: 40px;
}

.vsdmcp-trust-text {
  margin: 0;
  text-align: center;
  font-family: "Halyard Display", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0px;
}

/* ───────────────────────────────────────────
       PRICING (Step 4)
    ─────────────────────────────────────────── */
.vsdmcp-pricing-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.vsdmcp-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--vsdmcp-dark);
}

.vsdmcp-badge-icon {
  width: 28px;
  height: 28px;
  background: var(--vsdmcp-dark);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vsdmcp-badge-icon svg {
  width: 16px;
  height: 16px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
}

.vsdmcp-pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 860px;
  margin: 0 auto;
}

.vsdmcp-pricing-card {
  background: var(--vsdmcp-white);
  border-radius: var(--vsdmcp-radius);
  padding: 32px 30px;
  box-shadow: var(--vsdmcp-shadow-card);
  border: 1.5px solid transparent;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  position: relative;
}

.vsdmcp-pricing-card.vsdmcp-popular {
  border-color: var(--vsdmcp-accent-light);
  box-shadow: 0 8px 40px rgba(192, 55, 90, 0.15);
}

.vsdmcp-plan-name {
  font-family: "Playfair Display", serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--vsdmcp-dark);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.vsdmcp-popular-tag {
  background: var(--vsdmcp-pink-light);
  color: var(--vsdmcp-accent);
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--vsdmcp-radius-pill);
  border: 1px solid rgba(192, 55, 90, 0.2);
}

.vsdmcp-plan-desc {
  font-size: 13px;
  color: var(--vsdmcp-text-muted);
  margin-bottom: 18px;
  line-height: 1.55;
}

.vsdmcp-plan-pay {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.vsdmcp-pay-badges {
  display: flex;
  gap: 6px;
}

.vsdmcp-pay-badge {
  background: #f0f4ff;
  border-radius: 6px;
  padding: 3px 8px;
  font-size: 11px;
  font-weight: 700;
  color: #3d4cac;
}

.vsdmcp-pay-badge.vsdmcp-green {
  background: #e8f5e9;
  color: #2e7d32;
}

.vsdmcp-pay-text {
  font-size: 12px;
  color: var(--vsdmcp-text-muted);
}

.vsdmcp-price-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}

.vsdmcp-price-now {
  font-family: "Playfair Display", serif;
  font-size: 38px;
  font-weight: 700;
  color: var(--vsdmcp-dark);
}

.vsdmcp-price-was {
  font-size: 16px;
  color: #bbb;
  text-decoration: line-through;
}

.vsdmcp-guarantee-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--vsdmcp-pink-light);
  border-radius: var(--vsdmcp-radius-pill);
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 600;
  color: var(--vsdmcp-accent);
  margin-bottom: 18px;
}

.vsdmcp-guarantee-pill svg {
  width: 14px;
  height: 14px;
}

.vsdmcp-cta-btn {
  display: block;
  width: 100%;
  background: var(--vsdmcp-dark);
  color: #fff;
  border: none;
  border-radius: var(--vsdmcp-radius-pill);
  padding: 15px;
  font-size: 15px;
  font-weight: 700;
  font-family: "DM Sans", sans-serif;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.15s;
  text-align: center;
  margin-bottom: 8px;
}

.vsdmcp-cta-btn:hover {
  background: var(--vsdmcp-dark-hover);
  transform: translateY(-1px);
}

.vsdmcp-slots-note {
  text-align: center;
  font-size: 12px;
  color: var(--vsdmcp-accent);
  font-weight: 600;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.vsdmcp-features-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--vsdmcp-dark);
  margin-bottom: 12px;
}

.vsdmcp-feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.vsdmcp-feature-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--vsdmcp-dark);
}

.vsdmcp-feature-list li.vsdmcp-disabled {
  color: #bbb;
  text-decoration: line-through;
}

.vsdmcp-feature-list li span.vsdmcp-check {
  width: 18px;
  height: 18px;
  min-width: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vsdmcp-accent);
  font-size: 14px;
}

.vsdmcp-feature-list li.vsdmcp-disabled span.vsdmcp-check {
  color: #bbb;
}

/* ───────────────────────────────────────────
       NAV BUTTONS
    ─────────────────────────────────────────── */
.vsdmcp-nav-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
  margin: 60px auto 60px;
}

.vsdmcp-back-btn {
  border: 1.5px solid #4f1f1f !important;
  background-color: transparent;
  font-family: "Halyard Display", sans-serif;
  font-weight: 500;
  font-size: 16px !important;
  line-height: 140%;
  text-align: center;
  color: #4f1f1f;
  min-width: 150px;
  height: 54px;
  padding: 10px 25px;
  border-radius: 40px !important;
  line-height: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: none;
  border: none;
  cursor: pointer;
}

.vsdmcp-back-btn:hover {
  background: var(--vsdmcp-dark);
  color: #fff;
}

.vsdmcp-next-btn {
  border: 1.5px solid #4f1f1f !important;
  background-color: rgb(79, 31, 31);
  font-family: "Halyard Display", sans-serif;
  font-weight: 500;
  font-size: 16px !important;
  line-height: 140%;
  text-align: center;
  color: #fff;
  min-width: 150px;
  height: 54px;
  padding: 10px 25px;
  border-radius: 40px !important;
  line-height: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: none;
  border: none;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.15s;
}

.vsdmcp-next-btn:hover,
.vsdmcp-next-btn:focus {
  background-color: #4f1f1f;
  opacity: 0.8;
}

.vsdmcp-next-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.vsdmcp-hiw-image {
  max-width: 60px;
}

/* ───────────────────────────────────────────
       UTILITIES
    ─────────────────────────────────────────── */
.vsdmcp-hidden {
  display: none !important;
}

.vsdmcp-spacer {
  flex: 1;
}

/* ───────────────────────────────────────────
       RESPONSIVE
    ─────────────────────────────────────────── */
@media (max-width: 680px) {
  .vsdmcp-navbar {
    padding: 14px 18px;
  }

  .vsdmcp-trust-text {
    font-size: 12px;
  }

  .vsdmcp-card-title {
    font-size: 32px;
  }

  .vsdmcp-checkbox-text {
    font-size: 14px;
  }

  .vsdmcp-heading {
    font-size: 32px;
  }

  .vsdmcp-hiw-grid {
    grid-template-columns: 1fr;
    padding: 0;
  }

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

  .vsdmcp-pricing-grid {
    grid-template-columns: 1fr;
  }

  .vsdmcp-step-line {
    width: 60px;
  }

  .vsdmcp-trust-strip {
    flex-direction: column;
  }

  .vsdmcp-trust-item {
    width: 80%;
    padding: 24px 14px;
    margin: 0 auto;
  }

  .vsdmcp-card {
    padding: 28px 32px;
  }
}

/* success popup css */
.vsdmcp-military-modal {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: none;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(2px);
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 9;
}

.vsdmcp-military-modal-content {
  background-image: url("../images/military-popup-back.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  padding: 50px 30px;
  align-items: center;
  border-radius: 18px;
  width: 600px;
}

.vsdmcp-military-modal-img {
  width: 110px;
  margin-bottom: 20px;
}

.vsdmcp-military-modal-title {
  font-family: var(--ff-very-vogue) !important;
  font-weight: 400 !important;
  font-style: italic;
  font-size: 60px !important;
  line-height: 90% !important;
  letter-spacing: 0;
  margin: 0;
  color: var(--primary-color) !important;
  margin-bottom: 30px;
}

.vsdmcp-military-modal-subtitle {
  font-family: var(--ff-halyard-display) !important;
  font-weight: 400 !important;
  font-size: 22px !important;
  line-height: 90% !important;
  letter-spacing: 0;
  margin: 0;
  color: var(--primary-color) !important;
  margin-bottom: 10px !important;
  text-align: center;
}

.vsdmcp-military-modal-desc {
  font-family: var(--ff-halyard-display);
  font-weight: 400;
  font-size: 16px;
  line-height: 110% !important;
  letter-spacing: 0;
  margin: 0;
  color: var(--primary-color);
  margin-bottom: 20px !important;
  text-align: center;
  line-height: 1;
}

.vsdmcp-military-modal-redirect-text {
  font-family: var(--ff-halyard-display);
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  letter-spacing: 0;
  margin: 0;
}

@media only screen and (max-width: 600px) {
  .vsdmcp-military-modal-content {
    padding: 20px 10px;
    width: 94%;
  }

  .vsdmcp-military-modal-title {
    font-size: 40px !important;
  }
}

/* end success popup css */
