.pricing-table {
	display: flex;
	flex-wrap: wrap;
}

.pricing {
	padding: 64px 0;
}

.pricing-table ul {
	list-style-type: none;
	margin: 0;
	padding: 15px 24px 0;
	flex: 0 0 25%;
	width: 25%;
	box-sizing: border-box;
}

.pricing-table li {
	font-size: 14px;
}

.ico {
	display: flex;
	width: 20px;
	height: 20px;
	position: relative;
	margin: 0 auto;
}

.ico.circle:before {
	content: '';
	position: absolute;
	width: 10px;
	height: 10px;
	background: #f7f7f7;
	border-radius: 50%;
	top: 5px;
	left: 5px;
}

.ico.circle {
	border-radius: 50%;
	background: #68c0b9;
}

.ico.cross:before,
.ico.cross:after {
	content: '';
	position: absolute;
	background: #dd0a17;
	width: 20px;
	height: 5px;
	top: 8px;
	left: 0;
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transition: 0.3s ease;
	-webkit-transition: 0.3s ease;
}

.ico.cross:after {
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
}

.price-title span {
	font-size: 12px;
	clear: both;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0;
	color: #10042c;
	font-weight: 600;
}

.price-title {
	font-size: 24px;
	letter-spacing: 2px;
	font-weight: 600;
}

.column-c {
	border-radius: 5px;
	font-weight: 600;
}

[class*='column'] li span {
	position: relative;
	z-index: 2;
}

/*blue column*/
.column-c.selected .ico.circle:before {
	background: #10042c;
}

.column-c.selected,
.column-c.selected span {
	color: #fff;
}

.column-c.selected li,
.column-c.selected li .inner {
	background: #10042c !important;
}

/**/

[class*='column'] li span {
	position: relative;
	z-index: 2;
}

[class*='column'] li .inner {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 60px;
	line-height: 1.2;
	padding: 0 15px;
	transition: 0.3s ease;
	-webkit-transition: 0.3s ease;
	width: 100%;
}

[class*='column'] li:nth-child(2n):not(:last-child):before {
	content: '';
	position: absolute;
	height: 100%;
	background: #f7f7f7;
	left: -24px;
	right: -24px;
	top: 0;
	z-index: 1;
}

[class*='column'] li {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 60px;
	line-height: 1.2;
	transition: 0.3s ease;
	-webkit-transition: 0.3s ease;
}

[class*='column'] li:last-child {
	border-radius: 0 0 10px 10px;
	padding-bottom: 16px;
}

[class*='column'] li:first-child {
	line-height: 22px;
	min-height: 80px;
	border-radius: 10px 10px 0 0;

}

[class*='column'] {
	display: flex;
	flex-direction: column;
}

.price span {
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0;
}

.price {
	font-size: 18px;
	font-weight: 600;
	letter-spacing: 1px;
	line-height: 1.2;
}

.m-hint {
	display: none;
}

@media (max-width: 992px) {
	.pricing-table ul {
		padding-left: 0;
		padding-right: 0;
	}
}

@media (max-width: 769px) {
	.column-headers {
		display: none;
	}

	.pricing-table ul {
		flex: 0 0 100%;
		max-width: 320px;
		margin: 8px auto;
	}

	.m-hint,
	.price .m-hint {
		display: block;
		margin-right: 30px;
		font-weight: 400;
		font-size: 16px;
	}

	[class*='column'] li .inner {
		justify-content: space-between;
	}

	.ico {
		margin-right: 0;
	}
}