:root {
    --vf-forest: #173f33;
    --vf-forest-2: #235a49;
    --vf-gold: #d5aa42;
    --vf-orange: #c96332;
    --vf-cream: #f5f0e8;
    --vf-paper: #fff;
    --vf-ink: #1b241f;
    --vf-muted: #69736e;
    --vf-line: #dcded9;
    --vf-soft: #eef2ee;
    --vf-danger: #a43232;
    --vf-success: #217544
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--vf-cream);
    color: var(--vf-ink);
    font-family: "DM Sans", sans-serif;
    overflow-x: hidden
}

.vf-page [hidden],
.vf-modal [hidden],
.vf-modal[hidden] {
    display: none !important
}

body>nav,
body>nav.scrolled {
    background: var(--vf-forest)
}

button,
input,
select,
textarea {
    font: inherit
}

button {
    cursor: pointer
}

.vf-page {
    padding-top: 100px;
    min-height: 100vh;
    background: var(--vf-cream)
}

.vf-hero {
    position: relative;
    min-height: clamp(300px, 26vw, 420px);
    display: flex;
    align-items: flex-end;
    background-color: #173f33;
    background-image: var(--vf-hero);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    color: #fff;
    overflow: hidden
}

.vf-hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(8, 27, 21, .9), rgba(8, 27, 21, .5) 55%, rgba(8, 27, 21, .16))
}

.vf-hero-content {
    position: relative;
    width: min(1360px, calc(100% - 64px));
    margin: 0 auto;
    padding: 58px 0 48px
}

.vf-hero h1 {
    max-width: 800px;
    margin: 10px 0 8px;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(32px, 4vw, 52px);
    line-height: .98;
    font-weight: 500
}

.vf-hero h1 span {
    color: var(--vf-gold);
    display: block;
}

.vf-hero p {
    max-width: 700px;
    margin: 0;
    font-size: 16px;
    line-height: 1.7
}

.vf-kicker {
    margin: 0 0 8px !important;
    color: var(--vf-gold);
    font-size: 11px !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .16em
}

.vf-back-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    color: #fff;
    text-decoration: none;
    font-size: 13px
}

.vf-back-link:hover {
    text-decoration: underline
}

.vf-app-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 28px;
    width: min(1360px, calc(100% - 64px));
    margin: 0 auto;
    padding: 36px 0 80px;
    align-items: start
}

.vf-main-column {
    min-width: 0
}

.vf-planner-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 24px;
    background: var(--vf-forest);
    border: 1px solid rgba(255, 255, 255, .08)
}

.vf-planner-tab {
    min-height: 72px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    border: 0;
    border-right: 1px solid rgba(255, 255, 255, .14);
    background: transparent;
    color: rgba(255, 255, 255, .62);
    font-weight: 600;
    text-align: left
}

.vf-planner-tab:last-child {
    border-right: 0
}

.vf-planner-tab:not(:disabled):hover {
    background: rgba(255, 255, 255, .07);
    color: #fff
}

.vf-planner-tab.is-active {
    background: var(--vf-forest-2);
    color: #fff
}

.vf-planner-tab.is-done {
    color: #fff
}

.vf-planner-tab.is-done .vf-tab-check {
    background: var(--vf-gold);
    color: var(--vf-forest)
}

.vf-planner-tab:disabled {
    cursor: not-allowed
}

.vf-tab-check {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    flex: none;
    border: 1px solid currentColor;
    border-radius: 50%;
    font-size: 13px
}

.vf-checkout-nav {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 24px
}

.vf-checkout-step {
    min-width: 0;
    min-height: 78px;
    padding: 10px 8px;
    border: 1px solid var(--vf-line);
    background: #fff;
    color: #89908c;
    text-align: center
}

.vf-checkout-step span {
    width: 29px;
    height: 29px;
    display: grid;
    place-items: center;
    margin: 0 auto 6px;
    border-radius: 50%;
    background: #e5e8e5;
    font-size: 12px;
    font-weight: 700
}

.vf-checkout-step strong {
    display: block;
    font-size: 10px;
    line-height: 1.25;
    overflow-wrap: anywhere
}

.vf-checkout-step.is-active {
    border-color: var(--vf-forest);
    background: var(--vf-forest);
    color: #fff
}

.vf-checkout-step.is-active span {
    background: var(--vf-gold);
    color: var(--vf-forest)
}

.vf-checkout-step.is-done {
    border-color: #bad2c4;
    color: var(--vf-forest)
}

.vf-checkout-step.is-done span {
    background: var(--vf-success);
    color: #fff
}

.vf-screen {
    display: none
}

.vf-screen.is-active {
    display: block;
    animation: vfFade .28s ease
}

@keyframes vfFade {
    from {
        opacity: .25;
        transform: translateY(5px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.vf-screen-head {
    margin: 0 0 24px;
    padding: 0 4px
}

.vf-screen-head h2 {
    margin: 0 0 9px;
    font-family: "Cormorant Garamond", serif;
    font-size: 42px;
    line-height: 1.05;
    font-weight: 600
}

.vf-screen-head>p:last-child {
    max-width: 760px;
    margin: 0;
    color: var(--vf-muted);
    line-height: 1.65
}

.vf-card {
    margin-bottom: 18px;
    padding: 26px;
    border: 1px solid var(--vf-line);
    background: #fff
}

.vf-card h3 {
    margin: 0 0 8px;
    font-size: 18px
}

.vf-card p {
    margin: 0;
    color: var(--vf-muted);
    line-height: 1.6
}

.vf-card-title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px
}

.vf-card-title-row h3 {
    margin: 0
}

.vf-card-title-row>strong {
    color: var(--vf-forest);
    font-size: 18px;
    text-align: right
}

.vf-card-title-row>strong small {
    display: block;
    color: var(--vf-muted);
    font-size: 11px;
    font-weight: 500
}

.vf-label {
    margin: 0 0 5px !important;
    color: var(--vf-orange) !important;
    font-size: 10px !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .13em
}

.vf-icon-button {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    flex: none;
    border: 1px solid var(--vf-line);
    background: #fff;
    color: var(--vf-forest);
    font-size: 17px
}

.vf-icon-button:hover {
    border-color: var(--vf-gold);
    background: #fff9ec
}

.vf-link-button,
.vf-text-link {
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--vf-forest);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px
}

.vf-link-button:hover,
.vf-text-link:hover {
    color: var(--vf-orange)
}

.vf-date-list {
    display: grid;
    gap: 10px
}

.vf-date-option {
    display: grid;
    grid-template-columns: 22px 1fr auto;
    gap: 13px;
    align-items: center;
    padding: 16px;
    border: 1px solid var(--vf-line);
    transition: .2s
}

.vf-date-option:hover {
    border-color: #9fb6aa;
    background: #f8faf8
}

.vf-date-option.is-selected {
    border-color: var(--vf-forest);
    box-shadow: inset 4px 0 var(--vf-gold)
}

.vf-date-option input,
.vf-service-option input,
.vf-flight-top input {
    position: absolute;
    opacity: 0;
    pointer-events: none
}

.vf-radio-dot {
    width: 17px;
    height: 17px;
    border: 1px solid #87908c;
    border-radius: 50%;
    position: relative
}

.vf-date-option input:checked~.vf-radio-dot:after,
.vf-service-option input:checked~.vf-radio-dot:after {
    content: "";
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    background: var(--vf-forest)
}

.vf-date-option strong {
    display: block;
    font-size: 15px
}

.vf-date-option small {
    display: block;
    margin-top: 4px;
    color: var(--vf-muted)
}

.vf-date-option em {
    padding: 5px 9px;
    background: #e6f2e9;
    color: var(--vf-success);
    font-size: 10px;
    font-style: normal;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em
}

.vf-room-table {
    border: 1px solid var(--vf-line);
    overflow: hidden
}

.vf-room-head,
.vf-room-row {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(72px, .65fr) minmax(82px, .7fr);
    gap: 10px;
    align-items: center;
    padding: 14px 16px
}

.vf-room-head {
    background: var(--vf-forest);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase
}

.vf-room-row {
    border-top: 1px solid var(--vf-line);
    font-size: 14px
}

.vf-room-row:first-of-type {
    border-top: 0
}

.vf-inline-control {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid var(--vf-line)
}

.vf-inline-control label {
    font-weight: 600
}

.vf-inline-control select {
    min-width: 200px
}

.vf-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 24px
}

