/* Global English font */
/* hash-bump: static deploy verification */
:lang(en) body,
:lang(en) body * {
  font-family: "Pretendard", "Noto Sans", "Noto Sans KR", "Apple SD Gothic Neo",
    "Segoe UI", "Helvetica Neue", Arial, "Malgun Gothic", sans-serif;
}

:lang(en) .material-icons,
:lang(en) .material-icons-outlined,
:lang(en) .material-icons-two-tone,
:lang(en) .material-icons-round,
:lang(en) .material-icons-sharp {
  font-family: "Material Icons" !important;
}

:lang(en) .material-symbols-outlined {
  font-family: "Material Symbols Outlined" !important;
}

/* section.main */

section.main {
    width: 100%;
    height: 100vh;
    min-height: 40vh;
    position: relative;
    /* background-color: #000; */
  }

section.main .main-wrap {
  display: table;
  position: absolute;
  width: 100%;
  height: 100%;
  background-image:url(/static/images/mainback.jpg);
  /*background-size: cover;*/
  background-size: 100% auto;
  background-repeat: no-repeat;
}

section.main .main-wrap .main-content {
   display: table-cell;
    /* background: none !important; */
    vertical-align: middle;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 90%, #000000 100%);/*220610수정*/
}

section.main .main-wrap .main-content .text-wrap {
  max-width: 1400px;
  margin: 0 auto;
}

section.main .main-wrap .text-wrap h1.main-title {
  margin: 0 0 30px;
  padding: 0;
  font-size: 59px;
  font-weight: 900;
  color: #ffffff;
  line-height: 76px;
  letter-spacing: -0.5px;
  width: fit-content;
}

/* 한글 서브 추가 - 김민기 220824 */
section.main .main-wrap .text-wrap p.mainsub {
    margin: 0 0 15px;
    padding: 0;
    font-size: 57px;
    font-weight: 100;
    color: #ffffff;
    line-height: 60px;
    letter-spacing: -1.5px;
    width: fit-content;
}

section.main .main-wrap .text-wrap p.mainsub b{
  font-weight: 600;
}

section.main .main-wrap .text-wrap h1.main-title span {
  color: #ff0000;
}
section.main .main-wrap .text-wrap h1.main-title span:last-child {
  color: #ff0066;
}

section.main .main-wrap .text-wrap .main-comment {
  width: fit-content;
}
section.main .main-wrap .text-wrap .main-sns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
section.main .main-wrap .text-wrap .main-sns a {
  display: inline-block;
  width: 60px;
}
section.main .main-wrap .text-wrap .main-sns a img {
  width: 100%;
}

/*
section.main .main-wrap .text-wrap button.btn-more span {
    padding: 24px 26px;
    display: block;
    position: relative;
}

section.main .main-wrap .text-wrap button.btn-more:before {
    content: '';
    display: block;
    position: absolute;
    width: 68px;
    height: 68px;
    background: #e0008c;
    opacity: .9;
    border-radius: 50%;
}
*/
section.main .main-wrap .text-wrap p {
  max-width: 680px;
  margin-bottom: 30px;
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  line-height: 26px;
}
section.main .main-wrap .text-wrap button.btn-more {
  padding: 10px 30px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 6px;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  background: none;
}

section.main a.btn-brochure {
  position: absolute;
  z-index: 1;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 15px;
  transform: rotate(90deg);
}

/* section.recommend */

section.recommend {
  /*margin-top: 40px;*/
  background-color: #000;
  padding: 0 0 80px;
}

section.recommend.recommend--sfx {
  padding: 0;
}

.recommend-volume {
  display: flex;
  gap: 4px;
  align-items: center;
  justify-content: flex-end;
  display: none;
}

.volume-control {
  display: flex;
  justify-content: flex-end;
  margin: 15px 0;
}

.volume-control #Volume {
  background: #535353;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 7px;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  -ms-border-radius: 7px;
  -o-border-radius: 7px;
}

.volume-control #Volume:hover {
  opacity: 1;
}

.volume-control #Volume::-webkit-slider-thumb {
  /* background: transparent; */
  background: url("/static/images/volume.png") center no-repeat;
  background-size: cover;
  cursor: pointer;
  height: 21px;
  width: 21px;
  border-radius: 50%;
  -webkit-appearance: none;
  cursor: pointer;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  margin-top: -6px;
}

.volume-control #Volume::-webkit-slider-runnable-track {
  cursor: pointer;
  height: 5px;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
}

.volume-control #Volume::-moz-range-thumb {
  background: #fff;
  cursor: pointer;
}

section.recommend .recommend-wrap .recommend-music {
  display: grid;
  align-items: center;
  justify-content: space-between;
  grid-template-columns: 7fr 5fr 1fr 1fr 3fr;
  /* grid-template-columns: 200px 400px 250px 1fr 1fr 1fr; */
  /* justify-items: center; */
  /* gap: 20px; */
  padding: 17px 0;
}

section.recommend .recommend-wrap .recommend-music:hover {
  background-color: #232323;
}

section.recommend .recommend-wrap .recommend-music .playBtn {
  display: flex;
  align-items: center;
  color: #fff;
  gap: 20px;
  justify-self: flex-start;
  overflow: hidden;
  min-width: 40%;
}

section.recommend .recommend-wrap .recommend-music .playBtn img {
  cursor: pointer;
  width: 42px;
  height: 42px;
  color: #fff;
}

section.recommend .recommend-wrap .recommend-music.recommend-music--music-row .playBtn {
  gap: 14px;
}

section.recommend .recommend-wrap .recommend-music.recommend-music--music-row .music-thumb {
  position: relative;
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  border-radius: 4px;
  overflow: hidden;
  background: #181818;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  cursor: pointer;
}

/* section.recommend .recommend-wrap .recommend-music.recommend-music--music-row .music-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(211, 0, 132, 0.9);
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
} */

