/* home */
#home h2 {
  text-align:center;
}

/* Spotify player */

#spotify iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#spotify .container {
  height: 100%;
  width: 100%;
}
#spotify {
  position: fixed;
  top: 40%;
  right: 0;
  width: 18em;
  height: 24em;
  background: #7f7f7f;
  border-radius: 0.875rem;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  margin: 0;
  -webkit-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  transition: all 300ms linear;
  z-index:2;
  opacity:0;
  transform: translateX(100%);
  box-shadow: 0.5em 0.25em 0.875em rgba(0,0,0,.5);
}
.page-loaded #spotify {
  opacity: 1;
}
#spotify.open {
  transform: translateX(0);
}
#spotify .listen-button {
  display: block;
  top: 66%;
  transform: translate(-100%,-50%);
  left: 2px;
  position: absolute;
  width: 1.5em;
  height: 1.5em;
  background-color:#ec7207;
  font-size: 1.625em;
  line-height: 1;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .05em;
  transition: all .125s;
  padding: 0.3125em 0.125em 0.1875em 0.25em;
  box-sizing: border-box;
  text-align: center;
  white-space: nowrap;
  border-radius: .25em;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
#spotify .listen-button.active {
  opacity: 1;
}
.listen-button:hover {
  cursor:pointer;
  filter: brightness(1.1);
}
@media (max-width:767px) {
  #spotify {
    width:calc(100% - 2.5em);
    height: 352px;
  }
}

#spotify .close {
  width: 0.75em;
  height: 0.75em;
  margin-left: 0.125em;
  margin-top: -0.1em;
}
#spotify.open .close {
  display: block;
}
#spotify svg > * {
  fill: #ffffff;
}