.vf-btn {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 11px 20px;
    border: 1px solid transparent;
    background: #fff;
    color: var(--vf-ink);
    font-weight: 700;
    text-decoration: none;
    transition: .2s
}

.vf-btn:hover {
    transform: translateY(-1px)
}

.vf-btn-primary {
    background: var(--vf-forest);
    color: #fff
}

.vf-btn-primary:hover {
    background: var(--vf-forest-2)
}

.vf-btn-outline {
    border-color: var(--vf-forest);
    color: var(--vf-forest)
}

.vf-btn-outline:hover {
    background: #edf3ef
}

.vf-btn-quiet {
    border-color: var(--vf-line);
    background: transparent;
    color: var(--vf-forest)
}

.vf-choice-grid {
    display: grid;
    grid-template-columns: 1.35fr .65fr;
    gap: 18px
}

.vf-choice-grid.is-single {
    grid-template-columns: 1fr
}

.vf-choice-grid.is-single .vf-choice-card-none {
    min-height: 190px
}

.vf-choice-grid.has-multiple {
    grid-template-columns: repeat(2, minmax(0, 1fr))
}

.vf-choice-grid.has-multiple .vf-choice-card:not(.vf-choice-card-none) {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    min-height: 132px
}

.vf-choice-grid.has-multiple .vf-choice-card>img {
    width: 112px;
    height: 100%;
    min-height: 132px
}

.vf-choice-grid.has-multiple .vf-choice-card>div {
    padding: 16px
}

.vf-choice-grid.has-multiple .vf-choice-card h3 {
    margin: 0;
    font-size: 17px;
    line-height: 1.3
}

.vf-choice-content {
    display: flex;
    min-width: 0;
    flex-direction: column;
    justify-content: center
}

.vf-choice-price {
    display: block;
    margin-top: 7px;
    color: var(--vf-muted);
    font-size: 12px
}

.vf-choice-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 13px
}

.vf-choice-controls .vf-btn {
    min-height: 36px;
    padding: 7px 12px;
    font-size: 12px
}

.vf-choice-controls .vf-text-link {
    white-space: nowrap
}

.vf-choice-card {
    overflow: hidden;
    border: 1px solid var(--vf-line);
    background: #fff;
    transition: .2s
}

.vf-choice-card.is-selected {
    border-color: var(--vf-forest);
    background: #f3f8f4;
    box-shadow: inset 0 0 0 1px var(--vf-forest)
}

.vf-choice-card.is-selected [data-select-extension] {
    background: var(--vf-forest);
    color: #fff
}

.vf-choice-card>img {
    width: 100%;
    height: 230px;
    display: block;
    object-fit: cover
}

.vf-choice-card>div {
    padding: 24px
}

.vf-choice-card h3 {
    margin: 9px 0;
    font-size: 21px
}

.vf-choice-card p {
    color: var(--vf-muted);
    line-height: 1.6
}

.vf-choice-tag {
    color: var(--vf-orange);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em
}

.vf-choice-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid var(--vf-line)
}

.vf-choice-footer strong {
    font-size: 13px
}

.vf-choice-card-none {
    display: flex;
    align-items: center;
    text-align: center
}

.vf-choice-card-none>div:last-child {
    width: 100%
}

.vf-individual-extension-choice {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 18px;
    padding: 18px 20px;
    border: 1px solid var(--vf-line);
    background: #fff;
    color: var(--vf-forest);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.55;
    cursor: pointer
}

.vf-individual-extension-choice input {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    margin: 1px 0 0;
    accent-color: var(--vf-forest)
}

.vf-none-icon {
    width: 48px !important;
    height: 48px;
    display: grid;
    place-items: center;
    margin: 0 auto 12px;
    padding: 0 !important;
    border-radius: 50%;
    background: var(--vf-soft);
    color: var(--vf-forest);
    font-size: 22px
}

.vf-flight-card {
    margin-bottom: 16px;
    padding: 24px;
    border: 1px solid var(--vf-line);
    background: #fff
}

.vf-flight-card.is-selected {
    border-color: var(--vf-forest);
    box-shadow: inset 4px 0 var(--vf-gold)
}

.vf-flight-top {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    margin-bottom: 22px
}

.vf-flight-top label {
    display: flex;
    gap: 12px;
    align-items: center
}

.vf-flight-top label>span {
    width: 17px;
    height: 17px;
    border: 1px solid #87908c;
    border-radius: 50%;
    position: relative
}

.vf-flight-top input:checked+span:after {
    content: "";
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    background: var(--vf-forest)
}

.vf-flight-leg {
    display: grid;
    grid-template-columns: 120px 55px minmax(140px, 1fr) 55px;
    gap: 14px;
    align-items: center;
    padding: 15px 0;
    border-top: 1px solid var(--vf-line)
}

.vf-flight-leg time {
    color: var(--vf-muted);
    font-size: 13px
}

.vf-flight-endpoint {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0
}

.vf-flight-endpoint strong {
    font-size: 17px;
    line-height: 1
}

.vf-flight-endpoint b {
    font-size: 18px
}

.vf-flight-endpoint:last-child {
    text-align: right
}

