body {
  margin: 0;
}

#app {
  min-height: 100vh;
}

.forum-h1-title{
  display: none;
}

/* width */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: rgba(200, 200, 200, 0.8);
  border-radius: 5px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: rgb(200, 200, 200);
}

#loading-bg {
  width: 100%;
  height: 100%;
  background: #fff;
  display: block;
  position: absolute;
}

.forum-h1-title{
  display: none;
}

.loading-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.loading-logo img{
  /* position: fixed;
  left: 50%;
  transform: translate(-50%,-50%); */
  max-width: 100%;
  height: auto;
}
.support {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 125px;
}
.support span{
  font-size: 25px;
  font-weight: 700;
  color: #000;
  animation-name: float;
  animation-duration: .4s;
}
.support img{
  max-width: 200px;
  animation-name: float;
  animation-duration: .4s;
  animation-delay: .2s;
}
.support span:nth-child(2){
  animation-delay: .05s;
}
.support span:nth-child(3){
  animation-delay: .1s;
}
.support span:nth-child(4){
  animation-delay: .15s;
}
.support span:nth-child(6){
  animation-delay: .25s;
}
.support span:nth-child(7){
  animation-delay: .3s;
}
@keyframes float {
  0%{ transform: translateY(0)}
  50%{ transform: translateY(-10px)}
  100%{ transform: translateY(0)}
}

.loading {
  position: absolute;
  left: calc(50% - 20px);
  top: 50%;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 3px solid transparent;
}
.loading .effect-1,
.loading .effect-2 {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 3px solid transparent;
  border-left: 3px solid rgb(249, 170, 97); /* border-left: 3px solid rgba(121, 97, 249, 1); */
  border-radius: 50%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.loading .effect-1 {
  animation: rotate 1s ease infinite;
}
.loading .effect-2 {
  animation: rotateOpacity 1s ease infinite 0.1s;
}
.loading .effect-3 {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 3px solid transparent;
  border-left: 3px solid rgb(249, 170, 97);
  -webkit-animation: rotateOpacity 1s ease infinite 0.2s;
  animation: rotateOpacity 1s ease infinite 0.2s;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.loading .effects {
  transition: all 0.3s ease;
}

@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}
@keyframes rotateOpacity {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    opacity: 0.1;
  }
  100% {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
    opacity: 1;
  }
}

.permanent-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  background-color: #363b3d;
  padding: 12px;
}
.footer-bgcolor-title {
  color: #babfc7;
  font-size: 12px;
  letter-spacing: 1.2px;
}
