/*--------------------------------------------------------------
## Colors and Fonts
COLORS:
  Grey: #c5c2bf, rgba(197,194,191,1)
  Dark Blue: #2e364b, rgba(46,54,75,1)
  Pink: #967279, rgba(150,114,121,1)
  Dark Pink: #651424, rgba(101,20,36,1)

FONTS:
	HEADINGS/LINKS	=	font-family: 'Kameron', serif; (Available only in 700 weight)
	BODY TEXT 		=	font-family: 'Open Sans', sans-serif; (Available only regular font, standard weight)

## Begin general styles (dev only, final deployed in style.css
--------------------------------------------------------------*/
.edit-link {
  display: none;
}
::-webkit-scrollbar {
  -webkit-appearance: none;
}
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: initial; 
  border: 0;
}

::-webkit-scrollbar-thumb {
  background: rgba(46,54,75,1); 
  border: 0;
  height:50px;
  border-radius:5px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(46,54,75,1); 
}
.ga-playlist::-webkit-scrollbar-thumb {
  background: rgba(197,194,191,1); 
  border: 0;
}

.ga-playlist::-webkit-scrollbar-thumb:hover {
  background: rgba(197,194,191,1); 
}

.site-footer {
  display: none;
}

.poster {
  background-image: url("img/backdrop-photo-2.jpg");
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: -9999;
}
.site-header {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 10vh;
  display: flex;
  background-color: rgba(46,54,75,1);
}
.site-branding {
  width: 95%;
  margin: auto;
  text-align: center;
}
.main-navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 0;
  left: 0;
  right:0;
  height: 70px;
  background-color: rgba(197,194,191,1);
  z-index: 9999;
}
.main-navigation ul {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
}
.main-navigation ul li {
  padding: 0 0.8rem 0 0;
}
.main-navigation ul li:last-child {
  padding: 0;
}
.main-navigation a {
  font-family: 'Kameron', serif;
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
  color: rgba(46,54,75,1);
  font-size: 0.9em;
}

/* ----- Content ----- */
.site-content {
  margin-top: 11vh;
}
.test-class {
  position: absolute;
  width: 100%;
  height: 35%;
  bottom: 123px;
  left: 0;
  color: rgba(46,54,75,1);
  overflow: auto;
  z-index: -99;
  background-color: rgba(197,194,191,1);
  border-radius: 3px;
  padding: 0 3%;
  border: 20px solid rgba(197,194,191,1);
}
.new-ep {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  margin: 0;
}
.new-ep .entry-header {
  width: 40%;
  font-size: 1.2em;
}
.new-ep .entry-header h2 {
  margin: 0;
}
.new-ep .entry-content {
  width: 50%;
  margin: 0;
}
.page-title,
.page .entry-title,
.single .entry-title {
  margin: 0;
  text-align: center;
  border-bottom: 1px solid rgba(46,54,75,1);
  margin-bottom: 1em;
}
.page-title a {
  color: rgba(46,54,75,1);
  font-size: 0.8em;
}
.next-show {
  display: none;
}
.shows .entry-title {
  font-size: 1.5em;
  text-align: center;
  margin-bottom: 0;
  font-family: 'Kameron', serif;
  font-weight: bold;
  text-decoration: none;
  color: rgba(46,54,75,1);
}
.shows-info {
  text-align: center;
}
.shows-info a {
  color: rgba(101,20,36,1);
}
.shows-info h2,
.shows-info p {
  margin: 0;
  line-height: 1;
}
.date-time {
  font-weight: bold;
  font-size: 0.8em;
}
.shows-info .venue-name {
  color: rgba(101,20,36,1);
  margin: .5em 0;
}
.shows-info .venue-address {
  color: rgba(46,54,75,1);
}
.shows-info .directions {
  margin: .5em;
  font-weight: bold;
  text-decoration: underline;
}

.bios .entry-title {
  margin-bottom: 0;
}
.bios .entry-content {
  width: 90%;
  margin: 0 auto;
}

