.hit-tags,
.hit-image,
.listen-box,
.hit-video,
.hit-lyrics,
.hits h2
 {
    margin: 0 0 20px;
}

.hit-tags li {
    display: inline-block;
    font-size: 20px;
    margin: 0 8px 0 0;
}

.tags__tag {
    text-decoration: underline;
}

.hit-image {
    width: 492px;
    height: 492px;
    position: relative;
    background-color: #bfbfbf;
}

.hit-image:after {
    content: "\f03e";
    font-size: 40px;
    position: absolute;
    color: #eee;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    line-height: 40px;
    font-family: FontAwesome;
    z-index: 0;
}

.hit-image img {
    max-width: 100%;
	z-index: 10;
	position:relative;
	}

.hit-lyrics__lyrics {
    font-size: 20px;
    line-height: 32px;
    margin: 0 0 20px;
}

.hit-lyrics__info {
    font-size: 12px;
    line-height: 16px;
    color: #9B9B9B;
}

.song-info__song-authors,
.song-info__song-text {
    display: block;
}

.hit-video .video {
        position: relative;
        padding-bottom: 56.25%;
        padding-top: 35px;
        height: 0;
        overflow: hidden;
        max-width: 100%;
}

.hit-video .video iframe {
    width: 100% !important;
    height: 100% !important;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.listen-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row wrap;
       -moz-box-orient: horizontal;
       -moz-box-direction: normal;
            flex-flow: row wrap;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
       -moz-box-pack: start;
            justify-content: flex-start;
    -webkit-box-align:center;
    -webkit-align-items:center;
       -moz-box-align:center;
            align-items:center;
}



.listen-box__icon {
    font-size: 50px;
    margin: 0 16px 0 0;
    position: relative;
}

  .listen-box__icon.active i {
      opacity: 0;
  }

  .listen-box__icon.active .equalizer {
      display:flex;
      flex-flow: row wrap;
      justify-content: space-between;
      align-items: flex-end;
      position:absolute;
      top:0;
      left:0;
      right:0;
      bottom:0;
  }

  .listen-box__icon.active .equalizer span {
      width: 25%;
      height: 100%;
      border-radius:0;
  }

  .listen-box__icon.active .bar1,
  .listen-box__icon.active .bar2,
  .listen-box__icon.active .bar3 {
      
-webkit-transform-origin: center;
    transform-origin: center;

-webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
-webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
  }

  .listen-box__icon.active .bar1 {
    -webkit-animation-name: barOne;
    animation-name: barOne;
    background-color: #FFC107;
  }

  .listen-box__icon.active .bar2 {
    -webkit-animation-name: barTwo;
    animation-name: barTwo;
    background-color: #FF9800;
  }

  .listen-box__icon.active .bar3 {
    -webkit-animation-name: barThree;
    animation-name: barThree;
    background-color: #FF5722;
  }

  @-webkit-keyframes barOne {
    0% { height: 10%; }
    40% { height: 60%;}
    60% { height: 30%; }
    80% { height: 80%;}
    100% { height: 20%; }
  }


  @-webkit-keyframes barTwo {
    0% { height: 40%; }
    40% { height: 20%;}
    60% { height: 50%; }
    80% { height: 90%;}
    100% { height: 40%; }
  }

  @-webkit-keyframes barThree {
    0% { height: 60%; }
    40% { height: 20%;}
    60% { height: 90%; }
    80% { height: 40%;}
    100% { height: 70%; }
  }
