::-webkit-scrollbar {
  width: 8px;
  background: #000;
}

::-webkit-scrollbar-thumb {
  background: grey;
}

html {
  background: #000;
}

body {
  height: 100% opacity: 1;
  transition: 2s;
  overflow-x: hidden;
}

body.fade-out {
  transition: none;
  opacity: 0;
}

section {
  position: relative;
}

a {
  text-decoration: none;
  color: #dedede;
  transition: .3s;
}

span.robot a:hover {
  color: red;
}

a:hover {
  color: white;
}

#menu_btn {
  position: fixed;
  top: 30px;
  left: 25px;
  z-index: 999;
  color: red;
  opacity: .8;
  transition: 1s;
}

#menu_btn:hover {
  opacity: 1;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: red;
  transition: 1s;
  cursor: pointer;
}

#nav {
  position: fixed;
  top: 0;
  left: -150vw;
  max-width: 100%;
  padding-right: 6em;
  height: 100vh;
  background: #f9f9f9;
  z-index: 99;
  transition: .3s;
}

.nav_show {
  transition: .3s;
  left: 0 !important;
}



.dead_center {
   position: relative;
   top: 90px;
   left: 25px;
}

.dead_center a {
  font-size: 2em;
  color: #111;
  opacity: .75;
  transition: .3s;
}
.dead_center a:hover {
  opacity: 1;
  transition: .3s;
}

.container {
  z-index: 1;
}

.arrow {
  position: absolute;
  bottom: 15%;
  left: 50%;
  display: none;
  width: 12px;
  margin-left: -6px;
  text-align: center;
}

.bounce {
  -webkit-animation: bounce;
  animation: bounce;
  -webkit-animation-delay: 1.75s;
  animation-delay: 1.75s;
}

@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }

  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}

.pulse {
  -webkit-animation: pulse;
  animation: pulse;
  -webkit-animation-delay: 1.75s;
  animation-delay: 1.75s;
}

@keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1);
  }

  30% {
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    transform: scale3d(.95, 1.05, 1);
  }

  75% {
    transform: scale3d(1.05, .95, 1);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}

.woosh {
  height: 5px;
  width: 100%;
  background: rgba(4, 105, 58, .8);
}

span.one {
  font-size: 19px;
}

span.two {
  font-size: 18px;
}

img.wedding {
  width: 100%;
  border: 3px solid rgba(0, 0, 0, .2) !important;
  padding: 2px;
}

.fadeIn1 {
  animation-name: fadeIn;
  animation-duration: 1.2s;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  animation-fill-mode: both;
}

.fadeIn2 {
  animation-name: fadeIn;
  animation-duration: 1s;
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
  animation-fill-mode: both;
}

.fadeIn3 {
  animation-name: fadeIn;
  animation-duration: 1s;
  -webkit-animation-delay: 2.8s;
  animation-delay: 2.8s;
  animation-fill-mode: both;
}

.fadeIn4 {
  animation-name: fadeIn;
  animation-duration: 1s;
  -webkit-animation-delay: 3.2s;
  animation-delay: 3.2s;
  animation-fill-mode: both;
}

