/* TWO PRODUCT TABLE CODE - NEW */

.two-products.comparison-table {
	width: 90%;
	padding-top: 40px;
	flex-direction: row;
	}

.two-products.comparison-table p {
	margin: 0;
}
	
.two-products.comparison-table .column{
	position: relative;
	flex-basis: 33%;
	text-align: center;
	}
	
.two-products.comparison-table .column .cell:last-child {
	padding: 20px 0;
}
	
.two-products.comparison-table .column .cell:last-child a {
	text-decoration: none;
	box-shadow: none;
	background: red;
	color: white;
	padding: 10px 20px;
	margin: 10px;
}
	

	
.two-products.comparison-table .column .cell:nth-child(2) a {
	text-decoration: none;
    box-shadow: none;
    color: black;
    font-weight: bold;
    font-size: 1.2em;
}
.two-products.comparison-table .column .cell{
	padding: 10px;
	border: 1px solid lightgray;
	border-bottom: none;
	border-right: none;
	border-left: none;
	    display: flex;
    align-items: center;
    justify-content: center;
	}
	
.two-products.comparison-table .column .cell:first-child {
	border: none;
	display: none;
}


	
.two-products.comparison-table .column .cell:nth-child(2){
	border: none;
	font-weight: bold;
	}
	
.two-products.comparison-table .column:nth-child(2){
	font-weight: bold;
	
	}
	
.two-products.comparison-table.col_2 .column.second,
.two-products.comparison-table.col_1 .column.first{
	    -webkit-box-shadow: 0 0 5px 0 #7e9dff;
    box-shadow: 0 0 5px 0 #7e9dff;
    border: 6px solid #6085ff;
    margin-top: -6px;
	}
	
.two-products.comparison-table .call-out {
	display: none;
}
	
.two-products.comparison-table.col_2 .column.second .call-out,
.two-products.comparison-table.col_1 .column.first .call-out{
	display: block;
	position: absolute;
	background: #6085ff;
	padding: 5px 10px;
	color: white;
	min-height: 0 !important;
	top: -40px;
    left: -6px;
	}


/* table styles */
.comparison-table {
	display: flex;
	flex-direction: column;
	width: 100%;
	margin: 0 auto;
}

.comparison-table > .row {
	display: flex;
	flex-direction: row;
	align-items: center;
	border: 1px solid lightgray;
	border-top: none;
	padding: 15px 0;
	margin: 0;
}

.comparison-table img {
	max-width: 100px;
}

.comparison-table .image{
	flex: 25%;
}

.comparison-table .check-price {
	flex: 35%;
	}

.comparison-table .product-details {
	flex: 40%;
	text-align: center;
}

.image, .check-price {
	text-align: center;
}

.badge {
	display: inline-block;
	color: red;
	font-size: 12px;
	text-transform: uppercase;
	padding: 3px 20px;
	border-radius: 5px;
	border: 1px solid red;
	font-weight: bold;
	text-align: center;
}

.check-price a,
.check-price a:visited {
	background: red;
	text-decoration: none !important;
	color: white !important;
	border-radius: 2px;
	box-shadow: none;
	padding: 10px 25px;
	transition: none;
	font-weight: bold;
}

.check-price a:hover {
	box-shadow: none;
}

.product-name a,
.product-name a:visited{
	text-decoration: none;
	box-shadow: none;
	transition: none;
	color: red;
	font-size: 20px;
	margin: 5px 0;
}

.product-name a:hover {
	box-shadow: none;
	text-decoration: none;
}

.comparison-table ul {
	margin-left: 20px;
	margin-bottom: 0;
	text-align: left;
}

.comparison-table .header-row {
	background: black;
	color: white;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	font-weight: bold;
	text-transform: uppercase;
	padding: 5px 0;
}

.divider {
	padding: 0 10px;
}

@media screen and (max-width: 956px) {
	.comparison-table > .row {
		display: block;
		padding: 20px;
	}
	
	.row.header-row {
		display: none;
	}
	
	.comparison-table > .row:nth-child(2) {
		border-top: 1px solid lightgray;
	}
	
	.product-details {
		text-align: center;
	}
	
	.product-details ul {
		text-align: left;
	}
	
	.check-price {
		margin-top: 20px;
		margin-bottom: 20px;
	}
	
}

@media screen and (max-width: 850px) {
	.comparison-table {
		width: 100%;
	}
}

@media screen and (max-width: 767px) {
	.comparison-table,
.two-products.comparison-table  {
		width: 100%;
	}
	
	.two-products.comparison-table .column .cell:last-child a {
		display: block;
	}
}


