* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font: inherit;
}

html {
  height: 100%;
  font-size: 62.5%;
}

body {
  height: 100%;
  color: #000;
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: -0.01em;
  word-break: keep-all;
  -webkit-font-smoothing: antialiased;
}

li {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

input:focus,
button:focus,
select:focus,
textarea:focus {
  outline: none;
}

input[type=search]::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
select::-ms-expand {
  display: none;
}

.container {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  height: 48px;
  padding: 0 20px;
  background-color: #fff;
  z-index: 50;
}
.header.h-50 {
  height: 50px;
}
.header.h-56 {
  height: 56px;
}
.header.transparent {
  background-color: transparent;
  position: fixed;
}
.header h1 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.32px;
}
.header.has-back-button h1 {
  flex: 1;
  margin-right: 24px;
  text-align: center;
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: auto;
  padding-bottom: 64px;
}

.content-title-container {
  display: flex;
  flex-direction: column;
  padding: 30px 16px;
}

.content-title {
  font-size: 30px;
  font-weight: 700;
}

.content-title-24 {
  font-size: 24px;
  font-weight: 700;
}

.search-bar {
  padding: 0 20px;
}

.header + .search-bar {
  margin-top: 4px;
}

.search-bar-input {
  width: 100%;
  height: 35px;
  padding: 0 12px 0 36px;
  border: 0;
  border-radius: 18px;
  background: #f5f5f5 url("../img/ic_search_18.svg") left 12px center no-repeat;
  font-size: 14px;
}
.search-bar-input::placeholder {
  color: #666666;
}

.main-banner-container {
  position: relative;
  height: fit-content;
  margin: 24px 20px 36px;
  aspect-ratio: 320/150;
  border-radius: 12px;
  overflow: visible;
}
.main-banner-container img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

.splide__pagination-custom {
  display: flex;
  position: absolute;
  bottom: 10px;
  left: auto !important;
  right: 10px !important;
  width: fit-content;
  padding: 3px 8px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  font-size: 10.5px;
}
.splide__pagination-custom .total {
  color: #888;
}

.main-banner-container.style-full {
  margin: 0;
  border-radius: 0;
  aspect-ratio: 360/216;
}
.main-banner-container.style-full img {
  border-radius: 0;
}
.main-banner-container.style-full .splide__pagination-custom {
  gap: 5px;
  left: 29px !important;
  bottom: 21px !important;
  padding: 0;
  background-color: transparent;
}
.main-banner-container.style-full .splide__pagination-custom .splide__pagination__page {
  width: 6px;
  height: 6px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background-color: transparent;
}
.main-banner-container.style-full .splide__pagination-custom .splide__pagination__page.is-active {
  transform: none;
  border-color: #fff;
  background-color: #fff;
}

.content.coloring_home .main-banner-container {
  margin: 0;
  border-radius: 0;
  aspect-ratio: 360/140;
}
.content.coloring_home .main-banner-container img {
  border-radius: 0;
}
.content.coloring_home .main-banner-container .splide__pagination-custom {
  align-items: center;
  gap: 9px;
  left: 50% !important;
  bottom: 10px !important;
  transform: translateX(-50%);
  padding: 0;
  background-color: transparent;
}
.content.coloring_home .main-banner-container .splide__pagination-custom > li {
  display: block;
  height: fit-content;
}
.content.coloring_home .main-banner-container .splide__pagination-custom .splide__pagination__page {
  width: 6px;
  height: 6px;
  margin: 0;
  background-color: #979797;
}
.content.coloring_home .main-banner-container .splide__pagination-custom .splide__pagination__page.is-active {
  width: 8px;
  height: 8px;
  margin-top: 3px;
  transform: none;
  background-color: #f06595;
}

.tabs-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 2px 20px;
}

