@charset "UTF-8";

div.loading_wrap {
    position: absolute;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100vh;
    display: none;
    background: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
    z-index:9999;
}
.loading{
	width: 70px;
    height: 70px;
    background: #fff;
    text-align: center;
    line-height: 62px;
    border-radius: 50%;
    position: absolute;
    top: 35%;
    left: 0;
    right: 0;
    margin: 0 auto;
}
.line {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 2px;
}
.line1{
	background-color: #A4FFE4;
}
.line2{
	background-color: #6DF0CA;
}
.line3{
	background-color: #0DA77A;
}
.line4{
	background-color: #007C58;
	margin-right: 0 !important;
}

/* =Animate the stuff
------------------------ */

.loading .line:nth-last-child(1) {
  animation: loading .8s 0.1s ease-in-out infinite;
}
.loading .line:nth-last-child(2) {
  animation: loading .8s 0.2s ease-in-out infinite;
}
.loading .line:nth-last-child(3) {
  animation: loading .8s 0.3s ease-in-out infinite;
}
.loading .line:nth-last-child(4) {
  animation: loading .8s 0.4s ease-in-out infinite;
}


@keyframes loading {
  0 {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(0, 8px);
  }
  100% {
    transform: translate(0, 0);
  }
}

