@charset "utf-8";

/*-------------------------------------------------------------------------------------*
 *     아시아 전용                                                                   *
 *-------------------------------------------------------------------------------------*/
.logo{
	-webkit-animation: fade-in-fwd 1.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
	        animation: fade-in-fwd 1.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}
@keyframes fade-in-fwd {
  0% {
    -webkit-transform:perspective(700px) translateZ(-200px);
            transform:perspective(700px) translateZ(-200px);
    opacity: 0.6;
  }
  100% {
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
    opacity: 1;
  }
}


.mini_power_btn1:hover,.mini_power_btn2:hover {
	-webkit-animation: shake-bottom 1.3s cubic-bezier(0.455, 0.030, 0.515, 0.955) both;
	        animation: shake-bottom 1.3s cubic-bezier(0.455, 0.030, 0.515, 0.955) both;
}
@keyframes shake-bottom {
  0%,
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    -webkit-transform-origin: 50% 100%;
            transform-origin: 50% 100%;
  }
  10% {
    -webkit-transform: rotate(2deg);
            transform: rotate(2deg);
  }
  20%,
  40%,
  60% {
    -webkit-transform: rotate(-2deg);
            transform: rotate(-2deg);
  }
  30%,
  50%,
  70% {
    -webkit-transform: rotate(2deg);
            transform: rotate(2deg);
  }
  80% {
    -webkit-transform: rotate(-2deg);
            transform: rotate(-2deg);
  }
  90% {
    -webkit-transform: rotate(2deg);
            transform: rotate(2deg);
  }
}

