.metric{
  position:relative;
  width:100%;
  color:inherit;
  font:inherit;
  text-align:left;
  cursor:pointer;
  transition:background .16s ease,border-color .16s ease,box-shadow .16s ease,transform .16s ease;
}
.metric:hover{
  background:#faf9f8;
  border-color:#b9b3ae;
  box-shadow:0 4px 14px rgba(49,45,42,.08);
  transform:translateY(-1px);
}
.metric:focus-visible{
  outline:3px solid rgba(0,95,184,.25);
  outline-offset:2px;
}
.metric.active{
  background:#f6f4f2;
  border-color:#8e8883;
  box-shadow:inset 0 0 0 1px #8e8883;
}
.metric>i{
  position:absolute;
  right:17px;
  top:14px;
  display:grid;
  place-items:center;
  width:22px;
  height:22px;
  border-radius:50%;
  background:#efedeb;
  color:#5d5752;
  font-size:16px;
  font-style:normal;
  line-height:1;
}
.metric-details{
  margin:-18px 0 30px;
  border:1px solid var(--line);
  border-top:3px solid var(--blue);
  background:var(--paper);
  box-shadow:0 6px 18px rgba(49,45,42,.06);
}
.metric-details[data-status="W"]{border-top-color:var(--green)}
.metric-details[data-status="F"]{border-top-color:var(--violet)}
.metric-details[data-status="U"]{border-top-color:var(--amber)}
.metric-details[data-status="P"]{border-top-color:var(--blue)}
.metric-details-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:13px 17px;
  border-bottom:1px solid var(--line);
  background:#faf9f8;
}
.metric-details-head>div{
  display:flex;
  align-items:center;
  gap:9px;
}
.metric-details-head small{color:var(--muted)}
.metric-status-code{
  display:grid;
  place-items:center;
  width:25px;
  height:25px;
  border-radius:3px;
  background:#e9e6e3;
  font-size:11px;
  font-weight:800;
}
.metric-deal-list{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
}
.metric-deal-item{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  min-height:52px;
  padding:10px 17px;
  border-right:1px solid #ebe8e5;
  border-bottom:1px solid #ebe8e5;
}
.metric-deal-item:nth-child(2n){border-right:0}
.metric-deal-item>div:first-child{
  display:flex;
  align-items:center;
  min-width:0;
  gap:8px;
}
.metric-deal-item strong{
  overflow:hidden;
  white-space:nowrap;
  text-overflow:ellipsis;
}
.metric-partner{
  flex:0 0 auto;
  padding:2px 6px;
  border-radius:10px;
  background:#efedeb;
  color:var(--muted);
  font-size:10px;
}
.metric-deal-meta{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  flex:0 0 auto;
  gap:9px;
  color:var(--muted);
  font-size:11px;
}
.metric-deal-meta b{
  min-width:82px;
  color:var(--ink);
  text-align:right;
}
.metric-empty{
  grid-column:1/-1;
  margin:0;
  padding:20px;
  color:var(--muted);
  text-align:center;
}
@media(max-width:900px){
  .metric-deal-list{grid-template-columns:1fr}
  .metric-deal-item{border-right:0}
}
@media(max-width:560px){
  .metric-details{margin:-18px 0 24px}
  .metric-details-head,.metric-deal-item{align-items:flex-start}
  .metric-deal-item{flex-direction:column;gap:6px}
  .metric-deal-meta{width:100%;justify-content:space-between}
}