.introwrap {
  height: 100vh;
  background: red;
  background: url(../images/bg.jpg) no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.intro {
  position: absolute;
  top: 49%;
  left: 50%;
  width: 480px;
  height: 180px;
  margin-top: -90px;
  margin-left: -240px;
  text-align: center;
  color: #f9f9f9;
}

.intro h1 {
  font-size: 4em;
  font-weight: 600;
}

.intro h2 {
  font-size: 2em;
}

h2.centered {
  padding-bottom: .7em;
}

hr {
  padding-top: 1em;
}

h2.yey {
  line-height: 1.4em;
}

hr.yey1 {
  margin: 45px 0;
}

hr.yey2 {
  margin: 60px auto 55px;
  width: 20%;
  display: block;
  border-top: 1px solid rgba(153, 153, 153, 0.27) !important;
}

h4.format {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 50px;
  margin-top: 70px;
}

h4.format::first-letter {
  font-size: 30px;
  font-weight: 900;
}

p.yo {
  margin-bottom: 40px;
}

ul.playa {
  margin-left: 72px;
}

form {
  color: #111;
}

label {
  color: #f9f9f9;
}

input.submit {
  margin-top: 10px;
  color: #f9f9f9;
}

input.submit:hover {
  color: #fff;
}

textarea {
  min-height: 200px;
}

.rowz {
  padding: 10em 1em;
}

.rowi {
  padding: 10em 1em 1em 1em;
}

.downer {
  padding-bottom: 8em;
}

.bands {
  margin-top: -8em;
  padding-bottom: 24em;
}

.bands2 {
  margin-top: -15em;
  padding-bottom: 24em;
}

.centered {
  text-align: center;
}

.light {
  color: #111;
  background: #f9f9f9;
}

.light hr {
  border-top: 1px solid #999;
}

.dark hr {
  border-top: 1px solid #ccc;
}

.dark {
  color: #f9f9f9;
  background: #111;
  z-index: 3;
}

.cover img {
  min-width: 100%;
  max-width: 100%;
  min-height: 100%;
  max-height: 100%;
}

.image-container {
  position: relative;
  display: inline-block;
  width: 300px;
  height: 300px;
  margin-bottom: 10px;
  border: 1px solid rgba(255, 255, 255, .5);
}

.image-container img {
  display: block;
}

.image-container .after, .image-container .skip {
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100%;
  color: #fff;
}

.image-container:hover .after {
  display: block;
  background: rgba(0, 0, 0, .6);
}

.image-container .after .zoom, .image-container .skip .zoom {
  font-size: 48px;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  margin-top: -40px;
  margin-left: -40px;
  cursor: pointer;
  color: #ddd;
}

.zoom img {
  z-index: 9999;
  width: 80px;
  height: 80px;
}

img.inst {
  position: relative;
  top: 5px;
  width: 20px;
  height: 20px;
  margin-right: 5px;
}

#playing, .nono {
  display: none;
}

.topper {
  margin-top: 25px;
}

.infos>p {
  margin-top: 5px;
  margin-bottom: .5rem !important;
}

.infos>button {
  width: 100px;
  color: #f9f9f9;
}

.infos>button:hover {
  color: #fff;
}

img.evdate {
  position: relative;
  top: 3px;
  width: 15px;
  height: 15px;
  margin-right: 7px;
}

.card {
  padding: 40px 15px 0;
  border: 1px solid grey;
  margin-bottom: 10px;
}

.card h4 {
  font-size: 1.5em;
  font-weight: 600;
}

.embed-container {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  height: 0;
  margin-top: 0em;
  margin-bottom: 1em;
  padding-bottom: 56.25%;
  border: 1px solid rgba(255, 255, 255, .5);
}

.embed-container iframe, .embed-container object, .embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.info {
  width: 100%;
  text-align: center;
  background: rgba(0, 0, 0, .5);
}

p.upp::first-letter {
  font-size: 20px;
}

.uppp {
  margin-top: -20px;
  margin-bottom: 30px;
}

img.bio {
  display: block;
  width: 200px;
  height: 200px;
  margin: 50px auto;
  border: 3px solid #f9f9f9;
  border-radius: 50%;
}

.infos {
  height: 120px;
  margin-top: 10px;
}

footer {
  padding: 4em;
  font-weight: 300;
}

footer a {
  text-decoration: none;
  color: inherit;
}

.hibble {
  position: relative;
  left: 50%;
  margin-left: -48px;
  margin-bottom: 30px;
  width: 120px;
  height: 30px;
}

.hibble img {
  width: 31px;
  margin-left: 3px;
  float: left;
  opacity: .8;
}

.hibble img:hover {
  opacity: 1;
}

img.wozes {
  width: 100%;
  border: 3px solid rgba(0, 0, 0, .2) !important;
  padding: 2px;
  clear: both;
  margin: 1.2em auto;
  border-radius: 15px;
}

/*iframe {
  border: 1px solid rgba(255, 255, 255, .5);
}*/
.form {
  display: block;
  width: 100%%;
  margin: 0 auto;
  color: #111;
}

.subject {
  display: none;
}

.fields input, .fields textarea {
  width: 100%;
}

