.phoenix-scroll {
  position: relative;
  overflow: hidden;
}

.phoenix-scroll-inner {
  position: relative;
  z-index: 10;
  top: 0;
  left: 0;
  overflow: hidden;
}

.phoenix-scroll-iframe {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
}

.phoenix-scroll-dragging {
  user-select: none;
}

.phoenix-scroll-bar {
  position: absolute;
  z-index: 90;
  border: 1px solid transparent;
  background: #fafafa;
}

.phoenix-scroll-bar:hover .phoenix-scroll-handle,
.phoenix-scroll-bar.phoenix-scroll-dragging .phoenix-scroll-handle {
  background: rgba(127, 127, 127, 0.9);
}

.phoenix-scroll-bar .phoenix-scroll-handle {
  position: absolute;
  z-index: 999999999999999;
  display: none;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 6px;
  cursor: default;
}

.phoenix-scroll-bar .phoenix-scroll-handle:focus {
  background: rgba(127, 127, 127, 0.9);
}

.phoenix-scroll-bar.phoenix-scroll-y {
  top: 0;
  right: 0;
  bottom: 0;
  width: 10px;
  border-width: 0 1px;
  background-color: transparent;
}

.phoenix-scroll-bar.phoenix-scroll-y .phoenix-scroll-handle {
  left: 2px;
  width: 6px;
}

.phoenix-scroll-bar.phoenix-scroll-y.phoenix-scroll-padding-y:after {
  position: absolute;
  z-index: 99999;
  top: 100%;
  left: -1px;
  width: 6px;
  height: 6px;
  background: #fafafa;
  content: ' ';
}

.phoenix-scroll-bar.phoenix-scroll-x {
  right: 0;
  bottom: 0px;
  left: 0;
  height: 10px;
  border-width: 1px 0;
  background: transparent;
}

.phoenix-scroll-bar.phoenix-scroll-x .phoenix-scroll-handle {
  top: 3px;
  height: 6px;
}

.phoenix-scroll-bar.phoenix-scroll-show .phoenix-scroll-handle {
  display: block;
}

.phoenix-scroll-show-x {
  padding-bottom: 8px;
}

.phoenix-scroll-show-x .phoenix-scroll-y {
  bottom: 0px;
}

.phoenix-scroll-show-y {
  padding-right: 10;
}

.phoenix-scroll-show-y .phoenix-scroll-x {
  right: 0px;
}

.phoenix-scroll-show-x .phoenix-scroll-inner {
  right: 8px;
}

.phoenix-scroll-show-y .phoenix-scroll-inner {
  bottom: 8px;
}
