/* ═══════════════════════════════════════════════════
   BIMMER CUSTOMS CALCULATOR  v1.1
   ═══════════════════════════════════════════════════ */
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Rajdhani:wght@400;600;700&family=Orbitron:wght@700;900&display=swap");

.bcc-wrap {
  --bcc-black:  #080808;
  --bcc-dark:   #0f0f0f;
  --bcc-card:   #141414;
  --bcc-border: #222;
  --bcc-red:    #cc0000;
  --bcc-red2:   #ff1a1a;
  --bcc-white:  #f0f0f0;
  --bcc-gray:   #666;
  --bcc-lgray:  #aaa;
  font-family: "Rajdhani", sans-serif;
  font-size: 16px;
  color: var(--bcc-white);
  background: var(--bcc-black);
  /* Fix for all mobile browsers incl. iPhone Safari */
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}
.bcc-wrap *, .bcc-wrap *::before, .bcc-wrap *::after {
  box-sizing: border-box;
  min-width: 0;
}

/* TOPBAR ─────────────────────────────────────────── */
.bcc-topbar {
  display: none;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 13px 22px;
  background: var(--bcc-dark); border: 1px solid var(--bcc-border);
  margin-bottom: 2px;
}
.bcc-topbar-text { font-size: 14px; color: var(--bcc-lgray); }
.bcc-topbar-text strong { color: var(--bcc-white); }
.bcc-topbar-btn {
  display: flex; align-items: center; gap: 8px; white-space: nowrap;
  background: transparent; border: 2px solid var(--bcc-white); color: var(--bcc-white);
  padding: 9px 24px; font-family: "Bebas Neue", sans-serif;
  font-size: 18px; letter-spacing: 3px; cursor: pointer; transition: all .2s;
}
.bcc-topbar-btn:hover { background: var(--bcc-red); border-color: var(--bcc-red); }

/* WARNING ────────────────────────────────────────── */
.bcc-warning {
  display: flex; align-items: flex-start; gap: 10px;
  background: rgba(204,0,0,.07); border-left: 3px solid var(--bcc-red);
  padding: 10px 18px; margin-bottom: 2px;
  font-size: 12px; color: var(--bcc-lgray); line-height: 1.6;
}
.bcc-warn-ico { color: var(--bcc-red); font-size: 15px; flex-shrink: 0; margin-top: 2px; }
.bcc-warning strong { color: var(--bcc-white); }

/* RATES BAR ──────────────────────────────────────── */
.bcc-rates-bar {
  display: flex; align-items: center; flex-wrap: wrap; gap: 14px;
  background: var(--bcc-dark); border: 1px solid var(--bcc-border);
  padding: 11px 14px; margin-bottom: 2px;
  width: 100%; max-width: 100%; overflow: hidden;
}
.bcc-rate-item  { display: flex; align-items: center; gap: 10px; }
.bcc-rate-lbl   { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--bcc-gray); white-space: nowrap; }
.bcc-rate-inp-wrap { display: flex; align-items: center; border: 1px solid var(--bcc-border); background: var(--bcc-black); }
.bcc-rate-sym   { padding: 7px 10px; font-size: 13px; color: var(--bcc-red); font-weight: 700; border-right: 1px solid var(--bcc-border); }
.bcc-rate-inp   {
  width: 86px; background: transparent; border: none; outline: none;
  color: var(--bcc-white); font-family: "Orbitron", monospace; font-size: 14px;
  font-weight: 700; padding: 7px 10px;
}
.bcc-rate-inp::-webkit-inner-spin-button,
.bcc-rate-inp::-webkit-outer-spin-button { -webkit-appearance: none; }

.bcc-rate-refresh-btn {
  display: flex; align-items: center; gap: 7px; margin-left: auto;
  background: transparent; border: 1px solid var(--bcc-border); color: var(--bcc-gray);
  padding: 7px 14px; font-family: "Rajdhani", sans-serif; font-size: 12px;
  letter-spacing: 1px; cursor: pointer; transition: all .2s; white-space: nowrap;
}
.bcc-rate-refresh-btn:hover   { border-color: var(--bcc-red); color: var(--bcc-white); }
.bcc-rate-refresh-btn:disabled{ opacity: .5; pointer-events: none; }
.bcc-loading { opacity: .6 !important; pointer-events: none !important; }

.bcc-rate-status      { font-size: 11px; color: var(--bcc-gray); }
.bcc-rate-status.bcc-ok  { color: #22cc66; }
.bcc-rate-status.bcc-err { color: var(--bcc-red); }

/* MAIN GRID ──────────────────────────────────────── */
.bcc-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2px; background: var(--bcc-border);
}
.bcc-panel { background: var(--bcc-dark); padding: 26px 24px; }

