#pricingChart .hl {
	font-weight: 700;
	box-shadow: 0px 5px 16px -3px rgba(0, 0, 0, .2);
	background: #e1fff0;
}


#mgTable tbody th {
	width: 100%;
}

#mgTable tbody th>div:nth-of-type(2) {
	display: none;
}

#mgTable td {
	width: calc(100% / (var(--colnr) - 1));
	text-align: center;
}

.mg-xs-navi .price {
	font-size: 2em;
	color: #088799;
}


@media screen and (min-width: 768px) {

	#mgTable tbody th {
		width: calc(100% / var(--colnr) + 60px);
	}

	#mgTable td {
		width: calc((100% / var(--colnr)) - (60px / (var(--colnr) - 1)));
	}
}

#mgTable tr {
	display: flex;
	flex-wrap: wrap;
}

#mgTable .service-link {
	color: #c06;
	cursor: pointer;
}


.mg-xs-navi-wrapper {
	position: sticky;
	top: 0;
	background-color: #fff;
	padding-top: 12px;
}

@media screen and (min-width: 768px) {
	.mg-xs-navi-wrapper {
		padding-top: 27px;
	}
}


.mg-xs-navi {
	display: flex;
	text-align: center;
	font-weight: bold;
	background-color: #fff;
}

.mg-xs-navi>div:first-of-type {
	width: calc(100% / var(--colnr) + 60px);
}

.mg-xs-navi>div {
	width: calc((100% / var(--colnr)) - (60px / (var(--colnr) - 1)));
	padding: 10px;
}

#pricingChart .membership {
	font-size: 1.5em;
}

.mg-xs-navi .fav {
	text-align: center;
	text-transform: uppercase;
	position: absolute;
	top: -35px;
	background: #c06;
	width: 100%;
	line-height: 25px;
	color: #fff;
	border-radius: 16px;
	box-shadow: 0px 8px 8px -1px rgba(0, 0, 0, .2);
}


@media screen and (max-width: 767px) {
	.mg-xs-navi>div:first-of-type {
		display: none;
	}

	.mg-xs-navi>div {
		width: calc(100% / (var(--colnr) - 1));
	}
}

@media screen and (max-width: 991px) {
	.mg-xs-navi .fav {
		width: 23px;
		line-height: 23px;
		top: -20px;
		font-size: 11px;
	}

	.mg-xs-navi .fav .fav-text {
		display: none;
	}
}

.spinner-cont {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 200px;
}

.spinner {
	display: inline-block;
	position: relative;
	width: 64px;
	height: 64px;
}

.spinner div {
	display: inline-block;
	position: absolute;
	left: 6px;
	width: 13px;
	background: #cd0065;
	animation: spinner 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
}

.spinner div:nth-child(1) {
	left: 6px;
	animation-delay: -0.24s;
}

.spinner div:nth-child(2) {
	left: 26px;
	animation-delay: -0.12s;
}

.spinner div:nth-child(3) {
	left: 45px;
	animation-delay: 0;
}

@keyframes spinner {
	0% {
		top: 6px;
		height: 51px;
	}

	50%,
	100% {
		top: 19px;
		height: 26px;
	}
}

.glyphicon-shopping-cart:before {
	content: "\e116";
}