.widget-container {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 99999;

  @include breakpoint(medium) {
    bottom: 40px;
    left: 40px;
  }
}

.widget-overlay {
  position: static;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;

  &.active {
    position: fixed;
  }
}