/* SECTION TITLE ──────────────────────────────────── */
.bcc-sec-title {
  display: flex; align-items: center; gap: 10px; margin-bottom: 18px;
  font-family: "Bebas Neue", sans-serif; font-size: 18px;
  letter-spacing: 3px; color: var(--bcc-white);
}

/* INPUTS ─────────────────────────────────────────── */
.bcc-field  { margin-bottom: 10px; }
.bcc-row2   { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 10px; }

.bcc-inp {
  width: 100%; background: var(--bcc-black);
  border: 1px solid var(--bcc-border); border-left: 2px solid var(--bcc-red);
  color: var(--bcc-white); padding: 10px 12px;
  font-family: "Rajdhani", sans-serif; font-size: 15px; font-weight: 600;
  outline: none; transition: border-color .2s;
  appearance: none; -webkit-appearance: none; box-sizing: border-box;
}
.bcc-inp:focus { border-color: var(--bcc-red); background: rgba(204,0,0,.04); }
.bcc-inp::placeholder { color: var(--bcc-gray); font-weight: 400; }
.bcc-inp:disabled { opacity: .38; cursor: not-allowed; }

select.bcc-inp {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23cc0000' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center;
  padding-right: 32px;
}
select.bcc-inp option { background: #111; }

.bcc-pfx-wrap { display: flex; }
.bcc-pfx {
  background: var(--bcc-card); border: 1px solid var(--bcc-border); border-right: none;
  color: var(--bcc-red); font-weight: 700; padding: 10px 12px; font-size: 14px; flex-shrink: 0;
}
.bcc-inp-pfx { border-left: 1px solid var(--bcc-border); }
.bcc-inp::-webkit-outer-spin-button,
.bcc-inp::-webkit-inner-spin-button { -webkit-appearance: none; }

.bcc-field-lbl { display: block; font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--bcc-gray); margin-bottom: 6px; }

/* SEPARATORS & RESULTS ───────────────────────────── */
.bcc-sep { height: 1px; background: var(--bcc-border); margin: 22px 0; }

.bcc-res-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 9px 0; border-top: 1px solid var(--bcc-border);
}
.bcc-res-lbl { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--bcc-lgray); }
.bcc-res-val { font-family: "Orbitron", monospace; font-size: 17px; font-weight: 900; color: var(--bcc-red); }
.bcc-val-sm  { font-size: 13px; color: var(--bcc-lgray); font-family: "Orbitron", monospace; font-weight: 700; }

.bcc-note         { font-size: 11px; color: var(--bcc-gray); margin-top: 2px; margin-bottom: 8px; }
.bcc-note-port    { font-size: 11px; color: var(--bcc-red);  margin-top: 2px; margin-bottom: 8px; font-weight: 600; min-height: 16px; }

/* RADIO ──────────────────────────────────────────── */
.bcc-radio-row { display: flex; align-items: center; flex-wrap: wrap; gap: 14px; margin-bottom: 8px; }
.bcc-radio-lbl { font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--bcc-gray); min-width: 90px; }
.bcc-radio-opt { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--bcc-lgray); cursor: pointer; user-select: none; }
.bcc-radio-opt input { display: none; }
.bcc-rdot {
  width: 14px; height: 14px; border-radius: 50%;
  border: 2px solid var(--bcc-border); flex-shrink: 0; transition: all .2s;
}
.bcc-rdot.on { border-color: var(--bcc-red); background: var(--bcc-red); box-shadow: 0 0 0 3px rgba(204,0,0,.15); }

/* CUSTOMS LIST ───────────────────────────────────── */
.bcc-cust-list { margin-bottom: 16px; }
.bcc-cust-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 14px; background: var(--bcc-black);
  border-bottom: 1px solid var(--bcc-border);
}
.bcc-cust-row:first-child { border-top: 1px solid var(--bcc-border); }
.bcc-cust-lbl { font-size: 13px; color: var(--bcc-lgray); }
.bcc-cust-lbl small { font-size: 10px; color: var(--bcc-gray); margin-left: 4px; display: block; }
.bcc-cust-val { font-family: "Orbitron", monospace; font-size: 13px; font-weight: 700; color: var(--bcc-white); }

