.borderContainer {
  --animated-tab-border-radius: 4;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  max-height: 38px;
  pointer-events: none;
  overflow: visible;
}

.borderContainer svg {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 38px;
  overflow: visible;
}

.borderContainer rect {
  fill: none;
  stroke: #af9fdd;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 2.5 6;
  animation: moveDots 0.6s linear infinite;
  rx: var(--animated-tab-border-radius);
  ry: var(--animated-tab-border-radius);
}

@keyframes moveDots {
  to {
    stroke-dashoffset: -8.5;
  }
}

#topnav-container-mobile .header-page-menu .apps-border-wrap .borderContainer, .mobile-sidepanel-open .borderContainer {
  left: 0;
  right: auto;
  width: 100%;
  min-width: 77px;
  height: 38px;
}
