.lt-fav-toggle{
  position:absolute; top:10px; right:10px;
  width:36px; height:36px;
  display:inline-flex; align-items:center; justify-content:center;
  border:0; border-radius:999px;
  /*background:rgba(255,255,255,.9);
  box-shadow:0 2px 8px rgba(0,0,0,.12);*/
  background:transparent;
  box-shadow:none;
  cursor:pointer; z-index:5;
}
.lt-fav-toggle:focus-visible{ outline:2px solid #111; outline-offset:2px; }
.lt-fav-toggle .lt-heart{ width:25px; height:25px; /*width:20px; height:20px;*/ fill:#666; opacity:.55; transition:fill .2s, opacity .2s, transform .15s; }
.lt-fav-toggle:hover .lt-heart{ transform:scale(1.05); }
.lt-is-fav .lt-fav-toggle.is-active .lt-heart{ fill:#e11d48; opacity:1; }
.lt-is-team-fav .lt-fav-toggle .lt-heart{ fill:#d4af37; opacity:1;}

.edge-pli-link{ z-index:1; }

.lt-fav-btn {opacity:0; transition: all 0.25s ease-in-out;}
.edge-pl-item:hover .lt-fav-btn {opacity:1;}

.fav-bookmark-tooltip{
  position: fixed !important;
  z-index: 2147483647;
  /*left: 0 !important;
  top: 0 !important;*/
  transform: translate(-50%, 0);
  opacity: 0;
  pointer-events: none;
  background: #212121;
  color: #fff;
  font-size: 12px;
  line-height: 1.3;
  padding: 6px 8px;
  /*border-radius: 6px;*/
  white-space: nowrap;
  box-shadow: 0 2px 10px rgba(0,0,0,.2);
  transition: opacity .15s ease, transform .15s ease;
	will-change: transform, opacity; 
}
.fav-bookmark-tooltip.is-visible{
  opacity: 1;
  transform: translate(-50%, -40px);
}
