img.drag.ui-draggable-dragging{
	z-index: 21;
}

.touch_drag.hold{
	display: block;
	pointer-events: none;
	cursor: default;
}
.touch_drag.hold .touch_point_drag{
	display: none;
}
.touch_drag.hold .drag{
	pointer-events: none;
	cursor: default;
}

.move02,
.wood,
.metal,
.grass,
.plastic{
	transition: opacity ease 1s;
}
.move02.show,
.wood.show,
.metal.show,
.grass.show,
.plastic.show{
	opacity: 1 !important;
}

@keyframes move02 {
  0% {left : 449px;}
  10% {left : 699px;}
  
  20% {left : 449px;}
  30% {left : 699px;}
  
  40% {left : 449px;}
  50% {left : 699px;}
  
  60% {left : 449px;}
  70% {left : 699px;}
  
  80% {left : 449px;}
  90% {left : 699px;}
  
  100% {left : 449px;}
  
}
.move02.show.active{
	animation-name: move02;
	animation-duration: 5s;
}


.wood,
.plastic{
	top : 128px;
}
@keyframes wood {
  0% {top : 128px;}
  50% {top : 370px;}
  100% {top : 290px;}
}
.wood.show.active,
.plastic.show.active{
	animation-name: wood;
	animation-duration: 2s;
	top: 290px;
}

.grass,
.metal{
	top : 128px;
}
@keyframes metal {
  0% {top : 128px;}
  100% {top : 470px;}
}
.grass.show.active,
.metal.show.active{
	animation-name: metal;
	animation-duration: 2s;
	top: 470px;
}