* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Roboto, Arial;
}

.wrapper {
  height: 100vh;
  width: 100%;
  display: flex;
  
  background: #E4E9ED;
}

.player {
  background: #EFF3F5;
  border-radius: 30px;
  max-width: 380px;
  width: 100%;
  padding: 25px;
}

.title {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  text-align: center;
  color: #2B3C5B;
}

.cover {
  display: flex;
  justify-content: center;
  margin: 25px 0;
}

.cover__img {
  height: 100px;
  width: 100px;
  max-width: 100px;
  border-radius: 50px;
  align-items: center;
  &.active {
    animation: rotateAnimation 3s linear infinite;
  }
}

.song {
  font-style: normal;
  font-weight: bold;
  font-size: 24px;
  line-height: 28px;
  color: #2B3C5B;
  text-align: center;
}

.progress-container { 
  background: #E4E9ED;
  border-radius: 5px;
  width: 100%;
  height: 10px;
  margin-top: 63px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.progress {
  background: #2B3C5B;
  border-radius: 5px;
  height: 6px;
  /* width: 150px; */
}

.buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 184px;
  width: 100%;
  margin: 0 auto;
  margin-top: 45px;
}

.control-buttons {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.mix {
  padding-left: 0;
}

.sub-buttons {
  display: flex;
  justify-content: space-between;
}

.btn img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  cursor: pointer;
}

@keyframes rotateAnimation {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}
