@charset "utf-8";

.right_fix_button{
	position:fixed;
	display:none;
}

.hide_right_fix_button_trigger{
	width:20px;
	height:20px;
	background:#333;
	border-radius:50%;
	display:block;
	position:absolute;
	top:-10px;
	left:-20px;
	z-index:10;
}

.hide_right_fix_button_trigger::before, 
.hide_right_fix_button_trigger::after{
	content:"";
	background:#FFF;
	position:absolute;
	transform:rotate(45deg);
	display:block;
}

.hide_right_fix_button_trigger::before{
	width:2px;
	height:14px;
	top:3px;
	left:calc(50% - 1px);
}

.hide_right_fix_button_trigger::after{
	width:14px;
	height:2px;
	top:calc(50% - 1px);
	left:3px;
}