section.recommend .recommend-wrap .recommend-music.recommend-music--music-row .music-thumb__image {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

section.recommend .recommend-wrap .recommend-music.recommend-music--music-row .music-thumb__placeholder {
  position: relative;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #343434 0%, #161616 100%);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}

section.recommend .recommend-wrap .recommend-music.recommend-music--music-row .playBtn img.music-thumb__control {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

section.recommend .recommend-wrap .recommend-music.recommend-music--music-row .music-thumb:hover::after,
section.recommend .recommend-wrap .recommend-music.recommend-music--music-row.is-playing .music-thumb::after {
  opacity: 1;
}

section.recommend .recommend-wrap .recommend-music.recommend-music--music-row .highlight_audio {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 2;
  display: none;
  border-radius: 2px;
}

body:not(.music-highlight-enabled) section.recommend .recommend-wrap .recommend-music.recommend-music--music-row .wrap_audio[data-wave-ready="1"] > img.wave_image.audio_img {
  opacity: 0.4;
}

body:not(.music-highlight-enabled) section.recommend .recommend-wrap .recommend-music.recommend-music--music-row .wrap_audio[data-wave-ready="1"] .cutter_audio > .audio_img--progress-base-hide {
  opacity: 0;
}

body:not(.music-highlight-enabled) section.recommend .recommend-wrap .recommend-music.recommend-music--music-row .wrap_audio[data-wave-ready="1"] .cutter_audio > .audio_img--progress {
  filter: none;
  opacity: 1;
  z-index: 2;
}

body.music-highlight-enabled section.recommend .recommend-wrap .recommend-music.recommend-music--music-row .wrap_audio[data-highlight-enabled="1"] > img.wave_image.audio_img {
  opacity: 0.45;
}

section.recommend .recommend-wrap .recommend-music.recommend-music--music-row .wrap_audio .highlight_audio .audio_img--highlight {
  filter: brightness(1.22) contrast(1.12) saturate(1.9);
  opacity: 0;
  z-index: 1;
}

body.music-highlight-enabled section.recommend .recommend-wrap .recommend-music.recommend-music--music-row .wrap_audio[data-highlight-enabled="1"] .highlight_audio {
  display: block;
}

body.music-highlight-enabled section.recommend .recommend-wrap .recommend-music.recommend-music--music-row .wrap_audio[data-wave-ready="1"] .highlight_audio .audio_img--highlight {
  opacity: 0.56;
}

section.recommend .recommend-wrap .recommend-music.recommend-music--music-row .highlight_played_audio {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 4;
  display: none;
}

section.recommend .recommend-wrap .recommend-music.recommend-music--music-row .highlight_played_audio > img.audio_img {
  position: absolute;
  inset: 0;
  width: var(--wave-w);
  height: var(--audio-h);
  opacity: 1;
}

body.music-highlight-enabled section.recommend .recommend-wrap .recommend-music.recommend-music--music-row .wrap_audio[data-highlight-enabled="1"] .highlight_played_audio {
  display: block;
}

body.music-highlight-enabled section.recommend .recommend-wrap .recommend-music.recommend-music--music-row .wrap_audio[data-wave-ready="1"] .cutter_audio > .audio_img--progress-base-hide {
  filter: brightness(0);
  opacity: 1;
  z-index: 1;
}

body.music-highlight-enabled section.recommend .recommend-wrap .recommend-music.recommend-music--music-row .wrap_audio[data-wave-ready="1"] .cutter_audio > .audio_img--progress {
  filter: none;
  opacity: 0.6;
  z-index: 2;
}

section.recommend .recommend-wrap .recommend-music.recommend-music--music-row .cutter_audio {
  z-index: 3;
}

@media all and (max-width: 768px) {
  section.recommend .recommend-wrap .recommend-music.recommend-music--music-row .music-thumb {
    flex-basis: 50px;
    width: 50px;
    height: 50px;
    border-radius: 4px;
  }

  section.recommend .recommend-wrap .recommend-music.recommend-music--music-row .playBtn img.music-thumb__control {
    width: 100%;
    height: 100%;
  }
}

section.recommend .recommend-wrap .recommend-music .playBtn .music-info {
  position: relative;
  max-width: 460px;
  display: grid;
  grid-template-columns: 0fr 3fr;
  grid-template-rows: 1fr;
  overflow: hidden;
  /*align-items: center;*/
}
section.recommend.recommend--hiphop .recommend-wrap .recommend-music .playBtn .music-info {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
section.recommend .recommend-wrap .recommend-music .playBtn p.music-title-detail {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  position: relative;
  padding: 0 7px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 10px;
  margin-right: 5px;
  line-height: 19px;
  background-color: transparent;
  transition: all 0.2s ease;

  /* ✅ 한 줄 유지 */
  white-space: nowrap;
  min-width: 50px;   /* 상세정보/Information이 들어가도 한 줄 유지 */
  text-align: center;
}

section.recommend .recommend-wrap .recommend-music .playBtn p.music-title{
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  position: relative;
  padding: 0 7px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 10px;
  margin-right: 5px;
  line-height: 19px;
  background-color: transparent;
  transition: all 0.2s ease;

  /* ✅ 한 줄 유지 */
  white-space: nowrap;
  min-width: 50px;   /* 상세정보/Information이 들어가도 한 줄 유지 */
  text-align: center;
}

section.recommend .recommend-wrap .recommend-music .playBtn p.music-title.music-title--mobile {
  display: none;
}
section.recommend .recommend-wrap .recommend-music .playBtn span.arrow-box {
  position: absolute;
  display: none;
  top: 0;
  left: 80px;
/*   right: -100px; */
  padding: 5px 10px;
  box-sizing: border-box;
  width: max-content;
  color: #fff;
  font-size: 14px;
  background-color: #d30084;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}
section.recommend
  .recommend-wrap
  .recommend-music
  .playBtn
  span.arrow-box:after {
  position: absolute;
  top: 50%;
  right: 100%;
  width: 0;
  height: 0;
  margin-top: -10px;
  margin-right: -4px;
  border: solid transparent;
  border-color: rgba(51, 51, 51, 0);
  border-right-color: #d30084;
  border-width: 10px;
  pointer-events: none;
  content: " ";
}

section.recommend
  .recommend-wrap
  .recommend-music
  .playBtn
  p.music-title.wave-title {
  font-size: 14px;
}

section.recommend .recommend-wrap .recommend-music .playBtn p.music-singer {
  color: #6b6b6b;
  font-size: 17px;
  font-weight: 700;
  font-family: "Noto Sans";
}

section.recommend .recommend-wrap .recommend-music .wave-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

section.recommend .recommend-wrap .recommend-music .wave-wrap .wave {
  width: 300px;
}
section.recommend
  .recommend-wrap
  .recommend-music
  .wave-wrap
  .wave:nth-of-type(2) {
  display: none;
}

section.recommend .recommend-wrap .recommend-music .wave-wrap .btn-small {
  width: 25px;
  color: #fff;
  cursor: pointer;
}

section.recommend .recommend-wrap .recommend-music .wave-info {
  display: inline-block;
  align-items: center;
  font-size: 10px;
  line-height: 19px;
  cursor: pointer;
  color: #fff;
  display: flex;
}
section.recommend .recommend-wrap .recommend-music .music-info .wave-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  color: #fff;
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 380px;
  cursor:pointer;
}

section.recommend .recommend-wrap .recommend-music .wave-duration {
  font-size: 14px;
}

section.recommend .recommend-wrap .recommend-music .wave-info .wave-singer {
  color: #8f8f8f;
  display:none;
}

section.recommend .recommend-wrap .recommend-music .tags {
    display: flex;
    /* margin-right: 10px; */
    font-size: 11px;
    color: #999;
    line-height: 22px;
    grid-column-end: span 2;
    max-width: 362px;
    overflow: hidden;
    /* white-space: nowrap; */
    text-overflow: ellipsis;
}

section.recommend .recommend-wrap .recommend-music .tags span,
section.recommend .recommend-wrap .recommend-music .tags a,
section.recommend .recommend-wrap .recommend-music .tags button {
  cursor: pointer;
  margin: 0 4px;
  display: inline-block;
  flex-shrink: 0;
  color: inherit;
  text-decoration: none;
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  line-height: inherit;
}

/* section.recommend .recommend-wrap .recommend-music .tags span:nth-child(1),
section.recommend .recommend-wrap .recommend-music .tags span:nth-child(2),
section.recommend .recommend-wrap .recommend-music .tags span:nth-child(3),
section.recommend .recommend-wrap .recommend-music .tags span:nth-child(4) {
    display: inline-block;
} */

section.recommend .recommend-wrap .recommend-music .tags span:hover,
section.recommend .recommend-wrap .recommend-music .tags a:hover,
section.recommend .recommend-wrap .recommend-music .tags button:hover {
  text-decoration: underline;
}

section.recommend .recommend-wrap .recommend-music .music-items {
  display: flex;
  width: 165px;
  justify-content: space-between;
  gap: 10px;
}

section.recommend .recommend-wrap .recommend-music #muteBtn {
  color: #6b6b6b;
  cursor: pointer;
  font-size: 26px;
}

section.recommend .recommend-wrap .recommend-music .bpm {
  font-size: 12px;
  font-weight: 400;
  line-height: 22px;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
}

section.recommend .recommend-wrap .recommend-music .music-duration {
  font-size: 12px;
  font-weight: 400;
  line-height: 22px;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
}

section.recommend .recommend-wrap .recommend-music .btn-group {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
}


.btn-wrap.btn-wrap--icon-only.btn-wrap--link {
  position: relative;
}

.btn-wrap.btn-wrap--link {
  position: relative;
}
.btn-wrap{
  position: relative;
}

.btn-icon-button {
  background: transparent;
  border: 0;
  padding: 0;
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  cursor: pointer;
}

.track-menu-wrap {
  position: relative;
}

.track-floating-menu {
  position: absolute;
  right: 0;
  bottom: 50px;
  min-width: 140px;
  padding: 6px 0;
  border: 1px solid #d30084;
  border-radius: 8px;
  background: rgba(8, 8, 8, 0.98);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.38);
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  z-index: 40;
}

.track-floating-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.track-floating-menu__item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: transparent;
  color: #ebebeb;
  text-align: left;
  font-size: 16px;
  line-height: 1.35;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease;
}

.track-floating-menu__item:last-child {
  border-bottom: 0;
}

.track-floating-menu__item:hover {
  background: rgba(211, 0, 132, 0.08);
  color: #fff;
}

.track-floating-menu__item span {
  white-space: nowrap;
}

.track-floating-menu__icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex: 0 0 40px;
}

