/*
Dark Orange: C26437;
Light Orange: FF893D;
Tan: ECD2A4;
*/

@font-face {
	font-family: Poppins-Bold;
	src: url('../fonts/Poppins-Bold.woff');
}

@font-face {
	font-family: Poppins-Light;
	src: url('../fonts/Poppins-Light.woff');
}

@font-face {
	font-family: Poppins-Medium;
	src: url('../fonts/Poppins-Medium.woff');
}

@font-face {
	font-family: Poppins-SemiBold;
	src: url('../fonts/Poppins-SemiBold.woff');
}

@font-face {
	font-family: Poppins-Regular;
	src: url('../fonts/Poppins-Regular.woff');
}

html, body {
	margin: 0;
	padding: 0;
}

body {
	font-family: Arial;
	font-size: 16pt;
}

a { 
	font-family: Poppins-Regular;
	text-decoration: none;
}

h1 {
	position: relative;
	font-family: Poppins-Bold;
	line-height: 100%;
	font-size: 140%;
	text-align: center;
	margin: 0;
}

h2 {
	font-family: Poppins-Light;
	line-height: 100%;
	margin: 0;
	font-size: 120%;
}

h3 {
	font-family: Poppins-Light;
	line-height: 100%;
	margin: 0;
	font-size: 100%;
}

#layout {
    display: -ms-flexbox;
    display: -webkit-flex;
	display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
	flex-direction: column;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
	justify-content: space-between;
	background-color: #F9F9F9;
}

.site-wrapper { 
}

.banner {
	padding: 16px 0;
	text-align: center;
	background: #ff893d;
	background: -moz-linear-gradient(top,  #ff893d 0%, #c26437 100%);
	background: -webkit-linear-gradient(top,  #ff893d 0%,#c26437 100%);
	background: linear-gradient(to bottom,  #ff893d 0%,#c26437 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff893d', endColorstr='#c26437',GradientType=0 );
	box-shadow: 0 4px 4px #CCCCCC;
	margin-bottom: 8px;
}

.banner-alt {
	padding: 16px 0;
	text-align: center;
	background-color: #ECD2A4;
	box-shadow: 0 4px 4px #CCCCCC;
	margin-bottom: 8px;
}

.banner-text {
	color: #FFFFFF;
}

.banner-alt-text {
	color: #C26437;
}

#content-logo {
	width: 70%;
	margin: 16px auto 16px auto;
}

.story-wrapper {
	color: #FFFFFF;
	background-color: #000000;
}

.story-title {
	padding: 16px 0 8px;
} 

.story-video {
	width: 75%;
	margin: 0 auto;
}

.yt-wrapper {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	height: 0;
}

.yt-wrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.content-box {
	background-color: #F6F6F6;
	box-sizing: border-box;
	margin: 0 auto;
	padding: 4%;
	max-width: 400px;
	box-shadow: -2px 2px 2px 1px rgba(0, 0, 0, 0.2);
}

.seller-link {
	display: block;
}

.seller-logo {
	display: block;
	padding: 8px 0;
	margin: 0 auto;
}

.seller-info {
    display: -ms-flexbox;
    display: -webkit-flex;
	display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
	flex-direction: column;
}

.seller-logo-redbeard {
	width: 30%;
	max-width: 140px;
	margin: 0 auto;
}

#footer {
	padding: 12px 0;
	font-family: Poppins-Light;
	font-size: 75%;
	text-align: center;
	background-color: #C6C6C6;
}

@media screen and (min-width: 960px){
	.site-wrapper {
		width: 960px;
		margin: 0 auto;
		padding: 0 20px
	}

	.tile {
		width: 100%;
		margin: 0;
		padding: 16px 4% 20px;
	    display: -ms-flexbox;
	    display: -webkit-flex;
		display: flex;
	    -webkit-justify-content: space-between;
	    -ms-flex-pack: justify;
		justify-content: space-between;
		box-sizing: border-box;
	}

	.tile .content-box {
		width: 30%;
		margin: 0;
	}

	#content-logo {
		width: 40%;
	}

	.story-video { 
		width: 40%;
	}
}