/* ══════════════════════════════════════
   TBF - Tour Booking Filters
   ══════════════════════════════════════ */

/* ── Wrapper ── */
.tbf-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 6px;
}

/* ── Form bar ── */
.tbf-form {
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.10);
    padding: 24px;
    gap: 0;
    flex-wrap: nowrap;
    position: relative;
}

/* ── Divider ── */
.tbf-divider {
    width: 1px;
    height: 44px;
    background: #e3e8f0;
    flex-shrink: 0;
    margin: 0 4px;
}

/* ── Each field ── */
.tbf-field {
    flex: 1;
    min-width: 0;
    position: relative;
}

.tbf-field-inner {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 4px 16px 4px 12px;
    cursor: pointer;
    border-radius: 50px;
    transition: background .18s;
}
.tbf-field-inner:hover {
    background: #f4f8ff;
}

/* ── Icon ── */
.tbf-icon {
    flex-shrink: 0;
    width: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ── Content ── */
.tbf-content {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.tbf-label {
    font-size: 11px;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: .4px;
    line-height: 1.2;
    white-space: nowrap;
}

/* ── Custom Select ── */
.tbf-custom-select {
    position: relative;
    cursor: pointer;
    user-select: none;
}

.tbf-select-display {
    display: flex;
    align-items: center;
    gap: 6px;
}

.tbf-select-text {
    font-size: 14px;
    font-weight: 500;
    color: #1a1a2e;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 130px;
}

.tbf-chevron {
    flex-shrink: 0;
    transition: transform .2s;
}
.tbf-custom-select.open .tbf-chevron {
    transform: rotate(180deg);
}

/* ── Dropdown ── */
.tbf-dropdown-list {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    left: -12px;
    min-width: 200px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.13);
    z-index: 9999;
    overflow: hidden;
    border: 1px solid #eaf0fb;
    animation: tbfSlideDown .18s ease;
}
.tbf-custom-select.open .tbf-dropdown-list {
    display: block;
}

@keyframes tbfSlideDown {
    from { opacity:0; transform:translateY(-6px); }
    to   { opacity:1; transform:translateY(0); }
}

.tbf-option {
    padding: 11px 16px;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    transition: background .14s, color .14s;
}
.tbf-option:hover { background: #f0f6ff; color: #015FC9; }
.tbf-option.selected { background: #e8f0fe; color: #015FC9; font-weight: 600; }

/* ── Date Display ── */
.tbf-date-display,
.tbf-guest-display {
    font-size: 14px;
    font-weight: 500;
    color: #1a1a2e;
    white-space: nowrap;
}

/* ── Date Panel ── */
.tbf-date-panel,
.tbf-guest-panel {
    display: none;
    position: absolute;
    top: calc(100% + 14px);
    left: 0;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.14);
    z-index: 9999;
    border: 1px solid #eaf0fb;
    animation: tbfSlideDown .18s ease;
    min-width: 320px;
}
.tbf-date-panel.open,
.tbf-guest-panel.open {
    display: block;
}

.tbf-date-panel-inner {
    padding: 20px;
}

.tbf-date-row {
    display: flex;
    align-items: center;
    gap: 12px;
}
.tbf-date-col {
    flex: 1;
}
.tbf-date-col label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: .4px;
    margin-bottom: 6px;
}
.tbf-date-sep {
    font-size: 18px;
    color: #015FC9;
    font-weight: 600;
    padding-top: 20px;
}
.tbf-date-input {
    width: 100%;
    border: 1.5px solid #e0e8f5;
    border-radius: 8px;
    padding: 9px 12px;
    font-size: 14px;
    color: #1a1a2e;
    outline: none;
    transition: border .18s;
    box-sizing: border-box;
}
.tbf-date-input:focus {
    border-color: #015FC9;
}

.tbf-date-apply {
    display: block;
    width: 100%;
    margin-top: 14px;
    padding: 11px;
    background: #015FC9;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background .18s;
}
.tbf-date-apply:hover { background: #014aaa; }

/* ── Guest Panel ── */
.tbf-guest-panel {
    min-width: 280px;
    padding: 16px 18px;
}

.tbf-guest-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}
.tbf-guest-row:last-of-type { border-bottom: none; }

.tbf-guest-info {
    display: flex;
    flex-direction: column;
}
.tbf-gtype {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a2e;
}
.tbf-gsub {
    font-size: 11px;
    color: #999;
}

/* ── Counter ── */
.tbf-counter {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1.5px solid #e0e8f5;
    border-radius: 24px;
    overflow: hidden;
}
.tbf-cnt-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: #fff;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    color: #015FC9;
    font-weight: 600;
    transition: background .14s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tbf-cnt-btn:hover { background: #f0f6ff; }
.tbf-cnt-val {
    width: 36px;
    border: none;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a2e;
    background: #fff;
    -moz-appearance: textfield;
    pointer-events: none;
}
.tbf-cnt-val::-webkit-outer-spin-button,
.tbf-cnt-val::-webkit-inner-spin-button { -webkit-appearance: none; }

/* ── Search Button ── */
.tbf-search-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: #F5A623;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background .18s, transform .15s;
    letter-spacing: .2px;
    box-shadow: 0 4px 16px rgba(245,166,35,0.35);
}
.tbf-search-btn:hover {
    background: #e09310;
    transform: translateY(-1px);
}
.tbf-search-btn:active { transform: translateY(0); }

/* ── Parent / Child category styling ── */
.tbf-opt-parent {
    font-weight: 700;
    color: #1a1a2e;
    border-top: 1px solid #f0f4fb;
    margin-top: 2px;
    padding-top: 10px;
}
.tbf-opt-parent:first-child { border-top: none; margin-top: 0; padding-top: 11px; }
.tbf-opt-child {
    padding-left: 28px;
    font-size: 13px;
    color: #555;
}
.tbf-opt-child::before {
    content: '↳ ';
    color: #015FC9;
    font-size: 11px;
}
.tbf-opt-child:hover { color: #015FC9; }
.tbf-opt-child.selected { color: #015FC9; font-weight: 600; }
.tbf-cat-count {
    font-size: 11px;
    color: #999;
    font-weight: 400;
    margin-left: 4px;
}

/* ════════════════════════════════════════════════════════
   [tbf_results] — Search Results Grid
   ════════════════════════════════════════════════════════ */

.tbf-results-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eaf0fb;
}

/* Grid */
.tbf-results-grid {
    display: grid;
    gap: 24px;
    margin-bottom: 40px;
}
.tbf-cols-1 { grid-template-columns: 1fr; }
.tbf-cols-2 { grid-template-columns: repeat(2, 1fr); }
.tbf-cols-3 { grid-template-columns: repeat(3, 1fr); }
.tbf-cols-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1024px) {
    .tbf-cols-3, .tbf-cols-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .tbf-cols-2, .tbf-cols-3, .tbf-cols-4 { grid-template-columns: 1fr; }
}

/* Card */
.tbf-result-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .18s, box-shadow .18s;
    border: 1px solid #eaf0fb;
}
.tbf-result-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.11);
}

