@charset "UTF-8";

/* .loading_wrap{
    margin: 0;
    padding: 0;
    background: rgba(52, 73, 94, 0.5);
    height: 100vh;
    align-items: center;
    justify-content: center;
    font-family: "montserrat",sans-serif;
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index:9999;
    display:none;
}

.loading{
  width: 200px;
  height: 200px;
  box-sizing: border-box;
  border-radius: 50%;
  border-top: 10px solid #e74c3c;
  position: relative;
  animation: a1 2s linear infinite;
  top:50%;
  left:50%;
  margin:-100px 0 0 -100px;
}

.loading::before,.loading::after{
  content: '';
  width: 200px;
  height: 200px;
  position: absolute;
  left: 0;
  top: -10px;
  box-sizing: border-box;
  border-radius: 50%;
}

.loading::before{
  border-top: 10px solid #e67e22;
  transform: rotate(120deg);
}

.loading::after{
  border-top: 10px solid #3498db;
  transform: rotate(240deg);
}

.loading span{
  position: absolute;
  font-size: 16px;
  width: 200px;
  height: 200px;
  color: #fff;
  text-align: center;
  line-height: 200px;
  animation: a2 2s linear infinite;
}

@keyframes a1 {
  to{
    transform: rotate(360deg);
  }
}

@keyframes a2 {
  to{
    transform: rotate(-360deg);
  }
} */

div.loading_wrap {
    position: absolute;
    margin: 0; padding: 0;
    width: 100%; height: 100vh;
    display: none;
    background: rgba(52, 73, 94, 0.5);
    align-items: center;
    justify-content: center;
    font-family: "montserrat",sans-serif;
    z-index:9999;
}
div.loading{
    display: block;
    position: absolute; top: 50%; left: 50%;
    width: 100px; height: 100px;
    animation-name:loadingAni;
    animation-duration: 1s;
    animation-timing-function: steps(1,end);
    animation-iteration-count: infinite;
    animation-direction: normal;
    animation-fill-mode: both;
    -webkit-animation-name: loadingAni;
    -webkit-animation-duration: 1s;
    -webkit-animation-timing-function: steps(1,end);
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-direction: normal;
    -webkit-animation-fill-mode: both;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    background-size: 100px auto;
    -webkit-background-size: 100px auto;
}
 @keyframes loadingAni {
    from{ background: url(../../images/f00.png)no-repeat center center / 100px auto;}
    30%{ background: url(../../images/f01.png)no-repeat center center / 100px auto;}
    60% {background: url(../../images/f02.png)no-repeat center center / 100px auto;}
    90% {background: url(../../images/f03.png)no-repeat center center / 100px auto;}
    to {background: url(../../images/f04.png)no-repeat center center / 100px auto;}
} 

 @-webkit-keyframes loadingAni {
    from{ background: url(../../images/f00.png)no-repeat center center / 100px auto;}
    30%{ background: url(../../images/f01.png)no-repeat center center / 100px auto;}
    60% {background: url(../../images/f02.png)no-repeat center center / 100px auto;}
    90% {background: url(../../images/f03.png)no-repeat center center / 100px auto;}
    to {background: url(../../images/f04.png)no-repeat center center / 100px auto;}
}

 


