/*로딩원 -- START*/
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.loadingC_Box{ 
    position:fixed;
    left:calc(50% - 17px);
    top:40%;  
    z-index:9999999999;}
.loadingCircle {   
    border-radius: 50%;
    width: 34px;
    height: 34px;
    border: 4px solid rgba(255,255,255, 0.2);
    border-top-color: rgb(255,255,255, 0.5);
    animation: spin 0.5s infinite linear;   
}
.loadingC_Box span{display:block; margin-left:-18px; color:#fff; font-family: "Tisa W01 Italic"; font-size:17px; text-align:center; padding-top: 10px; opacity:0.6;}
.loading-bg{width:100%;  background-color:#2a2c44; position:absolute; left:0; top:0; z-index:9999999998;}

/*로딩원 -- END*/


/*로딩텍스트 애니메이션 -- START*/
@keyframes textAni{
  0%{
      transform: translate3d(3.8px, 0px, 0px);
      opacity:0;
  }
  25%{
      transform: translate3d(4.5px, 0px, 0px);
      opacity:0.5;
  }
  50%{
      transform: translate3d(5.2px, 0px, 0px);
      opacity:1;
  }
  75%{
      transform: translate3d(4.5px, 0px, 0px);
      opacity:0.5;
  }
  100%{
      transform: translate3d(3.8px, 0px, 0px);
      opacity:0;
  }
}
.textAni{display:inline-block; margin-left:-2px; font-family: 'Univers47-CondensedLight';}

.textAni:nth-child(1){
  animation: textAni 0.5s 0s ease-out;
  animation-fill-mode: both;
}
.textAni:nth-child(2){
  animation: textAni 0.5s 0.1s ease-out;
  animation-fill-mode: both;
}
.textAni:nth-child(3){
  animation: textAni 0.5s 0.2s ease-out;
  animation-fill-mode: both;
}
.textAni:nth-child(4){
 animation: textAni 0.5s 0.3s ease-out;
 animation-fill-mode: both;
}
.textAni:nth-child(5){
 animation: textAni 0.5s 0.4s ease-out;
 animation-fill-mode: both;
}
.textAni:nth-child(6){
 animation: textAni 0.5s 0.5s ease-out;
 animation-fill-mode: both;
}
.textAni:nth-child(7){
 animation: textAni 0.5s 0.6s ease-out;
 animation-fill-mode: both;
}
/*로딩텍스트 애니메이션 -- END*/