/* Salary-guarantee encoding shared by every cap-sheet view. */
.guarantee-legend-item{
  display:inline-flex;
  align-items:center;
  gap:6px;
}
.vertical-legend .guarantee-legend-swatch{
  display:inline-block;
  flex:0 0 25px;
  width:25px;
  height:13px;
  border:1px solid rgba(23,32,51,.35);
  border-radius:3px;
  background:
    repeating-linear-gradient(135deg,rgba(23,32,51,.42) 0 2px,transparent 2px 6px),
    #f1e3cc;
}
.guarantee-unsecured-overlay{pointer-events:none}
.guarantee-boundary-line{
  pointer-events:none;
  stroke:#172033;
  stroke-width:1.25;
  stroke-dasharray:2.5 2;
  vector-effect:non-scaling-stroke;
}
.is-guarantee-dead-money>.guarantee-boundary-line,
.is-guarantee-dead-money>.guarantee-unsecured-overlay{display:none}
.contract-guarantee-note{
  display:block;
  margin-top:2px;
  color:#53615d;
  font-size:10px;
  font-weight:700;
  line-height:1.25;
}
.contract-guarantee-note.is-partial{color:#7b4d16}
.contract-guarantee-note.is-dead-money{color:#8a2d2d}
.guarantee-cut-control{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  flex-wrap:wrap;
  gap:5px;
  width:100%;
  margin-top:5px;
  text-align:right;
}
.guarantee-cut-button{
  appearance:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:30px;
  padding:4px 9px;
  border:1px solid #bf7676;
  border-radius:999px;
  background:#fff5f4;
  color:#7d2626;
  font:inherit;
  font-size:10px;
  font-weight:900;
  line-height:1;
  white-space:nowrap;
  cursor:pointer;
  touch-action:manipulation;
}
.guarantee-cut-button:hover,
.guarantee-cut-button:focus-visible{
  border-color:#962d2d;
  background:#ffeded;
  outline:2px solid rgba(162,53,53,.2);
  outline-offset:1px;
}
.guarantee-cut-button[data-guarantee-outcome="include"]{
  border-color:#5a6f69;
  background:#f4f8f7;
  color:#29433d;
}
.guarantee-cut-effect{
  flex:1 0 100%;
  color:#68736f;
  font-size:10px;
  font-weight:650;
  line-height:1.25;
  text-align:right;
}
.guarantee-dead-money-state{
  display:block;
  margin-top:3px;
  color:#8a2d2d;
  font-size:10px;
  font-weight:750;
}
.multi-contract-popover-guarantee{
  display:block;
  color:inherit;
  font-size:11px;
  font-weight:750;
  line-height:1.25;
}
.experiment-option-editor fieldset>.experiment-option-guarantee-control{
  grid-column:1/-1;
  margin-top:2px;
  padding-top:9px;
  border-top:1px solid #d9aaa7;
}
.experiment-option-editor .experiment-option-guarantee-control .guarantee-cut-effect{
  color:#6c4744;
  text-align:center;
}
.multi-option-action-area{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin:0 0 10px;
  padding:10px 12px;
  border:1px solid #b9d5d1;
  border-radius:8px;
  background:#f4fbfa;
}
.multi-option-action-area[hidden]{display:none}
.multi-option-decision-copy{display:grid;gap:2px;color:#204f4c}
.multi-option-decision-copy strong{font-size:11px;font-weight:950;letter-spacing:.04em;text-transform:uppercase}
.multi-option-decision-copy span{font-size:10.5px;font-weight:700;line-height:1.25}
.multi-option-action-area .multi-option-decisions{justify-content:flex-end}
#multi-year-panel .experiment-option-contract>rect:not(.guarantee-unsecured-overlay){
  cursor:pointer;
  stroke:#0f6f74;
  stroke-width:2;
  stroke-opacity:1;
  filter:drop-shadow(0 0 1px rgba(0,127,134,.38));
}
#multi-year-panel .experiment-option-contract:hover>rect:not(.guarantee-unsecured-overlay),
#multi-year-panel .experiment-option-contract:focus-visible>rect:not(.guarantee-unsecured-overlay),
#multi-year-panel .experiment-option-contract[aria-expanded="true"]>rect:not(.guarantee-unsecured-overlay){
  stroke:#003f43;
  stroke-width:4;
  filter:drop-shadow(0 0 3px rgba(0,127,134,.62));
}
@media(max-width:760px){
  .guarantee-cut-button{min-height:36px;padding:6px 11px}
  .multi-option-action-area{align-items:stretch;flex-direction:column}
  .multi-option-action-area .multi-option-decisions{width:100%;justify-content:flex-start}
}
