.sd-player {
  overflow: hidden;
  flex-direction: row;
  width: 50%;
  max-width: 100%;
  background-color: #161616;
  color: #fff;
  position: fixed;
  bottom: 0;
  left: 0;
  border: 1px solid #BCBCBC;
  z-index: 9999;
}

.sd-player a:focus {
  outline: none;
}

.sd-player__loading {
  display: none;
  top: 0;
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 1;
  align-items: center;
  background-color: #161616;
}

.sd-player.loading .sd-player__loading {
  display: flex;
}

.sd-player__spinner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  overflow: hidden;
  z-index: 1;
}

.sd-player__spinner::after {
  content: '';
  width: 100%;
  height: 1px;
  position: absolute;
  top: 0;
  left: 0;
  box-sizing: border-box;
  animation: animloader 6s linear infinite;
  background-color: #ffffff;
}

@keyframes animloader {
  0% {
    left: 0;
    transform: translateX(-100%);
  }

  100% {
    left: 100%;
    transform: translateX(0%);
  }
}

.sd-player__loading span {
  width: 50px;
  height: 50px;
  margin: 0 auto;
  background-size: contain;
  background-image: url(../img/logo_classic.svg);
}

.sd-player__artwork {
  flex-basis: 60px;
  flex-grow: 0;
  flex-shrink: 0;
}

.sd-player__artwork img {
  border-radius: 0;
  user-select: none;
  display: block;
  width: 60px;
  height: 60px;
  object-fit: cover;
}

.sd-player__button {
  flex-basis: 60px;
  flex-grow: 0;
  flex-shrink: 0;
}

.sd-player__button button {
  user-select: none;
  margin: 0;
  padding: 0 !important;
  height: 60px;
  width: 60px;
  display: block;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  overflow: hidden;
  text-indent: -99999px;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: 50%;
}

.sd-player__button button:hover {
  background-color: transparent;
}

.sd-player__button button:focus {
  outline: none;
}

.sd-player__play {
  background-image: url(../img/play_classic.svg);
}

.sd-player__pause {
  background-image: url(../img/pause_classic.svg);
}

.sd-player__content {
  height: 60px;
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  padding: 6px 0;
  overflow: hidden;
}

.sd-player__title {
  max-width: 100%;
  padding-bottom: 6px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: #FCF7F6;
  font-size: 12px;
  font-family: Garuda, Verdana, Tahoma, sans-serif;
  user-select: none;
}

.sd-player__waveform {
  overflow: hidden;
  flex: 1 1;
  height: 27px;
  background: hsla(0, 0%, 100%, .6);
  position: relative;
}

.sd-player__waveform>img {
  border-radius: 0;
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 28px;
  filter: invert(100%);
  pointer-events: none;
}

.sd-player__progress {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 27px;
  background-color: #ffffff;
  transform-origin: left center;
}

.sd-player__logo {
  height: 60px;
  align-items: center;
  display: flex;
  flex-basis: 60px;
  flex-grow: 0;
  flex-shrink: 0;
}

.sd-player__logo a {
  text-decoration: none;
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  width: 35px;
  height: 35px;
  background-image: url(../img/logo_classic.svg);
  margin: 0 10px;
  position: relative;
}

.sd-player audio {
  display: none;
  height: 0;
}

@media (max-width: 569px) {
  .sd-player {
    width: 100%;
    border-right: 0;
    border-left: 0;
    border-bottom: 0;
  }
}