/*html {*/
/*  background-color: #333;*/
/*}*/
/*h1 {*/
/*  font-family: Marvel;*/
/*  font-size: 50pt;*/
/*  color: #fff;*/
/*  margin-top: 40px;*/
/*  margin-bottom: 60px;*/
/*  text-align: center;*/
/*}*/
.loader {
  position: relative;
  width: 50px;
  height: 50px;
  margin: 10px;
}
.loader-container {
  display: inline-block;
  height: 150px;
  width: 200px;
}
.container-of-loaders {
  width: 800px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 810px) {
  .container-of-loaders {
    width: 600px;
  }
  .no-7 {
    margin-left: 100px;
  }
}
@media screen and (max-width: 623px) {
  .container-of-loaders {
    width: 400px;
  }
  .no-7 {
    margin-left: 0px;
  }
}
@media screen and (max-width: 423px) {
  .container-of-loaders {
    width: 200px;
  }
}

.one {
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  animation: loader1Animation 1s ease-in-out infinite;
  margin-left: auto;
  margin-right: auto;
  margin-top: 50px;
}
.one:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 19px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #333;
}
@keyframes loader1Animation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.my-two {
  border-radius: 50%;
  border: solid transparent 5px;
  border-top: solid #fff 5px;
  border-left: solid #fff 5px;
  animation: loader2Animation 1s linear infinite;
  margin-left: auto;
  margin-right: auto;
  margin-top: 45px;
}
@keyframes loader2Animation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.my-three {
  height: 100px;
  width: 100px;
  border-radius: 50%;
  border: solid transparent 10px;
  border-top: solid #fff 10px;
  border-left: solid #fff 10px;
  animation: loader3Animation 2s linear infinite;
  margin-left: auto;
  margin-right: auto;
  margin-top: 15px;
}
.my-three:before {
  position: absolute;
  top: 20px;
  left: 20px;
  content: "";
  width: 40px;
  height: 40px;
  border: solid transparent 10px;
  border-top: solid #fff 10px;
  border-left: solid #fff 10px;
  border-radius: 50%;
  animation: loader3AnimationBefore 1.5s linear infinite;
}
.my-three:after {
  position: absolute;
  top: 5px;
  left: 5px;
  content: "";
  width: 70px;
  height: 70px;
  border: solid transparent 10px;
  border-top: solid #fff 10px;
  border-left: solid #fff 10px;
  border-radius: 50%;
  animation: loader3AnimationAfter 1.5s linear infinite;
}
@keyframes loader3Animation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes loader3AnimationBefore {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes loader3AnimationAfter {
  0% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}

.four {
  margin-top: 70px;
  width: 10px;
  height: 10px;
  background-color: #fff;
  border-radius: 50%;
  animation: loader4Animation 1s linear infinite;
  margin-left: 80px;
}
@keyframes loader4Animation {
  0% {
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 15px 0px 0px 0px rgba(255, 255, 255, 0.67),
      30px 0px 0px 0px rgba(255, 255, 255, 0.33);
  }
  17% {
    background-color: rgba(255, 255, 255, 0.67);
    box-shadow: 15px 0px 0px 0px rgba(255, 255, 255, 1),
      30px 0px 0px 0px rgba(255, 255, 255, 0.67);
  }
  33% {
    background-color: rgba(255, 255, 255, 0.33);
    box-shadow: 15px 0px 0px 0px rgba(255, 255, 255, 0.67),
      30px 0px 0px 0px rgba(255, 255, 255, 1);
  }
  50% {
    background-color: rgba(255, 255, 255, 0);
    box-shadow: 15px 0px 0px 0px rgba(255, 255, 255, 0.33),
      30px 0px 0px 0px rgba(255, 255, 255, 0.67);
  }
  67% {
    background-color: rgba(255, 255, 255, 0.33);
    box-shadow: 15px 0px 0px 0px rgba(255, 255, 255, 0),
      30px 0px 0px 0px rgba(255, 255, 255, 0.33);
  }
  83% {
    background-color: rgba(255, 255, 255, 0.67);
    box-shadow: 15px 0px 0px 0px rgba(255, 255, 255, 0.33),
      30px 0px 0px 0px rgba(255, 255, 255, 0);
  }
  100% {
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 15px 0px 0px 0px rgba(255, 255, 255, 0.67),
      30px 0px 0px 0px rgba(255, 255, 255, 0.33);
  }
}

.five {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: solid #fff 4px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 23px;
}
.five:before {
  content: "";
  height: 42px;
  width: 4px;
  position: absolute;
  left: 48px;
  top: 10px;
  background: #fff;
  border-radius: 2px;
  transform-origin: 2px 40px;
  animation: loader5Animation 2s linear infinite;
}
.five:after {
  content: "";
  height: 27px;
  width: 4px;
  position: absolute;
  left: 48px;
  top: 25px;
  background: #fff;
  border-radius: 2px;
  transform-origin: 2px 25px;
  animation: loader5Animation 12s linear infinite;
}
@keyframes loader5Animation {
  0% {
    tranform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.six {
  height: 100px;
  width: 100px;
  border-radius: 50%;
  animation: loader6Animation 1s linear infinite;
  margin-left: auto;
  margin-right: auto;
  margin-top: 25px;
}
.six:before {
  content: "";
  height: 15px;
  width: 15px;
  background-color: rgba(255, 255, 255, 1);
  position: absolute;
  top: 0px;
  left: 42px;
  border-radius: 50%;
}
.six:after {
  content: "";
  height: 15px;
  width: 15px;
  background-color: rgba(255, 255, 255, 0.75);
  position: absolute;
  top: 5px;
  left: 22px;
  border-radius: 50%;
}
.six span:before {
  content: "";
  position: absolute;
  top: 19px;
  left: 7px;
  width: 15px;
  height: 15px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
}
.six span:after {
  content: "";
  position: absolute;
  top: 38px;
  left: 0px;
  width: 15px;
  height: 15px;
  background-color: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
}
@keyframes loader6Animation {
  0% {
    tranform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.seven {
  border: solid #fff 2px;
  width: 150px;
  height: 20px;
  border-radius: 7px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 70px;
}
.seven:before {
  content: "";
  position: absolute;
  width: 146px;
  height: 16px;
  top: 2px;
  left: 2px;
  background-color: #fff;
  border-radius: 4px;
  animation: loader7AnimationBefore 2s linear infinite;
}
.seven:after {
  content: "Loading...";
  position: absolute;
  width: 150px;
  color: #fff;
  top: -28px;
  font-family: Marvel;
  font-size: 14pt;
  text-align: center;
  animation: loader7AnimationAfter 2s linear infinite;
}
@keyframes loader7AnimationBefore {
  0% {
    width: 0%;
  }
  15% {
    width: 0%;
  }
  85% {
    width: 146px;
  }
  100% {
    width: 146px;
  }
}
@keyframes loader7AnimationAfter {
  0% {
    content: "Loading";
  }
  25% {
    content: "Loading.";
  }
  50% {
    content: "Loading..";
  }
  75% {
    content: "Loading...";
  }
  100% {
    content: "Loading...";
  }
}

.eight {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  animation: loader8Animation 1.5s linear infinite;
  margin-top: 25px;
  margin-left: auto;
  margin-right: auto;
}
.eight:before {
  width: 20px;
  height: 20px;
  content: "";
  position: absolute;
  background-color: transparent;
  top: 40px;
  left: 40px;
  border-radius: 50%;
  box-shadow: 0px -50px 0px 0px rgba(255, 255, 255, 1),
    -36px -36px 0px -1px rgba(255, 255, 255, 0.875),
    -50px 0px 0px -2px rgba(255, 255, 255, 0.75),
    -36px 36px 0px -3px rgba(255, 255, 255, 0.625),
    0px 50px 0px -4px rgba(255, 255, 255, 0.5),
    36px 36px 0px -5px rgba(255, 255, 255, 0.375),
    50px 0px 0px -6px rgba(255, 255, 255, 0.25),
    36px -36px 0px -7px rgba(255, 255, 255, 0.125);
}
@keyframes loader8Animation {
  0% {
    tranform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}


/*#footer {*/
/*  position: relative;*/
/*  top: 4px;*/
/*  padding-bottom: 0px;*/
/*  text-align: center;*/
/*  font-family: Marvel;*/
/*  font-size: 13pt;*/
/*  color: #f1f1f1;*/
/*  line-height: 1;*/
/*  width: 99%;*/
/*}*/
/*a {*/
/*  color: red;*/
/*  text-decoration: none;*/
/*  background: #f1f1f1;*/
/*  padding-left: 5px;*/
/*  padding-right: 5px;*/
/*  border-radius: 15px;*/
/*  transition: all 0.3s linear;*/
/*}*/
/*a:hover {*/
/*  color: #f1f1f1;*/
/*  background-color: red*/
/*}*/