.vf-flight-leg>span {
    position: relative;
    text-align: center;
    color: var(--vf-muted);
    font-size: 11px
}

.vf-flight-leg>span small,
.vf-flight-leg>span em {
    display: block;
    font-style: normal
}

.vf-flight-leg>span em {
    margin-top: 4px;
    color: var(--vf-ink);
    font-size: 10px
}

.vf-flight-leg i {
    height: 1px;
    display: block;
    margin-bottom: 7px;
    background: var(--vf-gold);
    position: relative
}

.vf-flight-leg i:after {
    content: "";
    position: absolute;
    right: 0;
    top: -3px;
    border-left: 6px solid var(--vf-gold);
    border-top: 3px solid transparent;
    border-bottom: 3px solid transparent
}

.vf-flight-baggage {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 8px;
    padding: 14px 16px;
    background: var(--vf-soft);
    color: var(--vf-forest);
    font-size: 13px
}

.vf-flight-baggage strong {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .06em
}

.vf-service-options {
    display: grid;
    gap: 10px;
    margin-top: 18px
}

.vf-service-option {
    display: grid;
    grid-template-columns: 20px 1fr auto;
    align-items: center;
    gap: 13px;
    padding: 17px;
    border: 1px solid var(--vf-line)
}

.vf-service-option.is-selected {
    border-color: var(--vf-forest);
    background: #f8faf8
}

.vf-service-option strong,
.vf-service-option small {
    display: block
}

.vf-service-option small {
    margin-top: 4px;
    color: var(--vf-muted)
}

.vf-digital-document {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 18px;
    padding: 17px;
    border: 1px solid var(--vf-forest);
    background: #f8faf8
}

.vf-digital-document strong,
.vf-digital-document small {
    display: block
}

.vf-digital-document small {
    margin-top: 4px;
    color: var(--vf-muted)
}

.vf-digital-document>b {
    flex: none;
    padding: 7px 10px;
    background: #e7f0e9;
    color: var(--vf-forest);
    font-size: 11px;
    text-transform: uppercase
}

.vf-form-grid {
    display: grid;
    gap: 16px;
    margin-top: 20px
}

.vf-form-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr))
}

.vf-field {
    display: flex;
    flex-direction: column;
    gap: 7px;
    min-width: 0
}

.vf-field>span {
    font-size: 12px;
    font-weight: 700
}

.vf-field input,
.vf-field select,
.vf-field textarea,
.vf-inline-control select,
.vf-coupon-row input,
.vf-otp-box input {
    width: 100%;
    min-height: 47px;
    padding: 11px 13px;
    border: 1px solid #cfd4d0;
    border-radius: 0;
    background: #fff;
    color: var(--vf-ink);
    outline: 0
}

.vf-field textarea {
    min-height: 110px;
    resize: vertical
}

.vf-field input:focus,
.vf-field select:focus,
.vf-field textarea:focus,
.vf-coupon-row input:focus,
.vf-otp-box input:focus {
    border-color: var(--vf-forest);
    box-shadow: 0 0 0 3px rgba(23, 63, 51, .1)
}

.vf-field.has-error input,
.vf-field.has-error select,
.vf-field.has-error textarea {
    border-color: var(--vf-danger)
}

.vf-field-error {
    min-height: 14px;
    color: var(--vf-danger);
    font-size: 11px
}

.vf-field>.vf-password-control {
    position: relative;
    display: block;
    width: 100%;
    font-size: inherit;
    font-weight: 400
}

.vf-password-control input {
    padding-right: 50px
}

.vf-password-toggle {
    position: absolute;
    right: 2px;
    top: 2px;
    width: 43px;
    height: 43px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--vf-forest);
    cursor: pointer
}

.vf-password-toggle:hover {
    background: #f0f4f1
}

.vf-password-toggle:focus-visible {
    outline: 2px solid var(--vf-gold);
    outline-offset: -3px
}

.vf-password-toggle svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round
}

.vf-password-toggle svg[hidden] {
    display: none
}

.vf-field-wide {
    grid-column: 1/-1
}

.vf-account-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px
}

.vf-account-bar>div {
    max-width: 650px
}

.vf-traveller-card {
    margin-bottom: 14px;
    padding: 22px;
    border: 1px solid var(--vf-line);
    background: #fff
}

.vf-traveller-card h3 {
    margin: 0 0 17px;
    font-size: 17px
}

.vf-traveller-grid {
    display: grid;
    grid-template-columns: .7fr 1fr 1fr .9fr;
    gap: 13px
}

.vf-otp-box {
    display: grid;
    grid-template-columns: 1.4fr auto 160px auto;
    gap: 12px;
    align-items: center;
    margin-top: 24px;
    padding: 18px;
    border-left: 4px solid var(--vf-gold);
    background: #f5f7f4
}

.vf-otp-box h4,
.vf-otp-box p {
    margin: 0
}

.vf-otp-box p {
    font-size: 12px
}

.vf-otp-message {
    grid-column: 1/-1;
    color: var(--vf-muted)
}

.vf-otp-message.is-good {
    color: var(--vf-success)
}

.vf-otp-message.is-bad {
    color: var(--vf-danger)
}

.vf-login-result {
    margin-top: 12px;
    font-size: 13px
}

.vf-availability-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 18px;
    align-items: center
}

.vf-availability-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #e8f2eb;
    color: var(--vf-success);
    font-size: 22px
}

.vf-alert {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    margin-bottom: 18px;
    padding: 17px 19px;
    border-left: 4px solid currentColor;
    background: #fff
}

.vf-alert>span {
    width: 25px;
    height: 25px;
    display: grid;
    place-items: center;
    flex: none;
    border-radius: 50%;
    border: 1px solid currentColor;
    font-weight: 700
}

.vf-alert p {
    margin: 0;
    line-height: 1.55
}

.vf-alert-error {
    color: var(--vf-danger)
}

.vf-alert-success {
    color: var(--vf-success);
    background: #edf7f0
}

.vf-payment-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 18px;
    align-items: center
}

.vf-stripe-mark {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: #635bff;
    color: #fff;
    font-size: 26px;
    font-weight: 700
}

.vf-secure-badge {
    padding: 7px 10px;
    background: #eaf3ed;
    color: var(--vf-success);
    font-size: 11px;
    font-weight: 700
}

.vf-coupon-row {
    display: flex;
    gap: 10px;
    margin-top: 16px
}

.vf-coupon-row input {
    flex: 1
}

.vf-coupon-message {
    margin-top: 10px !important;
    font-size: 13px
}

.vf-coupon-message.is-good {
    color: var(--vf-success)
}

.vf-coupon-message.is-bad {
    color: var(--vf-danger)
}

.vf-review-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 18px
}

.vf-review-card {
    padding: 22px;
    border: 1px solid var(--vf-line);
    background: #fff
}

