

body {
  position: absolute;
  align-items: center;
  overflow: hidden;
  background-color: #000000;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 101%;

}

#loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.loadMain {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

@media (max-width: 950px) {
  .logo {
    width: 90vw;
    height: 90vh;
  }
}

.logo {
  width: 50vw;
  height: 50vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.progress {
  display: inline-block;
  width: 55vw;
  height: 10px;
  margin: 35px;
  border-radius: 20px;
  border: 2px solid;
  border-color: #1f1c1f;
}

.bar {
  border-radius: 20px;
  width: 0%;
  height: 100%;
  transition: width;
  transition-duration: 1s;
  transition-timing-function: cubic-bezier(.36,.55,.63,.48);
}
.shadow {
  box-shadow: 0px 45px 50px rgba(0, 0, 0, 0.25);
}
.loader {
  background-color: #323232;
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.fadeOut {
  animation: fadeOut 2s;
}

@keyframes fadeOutRemove {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    display: none;
  }
}

.fadeOutRemove {
  animation: fadeOut 1s;
}
.popupS-layer{
  -webkit-box-shadow: 0 0 20px rgba(0,0,0,.25);
  -moz-box-shadow: 0 0 20px rgba(0,0,0,.25);
  box-shadow: 0 0 20px rgba(0,0,0,.25);
  position: relative;
  border-radius:6px;
  background-color: #FFF;
  margin:20px;
  z-index:1000;

}
.popupS-resetFocus {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.popupS-close{
  position: absolute;
  top: 0;
  right: 0;
  line-height: 40px;
  font-size: 32px;
  text-align: center;
  font-weight: 700;
  width: 32px;
  height: 40px;
  cursor: pointer;
  z-index:1020;
}
.popupS-title{
  position: absolute;
  width: 100%;
  line-height: 40px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0 auto;
  z-index:1001;
}
.popupS-title + .popupS-content{
  padding-bottom:20px;
}
.popupS-content{
  max-width:700px;
  padding:40px;
  border-radius:6px;
}
.popupS-content img{
  max-width:100%;
  height:auto;
}
.popupS-layer .btn{
  float:right;
}

/*
 * Default Animation
 * very Important
 */

.popupS-layer{
  -webkit-transition: opacity .3s;
  -o-transition: opacity .3s;
  transition: opacity .3s;
  opacity: 0;
}
.popupS-overlay{
  -webkit-transition: opacity .3s ease;
  -o-transition: opacity .3s ease;
  transition: opacity .3s ease;
  background:rgb(0,0,0);
  opacity: 0;
}
.popupS-layer.popupS-open{
  opacity: 1;
}
.popupS-open>.popupS-overlay{
  opacity:.6;
}

/* Loader */

@-moz-keyframes spinner {
  to {-moz-transform: rotate(360deg);
    transform: rotate(360deg);}
}
@-o-keyframes spinner {
  to {-o-transform: rotate(360deg);
    transform: rotate(360deg);}
}
@-webkit-keyframes spinner {
  to {-webkit-transform: rotate(360deg);}
}
@keyframes spinner {
  to {transform: rotate(360deg);}
}
@-moz-keyframes pulsate {
  0% {
    -moz-transform:scale(.1);
    transform:scale(.1);
    opacity: 0.0;
  }
  50% {
    opacity:1;
  }
  100% {
    -moz-transform:scale(1.2);
    transform:scale(1.2);
    opacity:0;
  }
}
@-o-keyframes pulsate {
  0% {
    -o-transform:scale(.1);
    transform:scale(.1);
    opacity: 0.0;
  }
  50% {
    opacity:1;
  }
  100% {
    -o-transform:scale(1.2);
    transform:scale(1.2);
    opacity:0;
  }
}
@-webkit-keyframes pulsate {
  0% {
    transform:scale(.1);
    opacity: 0.0;
  }
  50% {
    opacity:1;
  }
  100% {
    transform:scale(1.2);
    opacity:0;
  }
}
@keyframes pulsate {
  0% {
    transform:scale(.1);
    opacity: 0.0;
  }
  50% {
    opacity:1;
  }
  100% {
    transform:scale(1.2);
    opacity:0;
  }
}
.popupS-loading{
  width: 30px;
  height: 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -15px;
  margin-left: -15px;
  border-radius: 30px;
}
.popupS-loading.pulser{
  border: 3px solid #1caff6;
  opacity: 0;
  -moz-animation: pulsate 1s ease-out infinite;
  -o-animation: pulsate 1s ease-out infinite;
  -webkit-animation: pulsate 1s ease-out infinite;
  animation: pulsate 1s ease-out infinite;
}
.popupS-loading.spinner{
  border-top: 3px solid #1caff6;
  border-right: 3px solid transparent;
  -moz-animation: spinner .6s linear infinite;
  -o-animation: spinner .6s linear infinite;
  -webkit-animation: spinner .6s linear infinite;
  animation: spinner .6s linear infinite;
}

.popupS-buttons{
  text-align: center;
  padding-top: 10%;
}
.popupS-content {
  background: aliceblue;
}

div#stats {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 500;
  width: max(100px, 5vw, 5vh);
  height: max(50px, 3vh, 3vw);
  opacity: 0.8;
  user-select: none;
}

.dg.a  {
  height: fit-content;
}

#geoIP {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background: #c80626;
}

#greyLogo{
  width: 80vw;
  height: 60vh;
}
