/*
 |--------------------------------------------------------------------------
 | Helper mixins, feel free to add/remove any that you might not use
 | Won't be rendered in the output if not used
 |--------------------------------------------------------------------------
 */
.scroll__indicator {
  position: fixed;
  width: 3px;
  height: 100vh;
  top: 0;
  right: 0;
  z-index: 999999;
  transition: all .3s ease-in-out;
  opacity: 0; }
  @media (max-width: 768px) {
    .scroll__indicator {
      display: none; } }
  .scroll__indicator-visible {
    opacity: 1; }
  .scroll__indicator-progress {
    width: 100%;
    min-height: 10%;
    height: 0;
    background-color: var(--colorPrimary); }