.tabs-style-pill {
  display: flex;
  align-items: center;
}
.tabs-style-pill .tab {
  position: relative;
  cursor: pointer;
}
.tabs-style-pill .tab input {
  display: none;
}
.tabs-style-pill .tab input:checked + span {
  background-color: #000;
  color: #fff;
  font-weight: 700;
}
.tabs-style-pill .tab span {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 63px;
  height: 32px;
  border-radius: 16px;
  font-size: 14px;
}
.tabs-style-pill .tab.new span {
  padding-left: 7px;
}
.tabs-style-pill .tab.new span::after {
  content: "";
  margin-top: -13px;
  margin-left: 3px;
  width: 4px;
  height: 4px;
  background-color: #f06595;
  border-radius: 4px;
}

.tabpane {
  flex: 1;
  display: none;
  height: 100%;
  padding: 8px 0;
  margin-top: 8px;
}
.tabpane.on {
  display: block;
}

.tabs-style-full {
  display: flex;
  align-items: center;
  padding: 0 24px;
  border-bottom: 1px solid #e0e0e3;
}
.tabs-style-full .tab {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 48px;
  padding: 0 16px;
}
.tabs-style-full .tab input {
  display: none;
}
.tabs-style-full .tab input:checked + span {
  color: #202020;
  padding-top: 2px;
  border-bottom: 2px solid #ef595f;
}
.tabs-style-full .tab span {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  color: #b4b4ba;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
}

.tabs-style-basic {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 16px;
  border-bottom: 1px solid #e9ecef;
}
.tabs-style-basic .tab {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 51px;
}
.tabs-style-basic .tab input {
  display: none;
}
.tabs-style-basic .tab input:checked + span {
  color: #000;
  padding-top: 2px;
  border-bottom: 2px solid #000;
}
.tabs-style-basic .tab span {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  color: #b4b4ba;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
}

.music-list {
  display: flex;
  flex-direction: column;
  padding-top: 16px;
}

.music-item {
  display: flex;
  align-items: center;
  padding: 8px 20px;
}
.music-item .music-album-cover {
  flex-shrink: 0;
  width: 66px;
  height: 66px;
  border-radius: 4px;
  overflow: hidden;
}
.music-item .music-album-cover > button {
  width:100%;
  height:100%;
}

.music-item .music-album-cover > button:active {
	border: 1px solid #f8f9fa;
}

