:root {
  --brand: #0aaac4;
  --brand-dark: #078ea4;
  --brand-deep: #056676;
  --brand-tint: #e6f7fa;
  --bg: #f7f9fa;
  --card: #ffffff;
  --border: #e8edf0;
  --text: #1e1e1e;
  --text-mid: #43494e;
  --text-dim: #7a8288;
  --success: #3cc04e;
  --radius: 14px;
  --shadow-sm: 0 1px 3px rgba(16, 42, 51, .06);
  --shadow-md: 0 6px 24px rgba(16, 42, 51, .09);
  --shadow-lg: 0 16px 48px rgba(16, 42, 51, .13);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Poppins, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  text-rendering: optimizeLegibility;
}

/* ── Top contact bar ─────────────────────────────── */
.top-bar {
  background: linear-gradient(90deg, var(--brand-deep), var(--brand-dark));
  color: #fff;
  font-size: 12.5px;
  padding: 8px 0;
}
.top-bar .inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px 18px;
}
.top-bar a { color: #fff; text-decoration: none; opacity: .95; }
.top-bar a:hover { opacity: 1; text-decoration: underline; }

/* ── Site header ─────────────────────────────────── */
.site-header {
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 50;
}
.site-header .inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 13px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.site-header img.logo { max-height: 48px; width: auto; display: block; }
.site-header a.back-link {
  color: var(--text-mid);
  text-decoration: none;
  font-size: 12.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: 9px 18px;
  border: 1.5px solid var(--border);
  border-radius: 30px;
  transition: .25s;
  white-space: nowrap;
}
.site-header a.back-link:hover { color: var(--brand); border-color: var(--brand); background: var(--brand-tint); }

/* ── Hero ────────────────────────────────────────── */
.hero-band {
  background:
    radial-gradient(ellipse 80% 120% at 50% -20%, rgba(10, 170, 196, .12), transparent 60%),
    linear-gradient(180deg, #fdfefe, var(--bg));
  border-bottom: 1px solid var(--border);
}
.hero {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: 54px 24px 46px;
}
.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--brand-tint);
  color: var(--brand-deep);
  border: 1px solid rgba(10, 170, 196, .25);
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 18px;
}
.hero .eyebrow .dot {
  width: 7px; height: 7px;
  background: var(--success);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(60, 192, 78, .18);
}
.hero h1 {
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 12px;
  letter-spacing: -.5px;
}
.hero h1 em { font-style: italic; color: var(--brand); }
.hero p {
  color: var(--text-dim);
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  max-width: 520px;
  margin-inline: auto;
}

/* ── Main content ────────────────────────────────── */
.wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px 90px;
}

/* ── Category cards ──────────────────────────────── */
.category-toggle {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: 860px;
  margin: -26px auto 34px;
  position: relative;
  z-index: 2;
}

.category-btn {
  position: relative;
  padding: 24px 22px 22px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  background: var(--card);
  color: var(--text);
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  box-shadow: var(--shadow-md);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.category-btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: rgba(10, 170, 196, .4); }
.category-btn:focus-visible { outline: 3px solid rgba(10, 170, 196, .35); outline-offset: 2px; }

.category-btn .icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--brand-tint);
  color: var(--brand-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  transition: .22s;
}
.category-btn .icon svg { width: 24px; height: 24px; }

.category-btn .name {
  display: block;
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .4px;
}
.category-btn .sub {
  display: block;
  font-weight: 400;
  font-size: 12.5px;
  color: var(--text-dim);
  margin-top: 4px;
  line-height: 1.55;
}
.category-btn .check {
  position: absolute;
  top: 16px; right: 16px;
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  transition: .22s;
}
.category-btn .check svg { width: 13px; height: 13px; }

.category-btn.active { border-color: var(--brand); box-shadow: var(--shadow-lg); }
.category-btn.active .icon { background: var(--brand); color: #fff; }
.category-btn.active .check { background: var(--brand); border-color: var(--brand); color: #fff; }

/* ── Search panel ────────────────────────────────── */
.panel {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  display: none;
  box-shadow: var(--shadow-md);
  animation: panelIn .3s ease;
}
.panel.visible { display: block; }

@keyframes panelIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.panel-title h2 {
  font-size: 15px;
  font-weight: 600;
  margin: 0;
  color: var(--text-mid);
}
.panel-title h2 span { color: var(--brand-dark); }

.search-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: stretch;
  margin-bottom: 14px;
}

.search-field {
  position: relative;
  flex: 1 1 280px;
}
.search-field .search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-dim);
  pointer-events: none;
  display: flex;
}
.search-field .search-icon svg { width: 17px; height: 17px; }

