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

:root {
  font-size: calc(10px + 0.8vw);
  font-family: 'proxima-nova','Helvetica Neue',Helvetica,sans-serif;
}

#container {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

#player-bar {
  box-sizing: border-box;
  background-color: #5cb998;
  width: 30%;
  padding: 2rem;
  flex-shrink: 0;
}

#content-bar {
  flex-grow: 2;
  padding: 2rem;

  color: #444;
}

#podcast-logo {
  background: white;
  box-sizing: border-box;
  width: 100%;
  margin: 0 0 1rem 0;
  padding: 1rem;
  border-radius: 0.5rem;
}

#podcast-logo img {
  display: block;
  width: 100%;
}

img#logo-small {
  display: none;
}

#mobile-buttons {
  display: none;
}

#content-bar h2 {
  font-size: 1.4rem;
  font-weight: 300;

  margin: 0 0 1rem;
}

a {
  font-weight: bolder;
  color: #5cb998;
  text-decoration: none;
}

#content-bar strong {
  font-weight: 800;
}

#content-bar .section {
  border-top: 1px solid #ccc;
  margin-top: 1rem;
  padding-top: 1rem;
}

#content-bar h3 {
  font-size: 1rem;
  font-weight: 800;
  margin: 0 0 1rem;
}

#close-button {
  display: none;
}

.section p {
  margin-top: 0;
  font-size: 0.8rem;
  font-weight: 300;
}

a.btn-key {
  display: inline-flex;
  position: relative;
  background: linear-gradient(to bottom, rgba(228,228,229,1), #f3f4f4);
  padding: 0.5rem 0.8rem;
  border: 1px solid #d3d4d4;
  border-radius: 6px;
  box-shadow: 
    0 4px 0 #d1d2d2,
    0 4px 3px #000;
  color: #777;
  font-size: 1rem;
  font-weight: 600;
  margin-right: 0.5rem;
  margin-bottom: calc(4px + 0.5rem);

  flex-direction: row;
  align-items: center;
  column-gap: 0.5rem;
}

a.btn-key.highlight {
  background: linear-gradient(to bottom, #6de0b7, #7ff2c9);
  border: 1px solid #5dd0a7;
  box-shadow: 
    0 4px 0 #5dd0a7,
    0 4px 3px #000;
  color: #2e8868;
}

a.btn-key:hover {
  filter: brightness(0.95);
}

a.btn-key:active {
  transform: translateY(3px);
  box-shadow: 
    0 1px 0 #d1d2d2,
    0 1px 3px #000;
}

a.btn-key.highlight:active {
  transform: translateY(3px);
  box-shadow: 
    0 1px 0 #5dd0a7,
    0 1px 3px #000;
}



#buzzsprout-large-player {
  margin: 0 auto;
  box-sizing: border-box;
 /* filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.5));*/
}


/* Button Icons */

a.btn-key .icon {
  width: 25px;
  height: 25px;
}

a.btn-key .icon.speech {
  background-image: url('img/icon-speech.svg');
  background-repeat: no-repeat;
  background-size: 25px 25px;
  mix-blend-mode: multiply;
  opacity: 0.4;
}

a.btn-key .icon.play {
  background-image: url('img/icon-play.svg');
  background-repeat: no-repeat;
  background-size: 25px 25px;
  mix-blend-mode: multiply;
  opacity: 0.4;
}

a.btn-key .icon.subscribe {
  width: 25px;
  height: 30px;
  transform: translateY(2px);
  background-image: url('img/podcast-icons.svg');
  background-repeat:no-repeat;
  background-size:25px auto;
}

.subscribe.apple {
  background-position:0px 0px
}
.subscribe.spotify {
  background-position:0px -40px
}
.subscribe.stitcher {
  display:none
}
.subscribe.iheartradio {
  background-position:0px -161px
}
.subscribe.tunein {
  background-position:0px -199px
}
.subscribe.rss {
  background-position:0px -248px
}
.subscribe.overcast {
  background-position:0px -290px
}
.subscribe.pocketcasts {
  background-position:0px -331px
}
.subscribe.castro {
  background-position:0px -373px
}
.subscribe.castbox {
  background-position:0px -415px
}
.subscribe.podchaser {
  background-position:0px -457px
}
.subscribe.pandora {
  background-position:0px -498px
}
.subscribe.podcastaddict {
  background-position:0px -543px
}
.subscribe.deezer {
  background-position:0px -589px
}
.subscribe.listennotes {
  background-position:0px -633px
}
.subscribe.amazon {
  background-position:0px -675px;
  background-color: white;
}
.subscribe.playerfm {
  background-position:0px -717px
}
.subscribe.jiosaavn {
  background-position:0px -759px
}
.subscribe.gaana {
  background-position:0px -800px
}
.subscribe.podcastindex {
  background-position:0px -842px
}
.subscribe.podfriend {
  background-position:0px -884px
}
.subscribe.goodpods {
  background-position:0px -925px
}
.subscribe.youtube {
  background-position:0px -967px
}
.subscribe.youtubemusic {
  background-position:0px -1010px
}
.subscribe.truefans {
  background-position:0px -1052px
}

/* Mobile Styles */

@media (max-width: 900px) {
  #player-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: auto;
    z-index: 500;
    padding: 1.1rem;
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
  }
  #content-bar {
    background: white;
    position: absolute;
    z-index: 200;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: auto;
    opacity: 0;
    transition: opacity 250ms ease-out;
  }
  #content-bar:target {
    z-index: 1000;
    display: block;
    opacity: 1;
    transition: opacity 250ms ease-out;
  }
  #content-bar h2, #content-bar > .button-list {
    display: none;
  }
  #content-bar #close-button {
    display: block;
  }
  #content-bar #subscribe-section {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
  }
  #subscribe-section h3 {
    font-size: 1.3rem;
  }
  #content-bar #footer-section {
    display: none;
  }
  #podcast-logo {
    margin-bottom: 0;
    flex-grow: 0;
  }
  #buzzsprout-large-player {
    margin: 0;
    width: 100%;
    flex-shrink: 2;
    overflow: auto;
  }
  img#logo-small {
    display: block;
  }
  img#logo-big {
    display: none;
  }
  #mobile-buttons {
    display: block;
    flex-shrink: 0;
    flex-grow: 2;
  }
  #mobile-buttons .btn-key {
    box-sizing: border-box;
    width: 100%;
    font-size: 1.8rem;
    column-gap: 14px;
  }

}