.hand-wave {
  font-size: 25px; /* Adjust the size as needed */
  display: inline-block;
  transform-origin: bottom center; /* Sets the pivot point for the rotation */
  animation: wave 1s infinite; /* Duration and repeat */
}

/* Define the keyframes for the waving animation */
@keyframes wave {
  0% { transform: rotate(0deg); }
  20% { transform: rotate(20deg); }
  40% { transform: rotate(-20deg); }
  60% { transform: rotate(15deg); }
  80% { transform: rotate(-15deg); }
  100% { transform: rotate(0deg); }
}

    /* Container for the loading bar */
    .loading-container {
      width: 100%;
      background-color: #e0e0e0;
      border-radius: 25px;
      overflow: hidden;
      height: 14px;
      margin: 20px auto;
      max-width: 700px;
    }

    /* The animated loading bar */
    .loading-bar {
      height: 100%;
      width: 0;
      background-color: #f0ad4e;
      animation: load 20s ease-in-out forwards;
    }

    /* Keyframes for the loading animation */
    @keyframes load {
      0% {
        width: 0;
      }
      100% {
        width: 100%;
      }
    }
/*
     FILE ARCHIVED ON 13:04:06 Mar 09, 2025 AND RETRIEVED FROM THE
     INTERNET ARCHIVE ON 07:49:30 Jan 02, 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.72
  exclusion.robots: 0.059
  exclusion.robots.policy: 0.046
  esindex: 0.011
  cdx.remote: 15.35
  LoadShardBlock: 55.511 (3)
  PetaboxLoader3.datanode: 109.486 (4)
  load_resource: 222.595
  PetaboxLoader3.resolve: 123.651
*/