/* Container */
.table-container {
	margin: 40px 0;
}

/* Intro & summary */
.table-intro,
.table-summary {
	font-size: 16px;
	line-height: 1.6;
	margin-bottom: 15px;
	color: #444;
}

/* Table */
.comparison-table {
	width: 100%;
	border-collapse: collapse;
	background: #ffffff;
	border-radius: 12px;
	overflow: hidden;
	/* [disabled]box-shadow: 0 10px 25px rgba(0,0,0,0.05); */
	/* [disabled]-webkit-box-shadow: 0 10px 25px rgba(0,0,0,0.05); */
}

/* Caption (SEO important) */
.comparison-table caption {
	caption-side: top;
	text-align: left;
	/* [disabled]font-weight: 600; */
	font-size: 14px;
	margin-bottom: 12px;
	font-style: italic;
	width: 100%;
}

/* Header */
.comparison-table thead {
  background: #f5f7f6;
}

.comparison-table th {
  padding: 14px;
  text-align: left;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #666;
}

/* Cells */
.comparison-table td {
  padding: 14px;
  border-top: 1px solid #eee;
  font-size: 15px;
}

/* Row hover */
.comparison-table tbody tr:hover {
  background: #fafafa;
}

/* Tag style */
.tag {
	display: inline-block;
	padding: 4px 10px;
	border-radius: 20px;
	font-size: 13px;
	background: #e8f5ee;
	color: #2e7d32;
	font-weight: 500;
	margin-right: 5px;
	margin-bottom: 5px;
}

/* Responsive */
@media (max-width: 768px) {
  .comparison-table thead {
	/* [disabled]display: none; */
  }

  .comparison-table,
  .comparison-table tbody,
  .comparison-table tr,
  .comparison-table td {
	display: block;
	width: 95%;
  }

  .comparison-table tr {
	margin-bottom: 15px;
	border: 1px solid #eee;
	border-radius: 10px;
	padding-top: 10px;
	padding-right: 10px;
	padding-left: 10px;
	padding-bottom: 10px;
  }

  .comparison-table td {
	border: none;
	padding-top: 0px;
	padding-right: 10px;
	padding-left: 10px;
	padding-bottom: 0px;
	position: relative;
	/* [disabled]background-color: #60FF28; */
  }

  .comparison-table td::before {
	content: attr(data-label);
	font-weight: bold;
	display: block;
	margin-bottom: 3px;
	/* [disabled]color: #60FF28; */
	font-size: 13px;
  }
}
