.promo.promo-panels {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: row wrap;
	-ms-flex-wrap: row wrap;
	flex-wrap: row wrap;
}
.promo.promo-panels .grid {
	display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}
.promo-panel {
	box-sizing: border-box;
	position: relative;
	width: 100%;
	min-height: 220px;
	margin-bottom: 20px;
	overflow: hidden;
	background-color: #333;
}
.promo-panel:hover .panel-btn {
	background-color: #fff;
}
.promo-panel:hover .panel-btn:after {
	border-right: 1px solid #333;
	border-bottom: 1px solid #333;
}
.promo-panel--alt .panel-img {
	background-position: top left;
}
.promo-panel--alt .panel-content {
	float: right;
}
.promo-panel__alt .panel-content {
	width:80%;
	padding:10%;
}
.panel-img {
	position: absolute;
	top: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
	background-position: top right;
	background-size: cover;
	background-repeat: no-repeat;
	font-size: 0;
}
.panel-img:after {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	opacity: 0;
}
.panel-content {
	position: relative;
	float: left;
	width: 40%;
	padding: 4%;
	text-align: center;
}
.promo-panel.promo-panel-bottom .panel-content {
	position: absolute;
	bottom: 0;
	width: 70%;
	padding: 0 26% 0 4%;
	text-align: left;
}
.promo-panel.promo-panel-bottom .panel-content .panel-btn {
	position: absolute;
	bottom: 20px;
	right: 4%;
}
.panel-content h2 {
	border: none;
	color: #fff;
	margin-bottom: 0;
}
.panel-content p {
	color: #fff;
}
.panel-btn {
	width: 40px;
	height: 40px;
	border: 2px solid #fff;
	border-radius: 5px;
	margin: 0 auto;
	font-size: 0;
	text-indent: -9999px;
}
.panel-btn:after {
	content: "";
	display: block;
	width: 15px;
	height: 15px;
	border-right: 1px solid #cecece;
	border-bottom: 1px solid #cecece;
	position: relative;
	top: 12px;
	left:8px;
	transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
}
.promo-panel-black .panel-content h2, .promo-panel-black .panel-content p {
	color: #333;
}
.promo-panel-black .panel-btn, .promo-panel-black .panel-btn:after {
	border-color: #333;
}
.promo-panel-black .promo-panel:hover .panel-btn {
	background-color: #fff;
}
.promo-panel.promo-panel-black:hover .panel-btn {
	background-color: #333;
}
.promo-panel.promo-panel-black:hover .panel-btn:after {
	border-right: 1px solid #fff;
	border-bottom: 1px solid #fff;
}
.panel-compatibility {
	overflow: visible;
}
.panel-compatibility .panel-content {
	float: none;
	width: auto;
}
.panel-compatibility h2 {
	margin: 0;
	border: 0;
	color: #fff;
}
.panel-compatibility p {
	margin-bottom: 10px;
	color: #fff;
}
.panel-compatibility input[type=text], .panel-compatibility input[type=text]:focus {
	box-sizing: border-box;
	width: 100%;
	padding-left: 12%;
	border-color: #fff;
	border-width: 2px;
	border-radius: 5px;
	background-color: #333;
	color: #fff;
}
.ent-compatibility {
	margin: 0;
}
.ent-compatibility img {
	display: inline;
	width: 48px;
}

/* Transitions for test */

.promo-panel-transition .panel-img, .promo-panel-transition .panel-btn {
	transition: all 0.4s ease-in-out;
}
.promo-panel.promo-panel-transition.promo-panel-device:hover .panel-img {
	transform: scale(1);
}
.promo-panel.promo-panel-transition:hover .panel-img:after {
	opacity: 0.3;
}
.promo-panel.promo-panel-transition:hover .panel-img {
	transform: scale(1.1);
	box-shadow: inset 0 0 150px rgba(0,0,0,0.5);
}
.promo-panel-transition .panel-img:after {
	transition: all 0.4s ease-in-out;
}
.promo-panel-transition .panel-img--red:after {
	background-image: linear-gradient(#dadf71,#ab8400);
}
.promo-panel-transition .panel-img--blue:after {
	background-image: linear-gradient(#a1dee9,#00b0ca);
}
.promo-panel-transition .panel-img--yellow:after {
	background-image: linear-gradient(#fecb00,#c79900);
}
.promo-panel-transition .panel-img--green:after {
	background-image: linear-gradient(#eb9700,#d47600);
}

/* Device lookup */

.panel-compatibility .device-lookup {
	background-color: transparent;
}

.panel-compatibility .device-lookup.active {
	padding: 5px 0 0;
	border: 0;
}

.panel-compatibility .device-lookup.active:before {
	display: block;
	content: "";
	width: 0;
	margin: 0 auto;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-bottom: 10px solid #eee;
}

.panel-compatibility .dl-result a {
	color: #333;
	background-color: #eee;
}

.panel-compatibility .dl-result:first-child a {
	border-radius: 5px 5px 0 0;
}

.panel-compatibility .dl-result:last-child a {
	border-radius: 0 0 5px 5px;
}

.panel-compatibility .dl-result a:hover,
.panel-compatibility .dl-result a:focus {
	border: 0;
	padding: 6px 20px;
	background-color: #fff;
	font-weight: normal;
	box-shadow: none;
}

.panel-compatibility .dl-result.first a, .panel-compatibility .dl-result.last a {
	border: 0;
	padding-top: 6px;
}

/* Message */

.panel-compatibility .message {
	padding: 10px 0 0;
	margin: 0 auto;
}

.panel-compatibility .message, .panel-compatibility .message.informational, .panel-compatibility .message.error {
	border: 0;
}

.panel-compatibility .message .icon {
	background: none;
	width: 0;
	height: 0;
	margin-left: 0;
}

.panel-compatibility .message .link-list li {
	padding: 0;
}

.panel-compatibility .message .link-list a, .panel-compatibility .message .link-list a:visited {
	color: #fff;
}

.panel-compatibility .message h2 {
	display: none;
}

.panel-legal {
	position: absolute;
	bottom: 5px;
	right: 5px;
	text-align: right;
}
.panel-legal p {
	margin-bottom: 0;
	color: white;
	font-size: 8px;
}

.panel-legal p img{
	width: auto;
	vertical-align: initial;
}

@media (min-width: 768px) {
	.promo-panel.promo-panel-bottom .panel-content {
		width: 46%;
		padding-right: 50%;
	}
}

@media (max-width: 768px) {
	.promo.promo-panels {
	    -webkit-flex-flow: column wrap;
	    flex-flow: column wrap;
	}
	.panel-content {
		padding-bottom: 50px;
		padding-right: 50px;
	}
}