/* Player buttons */
.tc-pl-app button:hover,
.tc-pl-app button:focus,
.tc-pl-app button:active {
  background: rgba(0, 0, 0, 0) !important;
}
/* TC Hero Banner */
.tc-pl-hero {
  width: 100%;
  height: 600px;
  background: linear-gradient(140deg, #00ccae 0%, #7c00ff 45%, #fb551d 100% );
  font-family: 'Lato', sans-serif;
}
.tc-pl-hero .pl-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
.tc-pl-hero .pl-wrapper .pl-preview {
  display: flex;
  justify-content: center;
  width: 50%;
}
.tc-pl-hero .pl-wrapper .pl-content {
  width: 50%;
  max-width: 470px;
}
.tc-pl-hero .pl-wrapper .pl-content h1 {
  font-size: 43px;
  font-weight: 900;
  color: white;
  transition: 0.5s;
}
.tc-pl-hero .pl-wrapper .pl-content p {
  padding: 25px 0;
  font-size: 18px;
  line-height: 31px;
  color: white;
  letter-spacing: .5px;
}
.tc-pl-hero .pl-wrapper .pl-content .pl-act-btn {
  font-size: 22px;
  font-weight: 700;
  color: white;
  background-color: #2458f1;
  padding: 18px 32px;
  border: none;
  transition: .5s;
}
.tc-pl-hero .pl-wrapper .pl-content .pl-act-btn:hover{
  background-color: #2760ff;
  cursor: pointer;
}
.tc-pl-hero .pl-wrapper .ap-image img {
  max-width: 360px;
  -webkit-box-shadow: 0px 0px 40px 10px rgba(0,0,0,0.25);
  -moz-box-shadow: 0px 0px 40px 10px rgba(0,0,0,0.25);
  box-shadow: 0px 0px 40px 10px rgba(0,0,0,0.25);
  transition: 0.5s;
}
.tc-pl-app .pl-hide {
  display: none !important;
}

/* Player and control panel */
.tc-pl-app {
  width: 100%;
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  color: #25282a;
  background-color: white;
  box-shadow: 0px 1px 40px rgba(0,0,0,0.15);
  /*
  position: fixed;
  bottom: 0;
  */
  z-index: 10;

}
.tc-pl-app .ap-inner {
  width: 100%;
  padding: 0 50px;
  transition: 0.5s;
}
.tc-pl-app .ap-panel {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.tc-pl-app .ap-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.tc-pl-app .ap-song-info {
  width: 350px;
  padding: 0 40px;
}
.tc-pl-app .ap-song-info .ap-category {
  font-size: 12px;
  color: #00a398;
  text-transform: uppercase;
}
.tc-pl-app .ap-song-info .ap-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 31px;
  color: #25282a;
  transition: 0.5s;
}
.tc-pl-app .ap--track {
  flex-direction: column;
  -webkit-box-flex: 1;
  -webkit-flex: 1 40%;
      -ms-flex: 1 40%;
          flex: 1 40%;
  padding: 20px 20px 0 20px;
}

/* Info section */
.tc-pl-app .ap-info {
  width: 100%;
  position: relative;
  -webkit-align-self: flex-start;
      -ms-flex-item-align: start;
          align-self: flex-start;
}
 .tc-pl-app .ap-time {
  min-width: 75px;
  padding-top: 20px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  color: #25282a;
   /*
  position: absolute;
  top: 5px;
  right: 0;
  */
}
.tc-pl-app .ap-progress-container {
  cursor: pointer;
}
.tc-pl-app .ap-progress {
  position: relative;
  height: 10px;
  border-radius: 0;
  background: #f2f3f4;
}
.tc-pl-app .ap-preload-bar,
.tc-pl-app .ap-bar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  border-radius: 0;
  /* z-index: 999; */
}
.tc-pl-app .ap-bar {
  background-color: #c1c6c8;
  /* z-index: 9999; */
}
.tc-pl-app .ap-bar:after {
  position: absolute;
  top: 0;
  right: -5px;
  width: 12px;
  height: 12px;
  margin-top: -1px;
  content: '';
  border-radius: 6px;
  background: linear-gradient(140deg, #00ffda 0%, #00a398 100% );
  opacity: 0;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
}
.tc-pl-app .ap-progress-container:hover .ap-bar:after {
  opacity: 1;
}

/* Player Buttons */
.tc-pl-app .ap-controls {
  width: 60px;
  position: relative;
  /* z-index: 1000; */
  display: block;
  cursor: pointer;
  border: 0;
  outline: 0;
}
.tc-pl-app .ap-inner button {
  background: transparent;
  padding-top: 20px;
}
.tc-pl-app .ap-prev-btn img,
.tc-pl-app .ap-next-btn img,
.tc-pl-app .ap-toggle-btn img {
  width: 48px;
  border-radius: 50%;
  transition: .5s;
}
.tc-pl-app .ap-toggle-btn img {
  width: 52px;
}
.tc-pl-app .ap-prev-btn img:hover,
.tc-pl-app .ap-next-btn img:hover,
.tc-pl-app .ap-toggle-btn img:hover {
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.25);
  -moz-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.25);
  box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.25);
}
.tc-pl-app .ap-controls:active {
  background: rgba(0,0,0,.1);
}
.tc-pl-app .ap--pause,
.tc-pl-app .playing > .ap--play {
  display: none;
}
.tc-pl-app .playing > .ap--pause {
  display: inline;
}
.tc-pl-app .ap-volume-container {
  /* z-index: 11; */
}
.tc-pl-app .ap-volume {
  position: absolute;
  right: 0;
  bottom: 25px;
  overflow: hidden;
  width: 100%;
  height: 0;
  visibility: hidden;
  -webkit-transition: height .2s cubic-bezier(0.17, 0.72, 0.26, 1.23);
  transition: height .2s cubic-bezier(0.17, 0.72, 0.26, 1.23);
  background: whitesmoke;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.25);
  -moz-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.25);
  box-shadow: 0px 0px 15px 0px rgba(116, 94, 94, 0.25);
  border: 0;
  border-bottom: 0;
  padding: 5px 0;
  /* z-index: 9999; */
}
.tc-pl-app .ap-volume-btn {
  width: 100%;
  display: block;
  text-align: center;
  padding-left: 10px;
  padding-right: 10px;
}
.tc-pl-app .ap-volume-btn img {
  width: 24px;
}
.tc-pl-app .ap-playlist-btn img {
  width: 22px;
}
.tc-pl-app .ap-volume-btn > .ap--volume-off,
.tc-pl-app .muted > .ap--volume-on {
  display: none;
}
.tc-pl-app .muted > .ap--volume-off {
  display: inline;
}
.tc-pl-app .ap-volume-container:hover,
.tc-pl-app .ap-volume-container:focus,
.tc-pl-app .ap-volume-container:active {
  background: rgba(0,0,0,0);
}
.tc-pl-app .ap-volume-container:hover .ap-volume {
  height: 130px;
  visibility: visible;
}
.tc-pl-app .ap-volume-progress {
  display: block;
  width: 8px;
  height: 100px;
  margin: 10px auto;
  background: rgba(0,0,0,.2);
  position: relative;
  border-radius: 0;
}
.tc-pl-app .ap-volume-bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(140deg, #00ffda 0%, #00a398 100% );
  height: 50%;
  border-radius: 0;
}

