.fizz-drawer {
  position: fixed;
  z-index: $elevation-drawer;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  visibility: hidden;
  background-color: rgba(0, 0, 0, 0);
  transition: background-color 0.3s, visibility 0.3s;
}

.fizz-drawer:focus {
  outline: none;
}

.fizz-drawer-content {
  --max-width: 350px;
  width: calc(100% - #{$spacing-16});
  max-width: var(--max-width);
  background-color: $color-background-surface;
  border-right: $border-width-thin solid $color-border-default;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  height: 100%;
  transform: translateX(-100%);
  transition: transform .3s ease-in-out;
}

.fizz-drawer-is-open {
  overflow: hidden;
}

.fizz-drawer-is-open .fizz-drawer {
  visibility: visible;
  background-color: rgba(0, 0, 0, .5);
}

.fizz-drawer-is-open .fizz-drawer-content {
  transform: translateX(0);
}