/* ----- Playlist ----- */
.ga-playlist {
  position: fixed;
  bottom: 70px;
  width: 100%;
  height: auto;
  z-index: 999999;
  background-color: rgba(46,54,75,1);
  color: rgba(197,194,191,1);
}
.ga-playlist a {
  color: rgba(197,194,191,1);
}
.ga-playlist .post {
  margin: 0;
}
.player-wrap {
  width: 100%;
  padding: 1em 0.8em;
}
.ga-playlist .player {
  color: rgba(197,194,191,1);
  display: flex;
  flex-flow: row nowrap;
  align-content: center;
  justify-content: space-between;
}
.player .title-text {
  color: rgba(197,194,191,1);
  font-size: .9em;
  margin: 0;
}
.player .controls {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
}
.control-item {
  padding: 0 0 0 1em;
  font-size: 0.9em;
}
.pause-button {
  display: none;
}
.playlist-wrap {
  display: none;
  overflow: auto;
  text-align: center;
}
.playlist-wrap h2 {
  font-size: 1.2em;
  color: rgba(197,194,191,1);
  margin: 0.5em 0;
  border-bottom: 1px solid rgba(197,194,191,1);
}
.playlist-wrap ol {
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 0 0 0 1.2em;;
}
.playlist-wrap ol li {
  font-size: 1em;
  font-weight: 700;
  padding: 0 0 10px 0;
}
.playlist-wrap ol li.sel {
  font-weight: 900;
  text-decoration: underline;
}
input[type=range] {
  height: 25px;
  -webkit-appearance: none;
  margin: 10px 0;
  width: auto;
  background: transparent;
  border: 0;
}
input[type=range]:focus {
  outline: none;
}
input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 5px;
  cursor: pointer;
  animate: 0.2s;
  box-shadow: 0px 0px 0px #000000;
  background: rgba(197,194,191,1);
  border-radius: 1px;
  border: 0px solid #000000;
}
input[type=range]::-webkit-slider-thumb {
  box-shadow: 0px 0px 0px #999999;
  border: 1px solid #999999;
  height: 18px;
  width: 18px;
  border-radius: 25px;
  background: #DDDECF;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -7px;
}
input[type=range]:focus::-webkit-slider-runnable-track {
  background: rgba(197,194,191,1);
}
input[type=range]::-moz-range-track {
  width: 100%;
  height: 5px;
  cursor: pointer;
  animate: 0.2s;
  box-shadow: 0px 0px 0px #000000;
  background: rgba(197,194,191,1);
  border-radius: 1px;
  border: 0px solid #000000;
}
input[type=range]::-moz-range-thumb {
  box-shadow: 0px 0px 0px #999999;
  border: 1px solid #999999;
  height: 18px;
  width: 18px;
  border-radius: 25px;
  background: #DDDECF;
  cursor: pointer;
}
input[type=range]::-ms-track {
  width: 100%;
  height: 5px;
  cursor: pointer;
  animate: 0.2s;
  background: transparent;
  border-color: transparent;
  color: transparent;
}
input[type=range]::-ms-fill-lower {
  background: #DDDECF;
  border: 0px solid #000000;
  border-radius: 2px;
  box-shadow: 0px 0px 0px #000000;
}
input[type=range]::-ms-fill-upper {
  background: #DDDECF;
  border: 0px solid #000000;
  border-radius: 2px;
  box-shadow: 0px 0px 0px #000000;
}
input[type=range]::-ms-thumb {
  margin-top: 1px;
  box-shadow: 0px 0px 0px #999999;
  border: 1px solid #999999;
  height: 18px;
  width: 18px;
  border-radius: 25px;
  background: #DDDECF;
  cursor: pointer;
}
input[type=range]:focus::-ms-fill-lower {
  background: #DDDECF;
}
input[type=range]:focus::-ms-fill-upper {
  background: #DDDECF;
}