@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{
  --rvc-ink: #102033;
  --rvc-muted: #607086;
  --rvc-line: #d9e2ee;
  --rvc-panel: #ffffff;
  --rvc-soft: #f5f8fc;
  --rvc-gold: #b9801f;
  --rvc-gold-2: #f4c86b;
  --rvc-green: #14785c;
  --rvc-blue: #2457a6;
  --rvc-red: #b73242;
  --rvc-shadow: 0 18px 48px rgba(18, 39, 68, 0.14);
  --rvc-radius: 18px;
  --rvc-gap: 18px;
}.tc-wp-tool-root html:has(.rvc-tool-wrapper), .tc-wp-tool-root body:has(.rvc-tool-wrapper){
  overflow-x: hidden;
}.tc-wp-tool-root .rvc-tool-wrapper, .tc-wp-tool-root .rvc-tool-wrapper *{
  box-sizing: border-box;
  overflow-wrap: anywhere;
  word-break: break-word;
}.tc-wp-tool-root .rvc-tool-wrapper{
  position: relative;
  width: 100%;
  max-width: 100%;
  border-radius: 0;
  padding: 56px 18px;
  color: var(--rvc-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    linear-gradient(rgba(255,255,255,0.68), rgba(255,255,255,0.88)),
    linear-gradient(90deg, rgba(36,87,166,0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(185,128,31,0.08) 1px, transparent 1px),
    radial-gradient(circle at 18% 10%, rgba(244,200,107,0.34), transparent 32%),
    radial-gradient(circle at 82% 8%, rgba(20,120,92,0.18), transparent 34%),
    linear-gradient(135deg, #f7fbff 0%, #fff8eb 52%, #f3fbf7 100%);
  background-size: auto, 42px 42px, 42px 42px, auto, auto, auto;
  overflow-x: hidden;
}.tc-wp-tool-root .rvc-header{
  width: min(980px, 100%);
  margin: 0 auto 28px;
  text-align: center;
}.tc-wp-tool-root .rvc-header h1{
  margin: 0 0 12px;
  color: var(--rvc-ink);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.04;
  letter-spacing: 0;
}.tc-wp-tool-root .rvc-header p{
  max-width: 860px;
  margin: 0 auto;
  color: var(--rvc-muted);
  font-size: 1.06rem;
  line-height: 1.65;
}.tc-wp-tool-root .rvc-card{
  width: min(1240px, 100%);
  max-width: 100%;
  margin: 0 auto;
  padding: 22px;
  border: 1px solid rgba(217,226,238,0.9);
  border-radius: var(--rvc-radius);
  background: rgba(255,255,255,0.82);
  box-shadow: var(--rvc-shadow);
  backdrop-filter: blur(10px);
}.tc-wp-tool-root .rvc-panels{
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
  gap: var(--rvc-gap);
  width: 100%;
  max-width: 100%;
}.tc-wp-tool-root .rvc-input-panel, .tc-wp-tool-root .rvc-output-panel{
  width: 100%;
  max-width: 100%;
  min-width: 0;
  border: 1px solid var(--rvc-line);
  border-radius: 16px;
  background: var(--rvc-panel);
  padding: 18px;
}.tc-wp-tool-root .rvc-output-panel{
  overflow-y: auto;
  scrollbar-color: var(--rvc-gold) #eef3f8;
  scrollbar-width: thin;
}.tc-wp-tool-root .rvc-output-panel::-webkit-scrollbar{
  width: 10px;
}.tc-wp-tool-root .rvc-output-panel::-webkit-scrollbar-track{
  background: #eef3f8;
  border-radius: 999px;
}.tc-wp-tool-root .rvc-output-panel::-webkit-scrollbar-thumb{
  background: linear-gradient(180deg, var(--rvc-gold-2), var(--rvc-gold));
  border-radius: 999px;
}.tc-wp-tool-root .rvc-grid{
  display: grid;
  gap: 14px;
  width: 100%;
  max-width: 100%;
}.tc-wp-tool-root .rvc-grid-3{
  grid-template-columns: repeat(3, minmax(0, 1fr));
}.tc-wp-tool-root .rvc-field{
  display: grid;
  gap: 7px;
  min-width: 0;
}.tc-wp-tool-root .rvc-field span{
  color: var(--rvc-muted);
  font-size: 0.84rem;
  font-weight: 700;
}.tc-wp-tool-root .rvc-field input, .tc-wp-tool-root .rvc-field select{
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 44px;
  border: 1px solid var(--rvc-line);
  border-radius: 12px;
  background: #fbfdff;
  color: var(--rvc-ink);
  font: inherit;
  font-size: 0.96rem;
  padding: 10px 12px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}.tc-wp-tool-root .rvc-field input:focus, .tc-wp-tool-root .rvc-field select:focus, .tc-wp-tool-root .rvc-btn:focus-visible{
  border-color: var(--rvc-blue);
  box-shadow: 0 0 0 4px rgba(36,87,166,0.16);
}.tc-wp-tool-root .rvc-items{
  display: grid;
  gap: 12px;
  margin: 16px 0;
}.tc-wp-tool-root .rvc-item-row{
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(74px, 0.52fr) minmax(100px, 0.74fr) minmax(112px, 0.78fr) minmax(96px, 0.68fr) auto;
  gap: 10px;
  align-items: end;
  width: 100%;
  max-width: 100%;
  padding: 12px;
  border: 1px solid #e7edf5;
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
}.tc-wp-tool-root .rvc-action-row, .tc-wp-tool-root .rvc-shortcuts{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
  max-width: 100%;
}.tc-wp-tool-root .rvc-action-row{
  margin: 0 0 16px;
}.tc-wp-tool-root .rvc-shortcuts{
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--rvc-line);
}.tc-wp-tool-root .rvc-btn{
  min-width: 0;
  border: 1px solid var(--rvc-line);
  border-radius: 12px;
  background: #ffffff;
  color: var(--rvc-ink);
  font: inherit;
  font-weight: 800;
  font-size: 0.92rem;
  line-height: 1.2;
  padding: 11px 14px;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}.tc-wp-tool-root .rvc-btn:hover{
  transform: translateY(-1px);
  border-color: rgba(185,128,31,0.45);
  box-shadow: 0 10px 22px rgba(18,39,68,0.1);
}.tc-wp-tool-root .rvc-btn-primary{
  border-color: transparent;
  background: linear-gradient(135deg, var(--rvc-green), var(--rvc-blue));
  color: #ffffff;
}.tc-wp-tool-root .rvc-btn-soft, .tc-wp-tool-root .rvc-shortcut{
  background: #f6f9fd;
}.tc-wp-tool-root .rvc-remove{
  width: 42px;
  height: 42px;
  padding: 0;
  border-color: #f0ccd2;
  color: var(--rvc-red);
  background: #fff7f8;
}.tc-wp-tool-root .rvc-validation{
  display: grid;
  gap: 6px;
  margin-top: 14px;
  color: var(--rvc-red);
  font-size: 0.9rem;
  line-height: 1.45;
}.tc-wp-tool-root .rvc-validation:empty{
  display: none;
}.tc-wp-tool-root .rvc-status-wrap{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}.tc-wp-tool-root .rvc-badge{
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  border: 1px solid rgba(185,128,31,0.28);
  border-radius: 999px;
  background: #fff7e6;
  color: #7b5011;
  font-size: 0.78rem;
  font-weight: 900;
  padding: 7px 10px;
}.tc-wp-tool-root .rvc-status{
  color: var(--rvc-blue);
  font-size: 0.96rem;
}.tc-wp-tool-root .rvc-hero-result{
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
  padding: 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, #102033, #2457a6);
  color: #ffffff;
}.tc-wp-tool-root .rvc-hero-result span{
  font-weight: 800;
  color: rgba(255,255,255,0.78);
}.tc-wp-tool-root .rvc-hero-result strong{
  font-size: 2rem;
  line-height: 1.1;
	color: #fff;
}.tc-wp-tool-root .rvc-preview-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
  max-width: 100%;
}.tc-wp-tool-root .rvc-preview-card, .tc-wp-tool-root .rvc-breakdown > div{
  width: 100%;
  max-width: 100%;
  min-width: 0;
  border: 1px solid var(--rvc-line);
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff, #f7fafc);
  padding: 13px;
}.tc-wp-tool-root .rvc-preview-card span, .tc-wp-tool-root .rvc-breakdown span{
  display: block;
  color: var(--rvc-muted);
  font-size: 0.8rem;
  font-weight: 800;
  margin-bottom: 6px;
}.tc-wp-tool-root .rvc-preview-card strong, .tc-wp-tool-root .rvc-breakdown strong{
  color: var(--rvc-ink);
  font-size: 1.02rem;
  line-height: 1.25;
}.tc-wp-tool-root .rvc-breakdown{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}@media (min-width: 320px) and (max-width: 374px) {.tc-wp-tool-root .rvc-tool-wrapper{ padding: 30px 10px; }.tc-wp-tool-root .rvc-header{ width: 100%; margin-bottom: 18px; }.tc-wp-tool-root .rvc-header h1{ font-size: 1.72rem; }.tc-wp-tool-root .rvc-header p{ font-size: 0.9rem; }.tc-wp-tool-root .rvc-card{ padding: 10px; }.tc-wp-tool-root .rvc-panels{ grid-template-columns: 1fr; gap: 10px; }.tc-wp-tool-root .rvc-input-panel, .tc-wp-tool-root .rvc-output-panel{ grid-column: 1 / -1; padding: 12px; }.tc-wp-tool-root .rvc-grid-3, .tc-wp-tool-root .rvc-preview-grid, .tc-wp-tool-root .rvc-breakdown{ grid-template-columns: 1fr !important; }.tc-wp-tool-root .rvc-item-row{ grid-template-columns: 1fr; gap: 9px; }.tc-wp-tool-root .rvc-field input, .tc-wp-tool-root .rvc-field select{ min-height: 42px; font-size: 0.9rem; }.tc-wp-tool-root .rvc-btn{ width: 100%; font-size: 0.88rem; padding: 10px 11px; }.tc-wp-tool-root .rvc-remove{ width: 100%; height: 40px; }.tc-wp-tool-root .rvc-preview-card{ padding: 11px; }.tc-wp-tool-root .rvc-preview-card strong{ font-size: 0.95rem; }.tc-wp-tool-root .rvc-hero-result strong{ font-size: 1.55rem; }}@media (min-width: 375px) and (max-width: 429px) {.tc-wp-tool-root .rvc-tool-wrapper{ padding: 34px 12px; }.tc-wp-tool-root .rvc-header{ width: 100%; margin-bottom: 20px; }.tc-wp-tool-root .rvc-header h1{ font-size: 1.95rem; }.tc-wp-tool-root .rvc-header p{ font-size: 0.94rem; }.tc-wp-tool-root .rvc-card{ padding: 12px; }.tc-wp-tool-root .rvc-panels{ grid-template-columns: 1fr; gap: 12px; }.tc-wp-tool-root .rvc-input-panel, .tc-wp-tool-root .rvc-output-panel{ grid-column: 1 / -1; padding: 13px; }.tc-wp-tool-root .rvc-grid-3, .tc-wp-tool-root .rvc-preview-grid, .tc-wp-tool-root .rvc-breakdown{ grid-template-columns: 1fr !important; }.tc-wp-tool-root .rvc-item-row{ grid-template-columns: 1fr; }.tc-wp-tool-root .rvc-field input, .tc-wp-tool-root .rvc-field select{ min-height: 43px; font-size: 0.92rem; }.tc-wp-tool-root .rvc-btn{ width: 100%; font-size: 0.9rem; padding: 10px 12px; }.tc-wp-tool-root .rvc-remove{ width: 100%; height: 40px; }.tc-wp-tool-root .rvc-preview-card{ padding: 12px; }.tc-wp-tool-root .rvc-preview-card strong{ font-size: 0.98rem; }.tc-wp-tool-root .rvc-hero-result strong{ font-size: 1.7rem; }}@media (min-width: 430px) and (max-width: 767px) {.tc-wp-tool-root .rvc-tool-wrapper{ padding: 40px 14px; }.tc-wp-tool-root .rvc-header{ width: 100%; }.tc-wp-tool-root .rvc-header h1{ font-size: 2.25rem; }.tc-wp-tool-root .rvc-header p{ font-size: 0.98rem; }.tc-wp-tool-root .rvc-card{ padding: 14px; }.tc-wp-tool-root .rvc-panels{ grid-template-columns: 1fr; gap: 14px; }.tc-wp-tool-root .rvc-input-panel, .tc-wp-tool-root .rvc-output-panel{ grid-column: 1 / -1; padding: 15px; }.tc-wp-tool-root .rvc-grid-3, .tc-wp-tool-root .rvc-preview-grid, .tc-wp-tool-root .rvc-breakdown{ grid-template-columns: 1fr !important; }.tc-wp-tool-root .rvc-item-row{ grid-template-columns: repeat(2, minmax(0, 1fr)); }.tc-wp-tool-root .rvc-item-row .rvc-field:first-child, .tc-wp-tool-root .rvc-remove{ grid-column: 1 / -1; }.tc-wp-tool-root .rvc-field input, .tc-wp-tool-root .rvc-field select{ min-height: 44px; font-size: 0.94rem; }.tc-wp-tool-root .rvc-btn{ font-size: 0.91rem; padding: 11px 13px; }.tc-wp-tool-root .rvc-remove{ width: 100%; height: 42px; }.tc-wp-tool-root .rvc-preview-card{ padding: 13px; }.tc-wp-tool-root .rvc-preview-card strong{ font-size: 1rem; }}@media (min-width: 768px) and (max-width: 1023px) {.tc-wp-tool-root .rvc-tool-wrapper{ padding: 48px 18px; }.tc-wp-tool-root .rvc-header{ width: min(860px, 100%); }.tc-wp-tool-root .rvc-header h1{ font-size: 3rem; }.tc-wp-tool-root .rvc-header p{ font-size: 1.02rem; }.tc-wp-tool-root .rvc-card{ padding: 18px; }.tc-wp-tool-root .rvc-panels{ grid-template-columns: 1fr; gap: 16px; }.tc-wp-tool-root .rvc-input-panel, .tc-wp-tool-root .rvc-output-panel{ grid-column: 1 / -1; padding: 17px; }.tc-wp-tool-root .rvc-grid-3{ grid-template-columns: repeat(2, minmax(0, 1fr)); }.tc-wp-tool-root .rvc-item-row{ grid-template-columns: repeat(3, minmax(0, 1fr)); }.tc-wp-tool-root .rvc-remove{ width: 100%; }.tc-wp-tool-root .rvc-preview-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }.tc-wp-tool-root .rvc-preview-card{ padding: 14px; }.tc-wp-tool-root .rvc-preview-card strong{ font-size: 1.03rem; }.tc-wp-tool-root .rvc-field input, .tc-wp-tool-root .rvc-field select{ font-size: 0.95rem; }.tc-wp-tool-root .rvc-btn{ font-size: 0.92rem; padding: 11px 14px; }}@media (min-width: 1024px) and (max-width: 1199px) {.tc-wp-tool-root .rvc-tool-wrapper{ padding: 54px 20px; }.tc-wp-tool-root .rvc-header{ width: min(920px, 100%); }.tc-wp-tool-root .rvc-header h1{ font-size: 3.45rem; }.tc-wp-tool-root .rvc-header p{ font-size: 1.04rem; }.tc-wp-tool-root .rvc-card{ padding: 20px; }.tc-wp-tool-root .rvc-panels{ grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr); gap: 16px; }.tc-wp-tool-root .rvc-grid-3{ grid-template-columns: repeat(3, minmax(0, 1fr)); }.tc-wp-tool-root .rvc-item-row{ grid-template-columns: minmax(0, 1.2fr) minmax(70px, .55fr) minmax(92px, .7fr) minmax(100px, .75fr) minmax(88px, .65fr) auto; }.tc-wp-tool-root .rvc-preview-grid{ grid-template-columns: repeat(3, minmax(0, 1fr)); }.tc-wp-tool-root .rvc-preview-card{ padding: 13px; }.tc-wp-tool-root .rvc-preview-card strong{ font-size: 0.98rem; }.tc-wp-tool-root .rvc-field input, .tc-wp-tool-root .rvc-field select{ font-size: 0.94rem; }.tc-wp-tool-root .rvc-btn{ font-size: 0.91rem; padding: 10px 13px; }}@media (min-width: 1200px) {.tc-wp-tool-root .rvc-tool-wrapper{ padding: 64px 24px; }.tc-wp-tool-root .rvc-header{ width: min(980px, 100%); }.tc-wp-tool-root .rvc-header h1{ font-size: 4rem; }.tc-wp-tool-root .rvc-header p{ font-size: 1.08rem; }.tc-wp-tool-root .rvc-card{ padding: 22px; }.tc-wp-tool-root .rvc-panels{ gap: 18px; }.tc-wp-tool-root .rvc-grid-3{ grid-template-columns: repeat(3, minmax(0, 1fr)); }.tc-wp-tool-root .rvc-item-row{ grid-template-columns: minmax(0, 1.25fr) minmax(74px, .52fr) minmax(100px, .74fr) minmax(112px, .78fr) minmax(96px, .68fr) auto; }.tc-wp-tool-root .rvc-preview-grid{ grid-template-columns: repeat(4, minmax(0, 1fr)); }.tc-wp-tool-root .rvc-preview-card{ padding: 14px; }.tc-wp-tool-root .rvc-preview-card strong{ font-size: 1.04rem; }.tc-wp-tool-root .rvc-field input, .tc-wp-tool-root .rvc-field select{ font-size: 0.96rem; }.tc-wp-tool-root .rvc-btn{ font-size: 0.92rem; padding: 11px 14px; }}.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;
}