.search-field input[type="text"] {
  width: 100%;
  padding: 14px 18px 14px 46px;
  border-radius: 30px;
  border: 1.5px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font-family: inherit;
  font-size: 14.5px;
  outline: none;
  transition: .25s;
}
.search-field input[type="text"]::placeholder { color: #9aa4ab; }
.search-field input[type="text"]:focus {
  border-color: var(--brand);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(10, 170, 196, .13);
}

.currency-toggle {
  display: inline-flex;
  border: 1.5px solid var(--border);
  border-radius: 30px;
  overflow: hidden;
  background: var(--bg);
  padding: 4px;
  gap: 4px;
}
.currency-toggle button {
  padding: 9px 20px;
  border: none;
  border-radius: 30px;
  background: transparent;
  color: var(--text-dim);
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  transition: .25s;
}
.currency-toggle button:hover { color: var(--brand-dark); }
.currency-toggle button.active {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 2px 8px rgba(10, 170, 196, .35);
}

.status-line {
  color: var(--text-dim);
  font-size: 13px;
  margin-bottom: 12px;
  min-height: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.status-line .spinner {
  width: 14px; height: 14px;
  border: 2px solid rgba(10, 170, 196, .25);
  border-top-color: var(--brand);
  border-radius: 50%;
  animation: spin .7s linear infinite;
  display: none;
}
.status-line.loading .spinner { display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Filter row (country dropdown + export) ─────── */
.filter-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

/* ── Country dropdown ────────────────────────────── */
.country-dropdown {
  position: relative;
  flex: 0 1 auto;
  min-width: 200px;
}

.country-dropdown-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 11px 16px;
  border-radius: 12px;
  border: 1.5px solid var(--border);
  background: var(--bg);
  color: var(--text-mid);
  cursor: pointer;
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 500;
  transition: all .25s ease;
  white-space: nowrap;
}
.country-dropdown-btn:hover {
  border-color: var(--brand);
  background: #fff;
  color: var(--text);
}
.country-dropdown-btn:focus-visible {
  outline: 3px solid rgba(10, 170, 196, .2);
  outline-offset: 1px;
}
.country-dropdown.active .country-dropdown-btn,
.country-dropdown-btn.has-selection {
  border-color: var(--brand);
  background: var(--brand-tint);
  color: var(--brand-deep);
}

.country-dropdown-btn .filter-icon {
  width: 15px; height: 15px;
  flex-shrink: 0;
  opacity: .7;
}
.country-dropdown-btn .chevron-icon {
  width: 14px; height: 14px;
  flex-shrink: 0;
  margin-left: auto;
  transition: transform .25s ease;
  opacity: .55;
}
.country-dropdown.active .chevron-icon {
  transform: rotate(180deg);
}

/* Dropdown menu */
.country-dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 280px;
  max-width: 360px;
  width: 100%;
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(16, 42, 51, .15), 0 2px 8px rgba(16, 42, 51, .06);
  z-index: 100;
  display: none;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity .2s ease, transform .2s ease;
}
.country-dropdown-menu.open {
  display: block;
  opacity: 1;
  transform: translateY(0);
  animation: dropdownIn .22s ease forwards;
}
@keyframes dropdownIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Search inside dropdown */
.country-search-wrap {
  padding: 10px 12px 6px;
}
.country-search-wrap input {
  width: 100%;
  padding: 9px 14px;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font-family: inherit;
  font-size: 13px;
  outline: none;
  transition: .2s;
}
.country-search-wrap input::placeholder { color: #9aa4ab; }
.country-search-wrap input:focus {
  border-color: var(--brand);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(10, 170, 196, .1);
}

/* Country list */
.country-list {
  max-height: 240px;
  overflow-y: auto;
  padding: 4px 8px;
}
.country-list::-webkit-scrollbar { width: 6px; }
.country-list::-webkit-scrollbar-track { background: transparent; }
.country-list::-webkit-scrollbar-thumb { background: #d5dce0; border-radius: 4px; }
.country-list::-webkit-scrollbar-thumb:hover { background: var(--brand); }

.country-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 9px;
  cursor: pointer;
  transition: background .15s;
  user-select: none;
}
.country-option:hover {
  background: var(--brand-tint);
}

.country-option input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0; height: 0;
  pointer-events: none;
}

.country-check {
  width: 20px; height: 20px;
  border-radius: 6px;
  border: 1.8px solid #c5cdd2;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all .2s ease;
  color: transparent;
}
.country-check svg { width: 12px; height: 12px; }

.country-option input:checked + .country-check {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  box-shadow: 0 2px 6px rgba(10, 170, 196, .3);
}

.country-name {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.3;
}

.country-empty {
  text-align: center;
  padding: 20px 12px;
  color: var(--text-dim);
  font-size: 13px;
}

/* Actions bar */
.country-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px 10px;
  border-top: 1px solid var(--border);
}