/* REPAIR ─────────────────────────────────────────── */
.bcc-repair-toggle {
  width: 100%; background: transparent; border: 1px dashed var(--bcc-border);
  color: var(--bcc-gray); padding: 11px; cursor: pointer;
  font-family: "Rajdhani", sans-serif; font-size: 12px; letter-spacing: 2px;
  text-transform: uppercase; transition: all .2s;
}
.bcc-repair-toggle:hover { border-color: var(--bcc-lgray); color: var(--bcc-white); }
.bcc-repair-panel { display: none; padding: 14px 0 0; }
.bcc-repair-panel.open { display: block; }

/* TOTAL BAR ──────────────────────────────────────── */
.bcc-total-bar {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--bcc-red); padding: 18px 28px; margin-top: 2px;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
}
.bcc-total-lbl { font-family: "Bebas Neue", sans-serif; font-size: 22px; letter-spacing: 3px; color: #fff; }
.bcc-total-sub { font-size: 10px; letter-spacing: 2px; color: rgba(255,255,255,.7); margin-top: 2px; }
.bcc-total-right { text-align: right; }
.bcc-total-usd { font-family: "Orbitron", monospace; font-size: 30px; font-weight: 900; color: #fff; letter-spacing: 2px; }
.bcc-total-uah { font-size: 12px; color: rgba(255,255,255,.8); margin-top: 2px; }

/* CONTACT FORM ───────────────────────────────────── */
.bcc-contact { display: none; background: var(--bcc-black); border: 1px solid var(--bcc-border); border-top: 3px solid var(--bcc-red); padding: 28px; margin-top: 2px; }
.bcc-contact.open { display: block; }
.bcc-contact-title { font-family: "Bebas Neue", sans-serif; font-size: 26px; letter-spacing: 3px; margin-bottom: 6px; }
.bcc-contact-sub   { font-size: 13px; color: var(--bcc-gray); margin-bottom: 20px; }
.bcc-contact-grid  { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 16px; }
.bcc-contact-actions { display: flex; gap: 12px; }

.bcc-btn-cancel {
  background: transparent; border: 1px solid var(--bcc-border); color: var(--bcc-lgray);
  padding: 12px 24px; font-family: "Rajdhani", sans-serif; font-size: 13px;
  letter-spacing: 2px; text-transform: uppercase; cursor: pointer; transition: all .2s;
}
.bcc-btn-cancel:hover { border-color: var(--bcc-lgray); }
.bcc-btn-send {
  flex: 1; background: var(--bcc-red); border: none; color: #fff;
  padding: 12px 28px; font-family: "Rajdhani", sans-serif; font-size: 14px;
  font-weight: 700; letter-spacing: 2px; text-transform: uppercase; cursor: pointer;
  clip-path: polygon(0 0,calc(100% - 10px) 0,100% 10px,100% 100%,10px 100%,0 calc(100% - 10px));
  transition: background .2s;
}
.bcc-btn-send:hover    { background: var(--bcc-red2); }
.bcc-btn-send:disabled { opacity: .6; pointer-events: none; }

.bcc-msg         { margin-top: 12px; font-size: 13px; }
.bcc-msg.bcc-ok  { color: #22cc66; }
.bcc-msg.bcc-err { color: var(--bcc-red); }

/* RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 800px) {
  .bcc-grid          { grid-template-columns: 1fr; }
  .bcc-rates-bar     { gap: 10px; }
  .bcc-rate-refresh-btn { margin-left: 0; }
  .bcc-total-bar     { clip-path: none; padding: 16px 18px; flex-direction: column; align-items: flex-start; gap: 6px; }
  .bcc-total-right   { text-align: left; }
  .bcc-total-usd     { font-size: 22px; }
  .bcc-contact-grid  { grid-template-columns: 1fr; }
  .bcc-topbar        { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .bcc-panel             { padding: 16px 12px; }
  .bcc-row2              { grid-template-columns: 1fr; }
  .bcc-contact-actions   { flex-direction: column; }
  .bcc-rate-inp          { width: 52px !important; }
  .bcc-rates-bar         { padding: 10px 12px; gap: 8px; }
}

/* Inline editable service field */
.bcc-cust-row-inp         { align-items: center; }
.bcc-pfx-sm               { padding: 6px 9px; font-size: 13px; }
.bcc-inp-sm               { padding: 6px 10px; font-size: 14px; width: 100px; }
.bcc-cust-row-inp .bcc-pfx-wrap { margin: 0; }

/* ── 3-column customs row ───────────────────────────────── */
.bcc-cust-row3 {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  background: var(--bcc-black);
  border-bottom: 1px solid var(--bcc-border);
}
.bcc-cust-row3:first-child { border-top: 1px solid var(--bcc-border); }

.bcc-cust-mid {
  font-family: "Orbitron", monospace;
  font-size: 12px;
  font-weight: 700;
  color: var(--bcc-lgray);
  min-width: 60px;
  text-align: center;
}

/* ── Customs total dual (UAH + USD) ─────────────────────── */
.bcc-res-row-col {
  flex-direction: row;
  align-items: center;
}
.bcc-res-dual {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}
.bcc-res-sub {
  font-family: "Orbitron", monospace;
  font-size: 12px;
  font-weight: 700;
  color: var(--bcc-lgray);
}

/* ── Fix 2: customs total — swap UAH/USD emphasis ──────────── */
#bccCustTotal {
  font-family: "Rajdhani", sans-serif !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  color: var(--bcc-white) !important;
}
#bccCustTotalUsd {
  font-family: "Orbitron", monospace !important;
  font-size: 22px !important;
  font-weight: 900 !important;
  color: var(--bcc-red) !important;
}

/* ── Fix 3: center middle column in 3-col row ───────────────── */
.bcc-cust-mid {
  text-align: center !important;
  justify-self: center;
}
.bcc-cust-row3 {
  grid-template-columns: 1fr minmax(70px, auto) minmax(90px, auto);
}

/* ── Total bar: нова мітка + більший шрифт суми ────────────── */
.bcc-total-label2 {
  font-family: "Rajdhani", sans-serif;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  margin-bottom: 2px;
}
.bcc-total-usd {
  font-size: 42px !important;
  letter-spacing: 3px;
}

/* ── Lot Lookup Block ──────────────────────────────────────────────────────── */
.bcc-lot-lookup {
  background: #111;
  border-bottom: 2px solid var(--bcc-red);
  padding: 16px 20px 12px;
}
.bcc-lot-row {
  display: flex;
  gap: 10px;
  align-items: stretch;
}
.bcc-lot-inp-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  background: var(--bcc-black);
  border: 1px solid var(--bcc-border);
  border-radius: 4px;
  padding: 0 12px;
  gap: 8px;
  transition: border-color .2s;
}
.bcc-lot-inp-wrap:focus-within {
  border-color: var(--bcc-red);
}
.bcc-lot-icon {
  font-size: 16px;
  flex-shrink: 0;
  opacity: .7;
}
.bcc-lot-inp {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--bcc-white);
  font-family: "Rajdhani", sans-serif;
  font-size: 14px;
  padding: 12px 0;
}
.bcc-lot-inp::placeholder {
  color: var(--bcc-lgray);
  font-size: 13px;
}
.bcc-lot-btn {
  flex-shrink: 0;
  background: var(--bcc-red);
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 0 22px;
  font-family: "Orbitron", monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s, opacity .2s;
}
.bcc-lot-btn:hover   { background: #c0392b; }
.bcc-lot-btn:disabled { opacity: .6; cursor: default; }

/* Status bar */
.bcc-lot-status {
  margin-top: 8px;
  font-family: "Rajdhani", sans-serif;
  font-size: 13px;
  min-height: 18px;
  padding: 0 2px;
}
.bcc-lot-ok      { color: #2ecc71; }
.bcc-lot-err     { color: var(--bcc-red); }
.bcc-lot-loading { color: var(--bcc-lgray); }



/* ── Total bar compact ──────────────────────────────────────────────────── */
.bcc-total-compact {
  padding: 14px 20px !important;
}
.bcc-total-compact .bcc-total-label2 {
  font-size: 10px;
  letter-spacing: 3px;
  margin-bottom: 1px;
}
.bcc-total-compact .bcc-total-sub {
  font-size: 9px;
  letter-spacing: 1.5px;
  opacity: .6;
}
.bcc-total-compact .bcc-total-usd {
  font-size: 28px !important;
  letter-spacing: 1px;
}
.bcc-total-compact .bcc-total-uah {
  font-size: 12px;
}
@media (max-width: 767px) {
  .bcc-total-compact {
    flex-direction: row !important;
    align-items: center !important;
    gap: 10px;
  }
  .bcc-total-compact .bcc-total-left {
    flex: 1;
  }
  .bcc-total-compact .bcc-total-right {
    text-align: right;
    flex-shrink: 0;
  }
  .bcc-total-compact .bcc-total-usd {
    font-size: 22px !important;
  }
}

/* Кнопка Розрахувати — без topbar */
.bcc-calc-btn-top {
  display: block;
  width: 100%;
  background: var(--bcc-red);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-family: "Orbitron", monospace;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 13px 20px;
  cursor: pointer;
  text-align: center;
  margin-bottom: 0;
}
.bcc-calc-btn-top:hover { background: #c0392b; }

/* Курси — один рядок */
.bcc-rates-inline {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
}
.bcc-rates-inline .bcc-rate-item {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.bcc-rates-inline .bcc-rate-inp {
  width: 62px !important;
}
.bcc-rates-inline .bcc-rate-refresh-btn {
  flex-shrink: 0;
  white-space: nowrap;
}

/* Total bar — компактніший */
.bcc-total-compact .bcc-total-label2 {
  font-size: 9px !important;
  letter-spacing: 2px;
}
.bcc-total-compact .bcc-total-sub {
  font-size: 8px !important;
  letter-spacing: 1px;
}
.bcc-total-compact .bcc-total-usd {
  font-size: 26px !important;
}
.bcc-total-compact .bcc-total-uah {
  font-size: 12px !important;
}
@media (max-width: 600px) {
  .bcc-total-compact .bcc-total-usd { font-size: 20px !important; }
  .bcc-total-compact { padding: 12px 14px !important; }
}

/* ── Rates inline fix ───────────────────────────────────────────────────── */
.bcc-rates-inline {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
  width: 100%;
  min-width: 0;
}
.bcc-rates-inline .bcc-rate-item {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.bcc-rates-inline .bcc-rate-inp {
  width: 62px !important;
}
.bcc-rates-inline .bcc-rate-lbl {
  font-size: 10px;
  white-space: nowrap;
}
.bcc-rates-inline .bcc-rate-refresh-btn {
  margin-left: auto;
  flex-shrink: 0;
  padding: 7px 10px;
}
/* Мобільний: показуємо короткий текст */
@media (max-width: 500px) {
  .bcc-refresh-long { display: none; }
  .bcc-refresh-short { display: inline; }
}
@media (min-width: 501px) {
  .bcc-refresh-long { display: inline; }
  .bcc-refresh-short { display: none; }
}
/* Прибираємо старий топбар */
.bcc-topbar-btn, .bcc-calc-btn-top { display: none !important; }

/* ── Rates bar mobile icon ───────────────────────────────────────────────── */
.bcc-rate-status-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}
/* Іконка-кнопка оновлення (мобільна) */
.bcc-rate-refresh-ico {
  display: none;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: transparent !important;
  border: 1px solid var(--bcc-border) !important;
  border-radius: 4px !important;
  color: var(--bcc-gray) !important;
  cursor: pointer;
  padding: 0 !important;
  flex-shrink: 0;
  box-shadow: none !important;
  line-height: 1;
  transition: border-color .2s, color .2s;
}
.bcc-rate-refresh-ico:hover { border-color: var(--bcc-red) !important; color: #fff !important; }

@media (max-width: 767px) {
  .bcc-refresh-desktop { display: none !important; }
  .bcc-rate-refresh-ico { display: flex; }
}
@media (min-width: 768px) {
  .bcc-refresh-desktop { display: flex; }
  .bcc-rate-refresh-ico { display: none; }
}

/* Ховаємо інфо-блоки теми всередині калькулятора */
.bcc-wrap ~ * .bcc-info-block,
.bimmer-calc-wrap .bcc-info-block { display: none; }

/* ── iPhone / small screen universal fix ───────────────────────────────── */
@media (max-width: 390px) {
  .bcc-panel              { padding: 14px 10px; }
  .bcc-rates-bar          { padding: 8px 10px; gap: 6px; }
  .bcc-rate-lbl           { font-size: 9px; letter-spacing: 1px; }
  .bcc-rate-inp           { width: 48px !important; font-size: 13px; padding: 6px 6px; }
  .bcc-rate-sym           { padding: 6px 7px; font-size: 12px; }
  .bcc-rates-inline       { gap: 6px; }
  .bcc-sec-title          { font-size: 16px; letter-spacing: 2px; }
  .bcc-inp                { font-size: 14px; padding: 9px 10px; }
  .bcc-total-compact .bcc-total-usd { font-size: 20px !important; }
  .bcc-total-compact .bcc-total-label2 { font-size: 8px; letter-spacing: 2px; }
  .bcc-total-compact .bcc-total-sub   { font-size: 7px; }
}
/* Prevent any child from causing horizontal scroll */
.bcc-wrap { position: relative; }
.bcc-grid, .bcc-panel, .bcc-rates-bar, .bcc-rates-inline,
.bcc-rate-item, .bcc-total-bar {
  max-width: 100%;
  overflow: visible;
}
