.playlistWrap {
  margin: calc(1.4375rem + 1.875vw) 0 calc(1.5625rem + 3.125vw);
}
@media (min-width: 1440px) {
  .playlistWrap {
    margin: 3.125rem 0 4.375rem;
  }
}
.playlistWrap .fadeButton {
  display: none;
}
.playlistWrap__content {
  max-width: 628px;
}
.playlistWrap__content h1,
.playlistWrap__content h2,
.playlistWrap__content h3 {
  margin-bottom: 0;
}
.playlistWrap--fade .fadeButton {
  display: block;
}
.playlistWrap--fade .playlistInner {
  max-height: 600px;
  overflow: hidden;
  position: relative;
}
.playlistWrap--fade .playlistInner:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(254, 250, 246, 0.2) 49%, #fefaf6 100%);
  z-index: 1;
}

.fadeButton {
  display: block;
  text-align: center;
  margin-top: calc(1.3rem + 0.5vw);
}
@media (min-width: 1440px) {
  .fadeButton {
    margin-top: 1.75rem;
  }
}
.fadeButton button {
  cursor: pointer;
  text-transform: uppercase;
  padding: 1rem calc(1.5rem + 2.5vw);
}
@media (min-width: 1440px) {
  .fadeButton button {
    padding: 1rem 3.75rem;
  }
}

.playlistInner {
  display: flex;
  flex-direction: column;
  margin-top: calc(1.35625rem + 1.0625vw);
  font-size: 16px;
  color: #000;
  font-weight: 400;
  line-height: 1.44;
}
@media (min-width: 1440px) {
  .playlistInner {
    margin-top: 2.3125rem;
  }
}
.playlistInner .singleSong {
  display: flex;
  align-items: center;
  padding: 15px 0;
  border-bottom: 2px solid #e7e7e7;
}
.playlistInner .singleSong:nth-child(2n) {
  background: #f4f5f5;
  padding: 5px 0;
}
.playlistInner .singleSong__img {
  width: 100%;
  max-width: 15%;
  padding-right: 12px;
  display: flex;
}
.playlistInner .singleSong__img img {
  min-width: 32px;
  min-height: 32px;
  object-fit: cover;
  border-radius: 6px;
}
.playlistInner .singleSong__time {
  width: 100%;
  max-width: 16.87%;
}
.playlistInner .singleSong__artist {
  width: 100%;
  max-width: 22%;
  word-break: break-word;
}
.playlistInner .singleSong__title {
  width: 100%;
  padding-left: 12px;
}
@media screen and (min-width: 576px) {
  .playlistInner {
    font-size: 18px;
  }
  .playlistInner .singleSong__img img {
    min-width: 60px;
    min-height: 60px;
  }
}
@media screen and (min-width: 992px) {
  .playlistInner .singleSong__img {
    min-width: 100px;
    min-height: 100px;
  }
  .playlistInner .singleSong__artist {
    padding-right: 12px;
  }
  .playlistInner .singleSong__title {
    padding-left: 0;
  }
}

.playlistButtons {
  display: flex;
}
.playlistButtons .selectWrapper {
  margin-right: 14px;
}

.selectNative,
.selectCustom {
  position: absolute;
  opacity: 0;
  width: 136px;
  height: 58px;
  top: 0;
  left: 0;
}

.selectCustom {
  position: relative;
  width: 136px;
  height: 58px;
  visibility: visible;
  opacity: 1;
  cursor: pointer;
  pointer-events: all;
}

.select {
  position: relative;
}

.selectLabel {
  display: block;
  font-weight: bold;
  margin-bottom: 0.4rem;
}

.selectWrapper {
  position: relative;
}

.selectNative,
.selectCustom-trigger {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.65;
  background-color: var(--background);
  border: 2px solid var(--main-color);
  border-radius: 30px;
  text-transform: uppercase;
  color: var(--main-color);
}

.selectNative {
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position-x: 95%;
  background-position-y: 0.9rem;
  padding: 0rem 0.8rem;
  text-align: center;
}

.selectCustom-trigger {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-align: center;
}
.selectCustom-trigger:hover {
  background: var(--main-color);
  color: #fff;
}

.selectCustom-options {
  position: absolute;
  top: calc(3.8rem + 0.8rem);
  left: 0;
  width: 100%;
  border: 1px solid var(--main-color);
  border-radius: 0;
  background-color: var(--background);
  box-shadow: 0 0 4px #e9e1f8;
  z-index: 100;
  display: none;
  max-height: 310px;
  overflow: auto;
}

.selectCustom.isActive .selectCustom-options {
  display: block;
}

.selectCustom-option {
  position: relative;
  padding: 10px 15px;
  text-align: center;
  font-size: 16px;
  overflow: auto;
}

.selectCustom-option.isHover,
.selectCustom-option:hover {
  background-color: var(--main-color);
  color: white;
  cursor: pointer;
}

.selectCustom-option:not(:last-of-type)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid #d3d3d3;
}

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