.loading {
    display: block;
    position: relative;
    width: 6px;
    height: 10px;
  
    animation: rectangle infinite 1s ease-in-out -0.2s;
  
    background-color: #000;
  }
  
  .loading:before,
  .loading:after {
    position: absolute;
    width: 6px;
    height: 10px;
    content: "";
    background-color: #000;
  }
  
  .loading:before {
    left: -14px;
  
    animation: rectangle infinite 1s ease-in-out -0.4s;
  }
  
  .loading:after {
    right: -14px;
  
    animation: rectangle infinite 1s ease-in-out;
  }
  
  @keyframes rectangle {
    0%,
    80%,
    100% {
      height: 20px;
      box-shadow: 0 0 #000;
    }
  
    40% {
      height: 30px;
      box-shadow: 0 -20px #000;
    }
  }
/*
     FILE ARCHIVED ON 09:22:33 Jan 03, 2023 AND RETRIEVED FROM THE
     INTERNET ARCHIVE ON 11:40:14 May 14, 2026.
     JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.

     ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
     SECTION 108(a)(3)).
*/
/*
playback timings (ms):
  captures_list: 0.437
  exclusion.robots: 0.034
  exclusion.robots.policy: 0.025
  esindex: 0.01
  cdx.remote: 21.66
  LoadShardBlock: 103.022 (3)
  PetaboxLoader3.resolve: 231.943 (4)
  PetaboxLoader3.datanode: 167.301 (7)
  load_resource: 311.072 (2)
  loaddict: 43.412 (2)
*/
/* auto-hide loader */
.loading { animation: hideLoader 0.5s 1.5s forwards; }
@keyframes hideLoader { to { display: none; opacity: 0; pointer-events: none; } }
