
html {
  /* 1 */
  font-family: "Segoe UI", Helvetica, Arial, Sans-Serif;
  font-size: 10px;
  font-weight: normal;
  line-height: 1.5;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 3 */
  background: #1e1e1e;
  /* background: #ffffff; */
  color: #666;
}

/*
* Remove the margin in all browsers.
*/
body {
  margin: 0;
}

/* Loader */
.loader {
  z-index: 999; /* Sit on top */
  position: fixed; /* Stay in place */
  display: block; /* Hidden by default */
  /* padding-top: 20%; */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  text-align: left;
}
/*Loader Overlay */
.loader-overlay {
  position: fixed; /* Stay in place */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  background: #eee;
  opacity: .8;
  filter: Alpha(Opacity=80);
}
/*Loader Spin */
.loader-spin {
  display: block;
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 1000;
  width: 24rem;
  height: 24rem;
  margin: -12rem 0 0 -12rem;
  border: 1.2rem solid #333;
  border-radius: 50%;
  border-top: 1.2rem solid #eee;
  border-bottom: 1.2rem solid #eee;
  -webkit-animation: spin 2.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
  animation: spin 2.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
}
/* Safari */
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  /* 30% { -webkit-transform: rotate(60deg); } */
  100% { -webkit-transform: rotate(360deg); }
}
  @keyframes spin {
  0% { transform: rotate(0deg); }
  /* 30% { transform: rotate(60deg); } */
  100% { transform: rotate(360deg); }
}
.loader-text {
  display: block;
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 1000;
  margin: -1.8rem 0 0 -8rem;
  font-size: 3.2rem;
  -webkit-animation: spin-text 3s linear infinite;
  animation: spin-text 3s linear infinite;
}
/* Safari */
@-webkit-keyframes spin-text {
  0% { color: #000; }
  50% { color: #fff; }
  100% { color: #000; }
}
@keyframes spin-text {
  0% { color: #000; }
  50% { color: #fff; }
  100% { color: #000; }
}