.vf-review-card h3 {
    margin: 0 0 14px;
    font-size: 16px
}

.vf-review-card dl {
    margin: 0
}

.vf-review-card dl div {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 9px 0;
    border-top: 1px solid var(--vf-line)
}

.vf-review-card dt {
    color: var(--vf-muted);
    font-size: 12px
}

.vf-review-card dd {
    margin: 0;
    text-align: right;
    font-size: 13px;
    font-weight: 600
}

.vf-final-review {
    padding: 28px
}

.vf-final-section,
.vf-review-overview-section {
    padding: 25px 0;
    border-top: 1px solid var(--vf-line)
}

.vf-review-overview-section:first-child {
    padding-top: 0;
    border-top: 0
}

.vf-final-section h3,
.vf-review-overview-section h3 {
    margin: 0 0 15px;
    color: #594a3b;
    font-family: "DM Sans", sans-serif;
    font-size: 17px;
    font-weight: 600
}

.vf-final-section>p {
    margin: 0 0 14px;
    color: var(--vf-muted);
    font-size: 13px;
    line-height: 1.65
}

.vf-program-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 0;
    border-bottom: 1px solid var(--vf-line)
}

.vf-program-row>div {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.vf-program-row span {
    color: var(--vf-muted);
    font-size: 12px
}

.vf-review-prices {
    max-width: 480px;
    margin: 10px 0 0
}

.vf-review-prices>div {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    padding: 8px 0;
    font-size: 13px
}

.vf-review-prices dt {
    color: var(--vf-muted)
}

.vf-review-prices dt strong,
.vf-review-prices dt small {
    display: block
}

.vf-review-prices dt strong {
    color: var(--vf-ink);
    font-size: 13px
}

.vf-review-prices dt small {
    margin-top: 2px;
    font-size: 11px
}

.vf-review-prices dd {
    margin: 0;
    font-weight: 600
}

.vf-review-prices .is-total {
    margin-top: 6px;
    padding-top: 11px;
    border-top: 1px solid var(--vf-line);
    font-weight: 700
}

.vf-review-rate-info {
    display: flex;
    max-width: 480px;
    flex-direction: column;
    gap: 5px;
    margin-top: 16px;
    padding: 13px 15px;
    background: var(--vf-soft);
    font-size: 12px
}

.vf-review-rate-info strong {
    color: var(--vf-forest);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .06em
}

.vf-review-calculation-title {
    max-width: 480px;
    margin: 18px 0 0;
    color: var(--vf-forest);
    font-size: 13px
}

.vf-responsive-table {
    width: 100%;
    overflow-x: auto
}

.vf-responsive-table table {
    width: 100%;
    min-width: 530px;
    border-collapse: collapse;
    font-size: 12px
}

.vf-responsive-table th,
.vf-responsive-table td {
    padding: 10px 8px;
    border-bottom: 1px solid var(--vf-line);
    text-align: left
}

.vf-responsive-table th {
    color: var(--vf-muted);
    font-weight: 600
}

.vf-final-options {
    display: grid;
    gap: 8px
}

.vf-final-options label {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 15px;
    background: #f1f2ef;
    border: 1px solid transparent
}

.vf-final-options label:has(input:checked) {
    border-color: var(--vf-forest);
    background: #edf5f1
}

.vf-final-options input {
    accent-color: var(--vf-forest)
}

.vf-final-options span {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    width: 100%
}

.vf-final-options small {
    color: var(--vf-muted);
    font-weight: 600
}

.vf-payment-notes {
    margin: 0 0 15px;
    padding-left: 20px;
    color: var(--vf-muted);
    font-size: 13px;
    line-height: 1.7
}

.vf-online-payment {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 15px;
    background: #f1f2ef
}

.vf-online-payment>span:last-child {
    margin-left: auto;
    color: var(--vf-muted);
    font-weight: 700
}

.vf-radio-selected {
    width: 16px;
    height: 16px;
    border: 4px solid #fff;
    border-radius: 50%;
    background: var(--vf-forest);
    box-shadow: 0 0 0 1px var(--vf-forest)
}

.vf-inline-link,
.vf-final-section .vf-text-link {
    color: var(--vf-forest);
    font-weight: 700;
    text-decoration: underline
}

.vf-final-section .vf-text-link {
    padding: 0;
    border: 0;
    background: transparent
}

.vf-final-section .vf-coupon-row {
    max-width: 560px
}

.vf-final-section .vf-newsletter-choice {
    margin-top: 12px
}

.vf-consents label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 13px 0;
    line-height: 1.5
}

.vf-consents input {
    margin-top: 4px
}

.vf-consents .vf-text-link {
    margin-left: auto
}

.vf-captcha {
    margin-top: 20px
}

.vf-validation-summary {
    display: none;
    margin-top: 15px;
    padding: 12px;
    background: #fff0f0;
    color: var(--vf-danger)
}

.vf-validation-summary.is-visible {
    display: block
}

.vf-summary-sticky {
    position: sticky;
    top: 118px;
    border: 1px solid var(--vf-line);
    background: #fff
}

.vf-summary-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 15px;
    padding: 22px
}

.vf-summary-head h2 {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: 27px;
    line-height: 1.05
}

.vf-summary-image {
    width: 100%;
    aspect-ratio: 16/9;
    display: block;
    object-fit: cover
}

.vf-summary-list {
    margin: 0;
    padding: 8px 22px
}

.vf-summary-list>div {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid var(--vf-line)
}

.vf-summary-list dt {
    color: var(--vf-muted);
    font-size: 11px
}

.vf-summary-list dd {
    margin: 0;
    max-width: 58%;
    text-align: right;
    font-size: 12px;
    font-weight: 600
}

.vf-summary-details,
.vf-save-trip,
.vf-help-link {
    width: calc(100% - 44px);
    min-height: 45px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin: 10px 22px;
    padding: 10px 0;
    border: 0;
    border-bottom: 1px solid var(--vf-line);
    background: #fff;
    color: var(--vf-forest);
    font-weight: 700;
    text-decoration: none;
    text-align: left
}

.vf-save-trip,
.vf-help-link {
    justify-content: flex-start
}

.vf-price-lines {
    padding: 12px 22px 18px
}

.vf-price-heading {
    margin: 0 0 6px;
    color: var(--vf-forest);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em
}

.vf-price-heading-selected {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--vf-line)
}

.vf-price-lines>div {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 15px;
    padding: 8px 0;
    font-size: 12px
}

.vf-price-lines>div>span {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 2px
}

.vf-price-lines b {
    color: var(--vf-ink);
    font-size: 12px;
    font-weight: 700
}

.vf-price-lines small {
    color: var(--vf-muted);
    font-size: 10px;
    line-height: 1.35
}

.vf-price-lines strong {
    flex: 0 0 auto;
    color: var(--vf-forest);
    font-size: 12px;
    text-align: right
}

