@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');

/* tc-scoped:tc-wp-tool-root */

.tc-wp-tool-root {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  display: flow-root;
  isolation: isolate;
  position: relative;
}
.tc-wp-tool-root img,
.tc-wp-tool-root video,
.tc-wp-tool-root svg,
.tc-wp-tool-root iframe {
  max-width: 100%;
  height: auto;
}

.tc-wp-tool-root, .tc-wp-tool-root{
  overflow-x: hidden;
}.tc-wp-tool-root .btc-tool-wrapper{
  --btc-bg: #f4f8f2;
  --btc-panel: #ffffff;
  --btc-panel-2: #f8fbf7;
  --btc-ink: #17231f;
  --btc-muted: #5b6b64;
  --btc-line: #cfe0d5;
  --btc-green: #146b45;
  --btc-green-2: #0f5132;
  --btc-blue: #1f5f89;
  --btc-gold: #ad7d13;
  --btc-red: #9f2f2f;
  --btc-focus: #0c7a51;
  --btc-shadow: 0 22px 60px rgba(23, 55, 42, 0.14);
  --btc-radius: 18px;
  
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  border-radius: 0;
  overflow-x: hidden;
  padding: 22px;
  color: var(--btc-ink);
  font-family: Arial, Helvetica, sans-serif;
  background:
    linear-gradient(135deg, rgba(20, 107, 69, 0.11), rgba(31, 95, 137, 0.08)),
    repeating-linear-gradient(90deg, rgba(20, 107, 69, 0.055) 0 1px, transparent 1px 72px),
    repeating-linear-gradient(0deg, rgba(173, 125, 19, 0.045) 0 1px, transparent 1px 58px),
    var(--btc-bg);
}.tc-wp-tool-root .btc-tool-wrapper *, .tc-wp-tool-root .btc-tool-wrapper *::before, .tc-wp-tool-root .btc-tool-wrapper *::after{
  box-sizing: border-box;
  max-width: 100%;
}.tc-wp-tool-root .btc-header{
  width: min(980px, 100%);
  margin: 0 auto 20px;
  text-align: center;
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
}.tc-wp-tool-root .btc-header h1{
  margin: 0;
  color: var(--btc-green-2);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}.tc-wp-tool-root .btc-header p{
  margin: 0;
  color: var(--btc-muted);
  line-height: 1.55;
  max-width: 820px;
  overflow-wrap: anywhere;
}.tc-wp-tool-root .btc-card{
  width: min(1240px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 18px;
  align-items: stretch;
}.tc-wp-tool-root .btc-input-panel, .tc-wp-tool-root .btc-output-panel, .tc-wp-tool-root .btc-shortcuts{
  width: 100%;
  max-width: 100%;
  min-width: 0;
  border: 1px solid var(--btc-line);
  border-radius: var(--btc-radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--btc-shadow);
  overflow-wrap: anywhere;
}.tc-wp-tool-root .btc-input-panel{
  padding: 18px;
}.tc-wp-tool-root .btc-output-panel{
  overflow-y: auto;
  padding: 18px;
  background:
    linear-gradient(160deg, rgba(20, 107, 69, 0.09), rgba(255, 255, 255, 0.94) 35%),
    var(--btc-panel);
}.tc-wp-tool-root .btc-output-panel::-webkit-scrollbar{
  width: 10px;
}.tc-wp-tool-root .btc-output-panel::-webkit-scrollbar-track{
  background: #eaf3ed;
  border-radius: 999px;
}.tc-wp-tool-root .btc-output-panel::-webkit-scrollbar-thumb{
  background: #82ad95;
  border-radius: 999px;
}.tc-wp-tool-root .btc-grid{
  display: grid;
  width: 100%;
  min-width: 0;
  gap: 14px;
}.tc-wp-tool-root .btc-field{
  display: grid;
  min-width: 0;
  width: 100%;
  gap: 7px;
  padding: 12px;
  border: 1px solid #d8e6dc;
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff, #f8fbf8);
}.tc-wp-tool-root .btc-field span{
  color: var(--btc-ink);
  font-weight: 700;
  line-height: 1.25;
  overflow-wrap: anywhere;
}.tc-wp-tool-root .btc-field small{
  color: var(--btc-muted);
  line-height: 1.35;
}.tc-wp-tool-root .btc-field input, .tc-wp-tool-root .btc-field select{
  width: 100%;
  min-width: 0;
  border: 1px solid #b9cec1;
  border-radius: 10px;
  background: #ffffff;
  color: var(--btc-ink);
  outline: none;
  line-height: 1.2;
}.tc-wp-tool-root .btc-field input:focus, .tc-wp-tool-root .btc-field select:focus, .tc-wp-tool-root .btc-btn:focus, .tc-wp-tool-root .btc-shortcut:focus{
  border-color: var(--btc-focus);
  box-shadow: 0 0 0 3px rgba(12, 122, 81, 0.2);
  outline: 2px solid transparent;
}.tc-wp-tool-root .btc-chip-row{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 14px 0;
  width: 100%;
}.tc-wp-tool-root .btc-check{
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #cfe0d5;
  border-radius: 999px;
  background: #f3faf5;
  color: var(--btc-green-2);
  font-weight: 700;
  line-height: 1.25;
}.tc-wp-tool-root .btc-check input{
  flex: 0 0 auto;
  accent-color: var(--btc-green);
}.tc-wp-tool-root .btc-check span{
  min-width: 0;
  overflow-wrap: anywhere;
}.tc-wp-tool-root .btc-custom-symbol{
  display: none;
}.tc-wp-tool-root .btc-custom-symbol.btc-visible{
  display: grid;
}.tc-wp-tool-root .btc-alert{
  display: none;
  margin-bottom: 14px;
  padding: 12px 14px;
  border: 1px solid #e6c68d;
  border-radius: 14px;
  background: #fff8e8;
  color: #664309;
  line-height: 1.45;
  font-weight: 700;
}.tc-wp-tool-root .btc-alert.btc-visible{
  display: block;
}.tc-wp-tool-root .btc-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 14px;
  width: 100%;
}.tc-wp-tool-root .btc-btn, .tc-wp-tool-root .btc-shortcut{
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  min-width: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
}.tc-wp-tool-root .btc-btn:hover, .tc-wp-tool-root .btc-shortcut:hover{
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(23, 55, 42, 0.13);
}.tc-wp-tool-root .btc-btn-primary{
  background: var(--btc-green);
  color: #ffffff;
  border-color: var(--btc-green);
}.tc-wp-tool-root .btc-btn-secondary{
  background: #ffffff;
  color: var(--btc-green-2);
  border-color: #adc9b7;
}.tc-wp-tool-root .btc-copy-status{
  color: var(--btc-green-2);
  font-weight: 800;
  min-width: 0;
}.tc-wp-tool-root .btc-main-result{
  width: 100%;
  min-width: 0;
  margin-bottom: 14px;
  padding: 18px;
  border: 2px solid #0d4a31;
  border-radius: 16px;
  background: #0f5132;
  color: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}.tc-wp-tool-root .btc-main-result span, .tc-wp-tool-root .btc-result-card span{
  display: block;
  font-weight: 700;
  line-height: 1.3;
  overflow-wrap: anywhere;
}.tc-wp-tool-root .btc-main-result strong{
  display: block;
  margin-top: 8px;
  color: #ffffff;
  line-height: 1.08;
  overflow-wrap: anywhere;
}.tc-wp-tool-root .btc-result-card{
  min-width: 0;
  width: 100%;
  padding: 14px;
  border: 1px solid #d1e2d6;
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 250, 247, 0.98));
}.tc-wp-tool-root .btc-result-card span{
  color: var(--btc-muted);
}.tc-wp-tool-root .btc-result-card strong{
  display: block;
  margin-top: 6px;
  color: var(--btc-ink);
  line-height: 1.15;
  overflow-wrap: anywhere;
}.tc-wp-tool-root .btc-refund{
  border-color: #9fcdb1;
  background: #eef9f1;
}.tc-wp-tool-root .btc-owed{
  border-color: #e5b3ad;
  background: #fff1ef;
}.tc-wp-tool-root .btc-guidance, .tc-wp-tool-root .btc-disclaimer{
  width: 100%;
  min-width: 0;
  margin-top: 14px;
  padding: 13px 14px;
  border-radius: 14px;
  line-height: 1.5;
  overflow-wrap: anywhere;
}.tc-wp-tool-root .btc-guidance{
  border: 1px solid #bed8c8;
  background: #f0f8f2;
  color: var(--btc-green-2);
  font-weight: 700;
}.tc-wp-tool-root .btc-disclaimer{
  border: 1px solid #d9d3c1;
  background: #fffaf0;
  color: #594a28;
}.tc-wp-tool-root .btc-shortcuts{
  width: min(1240px, 100%);
  margin: 18px auto 0;
  padding: 16px;
  display: grid;
  gap: 10px;
}.tc-wp-tool-root .btc-shortcut{
  background: #ffffff;
  color: var(--btc-blue);
  border-color: #b9d4e4;
}@media (min-width: 320px) and (max-width: 374px) {.tc-wp-tool-root .btc-tool-wrapper{ padding: 12px; }.tc-wp-tool-root .btc-header{ width: 100%; margin-bottom: 14px; }.tc-wp-tool-root .btc-header h1{ font-size: 28px; }.tc-wp-tool-root .btc-header p{ font-size: 14px; }.tc-wp-tool-root .btc-card{ grid-template-columns: 1fr; gap: 12px; }.tc-wp-tool-root .btc-input-panel, .tc-wp-tool-root .btc-output-panel, .tc-wp-tool-root .btc-shortcuts{ padding: 12px; }.tc-wp-tool-root .btc-income-grid, .tc-wp-tool-root .btc-deduction-grid, .tc-wp-tool-root .btc-credit-grid, .tc-wp-tool-root .btc-tax-grid, .tc-wp-tool-root .btc-result-grid, .tc-wp-tool-root .btc-shortcuts{ grid-template-columns: 1fr !important; }.tc-wp-tool-root .btc-chip-row{ grid-template-columns: 1fr !important; }.tc-wp-tool-root .btc-field input, .tc-wp-tool-root .btc-field select{ font-size: 15px; padding: 10px; }.tc-wp-tool-root .btc-field span, .tc-wp-tool-root .btc-result-card span{ font-size: 13px; }.tc-wp-tool-root .btc-btn, .tc-wp-tool-root .btc-shortcut{ width: 100%; font-size: 14px; padding: 11px 12px; }.tc-wp-tool-root .btc-grid{ gap: 10px; }.tc-wp-tool-root .btc-result-card{ padding: 12px; }.tc-wp-tool-root .btc-result-card strong{ font-size: 16px; }.tc-wp-tool-root .btc-main-result strong{ font-size: 28px; }}@media (min-width: 375px) and (max-width: 429px) {.tc-wp-tool-root .btc-tool-wrapper{ padding: 14px; }.tc-wp-tool-root .btc-header{ width: 100%; margin-bottom: 15px; }.tc-wp-tool-root .btc-header h1{ font-size: 31px; }.tc-wp-tool-root .btc-header p{ font-size: 15px; }.tc-wp-tool-root .btc-card{ grid-template-columns: 1fr; gap: 13px; }.tc-wp-tool-root .btc-input-panel, .tc-wp-tool-root .btc-output-panel, .tc-wp-tool-root .btc-shortcuts{ padding: 13px; }.tc-wp-tool-root .btc-income-grid, .tc-wp-tool-root .btc-deduction-grid, .tc-wp-tool-root .btc-credit-grid, .tc-wp-tool-root .btc-tax-grid, .tc-wp-tool-root .btc-result-grid, .tc-wp-tool-root .btc-shortcuts{ grid-template-columns: 1fr !important; }.tc-wp-tool-root .btc-chip-row{ grid-template-columns: 1fr !important; }.tc-wp-tool-root .btc-field input, .tc-wp-tool-root .btc-field select{ font-size: 15px; padding: 11px; }.tc-wp-tool-root .btc-btn, .tc-wp-tool-root .btc-shortcut{ width: 100%; font-size: 15px; padding: 12px; }.tc-wp-tool-root .btc-grid{ gap: 11px; }.tc-wp-tool-root .btc-result-card{ padding: 13px; }.tc-wp-tool-root .btc-result-card strong{ font-size: 17px; }.tc-wp-tool-root .btc-main-result strong{ font-size: 31px; }}@media (min-width: 430px) and (max-width: 767px) {.tc-wp-tool-root .btc-tool-wrapper{ padding: 16px; }.tc-wp-tool-root .btc-header{ width: 100%; margin-bottom: 16px; }.tc-wp-tool-root .btc-header h1{ font-size: 36px; }.tc-wp-tool-root .btc-header p{ font-size: 16px; }.tc-wp-tool-root .btc-card{ grid-template-columns: 1fr; gap: 14px; }.tc-wp-tool-root .btc-input-panel, .tc-wp-tool-root .btc-output-panel, .tc-wp-tool-root .btc-shortcuts{ padding: 15px; }.tc-wp-tool-root .btc-income-grid, .tc-wp-tool-root .btc-deduction-grid, .tc-wp-tool-root .btc-credit-grid, .tc-wp-tool-root .btc-tax-grid, .tc-wp-tool-root .btc-result-grid, .tc-wp-tool-root .btc-shortcuts{ grid-template-columns: 1fr !important; }.tc-wp-tool-root .btc-chip-row{ grid-template-columns: 1fr !important; }.tc-wp-tool-root .btc-field input, .tc-wp-tool-root .btc-field select{ font-size: 16px; padding: 12px; }.tc-wp-tool-root .btc-btn, .tc-wp-tool-root .btc-shortcut{ width: 100%; font-size: 15px; padding: 12px 14px; }.tc-wp-tool-root .btc-grid{ gap: 12px; }.tc-wp-tool-root .btc-result-card{ padding: 14px; }.tc-wp-tool-root .btc-result-card strong{ font-size: 18px; }.tc-wp-tool-root .btc-main-result strong{ font-size: 34px; }}@media (min-width: 768px) and (max-width: 1023px) {.tc-wp-tool-root .btc-tool-wrapper{ padding: 22px; }.tc-wp-tool-root .btc-header{ width: min(860px, 100%); }.tc-wp-tool-root .btc-header h1{ font-size: 44px; }.tc-wp-tool-root .btc-header p{ font-size: 17px; }.tc-wp-tool-root .btc-card{ grid-template-columns: 1fr; gap: 16px; }.tc-wp-tool-root .btc-input-panel, .tc-wp-tool-root .btc-output-panel, .tc-wp-tool-root .btc-shortcuts{ padding: 17px; }.tc-wp-tool-root .btc-income-grid, .tc-wp-tool-root .btc-deduction-grid, .tc-wp-tool-root .btc-credit-grid, .tc-wp-tool-root .btc-tax-grid, .tc-wp-tool-root .btc-result-grid, .tc-wp-tool-root .btc-shortcuts{ grid-template-columns: repeat(2, minmax(0, 1fr)); }.tc-wp-tool-root .btc-chip-row{ grid-template-columns: repeat(3, minmax(0, 1fr)); }.tc-wp-tool-root .btc-field input, .tc-wp-tool-root .btc-field select{ font-size: 16px; padding: 12px; }.tc-wp-tool-root .btc-btn, .tc-wp-tool-root .btc-shortcut{ font-size: 15px; padding: 12px 16px; }.tc-wp-tool-root .btc-grid{ gap: 13px; }.tc-wp-tool-root .btc-result-card{ padding: 14px; }.tc-wp-tool-root .btc-result-card strong{ font-size: 19px; }.tc-wp-tool-root .btc-main-result strong{ font-size: 38px; }}@media (min-width: 1024px) and (max-width: 1199px) {.tc-wp-tool-root .btc-tool-wrapper{ padding: 26px; }.tc-wp-tool-root .btc-header{ width: min(940px, 100%); }.tc-wp-tool-root .btc-header h1{ font-size: 48px; }.tc-wp-tool-root .btc-header p{ font-size: 17px; }.tc-wp-tool-root .btc-card{ grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); gap: 17px; }.tc-wp-tool-root .btc-input-panel, .tc-wp-tool-root .btc-output-panel, .tc-wp-tool-root .btc-shortcuts{ padding: 18px; }.tc-wp-tool-root .btc-income-grid, .tc-wp-tool-root .btc-deduction-grid, .tc-wp-tool-root .btc-credit-grid, .tc-wp-tool-root .btc-tax-grid, .tc-wp-tool-root .btc-result-grid, .tc-wp-tool-root .btc-shortcuts{ grid-template-columns: repeat(3, minmax(0, 1fr)); }.tc-wp-tool-root .btc-field input, .tc-wp-tool-root .btc-field select{ font-size: 16px; padding: 12px; }.tc-wp-tool-root .btc-btn, .tc-wp-tool-root .btc-shortcut{ font-size: 15px; padding: 12px 16px; }.tc-wp-tool-root .btc-grid{ gap: 14px; }.tc-wp-tool-root .btc-result-card{ padding: 14px; }.tc-wp-tool-root .btc-result-card strong{ font-size: 18px; }.tc-wp-tool-root .btc-main-result strong{ font-size: 38px; }}@media (min-width: 1200px) {.tc-wp-tool-root .btc-tool-wrapper{ padding: 32px; }.tc-wp-tool-root .btc-header{ width: min(980px, 100%); }.tc-wp-tool-root .btc-header h1{ font-size: 54px; }.tc-wp-tool-root .btc-header p{ font-size: 18px; }.tc-wp-tool-root .btc-card{ grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr); gap: 20px; }.tc-wp-tool-root .btc-input-panel, .tc-wp-tool-root .btc-output-panel, .tc-wp-tool-root .btc-shortcuts{ padding: 20px; }.tc-wp-tool-root .btc-income-grid, .tc-wp-tool-root .btc-tax-grid{ grid-template-columns: repeat(3, minmax(0, 1fr)); }.tc-wp-tool-root .btc-deduction-grid, .tc-wp-tool-root .btc-credit-grid, .tc-wp-tool-root .btc-result-grid, .tc-wp-tool-root .btc-shortcuts{ grid-template-columns: repeat(4, minmax(0, 1fr)); }.tc-wp-tool-root .btc-field input, .tc-wp-tool-root .btc-field select{ font-size: 16px; padding: 12px; }.tc-wp-tool-root .btc-btn, .tc-wp-tool-root .btc-shortcut{ font-size: 15px; padding: 13px 17px; }.tc-wp-tool-root .btc-grid{ gap: 14px; }.tc-wp-tool-root .btc-result-card{ padding: 15px; }.tc-wp-tool-root .btc-result-card strong{ font-size: 19px; }.tc-wp-tool-root .btc-main-result strong{ font-size: 42px; }}.tc-wp-tool-root{
  position: relative !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  margin-top: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
  z-index: 0 !important;
}