/**
 * SRK Internal Linking Comparison Table
 */

/* Wrapper */
.srk-internal-linking-features-wrap {
	margin: 50px 0;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

/* Table */
.srk-internal-linking-features-table {
	width: 100%;
	min-width: 700px;
	border-collapse: separate;
	border-spacing: 0;
	background: #ffffff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(8, 28, 89, 0.15);
	font-family: roboto, sans-serif;
}

/* Header */
.srk-internal-linking-features-table thead th {
	border: 0 solid #081c59;
	background: #081c59;
	color: #ffffff;
	padding: 18px 20px;
	font-size: 15px;
	font-weight: 600;
	text-align: center;
	white-space: nowrap;
}

.srk-internal-linking-features-table thead th:hover {
	background: #f28500;
	color: #ffffff;
	transition: 0.3s ease;
	cursor: pointer;
}

.srk-internal-linking-features-table thead th:first-child {
	text-align: left;
}

/* Body */
.srk-internal-linking-features-table tbody td {
	padding: 18px 20px;
	font-size: 15px;
	border-bottom: 1px solid #edf0f4;
	text-align: center;
	transition: 0.3s ease;
	white-space: nowrap;
}

/* Feature column */
.srk-internal-linking-features-table tbody td:first-child {
	text-align: left;
	font-weight: 600;
	color: #081c59;
	white-space: normal;
}

/* Check */
.srk-internal-linking-check {
	color: #f28500;
	font-size: 18px;
	font-weight: 700;
}

/* Cross */
.srk-internal-linking-cross {
	color: #c7cbd6;
	font-size: 18px;
	font-weight: 700;
}

/* LIMITED / KEYWORD MAPS */
.srk-internal-linking-text {
	font-weight: 600;
	font-size: 13px;
	letter-spacing: 0.5px;
	color: #8c96a8;
}

/* Hover */
.srk-internal-linking-features-table tbody tr:hover td {
	background: #fff4ea;
}

/* Rounded corners */
.srk-internal-linking-features-table thead th:first-child {
	border-top-left-radius: 16px;
}

.srk-internal-linking-features-table thead th:last-child {
	border-top-right-radius: 16px;
}

.srk-internal-linking-features-table tbody tr:last-child td:first-child {
	border-bottom-left-radius: 16px;
}

.srk-internal-linking-features-table tbody tr:last-child td:last-child {
	border-bottom-right-radius: 16px;
}

/* Scrollbar */
.srk-internal-linking-features-wrap::-webkit-scrollbar {
	height: 6px;
}

.srk-internal-linking-features-wrap::-webkit-scrollbar-track {
	background: #f1f1f1;
	border-radius: 10px;
}

.srk-internal-linking-features-wrap::-webkit-scrollbar-thumb {
	background: #f28500;
	border-radius: 10px;
}

.srk-internal-linking-features-wrap::-webkit-scrollbar-thumb:hover {
	background: #e07600;
}

/* Tablet */
@media (max-width: 768px) {

	.srk-internal-linking-features-table thead th,
	.srk-internal-linking-features-table tbody td {
		padding: 14px;
		font-size: 14px;
	}

	.srk-internal-linking-check,
	.srk-internal-linking-cross {
		font-size: 16px;
	}

	.srk-internal-linking-text {
		font-size: 12px;
	}
}

/* Mobile */
@media (max-width: 480px) {

	.srk-internal-linking-features-table {
		min-width: 700px;
	}

	.srk-internal-linking-features-table thead th,
	.srk-internal-linking-features-table tbody td {
		padding: 12px 10px;
		font-size: 13px;
	}

	.srk-internal-linking-name {
		font-size: 13px;
	}
}