*{box-sizing:border-box;}
.salary-page{
  --salary-label-color:#8E8E93;
  --salary-gross-color:#000000;
  --salary-net-color:#087A3D;
  --salary-deduction-color:#8B1E1E;
  --salary-input-font-size:13px;
  --salary-description-font-size:13px;
  --salary-table-font-size:0.76rem;
  --salary-table-mobile-font-size:0.68rem;
}
.salary-page-scroll{
  width:100%;
  max-width:1180px;
  margin:0 auto;
}
.salary-page-scroll > *{
  max-width:100%;
  margin-left:auto;
  margin-right:auto;
}
.salary-page-scroll .page-intro{
  display:none;
}
.salary-panel{
  background:transparent !important;
  border:none !important;
  border-radius:0 !important;
  box-shadow:none !important;
  overflow:visible;
  padding:0 !important;
}
.header{margin-bottom:0;}
.sr-only{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}
.salary-summary-stack{
  display:grid;
  gap:10px;
  width:100%;
  margin:0 0 12px;
}
.salary-pair-card{
  --salary-card-top:24px;
  --salary-card-bottom:34px;
  --salary-card-pad-x:16px;
  --salary-card-radius:16px;
  display:grid;
  grid-template-columns:minmax(0,1fr) 1px minmax(0,1fr);
  align-items:stretch;
  width:100%;
  height:calc(var(--salary-card-top) + var(--salary-card-bottom)) !important;
  min-height:calc(var(--salary-card-top) + var(--salary-card-bottom));
  max-height:calc(var(--salary-card-top) + var(--salary-card-bottom));
  position:relative;
  background:#ffffff;
  border:0;
  border-radius:var(--salary-card-radius);
  box-shadow:0 1px 0 rgba(0,0,0,0.02);
  overflow:hidden;
  font-family:Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.salary-pair-card:focus-within{
  box-shadow:0 0 0 0.75px rgba(9,9,121,0.34) inset;
}
.salary-pair-segment{
  display:grid;
  grid-template-rows:var(--salary-card-top) var(--salary-card-bottom);
  align-items:end;
  min-width:0;
  height:calc(var(--salary-card-top) + var(--salary-card-bottom));
  min-height:calc(var(--salary-card-top) + var(--salary-card-bottom));
  padding:0 var(--salary-card-pad-x);
}
.salary-pair-divider{
  align-self:center;
  width:1px;
  height:46px;
  background:rgba(60,60,67,0.12);
  transform:scaleX(.5);
  transform-origin:center;
  pointer-events:none;
}
.salary-pair-label{
  align-self:center;
  min-height:var(--salary-card-top);
  height:var(--salary-card-top);
  padding:0 0 3px;
  color:var(--salary-label-color) !important;
  font-family:Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  font-size:var(--salary-input-font-size) !important;
  font-weight:600 !important;
  letter-spacing:0 !important;
  line-height:1 !important;
  display:flex;
  align-items:flex-end;
  text-transform:none;
}
.salary-pair-input,
.salary-pair-value{
  min-width:0;
  width:100%;
  color:var(--salary-gross-color) !important;
  font-family:Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  font-size:var(--salary-input-font-size) !important;
  font-weight:600 !important;
  letter-spacing:0 !important;
  min-height:var(--salary-card-bottom) !important;
  height:var(--salary-card-bottom) !important;
  line-height:var(--salary-card-bottom) !important;
  font-variant-numeric:tabular-nums;
}
.salary-page .page-description{
  font-size:var(--salary-description-font-size) !important;
  line-height:1.42 !important;
}
.salary-pair-input{
  height:var(--salary-card-bottom) !important;
  min-height:var(--salary-card-bottom) !important;
  margin:0 !important;
  padding:0 !important;
  border:0 !important;
  border-radius:0 !important;
  background:transparent !important;
  box-shadow:none !important;
  text-align:left;
}
.salary-pair-input:focus{
  outline:none !important;
  box-shadow:none !important;
}
.salary-pair-segment--net .salary-pair-input,
.salary-pair-segment--net .salary-pair-value{
  color:var(--salary-net-color) !important;
}
#pagaNeto,
#bonusNeto,
#totalNeto,
#pagaNetoInput,
#bonusNetoInput,
#totalNetoFromNeto{
  color:var(--salary-net-color) !important;
}
.warning{
  color:var(--salary-deduction-color);
  font-size:0.78rem;
  margin:0 18px;
}
.warning:empty{
  display:none;
}
.salary-table-stack{
  display:grid;
  gap:14px;
  margin-top:12px;
}
.salary-table-card{
  min-width:0;
  overflow:visible;
  background:#ffffff !important;
  border:0;
  border-radius:0;
  box-shadow:none;
}
.salary-table-title{
  margin:0;
  padding:4px 0 10px;
  color:#111111;
  background:#ffffff !important;
  font-size:0.95rem;
  font-weight:800;
  letter-spacing:0;
  line-height:1.25;
}
.salary-table-scroll{
  width:100%;
  overflow-x:auto;
  overflow-y:hidden;
  -webkit-overflow-scrolling:touch;
  overscroll-behavior-x:contain;
}
.salary-breakdown-table{
  width:100%;
  min-width:0;
  margin:0;
  border-collapse:collapse !important;
  border-spacing:0;
  table-layout:fixed;
  background:#ffffff !important;
  border:0;
  box-shadow:none;
  border-radius:0 !important;
  overflow:visible;
}
.salary-breakdown-table th,
.salary-breakdown-table td{
  padding:8px 0;
  border-top:0;
  font-family:Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  font-size:var(--salary-table-font-size);
  font-weight:500;
  line-height:1.22;
  vertical-align:middle;
  background:#ffffff !important;
  border-left:0 !important;
  border-right:0 !important;
}
.salary-breakdown-table thead th{
  border-top:0;
  color:#8E8E93;
  font-size:var(--salary-table-font-size);
  font-weight:600;
  letter-spacing:0;
  text-align:right;
  text-transform:none;
  border-bottom:1px solid rgba(60,60,67,0.16);
}
.salary-breakdown-table thead th:first-child,
.salary-breakdown-table tbody th{
  text-align:left;
}
.salary-breakdown-table thead th:first-child{
  width:52%;
}
.salary-breakdown-table tbody th{
  color:#3A3A3C;
  font-weight:500;
  overflow-wrap:anywhere;
  padding-right:10px;
}
.salary-breakdown-table tbody td{
  color:#111111;
  font-weight:500;
  text-align:right;
  white-space:nowrap;
  font-variant-numeric:tabular-nums;
}
.salary-breakdown-table tbody tr + tr th,
.salary-breakdown-table tbody tr + tr td{
  border-top:1px solid rgba(60,60,67,0.10);
}
.salary-table-deduction th,
.salary-table-deduction td{
  color:var(--salary-deduction-color);
}
.salary-table-gross th,
.salary-table-gross td{
  color:var(--salary-gross-color);
  font-weight:800;
}
.salary-table-subtotal th,
.salary-table-subtotal td{
  background:#ffffff !important;
  border-top:1px solid rgba(17,24,39,0.18) !important;
  color:#111111;
  font-weight:800;
}
.salary-table-net th,
.salary-table-net td{
  background:#ffffff !important;
  border-top:1px solid rgba(8,122,61,0.24) !important;
  color:var(--salary-net-color);
  font-weight:800;
}
.salary-breakdown-table tbody tr:hover th,
.salary-breakdown-table tbody tr:hover td{
  background:#ffffff !important;
}
.salary-tax-summary{
  min-width:0;
  margin-top:2px;
  background:#ffffff;
}
.salary-tax-lines{
  display:grid;
  grid-template-columns:52% 24% 24%;
  width:100%;
}
.salary-tax-head,
.salary-tax-row{
  display:grid;
  grid-column:1 / -1;
  grid-template-columns:52% 24% 24%;
}
.salary-tax-head span,
.salary-tax-row span{
  padding:8px 0;
  border-bottom:1px solid rgba(60,60,67,0.10);
  font-family:Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  font-size:var(--salary-table-font-size);
  line-height:1.22;
  background:#ffffff;
}
.salary-tax-head span{
  color:#8E8E93;
  font-weight:600;
  letter-spacing:0;
  text-transform:none;
  text-align:right;
}
.salary-tax-head span:first-child{
  text-align:left;
}
.salary-tax-row span{
  color:#3A3A3C;
  font-weight:500;
}
.salary-tax-row span:first-child{
  padding-right:10px;
  text-align:left;
}
.salary-tax-row .salary-tax-value{
  text-align:right;
  white-space:nowrap;
  font-variant-numeric:tabular-nums;
}
.salary-tax-total span{
  border-top:1px solid rgba(17,24,39,0.18);
  color:#111111;
  font-weight:800;
}
.page-title{
  font-size:clamp(1.34rem,1.8vw,1.72rem);
}
.segmented{
  margin:0 0 12px;
  display:grid;
  grid-template-columns:1fr 1fr;
  justify-content:center;
  width:100%;
  min-height:44px;
  height:44px;
  background:rgba(118,118,128,0.12) !important;
  border:0 !important;
  border-radius:999px !important;
  box-shadow:none !important;
  padding:3px !important;
  gap:0 !important;
  overflow:hidden;
  -webkit-backdrop-filter:saturate(180%) blur(16px);
  backdrop-filter:saturate(180%) blur(16px);
}
.seg-btn{
  min-width:0;
  min-height:38px;
  height:38px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  border:0 !important;
  border-radius:999px !important;
  padding:0 12px !important;
  background:transparent !important;
  box-shadow:none !important;
  color:#6E6E73 !important;
  font-family:Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  font-size:0.84rem !important;
  font-weight:600 !important;
  line-height:1 !important;
  letter-spacing:0 !important;
  transition:background-color .18s ease, color .18s ease, box-shadow .18s ease;
}
.seg-btn.active{
  color:#111111 !important;
  background:#ffffff !important;
  box-shadow:0 1px 2px rgba(0,0,0,0.08) !important;
}
.seg-btn:focus-visible{
  outline:2px solid rgba(0,122,255,0.32);
  outline-offset:2px;
}
.calc-panel{display:none;}
.calc-panel.active{display:block;}
@media (min-width:900px){
  .salary-page-scroll{
    max-width:980px;
  }
  .salary-summary-stack{
    width:min(100%,41.6667%);
    margin-left:0;
    margin-right:0;
  }
}
@media (max-width:720px){
  .salary-page-scroll > *{
    max-width:none;
  }
  .seg-btn{
    padding-left:8px !important;
    padding-right:8px !important;
  }
  .salary-pair-card{
    --salary-card-radius:14px;
    --salary-card-pad-x:14px;
  }
  .salary-table-title{
    padding:5px 1px 8px;
    font-size:0.9rem;
  }
  .salary-breakdown-table{
    min-width:0;
  }
  .salary-breakdown-table th,
  .salary-breakdown-table td{
    padding:5px 4px;
    font-size:var(--salary-table-mobile-font-size);
  }
  .salary-breakdown-table thead th{
    font-size:var(--salary-table-mobile-font-size);
  }
  .salary-tax-head span,
  .salary-tax-row span{
    padding:5px 4px;
    font-size:var(--salary-table-mobile-font-size);
  }
}
