/* LANDWANG UI CLICK RESPONSE BOOST V1 */
html.ui-boost-busy::before{
  content:"";
  position:fixed;
  z-index:2147483647;
  top:0;
  left:0;
  height:3px;
  width:32%;
  background:currentColor;
  opacity:.72;
  pointer-events:none;
  transform:translateX(-110%);
  animation:uiBoostBar 1s ease-in-out infinite;
}
@keyframes uiBoostBar{
  0%{transform:translateX(-110%) scaleX(.7)}
  50%{transform:translateX(160%) scaleX(1.25)}
  100%{transform:translateX(340%) scaleX(.75)}
}

a,button,input[type="button"],input[type="submit"],[role="button"],.btn{
  -webkit-tap-highlight-color:transparent;
  touch-action:manipulation;
}

[data-ui-boost-pressed="1"]{
  transform:scale(.985);
  opacity:.88;
  transition:transform 70ms ease,opacity 70ms ease !important;
}

[data-ui-boost-submitting="1"]{
  cursor:progress !important;
}

@media (prefers-reduced-motion:reduce){
  html.ui-boost-busy::before{animation:none;width:100%;transform:none}
  [data-ui-boost-pressed="1"]{transform:none}
}