.tbf-card-img-wrap {
    display: block;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: #f0f4ff;
    text-decoration: none;
}
.tbf-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s;
}
.tbf-result-card:hover .tbf-card-img { transform: scale(1.04); }

.tbf-card-no-img {
    display: flex;
    align-items: center;
    justify-content: center;
}
.tbf-card-placeholder { font-size: 40px; }

.tbf-card-body {
    padding: 16px 18px 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.tbf-card-dest {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 600;
    color: #015FC9;
    text-transform: uppercase;
    letter-spacing: .4px;
    margin-bottom: 6px;
}

.tbf-card-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 10px;
    line-height: 1.35;
}
.tbf-card-title a {
    color: inherit;
    text-decoration: none;
}
.tbf-card-title a:hover { color: #015FC9; }

.tbf-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 14px;
    flex: 1;
}

.tbf-card-tag {
    display: inline-block;
    background: #eaf0fb;
    color: #015FC9;
    font-size: 14px;
    font-weight: 600;
    padding: 3px 9px;
    border-radius: 20px;
}

.tbf-card-dates,
.tbf-card-guests {
    font-size: 12px;
    color: #777;
    display: flex;
    align-items: center;
    gap: 3px;
}

.tbf-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid #f0f4fb;
}

.tbf-card-price {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
}
.tbf-card-price del { font-size: 13px; color: #999; font-weight: 400; }

.tbf-card-btn {
    display: inline-flex;
    align-items: center;
    padding: 7px 16px;
    background: #F9A729;
    color: #fff !important;
    font-size: 13px;
    font-weight: 600;
    border-radius: 20px;
    text-decoration: none !important;
    transition: background .16s;
    white-space: nowrap;
}
.tbf-card-btn:hover { background: #e09310; }

/* No results */
.tbf-no-results {
    text-align: center;
    padding: 60px 20px;
    background: #fafcff;
    border-radius: 14px;
    border: 1px dashed #c5d7f5;
}
.tbf-no-results-icon { font-size: 48px; margin-bottom: 12px; }
.tbf-no-results p { font-size: 16px; color: #666; }

/* Pagination */
.tbf-pagination {
    display: flex;
    gap: 6px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}
.tbf-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 10px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    border: 1.5px solid #e0e8f5;
    color: #333;
    text-decoration: none;
    transition: all .16s;
    background: #fff;
}
.tbf-pagination .page-numbers:hover,
.tbf-pagination .page-numbers.current {
    background: #015FC9;
    color: #fff;
    border-color: #015FC9;
}

/* ════════════════════════════════════════════════════════
   Active Filters Summary / Results Heading
   ════════════════════════════════════════════════════════ */

.tbf-search-summary {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tbf-summary-heading {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 24px;
    font-weight: 800;
    color: #1a1a2e;
    margin: 0;
    line-height: 1.3;
}

.tbf-summary-count { color: #F9A729; }
.tbf-summary-in { font-size: 18px; font-weight: 400; color: #999; }

.tbf-summary-dest {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #1a1a2e;
    font-weight: 800;
}

.tbf-summary-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 2px;
}

.tbf-summary-chip {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #f0f6ff;
    border: 1.5px solid #d0e4ff;
    color: #015FC9;
    font-size: 13px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    white-space: nowrap;
}

.tbf-search-summary-empty {
    text-align: center;
    padding: 50px 20px;
    background: #fafcff;
    border-radius: 14px;
    border: 1px dashed #c5d7f5;
}
.tbf-search-summary-empty .tbf-summary-title {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 20px;
}
.tbf-search-summary-empty .tbf-summary-dest { font-size: 15px; font-weight: 700; color: #015FC9; }
.tbf-search-summary-empty .tbf-no-results-icon { font-size: 40px; margin-bottom: 10px; }
.tbf-search-summary-empty p { font-size: 15px; color: #666; margin: 0; }

@media (max-width: 600px) {
    .tbf-summary-heading { font-size: 20px; }
}

/* ════════════════════════════════════════════════════════
   Booking Form — Single Product Page
   ════════════════════════════════════════════════════════ */

.tbf-booking-form-wrap {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.09);
    padding: 28px 24px;
    max-width: 420px;
}

.tbf-booking-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid #f0f4ff;
}

.tbf-bf-row { margin-bottom: 16px; }

.tbf-bf-info-row {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f7faff;
    border-radius: 8px;
    padding: 10px 14px !important;
    border: 1px solid #e8f0fb;
}
.tbf-bf-info-icon { font-size: 18px; flex-shrink: 0; display: flex; align-items: center; }
.tbf-bf-info-text { display: flex; flex-direction: column; gap: 2px; }
.tbf-bf-info-label { font-size: 10px; font-weight: 600; color: #999; text-transform: uppercase; letter-spacing: .4px; }
.tbf-bf-info-val { font-size: 14px; font-weight: 600; color: #1a1a2e; }

.tbf-bf-avail-banner {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #eaf4ff;
    border: 1px solid #c0dcf7;
    border-radius: 8px;
    padding: 9px 13px;
    font-size: 12px;
    color: #015FC9;
    margin-bottom: 4px;
}
.tbf-bf-avail-banner strong { color: #013d8a; }

.tbf-bf-label {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    font-weight: 600;
    color: #444;
    margin-bottom: 8px;
}
.tbf-required { color: #e53935; font-size: 15px; line-height: 1; }
.tbf-max-note { font-weight: 400; color: #999; font-size: 12px; }

.tbf-bf-input {
    width: 100%;
    border: 1.5px solid #e0e8f5;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 14px;
    color: #1a1a2e;
    outline: none;
    box-sizing: border-box;
    transition: border .18s;
    background: #fafcff;
}
.tbf-bf-input:focus { border-color: #015FC9; background: #fff; }

.tbf-bf-nights { margin-top: 8px; }
.tbf-nights-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #fff3e0;
    border: 1px solid #ffe0b2;
    color: #e65100;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
}

.tbf-bf-guests {
    border: 1.5px solid #e0e8f5;
    border-radius: 10px;
    overflow: hidden;
}
.tbf-bf-guest-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    border-bottom: 1px solid #f0f0f0;
}
.tbf-bf-guest-row:last-of-type { border-bottom: none; }
.tbf-bf-guest-info { display: flex; flex-direction: column; gap: 2px; }
.tbf-bf-gtype { font-size: 14px; font-weight: 600; color: #1a1a2e; }
.tbf-bf-gsub { font-size: 11px; color: #999; }

.tbf-counter-sm .tbf-cnt-btn { width: 28px; height: 28px; font-size: 16px; }
.tbf-counter-sm .tbf-cnt-val { width: 30px; font-size: 13px; }

.tbf-bf-guest-total {
    text-align: right;
    padding: 8px 14px 4px;
    font-size: 12px;
    color: #777;
    border-top: 1px solid #f5f5f5;
}
.tbf-bf-guest-total strong { color: #015FC9; font-size: 14px; }

.tbf-bf-error {
    margin-top: 10px;
    padding: 10px 14px;
    background: #fff3f3;
    border: 1px solid #ffd0d0;
    border-radius: 8px;
    font-size: 13px;
    color: #c62828;
    line-height: 1.7;
}

.tbf-book-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px;
    background: #015FC9;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background .18s, transform .15s;
    margin-top: 12px;
}
.tbf-book-btn:hover { background: #014aaa; transform: translateY(-1px); }
.tbf-book-btn:active { transform: translateY(0); }

/* ════ RESPONSIVE ════ */
@media (max-width: 1024px) {
    .tbf-form {
        flex-wrap: wrap;
        border-radius: 20px;
        padding: 14px;
        gap: 8px;
    }
    .tbf-divider { display: none; }
    .tbf-field { flex: 1 1 45%; }
    .tbf-search-btn { flex: 1 1 100%; justify-content: center; margin-top: 4px; }
}
@media (max-width: 600px) {
    .tbf-field { flex: 1 1 100%; }
    .tbf-field-inner { padding: 10px 14px; }
    .tbf-date-panel, .tbf-guest-panel { left: 0; right: 0; min-width: 0; }
}

/* ═══════════════════════════════════════════════════
   TBF BOOKING FORM — Single Product Page
   ═══════════════════════════════════════════════════ */
.tbf-booking-form-wrap {
    margin: 16px 0 20px;
    border: 1px solid #e8eef7;
    border-radius: 12px;
    padding: 16px;
    background: #f8faff;
    font-family: inherit;
}

/* Tour info chips */
.tbf-bf-tour-info {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 14px;
}
.tbf-bf-info-chip {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #e8f0fe;
    color: #015FC9;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
}
.tbf-bf-activity-chip { background: #e8f7ee; color: #1a7a40; }

/* Field rows */
.tbf-bf-field {
    position: relative;
    margin-bottom: 10px;
}
.tbf-bf-field:last-of-type { margin-bottom: 0; }

.tbf-bf-field-trigger {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid #dce6f5;
    border-radius: 8px;
    padding: 10px 14px;
    cursor: pointer;
    transition: border-color .2s, box-shadow .2s;
    user-select: none;
}
.tbf-bf-field-trigger:hover {
    border-color: #015FC9;
    box-shadow: 0 0 0 3px rgba(1,95,201,.08);
}

.tbf-bf-field-icon { flex-shrink: 0; display: flex; align-items: center; }
.tbf-bf-field-content { flex: 1; min-width: 0; }
.tbf-bf-field-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: #015FC9;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 2px;
}
.tbf-bf-date-display,
.tbf-bf-guest-display {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #1a1a2e;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.tbf-bf-chevron { flex-shrink: 0; transition: transform .2s; }

/* Panels */
.tbf-bf-panel {
    display: none;
    background: #fff;
    border: 1px solid #dce6f5;
    border-top: none;
    border-radius: 0 0 8px 8px;
    padding: 14px;
    box-shadow: 0 4px 16px rgba(0,0,0,.08);
    z-index: 100;
}
.tbf-bf-panel.open { display: block; }

/* Date panel */
.tbf-bf-date-row { display: flex; gap: 10px; align-items: flex-end; }
.tbf-bf-date-col { flex: 1; }
.tbf-bf-date-col label { display: block; font-size: 12px; font-weight: 600; color: #666; margin-bottom: 4px; }
.tbf-bf-date-sep { font-size: 18px; color: #015FC9; padding-bottom: 2px; }
.tbf-bf-date-input {
    width: 100%;
    padding: 7px 10px;
    border: 1px solid #dce6f5;
    border-radius: 6px;
    font-size: 13px;
    background: #f8faff;
    box-sizing: border-box;
}
.tbf-bf-date-input:focus { outline: none; border-color: #015FC9; }
.tbf-bf-dates-note { font-size: 11px; color: #888; margin: 8px 0 0; }

/* Guest panel */
.tbf-bf-guest-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #f0f4fb;
}
.tbf-bf-guest-row:last-of-type { border-bottom: none; }
.tbf-bf-guest-info { display: flex; flex-direction: column; }
.tbf-bf-gtype { font-size: 14px; font-weight: 600; color: #1a1a2e; }
.tbf-bf-gsub { font-size: 11px; color: #888; }
.tbf-bf-counter { display: flex; align-items: center; gap: 8px; }
.tbf-bf-cnt-btn {
    width: 28px; height: 28px;
    border-radius: 50%;
    border: 1.5px solid #015FC9;
    background: transparent;
    color: #015FC9;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background .15s, color .15s;
    padding: 0;
}
.tbf-bf-cnt-btn:hover { background: #015FC9; color: #fff; }
.tbf-bf-cnt-val {
    width: 36px;
    text-align: center;
    border: none;
    font-size: 15px;
    font-weight: 700;
    color: #1a1a2e;
    background: transparent;
    -moz-appearance: textfield;
}
.tbf-bf-cnt-val::-webkit-outer-spin-button,
.tbf-bf-cnt-val::-webkit-inner-spin-button { -webkit-appearance: none; }

/* Apply button */
.tbf-bf-apply-btn {
    margin-top: 12px;
    width: 100%;
    padding: 9px;
    background: #015FC9;
    color: #fff;
    border: none;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: background .2s;
}
.tbf-bf-apply-btn:hover { background: #0147a0; }