.fail {
  display: none;
}

.success {
  display: none;
}

.formBox {
  position: relative;
  min-height: 30px;
}

.errBox {
  top: -55px;
  left: 0;
  position: absolute;
  width: 100%;
  display: none;
}

.point {
  position: absolute;
  width: 20px;
  height: 20px;
  transform: rotate(45deg);
  background: red;
  top: 33px;
  left: 25px;
  margin-left: -10px;
}

.err {
  position: absolute;
  padding: 10px;
  background: red;
  color: #fff;
  font-weight: 400;
}

.result h2 {
  text-align: center;
  color: #f9f9f9;
}

@media screen and (max-width: 68em) {
  .infos>button {
    width: 90% !important;
  }

  .downfix {
    padding-bottom: 8em;
  }

  .image-container {
    width: 200px;
    height: 200px;
  }

  .embed-container {
    margin-top: 16em;
  }

  .hideme {
    display: none;
  }

  .topper {
    margin-top: 0;
  }

  #play {
    margin-top: 20px;
  }

  .litop {
    margin-top: -15px;
  }

  .infomodal {
    position: absolute;
    top: 150px;
    left: 50% !important;
  }
}

#player {
  display: block;
  margin: 0 auto;
  max-width: 300px;
}

.ttw-music-player {
  width: 100%;
  font-family: 'Lato', arial, sans-serif;
}

.ttw-music-player .player {
  width: 100%;
}

span.title {
  transition: .3s;
}

span.title:hover::after {
  content: '  •';
  transition: .3s;
}

span.title:hover::before {
  content: '•  ';
  transition: .3s;
}

/** Album Cover **/
.ttw-music-player .album-cover {
  position: relative;
  float: left;
  background: #333 url(../images/player/album-cover-bg.jpg) no-repeat 0 0 scroll;
  background-size: 100%;
  box-shadow: 0px 1px 4px rgba(0, 0, 0, .75);
  -moz-box-shadow: 0px 1px 4px rgba(0, 0, 0, .75);
  -webkit-box-shadow: 0px 1px 4px rgba(0, 0, 0, .75);
}

.ttw-music-player .album-cover .img {
  background-position: center center;
  background-repeat: no-repeat;
  background-color: transparent;
}

/*.ttw-music-player .album-cover .highlight {
  background: transparent url(../images/player/album-cover-highlight.png) no-repeat 0 0 scroll;
  opacity: 1;
  background-size: 100%;
}*/
.ttw-music-player .album-cover:hover .highlight {
  opacity: 1;
}

.ttw-music-player .album-cover, .ttw-music-player .album-cover .img, .ttw-music-player .album-cover .highlight {
  display: block;
  margin: 0 auto;
  height: 300px !important;
  width: 300px !important;
  max-height: 100%;
}

