.vmt-modal-overlay {
display: none;
position: fixed;
inset: 0;
background: rgba(0, 0, 0, 0.6);
z-index: 999999;
align-items: flex-start;
justify-content: center;
padding: 16px;
box-sizing: border-box;
padding-top: 5%;
}
body.vmt-modal-open {
overflow: hidden;
} .vmt-modal-container {
background: #fff;
border-radius: 20px;
width: 100%;
max-width: 540px;
max-height: 85vh;
overflow-y: auto;
position: relative;
box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
box-sizing: border-box;
display: flex;
flex-direction: column;
} .vmt-modal-close {
position: absolute;
top: 14px;
right: 18px;
background: transparent;
border: none;
font-size: 26px;
line-height: 1;
cursor: pointer;
color: #6b7280;
z-index: 2;
padding: 0 4px;
transition: color 0.15s;
}
.vmt-modal-close:hover { color: #111; } .vmt-modal-header {
padding: 24px 24px 0;
border-bottom: 1px solid #f0f0f0;
padding-bottom: 16px;
}
.vmt-wizard-title {
margin: 0 0 14px;
font-size: clamp(14px, 4.2vw, 18px);
font-weight: 700;
color: #111827;
line-height: 1.3;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
} .vmt-pills-bar {
display: flex;
align-items: center;
gap: 6px;
width: 100%;
padding: 4px 2px 10px;
}
.vmt-pill {
flex: 1 1 auto;
min-width: 8px;
width: auto;
height: 7px;
border-radius: 99px;
border: none;
padding: 0;
background: #e5e7eb;
cursor: not-allowed;
transition: background 0.2s, transform 0.15s;
position: relative;
}
.vmt-pill-filled {
background: linear-gradient(90deg, #2563eb, #7c3aed);
cursor: pointer;
}
.vmt-pill-filled:hover {
transform: scaleY(1.4);
} .vmt-pill-current {
background: #f59e0b;
}
.vmt-pill-summary {
flex: 0 0 auto;
width: 16px;
height: 16px;
border-radius: 50%;
background: #e5e7eb;
margin-left: 4px;
display: flex;
align-items: center;
justify-content: center;
font-size: 10px;
font-weight: 700;
line-height: 1;
color: transparent; }
.vmt-pill-summary.vmt-pill-filled {
background: #16a34a; color: #fff;
}
.vmt-pill-summary.vmt-pill-current {
background: #f59e0b;
color: #fff;
} .vmt-pill[data-tooltip] {
outline: none;
}
@keyframes vmtTooltipFade {
from { opacity: 0; }
to   { opacity: 1; }
}
.vmt-pill[data-tooltip]:hover::after,
.vmt-pill[data-tooltip]:focus-visible::after {
content: attr(data-tooltip);
position: absolute;
bottom: calc(100% + 9px);
left: 50%;
transform: translateX(-50%);
background: #111827;
color: #fff;
font-size: 11px;
font-weight: 600;
line-height: 1.3;
padding: 6px 10px;
border-radius: 7px;
white-space: nowrap;
pointer-events: none;
z-index: 30;
opacity: 0;
animation: vmtTooltipFade 0.12s ease forwards;
animation-delay: 0.08s;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
}
.vmt-pill[data-tooltip]:hover::before,
.vmt-pill[data-tooltip]:focus-visible::before {
content: '';
position: absolute;
bottom: calc(100% + 5px);
left: 50%;
transform: translateX(-50%);
border: 5px solid transparent;
border-top-color: #111827;
z-index: 30;
opacity: 0;
animation: vmtTooltipFade 0.12s ease forwards;
animation-delay: 0.08s;
} .vmt-modal-body {
padding: 24px;
flex: 1;
} .vmt-screen { animation: vmtFadeIn 0.2s ease; }
@keyframes vmtFadeIn {
from { opacity: 0; transform: translateY(8px); }
to   { opacity: 1; transform: translateY(0); }
} #vmt-screen-loading {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
min-height: 180px;
gap: 14px;
color: #6b7280;
font-size: 14px;
}
.vmt-spinner {
width: 36px;
height: 36px;
border: 3px solid #e5e7eb;
border-top-color: #2563eb;
border-radius: 50%;
animation: vmtSpin 0.75s linear infinite;
}
@keyframes vmtSpin {
to { transform: rotate(360deg); }
} .vmt-question-label {
font-size: 18px;
font-weight: 700;
color: #111827;
margin: 0 0 20px;
line-height: 1.35;
}
.vmt-options-list {
display: flex;
flex-direction: column;
gap: 10px;
margin-bottom: 24px;
} .vmt-option-btn {
display: flex;
align-items: center;
justify-content: space-between;
width: 100%;
padding: 14px 18px;
background: #f9fafb;
border: 2px solid #e5e7eb;
border-radius: 12px;
font-size: 15px;
font-weight: 500;
color: #374151;
cursor: pointer;
text-align: left;
transition: border-color 0.15s, background 0.15s, color 0.15s;
}
.vmt-option-btn.vmt-option-selected {
border-color: #2563eb;
background: #eff6ff;
color: #1d4ed8;
}
.vmt-option-delta {
font-size: 13px;
font-weight: 400;
color: #9ca3af;
margin-left: 8px;
white-space: nowrap;
}
.vmt-option-btn.vmt-option-selected .vmt-option-delta {
color: #6b7280;
} .vmt-check-label {
display: flex;
align-items: center;
gap: 12px;
padding: 14px 18px;
background: #f9fafb;
border: 2px solid #e5e7eb;
border-radius: 12px;
cursor: pointer;
transition: border-color 0.15s, background 0.15s;
}
.vmt-check-label:hover {
border-color: #93c5fd;
background: #eff6ff;
}
.vmt-check-label:has(.vmt-option-check:checked) {
border-color: #2563eb;
background: #eff6ff;
}
.vmt-option-check {
width: 18px;
height: 18px;
accent-color: #2563eb;
cursor: pointer;
flex-shrink: 0;
}
.vmt-check-text {
font-size: 15px;
font-weight: 500;
color: #374151;
flex: 1;
} .vmt-step-nav {
display: flex;
align-items: center;
justify-content: space-between;
gap: 12px;
margin-top: 24px;
}
.vmt-btn {
display: inline-flex;
align-items: center;
justify-content: center;
padding: 12px 24px;
border-radius: 10px;
font-size: 15px;
font-weight: 600;
cursor: pointer;
border: 2px solid transparent;
transition: background 0.15s, color 0.15s, border-color 0.15s, opacity 0.15s;
white-space: nowrap;
text-decoration: none;
}
.vmt-btn:disabled {
opacity: 0.45;
cursor: not-allowed;
}
.vmt-btn-loading {
gap: 10px;
opacity: 1 !important;
cursor: wait !important;
}
.vmt-btn-spinner {
width: 16px;
height: 16px;
border: 2px solid rgba(255, 255, 255, 0.35);
border-top-color: #fff;
border-radius: 50%;
animation: vmtSpin 0.75s linear infinite;
flex-shrink: 0;
}
.vmt-btn-secondary.vmt-btn-loading .vmt-btn-spinner {
border-color: rgba(55, 65, 81, 0.2);
border-top-color: #374151;
}
.vmt-btn-primary {
background: #2563eb;
color: #fff;
border-color: #2563eb;
}
.vmt-btn-primary:hover:not(:disabled) {
background: #1d4ed8;
border-color: #1d4ed8;
}
.vmt-btn-secondary {
background: #fff;
color: #374151;
border-color: #d1d5db;
}
.vmt-btn-secondary:hover:not(:disabled) {
background: #f3f4f6;
border-color: #9ca3af;
}
.vmt-btn-ghost {
background: transparent;
color: #2563eb;
border-color: transparent;
padding: 12px 14px;
}
.vmt-btn-ghost:hover:not(:disabled) {
background: #eff6ff;
color: #1d4ed8;
} #vmt-screen-summary h3 {
font-size: 18px;
font-weight: 700;
color: #111827;
margin: 0 0 16px;
}
.vmt-summary-answers {
background: #f9fafb;
border: 1px solid #e5e7eb;
border-radius: 12px;
padding: 8px 0;
margin-bottom: 16px;
}
.vmt-summary-row {
display: flex;
justify-content: space-between;
align-items: center;
padding: 10px 16px;
gap: 12px;
border-bottom: 1px solid #f0f0f0;
}
.vmt-summary-row:last-child { border-bottom: none; }
.vmt-summary-key {
font-size: 13px;
color: #6b7280;
font-weight: 500;
}
.vmt-summary-val {
font-size: 14px;
font-weight: 600;
color: #111827;
text-align: right;
}
.vmt-payout-summary {
display: flex;
justify-content: space-between;
align-items: center;
background: #eff6ff;
border: 2px solid #bfdbfe;
border-radius: 12px;
padding: 16px 18px;
font-size: 15px;
color: #1e40af;
margin-bottom: 4px;
}
.vmt-payout-big {
font-size: 24px;
font-weight: 800;
color: #1d4ed8;
white-space: nowrap;
} #vmt-screen-details h3 {
font-size: 18px;
font-weight: 700;
margin: 0 0 18px;
color: #111827;
}
.vmt-form-section-title {
font-size: 14px;
font-weight: 700;
color: #374151;
text-transform: uppercase;
letter-spacing: 0.04em;
margin: 20px 0 12px;
border-top: 1px solid #e5e7eb;
padding-top: 16px;
}
.vmt-optional {
font-weight: 400;
text-transform: none;
letter-spacing: 0;
color: #9ca3af;
font-size: 12px;
}
.vmt-form-row {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 12px;
margin-bottom: 12px;
}
.vmt-form-group {
display: flex;
flex-direction: column;
gap: 5px;
}
.vmt-form-group--wide {
grid-column: 1 / -1;
}
.vmt-form-group--narrow {
max-width: 120px;
margin-bottom: 12px;
}
.vmt-form-group label {
font-size: 13px;
font-weight: 600;
color: #374151;
margin-bottom: 0;
}
.vmt-form-group input,
.vmt-form-group select {
padding: 10px 13px;
border: 1.5px solid #d1d5db;
border-radius: 8px;
font-size: 16px;
color: #111827;
background: #fff;
transition: border-color 0.15s, box-shadow 0.15s;
box-sizing: border-box;
width: 100%;
font-family: inherit;
}
.vmt-form-group input:focus,
.vmt-form-group select:focus {
outline: none;
border-color: #2563eb;
box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}
.vmt-req {
color: #dc2626;
font-weight: 700;
}
.vmt-form-error {
background: #fee2e2;
border: 1px solid #fca5a5;
border-radius: 8px;
padding: 10px 14px;
font-size: 13px;
color: #991b1b;
margin-top: 12px;
} .vmt-dynamic-fields {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 12px;
margin-bottom: 12px;
}
.vmt-dynamic-fields.vmt-notices {
grid-template-columns: 1fr;
margin-top: 8px;
}
.vmt-field-error {
font-size: 12px;
color: #dc2626;
min-height: 0;
}
.vmt-field-error:empty {
display: none;
}
.vmt-notice-checkbox {
display: flex;
align-items: flex-start;
gap: 10px;
padding: 10px 12px;
background: #f9fafb;
border: 1px solid #e5e7eb;
border-radius: 8px;
font-size: 13px;
color: #374151;
line-height: 1.4;
cursor: pointer;
}
.vmt-notice-checkbox input {
margin-top: 2px;
flex-shrink: 0;
accent-color: #2563eb;
} .vmt-shipping-section {
margin-bottom: 12px;
}
.vmt-shipping-hint {
font-size: 13px;
color: #6b7280;
margin: 4px 0 0;
}
.vmt-shipping-methods {
display: flex;
flex-direction: column;
gap: 10px;
} .vmt-shipping-card {
border: 2px solid #e5e7eb;
border-radius: 12px;
overflow: hidden;
transition: border-color 0.15s, background 0.15s;
}
.vmt-shipping-card-selected {
border-color: #16a34a;
background: #f0fdf4;
}
.vmt-shipping-card-header {
display: flex;
align-items: center;
justify-content: space-between;
gap: 12px;
padding: 14px 16px;
cursor: pointer;
margin: 0; }
.vmt-shipping-card-heading {
flex: 1;
}
.vmt-shipping-card-heading strong {
display: block;
font-size: 14px;
color: #111827;
}
.vmt-shipping-card-tagline {
margin: 2px 0 0;
font-size: 13px;
color: #6b7280;
}
.vmt-shipping-card-icon {
width: 40px;
height: 40px;
border-radius: 10px;
background: #fff;
border: 1px solid #e5e7eb;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}
.vmt-shipping-card-icon .bi {
font-size: 18px;
color: #374151;
}
.vmt-shipping-card-header:has(.vmt-visually-hidden:focus-visible) {
box-shadow: inset 0 0 0 3px rgba(37, 99, 235, 0.25);
}
.vmt-shipping-card-body {
padding: 0 16px 16px;
border-top: 1px solid rgba(0, 0, 0, 0.06);
} .vmt-shipping-description {
margin-top: 12px;
font-size: 13px;
color: #374151;
line-height: 1.5;
display: flex;
flex-direction: column;
gap: 6px;
}
.vmt-shipping-description p {
margin: 0 0 8px;
}
.vmt-shipping-description p:last-child {
margin-bottom: 0;
}
.vmt-shipping-description ul,
.vmt-shipping-description ol {
list-style: none;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
gap: 6px;
}
.vmt-shipping-description li {
display: flex;
align-items: flex-start;
gap: 8px;
}
.vmt-shipping-description li::before {
content: '✓';
color: #16a34a;
font-weight: 700;
flex-shrink: 0;
}
.vmt-visually-hidden {
position: absolute;
width: 0;
height: 0;
opacity: 0;
margin: 0;
pointer-events: none;
} #vmt-screen-confirm {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
padding: 16px 0;
gap: 12px;
}
.vmt-confirm-icon {
width: 64px;
height: 64px;
background: #dcfce7;
color: #16a34a;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 32px;
font-weight: 700;
}
#vmt-screen-confirm h3 {
font-size: 20px;
font-weight: 700;
color: #111827;
margin: 4px 0 0;
}
.vmt-confirm-message {
font-size: 14px;
color: #374151;
max-width: 380px;
margin: 0;
}
.vmt-confirm-payout {
background: #f0fdf4;
border: 1.5px solid #86efac;
border-radius: 10px;
padding: 12px 20px;
font-size: 14px;
color: #166534;
font-weight: 600;
}
.vmt-confirm-payout strong { font-size: 18px; } #vmt-screen-error {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
gap: 16px;
padding: 16px 0;
}
.vmt-error-icon {
font-size: 40px;
color: #f59e0b;
}
.vmt-error-msg {
font-size: 14px;
color: #374151;
max-width: 380px;
} @media (max-width: 480px) {
.vmt-modal-container {
border-radius: 16px 16px 0 0;
max-height: 96vh;
position: fixed;
bottom: 0;
left: 0;
right: 0;
max-width: 100%;
}
.vmt-modal-overlay {
align-items: flex-end;
padding: 0;
}
.vmt-form-row,
.vmt-dynamic-fields {
grid-template-columns: 1fr;
}
}
@media (min-width: 992px) {
.vmt-option-btn:hover {
border-color: #93c5fd;
background: #eff6ff;
}
}