section.recommend .recommend-wrap .recommend-music .btn-group .track-floating-menu__item span {
  font-size: 16px;
  line-height: 1.35;
  cursor: inherit;
  opacity: 1;
  transform: none;
  -webkit-transform: none;
  -ms-transform: none;
}

section.recommend .recommend-wrap .recommend-music .btn-group .track-floating-menu__icon {
  width: 40px;
  height: 40px;
  max-width: none;
  opacity: 1;
  cursor: inherit;
}

.btn-wrap .sns-icons {
  width: 100%;
  display: grid;
  justify-content: space-around;
}

.btn-wrap .sns-icons img {
  height: 22px;
}

section.recommend .recommend-wrap .recommend-music .btn-group .arrow-box {
  position: absolute;
  display: none;
  top: -30px;
  right: 0px;
  padding: 5px 10px;
  box-sizing: border-box;
  width: max-content;
  color: #fff;
  font-size: 14px;
  background-color: #d30084;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

section.recommend
  .recommend-wrap
  .recommend-music
  .btn-group
  .btn-wrap:last-child
  .arrow-box {
  right: 0px;
}


/* section.recommend .recommend-wrap .recommend-music .btn-group .btn-wrap:hover {
  background: radial-gradient(79.5% 79.5% at 50% 50%, #E0008C 0%, rgba(224, 0, 140, 0) 100%);
} */
section.recommend .recommend-wrap .recommend-music .btn-group img {
  max-width: 40px;
  /* height: 40px; */
  cursor: pointer;
}

.link-wrap {
  position: absolute;
  bottom: 50px;
  right: 0;
  display: none;
  background-color: #000;
  border: 1px solid #EB00EB;
  padding:6px 8px 3px;
  box-sizing: border-box;
  border-radius: 8px;
}

  .link-wrap.active {
  display: block;
  min-width:130px;
  z-index: 999;
  padding: 16px;
}


  .link-wrap
  .link-input {
  /*display: flex;*/
  display:none;
  align-items: center;
  gap: 6px;
  margin-bottom: 15px;
}

  .link-wrap
  .link-input
  input {
  border: none;
  background-color: #888;
  color: #fff;
  padding: 4px;
  box-sizing: border-box;
  width: 240px;
}

section.recommend .recommend-wrap .recommend-music .btn-group span {
   font-size: 23px;
    cursor: pointer;
    -webkit-transform: rotate(45deg);
    /* -webkit-transform-origin: left top; */
    -ms-transform: rotate(45deg);
    -ms-transform-origin: left top;
    tansform: rotate(45deg);
    /* transform-origin: left top; */
    line-height: -20px;
}

section.recommend .recommend-wrap .recommend-music .btn-group a.purchase-each {
  display: inline-block;
  padding: 5px 9px;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 6px;
  color: #fff;
  background-color: #000;
  font-size: 12px;
  transition: all 0.5s;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
}

section.recommend
  .recommend-wrap
  .recommend-music
  .btn-group
  a.purchase-each:hover {
  background-color: #fff;
  color: #000;
}

/* section.thema */

section.thema:not(.lsit-page) {
  width: 100%;
  /* background-image: url("../images/bg2.ada1d74014dd.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed; */
  padding: 0;
  box-sizing: border-box;
  /*background: linear-gradient(180deg, rgba(0, 0, 0, 0) 43.51%, #000000 100%);
  backdrop-filter: blur(200px);*/
  background:#000000;
}

section.thema .thema-wrap {
  padding: 30px 0px 70px;
}

section.thema .thema-wrap .thema-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  align-items: center;
  justify-items: center;
  gap: 25px;
}

section.thema.thema--main
  .thema-wrap
  .thema-grid
  .thema-item:nth-child(n + 16) {
  display: none;
}
section.thema .thema-wrap .thema-grid .thema-item,
section.thema .thema-wrap .thema-grid .thema-item img {
  width: 100%;
}
section.thema .thema-wrap .thema-grid .thema-item img {
  border-radius: 6px;
}

section.thema .thema-wrap .thema-grid .thema-item {
  cursor: pointer;
  position: relative;
  border-radius: 6px;
}

section.thema .thema-wrap .thema-grid .thema-item h2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 26px;
  font-family: "SBAggroM";
}

section.thema.sfx-list .thema-wrap .thema-grid.thema-page {
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

section.thema .thema-wrap .thema-grid.thema-page {
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

section.thema .thema-wrap .thema-grid.thema-page .thema-item h2 {
  position: initial;
  transform: initial;
  font-size: 16px;
  margin: 10px 0 20px;
}

section.thema .thema-wrap .thema-grid .thema-item .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  /* height: 100%; */
  background: linear-gradient(
    268.27deg,
    rgba(202, 11, 225, 0.69) 12.97%,
    rgba(253, 79, 120, 0.7) 97.77%
  );
  opacity: 0;
  transition: all 0.5s;
}

section.thema .thema-wrap .thema-grid .thema-item .overlay:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}

section.thema .thema-wrap .thema-grid .thema-item:hover > .overlay {
  opacity: 1;
}

/* listpage */

section.thema.listpage {
  padding: 0px 0 90px;
  background-color: #000;
  background-image: initial;
  height: auto;
}

section.thema.listpage.sfx-list {
  padding-top: 0;
}

.sfx-line {
  height: 30px;
  width: 100%;
  background-color: #fb3b64;
  margin: 50px auto;
}

/* section.creator */

section.thema.creator {
  background-image: initial;
  background-color: #000;
}

/* section.promo */

section.promo {
  padding: 40px 0 90px;
  background-image: url("../images/promo-bg.4896a1d2ea65.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  height: fit-content;
  background: #000000;
}

section.promo .promo-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 70px 200px;
  align-items: center;
  justify-items: center;
  /* margin-top: 50px; */
  margin: 0 auto;
}

section.promo .promo-content .promo-item {
  width: 100%;
  height: 225px;
  cursor: pointer;
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

section.promo .promo-content .promo-item .overlay {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  background: linear-gradient(
    268.27deg,
    rgba(202, 11, 225, 0.69) 12.97%,
    rgba(253, 79, 120, 0.7) 97.77%
  );
  transition: all 0.8s;
  opacity: 0;
}

section.promo .promo-content .promo-item .overlay h2 {
  margin: 10px auto;
}

section.promo .promo-content .promo-item:hover > .overlay {
  opacity: 1;
}

section.promo .promo-content .promo-item:nth-child(2n) {
  height: 450px;
}

section.promo .promo-img,
section.promo .promo-img img {
  width: 100%;
}

.bottom-player {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  background-color: #000;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.bottom-player .player-info {
  display: none;
  flex-direction: column;
}
.bottom-player .player-info .playing-comment {
  color: #e2c326;
  align-self: center;
}
.bottom-player .player-info .code {
  font-size: 12px;
  font-weight: 400;
  cursor: pointer;
  line-height: 22px;
  color: #999;
}
.bottom-player .player-info .title,
.bottom-player .player-info .singer {
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
}
.bottom-player .player-info .singer {
  color: #8f8f8f;
}

.bottom-player .img-wrap,
.bottom-player .img-wrap img {
  width: 100%;
}

.bottom-player .img-wrap img {
  display: block;
}

.bottom-player .player-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 25px 0;
}