.vf-reference-price {
    padding: 6px 0 !important
}

.vf-total {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 15px;
    padding: 20px 22px;
    background: var(--vf-forest);
    color: #fff
}

.vf-total span {
    font-size: 12px
}

.vf-total strong {
    font-family: "Cormorant Garamond", serif;
    font-size: 32px
}

.vf-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(8, 27, 21, .68);
    overflow: auto
}

.vf-modal.is-open {
    display: flex
}

.vf-modal-dialog {
    position: relative;
    width: min(620px, 100%);
    max-height: calc(100vh - 48px);
    overflow: auto;
    padding: 34px;
    background: #fff;
    box-shadow: 0 24px 80px rgba(0, 0, 0, .28)
}

.vf-modal-wide {
    width: min(900px, 100%)
}

.vf-modal-map {
    width: min(1000px, 100%)
}

.vf-modal-map>img {
    width: 100%;
    max-height: 68vh;
    object-fit: contain;
    background: #f3f1ed
}

.vf-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    border: 1px solid var(--vf-line);
    background: #fff;
    color: var(--vf-forest);
    font-size: 25px;
    line-height: 1
}

.vf-modal-dialog h2 {
    margin: 4px 45px 11px 0;
    font-family: "Cormorant Garamond", serif;
    font-size: 36px;
    line-height: 1.05
}

.vf-modal-dialog>p {
    color: var(--vf-muted);
    line-height: 1.65
}

.vf-modal-form {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 22px
}

.vf-modal-hint {
    min-height: 24px;
    color: var(--vf-danger)
}

.vf-room-selector-dialog {
    width: min(620px, 100%)
}

.vf-room-selector-list {
    margin-top: 22px;
    padding: 4px 22px;
    border: 1px solid var(--vf-line);
    background: #fff
}

.vf-room-selector-row {
    padding: 18px 0;
    border-bottom: 1px solid var(--vf-line)
}

.vf-room-selector-row:last-child {
    border-bottom: 0
}

.vf-room-selector-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 10px
}

.vf-room-selector-head strong {
    color: var(--vf-muted);
    font-size: 11px;
    letter-spacing: .1em;
    text-transform: uppercase
}

.vf-room-selector-head button {
    border: 0;
    background: transparent;
    color: #9b3838;
    font-size: 12px;
    text-decoration: underline
}

.vf-room-counter {
    width: min(100%, 280px);
    display: grid;
    grid-template-columns: 38px minmax(150px, 1fr) 38px;
    align-items: center;
    border-bottom: 1px solid #b9c5bf
}

.vf-room-counter button {
    width: 30px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: var(--vf-forest);
    font-size: 21px;
    font-weight: 700
}

.vf-room-counter button:hover {
    background: var(--vf-soft)
}

.vf-room-counter select {
    height: 43px;
    border: 0;
    background: #fff;
    color: var(--vf-ink);
    font-weight: 700;
    outline: 0
}

.vf-add-room {
    display: flex;
    align-items: center;
    gap: 7px;
    width: 100%;
    padding: 16px 22px;
    border: 0;
    border-bottom: 1px solid var(--vf-line);
    background: transparent;
    color: var(--vf-forest);
    font-weight: 700;
    text-align: left
}

.vf-add-room span:first-child {
    font-size: 21px
}

.vf-room-selector-dialog .vf-modal-hint {
    margin: 12px 0 0;
    color: var(--vf-success);
    font-size: 13px
}

.vf-modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 24px
}

.vf-modal-media {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 22px
}

.vf-modal-media img {
    width: 100%;
    height: 310px;
    object-fit: cover
}

.vf-modal-media li,
.vf-benefits li,
.vf-trip-detail-grid li {
    margin-bottom: 9px;
    line-height: 1.5
}

.vf-extension-dialog {
    width: min(1180px, 100%);
    padding: 38px 40px 0
}

.vf-extension-dialog>h2 {
    font-family: "DM Sans", sans-serif;
    font-size: 25px;
    font-weight: 500;
    color: #594b3d
}

.vf-extension-attribute {
    display: grid;
    gap: 22px;
    margin: 20px 0;
    padding: 24px;
    background: #f3f4f2;
    color: #626a71
}

.vf-extension-attribute strong {
    padding-bottom: 18px;
    border-bottom: 1px solid #dfe2df;
    color: #5f6670;
    font-size: 14px
}

.vf-extension-attribute span {
    font-size: 15px
}

.vf-extension-overview {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin: 20px 0 30px
}

.vf-extension-overview-card {
    min-width: 0;
    padding: 20px;
    border: 1px solid var(--vf-line);
    background: #fff
}

.vf-extension-overview-card h3 {
    margin: 0 0 14px;
    color: var(--vf-forest);
    font-size: 15px
}

.vf-extension-overview-card h4 {
    margin: 18px 0 9px;
    color: var(--vf-muted);
    font-size: 12px;
    text-transform: uppercase
}

.vf-extension-overview-card ul {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none
}

.vf-extension-overview-card li {
    position: relative;
    padding-left: 17px;
    color: #626a66;
    font-size: 13px;
    line-height: 1.45
}

.vf-extension-overview-card li:before {
    content: "";
    position: absolute;
    left: 0;
    top: .52em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--vf-gold)
}

.vf-extension-overview-card .is-excluded li:before {
    background: #a9aea9
}

.vf-extension-overview-card dl {
    display: grid;
    gap: 11px;
    margin: 0
}

.vf-extension-overview-card dl div {
    display: grid;
    gap: 3px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--vf-line)
}

.vf-extension-overview-card dl div:last-child {
    padding-bottom: 0;
    border-bottom: 0
}

.vf-extension-overview-card dt {
    color: var(--vf-muted);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase
}

.vf-extension-overview-card dd {
    margin: 0;
    color: var(--vf-ink);
    font-size: 13px;
    line-height: 1.45
}

.vf-extension-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(300px, .8fr);
    gap: 42px;
    align-items: start;
    margin-top: 20px
}

.vf-extension-days {
    min-width: 0
}

.vf-extension-day {
    padding: 20px 0 26px;
    border-bottom: 1px solid var(--vf-line)
}

.vf-extension-day:first-child {
    padding-top: 0
}

.vf-extension-day:last-child {
    border-bottom: 0
}

.vf-extension-day-label {
    margin: 0 0 17px !important;
    color: #6d5236 !important;
    font-size: 18px;
    font-weight: 600
}

.vf-extension-section+.vf-extension-section {
    margin-top: 24px
}

.vf-extension-section h3 {
    margin: 0 0 9px;
    color: #2d332f;
    font-size: 16px;
    line-height: 1.4
}

.vf-extension-section p {
    margin: 0 0 12px;
    color: #646b72;
    font-size: 14px;
    line-height: 1.72
}

