.read-progress--global {
  position: fixed;
  /* overlay global */
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  height: 50vh;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 9999;
  pointer-events: none;
  /* ne bloque pas les clics */
  opacity: 1;
  /* atténuée hors article */
  transition: opacity .2s;

  @media (max-width: 992px) {
    top: 72%;
  }
}

.read-progress--global.is-active {
  opacity: 1;
}

/* article en vue */

.read-progress .rp-label {
  writing-mode: vertical-rl;
  transform: rotate(0deg);
  font-size: 10px;
  letter-spacing: .1em;
  opacity: .8;
  user-select: none;
  color: var(--blue) !important;
  text-transform: uppercase !important;
}

#read-progress {
  position: relative;
  width: 8px;
  height: 100%;
  background: rgb(255, 255, 255);
  border-radius: 999px;
  overflow: hidden;
  padding: 8px;
  -webkit-box-shadow: 0 0 3px 5px rgba(28, 140, 204, 0.1);
  box-shadow: 0 0 3px 5px rgba(28, 140, 204, 0.1);
}

#read-progress .rp-fill {
  position: absolute;
  top: 8px;
  left: 5px;
  width: 6px;
  height: 0;
  background: linear-gradient(180deg, #4da3ff, rgb(28, 140, 204));
  transition: height .1s linear;
  border-radius: 50px;
  z-index: 2;
  max-height: calc(100% - 16px);
}

#read-progress .rp-fill-2 {
  position: absolute;
  top: 8px;
  left: 5px;
  width: 6px;
  height: calc(100% - 16px);
  z-index: 1;
  background: #888;
  transition: height .1s linear;
  border-radius: 50px;
}

@media (max-width: 992px) {
  .read-progress--global {
    right: 10px;
    height: 25vh;
  }

  .read-progress .rp-label {
    font-size: 11px;
  }
}