.bk *,.bk *::before,.bk *::after {
    box-sizing: border-box
}

.bk {
    --c1: #1a3c34;
    --c1h: #225045;
    --c2: #c8a96e;
    --c2h: #b8963e;
    --bg: #ffffff;
    --bg2: #f7f8f6;
    --bd: #e2e5e0;
    --tx: #2c2c2c;
    --tx2: #7a7f7a;
    --ok: #2e7d5b;
    --err: #c0392b;
    --r: 6px;
    font-family: -apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif;
    color: var(--tx);
    line-height: 1.5
}

.bk-w {
    background: var(--bg);
    border: 1px solid var(--bd);
    border-radius: var(--r);
    overflow: visible;
}

.bk-w__h {
    text-transform: uppercase;
    border-bottom: 1px solid grey;
    padding: 14px 18px;
    text-align: center
}

.bk .card-title {
    font-size: 0.85rem!important;
    margin-top: 15px
}

.bk-w__h h4 {
    color: #000;
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: .3px
}

.bk-w__b {
    padding: 18px
}

.bk-w-pill {
    position: relative;
    margin-bottom: 10px;
    border-radius: 999px;
    background: #dfe3e9;
    min-height: 46px;
    display: flex;
    align-items: center;
    padding: 0 18px;
}

.bk-w-pill--button {
    width: 100%;
    border: 0;
    text-align: left;
    cursor: pointer;
}

.bk-w-pill__content {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    color: #173a55;
    font-weight: 700;
    font-size: .95rem;
}

.bk-w-pill__icon {
    color: #173a55;
    font-size: 1.15rem;
    line-height: 1;
}

