/* Shared home affordance for every non-home YouBinge page. */
.yb-global-home {
  position: fixed;
  top: clamp(6px, 1.4vw, 14px);
  left: clamp(54px, 5.6vw, 84px);
  z-index: 2147483000;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  transition: transform .18s ease, opacity .18s ease;
}

.yb-global-home:hover,
.yb-global-home:focus-visible {
  transform: translateY(-1px) scale(1.04);
  opacity: .98;
}

.yb-global-home:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.yb-global-home-ico {
  width: 34px;
  height: 34px;
  display: block;
  background: url('/images/icons/homepage.svg') center / 34px 34px no-repeat;
}

@media (max-width: 768px) {
  .yb-global-home {
    top: 8px;
    left: 44px;
    width: 38px;
    height: 38px;
  }

  .yb-global-home-ico {
    width: 30px;
    height: 30px;
    background-size: 30px 30px;
  }
}