.music-item .tags {
  margin-left: 36px;
}
.music-item .buttons {
  display: flex;
  gap: 2px;
}
.music-item .music-info > button{
  text-align: left;
}
.music-item .music-info > button:active {
	border: 1px solid #f8f9fa;
}
.music-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-left: 10px;
  overflow: hidden;
}
.music-info .ranking {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 24px;
  font-size: 16px;
  font-weight: 700;
}
.music-info .music-title {
  font-size: 16px;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.music-info .ranking-status {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  padding-left: 16px;
  color: #f06595;
  font-size: 12px;
  font-weight: 700;
}
.music-info .ranking-status.up {
  background: url("../img/ic_ranking_arrow_up.svg") left no-repeat;
}
.music-info .ranking-status.down {
  background: url("../img/ic_ranking_arrow_down.svg") left no-repeat;
  color: #4441fc;
}
.music-info .ranking-status.new {
  padding-left: 0;
}
.music-info .music-singer {
  color: #888888;
  font-size: 14px;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.gift-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 100%;
  padding: 4px 16px 56px;
}
.gift-list .nodata {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  color: #868e96;
  font-size: 14px;
}
.gift-list .box-border {
  margin: 0;
}

.btn-link-gray {
  color: #888;
  font-size: 14px;
  line-height: 14px;
  padding: 4px;
}

.btn-link-basic {
  color: #3e9cfa;
  font-size: 14px;
  text-decoration: underline;
}

.btn-icon-24 {
  display: block;
  width: 24px;
  height: 24px;
}
.btn-icon-24.btn-icon-menu {
  background: url("../img/ic_hamburger.svg") center no-repeat;
}
.btn-icon-24.btn-icon-menu-white {
  background: url("../img/ic_sidemenu.svg") center no-repeat;
}
.btn-icon-24.btn-icon-mypage {
  background: url("../img/ic_my.svg") center no-repeat;
}
.btn-icon-24.btn-icon-search-white {
  background: url("../img/ic_search_white.svg") center no-repeat;
}
.btn-icon-24.btn-icon-back {
  background: url("../img/ic_arrow_back_ios.svg") center no-repeat;
}

.btn-icon-32 {
  display: block;
  width: 32px;
  height: 32px;
}
.btn-icon-32.btn-icon-list {
  background: url("../img/ic_list.svg") center no-repeat;
}

.btn-icon-36 {
  display: block;
  width: 36px;
  height: 36px;
}
.btn-icon-36.btn-icon-play {
  background: url("../img/ic_play.svg") center no-repeat;
}
.btn-icon-36.btn-icon-stop {
  background: url("../img/ic_stop.svg") center no-repeat;
}
.btn-icon-36.btn-icon-like {
  background: url("../img/ic_like_off.svg") center no-repeat;
}
.btn-icon-36.btn-icon-like.on {
  background: url("../img/ic_like_on.svg") center no-repeat;
}
.btn-icon-36.btn-icon-gift {
  background: url("../img/ic_gift.svg") center no-repeat;
}

.btn-tag {
  padding: 3px 10px;
  border: 1px solid #e7e7e7;
  border-radius: 13px;
  font-size: 12px;
}

.btn-cta {
  width: 100%;
  height: 36px;
  border-radius: 17px;
  font-size: 13px;
  font-weight: 500;
}
.btn-cta.primary {
  background-color: #f06595;
  color: #fff;
}

.btn-cta.primary:disabled  {
	background-color: #ced4da;
	cursor: not-allowed;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag {
  padding: 4px 6px;
  border-radius: 4px;
  background-color: #f8f9fa;
  font-size: 10px;
  font-weight: 500;
}

.box-border {
  padding: 20px;
  margin: 0 16px;
  border: 1px solid #868e96;
  border-radius: 3px;
}
.box-border.gap-4 {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.box-border .coloring-info-section {
  padding: 0;
}
.box-border.disabled {
  opacity: 0.3;
}

.coloring-info-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
}
.coloring-info-section .box {
  padding: 20px;
  border-radius: 3px;
  background-color: #f8f9fa;
  font-size: 14px;
}
.coloring-info-section .box-title {
  font-size: 17px;
  font-weight: 700;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
}
.coloring-info-section .box-description {
  color: #495057;
  font-size: 13px;
}
.coloring-info-section .music-album-cover {
  flex-shrink: 0;
  width: 66px;
  height: 66px;
  border-radius: 4px;
  overflow: hidden;
}
.coloring-info-section.compact {
  gap: 0;
}

.bg-gray-section {
  background-color: #f3f4f5;
  padding: 16px;
}

.coloring-tip {
  padding: 23px 20px 22px;
  border-radius: 6px;
  background-color: #fff;
}

.coloring-tip-title {
  width: fit-content;
  padding: 7px 13px;
  margin-bottom: 15px;
  border-radius: 50px;
  background-color: #f06595;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.tip-item {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
  height: 90px;
  padding-bottom: 14px;
  background-color: #f3f4f5;
  background-position: top 12px center;
  background-repeat: no-repeat;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  line-height: 15px;
}
.tip-item.bg-01::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 34px;
  background-image: url("../img/img_coloring_tip_1.png");
  background-size: cover;
  mix-blend-mode: multiply;
}
.tip-item.bg-02 {
  background-image: url("../img/img_coloring_tip_2.png");
  background-size: 30px;
}
.tip-item.bg-03 {
  background-image: url("../img/img_coloring_tip_3.png");
  background-size: 22px;
}

.description-container {
  padding: 30px 16px;
}

.description-title {
  font-size: 15px;
  font-weight: 700;
}

.description-list .description-item {
  padding-left: 8px;
  margin-top: 8px;
  background: url("../img/bullet_dot_gray.svg") left top no-repeat;
  color: #868e96;
  font-size: 12px;
  word-break: break-all;
}
.description-list .description-item + li {
  margin-top: 6px;
}
.description-list.black {
  margin-left: 20px;
}
.description-list.black .description-item {
  color: #000;
  background: none;
  list-style: disc;
  padding-left: 0;
}

.form-field-container {
  padding: 20px 16px;
}
.form-field-container .description {
  padding-left: 8px;
  margin-top: 8px;
  background: url("../img/bullet_dot_gray.svg") left top no-repeat;
  color: #868e96;
  font-size: 12px;
  word-break: break-all;
}

.input-label {
  margin-bottom: 2px;
  font-size: 12px;
  font-weight: 500;
}

.input-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #dee2e6;
}
.input-container input {
  width: 100%;
  height: 57px;
  border: none;
  font-size: 20px;
}
.input-container input:disabled {
  background-color: transparent;
  color: #adb5bd;
  cursor: not-allowed;
}
.input-container input::placeholder {
  color: #adb5bd;
}
.input-container .timer {
  color: #f06595;
  font-size: 12px;
}
.input-container .timer.disabled {
  opacity: 0.3;
}
.input-container .btn-with-input {
  min-width: 86px;
  height: 36px;
  padding: 4px;
  border-radius: 4px;
  background-color: #000000;
  color: #fff;
  font-size: 12px;
}
.input-container .btn-with-input.primary {
  background-color: #f06595;
}
.input-container .btn-with-input.primary:disabled {
  opacity: 0.3;
  background-color: #f06595;
}
.input-container .btn-with-input:disabled {
  background-color: #ced4da;
  cursor: not-allowed;
}
.input-container + .input-container {
  margin-top: 20px;
}
.input-container + .input-label {
  margin-top: 20px;
}