.bk-w-pill__value {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bk-w-pill__caret {
    margin-left: auto;
    width: 12px;
    height: 12px;
    border-right: 2px solid #243b53;
    border-bottom: 2px solid #243b53;
    transform: rotate(45deg);
    margin-top: -4px;
}

.bk-w-travelers {
    position: relative;
    margin-bottom: 10px;
    z-index: 20;
}

.bk-w-travelers.open {
    z-index: 60;
}

.bk-w-travelers.open .bk-w-pill__caret {
    transform: rotate(-135deg);
    margin-top: 3px;
}

.bk-w-travelers__panel {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 42px rgba(17, 33, 58, .12);
    overflow: hidden;
    border: 1px solid var(--bd);
    z-index: 80;
}

.bk-w-travelers__panel[hidden],
.bk-lang__menu[hidden] {
    display: none !important;
}

.bk-w-sheet__header {
    display: none;
}

.bk-w-sheet__close {
    border: 0;
    background: transparent;
    color: #243b53;
    width: 40px;
    height: 40px;
    padding: 0;
    font-size: 1rem;
}

.bk-w-sheet__title {
    font-size: 1rem;
    font-weight: 700;
    color: #173a55;
}

.bk-w-date {
    position: relative;
    margin-bottom: 10px;
    z-index: 10;
}

.bk-w-date.is-open {
    z-index: 70;
}

.bk-w-date.is-open::after {
    content: '';
    position: absolute;
    top: 100%;
    right: 38px;
    transform: translateX(-50%);
    width: 2px;
    height: 20px;
    background: linear-gradient(180deg, rgba(31,49,90,.3), rgba(31,49,90,0));
    opacity: 1;
    z-index: 24;
}

.bk-w-date.is-open .bk-w-pill__caret {
    transform: rotate(-135deg);
    margin-top: 3px;
}

.bk-w-date__native {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
}

.bk-w-calendar {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: auto;
    width: min(620px, calc(100vw - 28px));
    min-width: 560px;
    background: #f8fbff;
    border: 1px solid rgba(30,47,73,.08);
    border-radius: 30px;
    box-shadow: 0 32px 80px rgba(12, 35, 67, .22);
    z-index: 45;
    overflow: hidden;
}

.bk-w-calendar::before {
    content: '';
    position: absolute;
    top: -20px;
    right: 32px;
    transform: translateX(-50%);
    width: 2px;
    height: 20px;
    background: linear-gradient(180deg, rgba(31,49,90,.4), rgba(31,49,90,0));
    opacity: 1;
    z-index: 40;
}

.bk-w-calendar__inner {
    position: relative;
    padding: 30px 28px 28px;
}

.bk-w-calendar__nav {
    position: absolute;
    top: 22px;
    left: 32px;
    right: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: auto;
    z-index: 2;
}

.bk-w-calendar__nav-btn {
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: #1f3557;
    font-size: 1.05rem;
    cursor: pointer;
    pointer-events: auto;
    transition: background-color .2s ease, color .2s ease, transform .2s ease;
}

.bk-w-calendar__nav-btn:hover,
.bk-w-calendar__nav-btn:focus {
    background: #ecf2fb;
    outline: none;
    transform: translateY(-1px);
}

.bk-w-calendar__nav-btn[disabled] {
    opacity: .35;
    cursor: default;
}

.bk-w-calendar__months {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 38px;
    align-items: start;
}

.bk-w-calendar__month {
    min-width: 0;
}

.bk-w-calendar__month-title {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1f314f;
    margin-bottom: 18px;
    letter-spacing: 0.02em;
    text-transform: none;
}

.bk-w-calendar__weekdays,
.bk-w-calendar__days {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 10px;
}

.bk-w-calendar__weekdays {
    margin-bottom: 10px;
}

.bk-w-calendar__weekday {
    text-align: center;
    font-size: .9rem;
    font-weight: 600;
    color: #8a97b2;
    letter-spacing: .08em;
}

.bk-w-calendar__day,
.bk-w-calendar__empty {
    width: 44px;
    height: 44px;
    justify-self: center;
}

.bk-w-calendar__empty {
    display: block;
}

.bk-w-calendar__day {
    border: 0;
    border-radius: 12px;
    background: transparent;
    color: #1f2f52;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    line-height: 44px;
    padding: 0;
    transition: background-color .2s ease, color .2s ease, box-shadow .2s ease;
}

.bk-w-calendar__day:hover,
.bk-w-calendar__day:focus {
    background: #e6edfb;
    outline: none;
    box-shadow: inset 0 0 0 1px rgba(31, 53, 87, .04);
}

.bk-w-calendar__day.is-selected {
    background: #1f3557;
    color: #fff;
    box-shadow: 0 8px 20px rgba(31, 53, 87, .25);
}

.bk-w-calendar__day.is-today {
    box-shadow: inset 0 0 0 1px #c8d2df;
}

.bk-w-calendar__day.is-disabled {
    color: #d2d8e3;
    cursor: default;
    pointer-events: none;
    opacity: .65;
}

@media (max-width: 767px) {
    .bk-w-calendar {
        width: min(360px, calc(100vw - 20px));
        border-radius: 22px;
        left: auto;
        right: 10px;
    }

    .bk-w-calendar__inner {
        padding: 26px 22px 26px;
    }

    .bk-w-calendar__nav {
        top: 18px;
        left: 22px;
        right: 22px;
    }

    .bk-w-calendar__months {
        grid-template-columns: 1fr;
        gap: 30px;
        max-height: calc(100vh - 160px);
        overflow-y: auto;
        padding-right: 6px;
        display: flex;
        flex-direction: column;
        -webkit-overflow-scrolling: touch;
    }

    .bk-w-calendar__month {
        width: 100%;
    }

    .bk-w-calendar__nav {
        position: sticky;
        top: 0;
        margin-bottom: 8px;
        justify-content: flex-end;
        padding: 0 12px;
        z-index: 10;
        background: rgba(255,255,255,.92);
    }

    .bk-w-calendar__nav-btn {
        box-shadow: none;
    }

    .bk-w-calendar__weekday {
        font-size: .81rem;
    }

    .bk-w-calendar__day,
    .bk-w-calendar__empty {
        width: 38px;
        height: 38px;
    }

    .bk-w-calendar__day {
        line-height: 38px;
    }
}

.bk-w-calendar__months {
    max-height: 380px;
}

@media (max-width: 767px) {
    .bk-w-calendar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100vw;
        height: 100vh;
        margin: 0;
        border-radius: 0;
        padding: 0;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        background: #fff;
    }

    .bk-w-calendar::before {
        content: 'Select date';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 56px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        background: #fff;
        border-bottom: 1px solid rgba(0,0,0,.08);
        z-index: 12;
        color: #1f314f;
    }

    .bk-w-calendar::after {
        content: '✕';
        position: absolute;
        top: 16px;
        right: 16px;
        font-size: 1.1rem;
        color: #1f314f;
        cursor: pointer;
        z-index: 13;
    }

    .bk-w-calendar__inner {
        padding: 72px 18px 24px;
        width: 100%;
        max-width: 420px;
        box-sizing: border-box;
    }

    .bk-w-calendar__nav {
        position: sticky;
        top: 56px;
        margin-bottom: 8px;
        justify-content: space-between;
        padding: 0 12px;
        z-index: 11;
        background: rgba(255,255,255,.95);
    }

    .bk-w-calendar__nav-btn {
        box-shadow: none;
    }

    .bk-w-calendar__months {
        max-height: calc(100vh - 120px);
        overflow-y: auto;
        padding-right: 6px;
        display: flex;
        flex-direction: column;
        gap: 26px;
        -webkit-overflow-scrolling: touch;
    }

    .bk-w-calendar__months::-webkit-scrollbar {
        width: 4px;
    }

    .bk-w-calendar__months::-webkit-scrollbar-thumb {
        background: rgba(31, 53, 87, .25);
        border-radius: 999px;
    }

.bk-w-calendar__month {
        width: 100%;
    }
}

