@charset "utf-8";

.loadingBar {
	display:none
}
.loadingContainer {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  height: 100%;
  margin: 0 auto;
  position: fixed; width:100%; top:0%; left:0%;
  z-index: 100000;
  background-color: rgba(0,0,0,0.5);
}
.loadingContainer .type1 {
  min-width: 33%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.loadingContainer .type1 * {
  position: absolute;
  border-radius: 50%;
}
.loadingContainer .type1 .ring1 {
  width: 80px;
  height: 80px;
  border: solid 3px #fc7753;
  transform: rotate(45deg);
  -webkit-clip-path: polygon(50% 50%, 80% 0, 110% 0, 110% 110%, 0 110%, 0 0, 20% 0);
  clip-path: polygon(50% 50%, 80% 0, 110% 0, 110% 110%, 0 110%, 0 0, 20% 0);
  animation: rotate1 2s 0s linear infinite;
}
@keyframes rotate1 {
  to {
    transform: rotate(405deg);
  }
}
.loadingContainer .type1 .ring2 {
  width: 56px;
  height: 56px;
  border: solid 3px #4ecdc4;
  -webkit-clip-path: polygon(50% 50%, 100% 0, 110% 0, 110% 110%, 0 110%, 0 0, 0% 0);
  clip-path: polygon(50% 50%, 100% 0, 110% 0, 110% 110%, 0 110%, 0 0, 0% 0);
  transform: rotate(15deg);
  animation: rotate2 1.5s 0s linear infinite;
}
@keyframes rotate2 {
  to {
    transform: rotate(375deg);
  }
}
.loadingContainer .type1 .ring3 {
  width: 32px;
  height: 32px;
  border: solid 3px #312d45;
  -webkit-clip-path: polygon(50% 50%, 150% 0, 110% 0, 110% 110%, 0 110%, 0 0, -50% 0);
  clip-path: polygon(50% 50%, 150% 0, 110% 0, 110% 110%, 0 110%, 0 0, -50% 0);
  transform: rotate(-45deg);
  animation: rotate3 1s 0s linear infinite;
}
@keyframes rotate3 {
  to {
    transform: rotate(315deg);
  }
}
.loadingContainer .type1 .ring4 {
  width: 12px;
  height: 12px;
  border: solid 3px #e84855;
  -webkit-clip-path: polygon(50% 50%, 130% 0, 110% 0, 110% 110%, 0 110%, 0 0, -30% 0);
  clip-path: polygon(50% 50%, 130% 0, 110% 0, 110% 110%, 0 110%, 0 0, -30% 0);
  transform: rotate(180deg);
  animation: rotate4 2s 0s linear infinite;
}
@keyframes rotate4 {
  to {
    transform: rotate(540deg);
  }
}
.loadingContainer .type2 {
  min-width: 33%;
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.loadingContainer .type2 * {
  position: absolute;
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.loadingContainer .type2 .dot1 {
  transform: rotate(-30deg);
  animation: rotatedot1 1.4s 0.6s ease-in-out infinite;
}
@keyframes rotatedot1 {
  to {
    transform: rotate(330deg);
  }
}
.loadingContainer .type2 .dot1:after {
  content: "";
  position: absolute;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background-color: #fc7753;
  top: 0;
}
.loadingContainer .type2 .dot2 {
  transform: rotate(-8deg);
  animation: rotatedot2 1.6s 0.4s ease-in-out infinite;
}
@keyframes rotatedot2 {
  to {
    transform: rotate(352deg);
  }
}
.loadingContainer .type2 .dot2:after {
  content: "";
  position: absolute;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background-color: #312d45;
  top: 0;
}
.loadingContainer .type2 .dot3 {
  transform: rotate(14deg);
  animation: rotatedot3 1.8s 0.2s ease-in-out infinite;
}
@keyframes rotatedot3 {
  to {
    transform: rotate(374deg);
  }
}
.loadingContainer .type2 .dot3:after {
  content: "";
  position: absolute;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background-color: #e84855;
  top: 0;
}
.loadingContainer .type2 .dot4 {
  transform: rotate(36deg);
  animation: rotatedot4 2s 0s ease-in-out infinite;
}
@keyframes rotatedot4 {
  to {
    transform: rotate(396deg);
  }
}
.loadingContainer .type2 .dot4:after {
  content: "";
  position: absolute;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background-color: #4ecdc4;
  top: 0;
}
.loadingContainer .type3 {
  min-width: 33%;
  width: 80px;
  height: 80px;
  animation: rotatefan 2s 0s cubic-bezier(0.8, 0, 0.2, 1) infinite;
  display: flex;
  justify-content: center;
  align-items: center;
}
@keyframes rotatefan {
  to {
    transform: rotate(360deg);
  }
}
.loadingContainer .type3 * {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-clip-path: polygon(70% 0, 30% 0, 50% 50%);
  clip-path: polygon(70% 0, 30% 0, 50% 50%);
}
.loadingContainer .type3 .fan1 {
  transform: rotate(0deg);
  background-color: #fc7753;
}
.loadingContainer .type3 .fan2 {
  transform: rotate(90deg);
  background-color: #4ecdc4;
}
.loadingContainer .type3 .fan3 {
  transform: rotate(180deg);
  background-color: #e84855;
}
.loadingContainer .type3 .fan4 {
  transform: rotate(270deg);
  background-color: #312d45;
}
.loadingContainer .type4 {
  min-width: 33%;
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.loadingContainer .type4 * {
  width: 17.6px;
  border-radius: 2px 2px 0 0;
  border: solid 1px white;
}
.loadingContainer .type4 .line1 {
  height: 20%;
  background-color: #fc7753;
  animation: scale 0.3s 0s linear infinite alternate;
}
.loadingContainer .type4 .line2 {
  height: 50%;
  background-color: #4ecdc4;
  animation: scale 0.4s 0s linear infinite alternate;
}
.loadingContainer .type4 .line3 {
  height: 30%;
  background-color: #e84855;
  animation: scale 0.2s 0s linear infinite alternate;
}
.loadingContainer .type4 .line4 {
  height: 5%;
  background-color: #312d45;
  animation: scale 0.5s 0s linear infinite alternate;
}
@keyframes scale {
  to {
    height: 100%;
  }
}
.loadingContainer .type5 {
  min-width: 33%;
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.loadingContainer .type5 * {
  width: 16px;
  height: 40px;
  border: solid 1px white;
}
.loadingContainer .type5 .pulse1 {
  background-color: #4ecdc4;
  animation: pulse 1s 0s ease infinite;
}
.loadingContainer .type5 .pulse2 {
  background-color: #fc7753;
  animation: pulse 1s 0.15s ease infinite;
}
.loadingContainer .type5 .pulse3 {
  background-color: #312d45;
  animation: pulse 1s 0.3s ease infinite;
}
.loadingContainer .type5 .pulse4 {
  background-color: #e84855;
  animation: pulse 1s 0.45s ease infinite;
}
@keyframes pulse {
  from {
    height: 50%;
  }
  5% {
    height: 80%;
  }
  50% {
    height: 50%;
  }
  to {
    height: 50%;
  }
}
.loadingContainer .type6 {
  min-width: 33%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.loadingContainer .type6 .wrapper {
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.loadingContainer .type6 .wrapper * {
  width: 40px;
  height: 40px;
  box-sizing: border-box;
  border: solid 1px white;
}
.loadingContainer .type6 .wrapper .shape1 {
  background-color: #fc7753;
  transform-origin: 100% 100%;
  animation: enlarge 0.8s 0s ease infinite;
}
.loadingContainer .type6 .wrapper .shape2 {
  background-color: #4ecdc4;
  transform-origin: 0% 100%;
  animation: enlarge 0.8s 0.2s ease infinite;
}
.loadingContainer .type6 .wrapper .shape3 {
  background-color: #e84855;
  transform-origin: 100% 0%;
  animation: enlarge 0.8s 0.6s ease infinite;
}
.loadingContainer .type6 .wrapper .shape4 {
  transform-origin: 0% 0%;
  background-color: #312d45;
  animation: enlarge 0.8s 0.4s ease infinite;
}
@keyframes enlarge {
  from {
    transform: scale(1);
  }
  20% {
    transform: scale(1.2);
  }
  30% {
    transform: scale(1);
  }
  to {
    transform: scale(1);
  }
}
.loadingContainer .type7 {
  min-width: 33%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.loadingContainer .type7 .wrapper {
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.loadingContainer .type7 .wrapper * {
  position: absolute;
  border-radius: 50%;
  width: 16px;
  height: 16px;
}
.loadingContainer .type7 .wrapper .ball1 {
  background-color: #312d45;
  animation: movement 1.6s 0s linear infinite;
}
.loadingContainer .type7 .wrapper .ball2 {
  background-color: #fc7753;
  animation: movement 1.6s -0.4s linear infinite;
}
.loadingContainer .type7 .wrapper .ball3 {
  background-color: #4ecdc4;
  animation: movement 1.6s -0.8s linear infinite;
}
.loadingContainer .type7 .wrapper .ball4 {
  background-color: #e84855;
  animation: movement 1.6s -1.2s linear infinite;
}
@keyframes movement {
  from {
    transform: scale(0);
    left: 0%;
    z-index: -1;
  }
  25% {
    transform: scale(1);
    left: 0%;
  }
  30% {
    transform: scale(1);
    left: 0%;
  }
  50% {
    transform: scale(1);
    left: 25%;
  }
  55% {
    transform: scale(1);
    left: 25%;
  }
  75% {
    transform: scale(1);
    left: 50%;
  }
  80% {
    transform: scale(1);
    left: 50%;
  }
  100% {
    transform: scale(0);
    left: 75%;
    z-index: 9;
  }
}
.loadingContainer .type8 {
  min-width: 33%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.loadingContainer .type8 * {
  border-radius: 50%;
  width: 16px;
  height: 16px;
  margin-right: 5px;
}
.loadingContainer .type8 .ball1 {
  background-color: #54F2E4;
  animation: jump 1.4s 0s ease infinite;
}
.loadingContainer .type8 .ball2 {
  background-color: #4F6FFE;
  animation: jump 1.4s 0.35s ease infinite;
}
.loadingContainer .type8 .ball3 {
  background-color: #403FD9;
  animation: jump 1.4s 0.7s ease infinite;
}
.loadingContainer .type8 .ball4 {
  background-color: #3F9CD9;
  animation: jump 1.4s 1.05s ease infinite;
}
@keyframes jump {
  30% {
    margin-bottom: 48px;
  }
  35% {
    margin-bottom: 48px;
  }
  65% {
    margin-bottom: 0;
  }
  to {
    margin-bottom: 0;
  }
}
.loadingContainer .type9 {
  min-width: 33%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.loadingContainer .type9 .wrapper {
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
}
.loadingContainer .type9 .wrapper * {
  position: absolute;
  border-radius: 50%;
  width: 36.3636363636px;
  height: 36.3636363636px;
  top: 0;
  left: 0;
}
.loadingContainer .type9 .wrapper .ball1 {
  background-color: #fc7753;
  animation: switch 1.4s 0s ease infinite;
}
.loadingContainer .type9 .wrapper .ball2 {
  background-color: #4ecdc4;
  animation: switch 1.4s -0.35s ease infinite;
}
.loadingContainer .type9 .wrapper .ball3 {
  background-color: #e84855;
  animation: switch 1.4s -0.7s ease infinite;
}
.loadingContainer .type9 .wrapper .ball4 {
  background-color: #312d45;
  animation: switch 1.4s -1.05s ease infinite;
}
@keyframes switch {
  0% {
    left: 0px;
    top: 0px;
  }
  25% {
    transform: translate(100%, 0%);
  }
  50% {
    transform: translate(100%, 100%);
  }
  75% {
    transform: translate(0%, 100%);
  }
  100% {
    transform: translate(0%, 0%);
  }
}