.audio-player2 {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--bs-secondary);
  padding: 0px 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  z-index: 999;
  flex-direction: column;
}

#bttomPlayer {
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.audio-player2 .player2-img {
  border-radius: 5px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.audio-player2 .album-art img {
  object-fit: cover;
}

.audio-player2 .track-info1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  flex-grow: 1;
  text-align: center;
  margin-left: -25px;
  max-width: 120px;
  margin-bottom: 4px;
}

.audio-player2 .track-info2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  flex-grow: 1;
  text-align: center;
  margin-left: -25px;
  margin-bottom: 0px;
  text-align: left;
  max-width: 160px;
  padding-left: 10px;
}

@media (min-width: 850px) {
  .audio-player2 .track-info2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    flex-grow: 1;
    text-align: center;
    margin-left: -25px;
    margin-bottom: 0px;
    text-align: left;
    max-width: 350px;
    padding-left: 10px;
  }
}

.audio-player2 .track-title {
  font-size: 1rem;
  font-weight: bold;
  color: var(--bs-light);
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  bottom: 0;
  min-width: 150px;
}

.audio-player2 .track-artist {
  font-size: 0.9rem;
  font-weight: bold;
  color: var(--bs-light);
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  bottom: 0;
}

.audio-player2 .progress-container {
  width: 100%;
}

.audio-player2 .progress-bar {
  border-radius: 0px;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  height: 7px;
  background: rgb(216,217,218);
  width: 100%;
  box-shadow: 0px -1px 8px 0px var(--bs-primary);
}

.audio-player2 .progress-bar:hover {
  height: 7px;
  background: rgb(216,217,218);
  border-radius: 0px;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.audio-player2 .progress {
  height: 100%;
  background: var(--bs-primary);
  transition: width 0.1s linear;
  width: 0%;
  border-radius: 0px;
}

.audio-player2 .time-info {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: #ccc;
}

.audio-player2 .controls {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 15px;
  margin-left: 15px;
  width: 100%;
  height: 47px;
  margin-top: 0px;
  margin-bottom: 0px;
  margin-top: 4px;
}

.audio-player2 .control-btn {
  width: 40px;
  height: 40px;
  border-radius: 0%;
  border: none;
  background: #f8f9fa;
  color: #333;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.audio-player2 .control-btn1 {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  color: var(--bs-light);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  font-size: 22px;
}

.audio-player2 .control-btn.play-pause {
  width: 57px;
  height: 100%;
  background: var(--bs-primary);
  color: white;
}

.audio-player2 .control-btn1.play-pause1 {
  width: 50px;
  height: 50px;
  background: var(--bs-primary);
  color: white;
  margin-left: 40px;
  margin-right: 40px;
}

.audio-player2 .volume-container {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 15px;
}

@media (max-width: 710px) {
  .audio-player2 .volume-container {
    display: none;
  }
}

.audio-player2 .volume-slider {
  flex-grow: 1;
  height: 4px;
  background: #e9ecef;
  border-radius: 2px;
  position: relative;
  cursor: pointer;
  width: 80px;
}

.audio-player2 .volume-level {
  height: 100%;
  background: var(--bs-primary);
  border-radius: 2px;
  width: 70%;
}

@media (max-width: 380px) {
  .time-pause-play {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 58px;
    flex-direction: row;
    width: 115px;
  }
}

@media (min-width: 380px) {
  .time-pause-play {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: inherit;
    flex-direction: row;
    width: 150px;
    align-content: center;
    height: 47px;
  }
}

.div-details {
  display: flex;
  margin-top: 0px;
  margin-left: 2px;
}

.div-large {
  display: flex;
  align-items: center;
  margin-top: 10px;
  margin-right: 70px;
}