.bk-w-calendar__header {
    display: none;
}

.bk-w-calendar__weekdays-static {
    display: none;
}

@media (max-width: 767px) {
    .bk-w-calendar::before,
    .bk-w-calendar::after {
        display: none;
    }

    .bk-w-calendar__inner {
        padding: 0;
        width: 100%;
        max-width: 420px;
        height: 100vh;
        display: flex;
        flex-direction: column;
        box-sizing: border-box;
    }

    .bk-w-calendar__header {
        position: sticky;
        top: 0;
        z-index: 14;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 88px;
        padding: 14px 18px 10px;
        background: #fff;
        border-bottom: 1px solid rgba(0,0,0,.08);
        flex-shrink: 0;
        flex-wrap: wrap;
    }

    .bk-w-calendar__heading {
        font-size: 1.05rem;
        font-weight: 700;
        color: #1f314f;
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }

    .bk-w-calendar__close {
        position: absolute;
        top: 18px;
        left: 12px;
        width: 40px;
        height: 40px;
        border: 0;
        border-radius: 999px;
        background: transparent;
        color: #1f314f;
        font-size: 1rem;
        padding: 0;
    }

    .bk-w-calendar__weekdays-static {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(7, minmax(0, 1fr));
        gap: 10px;
        color: #8a97b2;
        font-size: .81rem;
        font-weight: 600;
        text-align: center;
    }

    .bk-w-calendar__nav {
        display: none;
    }

    .bk-w-calendar__months {
        max-height: none;
        overflow-y: auto;
        padding: 0 18px 24px;
        display: flex;
        flex-direction: column;
        grid-template-columns: none;
        gap: 22px;
        -webkit-overflow-scrolling: touch;
        flex: 1 1 auto;
        scroll-behavior: smooth;
    }

    .bk-w-calendar__month-title {
        text-align: left;
        margin-bottom: 14px;
    }

    .bk-w-calendar__weekdays {
        display: none;
    }
}

@media (max-width: 991px) and (min-width: 768px) {
    .bk-w-calendar {
        width: min(560px, calc(100vw - 28px));
        min-width: 0;
    }
}

@media (max-width: 767px) {
    .bk-w-calendar {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        width: 100vw;
        min-width: 0;
        max-width: none;
        height: 100vh;
        border-radius: 0;
    }
}

.bk-w-travelers__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 22px 18px;
}

.bk-w-travelers__title {
    font-size: 1rem;
    font-weight: 700;
    color: #14324e;
}

.bk-w-travelers__sub {
    font-size: .78rem;
    color: #5b6f8d;
    font-weight: 600;
}

.bk-w-travelers__controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.bk-w-travelers__btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid #1a73e8;
    background: #fff;
    color: #1a73e8;
    font-size: 1.1rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.bk-w-travelers__count {
    width: 32px;
    height: 32px;
    border: 1px solid #d8dfe8;
    border-radius: 0;
    text-align: center;
    font-size: 1rem;
    color: #14324e;
    background: #fff;
}

.bk-w-travelers__footer {
    border-top: 1px solid #e8edf3;
    padding: 16px;
}

.bk-w-travelers__continue {
    width: 100%;
    border: 0;
    border-radius: 999px;
    background: #1a73e8;
    color: #fff;
    min-height: 44px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
}

