/* Long Text Ellipsis */
.ellipsis,
.two-line,
.table-row,
.drawer-navlink
{
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: auto;
}
/* Vertical Icon Positioning Fix */
.icon,
.list-icon,
.sidebar-icon{
  vertical-align: top;
}
/* Nav menu dark background / backdrop */
.w-nav-overlay::before {
  content: "";
  background: rgba(0,0,0,0.65);
  position: fixed;
  top: 0;
  left:0;
  bottom: 0;
  right: 0;
}
/* Custom Tooltip Styling */
a[data-tooltip]:link,
a[data-tooltip]:visited {
  position: relative;
}
a[data-tooltip] span.tooltip {
  position: absolute;
  bottom: -30px;
  left: 50%;
  margin-left: -48px;
  width: 96px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  visibility: hidden;
  z-index: 999;
  text-align: center;
  border-radius: 2px;
  background: rgba(0,0,0,0.65);
  max-height: 20px;
  line-height: 20px;
  text-align: center;
}
a[data-tooltip-align="right"] span.tooltip {
  margin-right: 0;
  margin-left: 16px;
  right: 0;
  left: 100%;
  top: 50%;
  margin-top: -10px;
}
a[data-tooltip-align="left"] span.tooltip {
  margin-right: 0;
  margin-left: -48px;
  right: 0;
  top: 0;
  left: -100%;
  bottom: -5px;
}
a[data-tooltip]:hover span.tooltip {
  visibility: visible;
  transition: visibility 0s linear .3s;
}