/* Enter Your Custom CSS Here */

/****************/
/* Product Box */
/****************/

.top-product {
	border: 0px solid #2b3b4c;
	box-shadow: 0 0 6px 0 #999;
	border-radius: 0em;
	margin-top: 60px;
	/* Grid Fallback */
  display: flex;
  flex-wrap: wrap;
  /* Supports Grid */
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  grid-auto-rows: minmax(0px, auto);
  grid-gap: 1em;
}

.no-label-box .module {
		margin-top: 0;
}

.best-overall-box {
		border: 4px solid #2b3b4c;
}


.module {
  padding: 1rem;
	margin-top: -2em;
}

.product-image {
	place-self: center;
}



.top-product-label {
  grid-column: 1 / 3;
	justify-self: center;
	background-color: #fff;
		border: 0px solid #2b3b4c;
	color: #2b3b4c;
	padding: .4em 2em .4em 2em;
	margin-top: -1.3em;
	font-size: 20px;
	box-shadow: 0px 0px 5px 0 #999;
	font-weight: 900;
	border-radius: 0em;
	margin-bottom: 20px;
}

.best-overall-label{
		background: #2b3b4c;
		color: #fff	;
	margin-bottom: 0px;
}


.best-overall-box::after {
		grid-column: 1 / 3;
    grid-row: 2 / 3;
    content: '';
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 10px solid #2b3b4c;
    justify-self: center;
    margin-top: -1em;
}

@media (max-width: 600px) {
  .module{
		grid-column: 1 / 3;
	}
	
}

.product-title a{ 
text-decoration: underline;
}

.product-subtitle {
	font-weight: 700;
    margin-top: -.8em;
}
.short-description {
		font-size: 80%;
}
.product-button {
	background-color: #3498db;
    border-radius: .3em;
    padding: .4em;
    text-align: center;
	color: #fff;

}

.product-button:hover {
	background-color: #2b3b4c;
}



