.rok-comparison-table-wrap {
	width: 100%;
	position: relative;
}

.rok-comparison-title {
	text-align: center;
	margin: 0 0 20px;
	padding: 0;
	font-weight: 700;
	line-height: 1.2;
}

.rok-comparison-table-scroll {
	width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.rok-comparison-table {
	width: 100%;
	min-width: 760px;
	border-collapse: separate;
	border-spacing: 0;
	table-layout: fixed;
	background: #fff;
}

/* ---------------------------------
   HEADER
--------------------------------- */

.rok-comparison-table thead th {
	background: #10141d;
	color: #fff;
	padding: 10px 15px;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	text-transform: uppercase;
	border: 0;
}

.rok-comparison-table thead th:first-child {
	text-align: left;
	border-radius: 7px 0 0 0;
}

.rok-comparison-table thead th:last-child {
	border-radius: 0 7px 0 0;
}

/* ---------------------------------
   COLUMNS
--------------------------------- */

.rok-comparison-table .rok-feature-column {
	width: 22%;
}

.rok-comparison-table th:not(.rok-feature-column) {
	width: 26%;
}

/* ---------------------------------
   BODY
--------------------------------- */

.rok-comparison-table tbody td {
	padding: 7px 15px;
	height: 28px;
	background: #fff;
	color: #222;
	font-size: 14px;
	line-height: 1.35;
	border-right: 1px solid #e5e8ed;
	border-bottom: 1px solid #e5e8ed;
	text-align: center;
	vertical-align: middle;
}

.rok-comparison-table tbody tr:nth-child(even) td {
	background: #fcfcfc;
}

.rok-comparison-table tbody td:first-child {
	text-align: left;
	font-weight: 500;
}

.rok-comparison-table tbody td:last-child {
	border-right: 0;
}

/* ---------------------------------
   BOTTOM CORNERS
--------------------------------- */

.rok-comparison-table tbody tr:last-child td:first-child {
	border-radius: 0 0 0 7px;
}

.rok-comparison-table tbody tr:last-child td:last-child {
	border-radius: 0 0 7px 0;
}

/* ---------------------------------
   CHECK / CROSS
--------------------------------- */

.rok-comparison-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.rok-comparison-icon svg {
	width: 16px;
	height: 16px;
	display: block;
	fill: currentColor;
}

.rok-check {
	color: #ff6422;
}

.rok-cross {
	color: #999;
}

/* ---------------------------------
   TEXT VALUES
--------------------------------- */

.rok-value-text {

}

/* ---------------------------------
   SCROLLBAR
--------------------------------- */

.rok-comparison-table-scroll::-webkit-scrollbar {
	height: 6px;
}

.rok-comparison-table-scroll::-webkit-scrollbar-track {
	background: #eeeeee;
	border-radius: 10px;
}

.rok-comparison-table-scroll::-webkit-scrollbar-thumb {
	background: #aaa;
	border-radius: 10px;
}

/* ---------------------------------
   TABLET
--------------------------------- */

@media (max-width: 1024px) {

	.rok-comparison-table {
		min-width: 700px;
	}

	.rok-comparison-table thead th {
		padding: 9px 12px;
		font-size: 12px;
	}

	.rok-comparison-table tbody td {
		padding: 8px 12px;
		font-size: 13px;
	}

}

/* ---------------------------------
   MOBILE - SCROLL
--------------------------------- */

@media (max-width: 767px) {

	.rok-comparison-scroll .rok-comparison-table,
	.rok-comparison-table-wrap.rok-comparison-scroll .rok-comparison-table {
		min-width: 680px;
	}

	.rok-comparison-title {
		font-size: 24px;
	}

}

/* ---------------------------------
   MOBILE - STACK
--------------------------------- */

@media (max-width: 767px) {

	.rok-comparison-stack .rok-comparison-table,
	.rok-comparison-table-wrap.rok-comparison-stack .rok-comparison-table {
		min-width: 0;
		width: 100%;
		display: block;
	}

	.rok-comparison-stack .rok-comparison-table thead {
		display: none;
	}

	.rok-comparison-stack .rok-comparison-table tbody,
	.rok-comparison-stack .rok-comparison-table tr,
	.rok-comparison-stack .rok-comparison-table td {
		display: block;
		width: 100%;
	}

	.rok-comparison-stack .rok-comparison-table tr {
		margin-bottom: 25px;
		border: 1px solid #e5e7eb;
		border-radius: 8px;
		overflow: hidden;
	}

	.rok-comparison-stack .rok-comparison-table td {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 20px;
		padding: 12px 15px;
		border-right: 0;
		border-bottom: 1px solid #e5e7eb;
		text-align: right;
	}

	.rok-comparison-stack .rok-comparison-table td:first-child {
		background: #10141d;
		color: #fff;
		font-weight: 700;
		text-align: left;
	}

	.rok-comparison-stack .rok-comparison-table td:last-child {
		border-bottom: 0;
	}

	.rok-comparison-stack .rok-comparison-table td[data-feature]::before {
		content: attr(data-feature);
		font-weight: 600;
		text-align: left;
	}

}