.bk-w-pill__native {
    position: absolute;
    inset: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.bk-w-pill__native--date::-webkit-calendar-picker-indicator {
    cursor: pointer;
}

.bk-lang--widget {
    margin-bottom: 10px !important;
    position: relative;
    z-index: 19;
}

.bk-lang.open {
    z-index: 90;
}

.bk-lang--widget .bk-lang__trigger {
    border: 0;
    border-radius: 999px;
    background: #dfe3e9;
    min-height: 46px;
    padding: 0 18px;
}

.bk-lang__icon {
    color: #173a55;
    font-size: 1.1rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
}

.bk-w__b label {
    font-size: .72rem;
    font-weight: 600;
    color: var(--tx2);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 5px;
    display: block
}

.bk-w .form-control,.bk-w .form-select {
    border: 1px solid var(--bd);
    border-radius: var(--r);
    font-size: .88rem;
    padding: 8px 12px;
    transition: border-color .2s;
    width: 100%;
    background: #e8e8e8
}

.bk-w .form-control,.bk-w .form-select:hover {
    border: 1px solid var(--bd);
    border-radius: var(--r);
    font-size: .88rem;
    padding: 8px 12px;
    transition: all .2s;
    width: 100%;
    background-color: #e8e8e8
}

.bk-w .form-control:focus,.bk-w .form-select:focus {
    border-color: var(--c1);
    box-shadow: 0 0 0 2px rgb(26 60 52 / .08);
    outline: none
}

.bk-pr {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 0;
    font-size: .88rem
}

.bk-pr.bk-pt {
    border-top: 1px solid var(--bd);
    margin-top: 4px;
    padding-top: 10px;
    font-weight: 700;
    font-size: 1.02rem;
    color: var(--c1)
}

.bk-pr--sub {
    font-size: .8rem;
    color: var(--tx2);
    padding: 3px 0 3px 10px
}

.bk-bb {
    display: block;
    width: 100%;
    padding: 13px;
    background: var(--c2);
    color: #fff;
    border: none;
    border-radius: var(--r);
    font-size: .92rem;
    font-weight: 700;
    letter-spacing: .7px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .2s,transform .15s
}

.bk-bb:hover {
    background: var(--c2h);
    transform: translateY(-1px)
}

.bk-ov {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: opacity .3s,visibility .3s
}

.bk-ov.on {
    visibility: visible;
    opacity: 1
}

.bk-ov__bg {
    position: absolute;
    inset: 0;
    background: rgb(20 30 26 / .5);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px)
}

.bk-m {
    position: relative;
    z-index: 1;
    width: 94vw;
    max-width: 960px;
    max-height: 92vh;
    background: var(--bg);
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 12px 40px rgb(0 0 0 / .12);
    transform: translateY(20px) scale(.97);
    transition: transform .4s cubic-bezier(.16,1,.3,1)
}

.bk-ov.on .bk-m {
    transform: translateY(0) scale(1)
}

.bk-m__h {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 22px;
    border-bottom: 1px solid var(--bd);
    flex-shrink: 0
}

.bk-m__h h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--c1);
    margin: 0
}

.bk-m__x {
    width: 32px;
    height: 32px;
    border: none;
    background: var(--bg2);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
    flex-shrink: 0
}

.bk-m__x:hover {
    background: var(--bd)
}

.bk-m__x svg {
    width: 15px;
    height: 15px;
    stroke: var(--tx);
    stroke-width: 2
}

.bk-m__bd {
    overflow-y: auto;
    flex: 1;
    padding: 22px
}

.bk-g {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 26px
}

.bk-fs {
    margin-bottom: 18px
}

.bk-fs__t {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--tx2);
    margin-bottom: 12px;
    padding-bottom: 7px;
    border-bottom: 1px solid var(--bd)
}

.bk-fr {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 14px
}

.bk-fr3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
    margin-bottom: 14px
}

.bk-fg {
    display: flex;
    flex-direction: column;
    margin-bottom: 12px
}

.bk-fg--compact {
    margin-bottom: 10px
}

.bk-fg label {
    font-size: .72rem;
    font-weight: 600;
    color: var(--tx2);
    text-transform: uppercase;
    letter-spacing: .4px;
    margin-bottom: 4px
}

.bk-fg input,.bk-fg select,.bk-fg textarea {
    border: 1px solid var(--bd);
    border-radius: var(--r);
    padding: 8px 11px;
    font-size: .86rem;
    color: var(--tx);
    background: var(--bg);
    transition: border-color .2s;
    outline: none;
    font-family: inherit;
    width: 100%
}

