body {
  height: auto;
  overflow-x: hidden;
  overflow-y: auto;
  width: 100%;
  margin: 0;
  padding:0;
}
#preload {
  position: fixed;
  display: block;
  background-color: rgba(150, 150, 150, 0.9);
  z-index: 990;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
#shell {
  z-index: 994;
  height: 2px;
  position: absolute;
  top: calc(50% - 1px);
  left:10%;
  right: 10%;
  background-color: rgb(221, 221, 221)
}
#progress {
  z-index: 995;
  height: 5px;
  background-color: rgb(34, 85, 187);
  position: absolute;
  width: 0; /* will be increased by JS */
  top: calc(50% - 2.5px);
  left:10%;
  transition: ease;
}

#progstat {
  z-index: 995;
  font-size: 1em;
  letter-spacing: 3px;
  position: absolute;
  top: 50%;
  margin-top: -40px;
  width: 100%;
  text-align: center;
  color: #000000;
}
.out {
  transition: 1s 0.4s;
}

/* Loadloop */
#loadingloop{
  display: none;
  position: absolute;
  top: calc(50% - 16px);
  left: calc(50% - 16px);
  margin: 0px;
  padding:0px;
  border: 6px solid #f3f3f3;
  border-radius: 50%;
  border-top: 6px solid #3498db;
  width: 20px;
  height: 20px;
  -webkit-animation: spin 2s linear infinite; /* Safari */
  animation: spin 2s linear infinite;
  z-index: 9999;
}

/* Safari */
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}
/* Safari ~ END */

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
/* Loadloop ~ END */

div.chunk {
  /* display: block; */
  width: 100%;
  display: inline-block;
  margin:0;
  padding:0;
}