.country-action-btn {
  padding: 7px 18px;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  background: #fff;
  color: var(--text-dim);
  cursor: pointer;
  font-family: inherit;
  font-size: 12.5px;
  font-weight: 600;
  transition: all .2s;
}
.country-action-btn:hover {
  border-color: var(--text-dim);
  color: var(--text);
}
.country-action-btn.primary {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}
.country-action-btn.primary:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  box-shadow: 0 2px 8px rgba(10, 170, 196, .35);
}

/* ── Export button ────────────────────────────────── */
.export-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 11px 22px;
  border-radius: 12px;
  border: 1.5px solid var(--brand);
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  cursor: pointer;
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: .2px;
  transition: all .25s ease;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(10, 170, 196, .25);
}
.export-btn svg {
  width: 16px; height: 16px;
  flex-shrink: 0;
}
.export-btn:hover:not(:disabled) {
  background: linear-gradient(135deg, var(--brand-dark), var(--brand-deep));
  box-shadow: 0 4px 16px rgba(10, 170, 196, .35);
  transform: translateY(-1px);
}
.export-btn:active:not(:disabled) {
  transform: translateY(0);
}
.export-btn:disabled {
  opacity: .45;
  cursor: not-allowed;
  box-shadow: none;
}

/* ── Results table ───────────────────────────────── */
.results-scroll {
  max-height: 540px;
  overflow-y: auto;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
}
.results-scroll::-webkit-scrollbar { width: 10px; }
.results-scroll::-webkit-scrollbar-track { background: var(--bg); border-radius: 0 12px 12px 0; }
.results-scroll::-webkit-scrollbar-thumb { background: #cfd8dc; border-radius: 8px; border: 2px solid var(--bg); }
.results-scroll::-webkit-scrollbar-thumb:hover { background: var(--brand); }

table.results { width: 100%; border-collapse: collapse; font-size: 14px; }
table.results th {
  text-align: left;
  padding: 13px 16px;
  color: #fff;
  background: linear-gradient(90deg, var(--brand-dark), var(--brand));
  font-weight: 600;
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: .8px;
  position: sticky;
  top: 0;
  z-index: 1;
}
table.results th.num, table.results td.num { text-align: right; }

table.results td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  background: #fff;
  color: var(--text-mid);
}
table.results tbody tr:nth-child(even) td { background: #fafcfd; }
table.results tbody tr:hover td { background: var(--brand-tint); }
table.results tbody tr:last-child td { border-bottom: none; }

.code-badge {
  display: inline-block;
  font-family: "SF Mono", SFMono-Regular, Consolas, "Liberation Mono", monospace;
  font-size: 12.5px;
  font-weight: 600;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text-mid);
  padding: 3px 10px;
  border-radius: 6px;
}

