.mobile-only-panel {
	display: none;
}
@media screen and (max-width: 768px) {
	.mobile-only-panel {
		z-index: 500;
		position: fixed;
		left: 0px;
		right: 0px;
		bottom: 0px;
		height: 40px;
		display: -webkit-box;
		display: -moz-box;
		display: -ms-flexbox;
		display: -webkit-flex;
		display: flex;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-moz-box-orient: horizontal;
		-moz-box-direction: normal;
		-ms-flex-direction: row;
		-webkit-flex-direction: row;
		flex-direction: row;
	}
	.mobile-only-panel a {
		display: -webkit-inline-box;
		display: -moz-inline-box;
		display: -ms-inline-flexbox;
		display: -webkit-inline-flex;
		display: inline-flex;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-moz-box-orient: horizontal;
		-moz-box-direction: normal;
		-ms-flex-direction: row;
		-webkit-flex-direction: row;
		-webkit-box-pack: center;
		-moz-box-pack: center;
		-ms-flex-pack: center;
		-webkit-justify-content: center;
		justify-content: center;
		flex-align: center;
		align-items: center;
		flex-grow: 1;
		width: 50%;
		padding: 10px 5px;
		color: #fff;
		font-size: 16px;
		line-height: 20px;
		text-decoration: none;
	}
	.mobile-only-panel a img {
		display: inline-block;
		vertical-align: middle;
		margin-right: 10px;
	}
	.mobile-only-panel a span {
		color: #818181;
	}
	.mobile-only-panel a span i {
		display: inline-block;
		width: 6px;
		height: 6px;
		border-radius: 50%;
		background-color: #05f180;
		line-height: 20px;
		vertical-align: middle;
		margin: 0px 0px 2px 0px;
	}
	.mobile-only-panel a:first-of-type {
		background: #212121;
	}
	.mobile-only-panel a:last-of-type {
		background: #4eb958;
	}
}