$prefix-column-width: rem(180px);
$suffix-column-width: rem(184px);
$breakpoint: 768px;

.p_xj {
  position: relative;
  max-width: 100vw;
  overflow: hidden;
}

.p_gy {
  .p_wo {
    margin-bottom: rem(52px);
  }
}

.p_tf {
  display: none;
}

.p_gs,
.p_kj {
  position: absolute;
  top: 0;
  bottom: -1px;
  z-index: 2;
}

.p_gs {
  left: $prefix-column-width;
  .p_y4 {
    box-shadow: inset 1px 0 rgba(color('ink'), 0.1);
    background: linear-gradient(
      to right,
      rgba(color('ink'), 0.15),
      rgba(color('ink'), 0.06),
      rgba(color('ink'), 0)
    );
  }
}

.p_kj {
  right: -1px;
  .p_y4 {
    background: linear-gradient(
      to left,
      rgba(color('ink'), 0.15),
      rgba(color('ink'), 0.06),
      rgba(color('ink'), 0)
    );
  }
}

.p_fx {
  right: calc(#{$suffix-column-width} - 1px);
}

.p_y4 {
  display: flex;
  align-items: center;
  padding: spacing('loose');
  position: sticky;
  top: 0;
  bottom: 0;
  height: 100vh;
  max-height: 100%;
  z-index: 2;
  &:hover {
    cursor: pointer;
    @include state(press);
  }
}

.p_hx {
  width: rem(32px);
  height: rem(32px);
  filter: drop-shadow(0 1px rgba(color('black'), 0.5)) drop-shadow(0 0 4px rgba(color('black'), 0.25)) drop-shadow(0 0 16px black);
}

.p_ti {
  height: rem(6px);
  width: rem(6px);
  background: color('ink', 'lightest');
  border-radius: border-radius();

  &:not(:last-of-type) {
    margin-right: spacing(extra-tight);
  }
}

.p_ft {
  background: color('ink');
}

.p_wo {
  overflow-x: auto;
  // account for a mysterious gap in Safari when not collapsed
  margin-left: $prefix-column-width;
  -webkit-overflow-scrolling: touch;
}

.p_ap {
  margin-right: $suffix-column-width;
}

.p_eo {
  display: table;
  width: 100%;
  border-spacing: 0;

}

.p_j1,
.p_vs {
  display: table-header-group;
}

.p_fi {
  display: table-row-group;
}

.p_h5 {
  display: table-row;
}

.p_a4 {
  color: inherit;
  text-decoration: none;
  &:hover {
    .p_ca {
      @include state(base);
    }
    .p_an:hover ~ .p_ca {
      background: none;
    }
  }
  &:active {
    .p_ca {
      @include state(hover);
    }
    .p_an:hover ~ .p_ca {
      background: none;
    }
  }
}

.p_cj {
  border-bottom: 0;
}

.p_xf {
  display: table-cell;
  padding: spacing();
  border-top: border();
  white-space: nowrap;
  text-align: left;
  vertical-align: middle;
}

.p_ca {
  color: inherit;
  text-decoration: none;
}

.p_m7 {
  text-align: right;
}

.p_ys,
.p_an {
  display: flex;
  align-items: center;
  @include text-emphasis-normal;
  @include text-breakword;
  position: absolute;
  top: auto;
  white-space: unset;
  text-align: left;
  backface-visibility: hidden; // stops painting on scroll (due to positioning)
}

.p_ys {
  left: 0;
  width: $prefix-column-width;
}

.p_an {
  right: 0;
  width: $suffix-column-width;
  border-left: border();
}

.p_v4 {
  white-space: nowrap;
  overflow-x: hidden;
  text-overflow: ellipsis;
}

.p_zp {
  font-weight: 400;
  border-top: border();
}

.p_jt {
  display: flex;
  align-self: flex-end;
  opacity: 0;
  transition: opacity duration() easing(), fill duration() easing();
}

.p_mn {
  @include unstyled-button;
  color: inherit;
  position: relative;
  display: inline-flex;
  justify-content: flex-start;
  flex-direction: row-reverse;
  align-items: baseline;
  transition: color duration() easing();

  &:hover,
  &:focus {
    .p_jt {
      opacity: 1;
    }
  }
}

.p_j7 {
  justify-content: flex-end;
}

.p_tx {
  .p_mn {
    @include text-emphasis-strong;
  }
  .p_jt {
    opacity: 1;
  }
}

.p_za {
  @include text-emphasis-strong;
  background: color('sky', 'lighter');
  border-top: border();
}

.p_lf {
  @include text-emphasis-normal;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  border-bottom: 0;
  background: color('sky', 'light');
  color: color('ink', 'lighter');
  white-space: unset;
  text-align: center;
  backface-visibility: hidden; // stop painting on scroll (due to positioning)
}

@media (min-width: 1100px) {
  .p_p5 {
    position: relative;
    .p_tf {
      display: block;
    }
  }
}