/*---------------------------------------------------------------------------------------------
 * Copyright (c) Bentley Systems, Incorporated. All rights reserved.
 * See LICENSE.md in the project root for license terms and full copyright notice.
 *--------------------------------------------------------------------------------------------*/
.speed-timeline {
  position: relative;
  height: 25px;

  .railOuter {
    position: absolute;
    width: 100%;
    height: 100%;
    cursor: pointer;
  }

  .railInner {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 2px;
    pointer-events: none;
    background: var(--iui-color-background-disabled);
  }

  .scrubberHandle {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
    width: 12px;
    height: 12px;
    cursor: pointer;
    border: none;
    border-radius: 50%;
    background: var(--iui-color-icon-accent);
  }
}
