section#maxPlayer {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background-image: url("../src/svg/bg.svg");
  background-size: cover;
  background-repeat: no-repeat;
  position: fixed;
  top: 100%;
  transition: 0.3s ease all;
  z-index: 99;
}
section#maxPlayer .content {
  padding-top: var(--headerHeight) !important;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  padding: var(--paddingsides);
}
section#maxPlayer .content {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
section#maxPlayer .content .coverSlider {
  width: 100%;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
}
section#maxPlayer .content .coverSlider .sliderContainer {
  width: 200%;
  display: flex;
}
section#maxPlayer .content .coverSlider .sliderContainer .sliderPage {
  position: relative;
  width: 50%;
  height: 330px;
  scroll-snap-align: start;
}
section#maxPlayer .content .coverSlider .sliderContainer .sliderPage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
section#maxPlayer .content .songTitle {
  width: 100%;
  color: var(--maincolor);
  font-size: 24px;
  font-weight: 900;
  line-height: 28px;
}
section#maxPlayer .content .extra {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
section#maxPlayer .content .extra .text {
  font-size: 16px;
  font-weight: 300;
  line-height: 18px;
}
section#maxPlayer .content .extra .text .artists {
  color: var(--maincolor);
}
section#maxPlayer .content .extra .text .producer {
  color: var(--babyblue);
}
section#maxPlayer .content .extra .actions {
  display: flex;
}
section#maxPlayer .content .extra .actions .iconContainer {
  width: 25px;
  height: 25px;
}
section#maxPlayer .content .extra .actions .iconContainer img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
section#maxPlayer .content .extra .actions .iconContainer lord-icon {
  width: 100%;
  height: 100%;
}
section#maxPlayer .content .timeLapse {
  width: 100%;
}
section#maxPlayer .content .timeLapse input[type=range] {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  background: none;
}
section#maxPlayer .content .timeLapse input[type=range]:focus {
  outline: none;
}
section#maxPlayer .content .timeLapse input[type=range]::-webkit-slider-runnable-track {
  background: #76D7E6;
  height: 5px;
}
section#maxPlayer .content .timeLapse input[type=range]::-webkit-slider-thumb {
  box-shadow: 0px 0px 0px #000000;
  border: 1px solid var(--babyblue);
  height: 14px;
  width: 14px;
  border-radius: 25px;
  background: var(--babyblue);
  margin-top: -4px;
  cursor: pointer;
  -webkit-appearance: none;
}
section#maxPlayer .content .timeLapse input[type=range]::-moz-range-track {
  background: #76D7E6;
  height: 5px;
}
section#maxPlayer .content .timeLapse input[type=range]::-moz-range-thumb {
  border-radius: 50%;
  background-color: var(--babyblue);
  border: 1px solid var(--babyblue);
}
section#maxPlayer .content .timeLapse .timeValues {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
section#maxPlayer .content .timeLapse .timeValues span {
  color: var(--maincolor);
  font-size: 12px;
}
section#maxPlayer .content .mainControls {
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
section#maxPlayer .content .mainControls .iconContainer.playbtn {
  width: 56px;
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--babyblue);
  border-radius: 50%;
}
section#maxPlayer .content .bottomInfo {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: var(--paddingsides);
  min-height: 100px;
  background-color: var(--babyblue);
  border-radius: 25px 25px 0 0;
}
section#maxPlayer .content .bottomInfo .headerSection {
  padding: 15px 0;
}
section#maxPlayer .content .bottomInfo .headerSection .titleContainer {
  display: flex;
  gap: 10px;
}
section#maxPlayer .content .bottomInfo .headerSection .titleContainer .titleBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
section#maxPlayer .content .bottomInfo .infoContainer {
  width: 100%;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
}
section#maxPlayer .content .bottomInfo .infoContainer .pagesContainer {
  width: 200%;
  display: flex;
}
section#maxPlayer .content .bottomInfo .infoContainer .pagesContainer .page {
  width: 50%;
  scroll-snap-align: start;
}

section#maxPlayer.active {
  top: 0;
}

/*# sourceMappingURL=player.css.map */
