@media (min-width: 768px){
	.l-mobile-footer {
		position: fixed;
		bottom: 20;
		left: 45%;
		width: 75%;
		z-index: 10000;
	}

	.l-mobile-footer > a {
		height: auto;
		width: 50%;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
	}

	.l-mobile-footer img {
		width: 100%;
		display: block;
		height: auto;
	}
}


@media (max-width: 768px){
	.l-mobile-footer {
		position: fixed;
		bottom: 20;
		left: -10;
		width: 100%;
		z-index: 10000;
	}

	.l-mobile-footer > a {
		height: auto;
		width: 100%;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
	}

	.l-mobile-footer img {
		width: 100%;
		display: block;
		height: auto;
	}
}