* {
  min-height: 0;
}

html {
  font-family: sans-serif; /* 1 */
  line-height: 1.15; /* 2 */
  width: 100vw;
  height: 100vw;
  margin: 0;
  overflow: hidden;
  -ms-text-size-adjust: 100%; /* 3 */
  -webkit-text-size-adjust: 100%; /* 3 */
}

body {
  min-height: 100%;
  margin: 0;
}

.flex-parent {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vw;
  width: 100vw;
  max-height: 400px;
}

.player {
  box-shadow: 0 2px 4px -4px rgba(0, 0, 0, 0.4), 0 50px 45px -20px rgba(0, 0, 0, 0.2);
  border-radius: 30px;
  /* margin: 50px auto; */
  overflow: hidden;
  position: relative;
  height: 90vw;
  width: 80vw;
  max-width: 300px;
  max-height: 330px;
}
.player__meta {
  box-sizing: border-box;
  font-size: 30px;
  padding: 15px 20px;
  position: absolute;
  color: white;
  text-align: center;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.4);
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.player__song {
  z-index: 1;

}
.player__artist {
  font-weight: 500;
  font-size: 18px;
  width: 80%;
  z-index: 1;
}
.player__bg {
  background-position: bottom center;
  background-size: cover;
  height: 100%;
  position: absolute;
  width: 100%;
}
.player__bg:before, .player__bg:after {
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  width: 100%;
}
.player__controls {
  bottom: 0;
  height: 80px;
  position: absolute;
  width: 100%;
}
.player__controls:before, .player__controls:after {
  content: "";
  height: 100%;
  display: block;
  pointer-events: none;
  position: absolute;
  width: 100%;
}
.player__controls-bg {
  background-position: bottom center;
  background-size: cover;
  height: 100%;
  filter: blur(30px);
  overflow: hidden;
  position: absolute;
  width: 100%;
}
.player__play, .player__prev, .player__next {
  background: rgba(255, 255, 255, 0.91);
  border-radius: 60px;
  bottom: 0;
  box-shadow: 0 -2px 4px 0 rgba(255, 255, 255, 0.1);
  cursor: pointer;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  transition: background 0.15s linear;
}
.player__play .player__icon, .player__prev .player__icon, .player__next .player__icon {
  transition: transform 0.05s linear;
}

.player__play:before, .player__play:after, .player__prev:before, .player__prev:after, .player__next:before, .player__next:after {
  border-radius: 60px;
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  width: 100%;
}
.player__play:before, .player__prev:before, .player__next:before {
  background: linear-gradient(to top, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
  box-shadow: 0 -1px 1px 0 rgba(255, 255, 255, 0.6);
  mix-blend-mode: overlay;
}
.player__play:after, .player__prev:after, .player__next:after {
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.6);
  mix-blend-mode: soft-light;
}
.player__play:hover, .player__prev:hover, .player__next:hover {
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.1) 60%, rgba(255, 255, 255, 0.2) 100%);
}
.player__play:hover .player__icon, .player__prev:hover .player__icon, .player__next:hover .player__icon {
  transform: scale(0.9);
}
.player__play {
  height: 60px;
  width: 60px;
}
.player__prev, .player__next {
  height: 40px;
  width: 40px;
}
.player__prev {
  right: 120px;
}
.player__next {
  left: 120px;
}
.player__icon {
  display: flex;
  justify-content: center;
  align-items: center;

  bottom: 0;
  color: rgba(0, 0, 0, 0.8);
  cursor: pointer;
  height: 1em;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 1.4em;
}

.player__icon:before {
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.2);
}


.player__icon-play {
  font-size: 30px;
  width: 1.2em;
}
.player__icon-prev, .player__icon-next {
  width: 1.4em;
}

.icon-prev:before {
    content: '\e80b';
}

.icon-play:before {
    content: '\e80c'; 
    margin-left: 0.3em;
}

.icon-pause:before {
    content: '\23f9';
    font-weight: 900;
    margin-left: 1px;
}

.icon-loading::before {
  content: '\f1ce';
  font-weight: 800;
}

.icon-next:before {
    content: '\e80d';
}

{
  left: 0.5em;
  width: 1.4em;
}
.player__shuffle {
  right: 0.5em;
  width: 2em;
}
.player__repeat, .player__shuffle {
  bottom: 0;
  color: #1A0C1D;
  height: 1.2em;
  font-size: 30px;
  margin: auto;
  position: absolute;
  top: 0;
}
.player__list {
  height: 1.2em;
  font-size: 20px;
  left: 20px;
  position: absolute;
  top: 30px;
  width: 1.4em;
  z-index: 1;
}
.player__volume {
  height: 1.2em;
  font-size: 26px;
  right: 20px;
  position: absolute;
  top: 30px;
  width: 1.4em;
  z-index: 1;
}


.audio-container {
  display: none;
}
