.tiled-plot {
  position: relative;
  flex: 1;
  overflow: hidden;
}

.horizontalList {
  display: flex;
  width: 600px;
  height: 300px;
  white-space: nowrap;
}

.list {
  width: 400px;
  height: 600px;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
}

.stylizedList {
  position: relative;
  z-index: 0;
  background-color: #f3f3f3;
  outline: none;
}

.stylizedItem {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  background-color: transparent;
  user-select: none;

  color: #333;
  font-weight: 400;
}

.stylizedHelper {
  box-shadow: 0 5px 5px -5px rgba(0, 0, 0, 0.2),
    0 -5px 5px -5px rgba(0, 0, 0, 0.2);
  background-color: rgba(255, 255, 255, 0.8);
  cursor: row-resize;

  &.horizontalItem {
    cursor: col-resize;
  }
}

.horizontalItem {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
}

.resizable-track {
  width: 100%;
  height: 100%;
}

path.domain {
  stroke-width: 0px;
}

.tiled-plot-track-overlay-plain {
  background: transparent;
  z-index: 1;
}

.tiled-plot-track-overlay-animate {
  background: yellow;
  opacity: 0.3;
  outline: 2px solid rgba(255, 0, 0, 0.8);
  z-index: 1;
  animation: appear 1s;
}

.tiled-plot-track-overlay-selected {
  border: 5px solid black;
  background: yellow;
  opacity: 0.4;
  z-index: 1;
}