.bk-date-input {
    cursor: pointer;
}

.bk-country {
    position: relative;
}

.bk-lang {
    position: relative;
}

.bk-lang__trigger {
    border: 1px solid var(--bd);
    border-radius: var(--r);
    padding: 8px 11px;
    font-size: .86rem;
    color: var(--tx);
    background: var(--bg);
    width: 100%;
    min-height: 41px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    cursor: pointer;
}

.bk-lang__trigger:focus {
    border-color: var(--c1);
    box-shadow: 0 0 0 2px rgb(26 60 52 / .06);
    outline: none;
}

.bk-lang__selected {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.bk-lang__caret {
    width: 9px;
    height: 9px;
    border-right: 2px solid var(--tx2);
    border-bottom: 2px solid var(--tx2);
    transform: rotate(45deg);
    margin-top: -4px;
    flex: 0 0 auto;
}

.bk-lang.open .bk-lang__caret {
    transform: rotate(-135deg);
    margin-top: 3px;
}

.bk-lang__menu {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid var(--bd);
    border-radius: var(--r);
    box-shadow: 0 14px 34px rgba(0,0,0,.12);
    z-index: 30;
    overflow: hidden;
}

@media (max-width: 767px) {
    .bk-w-travelers.open,
    .bk-lang.open {
        z-index: auto;
    }

    .bk-w-travelers__panel,
    .bk-lang__menu {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        top: auto;
        width: 100%;
        max-width: none;
        margin: 0;
        border-radius: 24px 24px 0 0;
        border: 0;
        box-shadow: 0 -8px 28px rgba(10, 18, 35, .18), 0 0 0 100vmax rgba(10, 18, 35, .48);
        z-index: 100001;
        background: #fff;
        padding-bottom: max(24px, env(safe-area-inset-bottom));
    }

    .bk-w-travelers__panel {
        overflow: hidden;
    }

    .bk-w-sheet__header {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 64px;
        padding: 10px 16px;
        border-bottom: 1px solid #e8edf3;
        background: #fff;
    }

    .bk-w-sheet__close {
        position: absolute;
        left: 8px;
        top: 50%;
        transform: translateY(-50%);
    }

    .bk-lang__list {
        padding: 16px 0 24px;
    }

    .bk-lang__option {
        padding: 14px 20px;
    }

    .bk-w-travelers__row {
        padding: 24px 18px 18px;
    }

    .bk-w-travelers__footer {
        padding: 16px 18px 24px;
    }
}

.bk-lang__list {
    background: #fff;
    padding: 10px 0;
}

.bk-lang__option {
    width: 100%;
    border: 0;
    background: #fff;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
    cursor: pointer;
    font-size: .95rem;
    font-weight: 600;
    color: #173a55;
}

.bk-lang__option:hover,
.bk-lang__option:focus {
    background: #f5f8f7;
    outline: none;
}

.bk-lang__radio {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid #98a2b3;
    flex: 0 0 auto;
    position: relative;
}

.bk-lang__option.is-selected .bk-lang__radio {
    border-color: #1a73e8;
}

.bk-lang__option.is-selected .bk-lang__radio::after {
    content: "";
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    background: #1a73e8;
}

.bk-country__trigger {
    border: 1px solid var(--bd);
    border-radius: var(--r);
    padding: 8px 11px;
    font-size: .86rem;
    color: var(--tx);
    background: var(--bg);
    width: 100%;
    min-height: 41px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    cursor: pointer;
}

.bk-country__trigger:focus {
    border-color: var(--c1);
    box-shadow: 0 0 0 2px rgb(26 60 52 / .06);
    outline: none;
}

.bk-country__selected {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.bk-country__flag {
    width: 18px;
    height: 13px;
    border-radius: 2px;
    overflow: hidden;
    background: #eef2ef;
    border: 1px solid rgba(0,0,0,.08);
    flex: 0 0 auto;
}

.bk-country__flag img,.bk-country__option-flag {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bk-country__flag--placeholder {
    background: linear-gradient(135deg,#eef2ef,#d9e3df);
}

.bk-country__caret {
    width: 9px;
    height: 9px;
    border-right: 2px solid var(--tx2);
    border-bottom: 2px solid var(--tx2);
    transform: rotate(45deg);
    margin-top: -4px;
    flex: 0 0 auto;
}

.bk-country.open .bk-country__caret {
    transform: rotate(-135deg);
    margin-top: 3px;
}

.bk-country__menu {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid var(--bd);
    border-radius: var(--r);
    box-shadow: 0 14px 34px rgba(0,0,0,.12);
    z-index: 30;
    overflow: hidden;
}

.bk-country__search {
    border: 0;
    border-bottom: 1px solid var(--bd);
    padding: 10px 12px;
    width: 100%;
    font-size: .86rem;
    outline: none;
}

.bk-country__list {
    max-height: 260px;
    overflow-y: auto;
    background: #fff;
}

.bk-country__option {
    width: 100%;
    border: 0;
    background: #fff;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left;
    cursor: pointer;
    font-size: .86rem;
    color: var(--tx);
}

.bk-country__option-flag {
    width: 18px;
    height: 13px;
    border-radius: 2px;
    border: 1px solid rgba(0,0,0,.08);
    flex: 0 0 auto;
}

.bk-country__option:hover,.bk-country__option:focus {
    background: #f5f8f7;
    outline: none;
}

.bk-country__option[hidden] {
    display: none;
}

.bk-wa-field {
    display: grid;
    grid-template-columns: 118px 1fr;
    gap: 8px;
    align-items: stretch;
    position: relative;
}

.bk-wa-prefix {
    border: 1px solid var(--bd);
    border-radius: var(--r);
    background: var(--bg);
    min-height: 41px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 8px 10px;
    cursor: pointer;
    width: 100%;
}

.bk-wa-prefix__flag {
    width: 18px;
    height: 13px;
    border-radius: 2px;
    border: 1px solid rgba(0,0,0,.08);
    object-fit: cover;
    flex: 0 0 auto;
}

.bk-wa-prefix__code {
    font-size: .86rem;
    color: var(--tx);
    flex: 1 1 auto;
}

.bk-wa-prefix__caret {
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--tx2);
    border-bottom: 2px solid var(--tx2);
    transform: rotate(45deg);
    margin-top: -3px;
    flex: 0 0 auto;
}

.bk-wa-country {
    position: relative;
}

.bk-wa-country__menu {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    width: 280px;
    background: #fff;
    border: 1px solid var(--bd);
    border-radius: var(--r);
    box-shadow: 0 14px 34px rgba(0,0,0,.12);
    z-index: 35;
    overflow: hidden;
}

.bk-wa-country__option {
    width: 100%;
    border: 0;
    background: #fff;
    padding: 8px 12px;
    display: grid;
    grid-template-columns: 18px 1fr auto;
    align-items: center;
    gap: 10px;
    text-align: left;
    cursor: pointer;
    font-size: .86rem;
    color: var(--tx);
}

.bk-wa-country__option:hover,.bk-wa-country__option:focus {
    background: #f5f8f7;
    outline: none;
}

.bk-wa-country__option[hidden] {
    display: none;
}

.bk-wa-country__name {
    min-width: 0;
}

.bk-wa-country__dial {
    color: var(--tx2);
    white-space: nowrap;
}

@media(max-width: 480px) {
    .bk-wa-field {
        grid-template-columns: 104px 1fr;
    }

    .bk-wa-country__menu {
        width: 250px;
    }
}

.bk-fg input:focus,.bk-fg select:focus,.bk-fg textarea:focus {
    border-color: var(--c1);
    box-shadow: 0 0 0 2px rgb(26 60 52 / .06)
}

.bk-fg textarea {
    resize: vertical;
    min-height: 88px
}

.bk-tc {
    background: var(--bg2);
    border: 1px solid var(--bd);
    border-radius: var(--r);
    padding: 14px;
    margin-bottom: 10px
}

.bk-tc__t {
    font-size: .8rem;
    font-weight: 700;
    color: var(--c1);
    margin-bottom: 10px
}

.bk-tc__type {
    font-size: .68rem;
    font-weight: 600;
    color: var(--c2);
    text-transform: uppercase;
    letter-spacing: .3px;
    margin-left: 6px
}

.bk-tg {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(130px,1fr));
    gap: 8px
}

.bk-tg label {
    font-size: .68rem;
    font-weight: 600;
    color: var(--tx2);
    text-transform: uppercase;
    letter-spacing: .3px;
    margin-bottom: 3px
}

.bk-tg .bk-fg input,.bk-tg .bk-fg select {
    padding: 6px 9px;
    font-size: .8rem
}

.bk-s {
    background: var(--bg2);
    border: 1px solid var(--bd);
    border-radius: var(--r);
    padding: 18px;
    position: sticky;
    top: 0
}

.bk-s__t {
    font-size: .95rem;
    font-weight: 600;
    color: var(--c1);
    margin-bottom: 14px;
    padding-bottom: 9px;
    border-bottom: 1px solid var(--bd)
}

.bk-s__media {
    margin: -2px -2px 14px;
    border-radius: calc(var(--r) - 2px);
    overflow: hidden;
}

.bk-s__media img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
}

.bk-s__tour {
    font-size: .86rem;
    font-weight: 600;
    color: var(--tx);
    margin-bottom: 12px;
    line-height: 1.4
}

.bk-sr {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
    font-size: .83rem
}

.bk-sr__label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.bk-sr__label i {
    width: 14px;
    text-align: center;
    color: #a8b2bf;
    font-size: .84rem;
    flex: 0 0 auto;
}

.bk-sr--editable {
    gap: 12px;
}

.bk-sr__edit-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.bk-sr__edit {
    border: 0;
    background: transparent;
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0f4ca6;
    font-weight: 600;
    cursor: pointer;
}

.bk-sr__edit:hover,
.bk-sr__edit:focus {
    color: #0b3d83;
    outline: none;
}

.bk-sr__edit-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(15,76,166,.08);
    font-size: .78rem;
}

