/*
Title: "Pink Gold" responsive styles
Date Modified: 10/12/2016
Date Created: 9/12/2016
--
Author: Keith Link
Contact: http://keithalink/contact
--
Table of Contents:
	layout
	navigation
	typography
	alignment
	misc
*/


/* layout 
------------------------------------- */

/* fix box model */
*, *:before, *:after {
	-webkit-box-sizing: border-box; 
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	}


html {
	height: 100%;
	min-height: 100%;
	}

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

body {
	background: #555;
	position: relative;
	}


/* 12 column grid */	
.section, 
.row {
	clear: both;
	margin: 0;
	padding: 0;
	
	overflow: hidden;
	}

.column {
	position: relative;
	width: 25%;
	
	float: left;
	margin: 0;
	padding: 0;
	
	/* for testing */
	/* background-color: rgba(50,50,50,0.05); */
	}

.column-content {
	position: relative;
	padding: 15px;
}

.column {
	width: 8.33%;
	}

.column.span2 {
	width: 16.66%;
	}

.column.span3 {
	width: 24.99%;
	}
	
.column.span4 {
	width: 33.32%;
	}
	
.column.span5 {
	width: 41.65%;
	}
	
.column.span6 {
	width: 49.98%;
	}
	
.column.span7 {
	width: 58.31%;
	}
	
.column.span8 {
	width: 66.64%;
	}
	
.column.span9 {
	width: 74.97%;
	}
	
.column.span10 {
	width: 83.3%;
	}
	
.column.span11 {
	width: 91.63%;
	}
	
.column.span12 {
	width: 99.96%;
	}



/* main content */
[class^="page-"] {
	position: relative;
	max-width: 100%;
	margin: 0 auto;
	padding: 0;
	overflow: hidden;
	}

.full-width {
	position: relative;
	max-width: 100%;
	margin: 0 auto;
	padding: 0;
	overflow: hidden;
	}

.main-header {
	margin: 0 auto;
	
	position: fixed; /* fixed */
	top: 0;
	left: 0;
	right: 0;
	background: #000;
	height: 45px;
	color: #fff;
	}

.page {
	margin: 50px auto 0;
	padding: 0;
	}
	
.page-footer {
	font-size: 12px;
	text-align: center; 
	padding: 15px;
	}

.page-footer small {
	font-size: 10px;
	}

.page-main .page-header {
	margin: 10px;
	}




#app-container {
	position: relative;
	}




/* == Pages ==  */

/* Splash */
.state-splash {
	background: #ef4914;
	box-shadow: inset 0 0 100px rgba(215,11,3,0.95);
	height: 100%;
	min-height: 100%;
	}

.state-splash #app-container, 
#splash {
	position: relative;
	height: 100%;	
	overflow: hidden;
	}

#splash .brand-splash {
	height: 100%;
	}

#splash .brand-splash img {
	display: block;
  
	position: absolute;
	top: 40%;
	bottom: 60%;
	left: 0;
	right: 0;
	margin: auto;
  
	max-width: 180px !important;
	height: auto;
	}





/* Newsletter */
#newsletter, 
.status-message {
	max-width: 323px;
	margin: 0 auto;
	}

#newsletter fieldset {
	border: none;
	margin: 0;
	padding: 0;
	}

#newsletter input.text-input, 
.status-message {
	-webkit-appearance: none;
	appearance: none;
	outline: none;
	border-radius: none;
	appearance: none;
	border: none;
	background-color: #a5c4c6;
	color: #000;
	width: 100%;
	font-size: 16px;
	margin: 0;
	padding: .5em;
	}

.status-message {
	display: block;
	clear: both;
	background-color: #00bbd2;
	color: #fff;
	text-align: center;
	margin: .25em auto;
	}

#newsletter-fail.status-message {
	background-color: #FFA736;
	color: #000;
	}

#newsletter .text-input:focus {
	background-color: #f7f7f7;
	color: #000;
	}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
	color: #ccc;
	}
::-moz-placeholder { /* Firefox 19+ */
	color: #ccc;
	}
:-ms-input-placeholder { /* IE 10+ */
	color: #ccc;
	}
:-moz-placeholder { /* Firefox 18- */
	color: #ccc;
	}


/* Contact form */
form {
	max-width: 540px;
	margin: 15px auto;
	}

form label {
	display: inline-block;
	text-align: left !important;
	font-weight: bold;
	}

form .button {
	display: block;
	margin: 15px auto;
	text-align: center;
	}

.field-group {
	margin: 10px auto;
	clear: both;
	overflow: hidden;
	}

input[type="text"], 
input[type="phone"], 
input[type="email"], 
input[type="url"],
input[type="password"],
textarea {
	-webkit-appearance: none;
	appearance: none;
	outline: none;
	width: 100%;
	background: #fff;
	border: 2px solid rgba(0,0,0,0.25);
	border-radius: 3px;
	padding: 5px 10px;
	}
	