.select {
  width: 100%;
  height: 57px;
  border: none;
  background: transparent url("../img/ic_arrow_down.svg") right center no-repeat;
  font-size: 20px;
  cursor: pointer;
}
.select option[disabled] {
  color: #adb5bd;
}
.select:not(:focus):has(option[value=default]:checked) {
  color: #adb5bd;
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 16px;
}
.checkbox-group .divider-line {
  margin: 4px 0;
}

.checkbox-container {
  display: flex;
}
.checkbox-container input {
  display: none;
}
.checkbox-container .checkbox {
  display: block;
  width: 32px;
  height: 32px;
  background: url("../img/ic_check_off.svg") center no-repeat;
}
.checkbox-container input:checked + .checkbox {
  background-image: url("../img/ic_check_on.svg");
}
.checkbox-container .checkbox-tag {
  margin-right: 4px;
}
.checkbox-container .checkbox-label {
  flex: 1;
  padding-top: 5px;
  color: #868e96;
  font-size: 15px;
}
.checkbox-container .checkbox-label .btn-link-gray {
  color: #adb5bd;
}
.checkbox-container.check-all .checkbox-label {
  color: #000;
  font-size: 16px;
  font-weight: 700;
}

.footer {
  display: flex;
  gap: 8px;
  position: sticky;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 16px 20px;
  background-color: transparent;
}
.footer::before {
  content: "";
  position: absolute;
  top: -40px;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
  pointer-events: none;
}
.footer .btn-footer {
  flex: 1;
  position: relative;
  height: 46px;
  border-radius: 23px;
  background-color: #f06595;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}
.footer .btn-footer:disabled {
  background-color: #ced4da;
  cursor: not-allowed;
}

.divider {
  flex-shrink: 0;
  width: 100%;
  height: 9px;
  background-color: #f2f2f2;
}

.divider-line {
  width: 100%;
  height: 1px;
  background-color: #dee2e6;
}
.divider-line.space-4 {
  margin: 16px 0;
}

.data-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.data-row .data-row-label {
  font-size: 14px;
  font-weight: 700;
}
.data-row .data-row-data {
  color: #868e96;
  font-size: 14px;
}
.data-row .data-row-data.sm {
  font-size: 12px;
}

.fail-message-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  height: 100%;
  padding: 16px;
  text-align: center;
}

.flex {
  display: flex;
}