.vf-extension-section p:last-child {
    margin-bottom: 0
}

.vf-extension-aside {
    position: sticky;
    top: 0;
    display: grid;
    gap: 16px
}

.vf-extension-aside>img {
    width: 100%;
    aspect-ratio: 4/3;
    display: block;
    object-fit: cover
}

.vf-extension-guide {
    padding: 20px;
    border-left: 3px solid var(--vf-gold);
    background: #f7f7f4
}

.vf-extension-guide strong {
    display: block;
    margin-bottom: 8px;
    color: var(--vf-forest);
    font-size: 13px;
    text-transform: uppercase
}

.vf-extension-guide p {
    margin: 0;
    color: #606964;
    font-size: 13px;
    line-height: 1.65
}

.vf-extension-price {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 20px;
    background: var(--vf-forest);
    color: #fff
}

.vf-extension-price span {
    font-size: 12px
}

.vf-extension-price strong {
    font-size: 22px
}

.vf-extension-actions {
    position: sticky;
    bottom: 0;
    margin: 12px -40px 0;
    padding: 18px 40px;
    border-top: 1px solid var(--vf-line);
    background: #fff;
    z-index: 2
}

.vf-flight-modal-leg {
    display: grid;
    grid-template-columns: 65px 1fr 65px;
    align-items: center;
    gap: 16px;
    margin: 24px 0;
    padding: 20px;
    background: var(--vf-soft);
    text-align: center
}

.vf-flight-modal-leg>strong {
    font-size: 24px
}

.vf-flight-modal-leg span {
    display: flex;
    flex-direction: column;
    gap: 5px
}

.vf-flight-dialog {
    width: min(820px, 100%)
}

.vf-flight-journey {
    margin-top: 22px;
    border: 1px solid var(--vf-line);
    background: #fff
}

.vf-flight-journey>header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 18px;
    background: var(--vf-soft);
    color: var(--vf-forest)
}

.vf-flight-journey>header strong {
    font-size: 15px
}

.vf-flight-journey>header span {
    font-size: 12px
}

.vf-flight-segment {
    padding: 18px
}

.vf-flight-segment-airline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px
}

.vf-flight-segment-airline strong {
    color: var(--vf-forest)
}

.vf-flight-segment-airline span {
    color: var(--vf-muted);
    font-size: 12px;
    text-align: right
}

.vf-flight-segment-route {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(130px, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: 16px
}

.vf-flight-segment-route>div {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.vf-flight-segment-route>div:last-child {
    text-align: right
}

.vf-flight-segment-route b {
    font-size: 22px
}

.vf-flight-segment-route span {
    color: var(--vf-muted);
    font-size: 12px;
    overflow-wrap: anywhere
}

.vf-flight-segment-route p {
    margin: 0;
    text-align: center
}

.vf-flight-segment-route p small,
.vf-flight-segment-route p em {
    display: block;
    color: var(--vf-muted);
    font-size: 10px;
    font-style: normal
}

.vf-flight-segment-route p i {
    display: block;
    height: 1px;
    margin: 7px 0;
    background: var(--vf-gold);
    position: relative
}

.vf-flight-segment-route p i:after {
    content: "";
    position: absolute;
    right: 0;
    top: -3px;
    border-left: 6px solid var(--vf-gold);
    border-top: 3px solid transparent;
    border-bottom: 3px solid transparent
}

.vf-flight-layover {
    padding: 10px 18px;
    background: #eef2f6;
    color: #b23b61;
    font-size: 12px;
    font-weight: 600
}

.vf-flight-disclaimer {
    margin-top: 20px
}

.vf-account-actions {
    display: grid;
    gap: 9px;
    margin-top: 22px
}

.vf-account-dialog {
    width: min(610px, 100%);
    padding: 0;
    overflow: hidden
}

.vf-account-header {
    padding: 30px 42px 26px;
    background: var(--vf-forest);
    color: #fff
}

.vf-account-header h2 {
    margin: 0 45px 5px 0;
    color: #fff;
    font-family: "DM Sans", sans-serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2
}

.vf-account-header p {
    margin: 0;
    color: #fff;
    font-weight: 600
}

.vf-account-close {
    border: 0;
    background: rgba(255, 255, 255, .14);
    color: #fff;
    border-radius: 50%
}

.vf-account-body {
    padding: 30px 36px 34px
}

.vf-account-body>p {
    margin: 0 0 26px;
    color: var(--vf-muted);
    font-size: 16px;
    line-height: 1.65
}

.vf-benefits {
    display: grid;
    gap: 17px;
    margin: 0;
    padding: 0;
    list-style: none
}

.vf-benefits li {
    position: relative;
    margin: 0;
    padding-left: 37px;
    color: #27312c;
    font-weight: 600
}

.vf-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: -2px;
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #087665;
    color: #fff;
    font-weight: 700
}

.vf-account-body .vf-account-actions {
    grid-template-columns: 1fr 1fr;
    margin-top: 30px
}

.vf-account-body .vf-account-actions .vf-btn:last-child {
    grid-column: 1/-1;
    background: #f0f1ef;
    color: #242b27
}

.vf-account-panel {
    padding: 34px
}

.vf-newsletter-choice {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    padding: 16px;
    border: 1px solid var(--vf-line);
    background: #f8faf8;
    color: var(--vf-muted);
    font-size: 13px;
    line-height: 1.55
}

.vf-newsletter-choice input {
    width: 18px;
    height: 18px;
    flex: none;
    margin-top: 2px;
    accent-color: var(--vf-forest)
}

.vf-save-choice-card h3,
.vf-continue-card h3 {
    margin: 0 0 20px;
    font-family: "DM Sans", sans-serif;
    font-size: 28px;
    font-weight: 500;
    color: #5b4b38
}

.vf-save-privacy {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 22px;
    color: #59616a;
    font-weight: 700;
    line-height: 1.5
}

.vf-save-privacy input {
    width: 28px;
    height: 28px;
    flex: none;
    margin: 0;
    accent-color: var(--vf-forest)
}

.vf-save-privacy.has-error {
    color: var(--vf-danger)
}

.vf-save-privacy .vf-text-link {
    display: inline;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--vf-forest);
    font-weight: 800;
    text-decoration: underline
}

.vf-save-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 20px
}

.vf-save-gender,
.vf-contact-gender,
.vf-traveller-gender {
    grid-column: 1/-1
}

.vf-gender-field {
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0
}

.vf-gender-field legend {
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 700
}

.vf-gender-field label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin: 0 18px 0 0;
    font-weight: 600
}

.vf-gender-field input {
    width: 20px;
    height: 20px;
    margin: 0;
    accent-color: var(--vf-forest)
}

.vf-gender-field.has-error legend {
    color: var(--vf-danger)
}

