/* Player Pro overview styles.

   @file        overview.css.en

   ========================================================================== */

/* ==========================================================================
   header
   ========================================================================== */

body {
	color: #464646;
	font-family: "Source Sans Pro", Arial, Helvetica, sans-serif;
	font-size: 1.25rem;
	font-weight: 400;
}
section {
	padding: 2rem;
}
.page-wrapper {
	margin: 0 auto;
	max-width: 980px;
	width: 100%;
}
#content .wrapper {
	box-sizing: border-box;
	display: grid;
	font-size: 1.125rem;
	gap: 24px;
	grid-template-columns: 60% 40%;
	padding: 2rem 0;
}
p {
	font-size: 1.125rem;
	padding: 0 2rem 0 0;
}
p.intro {
	font-size: 1.25rem;
}
main a, main a:link {
	color: #e00400;
	outline: none;
	text-decoration: none;
}
main a:visited {
	color: #e00400;
	outline: none;
}
main a:active, main a:hover, main a:link:hover, main a:visited:hover {
	color: #bb0000;
	outline: none;
}
main h3 {
	border-bottom: 1px solid #c1c1c1;
	color: #dd1100;
	font-weight: 600;
	font-size: 1.25rem;
	margin: 2rem 0 0.5rem;
	/* width: 500px; */
}
main h3.red {
	border-bottom: 1px solid #C1C1C1;
	color: #dd1100;
	font-size: 18px;
	font-weight: bold;
	margin: 0;
	width: 500px;
}
main h2 {
	color: #dd1100;
	font-size: 24px;
	font-weight: bold;
	line-height: 27px;
}
#homepage-header {
	background: linear-gradient(to bottom, #8C0E04 0px, #B00B0A 120px, #B5090A 240px);
	padding: 0 2rem;
}
#homepage-header .page-wrapper {
	display: flex;
	align-items: center;
	gap: 2rem;
	flex-wrap: wrap;
}
#header-text {
	flex: 1 1 55%;
}
#header-image {
	flex: 1 1 38%;
}
#header-image img {
	max-width: 100%;
	height: auto;
}
#homepage-header h1 {
	color: #ed1b2f;
	font-size: 3rem;
	font-weight: 400;
	text-transform: uppercase;
}
.red-header-title {
	color: #ed1b2f;
}
.white-header-title {
	color: #ffffff;
}
.white-sub-title {
	color: #ffffff;
	display: block;
	font-size: 1.25rem;
	font-weight: 400;
	text-align: right;
}
.header-gray-text {
	color: #959595;
	font-size: 2.75rem;
	font-weight: 100;
	line-height: 44px;
	padding: 0px 10px 0px 10px;
	vertical-align: baseline;
}
#subnav {
	padding: 0 2rem;
	width: 100%;
	height: 45px;
	background: linear-gradient(to bottom, #080809 0px, #040405 40px);
	border-bottom: 5px solid #7E7E7F;
}
#subnav .page-wrapper {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	margin: 0 auto 0;
	max-width: 980px;
	box-sizing: border-box;
}
#subnav .page-wrapper>div {
	line-height: 31px;
}
#subnav a {
	display: inline-flex;
	align-items: center;
	padding: 5px 12px;
	border-radius: 6px;
	text-decoration: none;
	white-space: nowrap;
	font-size: 1rem;
	font-weight: 600;
	color: #fff;
}
#subnav a:hover {
	color: #bb0000;
}
#overviewtab {
	background: url('/player-pro/img/tabBG.gif') no-repeat bottom left / auto 100%;
}
#overviewtab a {
	background: url('/player-pro/img/tabBG.gif') no-repeat bottom right / auto 100%;
}
#logo {
	margin: 0 0 0 70px;
}
#tagline {
	margin: 5px 0 0 160px;
}
#sidebar {
	text-align: right;
}
#sidebar img.buy-now {
	margin-bottom: 30px;
}
#hp-links {
	display: grid;
	gap: 20px;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	margin: 20px auto;
	max-width: 980px;
}
.hp-item {
	align-items: center;
	display: flex;
	gap: 12px;
}
.hp-item img {
	height: auto;
	flex-shrink: 0;
}
.hp-item a {
	color: #e00400;
	font-size: 1rem;
	font-weight: 400;
	text-decoration: none;
	line-height: 1.2;
}
.hp-item a:hover {
	color: #bb0000;
}
/* ==========================================================================
   responsive breakpoint styles
   ========================================================================== */

/* styles for large screens (1200px)
   ========================================================================== */

@media all and (max-width: 1200px) {}

/* styles for medium screens (900px)
   ========================================================================== */

@media all and (max-width: 900px) {
	#homepage-header h1 {
		font-size: 2rem;
	}
	#content .wrapper {
		grid-template-columns: 100%;
		padding: 2rem 0;
	}
	#sidebar {
		order: 1;
		justify-self: unset;
		text-align: left;
	}
}
/* styles for small screens (600px)
   ========================================================================== */

@media all and (max-width: 600px) {
	#homepage-header .page-wrapper {
		flex-direction: column;
		text-align: center;
	}
	#header-text {
		order: 1;
		flex: 1 1 auto;
		margin-top: 1rem;
	}
	#header-image {
		order: 2;
		text-align: center;
	}
	#content .wrapper {
		grid-template-columns: 1fr;
	}
	#left {
		max-width: 450px;
	}
	.hp-item {
		align-items: flex-start;
	}
	.hp-item img {
		margin-bottom: 8px;
	}
}
/* styles for minimum supported screen width (320px)
   ========================================================================== */

@media all and (max-width: 320px) {}
/* printer styles
   ========================================================================== */

@media print {}