.bk-sr__date-input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.bk-sr__select-input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.bk-sr--m {
    color: var(--tx2);
    font-size: .78rem
}

.bk-sr--sub {
    color: var(--tx2);
    font-size: .78rem;
    padding-left: 10px
}

.bk-sr--tot {
    border-top: 2px solid var(--c1);
    margin-top: 6px;
    padding-top: 9px;
    font-weight: 700;
    font-size: 1.02rem;
    color: var(--c1)
}

.bk-sr--bal {
    color: var(--tx2);
    font-size: .8rem;
    padding-top: 1px
}

.bk-s__note {
    font-size: .7rem;
    color: var(--tx2);
    margin-top: 12px;
    padding: 8px 10px;
    background: rgb(26 60 52 / .03);
    border-radius: 4px;
    line-height: 1.45
}

.bk-s__warn {
    font-size: .76rem;
    color: #7a5e12;
    margin-top: 12px;
    padding: 10px 12px;
    background: #fef9ed;
    border: 1px solid #f0e2b6;
    border-radius: 4px;
    line-height: 1.55
}

.bk-s__warn strong {
    color: #6b4f0a
}

.bk-terms {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 16px;
    padding: 12px;
    background: var(--bg2);
    border: 1px solid var(--bd);
    border-radius: var(--r)
}