.bottom-player .player-wrap img {
  width: 20px;
  opacity: 0.5;
}

.bottom-player .player-wrap .wave-container {
  display: none;
}

.bottom-player .player-wrap .controls img {
  width: 40px;
}


.bottom-player .player-wrap .controls {
  width: 205px;
}

.bottom-player .player-wrap .controls span {
  font-size: 36px;
  color: #999;
}

.bottom-player .player-wrap .btn-group {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
}

.bottom-player .player-wrap .btn-group .link-wrap {
  position: absolute;
  bottom: 30px;
  right: 0;
  display: none;
  background-color: #000;
  border: 1px solid #fff;
  padding: 15px;
  box-sizing: border-box;
}

.bottom-player .player-wrap .btn-group .link-wrap.active {
  display: block;
}

.bottom-player .player-wrap .btn-group .link-wrap .link-input {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 15px;
}

.bottom-player .player-wrap .btn-group .link-wrap .link-input input {
  border: none;
  background-color: #888;
  color: #fff;
  padding: 4px;
  box-sizing: border-box;
}

.bottom-player .player-wrap .btn-group .btn-wrap {
  position: relative;
  cursor: pointer;
}

.bottom-player .player-wrap .btn-group .arrow-box {
  position: absolute;
  display: none;
  top: 0;
  right: 30px;
  padding: 5px 10px;
  box-sizing: border-box;
  width: 100px;
  color: #fff;
  font-size: 14px;
  background-color: #d30084;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

.bottom-player .player-wrap .btn-group .btn-wrap:last-child .arrow-box {
  right: 50px;
}

.category-wrap {
  padding: 0px 0 20px;
  font-size: 0;
}

.category-wrap a {
  display: inline-block;
  transition: all 0.5s;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 16px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
}

.category-wrap a:hover {
  background-color: #d30084;
  color: #000;
}

section.recommend .btn-list {
  display: none;
}

.main-ad {
  display: none;
  padding: 20px 0 90px;
  background-color: #000;
}
.main-ad img {
  margin-bottom: 20px;
  width: 100%;
  cursor: pointer;
}
.btn-list.promotion-btn {
  margin: 0 auto;
}

.mobile-only {
  display: none;
}

.bottom-player .player-wrap {
  padding: 10px 10px;
}

.bottom-player .player-wrap .player-music {
  width: 100%;
  display: flex;
  align-items: center;
}

.bottom-player .player-wrap .player-music .player-info {
  margin-left: 5px;
  width: 15%;
}

.bottom-player .player-wrap .player-music .wavesurfer-container {
  width: 80%;
  margin-left: 10px;
  display: flex;
  align-items: center;
}

.bottom-player .player-wrap .player-music #wavesurfer {
  width: 80%;
  margin-left: 10px;
}

.wave-container {
  display: flex;
}

/* Waveform layout stabilization + skeleton */
:root {
  --audio-h: 30px;
  --wave-skeleton-bg: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.16) 50%,
    rgba(255, 255, 255, 0.08) 100%
  );
}

.wrap_audio {
  position: relative;
  display: inline-block;
  width: 100%;
  min-height: var(--audio-h);
  height: var(--audio-h);
  overflow: visible;
  background: transparent;
}

.wrap_audio::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--wave-skeleton-bg);
  background-size: 200% 100%;
  animation: wave-skeleton-shimmer 1.2s ease-in-out infinite;
  opacity: 0.85;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.wrap_audio[data-wave-ready="1"]::before {
  opacity: 0;
}

.wrap_audio img.audio_img {
  position: absolute;
  left: 0;
  top: 0;
  height: var(--audio-h);
  width: 100%;
  object-fit: fill;
  display: block;
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 1;
}

.wrap_audio[data-wave-ready="1"] img.audio_img {
  opacity: 1;
}

.cutter_audio {
  pointer-events: none;
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  height: 100%;
  overflow: hidden;
  z-index: 2;
}

.cutter_audio > img.audio_img {
  position: absolute;
  left: 0;
  top: 0;
  height: var(--audio-h);
  width: 100%;
}

.wave-wrap {
  position: relative;
  min-height: var(--audio-h);
}

.wave-hover-line,
.wave-hover-time {
  z-index: 10;
}

.wave-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--wave-skeleton-bg);
  background-size: 200% 100%;
  animation: wave-skeleton-shimmer 1.2s ease-in-out infinite;
  opacity: 0.85;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.wave-wrap[data-wave-ready="1"]::before {
  opacity: 0;
}

.wave-canvas {
  min-height: var(--audio-h);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease;
}

.wave-wrap[data-wave-ready="1"] .wave-canvas {
  opacity: 1;
  visibility: visible;
}

@keyframes wave-skeleton-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/*!
 * Load Awesome v1.1.0 (http://github.danielcardoso.net/load-awesome/)
 * Copyright 2015 Daniel Cardoso <@DanielCardoso>
 * Licensed under MIT
 */
 .la-line-scale-pulse-out,
 .la-line-scale-pulse-out > div {
     position: relative;
     -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
             box-sizing: border-box;
 }
 .la-line-scale-pulse-out {
     display: block;
     font-size: 0;
     color: #fff;
 }
 .la-line-scale-pulse-out.la-dark {
     color: #333;
 }
 .la-line-scale-pulse-out > div {
     display: inline-block;
     float: none;
     background-color: currentColor;
     border: 0 solid currentColor;
 }
 .la-line-scale-pulse-out {
     width: 40px;
     height: 32px;
 }
 .la-line-scale-pulse-out > div {
     width: 4px;
     height: 32px;
     margin: 2px;
     margin-top: 0;
     margin-bottom: 0;
     border-radius: 0;
     -webkit-animation: line-scale-pulse-out .9s infinite cubic-bezier(.85, .25, .37, .85);
        -moz-animation: line-scale-pulse-out .9s infinite cubic-bezier(.85, .25, .37, .85);
          -o-animation: line-scale-pulse-out .9s infinite cubic-bezier(.85, .25, .37, .85);
             animation: line-scale-pulse-out .9s infinite cubic-bezier(.85, .25, .37, .85);
 }
 .la-line-scale-pulse-out > div:nth-child(3) {
     -webkit-animation-delay: -.9s;
        -moz-animation-delay: -.9s;
          -o-animation-delay: -.9s;
             animation-delay: -.9s;
 }
 .la-line-scale-pulse-out > div:nth-child(2),
 .la-line-scale-pulse-out > div:nth-child(4) {
     -webkit-animation-delay: -.7s;
        -moz-animation-delay: -.7s;
          -o-animation-delay: -.7s;
             animation-delay: -.7s;
 }
 .la-line-scale-pulse-out > div:nth-child(1),
 .la-line-scale-pulse-out > div:nth-child(5) {
     -webkit-animation-delay: -.5s;
        -moz-animation-delay: -.5s;
          -o-animation-delay: -.5s;
             animation-delay: -.5s;
 }
 .la-line-scale-pulse-out.la-sm {
     width: 20px;
     height: 16px;
 }
 .la-line-scale-pulse-out.la-sm > div {
     width: 2px;
     height: 16px;
     margin: 1px;
     margin-top: 0;
     margin-bottom: 0;
 }
 .la-line-scale-pulse-out.la-2x {
     width: 80px;
     height: 64px;
 }
 .la-line-scale-pulse-out.la-2x > div {
     width: 8px;
     height: 64px;
     margin: 4px;
     margin-top: 0;
     margin-bottom: 0;
 }
 .la-line-scale-pulse-out.la-3x {
     width: 120px;
     height: 96px;
 }
 .la-line-scale-pulse-out.la-3x > div {
     width: 12px;
     height: 96px;
     margin: 6px;
     margin-top: 0;
     margin-bottom: 0;
 }

  p.mainsub.margin-top{
    margin-top: 55px !important;
  }

 /*
  * Animation
  */
 @-webkit-keyframes line-scale-pulse-out {
     0% {
         -webkit-transform: scaley(1);
                 transform: scaley(1);
     }
     50% {
         -webkit-transform: scaley(.3);
                 transform: scaley(.3);
     }
     100% {
         -webkit-transform: scaley(1);
                 transform: scaley(1);
     }
 }
 @-moz-keyframes line-scale-pulse-out {
     0% {
         -moz-transform: scaley(1);
              transform: scaley(1);
     }
     50% {
         -moz-transform: scaley(.3);
              transform: scaley(.3);
     }
     100% {
         -moz-transform: scaley(1);
              transform: scaley(1);
     }
 }
 @-o-keyframes line-scale-pulse-out {
     0% {
         -o-transform: scaley(1);
            transform: scaley(1);
     }
     50% {
         -o-transform: scaley(.3);
            transform: scaley(.3);
     }
     100% {
         -o-transform: scaley(1);
            transform: scaley(1);
     }
 }
 @keyframes line-scale-pulse-out {
     0% {
         -webkit-transform: scaley(1);
            -moz-transform: scaley(1);
              -o-transform: scaley(1);
                 transform: scaley(1);
     }
     50% {
         -webkit-transform: scaley(.3);
            -moz-transform: scaley(.3);
              -o-transform: scaley(.3);
                 transform: scaley(.3);
     }
     100% {
         -webkit-transform: scaley(1);
            -moz-transform: scaley(1);
              -o-transform: scaley(1);
                 transform: scaley(1);
     }
 }
 
