.playing .icon.audio,
.icon.pause {
  /*  background-image: url(img/pause-white.svg);
*/
  background-image: url(img/play-red.svg);
  background-size: 80% 80%;
  transform: skew(-10deg);
}
.icon.audio,
.icon.play {
}

.row {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.player {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  width: 100%;
  max-width: 720px;
  padding-right: 5rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  background: rgba(0, 0, 0, 0.5);
  transition: 0.2s cubic-bezier(0, 0, 1, 1);
  transform: translate3d(0, 110%, 0);
  display: flex;
  flex-direction: column;
  z-index: 10;
}
.player.active {
  transform: translate3d(0, 0%, 0);
}
.player .icon {
  cursor: pointer;
  height: 5rem;
  width: 4rem;
  margin-left: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.player .pos {
  flex: 1;
  position: relative;
  cursor: pointer;
  height: 5rem;
}
.player .title,
.player .time {
  font-size: 0.8em;
  color: #eee;
  padding-left: 1.5rem;
  /*text-transform: capitalize;*/
}
.player .time {
  text-align: right;
  width: 6rem;
}
.player .title {
  padding: 2.5rem 0px 0 3.5rem;
  font-size: 16px;
}
.player .icon img {
  display: none;
  width: 1.2rem;
}
.player .icon.active .play_icon {
  display: none;
}
.player .icon.active .pause_icon {
  display: block;
}
.player .icon .pause_icon {
  display: none;
}
.player .icon .play_icon {
  display: block;
}
.player .track {
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -1px;
  height: 2px;
  background: #eee;
  width: 100%;
}
.player .dot {
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
}

.menu {
  line-height: 1.5;
}
.menu a.a {
  margin-left: 1.5rem;
}

.mobile .player {
  max-width: calc(100vw - 2rem);
  padding-right: 0;
}
.mobile .player .icon {
  margin-left: 0px;
}
.mobile .player .title {
  padding: 1.5rem 0px 0 1rem;
}
.mobile .player .time {
  padding-left: 0;
  padding-right: 1rem;
  width: 6rem;
}