.rate-cell {
  font-weight: 700;
  color: var(--brand-deep);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.dest-cell { font-weight: 500; color: var(--text); }
.dim-cell { color: var(--text-dim); font-variant-numeric: tabular-nums; }

/* ── Empty state ─────────────────────────────────── */
.empty-state {
  display: none;
  text-align: center;
  padding: 46px 20px;
  border: 1.5px dashed var(--border);
  border-radius: 12px;
  color: var(--text-dim);
}
.empty-state.visible { display: block; }
.empty-state .glyph {
  width: 52px; height: 52px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--brand-tint);
  color: var(--brand-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}
.empty-state .glyph svg { width: 24px; height: 24px; }
.empty-state p { margin: 0; font-size: 14px; line-height: 1.7; }
.empty-state p strong { color: var(--text-mid); }

/* ── Trust strip ─────────────────────────────────── */
.trust-strip {
  display: flex;
  justify-content: center;
  gap: 12px 36px;
  flex-wrap: wrap;
  margin-top: 40px;
  color: var(--text-dim);
  font-size: 12.5px;
}
.trust-strip .item { display: flex; align-items: center; gap: 8px; }
.trust-strip .item svg { width: 15px; height: 15px; color: var(--brand); flex: none; }

/* ── Footer ──────────────────────────────────────── */
footer.page-footer {
  border-top: 1px solid var(--border);
  background: #fff;
  text-align: center;
  color: var(--text-dim);
  font-size: 13px;
  padding: 26px 20px;
  margin-top: 70px;
}
footer.page-footer a { color: var(--brand); text-decoration: none; font-weight: 500; }
footer.page-footer a:hover { text-decoration: underline; }

/* ── Responsive ──────────────────────────────────── */

/* Tablet / small desktop */
@media (max-width: 768px) {
  .wrap { padding: 0 16px 60px; }
  .hero { padding: 42px 20px 38px; }
  .hero p { font-size: 14px; }

  .category-toggle {
    grid-template-columns: 1fr;
    max-width: 100%;
    margin-top: -18px;
    gap: 14px;
  }

  .panel { padding: 20px; }

  .panel-title {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  /* Make results table horizontally scrollable */
  .results-scroll {
    max-height: 420px;
    -webkit-overflow-scrolling: touch;
  }

  table.results th,
  table.results td {
    padding: 10px 12px;
    font-size: 13px;
    white-space: nowrap;
  }

  .trust-strip {
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-top: 28px;
  }

  .filter-row {
    gap: 10px;
  }
  .country-dropdown {
    min-width: 180px;
  }
  .country-dropdown-menu {
    min-width: 260px;
  }
  .export-btn {
    padding: 10px 18px;
    font-size: 13px;
  }

  footer.page-footer { margin-top: 40px; padding: 22px 16px; }
}

/* Phones */
@media (max-width: 480px) {
  .top-bar { font-size: 11.5px; padding: 6px 0; }
  .top-bar .inner {
    justify-content: center;
    text-align: center;
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }

  .site-header .inner { padding: 10px 14px; }
  .site-header img.logo { max-height: 36px; }
  .site-header a.back-link {
    padding: 7px 12px;
    font-size: 11px;
  }

  .hero { padding: 32px 16px 28px; }
  .hero .eyebrow {
    font-size: 10.5px;
    padding: 5px 12px;
    letter-spacing: 1px;
    margin-bottom: 14px;
  }
  .hero h1 { font-size: 24px; margin-bottom: 8px; }
  .hero p { font-size: 13px; line-height: 1.65; }

  .wrap { padding: 0 12px 50px; }

  .category-toggle { margin-top: -14px; gap: 10px; }
  .category-btn {
    padding: 18px 16px 16px;
  }
  .category-btn .icon {
    width: 38px; height: 38px;
    border-radius: 10px;
    margin-bottom: 10px;
  }
  .category-btn .icon svg { width: 20px; height: 20px; }
  .category-btn .name { font-size: 15px; }
  .category-btn .sub { font-size: 11.5px; }

  .panel { padding: 14px; }

  .search-field input[type="text"] {
    padding: 12px 14px 12px 42px;
    font-size: 13.5px;
    border-radius: 14px;
  }
  .search-field .search-icon { left: 14px; }

  .currency-toggle {
    width: 100%;
    justify-content: center;
  }
  .currency-toggle button {
    flex: 1;
    padding: 8px 12px;
    font-size: 12px;
    text-align: center;
  }

  /* Stacked card layout for results on phones */
  .results-scroll {
    max-height: none;
    overflow-y: visible;
    border: none;
    border-radius: 0;
    background: transparent;
  }

  table.results { font-size: 13px; }
  table.results thead { display: none; }
  table.results tbody tr {
    display: block;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 10px;
    box-shadow: var(--shadow-sm);
  }
  table.results tbody tr:nth-child(even) td { background: transparent; }
  table.results tbody tr:hover td { background: transparent; }
  table.results td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
    border-bottom: 1px solid #f0f2f4;
    white-space: normal;
    background: transparent !important;
  }
  table.results td:last-child { border-bottom: none; }
  table.results td::before {
    content: attr(data-label);
    font-size: 11px;
    font-weight: 600;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: .4px;
    flex-shrink: 0;
    margin-right: 12px;
  }

  .filter-row {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
  .country-dropdown {
    width: 100%;
    min-width: 0;
  }
  .country-dropdown-menu {
    min-width: 100%;
    max-width: 100%;
  }
  .export-btn {
    width: 100%;
    justify-content: center;
    padding: 11px 16px;
    font-size: 13px;
    border-radius: 12px;
  }

  .status-line { font-size: 12px; }

  .empty-state { padding: 32px 16px; }
  .empty-state .glyph { width: 44px; height: 44px; margin-bottom: 10px; }
  .empty-state p { font-size: 13px; }

  .trust-strip { font-size: 11.5px; gap: 10px; margin-top: 24px; }
  .trust-strip .item svg { width: 14px; height: 14px; }

  footer.page-footer { font-size: 12px; padding: 20px 14px; margin-top: 30px; }
}

/* Very small phones */
@media (max-width: 360px) {
  .site-header img.logo { max-height: 30px; }
  .hero h1 { font-size: 21px; }
  .hero p { font-size: 12.5px; }
  .category-btn .name { font-size: 14px; }
  .category-btn .sub { font-size: 11px; }
  .panel { padding: 10px; }
  .search-field input[type="text"] { font-size: 13px; padding: 10px 12px 10px 38px; }
}
