.right_menu {
		display:none;
	}
@media screen and (max-width:1024px){
.right_menu {
		display:none;
	}
	.right_menu {
		display:block;
		position:relative;
		z-index:2;
	}
	.right_menu_button {
		display: block;
		padding: 0;
		width:45px;
		height:45px;
		position: relative;
		border: none;
		text-align: center;
		cursor: pointer;
		outline: none;
		color:#000;
	}
	.right_menu_button.active .right_menu_text {
		display: none;
	}
	.right_menu_button.active .right_menu_close {
		display: block;
	}
	.right_drawer_text {
		width: 100%;
		height: auto;
		text-align: center;
		font-size: 1.0rem;
		color: #000;
		font-weight: 700;
		vertical-align: top;
	}
	span.rm_tex{
		font-size: 1.0rem;
		margin-top: -5px;
		display: block;
	}
	.right_drawer_text span.icon_box{
		display: block;
		color: #000;
		font-size:2.6rem;
		margin: 0;
		padding: 0;
		text-align: center;
	}
	.icon_box:after{
		display:block;
		width:2px;
		height:40px;
		margin:0px 0px 0px 0px;
	}
	.right_menu_close {
		display: none;
	}
	.right_menu_button {
		position: fixed;
		top:20px;
		right:20px;
		cursor: pointer;
	}
	.right_menu .right_menu_bg {
		position: fixed;
		z-index: 999;
		display: none;
		top: 0;
		left: 0;
	}
	.right_menu .right_menu_nav_wrapper {
		 width: 270px;
		box-sizing: border-box;
		padding:15px;
		height: auto;
		transition: all 0.2s;
		transform: translate(280px);
		position: fixed;
		top:0px;
		right: 0px;
		height:100vh;
		overflow-y: scroll;
		z-index: 1000;
		background-color: #EDF1F2;
	}
	.right_menu .right_menu_nav_wrapper.open {
		transform: translate(0);
	}
	.right_menu button.active {
		right: 270px;
	}
	.right_menu.left .right_menu_nav_wrapper {
		transform: translate(-312px);
		right: 270px;
	}
	.right_menu.left .right_menu_nav_wrapper.open {
		transform: translate(0);
	}
}