@charset "UTF-8";


@media screen and (max-width:768px){
		
	.aaa{
	  width: 100%;
	  height: 100%;
	  transition: all 0.4s;
	  transform: translate(100%);
	  position: fixed;
	  top: 0;
	  right: 0;
	  z-index: 1000;
	  background-color: rgba(0,0,0,0.5);		
	}
	
	.zdo_drawer_button{
		padding: 0;
		border: 0;
	}
	.aaa.open{
		transform: translate(0);
		display:block;
	}
}