.tc-wp-tool-root .rvc-add-item {}
.tc-wp-tool-root .rvc-adjustments {}
.tc-wp-tool-root .rvc-base {}
.tc-wp-tool-root .rvc-category {}
.tc-wp-tool-root .rvc-category-output {}
.tc-wp-tool-root .rvc-copy {}
.tc-wp-tool-root .rvc-cost-output {}
.tc-wp-tool-root .rvc-costs {}
.tc-wp-tool-root .rvc-currency {}
.tc-wp-tool-root .rvc-custom-currency {}
.tc-wp-tool-root .rvc-decimals {}
.tc-wp-tool-root .rvc-depreciation {}
.tc-wp-tool-root .rvc-discount {}
.tc-wp-tool-root .rvc-discount-output {}
.tc-wp-tool-root .rvc-gainloss {}
.tc-wp-tool-root .rvc-growth {}
.tc-wp-tool-root .rvc-mode {}
.tc-wp-tool-root .rvc-mode-result {}
.tc-wp-tool-root .rvc-net {}
.tc-wp-tool-root .rvc-period {}
.tc-wp-tool-root .rvc-projected {}
.tc-wp-tool-root .rvc-reset {}
.tc-wp-tool-root .rvc-tax {}
.tc-wp-tool-root .rvc-tax-output {}
.tc-wp-tool-root .rvc-total {}
.tc-wp-tool-root .rvc-total-qty {}