@charset "UTF-8";
.btn_fix{
	display:none;
}
@media (max-width:768px) {
.btn_fix{
	position:fixed;
	right:0;
	bottom:0;
	display:block;
	width:100%;
	z-index:999999;
}
.btn_fix ul:after{
	display:block;
	content:"";
	clear:both;
}
.btn_fix ul{
	display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
	display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
	padding:0 !important;
	margin:0 !important;
}
.btn_fix ul li{
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
	width:50%;
}
.btn_fix ul li:first-child{
	background:#6BB110;
}
.btn_fix ul li:last-child{
	background:#A51B00;
}
.btn_fix ul li:first-child a,
.btn_fix ul li:last-child a{
	position:relative;
	display:block;
	width:100%;
	padding:20px 0 20px 10px;
	color:#FFFFFF;
	font-size:1.1em;
	font-weight:bold;
	text-align:center;
	text-decoration:none;
	transition: 0.3s;
}
.btn_fix ul li:first-child a:hover,
.btn_fix ul li:last-child a:hover{
	text-decoration:none;
	opacity:0.7;
}
.btn_fix ul li:first-child a:before,
.btn_fix ul li:last-child a:before {
    position: absolute;
    top: 50%;
    left: 10px;
    content: "\f003";
    font-family: FontAwesome;
	font-size:1.5em;
	font-weight:normal !important;
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.btn_fix ul li:last-child a:before {
    content: "\f2a0";
}
.btn_fix ul li:last-child a span{
	display:block;
	font-size:0.8em;
}
}