:root {
  --hype-official: #036eb8;
}

body {
  color: #333;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

a, a:hover {
  text-decoration: none;
}

.chat-embed {
  z-index: 3;
  width: 100%;
  max-height: 100vh;
  background-color: #fff;
  margin: 0;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.chatbox-bottom-overlay {
  z-index: 9;
  width: 100%;
  height: 33px;
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  background-color: var(--hype-official);
  color: #fff;
  text-align: center;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 13px;
  line-height: 1em;
  display: flex;
  position: fixed;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.load-overlay {
  z-index: 99;
  width: 100vw;
  height: 100vh;
  background-color: var(--hype-official);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.load-overlay.hidden {
  display: none;
}

.loading {
  width: 180px;
}

.white-link {
  color: #fff;
}

.app-icon {
  width: 56px;
  height: 56px;
  object-fit: contain;
  flex: none;
  margin-bottom: .25em;
}

.page-title-bold {
  letter-spacing: .0125em;
  padding-top: 6px;
  padding-bottom: 6px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.35em;
}

.page-title-bold.align-center-small {
  text-align: center;
  font-size: 18px;
}

.button-std {
  color: #fff;
  letter-spacing: .025em;
  cursor: pointer;
  background-color: #036eb8;
  border-radius: 6px;
  flex: none;
  padding: 16px 22px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
}

.flex-h-gap {
  width: 100%;
  grid-column-gap: 6px;
  grid-row-gap: 8px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding-top: 5px;
  padding-bottom: 5px;
  display: flex;
}

.flex-h-gap.hidden {
  display: none;
}

.full-page-center {
  width: 100vw;
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-left: 18px;
  padding-right: 18px;
  display: flex;
}

.spacer {
  width: 100%;
  height: 80px;
}

.spacer.medium {
  height: 30px;
}

.flex-v-center {
  width: 100%;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.button-area-flex {
  grid-column-gap: 16px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding-top: 16px;
  padding-bottom: 16px;
  display: flex;
}

.bottom-logo-link {
  z-index: 1;
  opacity: 1;
  color: #ccc;
  letter-spacing: 0;
  font-size: 11px;
  font-weight: 300;
  line-height: 1.5em;
  text-decoration: none;
  position: fixed;
  top: auto;
  bottom: 20px;
  left: 20px;
  right: auto;
}

.bottom-logo-link:hover {
  text-decoration: none;
}

.small-logo {
  height: 13px;
  max-height: 100%;
  max-width: 100%;
  margin-top: 6px;
  margin-bottom: 6px;
}

@media screen and (max-width: 767px) {
  .spacer.medium {
    height: 30px;
  }
}

@media screen and (max-width: 479px) {
  .full-page-center {
    line-height: 1.15em;
  }
}