.form-message {
	margin: 15px auto;
	padding: .5em;
	border: 1px solid rgba(0,0,0,0.05);
	border-radius: 3px;
	font-size: 14px;
	color: #333;
	padding-left: 48px;
	position: relative;
	}

.form-message .fa {
	margin-right: .5em;
	font-size: 24px;
	
	position: absolute;
	left: 15px;
	top: 15px;
	}

.bg-success, 
.bg-warning {
	position: relative;
	max-width: 540px;
	}

.bg-success {
    background-color: #dff0d8;
	}
	
.bg-warning {
    background-color: #fcf8e3;
	}

.has-success input, 
.has-success textarea {
    border-color: #3c763d;
	}
	
.has-error input, 
.has-error textarea {
    border-color: #a94442;
	}
	
.text-success {
	color: #3c763d;
	}

.text-warning {
	color: #8a6d3b;
	}

.required-label {
	color: #a94442;
	}



/* lists */
ul {
	list-style-type: square;
	}

ol {
	list-style-type: decimal;
	}

li {
	padding-bottom: 1em;
	}

.no-bullet {
	list-style-type: none;
	margin-left: 0;
	padding: 0;
	}

.list-horz {
	/* overflow: hidden; */
	clear: both;
	}

.list-horz li {
	float: left;
	margin-right: 15px;
	}

.list-vert {
	overflow: visible;
	}

.list-vert li {
	float: none;
	margin-right: 15px;
	}

.last {
	margin-right: 0;
	}

dd {
	margin: 0 0 1.4em 15px;
	}

figure {
	background-color: #fff;
	overflow: hidden;
	margin: 0;
	padding: 0;
	}


figure img {

	}



#chapter-list ol, 
#book-list ul {
	margin: 15px 0 0;
	padding: 0;
	list-style-position: inside;
}

#book-list ul {
	list-style-position: inside;
	list-style-type: none;
}

#chapter-list li, 
#book-list li {
	border-top: 1px solid rgba(0,0,0,0.15);
	margin: 0;
	padding: 0;
	color: #afafaf;
}

#chapter-list li:last-child, 
#book-list li:last-child {
	border-bottom: 1px solid rgba(0,0,0,0.15);
}

#chapter-list li a, 
#book-list li a {
	display: block;
	color: #afafaf;
	font-size: 16px;
	padding: 10px 10px;
}

#chapter-list .chapter-title, 
#book-list .book-title {
	display: block;
	color: #f7f7f7;
}

#chapter-list .chapter-desc, 
#book-list .book-desc {
	display: block;
	color: #afafaf;
	font-size: 12px;
}

#chapter-list li a:hover, 
#book-list li a:hover {
	background: rgba(255,255,255,0.15);
	}

#chapter-list li a:hover .chapter-title, 
#chapter-list li a:active .chapter-title, 
#book-list li a:hover .book-title, 
#book-list li a:active .book-title {
	color: #fff;
}



	
/* navigation 
------------------------------------- */
a, 
a:link, 
a:hover,
a:active, 
a:visited {
	color: #00bbd2;
	text-decoration: none;
	
	-o-transition:.2s;
	-ms-transition:.2s;
	-moz-transition:.2s;
	-webkit-transition:.2s;
	transition:.2s;
	
	cursor: pointer;
	}

a:hover {
	color: #00bbd2;
	text-decoration: none;
	}

:link:focus, 
:visited:focus { 
	outline: none;
	} 

.button {
	padding: 15px 15px 17px;
	display: block;
	font-size: 18px;
	font-weight: 400;
	text-align: center;
	color: #fff !important;
	background-color: #75ccae;
	border: none;
	border-radius: 0px;
	margin: 15px auto;
	width: 100%;
	outline: none;
	-webkit-appearance: none;
	appearance: none;
	}

.button:hover {
	background-color: #8bcb72;
	}


.player-controls {
	z-index: 10;
	position: fixed; /* fixed */
	bottom: 50px;
	left: 0;
	right: 0;

	background-color: rgba(50,50,50,0.95);
	text-align: center;
}

.player-controls .fa {
	cursor: pointer;
	text-align: center;
}

.player-controls .play {
	display: inline-block;
	color: #fff;
	font-size: 86px;
	text-align: center;
	}

.player-controls .play-rewind, 
.player-controls .play-forward {
	position: relative;
	bottom: 20px;
	display: inline-block;
	color: #999;
	font-size: 32px;
	text-align: center;
	margin: 0 25px;
	}


/* typography 
------------------------------------- */
body {
	font: normal 16px/1.3em Lato, "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-weight: 300;
	color: #999;
	}

h1, h2, h3, h4 {
	font-weight: 300;
	line-height: 1.2;
	}

h1 {
	font-size: 28px; 
	margin: .75em 0 0;
	}

