.pisell-floating-dock {
  position: absolute;
  z-index: 20;
  width: max-content;
  height: max-content;
  max-width: max-content;
  max-height: max-content;
  opacity: 0.5;
  transition:
    right 0.2s ease,
    transform 0.2s ease,
    opacity 0.2s ease;
  will-change: right, transform, opacity;

  &-expanded {
    opacity: 1;
  }
}
