.vbf-form-wrap {
    --vbf-field-bg: #ffffff;
    --vbf-field-border: #cbd5e1;
    --vbf-field-text: #17202a;
    --vbf-label-color: #1f2937;
    --vbf-button-bg: #31b95d;
    --vbf-button-text: #ffffff;
    --vbf-form-bg: #08130d;
    --vbf-form-border: #1f6f3b;
    --vbf-border-size: 1px;
    --vbf-radius: 6px;
    color: var(--vbf-field-text);
    margin: 24px 0;
}

.vbf-form-wrap.vbf-style-visualbuy_card,
.vbf-form-wrap.vbf-style-compact_card {
    background:
        radial-gradient(circle at 18% 0, rgba(49, 185, 93, .16), transparent 36%),
        linear-gradient(145deg, #07140c, var(--vbf-form-bg) 64%, #020805);
    border: 1px solid rgba(49, 185, 93, .5);
    border-radius: 14px;
    box-shadow: 0 22px 70px rgba(0, 0, 0, .22), inset 0 1px 0 rgba(255, 255, 255, .04);
    color: #f8fafc;
    overflow: hidden;
    padding: 28px;
    position: relative;
    width: 100%;
}

.vbf-form-wrap.vbf-style-visualbuy_card {
    max-width: none;
}

.vbf-form-wrap.vbf-style-compact_card {
    max-width: 680px;
}

.vbf-form-wrap.vbf-has-containers.vbf-style-visualbuy_card,
.vbf-form-wrap.vbf-has-containers.vbf-style-compact_card {
    width: 100%;
}

.vbf-form-wrap.vbf-has-containers.vbf-style-visualbuy_card {
    max-width: none;
}

.vbf-form-wrap.vbf-has-containers.vbf-style-compact_card {
    max-width: 980px;
}

.vbf-form-wrap.vbf-animated-border:before {
    animation: vbf-frontend-border-spin var(--vbf-border-speed, 10s) linear infinite;
    background: conic-gradient(from 0deg, transparent 0 68%, rgba(49, 185, 93, .12), #31b95d, rgba(49, 185, 93, .12), transparent 100%);
    content: "";
    inset: -2px;
    pointer-events: none;
    position: absolute;
    z-index: 0;
}

.vbf-form-wrap.vbf-animated-border:after {
    background: inherit;
    border-radius: 9px;
    content: "";
    inset: 1px;
    pointer-events: none;
    position: absolute;
    z-index: 0;
}

.vbf-form-wrap.vbf-style-visualbuy_card > *,
.vbf-form-wrap.vbf-style-compact_card > * {
    position: relative;
    z-index: 1;
}

@keyframes vbf-frontend-border-spin {
    to {
        transform: rotate(360deg);
    }
}

.vbf-form {
    box-sizing: border-box;
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(12, 1fr);
    width: 100%;
}

.vbf-field {
    box-sizing: border-box;
    grid-column: span 12;
    min-width: 0;
    width: 100%;
}

.vbf-container {
    box-sizing: border-box;
    grid-column: 1 / -1;
    min-width: 0;
    width: 100%;
}

.vbf-container-label {
    color: var(--vbf-label-color);
    font-weight: 800;
    margin: 0 0 8px;
}

.vbf-container-grid {
    box-sizing: border-box;
    display: grid;
    gap: 18px;
    grid-template-columns: 1fr;
    min-width: 0;
    width: 100%;
}

.vbf-container-cols-2 > .vbf-container-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.vbf-container-cols-3 > .vbf-container-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.vbf-container-cols-4 > .vbf-container-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.vbf-container-cols-5 > .vbf-container-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.vbf-container-cols-6 > .vbf-container-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.vbf-container-col {
    box-sizing: border-box;
    display: grid;
    gap: 18px;
    grid-template-columns: minmax(0, 1fr);
    min-width: 0;
    width: 100%;
}

.vbf-container-col > .vbf-field,
.vbf-container-col > .vbf-section-divider,
.vbf-container-col > .vbf-pagebreak,
.vbf-container-col > .vbf-layout-note {
    grid-column: 1 / -1 !important;
    margin: 0;
    max-width: none;
    min-width: 0;
    width: 100%;
}

.vbf-container-col .vbf-two-col,
.vbf-container-col .vbf-one-col,
.vbf-container-col .vbf-address-grid,
.vbf-container-col .vbf-file-control,
.vbf-container-col input:not(.vbf-file-native),
.vbf-container-col select,
.vbf-container-col textarea {
    max-width: none;
    min-width: 0;
    width: 100%;
}

.vbf-layout-half-left,
.vbf-layout-half-right {
    grid-column: span 6;
}

.vbf-layout-third-left,
.vbf-layout-third-middle,
.vbf-layout-third-right,
.vbf-layout-third-two {
    grid-column: span 4;
}

.vbf-layout-two-third {
    grid-column: span 8;
}

.vbf-layout-quarter {
    grid-column: span 3;
}

.vbf-layout-three-quarter {
    grid-column: span 9;
}

.vbf-label {
    color: var(--vbf-label-color);
    display: block;
    font-weight: 700;
    margin: 0 0 8px;
}

.vbf-label span {
    color: #d63637;
}

.vbf-field input[type="text"],
.vbf-field input[type="email"],
.vbf-field input[type="number"],
.vbf-field input[type="tel"],
.vbf-field input[type="url"],
.vbf-field input[type="password"],
.vbf-field input[type="date"],
.vbf-field input[type="file"],
.vbf-field select,
.vbf-field textarea {
    background: var(--vbf-field-bg);
    border: var(--vbf-border-size) solid var(--vbf-field-border);
    border-radius: var(--vbf-radius);
    box-sizing: border-box;
    color: var(--vbf-field-text);
    font: inherit;
    max-width: none;
    min-width: 0;
    min-height: 44px;
    padding: 10px 12px;
    width: 100%;
}

.vbf-field textarea {
    min-height: 126px;
    resize: vertical;
}

.vbf-field input[type="range"] {
    width: 100%;
}

.vbf-file-control {
    align-items: center;
    background: var(--vbf-field-bg);
    border: var(--vbf-border-size) solid var(--vbf-field-border);
    border-radius: var(--vbf-radius);
    box-sizing: border-box;
    color: var(--vbf-field-text);
    display: flex;
    gap: 12px;
    min-height: 44px;
    min-width: 0;
    padding: 0 10px 0 0;
    width: 100%;
}

.vbf-file-native {
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    height: 1px !important;
    left: -9999px;
    margin: -1px;
    opacity: 0;
    overflow: hidden;
    position: absolute !important;
    width: 1px !important;
}

.vbf-file-button {
    align-items: center;
    align-self: stretch;
    background: var(--vbf-button-bg);
    border-radius: calc(var(--vbf-radius) - 1px);
    color: var(--vbf-button-text);
    cursor: pointer;
    display: inline-flex;
    flex: 0 0 auto;
    font-weight: 800;
    justify-content: center;
    min-height: 42px;
    padding: 0 14px;
    white-space: nowrap;
}

.vbf-file-name {
    color: #6b7280;
    line-height: 1.2;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.vbf-file-control-dropzone {
    background: transparent;
    border: 0;
    display: block;
    min-height: 0;
    padding: 0;
}

.vbf-file-dropzone-wrap {
    position: relative;
    width: 100%;
}

.vbf-file-dropzone-wrap.has-vbf-example .vbf-file-dropzone {
    padding-bottom: 58px;
}

.vbf-file-dropzone {
    align-items: center;
    background: rgba(255, 255, 255, .03);
    border: 2px dashed rgba(148, 163, 184, .56);
    border-radius: var(--vbf-radius);
    box-sizing: border-box;
    color: var(--vbf-field-text);
    cursor: pointer;
    display: flex;
    justify-content: center;
    min-height: 116px;
    padding: 28px 18px;
    text-align: center;
    transition: border-color .18s ease, background .18s ease, box-shadow .18s ease;
    width: 100%;
}

.vbf-file-dropzone:hover,
.vbf-file-dropzone:focus-within,
.vbf-file-control-dropzone.is-dragover .vbf-file-dropzone {
    background: rgba(49, 185, 93, .06);
    border-color: rgba(49, 185, 93, .78);
    box-shadow: 0 12px 28px rgba(49, 185, 93, .08);
}

.vbf-file-drop-copy {
    align-items: center;
    display: inline-flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    width: 100%;
}

.vbf-file-drop-text {
    color: rgba(17, 24, 39, .72);
}

.vbf-style-visualbuy_card .vbf-file-drop-text,
.vbf-popup-surface .vbf-file-drop-text,
.vbf-flow-dialog .vbf-file-drop-text {
    color: rgba(248, 250, 252, .78);
}

.vbf-file-drop-button {
    background: var(--vbf-button-bg);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 7px;
    color: var(--vbf-button-text);
    display: inline-flex;
    font-weight: 800;
    line-height: 1;
    padding: 10px 15px;
}

.vbf-file-control-dropzone .vbf-file-name {
    flex: 0 0 100%;
    margin-top: 4px;
    overflow: visible;
    text-align: center;
    text-overflow: clip;
    white-space: normal;
    width: 100%;
}

.vbf-file-help {
    color: #8b949e;
    display: block;
    font-size: 14px;
    margin-top: 12px;
    text-align: center;
}

.vbf-file-example-slot {
    bottom: 16px;
    left: 18px;
    position: absolute;
    z-index: 3;
}

.vbf-file-example-slot .vbf-example {
    margin-top: 0;
}

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

.vbf-example-link {
    background: transparent;
    border: 0;
    color: var(--vbf-button-bg);
    cursor: pointer;
    font: inherit;
    font-size: 14px;
    font-weight: 800;
    padding: 0;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.vbf-example-link:hover,
.vbf-example-link:focus {
    color: #22c55e;
}

.vbf-example-card {
    align-items: center;
    background: rgba(8, 24, 14, .82);
    border: 1px solid rgba(49, 185, 93, .42);
    border-radius: var(--vbf-radius);
    box-sizing: border-box;
    color: #f8fafc;
    cursor: pointer;
    display: flex;
    gap: 16px;
    justify-content: space-between;
    min-height: 96px;
    padding: 14px;
    text-align: left;
    width: 100%;
}

.vbf-example-card:hover,
.vbf-example-card:focus {
    border-color: #31b95d;
    box-shadow: 0 12px 30px rgba(49, 185, 93, .12);
}

.vbf-example-card-copy {
    display: grid;
    gap: 5px;
}

.vbf-example-card-copy strong {
    color: #ffffff;
    font-size: 17px;
}

.vbf-example-card-copy small {
    color: rgba(248, 250, 252, .68);
    font-size: 13px;
    line-height: 1.45;
}

.vbf-example-card-images {
    display: flex;
    flex: 0 0 auto;
    gap: 8px;
}

.vbf-example-card-images img {
    aspect-ratio: 4 / 3;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 8px;
    height: 70px;
    object-fit: cover;
    width: 92px;
}

.vbf-example-modal[hidden] {
    display: none;
}

.vbf-example-modal {
    align-items: center;
    background: rgba(3, 7, 18, .76);
    display: flex;
    inset: 0;
    justify-content: center;
    padding: 20px;
    position: fixed !important;
    z-index: 2147483000 !important;
}

.vbf-example-dialog {
    background: linear-gradient(145deg, #07140c, #020705);
    border: 1px solid rgba(49, 185, 93, .55);
    border-radius: 12px;
    box-shadow: 0 26px 80px rgba(0, 0, 0, .34);
    color: #f8fafc;
    max-width: 1040px;
    overflow: visible;
    padding: 24px;
    position: relative;
    z-index: 1;
    width: min(1040px, 100%);
}

.vbf-example-close {
    align-items: center;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 999px;
    color: #ffffff;
    cursor: pointer;
    display: inline-flex;
    font-size: 24px;
    height: 38px;
    justify-content: center;
    line-height: 1;
    position: absolute;
    right: 14px;
    top: 14px;
    width: 38px;
}

.vbf-example-head {
    margin: 0 46px 18px 0;
}

.vbf-example-head span {
    color: #31b95d;
    display: block;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.vbf-example-head h3 {
    color: #ffffff;
    font-size: 26px;
    line-height: 1.18;
    margin: 0 0 7px;
}

.vbf-example-head p {
    color: rgba(248, 250, 252, .74);
    margin: 0;
}

.vbf-example-images {
    display: grid;
    gap: 16px;
}

.vbf-example-count-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.vbf-example-images figure {
    margin: 0;
    min-width: 0;
}

.vbf-example-images figcaption {
    background: #31b95d;
    border-radius: 8px 8px 0 0;
    color: #ffffff;
    display: inline-block;
    font-size: 18px;
    font-weight: 900;
    margin-left: 14px;
    padding: 8px 18px;
}

.vbf-example-images img {
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 10px;
    box-sizing: border-box;
    display: block;
    height: auto;
    max-height: calc(100vh - 190px);
    object-fit: contain;
    width: 100%;
}

body.vbf-example-open {
    overflow: hidden;
}

.vbf-field small,
.vbf-description {
    color: #6b7280;
    display: block;
    font-size: 13px;
    margin-top: 6px;
}

.vbf-tooltip {
    display: inline-flex;
    line-height: 1;
    margin-left: 7px;
    position: relative;
    vertical-align: middle;
    z-index: 4;
}

.vbf-tooltip-icon {
    align-items: center;
    background: #26302c;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 999px;
    color: #e5e7eb;
    display: inline-flex;
    font-size: 12px;
    font-weight: 900;
    height: 22px;
    justify-content: center;
    transition: background .16s ease, border-color .16s ease, color .16s ease, transform .16s ease;
    width: 22px;
}

.vbf-tooltip:hover .vbf-tooltip-icon,
.vbf-tooltip:focus .vbf-tooltip-icon,
.vbf-tooltip:focus-within .vbf-tooltip-icon {
    background: #31b95d;
    border-color: #31b95d;
    color: #06110b;
    transform: translateY(-1px);
}

.vbf-tooltip-bubble {
    background: #111713;
    border: 1px solid rgba(49, 185, 93, .65);
    border-radius: 8px;
    bottom: calc(100% + 10px);
    box-shadow: 0 18px 38px rgba(0, 0, 0, .32);
    color: #f8fafc;
    font-size: 13px;
    font-weight: 700;
    left: 50%;
    line-height: 1.35;
    max-width: min(260px, 82vw);
    opacity: 0;
    padding: 10px 12px;
    pointer-events: none;
    position: absolute;
    transform: translate(-50%, 4px);
    transition: opacity .16s ease, transform .16s ease;
    visibility: hidden;
    white-space: normal;
    width: max-content;
}

.vbf-tooltip-bubble:after {
    background: #111713;
    border-bottom: 1px solid rgba(49, 185, 93, .65);
    border-right: 1px solid rgba(49, 185, 93, .65);
    bottom: -6px;
    content: "";
    height: 10px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%) rotate(45deg);
    width: 10px;
}

.vbf-tooltip:hover .vbf-tooltip-bubble,
.vbf-tooltip:focus .vbf-tooltip-bubble,
.vbf-tooltip:focus-within .vbf-tooltip-bubble {
    opacity: 1;
    transform: translate(-50%, 0);
    visibility: visible;
}

.vbf-two-col,
.vbf-one-col,
.vbf-address-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: 1fr 1fr;
}

.vbf-one-col {
    grid-template-columns: 1fr;
}

.vbf-two-col label {
    display: grid;
    gap: 5px;
}

.vbf-two-col label span {
    color: #8a96a3;
    font-size: 13px;
}

.vbf-appointment {
    display: grid;
    gap: 8px;
}

.vbf-appointment-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.vbf-appointment-grid label {
    display: grid;
    gap: 6px;
}

.vbf-appointment-grid label span,
.vbf-appointment-note {
    color: #8a96a3;
    font-size: 13px;
}

.vbf-address-grid {
    grid-template-columns: 1fr 120px 1fr;
}

.vbf-choice-list {
    display: grid;
    gap: 9px;
}

.vbf-choice-list label {
    align-items: flex-start;
    display: flex;
    gap: 8px;
}

.vbf-choice-list input {
    margin: 0;
}

.vbf-choice-style-buttons,
.vbf-choice-style-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.vbf-choice-style-buttons label,
.vbf-choice-style-pills label {
    background: rgba(49, 185, 93, .16);
    border: 1px solid rgba(49, 185, 93, .24);
    border-radius: 8px;
    color: inherit;
    cursor: pointer;
    font-weight: 700;
    min-height: 42px;
    padding: 0 18px;
}

.vbf-choice-style-pills label {
    border-radius: 999px;
}

.vbf-choice-style-buttons input,
.vbf-choice-style-pills input {
    position: absolute;
    opacity: 0;
}

.vbf-choice-style-buttons label:has(input:checked),
.vbf-choice-style-pills label:has(input:checked) {
    background: var(--vbf-button-bg);
    border-color: var(--vbf-button-bg);
    color: var(--vbf-button-text);
}

.vbf-choice-copy {
    display: grid;
    gap: 3px;
}

.vbf-choice-title {
    font-weight: 800;
}

.vbf-choice-description {
    color: #6b7280;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.45;
    margin: 0;
}

.vbf-choice-style-cards {
    display: grid;
    gap: 12px;
}

.vbf-choice-style-cards label {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(49, 185, 93, .28);
    border-radius: 10px;
    color: #f8fafc;
    cursor: pointer;
    padding: 15px;
    transition: border-color .16s ease, background .16s ease;
}

.vbf-choice-style-cards label:hover {
    background: rgba(49, 185, 93, .1);
    border-color: rgba(49, 185, 93, .55);
}

.vbf-choice-style-cards label:has(input:checked) {
    background: rgba(49, 185, 93, .18);
    border-color: #31b95d;
    box-shadow: inset 0 0 0 1px rgba(49, 185, 93, .42);
}

.vbf-choice-style-cards .vbf-choice-description {
    color: rgba(248, 250, 252, .7);
}

.vbf-section-divider {
    align-items: center;
    color: #475569;
    display: flex;
    font-weight: 800;
    gap: 12px;
    grid-column: 1 / -1;
    margin: 4px 0;
}

.vbf-section-divider:before,
.vbf-section-divider:after {
    background: #dbe3ec;
    content: "";
    flex: 1;
    height: 1px;
}

.vbf-content-field {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: var(--vbf-radius);
    padding: 16px;
}

.vbf-content-field h3 {
    margin-top: 0;
}

.vbf-mockup-intro-field.vbf-content-field {
    background: transparent;
    border: 0;
    color: #f8fafc;
    padding: 0;
}

.vbf-mockup-intro {
    display: grid;
    gap: 8px;
}

.vbf-mockup-intro span {
    color: #38d86f;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.vbf-mockup-intro h2 {
    color: #ffffff;
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.08;
    margin: 0;
}

.vbf-mockup-intro p {
    color: rgba(248, 250, 252, .76);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    max-width: 760px;
}

.vbf-pagebreak,
.vbf-layout-note {
    background: #f2f6fa;
    border: 1px dashed #cbd5e1;
    border-radius: var(--vbf-radius);
    color: #64748b;
    grid-column: 1 / -1;
    padding: 13px;
    text-align: center;
}

.vbf-payment-line,
.vbf-total {
    align-items: center;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: var(--vbf-radius);
    color: #17202a;
    display: flex;
    justify-content: space-between;
    padding: 14px;
}

.vbf-total {
    font-size: 18px;
}

.vbf-payment-notice {
    background: #ecfdf5;
    border: 1px solid #bbf7d0;
    border-radius: var(--vbf-radius);
    color: #166534;
    padding: 13px;
}

.vbf-is-conditionally-hidden,
.vbf-field[hidden] {
    display: none !important;
}

.vbf-submit {
    background: var(--vbf-button-bg);
    border: 0;
    border-radius: var(--vbf-radius);
    color: var(--vbf-button-text);
    cursor: pointer;
    font: inherit;
    font-weight: 800;
    grid-column: 1 / -1;
    justify-self: start;
    min-height: 46px;
    padding: 0 22px;
}

.vbf-submit:hover {
    filter: brightness(.95);
}

.vbf-message {
    border-radius: var(--vbf-radius);
    margin: 0 0 18px;
    padding: 14px 16px;
}

.vbf-message ul {
    margin-bottom: 0;
}

.vbf-flow-message p {
    margin: 8px 0 0;
}

.vbf-success {
    background: #ecfdf5;
    border: 1px solid #bbf7d0;
    color: #166534;
}

.vbf-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
}

.vbf-flow-wrap {
    width: 100%;
}

.vbf-popup-trigger {
    align-items: center;
    background: #31b95d;
    border: 0;
    border-radius: 8px;
    color: #ffffff;
    cursor: pointer;
    display: inline-flex;
    font: inherit;
    font-weight: 850;
    gap: 8px;
    min-height: 48px;
    padding: 0 22px;
}

.vbf-popup-trigger:hover {
    filter: brightness(.96);
}

.vbf-popup-modal[hidden] {
    display: none;
}

.vbf-popup-modal {
    align-items: center;
    background: rgba(3, 7, 18, .78);
    backdrop-filter: blur(14px);
    display: flex;
    inset: 0;
    justify-content: center;
    padding: 22px;
    position: fixed;
    z-index: 99998;
}

.vbf-popup-dialog {
    background:
        radial-gradient(circle at 22% 0, rgba(49, 185, 93, .16), transparent 35%),
        linear-gradient(145deg, #07140c, #020705 68%, #06130b);
    border: 1px solid rgba(49, 185, 93, .58);
    border-radius: 18px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, .42), inset 0 1px 0 rgba(255, 255, 255, .05);
    color: #f8fafc;
    max-height: min(92vh, 920px);
    max-width: 900px;
    overflow: auto;
    padding: 30px;
    position: relative;
    width: min(900px, 100%);
}

.vbf-popup-close {
    align-items: center;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 999px;
    color: #f8fafc;
    cursor: pointer;
    display: inline-flex;
    font-size: 24px;
    height: 42px;
    justify-content: center;
    line-height: 1;
    position: absolute;
    right: 18px;
    top: 18px;
    width: 42px;
}

.vbf-popup-close:hover {
    background: rgba(49, 185, 93, .18);
    border-color: rgba(49, 185, 93, .42);
}

.vbf-popup-head {
    margin: 0 54px 22px 0;
}

.vbf-popup-head span {
    color: #31b95d;
    display: block;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.vbf-popup-head h3 {
    color: #ffffff;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.05;
    margin: 0;
}

.vbf-popup-head p {
    color: rgba(248, 250, 252, .78);
    font-size: clamp(16px, 1.6vw, 18px);
    line-height: 1.5;
    margin: 12px 0 0;
    max-width: 640px;
}

.vbf-popup-body .vbf-flow-wrap,
.vbf-popup-body .vbf-form-wrap {
    margin: 0;
}

.vbf-popup-body .vbf-form-wrap.vbf-style-visualbuy_card,
.vbf-popup-body .vbf-form-wrap.vbf-style-compact_card {
    background: rgba(2, 10, 6, .72);
    border-color: rgba(49, 185, 93, .55);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04);
    padding: 24px;
}

.vbf-popup-body .vbf-message {
    margin-bottom: 16px;
}

body.vbf-popup-open {
    overflow: hidden;
}

.vbf-flow-message[hidden],
.vbf-flow-modal[hidden] {
    display: none;
}

.vbf-flow-modal {
    align-items: center;
    background: rgba(3, 7, 18, .72);
    display: flex;
    inset: 0;
    justify-content: center;
    padding: 20px;
    position: fixed;
    z-index: 99999;
}

.vbf-flow-dialog {
    background: linear-gradient(145deg, #07140c, #020705);
    border: 1px solid rgba(49, 185, 93, .55);
    border-radius: 10px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, .28);
    color: #f8fafc;
    max-height: min(90vh, 900px);
    max-width: 860px;
    overflow: auto;
    padding: 24px;
    position: relative;
    width: min(860px, 100%);
}

.vbf-flow-close {
    align-items: center;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 999px;
    color: #f8fafc;
    cursor: pointer;
    display: inline-flex;
    font-size: 22px;
    height: 36px;
    justify-content: center;
    line-height: 1;
    position: absolute;
    right: 14px;
    top: 14px;
    width: 36px;
}

.vbf-flow-dialog-head {
    margin: 0 44px 18px 0;
}

.vbf-flow-dialog-head span {
    color: #31b95d;
    display: block;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .06em;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.vbf-flow-dialog-head h3 {
    color: #ffffff;
    font-size: 26px;
    line-height: 1.2;
    margin: 0 0 6px;
}

.vbf-flow-dialog-head p {
    color: rgba(248, 250, 252, .74);
    margin: 0;
}

.vbf-flow-secondary {
    margin: 0;
}

.vbf-flow-dialog .vbf-flow-secondary.vbf-style-visualbuy_card,
.vbf-flow-dialog .vbf-flow-secondary.vbf-style-compact_card {
    background: transparent;
    border: 0;
    padding: 0;
}

.vbf-hp {
    left: -9999px;
    opacity: 0;
    position: absolute;
}

.vbf-secondary-modal[hidden] {
    display: none;
}

.vbf-secondary-modal {
    align-items: center;
    background: rgba(3, 7, 18, .72);
    display: flex;
    inset: 0;
    justify-content: center;
    padding: 20px;
    position: fixed;
    z-index: 99999;
}

.vbf-secondary-dialog {
    background: #ffffff;
    border: 1px solid #dbe7de;
    border-radius: 10px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, .28);
    color: #17202a;
    max-width: 560px;
    padding: 24px;
    width: min(560px, 100%);
}

.vbf-secondary-dialog h3 {
    font-size: 24px;
    margin: 0 0 8px;
}

.vbf-secondary-copy {
    color: #5f6b7a;
    margin-bottom: 16px;
}

.vbf-secondary-copy p {
    margin: 0 0 8px;
}

.vbf-secondary-dialog label {
    color: #17202a;
    display: grid;
    font-weight: 800;
    gap: 8px;
}

.vbf-secondary-dialog label span {
    color: #d63637;
}

.vbf-secondary-dialog input,
.vbf-secondary-dialog textarea {
    border: 1px solid #cbd5e1;
    border-radius: 7px;
    box-sizing: border-box;
    color: #17202a;
    font: inherit;
    min-height: 46px;
    padding: 10px 12px;
    width: 100%;
}

.vbf-secondary-dialog textarea {
    min-height: 118px;
    resize: vertical;
}

.vbf-secondary-error {
    color: #b91c1c;
    font-weight: 700;
    margin: 10px 0 0;
}

.vbf-secondary-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 18px;
}

.vbf-secondary-back,
.vbf-secondary-final {
    border: 0;
    border-radius: 7px;
    cursor: pointer;
    font: inherit;
    font-weight: 800;
    min-height: 44px;
    padding: 0 16px;
}

.vbf-secondary-back {
    background: #edf2f7;
    color: #334155;
}

.vbf-secondary-final {
    background: var(--vbf-button-bg);
    color: var(--vbf-button-text);
}

body.vbf-secondary-open {
    overflow: hidden;
}

@media (max-width: 720px) {
    .vbf-popup-modal {
        align-items: stretch;
        padding: 12px;
    }

    .vbf-popup-dialog {
        max-height: calc(100vh - 24px);
        padding: 20px;
        width: 100%;
    }

    .vbf-popup-close {
        height: 38px;
        right: 14px;
        top: 14px;
        width: 38px;
    }

    .vbf-popup-head {
        margin-right: 44px;
    }

    .vbf-popup-head h3 {
        font-size: 28px;
    }

    .vbf-popup-body .vbf-form-wrap.vbf-style-visualbuy_card,
    .vbf-popup-body .vbf-form-wrap.vbf-style-compact_card {
        padding: 18px;
    }

    .vbf-file-control {
        align-items: stretch;
    }

    .vbf-flow-modal {
        align-items: stretch;
        padding: 12px;
    }

    .vbf-flow-dialog {
        max-height: calc(100vh - 24px);
        padding: 18px;
    }

    .vbf-example-dialog {
        max-height: calc(100vh - 24px);
        padding: 18px;
    }

    .vbf-example-count-2 {
        grid-template-columns: 1fr;
    }

    .vbf-example-card {
        align-items: stretch;
        flex-direction: column;
    }

    .vbf-example-card-images {
        width: 100%;
    }

    .vbf-example-card-images img {
        flex: 1 1 0;
        height: auto;
        width: 50%;
    }

    .vbf-flow-dialog-head h3 {
        font-size: 22px;
    }

    .vbf-form {
        display: block;
    }

    .vbf-field,
    .vbf-submit,
    .vbf-section-divider,
    .vbf-pagebreak,
    .vbf-layout-note {
        margin-bottom: 16px;
    }

    .vbf-two-col,
    .vbf-address-grid,
    .vbf-container-grid,
    .vbf-appointment-grid {
        grid-template-columns: 1fr;
    }

    .vbf-tooltip-bubble {
        left: auto;
        right: -8px;
        transform: translateY(4px);
    }

    .vbf-tooltip-bubble:after {
        left: auto;
        right: 14px;
        transform: rotate(45deg);
    }

    .vbf-tooltip:hover .vbf-tooltip-bubble,
    .vbf-tooltip:focus .vbf-tooltip-bubble,
    .vbf-tooltip:focus-within .vbf-tooltip-bubble {
        transform: translateY(0);
    }
}

@media (min-width: 721px) and (max-width: 980px) {
    .vbf-container-cols-4 > .vbf-container-grid,
    .vbf-container-cols-5 > .vbf-container-grid,
    .vbf-container-cols-6 > .vbf-container-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