#branding h1 {
	font-size: 36px; 
	font-weight: 700;
	margin: 0;
	padding: 0;
	color: #900;
	}

.main-header h1 {
	padding: 2px 10px;
	font-size: 16px;
	font-weight: 300;
	color: #f7f7f7;
	line-height: 1;
	}

.main-header h1 a {
	color: #f7f7f7;
	}

.page-header h1 {
	margin: 0;
	}

h2 {
	font-size: 28px; 
	font-weight: 500;
	margin: 1.25em 0 0;
	color: #900;
	}

h2 a {
	color: #900 !important;
	border-bottom: 1px dotted rgba(0,0,0,0.25);
	}

h2 small {
	color: #333;
	font-size: 18px; 
	}
	
h3 {
	font-size: 16px; 
	margin-bottom: 0px;
	}
	
h4 {
	font-size: 16px; 
	margin-bottom: 0px;
	}

.column.featured .featured-heading {
	font-size: 28px; 
	font-weight: 400;
	margin: 100px 0 0;	
	}


.lead-in {
	color: #000;
	font-size: 18px;
	line-height: 1.3;
	}


.text-align-center {
	text-align: center;
	}

.text-align-left {
	text-align: left;
	}
	
.text-align-right {
	text-align: right;
	}


/* Font Icons */
#splash .fa-spinner {
	color: #fff;
	}


.main-header .nav-previous .fa {
	margin: 5px 10px;
	color: #f7f7f7;
	font-size: 32px;
	}



/* alignment
------------------------------------- */

.align-left, 
.pad-left {
	float: left;
	}

.pad-left {
	margin: 0 15px 10px 0;
	}

.align-right, 
.pad-right {
	float: right;
	}

.pad-right {
	margin: 0 0 10px 15px;
	}

.align-center, 
.pad-center {
	text-align: center;
	margin: 0 auto;
	}

.pad-center {
	margin: 15px auto;
	}

.clear {
	clear: both;
	}


/* misc
------------------------------------- */

.truncate-ellipsis {
    display: table;
    table-layout: fixed;
    width: 100%;
    white-space: nowrap;
	}
 
.truncate-ellipsis > * {
    display: table-cell;
    overflow: hidden;
    text-overflow: ellipsis;
	}

/*
input, textarea {
	-webkit-appearance: none;
	border-radius: 0;
	border: none;
	}
*/

textarea {
   resize: none;
}


.hide {
	display: none !important;
	}

.show {
	display: block !important;
	}

.footnote {
	margin-top: 35px;
	font-size: 12px;
	line-height: 1.5em;
	color: #666666;
	}

img {
	max-width: 100% !important;
	height: auto !important;
	}

img, a img {
	border: 0;
	border: none;
	text-decoration: none;
	}

.border {
	border: 1px solid #ccc;
	}

.no-border {
	border-color: transparent;
	}

.inline {
	display: inline;
	}

hr {
	border: none;
	border-bottom: 1px solid #dedede;
	margin: 25px auto;
	width: 100%;
	}

.nobr {
	white-space: nowrap;
	}

.disabled, 
input[disabled][type=submit], 
input[disabled=disabled][type=submit] {
    pointer-events: none;
    opacity: 0.5;
	}
	
	




	
/* Extending Font Awesome styles */

.fa-spin.rotate-1x {
  -webkit-animation: fa-spin 1s 1 linear;
  -moz-animation: fa-spin 1s 1 linear;
  -o-animation: fa-spin 1s 1 linear;
  animation: fa-spin 1s 1 linear;
}


.fa-counter-spin {
  -webkit-animation: spin-counter 2s infinite linear;
  -moz-animation: spin-counter 2s infinite linear;
  -o-animation: spin-counter 2s infinite linear;
  animation: spin-counter 2s infinite linear;
}

.fa-counter-spin.rotate-1x {
  -webkit-animation: spin-counter 1s 1 linear;
  -moz-animation: spin-counter 1s 1 linear;
  -o-animation: spin-counter 1s 1 linear;
  animation: spin-counter 1s 1 linear;
}


@-moz-keyframes spin-counter {
  0% {
    -moz-transform: rotate(359deg);
  }
  100% {
    -moz-transform: rotate(0deg);
  }
}
@-webkit-keyframes spin-counter {
  0% {
    -webkit-transform: rotate(359deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
  }
}
@-o-keyframes spin-counter {
  0% {
    -o-transform: rotate(359deg);
  }
  100% {
    -o-transform: rotate(0deg);
  }
}
@-ms-keyframes spin-counter {
  0% {
    -ms-transform: rotate(359deg);
  }
  100% {
    -ms-transform: rotate(0deg);
  }
}
@keyframes spin-counter {
  0% {
    transform: rotate(359deg);
  }
  100% {
    transform: rotate(0deg);
  }
}