.vf-gender-field .vf-field-error {
    display: block;
    margin-top: 7px
}

.vf-save-continue {
    display: flex;
    margin: 22px 0 0 auto
}

.vf-save-message {
    min-height: 18px;
    margin: 12px 0 0;
    color: var(--vf-danger);
    font-size: 12px;
    font-weight: 600
}

.vf-continue-card {
    margin-top: 18px
}

.vf-continue-card .vf-actions {
    margin-top: 10px
}

.vf-form-intro {
    margin: 5px 0 18px;
    color: var(--vf-muted)
}

.vf-contact-identity-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 18px
}

.vf-contact-gender {
    align-self: start;
    padding-bottom: 0
}

.vf-form-section-title {
    margin: 28px 0 0;
    padding-bottom: 9px;
    border-bottom: 1px solid var(--vf-line);
    font-size: 15px
}

.vf-address-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr))
}

.vf-contact-phone-row {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--vf-line)
}

.vf-phone-field {
    max-width: 520px
}

.vf-phone-control {
    display: grid;
    grid-template-columns: minmax(190px, 240px) minmax(0, 1fr)
}

.vf-phone-control select,
.vf-phone-control input {
    min-height: 47px;
    border: 1px solid #cfd4d0;
    background: #fff;
    padding: 10px
}

.vf-phone-control select {
    border-right: 0
}

.vf-billing-toggle {
    margin-top: 22px
}

.vf-billing-address {
    margin-top: 18px;
    padding: 0 18px 18px;
    border: 1px solid var(--vf-line);
    background: #fbfcfa
}

.vf-billing-address[hidden] {
    display: none
}

.vf-account-security-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr))
}

.vf-traveller-section-head {
    margin: 30px 0 13px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--vf-line)
}

.vf-traveller-section-head h3 {
    margin: 0 0 4px
}

.vf-traveller-section-head p {
    margin: 0;
    color: var(--vf-muted);
    font-size: 13px
}

.vf-traveller-card {
    padding: 24px
}

.vf-traveller-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 17px
}

.vf-traveller-title h3 {
    margin: 0;
    font-size: 13px;
    letter-spacing: .02em
}

.vf-traveller-title span {
    color: var(--vf-muted);
    font-size: 12px
}

.vf-copy-contact {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 18px;
    font-size: 13px
}

.vf-copy-contact input {
    width: 18px;
    height: 18px;
    accent-color: var(--vf-forest)
}

.vf-traveller-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr))
}

.vf-birth-field {
    grid-column: 1/-1
}

.vf-birth-selects {
    display: grid;
    grid-template-columns: 90px 90px 120px;
    gap: 8px
}

.vf-birth-selects select {
    width: 100%;
    min-height: 47px;
    padding: 10px;
    border: 1px solid #cfd4d0;
    background: #fff
}

.vf-traveller-gender {
    grid-column: 1/-1
}

.vf-notes-card {
    margin-top: 18px
}

.vf-account-view .vf-field {
    margin-top: 15px
}

.vf-trip-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-top: 22px
}

.vf-modal-date-list {
    display: grid;
    gap: 9px;
    margin-top: 20px
}

.vf-modal-date-list button {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    padding: 15px;
    border: 1px solid var(--vf-line);
    background: #fff;
    text-align: left
}

.vf-modal-date-list button:hover {
    border-color: var(--vf-forest);
    background: #f5f8f6
}

body.vf-modal-open {
    overflow: hidden
}

@media(max-width:1120px) {
    .vf-app-shell {
        grid-template-columns: minmax(0, 1fr) 320px
    }

    .vf-checkout-nav {
        grid-template-columns: repeat(3, 1fr)
    }

    .vf-form-grid-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }

    .vf-otp-box {
        grid-template-columns: 1fr 1fr
    }

    .vf-otp-box>div {
        grid-column: 1/-1
    }
}

@media(max-width:860px) {
    .vf-page {
        padding-top: 84px
    }

    .vf-hero {
        min-height: 280px
    }

    .vf-hero-content,
    .vf-app-shell {
        width: min(100% - 32px, 720px)
    }

    .vf-app-shell {
        grid-template-columns: 1fr;
        padding-top: 24px
    }

    .vf-summary {
        grid-row: 1
    }

    .vf-summary-sticky {
        position: static
    }

    .vf-summary-image {
        max-height: 260px
    }

    .vf-planner-nav {
        position: relative;
        overflow-x: auto
    }

    .vf-planner-tab {
        min-width: 180px
    }

    .vf-choice-grid,
    .vf-choice-grid.has-multiple {
        grid-template-columns: 1fr
    }

    .vf-choice-card-none {
        min-height: 190px
    }

    .vf-account-bar,
    .vf-flight-top {
        align-items: flex-start;
        flex-direction: column
    }

    .vf-review-grid {
        grid-template-columns: 1fr
    }
}

@media(max-width:860px) {
    .vf-extension-overview {
        grid-template-columns: 1fr
    }

    .vf-extension-layout {
        grid-template-columns: 1fr
    }

    .vf-extension-aside {
        position: static;
        grid-row: 1
    }

    .vf-extension-aside>img {
        max-height: 390px
    }

    .vf-extension-dialog {
        padding: 30px 28px 0
    }

    .vf-extension-actions {
        margin-left: -28px;
        margin-right: -28px;
        padding-left: 28px;
        padding-right: 28px
    }
}

@media(max-width:620px) {

    .vf-hero-content,
    .vf-app-shell {
        width: calc(100% - 24px)
    }

    .vf-hero-content {
        padding: 40px 0 32px
    }

    .vf-hero h1 {
        font-size: 42px
    }

    .vf-screen-head h2 {
        font-size: 34px
    }

    .vf-card {
        padding: 18px
    }

    .vf-checkout-nav {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory
    }

    .vf-checkout-step {
        min-width: 130px;
        scroll-snap-align: start
    }

    .vf-form-grid-3,
    .vf-modal-form,
    .vf-modal-media,
    .vf-trip-detail-grid {
        grid-template-columns: 1fr
    }

    .vf-field-wide {
        grid-column: auto
    }

    .vf-traveller-grid {
        grid-template-columns: 1fr
    }

    .vf-room-head,
    .vf-room-row {
        grid-template-columns: minmax(0, 1fr) 75px 85px;
        padding: 15px;
        gap: 10px;
        font-size: 9px
    }

    .vf-room-head span:nth-child(2),
    .vf-room-head span:nth-child(3),
    .vf-room-row span:nth-child(2),
    .vf-room-row span:nth-child(3) {
        text-align: center
    }

    .vf-room-row {
        font-size: 14px;
        padding-top: 10px
    }

    .vf-room-row span:nth-child(2),
    .vf-room-row span:nth-child(3) {
        font-weight: 700
    }

    .vf-flight-leg {
        grid-template-columns: 1fr 50px 1fr
    }

    .vf-flight-leg time {
        grid-column: 1/-1
    }

    .vf-inline-control,
    .vf-choice-footer,
    .vf-availability-card,
    .vf-payment-card {
        align-items: stretch;
        flex-direction: column;
        display: flex
    }

    .vf-inline-control select {
        min-width: 0
    }

    .vf-date-option {
        grid-template-columns: 20px 1fr
    }

    .vf-date-option em {
        grid-column: 2
    }

    .vf-otp-box {
        display: flex;
        flex-direction: column;
        align-items: stretch
    }

    .vf-coupon-row {
        flex-direction: column
    }

    .vf-modal {
        padding: 10px
    }

    .vf-modal-dialog {
        max-height: calc(100vh - 20px);
        padding: 25px 18px
    }

    .vf-modal-media img {
        height: 230px
    }

    .vf-actions {
        align-items: stretch
    }

    .vf-actions .vf-btn {
        flex: 1;
        padding: 10px
    }

    .vf-summary-list dd {
        max-width: 62%
    }

    .g-recaptcha {
        transform: scale(.84);
        transform-origin: left top;
        margin-bottom: -10px
    }
}