.ttw-music-player .album-cover img, .ttw-music-player .album-cover .img, .ttw-music-player .album-cover .highlight {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

/** Track Info **/
.ttw-music-player .track-info {
  width: 100%;
  margin-top: 20px;
  float: left;
  text-align: center;
  font-size: 12px;
}

.ttw-music-player .track-info p {
  margin: 0 0 8px 0;
}

.ttw-music-player .player .title {
  color: #efefef;
  text-shadow: 0 1px 1px rgba(0, 0, 0, .8);
  font-family: 'Lato Bold', arial, sans-serif;
  font-weight: bold;
  font-size: 14px;
}

.ttw-music-player .artist-outer {
  color: #727272;
  font-family: 'Lato Italic', arial, sans-serif;
  font-style: italic;
}

.ttw-music-player .artist {
  color: #999;
  font-family: 'Lato', arial, sans-serif;
  margin-left: 4px;
}

.ttw-music-player .rating {
  width: 75px;
  height: 16px;
}

/** Player **/
.ttw-music-player .player-controls {
  width: 100%;
  height: 50px;
  border-radius: 6px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  /*background: transparent url(../images/player/player-bg.png) repeat 0 0 scroll;*/
  float: left;
}

.ttw-music-player .player-controls .main {
  width: 100%;
  height: 20px;
  margin: 9px 9px;
  float: left;
}

.ttw-music-player .player-controls div {
  float: left;
  cursor: pointer;
}

.ttw-music-player .previous, .ttw-music-player .next {
  height: 40px;
  width: 40px;
  margin: 0 7px;
}

.ttw-music-player .play {
  width: 40px;
  height: 40px;
  margin: 0 7px;
}

.ttw-music-player .pause {
  width: 40px;
  height: 40px;
  margin: 0 7px;
}

.ttw-music-player .previous {
  background: transparent url(../images/player/back.png) no-repeat center center scroll;
  background-size: 40px;
  width: 15%;
  margin-left: 20%;
}

.ttw-music-player .next {
  background: transparent url(../images/player/next.png) no-repeat center center scroll;
  background-size: 40px;
  width: 15%;
}

.ttw-music-player .play {
  background: transparent url(../images/player/play.png) no-repeat center center scroll;
  background-size: 40px;
  width: 15%;
}

.ttw-music-player .pause {
  background: transparent url(../images/player/pause.png) no-repeat center center scroll;
  background-size: 40px;
  width: 15%;
}

.ttw-music-player .progress-wrapper {
  height: 9px;
  width: 100%;
  background: transparent url(../images/player/player-progress.png) repeat-x 0 0 scroll;
  margin-top: 30px;
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
}

.ttw-music-player .progress {
  height: 9px;
  width: 100%;
  cursor: pointer;
}

.ttw-music-player .elapsed {
  height: 6px;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  margin: 1px;
  width: 60%;
  background: transparent url(../images/player/player-elapsed.png) repeat-x 0 0 scroll;
}

.ttw-music-player .unused-controls {
  display: none !important;
}

/** Description **/
.ttw-music-player .description {
  clear: both;
  margin: 30px 0 0 0;
  font-size: 12px;
  color: #999;
  text-shadow: 0 1px 1px rgba(0, 0, 0, .6);
}

.ttw-music-player .description.showing {
  margin: 30px 0;
}

/** Track List **/
.ttw-music-player .tracklist {
  padding: 25px 20px 10px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, .15), 0 1px 0 rgba(255, 255, 255, .04);
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .15), 0 1px 0 rgba(255, 255, 255, .04);
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .15), 0 1px 0 rgba(255, 255, 255, .04);
  border-radius: 6px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  background: transparent url(../images/player/tracklist-bg.png) repeat 0 0 scroll;
  color: #999;
  font-size: 12px;
  margin-top: 50px;
}