.bk-terms input[type=checkbox] {
    margin-top: 2px;
    width: 16px;
    height: 16px;
    accent-color: var(--c1);
    flex-shrink: 0;
    cursor: pointer
}

.bk-terms label {
    font-size: .8rem;
    color: var(--tx);
    line-height: 1.5;
    cursor: pointer
}

.bk-terms a {
    color: var(--c1);
    font-weight: 600;
    text-decoration: underline
}

.bk-bs {
    display: block;
    width: 100%;
    padding: 13px;
    margin-top: 14px;
    background: var(--c1);
    color: #fff;
    border: none;
    border-radius: var(--r);
    font-size: .9rem;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .2s,transform .15s
}

.bk-bs:hover:not(:disabled) {
    background: var(--c1h);
    transform: translateY(-1px)
}

.bk-bs:disabled {
    opacity: .35;
    cursor: not-allowed;
    transform: none;
    background: #8a9e98
}

#bk-pay-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999999;
    background: #f0f2f0;
    overflow-y: auto;
    display: none;
    -webkit-overflow-scrolling: touch;
}

#bk-pay-overlay.on {
    display: block;
}

.bk-pay-inner {
    min-height: 100%;
    padding: 18px 16px 28px;
}

.bk-pay-card {
    width: min(100%, 400px);
    margin: 0 auto;
    background: #fff;
    border: 1px solid #e1e6e1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(16, 24, 20, .04);
}

.bk-pay-header {
    padding: 14px 14px 18px;
    text-align: center;
}

.bk-pay-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 0;
    background: transparent;
    color: #263238;
    font-size: .72rem;
    padding: 0;
    margin: 0 auto 12px;
    cursor: pointer;
}

.bk-pay-back svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    stroke-width: 2.2;
}

