/* Flip card background from thumbnail with overlay */
.wt-info.has-bg-image{ background-color:transparent !important; color:#fff; }
.wt-info.has-bg-image .wt-info-text,
.wt-info.has-bg-image .wt-info-media-zoom{ z-index:2; color:#fff; }
.wt-info .wt-info-overlay{ position:absolute; top:0; left:0; right:0; bottom:0; background:rgba(0,0,0,0.65); z-index:1; }
.wt-info{ overflow:hidden; }


/* Title overlay on thumbnail (visible before flip) */
.flip-container .wt-thum-bx {
	position: relative;
  
}
.flip-container .wt-thum-bx::before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 75%;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.5) 33%, rgba(0, 0, 0, 0.0) 100%);
	pointer-events: none;
	z-index: 1;
}
.flip-container .wt-thum-bx .wt-info-title {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 18px;
	text-align: center;
	padding: 8px 14px;
	background: transparent;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	z-index: 2;
}
.flip-container .wt-thum-bx .wt-info-title h3 {
    font-family: Roboto, sans-serif;
	margin: 0;
	color: #ffffff;
	font-size: 20px;
	line-height: 24px;
}

.flip-container .wt-thum-bx .wt-info-title p {
	margin: 0;
	color: #ffffff;
	font-size: 13px;
	line-height: 24px;
}

.flip-container .wt-thum-bx img{
	transform-style: flat;
}
.flip-container .wt-info {
	transform: rotateY(-180deg);
}

/* Show only the section title by default; reveal description + button on hover */
.flip-container .wt-info .wt-info-text h3 {
	margin: 0 0 8px 0;
}
.flip-container .wt-info .wt-info-text p,
.flip-container .wt-info .wt-info-text .site-button {
	max-height: 0;
	opacity: 0;
	overflow: hidden;
	transform: translateY(8px);
	transition: all .32s ease;
	display: block;
}
.flip-container:hover .wt-info .wt-info-text p,
.flip-container:hover .wt-info .wt-info-text .site-button {
	max-height: 400px;
	opacity: 1;
	transform: translateY(0);
}

.brands, .brands p{
    font-size: 16px;
}