@media(max-width:620px) {

    .vf-flight-baggage,
    .vf-digital-document {
        align-items: flex-start;
        flex-direction: column
    }

    .vf-digital-document>b {
        white-space: normal
    }
}

@media(max-width:620px) {
    .vf-flight-journey>header {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px
    }

    .vf-flight-segment {
        padding: 15px 12px
    }

    .vf-flight-segment-route {
        grid-template-columns: minmax(0, 1fr) 70px minmax(0, 1fr);
        gap: 8px
    }

    .vf-flight-segment-route b {
        font-size: 18px
    }

    .vf-flight-segment-airline {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px
    }

    .vf-flight-segment-airline span {
        text-align: left
    }

    .vf-flight-endpoint strong {
        font-size: 15px
    }

    .vf-flight-endpoint b {
        font-size: 17px
    }
}

@media(max-width:620px) {
    .vf-extension-dialog {
        padding: 24px 17px 0
    }

    .vf-extension-dialog>h2 {
        margin-right: 38px;
        font-size: 21px
    }

    .vf-extension-attribute {
        padding: 18px
    }

    .vf-extension-layout {
        gap: 18px
    }

    .vf-extension-aside>img {
        max-height: none
    }

    .vf-extension-day {
        padding: 18px 0 22px
    }

    .vf-extension-actions {
        margin-left: -17px;
        margin-right: -17px;
        padding: 14px 17px
    }

    .vf-extension-actions .vf-btn {
        flex: 1
    }
}

@media(max-width:620px) {
    .vf-choice-grid.has-multiple .vf-choice-card:not(.vf-choice-card-none) {
        grid-template-columns: 88px minmax(0, 1fr)
    }

    .vf-choice-grid.has-multiple .vf-choice-card>img {
        width: 88px;
        min-height: 142px
    }

    .vf-choice-grid.has-multiple .vf-choice-card>div {
        padding: 13px
    }

    .vf-choice-grid.has-multiple .vf-choice-card h3 {
        font-size: 15px
    }

    .vf-choice-controls {
        align-items: stretch;
        flex-direction: column;
        gap: 8px
    }

    .vf-choice-controls .vf-text-link {
        text-align: left
    }

    .vf-choice-controls .vf-btn {
        width: 100%
    }
}

@media(max-width:620px) {
    .vf-room-selector-list {
        padding: 4px 15px
    }

    .vf-room-counter {
        width: 100%;
        grid-template-columns: 36px minmax(120px, 1fr) 36px
    }

    .vf-add-room {
        padding-left: 15px;
        padding-right: 15px
    }
}

@media(max-width:380px) {
    .vf-hero h1 {
        font-size: 36px
    }

    .vf-actions {
        flex-direction: column-reverse
    }

    .vf-actions>span {
        display: none
    }

    .vf-actions .vf-btn {
        width: 100%
    }

    .vf-total strong {
        font-size: 27px
    }

    .g-recaptcha {
        transform: scale(.74);
        margin-bottom: -16px
    }
}

@media(max-width:860px) {
    .vf-hero {
        min-height: 260px;
        background-position: 50% center
    }
}

@media(max-width:620px) {
    .vf-account-header {
        padding: 26px 22px 22px
    }

    .vf-account-header h2 {
        font-size: 23px
    }

    .vf-account-body {
        padding: 24px 20px
    }

    .vf-account-body .vf-account-actions {
        grid-template-columns: 1fr
    }

    .vf-account-body .vf-account-actions .vf-btn:last-child {
        grid-column: auto
    }

    .vf-account-panel {
        padding: 28px 20px
    }
}

@media(max-width:620px) {

    .vf-save-grid,
    .vf-contact-identity-grid,
    .vf-address-grid,
    .vf-account-security-grid,
    .vf-traveller-grid {
        grid-template-columns: 1fr
    }

    .vf-save-choice-card h3,
    .vf-continue-card h3 {
        font-size: 23px
    }

    .vf-save-privacy {
        font-size: 13px
    }

    .vf-contact-gender,
    .vf-traveller-gender,
    .vf-birth-field,
    .vf-phone-field {
        grid-column: auto
    }

    .vf-phone-control {
        grid-template-columns: minmax(125px, 42%) minmax(0, 1fr)
    }

    .vf-traveller-card {
        padding: 18px
    }

    .vf-traveller-title {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px
    }

    .vf-birth-selects {
        grid-template-columns: repeat(3, minmax(0, 1fr))
    }

    .vf-birth-selects select {
        padding: 8px 5px
    }

    .vf-gender-field label {
        margin-right: 12px
    }

    .vf-save-continue {
        width: 100%;
        justify-content: center
    }
}

@media(max-width:620px) {
    .vf-final-review {
        padding: 18px
    }

    .vf-final-section,
    .vf-review-overview-section {
        padding: 21px 0
    }

    .vf-program-row,
    .vf-final-options span {
        align-items: flex-start;
        flex-direction: column
    }

    .vf-program-row .vf-text-link {
        align-self: flex-start
    }

    .vf-responsive-table table {
        min-width: 0;
        table-layout: fixed
    }

    .vf-responsive-table th,
    .vf-responsive-table td {
        padding: 9px 5px;
        overflow-wrap: anywhere
    }

    .vf-final-options small {
        margin-top: 2px
    }

    .vf-online-payment>span:last-child {
        margin-left: auto
    }
}

.vf-programme-note {
    margin: 14px 0 0;
    padding: 11px 14px;
    border-left: 3px solid var(--vf-gold);
    background: #f7f4eb;
    color: var(--vf-muted);
    font-size: 12px;
    line-height: 1.55
}