/* main container for all widgets, except standalone anchors */
.link-container {
	padding-top: 40px;
	padding-bottom: 30px;
}

/* link buttons */
.link-buttons {
	text-align: center;
	margin-top: 10px;
	list-style: none;
	margin-left: 0;
	padding-bottom: 40px;
	padding-left: 0;
	border-bottom: 1px solid #dee2e6;
}
.link-buttons li {
	margin-bottom: 0.7em;
}
.link-buttons .reviews {
	font-size: 0.9em;
}
.link-buttons .reviews:hover {
	text-decoration: none;
}

/* key facts table */
.key-facts {
	margin-bottom: 25px;
	overflow: hidden; /* needed for border to work */
}
.key-facts-heading {
	display: block;
	padding: 10px 20px;
	margin: 0 !important;
	font-size: 1.2rem;
	text-transform: uppercase;
	color: white;
}
.key-facts-list {
	background: white;
	padding-left: 0;
	margin-left: 0;
	list-style: none;
	margin-bottom: 0;
}
.key-facts-list li {
	margin-bottom: 0 !important;
	padding: 10px 15px;
}
.key-facts-list li:nth-child(even) {
  background: #f2f2f2;
}
.key-facts-list li:before{
	margin-right: 10px;
	margin-bottom: -3px;
	color:#28af10;
	display:inline-block;
	font-style:normal;
	font-weight: 900;
	line-height:1;
	-webkit-font-smoothing:antialiased;
	-moz-osx-font-smoothing:grayscale;
	font-family:'Font Awesome 5 Free';
	content:"\f00c";
}

/* Link Card */
.link-card ul {
	margin-top: 17px;
}

/* Pro/Con Table */
.pro-con {
	display: -webkit-box;
	display: -moz-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 100%;
}
.pro-con-item {
	width: 48%;
	margin-top: 20px;
	margin-bottom: 24px;
	position: relative;
	background-color: white;
}
.pro-con-heading {
	display:  block;
	text-align: center;
	color: white;
	font-size: 1.2em;
	padding: 30px 0 20px;
	margin: 0 !important;
	text-transform: uppercase;
}
.pro-con-item.pros .pro-con-heading:after {
	content: "\f00c"; /* f164 thumbs up */
	font-weight: 900;
	font-family:'Font Awesome 5 Free';
	position: absolute;
	color: #28a816;
	border: 2px solid #28a816;
	font-size: 22px;
	width: 55px;
	padding: 12px 15px;
	border-radius: 100%;
	background: white;
	left: 50%;
	top: -4px;
	transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
}
.pro-con-item.cons .pro-con-heading:after {
	content: "\f00d"; /* f165 thumbs up */
	font-weight: 900;
	font-family:'Font Awesome 5 Free';
	position: absolute;
	color: #dc1f34;
	border: 2px solid #dc1f34;
	font-size: 22px;
	width: 55px;
	padding: 12px 15px;
	border-radius: 100%;
	background: white;
	left: 50%;
	top: -4px;
	transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
}
.pro-con-list {
	margin-left: 13px;
	padding: 10px 20px 0;
}
.pro-con-list li {
	margin-bottom: 4px;
}
@media (max-width: 767px) {
	.pro-con-item {
		width: 100%;
	}
}