.tc-pl-app .ap-active {
  background: rgba(0,0,0,.15);
  opacity: 1;
}

@-webkit-keyframes blink {
  from { opacity: 0.5; }
  50% { opacity: 1; }
  to { opacity: 0.5; }
}

@keyframes blink {
  from { opacity: 0.5; }
  50% { opacity: 1; }
  to { opacity: 0.5; }
}
.tc-pl-app .playing > .ap--pause {
  -webkit-animation: blink 1.5s linear infinite;
          animation: blink 1.5s linear infinite;
}

/*--------------------
  PlayList
--------------------*/
.tc-pl-app .pl-container {
  position: absolute;
  width: 50%;
  height: 480px;
  top: 50px;
  right: 20px;
  overflow: auto;
  font-size: 14px;
  background: whitesmoke;
  border: 1px solid;
  -webkit-box-shadow: 0px 0px 40px 10px rgba(0,0,0,0.25);
  -moz-box-shadow: 0px 0px 40px 10px rgba(0,0,0,0.25);
  box-shadow: 0px 0px 40px 10px rgba(0,0,0,0.25);
  z-index: 9;
}
.tc-pl-app .pl-lead {
  font-size: 24px;
  font-weight: 400;
  text-align: center;
  color: #333;
}
.tc-pl-app .pl-list {
  width: 100%;
  max-width: 550px;
  margin: 0 auto;
  padding: 30px 10px;
}
.tc-pl-app .pl-list > li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.5);
}
.tc-pl-app .pl-list .pl-song-preview {
  width: 50px;
}
.tc-pl-app .pl-number,
.tc-pl-app .pl-title,
.tc-pl-app .pl-remove {
  margin: 0 5px;
  padding: 10px 0;
}
.tc-pl-app .pl-number {
  -webkit-box-flex: 0;
  -webkit-flex: 0 10%;
      -ms-flex: 0 10%;
          flex: 0 10%;
  text-align: center;
}
.tc-pl-app .pl-playing {
  display: none;
}
.tc-pl-app .pl-current .pl-count {
  display: none;
}
.tc-pl-app .pl-current .pl-playing {
  display: block;
}
.tc-pl-app .pl-current .pl-title {
  color: #2458f1;
  font-weight: 700;
}
.tc-pl-app .pl-title {
  overflow: hidden;
  cursor: pointer;
  text-align: left;
  white-space: nowrap;
  text-overflow: ellipsis;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.tc-pl-app .pl-title:hover {
  text-decoration: none;
  color: #2458f1;
}
.tc-pl-app .pl-remove {
  opacity: 0;
  margin-right: 0;
  cursor: pointer;
  text-align: center;
  -webkit-box-flex: 0;
  -webkit-flex: 0 50px;
      -ms-flex: 0 50px;
          flex: 0 50px;
}
.tc-pl-app .pl-remove:hover {
  background: #ddd;
}
.tc-pl-app .pl-list > li:hover .pl-remove {
  opacity: 1;
}
.tc-pl-app .pl-list svg {
  fill: rgba(0,0,0, .7);
}
.tc-pl-app .pl-empty {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 2rem;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  letter-spacing: 2px;
  color: #ccc;
}

@-webkit-keyframes eq {
  0% { height: 3px; }
  50% { height: 20px; }
  100% { height: 3px; }
}

@keyframes eq {
  0% { height: 3px; }
  50% { height: 20px; }
  100% { height: 3px; }
}
.tc-pl-app .eq {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 25px;
  height: 50px;
  margin: 0 auto;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.tc-pl-app .eq-bar {
  width: 5px;
  background: linear-gradient(140deg, #00ffda 0%, #00a398 100% );
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.tc-pl-app .eq-bar:nth-child(1) {
  -webkit-animation: eq .8s ease-in-out infinite 0s;
          animation: eq .8s ease-in-out infinite 0s;
}
.tc-pl-app .eq-bar:nth-child(2) {
  -webkit-animation: eq .8s ease-in-out infinite .2s;
          animation: eq .8s ease-in-out infinite .2s;
}
.tc-pl-app .eq-bar:nth-child(3) {
  -webkit-animation: eq .8s ease-in-out infinite .4s;
          animation: eq .8s ease-in-out infinite .4s;
}

/* Animations Bars */
.fq-podcast {
  position: absolute;
  text-align: center;
  /* z-index: 10000; */
}
.fq-playing:after {
  display: block;
  width: 100%;
  margin-top: 10px;
}
.fq-podcast.fq-playing .fq-bar {
  display: inline-block;
  position: relative;
  margin: 0 5px 20px 5px;
  width: 10px;
  height: 1px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  overflow: hidden;
  background: linear-gradient(to bottom, rgba(255,255,255,.25), rgba(255,255,255,.65));
  color: transparent;
  animation-name: pulse;
  animation-duration: 1s;
  animation-iteration-count: infinite;
}
.fq-paused.fq-playing .fq-bar {
  animation-play-state: paused;
}
.fq-bar { animation-delay: 0.8; }
.fq-bar:nth-child(1n) { animation-delay: 0.2s; }
.fq-bar:nth-child(2n) { animation-delay: 0.7s; }
.fq-bar:nth-child(3n) { animation-delay: 0.5s; }
.fq-bar:nth-child(4n) { animation-delay: 0.9s; }
.fq-bar:nth-child(5n) { animation-delay: 2.4s; }
.fq-bar:nth-child(6n) { animation-delay: 1.3s; }
.fq-bar:nth-child(7n) { animation-delay: 3.1s; }
.fq-bar:nth-child(8n) { animation-delay: 1.9s; }
.fq-bar:nth-child(9n) { animation-delay: 0.2s; }
.fq-bar:nth-child(10n) { animation-delay: 0.7s; }
.fq-bar:nth-child(11n) { animation-delay: 2.3s; }
.fq-bar:nth-child(12n) { animation-delay: 1.9s; }
.fq-bar:nth-child(18) { animation-delay: 2.4s; }

@keyframes pulse {
  0% {
    height: 5px;
    margin-top: 0;
  }
  10% {
    height: 40px;
    margin-top: -40px;
  }
  50% {
    height: 20px;
    margin-top: -20px;
  }
  60% {
    height: 30px;
    margin-top: -30px;
  }
  80% {
    height: 60px;
    margin-top: -60px;
  }
  100% {
    height: 5px;
    margin-top: 0;
  }
}

.tc-pl-app .player-sticky-fixed {
  position: fixed;
  /* top:75px; */
  bottom: 0;
  left:0;
  width: 100%;
  background: #f6f7f8;
  border-top: 1px solid white;
}

.tc-pl-app .playlist-sticky-fixed {
  position: fixed;
  width: 100%;
  height: calc(100% - 215px);
  /* top: 215px; */
  top: 75px;
  right: 0;
  border: 1px solid white;
  /* border-bottom-left-radius: 50px; */
  /* -webkit-box-shadow: 0px 15px 15px 0px rgba(0,0,0,0.25); */
  /* -moz-box-shadow: 0px 15px 15px 0px rgba(0,0,0,0.25); */
  /* box-shadow: 0px 15px 15px 0px rgba(0,0,0,0.25); */
  box-shadow: none;
  border-top: 1px solid white;
  /* z-index: 10; */
}

/* Media Queries */
@media(max-width:1200px) {
  .tc-pl-app .ap-inner {
    padding: 0;
  }
  .tc-pl-app .ap--playback {
    padding-left: 20px;
  }
  .tc-pl-app .ap-song-info {
    width: 250px;
    padding: 0 15px;
  }
  .tc-pl-app .ap-song-info .ap-title {
    font-size: 20px;
    line-height: 1.2;
  }
  .tc-pl-app .ap-controls {
    width: 50px;
  }
}

@media(max-width:1024px) {
  .tc-pl-hero .pl-wrapper .pl-content h1 {
    font-size: 35px;
  }
  .tc-pl-hero .pl-wrapper .pl-content {
    max-width: 400px;
  }
  .tc-pl-hero .pl-wrapper .ap-image img {
    max-width: 280px;
  }
  /* Block the body scroll behind playlist scroll, 1024px or less */
.lock-scroll {
  overflow: hidden !important;
}
}
@media(max-width:880px) {
  .tc-pl-hero .pl-wrapper .pl-preview {
    width: 45%;
  }
  .tc-pl-hero .pl-wrapper .pl-content {
    width: 55%;
    max-width: 100%;
    padding-left: 10px;
    padding-right: 30px;
  }
  .tc-pl-hero .pl-wrapper .pl-content .pl-act-btn {
    font-size: 18px;
  }
  .tc-pl-app .ap-song-info {
    width: 230px;
    padding: 0 10px;
  }
  .tc-pl-app .ap-song-info .ap-title {
    font-size: 18px;
  }
  .tc-pl-app  .ap-item > .ap-controls {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .tc-pl-app .pl-container {
    width: 54%;
  }
}
@media(max-width:767px) {
  .tc-pl-hero .pl-wrapper {
    display: block;
    padding: 40px 20px;
  }
  .tc-pl-hero .pl-wrapper .pl-preview {
    width: 100%;
  }
  .tc-pl-hero .pl-wrapper .ap-image {
    width: 200px;
  }
  .tc-pl-hero .pl-wrapper .ap-image img {
    max-width: 100%;
  }
  .tc-pl-hero .pl-wrapper .pl-content {
    position: relative;
    width: 100%;
    max-width: 100%;
    padding: 0;
    text-align: center;
    z-index: 9;
  }
  .tc-pl-hero .pl-wrapper .pl-content p {
    padding: 0 0 10px 0;
  }
  .tc-pl-app .ap-inner {
    margin-top: 20px;
  }
  .tc-pl-app .ap-song-info {
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    text-align: center;
    margin-top: -65px;
    right: 0;
  }
  .tc-pl-app .ap--track {
    padding: 20px 10px 0 10px;
  }
  .fq-podcast.fq-playing .fq-bar {
    max-height: 50px;
  }
  .tc-pl-app .pl-container {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
  }
}

@media(max-width:576px) {
  html, body { overflow-x: hidden; }
  #PodcastPlayer {
    position: fixed;
    bottom: 0;
    min-height: 150px;
  }
  .tc-pl-app .tc-pl-app{
    min-width: 250px;  
    min-height: 160px;
    align-items: flex-end;
  }
  .tc-pl-app .pl-list {
    margin-bottom: 215px;
  }
  .tc-pl-app .ap-inner {
    margin: 0 0 10px 0;
    padding: 10px;
  }
  .tc-pl-app .ap-inner button {
    padding-top: 0;
  }
  .tc-pl-app, .ap-panel {
    height: auto;
  }
  .tc-pl-app .ap-panel {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  } 
  .tc-pl-app .ap-song-info {
    margin-top: -85px;
  }
  .tc-pl-app .ap--track {
    padding: 0;
    margin: 0 15px 15px 15px;
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 100%;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }
  .tc-pl-app .ap--playback,
   .ap--settings {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 50%;
        -ms-flex: 1 1 50%;
            flex: 1 1 50%;
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
  .tc-pl-hero .pl-wrapper .pl-content h1 {
    font-size: 28px;
    margin-top: 30px;
  }
  .tc-pl-hero .pl-wrapper .pl-content p {
    font-size: 16px;
    line-height: 1.5;
  }
  .tc-pl-app .ap--playback {
    padding-left: 0;
  }
  .tc-pl-app .ap-controls {
    width: 50px;
  }
  /*
  .tc-pl-app .ap-prev-btn,
  .tc-pl-app .ap-next-btn {
    max-width: 60px;
  } 
  .tc-pl-app .ap-toggle-btn {
    max-width: 75px;
  }
  */
  .tc-pl-app .ap-controls .ap-playlist-btn {
    padding-top: 25px;
  }
  .tc-pl-app .ap-time {
    min-width: 65px;
    font-size: 12px;
    padding-top: 3px;
  }
  .tc-pl-app .ap-volume-btn,
  .tc-pl-app .ap-playlist-btn {
    width: 25px;
    padding-left: 0;
    padding-right: 0;
  }
  .tc-pl-app .ap-volume-btn img {
    width: 20px;
  }
  .tc-pl-app .ap-playlist-btn img {
    width: 18px;
  }
  .tc-pl-app .ap-prev-btn img {
    margin-left: 35%;
  }
  .tc-pl-app .ap-next-btn img {
    margin-right: 35%;
  }
  .tc-pl-app .ap-prev-btn img:hover, .tc-pl-app .ap-next-btn img:hover, .tc-pl-app .ap-toggle-btn img:hover {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
  }
  .tc-pl-app .ap-volume {
    display: none;
  }
  .fq-podcast {
    width: 100%;
    position: fixed;
    bottom: 115px;
    z-index: 5;
  }
  .fq-podcast.fq-playing .fq-bar {
    background: linear-gradient(140deg, #00ffda 0%, #00a398 100% );
    opacity: .25;
  }
}