.ttw-music-player .tracklist ol {
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.ttw-music-player .tracklist li {
  text-shadow: 0 1px 1px rgba(0, 0, 0, .6);
  /*background: transparent url(../images/player/tracklist-item-bg.png) repeat-x bottom left scroll;*/
  padding: 10px 0 10px 0;
  list-style-position: inside;
  position: relative;
}

.ttw-music-player .tracklist li:hover {
  color: #eee;
}

.ttw-music-player li:last-child {
  background: none;
}

.ttw-music-player .show-more-button li:last-child {
  background: transparent url(../images/player/tracklist-item-bg.png) repeat-x bottom left scroll;
}

.ttw-music-player .tracklist .title {
  width: 88%;
  display: inline-block;
  padding: 0 0 0 14px;
  cursor: pointer;
  font-size: 14px;
}

.ttw-music-player li:nth-child(1n + 6) .title {
  /*display: none;*/
}

ul.tracks {
  height: 425px;
  overflow-y: scroll;
}

li.track {
  margin-right: 5px;
  text-align: center;
  list-style: none;
}

.ttw-music-player li.playing {
  color: #fff !important;
}

.ttw-music-player .tracklist .rating {
  margin-left: 10px;
  width: 30px;
  display: block;
  position: absolute;
  right: 72px;
  top: 12.5px;
}

.ttw-music-player .rating-bar {
  height: 10px;
  width: 3px;
  display: block;
  float: left;
  cursor: pointer;
  background: transparent url(../images/player/rating-bar.png) no-repeat 0 0 scroll;
}

.ttw-music-player .rating-bar.on, .ttw-music-player .rating-bar:hover, .ttw-music-player .rating-bar.hover {
  background: transparent url(../images/player/rating-bar-on.png) no-repeat 0 0 scroll;
}

.ttw-music-player .buy {
  width: 62px;
  height: 16px;
  display: inline-block;
  position: absolute;
  top: 9px;
  right: 0;
  border-radius: 8px;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  background: transparent url(../images/player/buy-bg.png) repeat 0 0 scroll;
  margin: 0 0 0 10px;
  font-size: 10px;
  text-align: center;
  line-height: 16px;
  text-shadow: none;
  color: #999;
  text-decoration: none;
}

.ttw-music-player .buy:hover {
  color: #eee;
}

.ttw-music-player .buy.not-active {
  display: none;
}

.ttw-music-player .more {
  display: none;
  font-family: 'Lato Italic', arial, sans-serif;
  font-style: italic;
  font-size: 11px;
  display: none !important;
  text-shadow: 0 1px 1px rgba(0, 0, 0, .6);
  padding: 10px 0;
  margin: 10px 0;
  cursor: pointer;
  text-align: center;
  border-radius: 6px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  background: transparent url(../images/player/tracklist-more.png) repeat 0 0 scroll;
}

.ttw-music-player .more:hover {
  color: #eee;
  box-shadow: inset 0px 0px 20px rgba(0, 0, 0, .2);
  -moz-box-shadow: inset 0px 0px 20px rgba(0, 0, 0, .2);
  -webkit-box-shadow: inset 0px 0px 20px rgba(0, 0, 0, .2);
}

.ttw-music-player .show-more-button .more {
  display: block;
}

/** Transitions **/
.ttw-music-player .more, .ttw-music-player .album-cover .highlight, .ttw-music-player .tracklist li, .ttw-music-player .buy {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

/* http://perishablepress.com/press/2009/12/06/new-clearfix-hack */
.ttw-music-player .player:after {
  clear: both;
  content: ' ';
  display: block;
  font-size: 0;
  line-height: 0;
  visibility: hidden;
  width: 0;
  height: 0;
}

@media screen and (max-width: 48em) {
  .intro {
    width: 300px;
    margin-left: -150px;
  }
  .menu_hide {
    display: none;
  }

  .intro h1 {
    font-size: 2em;
  }

  h2.fadeIn2 {
    font-size: 1.4em;
  }

  span.fadeIn3 {
    font-size: 1em;
  }

  ul.playa {
    margin-left: 30px;
  }

  #player {
    display: block;
    margin: 0 auto -200px;
    max-width: 300px;
  }

  .ttw-music-player .tracklist {
    height: 700px;
  }
}

.playerinfowrap {
  border: 1px solid grey;
  color: #f9f9f9;
}

.infu1 {
  float: right;
  position: relative;
  right: 30px;
  bottom: 15px;
  cursor: pointer;
}

.infu2 {
  float: left;
  position: relative;
  left: 30px;
  bottom: 15px;
  cursor: pointer;
}

.infu1 img, .infu2 img {
  width: 20px;
  height: 20px;
}

#wowza, p.artist-outer {
  cursor: pointer;
}

.infomodal {
  position: absolute;
  top: 150px;
  left: 24%;
  width: 300px;
  min-height: 300px;
  margin-top: -150px;
  margin-left: -150px;
  background: #f9f9f9;
  z-index: 99;
  text-align: center;
  display: none;
  cursor: pointer;
}

.infoinner {
  padding: 20px;
  color: #111;
}

.infoinner h3 {
  font-size: 4.2rem;
}

.closeme {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.closeme img {
  width: 20px;
  height: 20px;
}

@media screen and (max-width: 320px) {
  .ttw-music-player .album-cover, .ttw-music-player .album-cover .img, .ttw-music-player .album-cover .highlight {
    display: block;
    margin: 0 auto;
    height: 280px !important;
    width: 280px !important;
    max-height: 100%;
  }

  .ttw-music-player .album-cover img, .ttw-music-player .album-cover .img, .ttw-music-player .album-cover .highlight {
    position: absolute;
    top: 0;
    left: 0;
    width: 280px !important;
  }

  span.robot {
    display: none;
  }
}

span.bar {
  height: 3px !important;
}
