*,
:before,
:after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: 0;
}

html {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

body {
  background: transparent;
}

.overlay {
  position: absolute;
  background: rgba(20, 20, 20, 0.96);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
}

.webplayer {
  position: relative;
  z-index: 999;
}

.webplayer > .header {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 45px;
    background: rgba(0, 0, 0, 0.5);
    position: relative;
}

.webplayer > .header > .logo {
    position: relative;
    left: 0;
}

.webplayer > .header > .logo > img {
    margin-top: 23px;
    height: 40px;
    width: 250px;
}

.webplayer > .copyright {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    font-size: 12px;
    background: #1B1B1B;
}

.webplayer > .player-container {
  display: flex;
  justify-content: center;
  background: #292929;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 36px;
  height: 65px;
  padding: 0 25px 0 20px;
  box-shadow: 0px 0px 6px 1px var(--box-shadow);
  z-index: 999;
}

.webplayer .player-container > #spectrum {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.webplayer .player {
  display: flex;
  align-items: center;
  padding: 0 25px 0 20px;
  gap: 20px;
  color: #fff;
  font-family: verdana;
  width: 100%;
  position: relative;
}

.webplayer .player > .btnContainer {
  width: 50px;
  height: 50px;
  position: relative;
  border-radius: 50%;
  margin-bottom: 1px;
}

.webplayer .player > .btnContainer label {
  display: block;
}

.webplayer .player .play-btn {
  position: absolute;
  appearance: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: conic-gradient(#FC6B02, #FC6B02);
  cursor: pointer;
  outline: none;
}

.webplayer .player .play-btn::before {
  content: "";
  position: absolute;
  width: 93%;
  height: 93%;
  background: #292929;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.webplayer .player .play-btn:checked {
  animation: borderAnimate 700ms ease-in-out 1;
  animation-fill-mode: forwards;
}

.webplayer .player .play-icon {
  position: absolute;
  width: 25px;
  height: 25px;
  left: 33px;
  top: 25px;
  background: #FC6B02;
  transform: translate(-60%, -50%) rotate(90deg);
  clip-path: polygon(50% 15%, 0% 100%, 100% 100%);
  transition: all 400ms ease-in-out;
  cursor: pointer;
}

.webplayer .player .play-btn:checked + .play-icon {
  clip-path: polygon(0 100%, 0% 100%, 100% 100%);
}

.webplayer .player .pause-icon {
  position: absolute;
  width: 20px;
  height: 20px;
  left: 25px;
  top: 25px;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.webplayer .player .pause-icon::before {
  content: "";
  position: absolute;
  width: 0%;
  height: 100%;
  background: #FC6B02;
  left: 0;
}

.webplayer .player .pause-icon::after {
  content: "";
  position: absolute;
  width: 0;
  height: 100%;
  background: #FC6B02;
  right: 0;
}

.webplayer .player .play-btn:checked ~ .pause-icon::before {
  animation: reveal 300ms ease-in-out 350ms 1;
  animation-fill-mode: forwards;
}

.webplayer .player .play-btn:checked ~ .pause-icon::after {
  animation: reveal 300ms ease-in-out 600ms 1;
  animation-fill-mode: forwards;
}

.webplayer .cover {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 50px;
}

.webplayer .cover > img {
  box-shadow: 0 0 4px 1px var(--orange-color);
  width: 150px;
  height: 150px;
}

.webplayer .cover > .time {
  margin-top: 20px;
  font-size: 12px;
}

.webplayer .mobile-title {
    display: none;
    color: white;
}

.webplayer .mobile-title > .artist {
    display: flex;
    justify-content: center;
    font-size: 12px;
}

.webplayer .mobile-title > .title {
    display: flex;
    justify-content: center;
}

.webplayer .player > .song {
  display: flex;
  flex-direction: column;
}

.webplayer .player > .song > .artist {
  font-size: 11px;
}

.webplayer .player > .song > .title {
  font-size: 17px;
}

.webplayer .player > #volume-control {
  margin-left: auto;
  display: flex;
  align-items: center;
}

.webplayer .player > #volume-control > #volume-slider {
  width: 100px;
  height: 5px;
  background: #FC6B02;
  border-radius: 5px;
  outline: none;
  transition: background 0.3s;
  margin-left: 10px;
}

.webplayer .player > #volume-control > #volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 15px;
  height: 15px;
  background: white;
  border-radius: 50%;
  cursor: pointer;
  border: 1px solid #FC6B02;
}

.webplayer .player > #volume-control > #volume-slider::-moz-range-thumb {
  width: 15px;
  height: 15px;
  background: white;
  border-radius: 50%;
  cursor: pointer;
  border: 1px solid #FC6B02;
}

@keyframes reveal {
  0% {
    width: 0;
  }

  100% {
    width: 35%;
  }
}

@media (max-width: 548px) {
    .webplayer .player > .song > .artist {
      display: none;
    }

    .webplayer .player > .song > .title {
      display: none;
    }
    
    .webplayer .cover {
      margin-bottom: 50px !important;
    }
    
    .webplayer .mobile-title {
        display: block;
    }
}

@media (min-width: 548px) {
}