  /* listing */

  .single-hit {
      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;
      margin: 0 0 24px;
      position: relative;
  }

  .single-hit .hit-image,
  .single-hit .single-hit-info {
      display: inline-block;
      margin-bottom: 0;
  }

  .single-hit .listen-box {
      flex-flow: column;
      margin-bottom: 0;
  }

  .single-hit .hit-image {
      height: 86px;
      width: 86px;
      margin-bottom: 0;
      overflow: hidden;
      position: relative;
      background-color: #bfbfbf;
  }

  .single-hit .hit-image figure {
     z-index:1;
     position: relative;
  }

  .single-hit .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;
}

  .single-hit .hit-image,
  .single-hit .single-hit__info {
      margin-right: 24px;
  }

  .single-hit .single-hit__info {
      width: calc(100% - 86px - 48px - 81px);
      max-width: 320px;
      align-self: flex-start;
  }

  .single-hit__author,
  .single-hit__title {
      font-size: 20px;
      line-height: 28px;
      display:block;
  }

  .single-hit__title {
      color: #333;
      font-weight: 600;
  }

  .single-hit__author {
      font-weight: 300;
      color: #4A4A4A;
  }

  .single-hit .listen-box__text p {
      font-size: 14px;
      line-height: 18px;
      color: #333;
  }

  .single-hit .listen-box__icon {
      margin: 0 0 8px;
      text-align: center;
  }

  .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;
		cursor: pointer;
      -webkit-box-align: center;
      -webkit-align-items: center;
      -moz-box-align: center;
      align-items: center;
      margin-right: 8px;
  }

  .listen-box__icon {
      width: 40px;
      height: 40px;
      margin: 0 16px 0 0;
      position: relative;
  }
  
 .single-hit .hit-image figure img {
	max-width: 100%;
 }

  .listen-box__icon:before {
      content: url('../images/play-button.svg');
      font-family: FontAwesome;
      font-size: 40px;
      color: #333;
      position: absolute;
      display: block;
      top: 0;
      left: 0;
      right: 0;
      margin: auto;
      line-height: 40px;
      text-align: center;
      width:30px;
      height: 40px;
  }

  .listen-box__icon.active:before {
      content: url('../images/stop.svg');

  }

  .listen-box__icon.error:before {
      content: '\f057';
      color: #bfbfbf;
  }

  .listen-box__icon.active:after {
      content: '';
      width: 28px;
      height: 28px;
      position: absolute;
      top: 0%;
      left: 0%;
      z-index: -1;
      -webkit-transform: translateY(17%) translateX(20%);
      transform: translateY(17%) translateX(20%);
      -webkit-transform-origin: center;
      transform-origin: center;
      -webkit-animation-name: isplaying;
      animation-name: isplaying;
      -webkit-animation-duration: 1.5s;
      animation-duration: 1.5s;
      -webkit-animation-iteration-count: infinite;
      animation-iteration-count: infinite;
  }
  
.single-hit__lyrics {
    font-size: 14px;
    color: #333333;
    background-color: #D8D8D8;
    padding: 2px;

}

.single-hit__info li {
    display: inline-block;
    margin-right: 8px;
}
.single-hit__info ul {
    display: block;
    margin: 0 0 8px;
}


  @-webkit-keyframes isplaying {
      0% {
          box-shadow: 0 0 0px 0px #00AFE4;
          opacity: 1;
      }
      50% {
          box-shadow: 0 0 5px 10px #00AFE4;
          opacity: .15;
      }
      100% {
          box-shadow: 0 0 0px 0px #00AFE4;
          opacity: .15;
      }
  }

  @keyframes isplaying {
      0% {
          box-shadow: 0 0 0px 0px #00AFE4;
          opacity: 1;
      }
      50% {
          box-shadow: 0 0 5px 10px #00AFE4;
          opacity: .15;
      }
      100% {
          box-shadow: 0 0 0px 0px #00AFE4;
          opacity: .15;
      }
  }

  .single-hit__vote {
      background-color: #4A90E2;
      padding: 6px 10px;
    position:relative;
    }

  .single-hit__vote.thx:after {
      content: 'Dzięki!';
      position: absolute;
      width:100%;
      top:0;
      bottom:0;
      left:0;
      text-align:center;
      display: inline-block;
      background-color: #7ED321;
      color: #fff;
      font-size: 14px;
      line-height: 28px;
  }

  .single-hit__vote p {
      color: #fff;
      font-size: 14px;
      line-height: 16px;
  }

  .single-hit__positions {
      padding: 8px 15px;
      align-self: flex-start;
  }

  .single-hit__position,
  .single-hit__updown {
      font-size: 12px;
      line-height: 18px;
      color: #000;
      height: 18px;
      width: 18px;
      border-radius: 18px;
      background-color: #D8D8D8;
      margin-bottom: 6px;
      text-align: center;
  }

  /* 
 @media screen and (max-width: 1024px) {

   
 } */