body {
  background: transparent;
  font-family: 'Roboto', sans-serif;
  font-weight:400;
  font-size: 16px;
  color:#F5f5f5;
}

h1, h2, h3, h4, h5, h6 {color:#f5f5f5;font-family: 'Archivo Black', sans-serif;}

h1 span {
  font-size:1.5em;
}
a, a:hover, a:active, a:visited {text-decoration: none;}
a {color: #FFFFFF;}

.logo-folcore {
  width:100px;
  position: absolute;
  z-index: 5;
  bottom:30px;
  right:30px;
}
.logo-folcore img {
  max-width:100%;
  height:auto;
  display:block;

}
.background-image {
  position: fixed;
  top: -30px;
  bottom:  -30px;
  left:-30px;
  right:-30px;
  background-size: cover;
  background-position: center;
  display: block;
  filter: blur(15px);
  -webkit-filter: blur(15px);
  z-index: -1;
}
.back-color {
  position: fixed;
  top: 0;
  bottom:  0;
  left:0;
  right:0;
  z-index: -2;
}
.cover {
  box-shadow: 0 0 15px rgba(0,0,0,0.35);
}
.stores {
  margin-top: 30px;
  list-style: none;
  padding-left:0;
  margin-left:0;
}
.stores li {
  display: inline-block;
  padding: 0 15px 15px 0;
}
.player-info p {
  margin: 0;padding: 0;
}
.player-info {
  position: absolute;
  font-size: 10px;
  top: 10px;
  right: 10px;
  text-shadow: 0 0 5px rgba(0,0,0,0.35);
  background: rgba(0,0,0,0.35);
  border-radius: 4px;
  padding: 5px 11px;
}
.player-info  ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.player-info ul li {
  display: inline-block;
  padding-right:10px;
}
.player-info  i {
  font-size:9px;
}
.play-state.paused i.play {
  display:none;
}
.play-state:not(.paused) i.pause {
  display:none;
}

/* platform links */

.platform img {
  opacity: 0.85;
  transition:all linear .2s;
}
.platform:hover img {
  opacity: 1;
}
img.deezer {
    max-height: 19px;
}
img.bandcamp {
    max-height: 24px;
}
img.itunes {
    position: relative;
    top: -6px;
}
img.guvera {
    position: relative;
    top: 12px;
}

/* custom player */

iframe { display: none; }

.player {
  cursor: pointer;
  position: absolute;
  /* top: 0;  */
  bottom: 0;
  margin: auto;
  height: 3px;
  width: 100%;


  background-color: rgba(0,0,0,0.75);
  background-size: cover;
  background-position: center;
  transition: background-image 1s linear;
  transition: height 1s linear;
}
.player:hover {
  height:30px;
  transition: height 0.25s linear;
}

.waveform {
  z-index: 3;
  position: absolute;
  /* top: 0;*/
  bottom: 0;
  left: 0;
  right: 0;
  background-size: 100% 100%;
  transition: background-image 1s linear;
}

.position {
  opacity: 0.95;
  position: absolute;
  height: 100%;
  width: 0;

  background-color: red;
  transition: width .01s linear;
  /*mix-blend-mode: overlay;*/
  box-shadow: 0 0 5px rgba(255,0,0,0.8);
}

.info {
  user-select: none;
  z-index: 5;
  position: absolute;
  height: 25px;
  width: 100%;
  /* top: 0;*/
  bottom: 0;
  margin: auto;
  font-size: 0.8em;

  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;

  color: white;
  mix-blend-mode: difference;
}
.mobilePlayer {
  display: none;
}

/* MENU */

aside {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: -webkit-linear-gradient(250deg, #27156E, #6A2A88, #9F4981);
  background: linear-gradient(200deg, #27156E, #6A2A88, #9F4981);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
  z-index: 999;
}

.open {
  opacity: 1;
  visibility: visible;
}

nav {
  text-align: center;
  height: 95vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
nav ul {
  margin: 0;
  padding: 0;
  list-style: none;

}
nav ul li {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
              line-height: 8vh;
}
nav ul li a {
  font-size: 1.2em;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  display: block;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.5);
}
nav ul li a:hover {
  color: rgba(255, 255, 255, 0.9);
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
nav ul li a:hover:before {
  visibility: visible;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
nav ul li a:before {
  content: "";
  position: absolute;
  width: 50%;
  height: 2px;
  bottom: 0;
  left: 25%;
  background: white;
  visibility: hidden;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

@media screen and (min-width: 600px) {
  nav ul li a {
    font-size: 1.35em;
  }
}

button {
    padding: 10px;
    background: transparent;
    color: white;
    border: 0;
    outline: 0;
    font-size: 1em;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
    position: absolute;
    left: 0;
    top: 5px;
    z-index: 2;
}

button:hover {
  cursor: pointer;
  border: 0;
  outline:0;
}

.close {
  position: fixed;
  top: 40px;
  right: 60px;
  color: white;
  z-index: 3;
  cursor: pointer;
  font-family: sans-serif;
}
.close span,
.close span:before,
.close span:after {
  border-radius: 4px;
  height: 5px;
  width: 35px;
  background: white;
  position: absolute;
  display: block;
  content: '';
}
.close span {
  background: transparent;
}
.close span:before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.close span:after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.outer-close {
  position: absolute;
  right: 0;
  top: 0;
  width: 85px;
  height: 85px;
  cursor: pointer;
}

/* END: MENU ;*/

/** media queries **/

@media (max-width:767px) {
  .uk-height-viewport {
    padding-top:35px;
    height: calc(100vh - 40px)!important;
    min-height: 0!important;
  }
  small {
    display:none;
  }
  button {
    padding: 10px;
    background: transparent;
    color: white;
    border: 0;
    outline:0;
    font-size:1.5em;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
    position:absolute;
    left:20px;
    top:10px;
    z-index:2;
  }
  .logo-folcore {
    width: 72px;
    position: absolute;
    z-index: 5;
    top: 23px;
    left: 50%;
    height: 30px;
    margin-left:-36px;
  }
  body {
    font-size:12px;
  }
  h1, h1 span {
    margin-top:10px;
    margin-bottom:0;
    font-size:15px;
    line-height: 18px
  }
  h1 br {display:none;}
  h1 span:before{
    content:"- ";
  }
  .background-image {
    top:0;
    left:0;
    right:0;
    bottom:0;
  }
  .cover {
    margin-top:-40px;
  }
  .platform img {
    max-height: 19px;
    opacity:1;
    padding:0 5px 5px 0;
  }
  h3 {
    /*margin:5px 0;
    font-size: 12px;
    line-height: 14px;*/
    display: none;
  }
  .stores {
    margin: 5px 0;
  }

  .stores li {
    display: inline-block;
    padding: 0 5px 5px 0;
  }
  ol {
    display:none;
  }
  .player-info{
    display: none;
  }
  .mobilePlayer {
    margin-top: 10px;
    display: block;
    /*
    margin-top: 10px;
    display: block;
    position: absolute;
    top: 50px;
    left: 50%;
    margin-left: -63px;
    */
  }
  .mobilePlayer a {
    display: inline-block;
    width: 30px;
    height: 30px;
    background:rgba(0,0,0,0.5);
    border-radius:4px;
    text-align: center;
    line-height: 30px;
  }
  .mobilePlayer a:hover, .mobilePlayer a:active {
    color:#FF0000;
  }
  .info {
    font-size:0.85em!important;
  }
  .platform img {
    max-width: 55px!important;
  }
  img.itunes{
    top:0;
    }
  nav ul li a {
    font-size: 1.15em;
    line-height: 120%;
    padding: 7px 30px;
  }
}
