html,
body,
main {
  font-size: 16px;
  height: 100%;
  width: 100%;
  font-family: 'HCo Gotham SSm' !important;
  color: #fff;
}

html,
body,
main,
#auth,
#content {
  background-color: #25262c;
}

main {
  display: flex !important;
}

body {
  overflow-y: hidden;
  overflow-x: auto;
}
#auth {
  overflow: hidden;
}
#content {
  width: 100%;
  overflow-y: auto;
}
#content::-webkit-scrollbar,
body::-webkit-scrollbar {
  width: 0.4rem;
  height: 0.4rem;
  background: transparent;
}
#content::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb {
  border-radius: 0.5rem;
  background-color: #7b7b7b;
}

.HaiSidebarContainer {
  z-index: 2001 !important;
}

#single-spa-loading-spinner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.HaiRadioButton {
  position: relative;
}

.flip-logo {
  width: 100px;
  height: 100px;
  -moz-animation: flip-logo-animation 3s infinite ease-in-out;
  -webkit-animation: flip-logo-animation 3s infinite ease-in-out;
  animation: flip-logo-animation 3s infinite ease-in-out;
}

@keyframes flip-logo-animation {
  0% {
    transform: perspective(120px) rotateY(0deg);
    -webkit-transform: perspective(120px) rotateY(0deg);
  }

  100% {
    transform: rotateY(-360deg);
    -webkit-transform: perspective(120px) rotateY(-360deg);
  }
}
