/*---------------------------------------------------------------------------------------------
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
* See LICENSE.md in the project root for license terms and full copyright notice.
*--------------------------------------------------------------------------------------------*/
@import "~@bentley/ui-core/lib/ui-core/style/themecolors";

.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: $buic-background-5;
  }

  .scrubberHandle {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
    width: 12px;
    height: 12px;
    cursor: pointer;
    border: none;
    border-radius: 50%;
    background: $buic-foreground-primary;
  }
}
