#footerLineMobile {
	display: none;
	box-shadow: 1px 1px 12px rgba(0, 0, 0, 0.25);
	background-color: #ffffff;
	border-color: #f3f3f3;
	line-height: 55px;
	position: fixed;
	z-index: 999;
	height: 55px;
	width: 100%;
	left: 0;
	bottom: 0;
}

@media all and (max-width: 500px) {
	#footerLine {
		display: none;
	}
	
	#footerLineMobile {		
		display: block;
	}	
}

#footerLineMobile .footer-line-content {
	display: flex;
	width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: auto;
}

#footerLineMobile .footer-line-item {
	display: flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	min-width: 75px;
	max-width: 200px;
	height: 55px;
	text-align: center;
	position: relative;
	overflow: hidden;	
	text-decoration: none;
}

#footerLineMobile .footer-line-item-image {	
	display: inline-block;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	vertical-align: middle;	
	position: relative;
	background-repeat: no-repeat;
	background-position: center center;
	min-width: auto;
	min-height: auto;
}

#footerLineMobile .footer-line-item-text {
	display: block;
	font-size: 11px;
	line-height: 11px;
	color: #000000;
	align-self: normal;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	margin-top: 3px;
}

#footerLineMobile .count {
	border: 2px solid #d1d1d1;
	background-color: #fff;
	border-radius: 50%;
	position: absolute;
	text-align: center;
	overflow: hidden;
	font-size: 12px;
	color: #d1d1d1;
	line-height: 21px;
	height: 20px;
	width: 20px;
	right: 8px;
	top: 2px;
}

#footerLineMobile .count.active {
	border: 2px solid #ed1c24;
	color: #ed1c24;
}