.app-anchor {
  position: absolute;
  top: 4px;
  right: 4px;
  max-width: 200px;
  z-index: 99;
  border-radius: 4px;
  padding: 10px 10px 10px 20px;
  background: rgb(227, 237, 250);

  .app-anchor__line {
    width: 2px;
    position: absolute;
    height: calc(100% - 20px);
    left: 10px;
    background: #fff;
  }

  .app-anchor__points {
    padding: 2px 0px;
    cursor: pointer;
    color: #b4bcca;

    &.active {
      color: #2196f3;
      position: relative;

      .points-dot {
        position: absolute;
        display: inline-block;
        top: 0px;
        left: -10px;
        width: 2px;
        height: 25px;
        background-color: #2196f3;
      }
    }
  }
}
.app-anchor {
  .app-anchor--active {
    color: @primary-color;

    .points__dot {
      background-color: @primary-color;
    }
  }
}
