
/* app main styles */

* {
	box-sizing: border-box;
}
body{
	word-spacing: 0.2em;
	letter-spacing: 2px;
	background-color: #fffdf1;
	color: #402f21;
	font-family: 'Roboto Slab', Serif;
	
}
h1 {
	color: #223c44;
	font-family: 'corpse', serif;
	font-size: 45px;
	font-weight: bold;
	line-height: 60px;
	text-align: center;
	margin-top:30px;
}
h2 {
	font-size: 32px;
	line-height: 35px;
	color: #223c44;
	text-align: center;
}
h3[name="22"]{
	font-size: 14px;
	text-align: center;
}
p {
	font-size: 18px;
	line-height: 30px;
	padding-top:15px;
	padding-bottom:15px;
	-ms-word-break: break-all;
	word-break: normal;
	-webkit-hyphens: auto;
	-moz-hyphens: auto;
	hyphens: auto;

}
blockquote {
	line-height: 28px;
}
img {
	width:100%;
	}
ul[data-type="slide"]{
	list-style: none;
	display:flex;
	padding-top:15px;
	padding-bottom: 15px;
	width: 50%;
	float: right;
	clear: right;
}
ul[data-type="slide"] li {
	padding:5px;
}

span[name="3"], span[name="7"], span[name="9"], span[name="12"], span[name="15"],
span[name="18"], span[name="20"], span[name="21"], span[name="23"] {
	background-image: url(./../images/icons/mike.png);
	background-repeat: no-repeat;
	width: 75px;
	height:75px;
	background-size: contain;
	float: right;
	clear: left;
	padding: 15px;
	cursor: pointer;
}
span[name="21"], span[name="12"]{
	float:left !important;
}
p[name="2"] div {
	font-weight: bold;
}
/* LAYOUT STYLES */
.page-header {
	border-bottom:none;
}
.nav-wrap {
	border-top: 1px solid #402f21;
	border-bottom: 1px solid #402f21;
	margin-top: 20px;
}
.main-nav {
	max-width:360px;
}
.nav-pills > li > a {
	color: #402f21 !important;
}
#page-wrap {
	border: 2px solid beige;
}

#page {
	/*display: grid;
	grid-template-columns: auto auto auto;
	grid-gap: 10px;
	border: 1px solid #402f21;
	margin-top: 15px;*/
}

.center {
	grid-column-start: 1;

	grid-column-end: 5;
}

.left {
	grid-column-start: 1;

	grid-column-end: 4;
}

.right {
	grid-column-start: 4;
	grid-column-end: 5;
}



/*====================================================
Vendor overwrites for lightgallery styles
========================================================
*/
.lg-outer {
  background-color: rgba(255, 255, 255, 1);
}

.lg-toolbar, .lg-prev, .lg-next {
  background-color: #fff !important;
}
.lg-icon{
  color: #822d1a !important;
}
.lg-icon:hover {
  color: #F9A01F !important;
}
.lg-sub-html{
  color: #888 !important;
  background-color: #fff !important;
}


/*====================================================
Player Styles
========================================================
*/

/* TODO: need media query to handle width for diff devices;*/
.widgets {
	position: fixed;
	bottom: 10px;
	right: 25px;

}

#player {
	background: #5a452e;
	padding: 15px;
	height: 220px;
	width: 25em;
	color: #fffdf1;
	margin-right: -15px;
}

#player #timer {
	position:absolute;
	width:100%;
}

#player #duration {
	right: 0px;
	position: absolute;
}

#player #playBtn{
	background-image: url('./../images/player/play.png');
	background-repeat: no-repeat;
	background-size: contain; 
	width: 100px;
	height: 100px;
	position: absolute;
	top: 0px;
	left: 34%;
}

#player #pauseBtn{
	background-image: url('./../images/player/pause.png');
	background-repeat: no-repeat;
	background-size: contain; 
	width: 100px;
	height: 100px;
	position: absolute;
	top: 0px;
	left: 34%;
	display: none;
}

#track{
	position: absolute;
	bottom: 20px;
}
#waveform {
	display:none;
	position:absolute;
	top:75%;
}

/* Loading */
#loading {
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -35px;
  width: 70px;
  height: 70px;
  background-color: #fff;
  border-radius: 100%;  
  -webkit-animation: sk-scaleout 1.0s infinite ease-in-out;
  animation: sk-scaleout 1.0s infinite ease-in-out;
  display: none;
}
@-webkit-keyframes sk-scaleout {
  0% { -webkit-transform: scale(0) }
  100% {
    -webkit-transform: scale(1.0);
    opacity: 0;
  }
}
@keyframes sk-scaleout {
  0% { 
    -webkit-transform: scale(0);
    transform: scale(0);
  } 100% {
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
    opacity: 0;
  }
}