@media all and (max-width: 1700px) {
section.main {
     height: 90vh;
     }
}

@media all and (max-width: 1440px) {
section.main {
     height: 70vh;
     }  
section.recommend.recommend--sfx .recommend-wrap .recommend-music .playBtn,
  .album section.recommend .recommend-wrap .recommend-music .playBtn { 
    max-width: 45%;
  }

  section.main .main-wrap .main-content .text-wrap {
    padding: 0 50px;
    margin-left: 0;
  }
  section.recommend .recommend-wrap .recommend-music {
    /* display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        justify-items: center;
        gap: 20px;
        margin-bottom: 15px; */
/*     display: flex; */
/*     align-items: center; */
/*     justify-content: space-between; */
    grid-template-columns: 9fr 6fr 1fr 1fr 2fr 1fr 1fr;
  }

  section.recommend .recommend-wrap .recommend-music .music-items {
    grid-column: auto / span 3;
  }
  section.recommend .recommend-wrap .recommend-music .btn-group {
    grid-column: auto / span 3;
  }

    
  section.recommend .recommend-wrap .recommend-list.popular_thema .recommend-music .btn-group  {
    grid-column:auto;
  }
  section.recommend .recommend-wrap .recommend-music.hiphop-music {
    display: flex;
  }
  section.recommend .recommend-wrap .recommend-music.hiphop-music .btn-group {
    grid-column: auto;
    justify-content: center;
    gap: 20px;
  }
  /* section.recommend .recommend-wrap .recommend-music.hiphop-music .music-duration {
        font-size: 12px;
        color: #fff;
    } */
  section.thema .thema-wrap .thema-grid .thema-item h2 {
    font-size: 20px;
  }
  section.promo .promo-content {
    gap: 70px 50px;
  }
  section.recommend .recommend-wrap {
    padding: 0 20px;
    box-sizing: border-box;
  }
  section.recommend .recommend-wrap .recommend-music .bpm,
  section.recommend .recommend-wrap .recommend-music .music-duration {
    font-size: 15px;
  }
  .bottom-player .player-wrap {
    padding: 0 20px;
    box-sizing: border-box;
  }
  section.thema .thema-wrap {
    padding: 20px 20px 120px;
  }
}

@media all and (max-width: 1080px) {
  .mobile-only {
    display: block;
  }

  /* .recommend-music .wave-container {
    display: block;
  } */

  section.recommend .recommend-wrap .recommend-music .wave-container, 
  section.recommend .recommend-wrap .recommend-music .tags,
  section.recommend .recommend-wrap .recommend-music .bpm,
  section.recommend .recommend-wrap .recommend-music .music-duration { 
    display: none;
  }  

  section.main .main-wrap .text-wrap h1.main-title {
    font-size: 45px;
  }
  section.main .main-wrap .text-wrap p {
    font-size: 20px;
  }
  section.recommend .recommend-wrap .recommend-music {
    /* display: flex;
        flex-direction: column; */
    /* background-color: #3c3c3c; */
    /* border-radius: 15px; */
    border-bottom: 1px solid #232323;
    grid-template-columns: 6fr 1fr 1fr 1fr;
  }
  section.recommend .recommend-wrap .recommend-music .playBtn {
    width: auto;
  }
  section.recommend .recommend-wrap .recommend-music .playBtn p.music-title {
    font-size: 14px;
  }
  section.recommend
    .recommend-wrap
    .recommend-music
    .playBtn
    p.music-title.wave-title {
    font-size: 10px;
  }
  section.recommend .recommend-wrap .recommend-music .tags {
    margin: 10px auto;
  }
  .bottom-player .player-wrap {
    /* display: none; */
  }
  .bottom-player .player-wrap .btn-group {
    gap: 10px;
    display: none;
  }
  .bottom-player .player-wrap img {
    width: 20px;
  }
  .bottom-player .player-wrap .controls {
    width: 80px;
  }
  .bottom-player .player-wrap .music-title {
    word-break: keep-all;
  }
  .bottom-player .player-wrap .wave-container {
    display: block;
  }
  section.recommend .recommend-wrap .recommend-music .playBtn img {
    width: 38px;
    height: 38px;
  }
  .track-floating-menu__icon,
  section.recommend .recommend-wrap .recommend-music .btn-group .track-floating-menu__icon {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
  }
  section.recommend
    .recommend-wrap
    .recommend-music
    .btn-group
    a.purchase-each {
    padding: 5px;
    font-size: 11px;
  }
  section.recommend .recommend-wrap .recommend-music .playBtn {
    gap: 5px;
  }
}

