body {
  margin: 0px;
  padding: 0px;
  font-family: sans-serif;
}

sqh-global-container {
  display: block;
  max-width: 500px;
  margin: 0 auto;
}
sqh-global-container * {
  box-sizing: border-box;
}
sqh-global-container > div {
  width: 100%;
  display: block;
  padding: 0 10px;
}
sqh-global-container .sqh-attribution {
  display: inherit;
  text-align: center;
  font-size: 10px;
  color: lightgray;
  text-decoration: none;
  padding-bottom: 10px;
}
sqh-global-container .container-loading {
  display: none;
  left: calc(50% - 50px);
  position: absolute;
  text-align: center;
  top: 45%;
  width: 100px;
}
sqh-global-container:not(.hydrated) .container-loading {
  display: block;
  visibility: visible;
}
sqh-global-container .loading-icon {
  height: 40px;
  text-align: center;
  font-size: 10px;
  position: absolute;
  left: 0;
  width: 100%;
  top: 45%;
  z-index: 1000;
}
sqh-global-container .loading-icon-tr .loading-icon {
  position: relative;
  top: 0;
}
sqh-global-container .loading-icon > div {
  height: 100%;
  margin: 1px;
  width: 6px;
  display: inline-block;
  -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
  animation: sk-stretchdelay 1.2s infinite ease-in-out;
}
sqh-global-container .loading-icon .bar2 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}
sqh-global-container .loading-icon .bar3 {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
sqh-global-container .loading-icon .bar4 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}
sqh-global-container .loading-icon .bar5 {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}

@-webkit-keyframes sk-stretchdelay {
  0%, 40%, 100% {
    -webkit-transform: scaleY(0.4);
  }
  20% {
    -webkit-transform: scaleY(1);
  }
}
@keyframes sk-stretchdelay {
  0%, 40%, 100% {
    transform: scaleY(0.4);
    -webkit-transform: scaleY(0.4);
  }
  20% {
    transform: scaleY(1);
    -webkit-transform: scaleY(1);
  }
}