.flex-col {
  display: flex;
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.flex-wrap {
  flex-wrap: wrap;
}

.gap-1 {
  gap: 4px;
}

.gap-2 {
  gap: 8px;
}

.gap-3 {
  gap: 12px;
}

.gap-4 {
  gap: 16px;
}

.gap-5 {
  gap: 20px;
}

.gap-6 {
  gap: 24px;
}

.gap-7 {
  gap: 28px;
}

.gap-8 {
  gap: 32px;
}

.mt-2 {
  margin-top: 8px;
}

.mt-3 {
  margin-top: 12px;
}

.mt-4 {
  margin-top: 16px;
}

.mt-5 {
  margin-top: 20px;
}

.mt-6 {
  margin-top: 24px;
}

.mt-7 {
  margin-top: 28px;
}

.mt-8 {
  margin-top: 32px;
}

.mr-2 {
  margin-right: 8px;
}

.mr-3 {
  margin-right: 12px;
}

.mr-4 {
  margin-right: 16px;
}

.mr-5 {
  margin-right: 20px;
}

.mr-6 {
  margin-right: 24px;
}

.mr-7 {
  margin-right: 28px;
}

.mr-8 {
  margin-right: 32px;
}

.mb-2 {
  margin-bottom: 8px;
}

.mb-3 {
  margin-bottom: 12px;
}

.mb-4 {
  margin-bottom: 16px;
}

.mb-5 {
  margin-bottom: 20px;
}

.mb-6 {
  margin-bottom: 24px;
}

.mb-7 {
  margin-bottom: 28px;
}

.mb-8 {
  margin-bottom: 32px;
}

.ml-2 {
  margin-left: 8px;
}

.ml-3 {
  margin-left: 12px;
}

.ml-4 {
  margin-left: 16px;
}

.ml-5 {
  margin-left: 20px;
}

.ml-6 {
  margin-left: 24px;
}

.ml-7 {
  margin-left: 28px;
}

.ml-8 {
  margin-left: 32px;
}

.text-12 {
  font-size: 12px;
}

.text-14 {
  font-size: 14px;
}

.text-15 {
  font-size: 15px;
}

.text-16 {
  font-size: 16px;
}

.text-18 {
  font-size: 18px;
}

.text-20 {
  font-size: 20px;
}

.text-24 {
  font-size: 24px;
}

.text-30 {
  font-size: 30px;
}

.font-500 {
  font-weight: 500;
}

.font-600 {
  font-weight: 600;
}

.font-700 {
  font-weight: 700;
}

.text-center {
  text-align: center;
}

.text-line-through {
  text-decoration: line-through;
}

.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.color-description {
  color: #868e96;
}

.wrap-loading{ /*화면 전체 어둡게*/
    position: fixed;
    left:0;
    right:0;
    top:0;
    bottom:0;
    background: rgba(0,0,0,0.2); /*not in ie */
    filter: progid:DXImageTransform.Microsoft.Gradient(startColorstr='#20000000', endColorstr='#20000000');    /* ie */
	display: none;
}

.wrap-loading div{ /*로딩 이미지*/
    position: fixed;
    top:50%;
    left:50%;
    margin-left: -21px;
    margin-top: -21px;
}

#mask {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 999;
    background-color: #000;
    display: none; }

.layerpop {
    display: none;
    z-index: 1000;
	width: 90%;
    background: #000;
    cursor: move;
	border-radius: 7px; }

.layerpop_area .layerpop_close {
    width: 25px;
    height: 25px;
    display: block;
    position: absolute;
    top: 10px;
    right: 10px; }

.layerpop_area .pop_content {
    width: 100%;    
    color: #fff;
	font-size: 1.1em;
	text-align: center;
    padding: 5% 3%; }

.layerpop_area .pop_close {
	font-size: 1.1em;
	font-weight: bold;
	line-height: 18px;
	text-align: right;
	padding: 10px 15px 10px 10px;
    color: #D9E5FF; }
/*# sourceMappingURL=main.css.map */

.footer .btn-kakao {
	flex: 1;
	position: relative;
	height: 46px;
	border-radius: 23px;
	background-color: #fae100;
	color: #000;
	font-size: 15px;
	font-weight: 500;
	
	&::before{
	    content: "";
	    display: inline-block;
	    width:17px;
	    height:17px;
	    background-image: url("../img/kakao-svgrepo-com.svg");
	    background-size: 100%;
	    background-repeat: no-repeat;
	    vertical-align: middle;
		margin-right: 7px;
		margin-bottom: 2px;
}
.footer .btn-event-footer {
  flex: 1;
  position: relative;
  width: 100%;
}