@media all and (max-width: 950px) {
  section.thema .thema-wrap .thema-grid .thema-item h2 {
    font-size: 18px;
  }
  section.promo .promo-content {
    grid-template-columns: 1fr;
  }
  section.promo .promo-content .promo-item {
    width: 60%;
    height: 325px;
  }
  section.thema.sfx-list .thema-wrap .thema-grid.thema-page {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media all and (max-width: 768px) {
  section.main .main-wrap {
    position: initial;
    background-image: url(/static/images/mainback_m.jpg);
    background-repeat: no-repeat;
    background-size: 100% auto;
  }
  section.main .main-wrap .main-content {
  display: table-cell;
    /* background: none !important; */
    vertical-align: top;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 90%, #000000 100%);
    padding-top: 260px;
   }
  section.main a.btn-brochure {
    display: none;
  }
  section.main .main-wrap .main-content .text-wrap {
    padding: 0 30px;
  }
  section.main .main-wrap .text-wrap h1.main-title {
    margin: 0 0 20px;
    font-size: 32px;
    line-height: 1.5em;
  }
  section.main .main-wrap .text-wrap .main-comment {
    margin: initial;
    margin: 0 auto;
  }
  section.main .main-wrap .text-wrap .main-sns a {
    width: 40px;
  }
  section.main .main-wrap .text-wrap p {
    font-size: 16px;
    padding-right: 50px;
  }
  section.main .main-wrap .text-wrap p.mainsub {
	font-size: 28px;
	line-height: 32px;
  text-align: center;
  margin: 0 auto;
  }

  p.mainsub.margin-top{
    margin-top: 20px !important;
  }

  section.recommend {
    padding: 10px 0 10px;
  }
  section.thema .thema-wrap {
    padding: 30px 20px 80px;
  }
  section.promo {
    padding: 40px 20px 90px;
  }
  .title-wrap.sfx-title-wrap {
    padding: 160px 10px 0;
  }
  section.recommend .recommend-wrap .recommend-music .wave-wrap .wave {
    width: 230px;
  }
  .title-wrap h2.title {
    font-size: 26px;
    line-height: inherit;
  }
  section.thema .thema-wrap .thema-grid {
    grid-template-columns: 1fr 1fr;
  }
  section.promo .promo-content .promo-item {
    width: 80%;
  }
  section.thema .thema-wrap .thema-grid.thema-page {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
  section.thema .thema-wrap .thema-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* section.recommend.recommend-main .title-wrap p.subtitle,
    section.thema.thema--main .title-wrap p.subtitle,
    section.creator-info .title-wrap p.subtitle {
      display: none;
    } */
  section.thema.thema--main .title-wrap,
  section.creator-info.creator-info--main .title-wrap {
    padding-top: 0;
  }
  section.creator-info.creator-info--main .title-wrap {
    padding-bottom: 0;
  }
  .recommend-volume {
    display: none;
  }

  .bottom-player .player-info {
    align-items: center;
  }
  .bottom-player .player-info .playing-comment {
    display: none;
  }
  .bottom-player .player-info .code {
    vertical-align: middle;
    font-size: 16px;
    border: 1px solid #535353;
    border-radius: 14px;
    padding: 0px 5px 0px 5px;
  }
  .bottom-player .player-info .title,
  .bottom-player .player-info .singer {
    font-size: 12px;
  }
  .bottom-player .player-wrap .controls {
    width: 50px;
  }
  section.thema.thema--main
    .thema-wrap
    .thema-grid
    .thema-item:nth-child(n + 7) {
    display: none;
  }
  section.thema .thema-wrap .thema-grid .thema-item img {
    border-radius: 0;
  }
  section.thema.listpage {
    padding: 0px 0 0px;
  }
  section.promo .title-wrap {
    padding: 0;
  }
  section.thema.sfx-list .thema-wrap .thema-grid.thema-page {
    grid-template-columns: 1fr 1fr;
  }
  section.recommend .recommend-wrap .recommend-music .btn-group span {
    font-size: 30px;
    cursor: pointer;
    -webkit-transform: rotate(45deg);
    /* -webkit-transform-origin: left top; */
    -ms-transform: rotate(45deg);
    -ms-transform-origin: left top;
    tansform: rotate(45deg);
    /* transform-origin: left top; */
    line-height: -20px;
    opacity:0.8;
}
}

@media all and (max-width: 450px) {

  .link-wrap{
    bottom: 40px;
  }

  .bottom-player .player-wrap .player-music .player-info {
    width: 25%;
  }

  .bottom-player .player-wrap .player-music .title {
    font-size: 14px;
    display:none;
  }
  /*220610추가*/
  section.main .main-wrap {
    position: initial;
    background-image: url(/static/images/mainback_m.jpg);
    background-repeat: no-repeat;
    background-size: 100% auto;
  }
   /*220611추가*/
  section.main .main-wrap .main-content {
  display: table-cell;
    /* background: none !important; */
    vertical-align: top;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 90%, #000000 100%);
    padding-top: 70px;
   }
  section.main .main-wrap .main-content .text-wrap {
    padding: 0 10px;
  }
  section.main .main-wrap .main-content .text-wrap br.mobile {
    display: none;
  }
  section.main .main-wrap .text-wrap h1.main-title {
    font-size: 30px;
    line-height: 1.3em;
    margin-bottom: 15px;
  }
  section.main .main-wrap .text-wrap .main-sns a {
    width: 35px;
  }
  section.main a.btn-brochure {
    right: -50px;
  }
  /* section.thema .thema-wrap .thema-grid {
        grid-template-columns: 1fr;
    } */
  section.thema .thema-wrap .thema-grid .thema-item h2 {
    font-size: 23px;
  }
  section.promo .promo-content .promo-item {
    width: 100%;
  }
  /* section.thema .thema-wrap .thema-grid.thema-page {
        grid-template-columns: 1fr;
    } */
  section.thema.sfx-list .thema-wrap .thema-grid.thema-page {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 20px;
  }
  section.creator-info .creator-wrap .text-wrap .btn-group {
    justify-content: space-between;
    gap: 0;
  }
  section.creator-info .creator-wrap .text-wrap .btn-group img {
    width: 30px;
    height: 30px;
  }
  /* section.recommend .recommend-wrap .recommend-music .btn-group .link-wrap {
    min-width: 135px;
    right: -50px;
	  z-index:9999999999999999;
  } */
  /* section.recommend .btn-list {
        display: block;
    } */
  .bottom-player .player-wrap {
    justify-content: flex-start;
  }
  section.thema .thema-wrap .thema-grid {
    gap: 10px;
  }

  section.thema.thema--main .thema-wrap .thema-grid .thema-item:nth-child(7),
  section.thema.thema--main .thema-wrap .thema-grid .thema-item:nth-child(8),
  section.thema.thema--main .thema-wrap .thema-grid .thema-item:nth-child(9),
  section.thema.thema--main .thema-wrap .thema-grid .thema-item:nth-child(10),
  section.thema.thema--main .thema-wrap .thema-grid .thema-item:nth-child(11),
  section.thema.thema--main .thema-wrap .thema-grid .thema-item:nth-child(12),
  section.thema.thema--main .thema-wrap .thema-grid .thema-item:nth-child(13),
  section.thema.thema--main .thema-wrap .thema-grid .thema-item:nth-child(14),
  section.thema.thema--main .thema-wrap .thema-grid .thema-item:nth-child(15) {
    display: none;
  }
  section.creator-info--main .creator-wrap .text-wrap {
    display: none;
  }
  .category-wrap a {
    font-size: 12px;
  }
  section.recommend .recommend-wrap .recommend-music .btn-group {
    gap: 11px;
  }

  section.main .main-wrap .text-wrap p {
    font-size: 10px;
    line-height: 12px;
    padding-right: 0;
  }

  section.main .main-wrap .text-wrap p.mobile_none {
    display: none;
  }

  section.recommend .recommend-wrap .recommend-music .wave-info .wave-singer {
    display: none;
  }

  .main-ad {
    display: block;
    padding: 20px 0 40px;
  }
  section.promo {
    padding: 0 10px;
  }
  section.promo .title-wrap {
    padding: 40px 0px 20px;
  }
  section.promo .title-wrap p.subtitle {
    font-size: 7px;
    line-height: inherit;
    margin: 8px 0;
  }
  .main-ad img {
    margin-top: 20px;
  }
  .btn-list.promotion-btn {
    font-size: 12px;
  }

  section.recommend .recommend-wrap .recommend-music.active {
    display: none;
  }

  section.thema.listpage.sfx-list .thema-wrap {
    padding: 0px 10px 80px;
  }

  section.recommend .recommend-wrap{
    padding: 0;
  }

  section.recommend.main-sns-trend-section .popular_thema_music_list{
    padding: 100px 0px 0px;
  }


  section.recommend .recommend-wrap .recommend-music {
    display: flex;
    padding: 5px 10px;
    border-bottom: none;
    margin-bottom: 6px;
  }
  section.recommend .title-wrap {
    padding: 45px 10px 20px;
  }
  section.recommend.recommend-main .title-wrap {
    padding: 15px 10px 20px;
    width: auto;
  }
  section.recommend .recommend-wrap .recommend-music .playBtn img {
    width: 32px;
    height: 32px;
  }
  section.recommend .recommend-wrap .recommend-music .playBtn {
    gap: 10px;
    width: 100%;
  }
  .title-wrap h2.title {
    line-height: initial;
    font-size: 20px;
  }
  section.recommend.recommend-main .title-wrap p.subtitle,
  section.thema.thema--main .title-wrap p.subtitle,
  section.creator-info .title-wrap p.subtitle {
    font-size: 7px;
    line-height: inherit;
    margin: 6px 0;
  }
  section.recommend .recommend-wrap .recommend-music .playBtn .music-info {
    display: flex;
    flex-direction: column;
  }
  section.recommend .recommend-wrap .recommend-music .wave-info {
    order: 2;
    padding-left: 0px;
  }
  section.recommend .recommend-wrap .recommend-music .music-info .wave-title {
    font-size: 15px;
    font-weight: 700;
    padding-left: 0px;
    max-width: 220px;
  }
  section.recommend .recommend-wrap .recommend-music .playBtn p.music-title {
    font-size: 9px;
    font-weight: 100;
  }
  section.recommend .recommend-wrap .recommend-music .btn-group img {
    height: 30px;
    width: 30px;
    opacity: 0.8;
  }
  section.recommend .recommend-wrap .recommend-music .btn-group .btn-wrap .sns-icons img {
    height: 27px;
    width: auto;
    opacity: 0.8;
  }
  section.thema .thema-wrap {
    padding: 20px 10px;
  }
  section.thema.thema--main .thema-wrap {
    padding: 20px 10px;
  }
  .title-wrap.sfx-title-wrap {
    padding: 120px 10px 0;
  }
  .bottom-player .player-wrap {
    padding: 5px 9px 3px;
  }
  .bottom-player .player-wrap .controls img {
    width: 32px;
  }
  .bottom-player .player-wrap .music-title {
    color: #d2d2d2;
    font-size: 10px;
  }
  .bottom-player .player-wrap .player-music .code {
    font-size: 12px;
  }
  section.thema .thema-wrap .thema-grid.thema-page {
    gap: 10px;
  }
  section.thema:not(.lsit-page) {
    background: #000;
  }
  section.main {
    /*height: calc(60% - 25px);*/
    max-height:410px;
    padding-top: 96px;
    /*height: 60%;*/
  }
  section.main .main-wrap {
    position: initial;
    background-image: url(/static/images/mainback_m.jpg);
    background-size: 100% auto;
    background-repeat: no-repeat;
  }
  section.recommend {
    margin-top: 0;
  }
  section.recommend .recommend-wrap .recommend-music.hiphop-music .btn-group {
    gap: 12px;
  }
}

@media all and (max-width: 400px) {
  section.recommend .recommend-wrap .recommend-music .tags {
    width: 310px;
  }
}

@media all and (max-width: 1080px) {
  .bottom-player.mobile-only {
    --mobile-player-like-w: 30px;
    --mobile-player-playback-w: 144px;
    --mobile-player-bottom-gap: 20px;
    z-index: 40;
    background: #141414;
    border-top: none;
    box-shadow: none;
  }

  .bottom-player.mobile-only .mobile-player-shell {
    position: relative;
    width: 100%;
    max-width: none;
    isolation: isolate;
  }

  .bottom-player.mobile-only .mobile-player-toggle {
    position: absolute;
    right: 70px;
    top: auto;
    bottom: 100%;
    transform: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    width: 102px;
    min-width: 102px;
    height: 36px;
    padding: 0 12px;
    box-sizing: border-box;
    border: none;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    background: #444;
    color: #ebebeb;
    font-family: "Pretendard", sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 16.7px;
    white-space: nowrap;
    cursor: pointer;
    z-index: 3;
  }

  .bottom-player.mobile-only .mobile-player-toggle__label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    line-height: 16.7px;
  }

  .bottom-player.mobile-only .mobile-player-toggle__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 14px;
    width: 14px;
    height: 14px;
    font-size: 14px;
    line-height: 14px;
    overflow: hidden;
  }

  .bottom-player.mobile-only .mobile-player-progress-track {
    position: absolute;
    top: 1px;
    left: 0;
    z-index: 4;
    width: 100%;
    height: 1px;
    background: #666;
  }

  .bottom-player.mobile-only #mobile-player-progress-fill {
    display: block;
    width: 0;
    height: 100%;
    background: #d30084;
    transition: none;
  }

  .bottom-player.mobile-only .mobile-player-panel {
    position: relative;
    z-index: 2;
    max-height: 132px;
    opacity: 1;
    overflow: hidden;
    width: 100%;
    max-width: none;
    transition: max-height 0.24s ease, opacity 0.24s ease, padding 0.24s ease;
  }

  .bottom-player.mobile-only[data-collapsed="1"] .mobile-player-panel {
    max-height: 0;
    opacity: 0;
    pointer-events: none;
  }

  .bottom-player.mobile-only .content-wrap.mobile-player-panel {
    width: 100%;
    max-width: none;
    padding: 16px;
    box-sizing: border-box;
  }

  .bottom-player.mobile-only[data-collapsed="1"] .content-wrap.mobile-player-panel {
    padding-top: 2px;
    padding-bottom: 0;
  }

  .bottom-player.mobile-only .player-wrap {
    display: flow-root;
    width: 100%;
    min-width: 0;
    padding: 0;
  }

  .bottom-player.mobile-only .player-wrap img {
    opacity: 1;
  }

  .bottom-player.mobile-only .mobile-player-top {
    display: flex;
    gap: 15px;
    align-items: center;
  }

  .bottom-player.mobile-only .mobile-player-thumb {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    overflow: hidden;
    background: linear-gradient(135deg, #3a3a3a 0%, #202020 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .bottom-player.mobile-only #mobile-player-thumb-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .bottom-player.mobile-only #mobile-player-thumb-placeholder {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
  }

  .bottom-player.mobile-only .player-music {
    flex: 1 1 0;
    width: 0;
    min-width: 0;
    display: flex;
    align-items: center;
  }

  .bottom-player.mobile-only .wavesurfer-container {
    position: relative;
    flex: 1 1 0;
    width: 0;
    max-width: 100%;
    margin-left: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    overflow: hidden;
  }

  .bottom-player.mobile-only .mobile-player-wave-shell {
    position: relative;
    flex: 1 1 0;
    min-height: 17px;
    width: 0;
    max-width: 100%;
    overflow: hidden;
  }

  .bottom-player.mobile-only .mobile-player-wave-visual.wrap_audio {
    --wave-w: 220px;
    --audio-h: 17px;
    display: block;
    width: 100%;
    height: var(--audio-h);
    min-height: var(--audio-h);
  }

  .bottom-player.mobile-only .mobile-player-wave-visual > img.audio_img,
  .bottom-player.mobile-only .mobile-player-wave-visual .highlight_audio > img.audio_img,
  .bottom-player.mobile-only .mobile-player-wave-visual .highlight_played_audio > img.audio_img,
  .bottom-player.mobile-only .mobile-player-wave-visual .cutter_audio > img.audio_img {
    width: var(--wave-w) !important;
    height: var(--audio-h) !important;
    max-width: none !important;
  }

  .bottom-player.mobile-only .mobile-player-wave-visual .highlight_audio {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 2;
    display: none;
  }

  .bottom-player.mobile-only .mobile-player-wave-visual .highlight_played_audio {
    position: absolute;
    inset: 0 auto 0 0;
    width: 0;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 4;
    display: none;
  }

  .bottom-player.mobile-only .mobile-player-wave-visual .highlight_audio,
  .bottom-player.mobile-only .mobile-player-wave-visual .highlight_played_audio,
  .bottom-player.mobile-only .mobile-player-wave-visual .cutter_audio {
    border-radius: 2px;
  }

  .bottom-player.mobile-only .mobile-player-wave-visual .cutter_audio {
    z-index: 3;
  }

  .bottom-player.mobile-only .mobile-player-wave-visual > img.wave_image.audio_img {
    opacity: 0.4;
  }

  .bottom-player.mobile-only .mobile-player-wave-visual .audio_img--highlight {
    filter: brightness(1.22) contrast(1.12) saturate(1.9);
    opacity: 0;
  }

  .bottom-player.mobile-only .mobile-player-wave-visual .audio_img--progress-base-hide {
    opacity: 0;
  }

  .bottom-player.mobile-only .mobile-player-wave-visual .audio_img--progress {
    filter: none;
    opacity: 1;
  }

  .bottom-player.mobile-only .mobile-player-wave-visual[data-highlight-visible="0"] .highlight_audio,
  .bottom-player.mobile-only .mobile-player-wave-visual[data-highlight-visible="0"] .highlight_played_audio {
    display: none;
  }

  .bottom-player.mobile-only .mobile-player-wave-visual[data-highlight-visible="1"] > img.wave_image.audio_img {
    opacity: 0.45;
  }

  .bottom-player.mobile-only .mobile-player-wave-visual[data-highlight-visible="1"] .highlight_audio,
  .bottom-player.mobile-only .mobile-player-wave-visual[data-highlight-visible="1"] .highlight_played_audio {
    display: block;
  }

  .bottom-player.mobile-only .mobile-player-wave-visual[data-highlight-visible="1"] .audio_img--highlight {
    opacity: 0.56;
  }

  .bottom-player.mobile-only .mobile-player-wave-visual[data-highlight-visible="1"] .audio_img--progress-base-hide {
    filter: brightness(0);
    opacity: 1;
  }

  .bottom-player.mobile-only .mobile-player-wave-visual[data-highlight-visible="1"] .audio_img--progress {
    opacity: 0.6;
  }

  .bottom-player.mobile-only .mobile-player-wave-hitarea {
    position: absolute;
    inset: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    z-index: 10;
  }

  .bottom-player.mobile-only .mobile-player-wave-shell[data-render-mode="image"] #wavesurfer {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 17px;
    opacity: 0;
    pointer-events: none;
  }

  .bottom-player.mobile-only .mobile-player-wave-shell[data-render-mode="wavesurfer"] .mobile-player-wave-visual {
    display: none;
  }

  .bottom-player.mobile-only .mobile-player-wave-shell[data-render-mode="wavesurfer"] #wavesurfer {
    position: relative;
    width: 100%;
    height: 17px;
    opacity: 1;
    pointer-events: auto;
  }

  .bottom-player.mobile-only .player-music #wavesurfer {
    width: 100%;
    margin-left: 0;
  }

  .bottom-player.mobile-only .mobile-player-spinner {
    position: absolute;
    inset: 0;
    z-index: 12;
    align-items: center;
    justify-content: center;
    background: rgba(23, 23, 23, 0.65);
    border-radius: 4px;
  }

  .bottom-player.mobile-only .mobile-player-time {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    flex: 0 0 auto;
    width: 32px;
    min-width: 0;
    padding-left: 0;
    color: #ebebeb;
    font-size: 12px;
    font-weight: 500;
    line-height: 14.32px;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
    text-align: right;
    flex-shrink: 0;
  }

  .bottom-player.mobile-only .mobile-player-bottom {
    display: flex;
    align-items: center;
    gap: var(--mobile-player-bottom-gap);
    margin-top: 16px;
    width: 100%;
    min-width: 0;
    min-height: 44px;
  }

  .bottom-player.mobile-only .mobile-player-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
    min-height: 44px;
  }

  .bottom-player.mobile-only .mobile-player-actions {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: var(--mobile-player-bottom-gap);
    flex: 0 0 auto;
    width: calc(var(--mobile-player-playback-w) + var(--mobile-player-like-w) + var(--mobile-player-bottom-gap));
    min-width: calc(var(--mobile-player-playback-w) + var(--mobile-player-like-w) + var(--mobile-player-bottom-gap));
  }

  .bottom-player.mobile-only .music-title,
  .bottom-player.mobile-only #mobile-player-title {
    display: block;
    margin: 0;
    color: #ebebeb;
    font-size: 16px;
    font-weight: 400;
    line-height: 19.1px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .bottom-player.mobile-only .mobile-player-code {
    display: none;
  }

  .bottom-player.mobile-only .mobile-player-playback {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex: 0 0 auto;
    width: var(--mobile-player-playback-w);
    min-width: var(--mobile-player-playback-w);
  }

  .bottom-player.mobile-only .mobile-player-nav,
  .bottom-player.mobile-only .mobile-player-like {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    color: #d7d7d7;
    padding: 0;
    cursor: pointer;
    opacity: 1;
  }

  .bottom-player.mobile-only .mobile-player-nav[disabled],
  .bottom-player.mobile-only .mobile-player-like[disabled] {
    opacity: 1;
    cursor: default;
  }

  .bottom-player.mobile-only .mobile-player-nav__image {
    width: 30px;
    height: 30px;
    object-fit: contain;
    opacity: 1;
  }

  .bottom-player.mobile-only .mobile-player-nav__fallback,
  .bottom-player.mobile-only .mobile-player-like .material-icons-outlined {
    font-size: 22px;
    opacity: 1;
  }

  .bottom-player.mobile-only .mobile-player-like.is-active {
    color: #d30084;
  }

  .bottom-player.mobile-only .mobile-player-like {
    flex: 0 0 var(--mobile-player-like-w);
  }

  .bottom-player.mobile-only .mobile-player-like__icon {
    display: block;
    width: 30px;
    height: 30px;
    object-fit: contain;
    opacity: 1;
  }

  .bottom-player.mobile-only .controls {
    width: auto;
  }

  .bottom-player.mobile-only .mobile-player-main-control {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 999px;
    background: transparent;
    padding: 0;
    cursor: pointer;
  }

  .bottom-player.mobile-only #PlayerBtn {
    display: none !important;
    font-size: 0 !important;
    line-height: 0 !important;
    color: transparent !important;
  }

  .bottom-player.mobile-only .player-wrap .controls img.mobile-player-main-control__image {
    display: block;
    width: 44px;
    height: 44px;
    object-fit: contain;
    opacity: 1;
  }
}