.game_list li:hover a {
	-webkit-animation: tilt-in-left-1 0.4s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: tilt-in-left-1 0.4s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@keyframes tilt-in-left-1 {
  0% {
    -webkit-transform: rotateX(-10deg) translateX(-100px) skewX(60deg);
            transform: rotateX(-10deg) translateX(-100px) skewX(60deg);
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateX(0deg) translateX(0) skewX(0deg);
            transform: rotateX(0deg) translateX(0) skewX(0deg);
    opacity: 1;
  }
}

.main_game_box li:hover img:not(.main_game_item){
	animation: main_game_box 0.4s ease-in-out both;	
}
@keyframes main_game_box {
	0% {
		filter:blur(10px);
		opacity: 0.8;		
	}
	
	100% {
		filter:blur(0px);
		opacity: 1;	
	}			
}

.main_game_box li:hover .main_game_item{
	-webkit-animation: jello-horizontal 0.7s 0.3s both;
	        animation: jello-horizontal 0.7s 0.3s both;
}
@keyframes jello-horizontal {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
            transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
            transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
            transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
            transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
            transform: scale3d(1.05, 0.95, 1);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}

/*-------------------------------------------------------------------------------------*
 *  out_login animations                                                               *
 *-------------------------------------------------------------------------------------*/
.out_motion111{
	animation:out_motion111 2.5s;
}

@keyframes out_motion111 {
	0% {
		transform: scale(1.5);
		opacity: 0.1;		
	}
	
	100% {
		transform: scale(1);
		opacity: 1;	
	}			
}

/*-------------------------------------------------------------------------------------*
 *  out_login animations popup                                                         *
 *-------------------------------------------------------------------------------------*/
/* 한개의 스타일 */
.out_popup111	{animation-name: out_popup111; animation-duration: 0.5s; animation-timing-function: ease; visibility: visible !important;}

				@keyframes out_popup111 {
					0%   {transform: translateY(-300%);}			
					100% {transform: translateY(0%);}		
				}

/* 한개의 스타일 */
.out_popup222	{animation-name: out_popup222; animation-duration: 0.5s; animation-timing-function: ease; visibility: visible !important;}

				@keyframes out_popup222 {
					0%   {transform: translateY(-300%) scaleX(4.0);}			
					100% {transform: translateY(0%) scaleX(1);}		
				}

/* 한개의 스타일 */
.out_popup333	{animation-name: out_popup333; animation-duration: 1.1s; animation-timing-function: ease; visibility: visible !important;}

				@keyframes out_poout_popup333pup03 {
					0%   {transform: translateY(-300%) scaleX(4.0);}	
					50%  {transform: translateY(2%) scaleX(1.3);}				
					100% {transform: translateY(0%) scaleX(1);}		
				}


/*-------------------------------------------------------------------------------------*
 *  일반적인                                                                           *
 *-------------------------------------------------------------------------------------*/
/* mouseover1 */
.mouseover1{
	animation-name: mouseover1;
	-webkit-animation-name: mouseover1;	

	animation-duration: 0.2s;	
	-webkit-animation-duration: 0.2s;

	animation-timing-function: ease-out;	
	-webkit-animation-timing-function: ease-out;	

	visibility: visible !important;	
}

@keyframes mouseover1 {
	0% {
		transform: scale(1.03);
	}		
	100% {
		transform: scale(1);
	}			
}


/* mouseover2 */
.mouseover2{
	animation-name: mouseover2;
	-webkit-animation-name: mouseover2;	

	animation-duration: 0.5s;	
	-webkit-animation-duration: 0.5s;

	animation-timing-function: ease-out;	
	-webkit-animation-timing-function: ease-out;	

	visibility: visible !important;	
}

@keyframes mouseover2 {
	0% {
		transform: scale(1.07); opacity:0.1;
	}		
	100% {
		transform: scale(1); opacity:1.0;
	}			
}


/*-------------------------------------------------------------------------------------*
 *  레이어팝업 띄우는 스타일 시작                                                      *
 *-------------------------------------------------------------------------------------*/
/* 한개의 스타일 */
.popup_style01 {animation-name: popup_style01; -webkit-animation-name: popup_style01; animation-duration: 1.1s; -webkit-animation-duration: 1.1s; animation-timing-function: ease-out; -webkit-animation-timing-function: ease-out;	
				transform-origin: 50% 0%; -ms-transform-origin: 50% 0%; -webkit-transform-origin: 50% 0%;}
				
				@keyframes popup_style01 {
					0%   {transform: scaleY(0.1);}
					40%  {transform: scaleY(1.02);}
					60%  {transform: scaleY(0.98);}
					80%  {transform: scaleY(1.01);}
					100% {transform: scaleY(0.98);}				
					80%  {transform: scaleY(1.01);}
					100% {transform: scaleY(1);}							
				}
				
/* 한개의 스타일 */
.popup_style02 {animation-name: popup_style02; -webkit-animation-name: popup_style02; animation-duration: 0.8s;	-webkit-animation-duration: 0.8s; animation-timing-function: ease-in-out; -webkit-animation-timing-function: ease-in-out; visibility: visible !important;}

				@keyframes popup_style02 {
					0%   {opacity: 0.0;}
					100% {opacity: 1;}	
				}

/* 한개의 스타일 */
.popup_style03 {animation-name: popup_style03; -webkit-animation-name: popup_style03; animation-duration: 1.0s; -webkit-animation-duration: 1.0s; animation-timing-function: ease-out; -webkit-animation-timing-function: ease-out;	
				transform-origin: 100% 0%; -ms-transform-origin: 100% 0%; -webkit-transform-origin: 100% 0%;}

				@keyframes popup_style03 {
					0%   {transform: scaleX(0.3);}
					40%  {transform: scaleX(1.02);}
					60%  {transform: scaleX(0.98);}
					80%  {transform: scaleX(1.01);}
					100% {transform: scaleX(0.98);}				
					80%  {transform: scaleX(1.01);}
					100% {transform: scaleX(1);}							
				}

/* 한개의 스타일 */
.popup_style04 {animation-name: popup_style04; -webkit-animation-name: popup_style04; animation-duration: 0.7s;	-webkit-animation-duration: 0.7s; animation-timing-function: ease; -webkit-animation-timing-function: ease;	visibility: visible !important;}

				@keyframes popup_style04 {
					0%   {transform: translateY(-300%);}			
					100% {transform: translateY(0%);}		
				}

/* 한개의 스타일 */
.popup_style05 {animation-name: popup_style05; -webkit-animation-name: popup_style05; animation-duration: 0.5s;	-webkit-animation-duration: 0.5s; animation-timing-function: ease; -webkit-animation-timing-function: ease;	visibility: visible !important;}

				@keyframes popup_style05 {
					0%   {transform: translateY(-300%) scaleX(4.0);}			
					100% {transform: translateY(0%) scaleX(1);}		
				}

/* 한개의 스타일 */
.popup_style06{animation-name: popup_style06; -webkit-animation-name: popup_style06; animation-duration: 1.1s; -webkit-animation-duration: 1.1s; animation-timing-function: ease; -webkit-animation-timing-function: ease; visibility: visible !important;}

				@keyframes popup_style06 {
					0%   {transform: translateY(-300%) scaleX(4.0);}	
					50%  {transform: translateY(2%) scaleX(1.3);}				
					100% {transform: translateY(0%) scaleX(1);}		
				}



/*-------------------------------------------------------------------------------------*
 *  게임 (큰이미지)                                                                    *
 *-------------------------------------------------------------------------------------*/
/* game1 */
.game1 {
	animation-name: game1;
	-webkit-animation-name: game1;	

	animation-duration: 0.3s;	
	-webkit-animation-duration: 0.3s;

	animation-timing-function: ease-out;	
	-webkit-animation-timing-function: ease-out;	
	
	animation-iteration-count:1;
	-webkit-animation-iteration-count:1;	
	
	animation-fill-mode: forwards;
	-webkit-animation-fill-mode: forwards;	

	visibility: visible !important;	
}

@keyframes game1 {
	0%   {transform:scale(1) scaleX(1);}		
	50%  {transform:scale(1.03) scaleX(1.1); box-shadow:#fffc00 2px 2px 30px -1px;}		
	100% {transform:scale(1.05) scaleX(1); box-shadow:#3e62e1 2px 2px 30px -1px;}			
}