.bk-pay-logo {
    width: 54px;
    height: 54px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    margin: 0 auto 10px;
}

.bk-pay-label {
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #d0d5d2;
    margin-bottom: 6px;
}

.bk-pay-amount {
    font-size: 2rem;
    line-height: 1.05;
    font-weight: 700;
    color: #000;
}

.bk-pay-confirmed {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    border-top: 1px solid #e7ebe7;
    border-bottom: 1px solid #e7ebe7;
    background: #fff;
}

.bk-pay-confirmed__icon {
    width: 26px;
    height: 26px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: rgba(76, 175, 80, .12);
    display: flex;
    align-items: center;
    justify-content: center;
}

.bk-pay-confirmed__icon svg {
    width: 14px;
    height: 14px;
    stroke: #2e7d32;
    stroke-width: 2.5;
}

.bk-pay-confirmed p {
    margin: 0;
    font-size: .79rem;
    line-height: 1.45;
    color: #455a64;
}

.bk-pay-confirmed strong {
    color: #0f172a;
}

.bk-pay-fee {
    text-align: center;
    font-size: .72rem;
    color: #7b8794;
    padding: 9px 14px;
    background: #fafbfa;
    border-bottom: 1px solid #e7ebe7;
}

.bk-pay-body {
    padding: 18px 16px 22px;
}

.bk-pay-body,
.bk-pay-body * {
    box-sizing: border-box;
}

.bk-pay-body iframe,
.bk-pay-body .kr-embedded,
.bk-pay-body .kr-smart-form,
.bk-pay-body form {
    width: 100% !important;
    max-width: 100% !important;
}

.bk-pay-footer {
    padding: 10px 16px;
    border-top: 1px solid #e7ebe7;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.bk-pay-footer span {
    font-size: .69rem;
    color: #98a2b3;
}

.bk-pay-footer img {
    height: 16px;
}

.bk-al {
    padding: 11px 14px;
    border-radius: var(--r);
    font-size: .83rem;
    margin-bottom: 14px
}

.bk-al--e {
    background: rgb(192 57 43 / .07);
    color: var(--err);
    border: 1px solid rgb(192 57 43 / .12)
}


.bk-pax-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    font-size: .84rem
}

.bk-pax-row label {
    font-size: .78rem;
    font-weight: 500;
    color: var(--tx);
    margin: 0;
    text-transform: none;
    letter-spacing: 0
}

.bk-pax-row .bk-pax-price {
    font-size: .72rem;
    color: var(--tx2)
}

.bk-pax-row select {
    width: 70px;
    padding: 5px 8px;
    font-size: .82rem;
    border: 1px solid var(--bd);
    border-radius: var(--r);
    background: #e8e8e8
}


.bk-addons-title {
    font-size: .72rem;
    font-weight: 600;
    color: var(--tx2);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 5px;
    display: block;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--bd)
}

.bk-addon-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
    font-size: .84rem
}

.bk-addon-row label {
    font-size: .78rem;
    font-weight: 500;
    color: var(--tx);
    margin: 0;
    text-transform: none;
    letter-spacing: 0
}

.bk-addon-row .bk-addon-price {
    font-size: .72rem;
    color: var(--tx2)
}

.bk-addon-row select {
    width: 70px;
    padding: 5px 8px;
    font-size: .82rem;
    border: 1px solid var(--bd);
    border-radius: var(--r);
    background: #e8e8e8
}

.bk-sr--addon-head {
    font-size: .72rem;
    font-weight: 700;
    color: var(--tx2);
    text-transform: uppercase;
    letter-spacing: .5px;
    padding: 8px 0 2px;
    margin-top: 4px;
    border-top: 1px dashed var(--bd)
}

@media(max-width: 768px) {
    .bk-m {
        width:100vw;
        max-width: 100vw;
        max-height: 100vh;
        border-radius: 0;
        height: 100vh
    }

    .bk-g {
        grid-template-columns: 1fr;
        gap: 18px
    }

    .bk-s {
        position: static;
        order: -1
    }

    .bk-fr {
        grid-template-columns: 1fr
    }

    .bk-fr3 {
        grid-template-columns: 1fr
    }

    .bk-m__bd {
        padding: 14px
    }

    .bk-tg {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width: 480px) {
    .bk-tg {
        grid-template-columns:1fr
    }

    .bk-w__b {
        padding: 14px
    }
}