@media all and (max-width: 450px) {
  .bottom-player.mobile-only {
    --mobile-player-playback-w: 144px;
  }

  .bottom-player.mobile-only .mobile-player-toggle {
    width: 102px;
    min-width: 102px;
    height: 36px;
    padding: 0 12px;
    font-size: 14px;
    z-index: 3;
  }

  .bottom-player.mobile-only .content-wrap.mobile-player-panel {
    padding: 16px;
  }

  .bottom-player.mobile-only .mobile-player-top {
    gap: 15px;
  }

  .bottom-player.mobile-only .mobile-player-thumb {
    width: 40px;
    height: 40px;
  }

  .bottom-player.mobile-only .mobile-player-wave-visual.wrap_audio,
  .bottom-player.mobile-only .mobile-player-wave-shell[data-render-mode="wavesurfer"] #wavesurfer,
  .bottom-player.mobile-only .mobile-player-wave-shell[data-render-mode="image"] #wavesurfer {
    --audio-h: 17px;
    height: 17px;
    min-height: 17px;
  }

  .bottom-player.mobile-only .mobile-player-time {
    width: 32px;
    font-size: 12px;
  }

  .bottom-player.mobile-only .music-title,
  .bottom-player.mobile-only #mobile-player-title {
    font-size: 16px;
  }

  .bottom-player.mobile-only .mobile-player-main-control {
    width: 44px;
    height: 44px;
  }

  .bottom-player.mobile-only .player-wrap .controls img.mobile-player-main-control__image {
    width: 44px;
    height: 44px;
  }

  .bottom-player.mobile-only .mobile-player-bottom,
  .bottom-player.mobile-only .mobile-player-copy,
  .bottom-player.mobile-only .mobile-player-actions {
    min-height: 44px;
  }
}
