/* ---------------------------------------- */
/* GENERAL
/* ---------------------------------------- */

@import url(font.css);
@import url(reset.css);
@import url(layout.css);

*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;}
::after,::before{display:block;}
h1,a,button{display:inline-block; outline: 0;}
/*h1,h2,h3,h4{font-weight:normal;}*/
a,button{-webkit-tap-highlight-color: rgba(0,0,0,0);-webkit-tap-highlight-color:transparent;text-decoration:none;border:none;background:none;cursor:pointer;
    webkit-transition: all 250ms ease-in-out; -moz-transition: all 250ms ease-in-out; -o-transition: all 250ms ease-in-out; transition: all 250ms ease-in-out;}
input, textarea{-webkit-appearance:none;-webkit-border-radius:0;}
html, body { position: relative; }
body { overflow-x: hidden; color: #181828; font-size: .8vw; line-height: 1.2; background-color: #7a88c4; font-family: 'Lato', sans-serif; }

:root {
  color-scheme: light only;
}

@media (prefers-color-scheme: dark) {
  html,
  body {
    background: #7a88c4 !important;
    background-color: #7a88c4 !important;
    color: #181828 !important; 
  }
}

/* ---------------------------------------- */
/* Common
/* ---------------------------------------- */
a { color: #fff; cursor: pointer; }
a:hover { color: #ff8aff; } 

h1, h2, h3, h4, h5 { line-height: 100%; }
h1 { font-size: 32px; }
h2 { font-size: 22px; }
h3 { font-size: 18px; }
h4 { font-size: 14px; }

input, button, textarea { outline: 0; }
input[type=text], input[type=password], textarea { 
  padding: 10px; width: 100%; height: 45px; font-size: 18px; font-weight: 400; line-height: 45px; 
  color: #fff; background: transparent; border: 2px solid #fff; border-radius: 4px; font-family: 'Lato', sans-serif;
}
input[type=text]:focus, 
input[type=password]:focus,
textarea:focus { border-color: #ff8aff; }

/* Chrome, Firefox, Opera, Safari 10.1+ */
::placeholder { color: #fff; opacity: 0.7; /* Firefox */ }
/* Internet Explorer 10-11 */ 
/* Microsoft Edge */
:-ms-input-placeholder,
::-ms-input-placeholder { color: #fff; opacity: 0.7; }

.icon { background-size: cover !important; background-position: center !important; background-repeat: no-repeat !important; -webkit-tap-highlight-color: rgba(0,0,0,0);-webkit-tap-highlight-color:transparent;text-decoration:none;border:none;background:none;cursor:pointer;
  -moz-transition: all 250ms ease-in-out; -o-transition: all 250ms ease-in-out; transition: all 250ms ease-in-out; }

.img { background-size: cover !important; background-position: center !important; background-repeat: no-repeat !important; }
.img img { opacity: 0; width: 100%; height: auto; }
.btn { width: 100%; font-weight: bold; text-align: center; border: 0; cursor: pointer; }
.dim { -moz-transition: all 200ms ease-in-out; -o-transition: all 200ms ease-in-out; transition: all 200ms ease-in-out; }

#dim { position: fixed; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.6); z-index: 10; }

:disabled,
.disabled { opacity: 0.5; }

.loader_box { 
  position: fixed; left: 0; top: 0; right: 0; bottom: 0; 
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 100%; background-color: rgba(0,0,0, 0.5); z-index: 100000;
}
.loader {
  position: relative; display: inline-block; width: 48px; height: 48px;
  border: 3px dotted #FFF; border-style: solid solid dotted dotted;
  border-radius: 50%; box-sizing: border-box; animation: rotation 2s linear infinite;
}
.loader::after {
  content: ''; box-sizing: border-box; position: absolute; left: 0; right: 0; top: 0; bottom: 0; margin: auto; 
  border: 3px dotted #ff6e9e; border-style: solid solid dotted; width: 24px; height: 24px; 
  border-radius: 50%; animation: rotationBack 1s linear infinite; transform-origin: center center;
}
    
@keyframes rotation {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
} 
@keyframes rotationBack {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(-360deg); }
} 


/* ---------------------------------------- */
/* alert
/* ---------------------------------------- */
.ax5-ui-dialog { background-color: #7a88c4; border-radius: 8px; border: 0 !important; }
.ax5-ui-dialog.info { background-color: #7a88c4; }
.ax5-ui-dialog.warning { background-color: #ac9460; }
.ax5-ui-dialog.danger { background-color: #c47a7a; }
.ax5-ui-dialog.confirm { background-color: #76a382; }
.ax5-ui-dialog .ax-dialog-header { display: none; }
.ax5-ui-dialog .ax-dialog-body { padding: 30px; font-size: 18px; color: #fff; background: url(../images/ic_alert_warning.png) left top no-repeat; }
.ax5-ui-dialog .ax-dialog-body .ax-dialog-msg { min-height: 140px; align-items: center; display: grid; }
.ax-dialog-buttons .btn { padding: 10px 15px; width: 120px; color: #fff; border: 1px solid #fff; border-radius: 2px; margin:0 auto;}
.ax-dialog-buttons .btn:hover { background-color: rgba(255, 255, 255, 0.2); }




/* ---------------------------------------- */
/* HEADER
/* ---------------------------------------- */
.header { 
  position: fixed; display: flex; top: 0px; left: 0px; right: 0px; padding: 0px 1em; 
  -webkit-box-align: center; align-items: center; -webkit-box-pack: end; justify-content: flex-end; flex-flow: row; z-index: 9;
}
.header nav {
  position: absolute; display: flex; top: 0px; left: 0px; right: 0px; padding: 0 calc(3.5vw + 24px); height: 99px;
  -webkit-box-align: center; align-items: center; background-color: #000; flex-flow: row; border-bottom: 1px solid #ff8aff; z-index: 1;
  -webkit-box-pack: justify; justify-content: space-between; transition: all 0.2s ease-in-out 0s; will-change: background-color, height;
}
.header nav .header_nav {    
  position: relative; display: flex; margin: 0px; padding: 0px; height: 100%; align-items: center; 
  flex-flow: row; -webkit-box-pack: end; justify-content: flex-end; -webkit-box-align: center;
  font-size: 1vw; font-weight: 300; font-family: 'Poppins', sans-serif; gap: 90px;
}
.header nav .header_nav a { display: flex; align-items: center; gap: 5px; }
.header nav .header_nav a.active { color: #ff8aff; }
.header nav .header_nav .header_logo { margin-bottom: 10px; width: 183px; background-image: url('../images/header_logo.png'); }
.header nav .header_nav .header_logo img { opacity: 0; width: 100%; height: auto; }

.header nav .header_nav .icon { 
  display: inline-flex; margin-top: -3px; width: 20px; height: 18px; -webkit-box-align: center; align-items: center;  
}
.ic_home { background-image: url('../images/ic_home.png'); }
a.active:hover .ic_home,
a.active .ic_home { background-image: url('../images/ic_home_active.png'); }
.ic_watch { background-image: url('../images/ic_watch.png'); }
a.active:hover .ic_watch,
a.active .ic_watch { background-image: url('../images/ic_watch_active.png'); }
.ic_listen { background-image: url('../images/ic_listen.png'); }
a.active:hover .ic_listen,
a.active .ic_listen { background-image: url('../images/ic_listen_active.png'); }
.ic_tvshows { background-image: url('../images/ic_tvshows.png'); }
a.active .ic_tvshows,
a:hover .ic_tvshows { background-image: url('../images/ic_tvshows_active.png'); }
.ic_movie { background-image: url('../images/ic_movie.png'); }
a.active .ic_movie, 
a:hover .ic_movie { background-image: url('../images/ic_movie_active.png'); }
.ic_search { background-image: url('../images/ic_search.png'); }
a.active .ic_search, 
a:hover .ic_search { background-image: url('../images/ic_search_active.png'); }
.ic_favorite { background-image: url('../images/ic_favorite.png'); }
a.active .ic_favorite, 
a:hover .ic_favorite { background-image: url('../images/ic_favorite_active.png'); }
.ic_menuMore { display: none; margin-left: -10px; background-image: url('../images/ic_menuMore.png'); }
a.active .ic_menuMore, 
a:hover .ic_menuMore { background-image: url('../images/ic_menuMore_active.png'); }

.header_nav .more { display: none; }

.header nav .account { position: relative; }
.header nav .account > ul { display: flex; gap: 20px; }
.header nav .account .img_box { 
  width: 70px; height: 70px; cursor: pointer;
  background-color: #7a88c4; border-radius: 50%; background-image: url(../images/ic_profile.png);
}
.header nav .account .account_list { 
  position: absolute; right: 0; top: 88px; padding: 10px 30px; width: 200px; 
  text-align: center; background-color: rgba(0,0,0,.6); border-radius: 8px; 
}
.header nav .account .account_list li { line-height: 40px; border-top: 1px dashed rgba(255,255,255,.2) }
.header nav .account .account_list li:first-child { border-top: 0; }



/* ---------------------------------------- */
/* FOOTER
/* ---------------------------------------- */
.footer { position: relative; margin-top: 50px; width: 100%; text-align: center; background-color: #232735; }
.footer_wrap { position: relative; width: 100%; padding: 30px; font-size: 12px; }
.footer_wrap .logo_wrap a { opacity: 0.3; }
.footer_wrap .logo_wrap a:hover { opacity: 0.45; }
.footer_wrap nav { margin: 35px 0 25px; }
.footer_wrap nav ul li { display: inline-block; }
.footer_wrap nav ul li a { position: relative; }
.footer_wrap nav ul li a:after { content: ''; display: inline-block; vertical-align: middle; margin: 0 12px 0 14px; width: 3px; height: 3px; background-color: #fff; border-radius: 50%; }
.footer_wrap nav ul li:last-child a:after { display: none; }
.footer_wrap .social_box { margin-bottom: 25px; }
.footer_wrap .social_box .icon { display: inline-block; margin-left: 30px; width: 23px; height: 24px; text-indent: -9999px; }
.footer_wrap .social_box .icon:first-child { margin-left: 0; }
.footer_wrap .copyright { color: #aaabae; line-height: 22px; }


.ic_fb { background-image: url('../images/ic_social_fb.png'); }
.ic_ig { background-image: url('../images/ic_social_ig.png'); }
.ic_tw { background-image: url('../images/ic_social_x.png'); }
.ic_fb:hover,
.ic_fb:active { background-image: url('../images/ic_social_fb_active.png'); }
.ic_ig:hover,
.ic_ig:active { background-image: url('../images/ic_social_ig_active.png'); }
.ic_tw:hover,
.ic_tw:active { background-image: url('../images/ic_social_x_active.png'); }



/* ---------------------------------------- */
/* CONTENT
/* ---------------------------------------- */
.all_wrap { overflow: visible; position: static; width: 100%; }



/* ::-webkit-scrollbar {
  width: 12px;
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background-color: #121524;
  border-radius: 12px;
  background-clip: padding-box;
  border: 2px solid transparent;
}
::-webkit-scrollbar-track {
  background-color: #282f52;
  border-radius: 12px;
} */


/* ---------------------------------------- */
/* slide - swiper
/* ---------------------------------------- */
.swiper-container { position: relative; margin-top: 99px; width: 100%; height: 100%; z-index: 1; }
.swiper-slide {
  position: relative; display: flex; justify-content: center; align-items: center; color: #fff;
}
.swiper-slide:after { 
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; width: 100%; height:  100%; z-index: 2; 
  background: -moz-linear-gradient(top,  rgba(122,136,196,0) 55%, rgba(122,136,196,1) 89%, rgba(122,136,196,1) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top,  rgba(122,136,196,0) 55%,rgba(122,136,196,1) 89%,rgba(122,136,196,1) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom,  rgba(122,136,196,0) 55%,rgba(122,136,196,1) 89%,rgba(122,136,196,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#007a88c4', endColorstr='#7a88c4',GradientType=0 ); /* IE6-9 */
}

.swiper-slide .img { display: block; position: relative; width: 100%; height:  100%; }
.swiper-slide .img img { object-fit: cover; width: 100%; height: auto; opacity: 0; }

/* swiper pagination */
.swiper-container .pagination { 
  top: var(--swiper-navigation-top-offset,43%); width: 40px; height: 79px; opacity: 0.6; z-index: 100; 
}
.swiper-container .pagination:hover { opacity: 0.8; }
.swiper-container .swiper-button-prev { left: 70px; background: url('../images/ic_slide_prev.png'); background-size: cover; }
.swiper-container .swiper-button-next { right: 70px;  background: url('../images/ic_slide_next.png'); background-size: cover; }
.swiper-container .swiper-button-prev:after,
.swiper-container .swiper-button-next:after { display: none; }

.swiper-container .slide-title { position: absolute; left: 10%; top: 0; width: 38%; }
.swiper-container .slide-title img { width: 100%; height: auto; }

.swiper-container .info_box { 
  position: absolute; left: 10%; bottom: 0; padding: 30px; width: 38%; height: 57%; border-radius: 20px 20px 0 0; 
  font-size: 18px; line-height: 24px; text-align: justify;
  background: -moz-linear-gradient(top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(0,0,0,0.65) 0%,rgba(0,0,0,0) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(0,0,0,0.65) 0%,rgba(0,0,0,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a6000000', endColorstr='#00000000',GradientType=0 ); /* IE6-9 */
}
.swiper-container .info_box h1 { margin-bottom: 30px; }
.swiper-container .info_box h3 { margin-bottom: 15px; font-weight: 600; }
.swiper-container .info_box h3 .rating {
  display: inline-block; width: 85px; padding: 5px 0; font-size: 16px; 
  text-align: center; vertical-align: middle; border: 1px solid #fff;
}
.swiper-container .info_box dl { display: flex; margin-bottom: 3px; font-size: 18px; }
.swiper-container .info_box dd { width: 100px; }
.swiper-container .info_box dt { width: calc(100% - 100px); text-overflow: ellipsis; overflow: hidden; white-space: nowrap; }
.swiper-container .info_box hr { margin: 25px 0 20px; width: 100%; border-top: 1px solid #fff; border-bottom: 1px solid #000; opacity: 0.5; }

.cont_btn_box { 
  display: flex; margin-top: 10px; width: 100%; text-align: right; gap: 10px; 
  align-items: center; -webkit-box-pack: end; justify-content: flex-end; 
}
.cont_btn_box .btn { width: 45px; height: 45px; text-indent: -9999px; z-index: 10; }
.cont_btn_box .btn img { width: 100%; height: auto; opacity: 1; }
.btn_play { background-image: url('../images/btn_play.png'); }
.btn_add { background-image: url('../images/btn_add.png'); }
.btn_remove { background-image: url('../images/btn_remove.png'); }
.btn_info { background-image: url('../images/btn_info.png'); }
.btn_close { background-image: url('../images/btn_close.png'); }
.btn_play:hover,
.btn_play:active { background-image: url('../images/btn_play_active.png'); }
.btn_add:hover,
.btn_add:active { background-image: url('../images/btn_add_active.png'); }
.btn_remove:hover,
.btn_remove:active { background-image: url('../images/btn_remove_active.png'); }
.btn_info:hover,
.btn_info:active { background-image: url('../images/btn_info_active.png'); }
.btn_close:hover,
.btn_close:active { background-image: url('../images/btn_close_active.png'); }



/* ---------------------------------------- */
/* contents
/* ---------------------------------------- */
.contents_wrap { 
  position:relative; display: block; padding: 0 calc(3.5vw + 24px); 
  margin: -100px 0 100px; width: 100%; color: #fff; z-index: 2;
}

.section_box > h2 { font-weight: 400; text-shadow: 2px 1px 1px rgba(0,0,0,0.75); }
.section_box > h2 > a { 
  margin-left: 15px; padding: 0px 10px; font-size: 13px; font-weight: 400; border: 1px solid rgba(255,255,255,.2); line-height: 20px; 
  vertical-align: middle; text-shadow: 0 0 BLACK; background-color: rgba(255,255,255,0.15); border-radius: 5px;
}
.section_box > h2 > a:hover,
.section_box > h2 > a:active { color: #1f2231; background-color: rgba(255,255,255,0.25);}

.slider { margin: 15px auto 30px; }
.slick-list { overflow: inherit; }
.slick-list.safari { overflow: hidden; }
.slick-slide { margin: 0px 20px 0 0; }
.slick-slide img { width: 100%; }

.slick-slider .slick-track, .slick-slider .slick-list { transform: translate3d(0px, 0px, 0px); }

.slick-prev {
  top: 0px; left: inherit; width: calc(3.5vw + 24px); height: 100%; opacity: 0;
  border: none; background: transparent; -webkit-box-pack: center; justify-content: center;
  transform: translateX(-100%); transition: opacity 0.2s ease 0s; z-index: 1; 
  background: url('../images/ic_slide_prev.png') center 42% no-repeat; background-size: 22%;
}
.slick-next {
  top: 0px; right: 0px; width: calc(3.5vw + 24px); height: 100%; opacity: 0;
  background: transparent; border: none; -webkit-box-pack: center; justify-content: center;
  transform: translateX(100%); transition: opacity 0.2s ease 0s; z-index: 1;
  background: url('../images/ic_slide_next.png') center 42% no-repeat; background-size: 22%;
}

.slick-prev:before,
.slick-next:before { content: ''; }
.slick-prev.slick-disabled,
.slick-next.slick-disabled { display: none; cursor: default; opacity: 0; pointer-events: none; }

.slick-prev.slick-arrow:hover { 
  display: block; opacity: 1; 
  background: url('../images/ic_slide_prev.png') center 42% no-repeat; background-size: 22%; 
}
.slick-next.slick-arrow:hover { 
  display: block; opacity: 1; 
  background: url('../images/ic_slide_next.png') center 42% no-repeat; background-size: 22%; 
}

.slick-track { margin-left: inherit; margin-right: inherit; }

.slick-slide { transition: all ease-in-out .3s; opacity: .3; }
.slick-active { opacity: 1; }
.slick-current { opacity: 1; }

.slick-dots { top: -20px; bottom: inherit; padding: 0 20px; text-align: right; }
.slick-dots li { width: 16px; height: 16px; margin: 0 2px; }
.slick-dots li button:before { 
  content: ''; width: 100%; height: 4px; background: #000;  border-radius: 4px;
  font-family: inherit; font-size: inherit; line-height: inherit; 
}

.slider .play_box > div { 
  position: relative; display: block; background-color: #556193; border-radius: 8px; box-shadow: 2px 2px #fff; cursor: pointer; 
  backface-visibility: hidden; transform: scale(1, 1) translateZ(0px); transition-duration: 300ms; z-index: 10;
  transition-property: transform, box-shadow; transition-timing-function: ease-out; -webkit-font-smoothing: subpixel-antialiased; 
}
.slider .play_box .img_box { position: relative; border-radius: 8px; }
.slider .play_box .img_box img { width: 100%; height: auto; opacity: 0; }

.slider .play_box .play_info_box { position: absolute; left: 0; top: 0; width: 100%; height: 100%; z-index: 30; pointer-events: none; }
.slider .play_box .play_info_box .icon_box { position: absolute; left: 0; top: 0; padding-left: 15px; width: 100%; height: 100%; }
.slider .play_box .play_info_box .icon_box i.icon { 
  position: relative; display: inline-block; margin-right: 5px; 
  width: 22px; height: 17px; border-radius: 0 0 4px 4px; background-size: cover;
}
.ic_new { background: #fff url('../images/ic_new.png') center no-repeat; }
.ic_up { background: #fae6fe url('../images/ic_up.png') center no-repeat; }
.ic_free {
  position: absolute; right: 10px; bottom: -36px; width: 44px; height: 44px;
  background-image: url('../images/ic_free.png'); z-index: 30;
}

.slider .play_box .cont_btn_box { 
  opacity: 0; position: absolute; right: 1%; bottom: 5%; gap: 8px; z-index: 100; 
  transition-duration: 300ms; transition-property: transform, box-shadow; transition-timing-function: ease-out; pointer-events: auto;
}
.slider .play_box .cont_btn_box .btn { width: 43px; height: 43px; }

.slider .play_box .title_box { position: relative; margin-top: 10px; padding-left: 12px; width: 85%; font-size: 16px; }
.slider .play_box .title_box:after { 
  content: ''; position: absolute; left: 0; top: calc(50% - 1px); width: 5px; 
  height: 5px; background-color: #ff8aff; border-radius: 50%;
}
.slider .play_box .title_box a { display: block; color: #fff; text-overflow: ellipsis; overflow: hidden; white-space: nowrap; }

/* contents mouse over action */
.slider .play_box > div:hover .img_box, 
.slider .play_box > div:focus .img_box, 
.slider .play_box > div:focus-within .img_box {
  box-shadow: rgba(255, 255, 255, 0.3) 0px 35px 53px -16px, rgba(255, 255, 255, 0.22) 0px 25px 17px -10px;
  transform: scale(1.05, 1.05) translateZ(0px) translate3d(0px, 0px, 0px); 
  transition-duration: 300ms;
  transition-property: transform, box-shadow;
  transition-timing-function: ease-out;
}

.slider .play_box > div:hover .img_box:before, 
.slider .play_box > div:focus .img_box:before, 
.slider .play_box > div:focus-within .img_box:before { 
  content: ''; position: absolute; top: -5px; left: -5px; width: 100%; 
  height: 100%; border: 5px solid rgba(255,255,255,0.3); border-radius: 12px; 
}

.slider .play_box > div:hover .play_info_box:after, 
.slider .play_box > div:focus .play_info_box:after, 
.slider .play_box > div:focus-within .play_info_box:after {
  content: ''; position: absolute; left: 0; bottom: -2px; width: 100%; height: 70%; border-radius: 8px; z-index: 20;
  background: -moz-linear-gradient(top,  rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,1) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#000000',GradientType=0 ); /* IE6-9 */
  transform: scale(1.05, 1.05) translateZ(0px) translate3d(0px, 0px, 0px); 
  transition-duration: 300ms; transition-property: transform, box-shadow; transition-timing-function: ease-out; 
}

.slider .play_box > div:hover .play_info_box .icon_box, 
.slider .play_box > div:focus .play_info_box .icon_box, 
.slider .play_box > div:focus-within .play_info_box .icon_box { opacity: 0;
  transition-duration: 300ms; transition-property: transform, box-shadow; transition-timing-function: ease-out;
}

.slider .play_box > div:hover .cont_btn_box, 
.slider .play_box > div:focus .cont_btn_box, 
.slider .play_box > div:focus-within .cont_btn_box { opacity: 1; }


/* contents poster type */
.section_box.poster { position: relative; margin: 0 calc(-3.5vw - 24px); padding: 30px calc(3.5vw + 24px); }
.section_box.poster:before {
  content: ''; position: absolute; left: 0; top: 0; width: 100%; height: 60%; 
  background: url('../images/bg_pattern1.png'); z-index: -1;
}
.poster .slider .slick-slide { position: relative; margin: 0px 150px 0 0; max-width: 325px; opacity: 1; }
.poster .slider .play_box > div { box-shadow: 21px 21px 30px rgba(0,0,0,0.75); }
.poster .slider .play_box .top { position: absolute; top: 11%; right: -50%; width: 80%; background: transparent; box-shadow: inherit; }
.poster .slider .play_box .top10 { right: -60%; }

.poster .slider .play_box .cont_btn_box { right: 2%; bottom: 1%; }

/* contents mouse over action */
.poster .slider .play_box > div:hover .img_box:before, 
.poster .slider .play_box > div:focus .img_box:before, 
.poster .slider .play_box > div:focus-within .img_box:before { 
  background-color: transparent; border: 5px solid #fff; border-radius: 14px;
  transform: scale(1.03, 1.03) translateZ(0px) translate3d(0px, 0px, 0px);
}

.poster .slider .play_box > .top:hover, 
.poster .slider .play_box > .top:focus, 
.poster .slider .play_box > .top:focus-within { cursor: inherit; transform: scale(1, 1) translateZ(0px) translate3d(0px, 0px, 0px); }
.poster .slider .play_box > .top:hover:before, 
.poster .slider .play_box > .top:focus:before, 
.poster .slider .play_box > .top:focus-within:before { border: 0; }

.poster .slider .play_box > div:hover .play_info_box::after, 
.poster .slider .play_box > div:focus .play_info_box::after, 
.poster .slider .play_box > div:focus-within .play_info_box::after { 
  height: 100%; 
  background: -moz-linear-gradient(top,  rgba(0,0,0,0) 0%, rgba(0,0,0,0.9) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.9) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.9) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#000000',GradientType=0 ); /* IE6-9 */
  transform: scale(1.05, 1.05) translateZ(0px) translate3d(0px, -1px, 1px);
}

.poster .slick-prev.slick-arrow:hover {
  background: url(../images/ic_slide_prev.png) center 47% no-repeat;
  background-size: 30%;
}
.poster .slick-next.slick-arrow:hover {
  background: url(../images/ic_slide_next.png) center 47% no-repeat;
  background-size: 30%;
}


/* contents watching type */
.watching .slider .play_box > div { border-radius: 8px 8px 0 0; box-shadow: inherit; }
.watching .slider .play_box .img_box { border-radius: 8px 8px 0 0; }
.play_box .progress_bar { 
  position: absolute; left: 0; bottom: 0; width: 100%; height: 10px; z-index: 100; 
  transform: scale(1, 1) translateZ(0px) translate3d(0px, 0px, 0px); 
}
.play_box .progress_bar:after { 
  content: attr(data-time); display: none; position: absolute; right: 2px; bottom: 15px; color: #fff; font-size: 13px; 
}
.play_box .progress_bar .bar { 
  position: relative; display: block; width: 100%; height: 100%; background-color: #fff; overflow: hidden;
}
.play_box .progress_bar .bar span { display: block; height: 100%; background-color: #ff8aff; }


/* contents mouse over action */
.watching .slider .play_box > div:hover, 
.watching .slider .play_box > div:focus, 
.watching .slider .play_box > div:focus-within {
  box-shadow: rgba(255, 255, 255, 0.3) 0px 35px 53px -16px, rgba(255, 255, 255, 0.22) 0px 25px 17px -10px;
}

.watching .slider .play_box > div:hover, 
.watching .slider .play_box > div:focus, 
.watching .slider .play_box > div:focus-within,
.watching .slider .play_box > div:hover .img_box, 
.watching .slider .play_box > div:focus .img_box, 
.watching .slider .play_box > div:focus-within .img_box { border-radius: 8px; }

.watching .slider .play_box > div:hover .progress_bar, 
.watching .slider .play_box > div:focus .progress_bar, 
.watching .slider .play_box > div:focus-within .progress_bar { 
  left: 0px; bottom: 0px; width: calc(100% - 10px); height: 10px; border-radius: 10px; 
  transform: scale(1, 1) translateZ(0px) translate3d(5px, -8px, 5px); 
  transition-duration: 300ms; transition-property: transform, box-shadow; transition-timing-function: ease-out;
}

.watching .slider .play_box > div:hover .progress_bar .bar, 
.watching .slider .play_box > div:focus .progress_bar .bar, 
.watching .slider .play_box > div:focus-within .progress_bar .bar { border-radius: 10px; }

.watching .slider .play_box > div:hover .progress_bar:after, 
.watching .slider .play_box > div:focus .progress_bar:after, 
.watching .slider .play_box > div:focus-within .progress_bar:after { display: block; }

.watching .slider .play_box > div:hover .cont_btn_box, 
.watching .slider .play_box > div:focus .cont_btn_box, 
.watching .slider .play_box > div:focus-within .cont_btn_box { 
  left: 6px; right: inherit; bottom: 34px; -webkit-box-pack: inherit; justify-content: inherit; 
}


/* contents banner type */
.section_box.banner { position: relative; margin: 0 calc(-3.5vw - 24px); padding: 30px 0 30px calc(3.5vw + 24px); }
.section_box.banner:before {
  content: ''; position: absolute; left: 0; top: 0; width: 100%; height: 60%; 
  background-color: rgba(0,0,0,0.5); z-index: -1;
}
.section_box.banner > h2 { font-size: 60px; text-shadow: none; }
.section_box.banner > p { margin: 20px 0 30px; font-size: 18px; }

.banner .slider .play_box > div { border-radius: 8px 0 0 8px; box-shadow: inherit; }
.banner .slider .play_box .img_box { border-radius: 8px 0 0 8px; background-position: center top 15% !important; }
.banner .slider .play_box .cont_btn_box { 
  bottom: 6%; margin-right: calc(3.5vw + 24px);
}

/* contents mouse over action */
.banner .slider .play_box > div:hover .img_box, 
.banner .slider .play_box > div:focus .img_box, 
.banner .slider .play_box > div:focus-within .img_box {
  box-shadow: inherit; transform: inherit;
  transition-duration: inherit; transition-property: inherit; transition-timing-function: inherit;
}
.banner .slider .play_box > div:hover .img_box:before, 
.banner .slider .play_box > div:focus .img_box:before, 
.banner .slider .play_box > div:focus-within .img_box:before { display: none; }

.banner .slider .play_box > div:hover .play_info_box:after, 
.banner .slider .play_box > div:focus .play_info_box:after, 
.banner .slider .play_box > div:focus-within .play_info_box:after {
  bottom: 0px; transform: inherit; transition-duration: 300ms; transition-property: transform, box-shadow; transition-timing-function: ease-out;
}


/* ---------------------------------------- */
/* sub list
/* ---------------------------------------- */
.contents_wrap.sub { margin-top: 99px; }
.sub:after { 
  content: ''; position: absolute; top: 0; left: 0; right: 0; width: 100%; height: 500px; z-index: -2; 
  background: -moz-linear-gradient(top, rgba(234,151,231,1) 0%, rgba(212,142,215,1) 7%, rgba(212,142,215,1) 64%, rgba(212,142,215,0) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(234,151,231,1) 0%,rgba(212,142,215,1) 7%,rgba(212,142,215,1) 64%,rgba(212,142,215,0) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(234,151,231,1) 0%,rgba(212,142,215,1) 7%,rgba(212,142,215,1) 64%,rgba(212,142,215,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ea97e7', endColorstr='#00d48ed7',GradientType=0 ); /* IE6-9 */
}
.sub > .title_box h1 { 
  position: relative; display: inline-block; margin: 70px 0 10px; padding: 0 25px 0 22px; font-size: 80px; font-weight: 400; 
  border-bottom: 1px solid #fff; font-family: 'Poppins', sans-serif; 
}
.sub > .title_box h1:after {
  content: ''; position: absolute; bottom: -6px; right: -41px; 
  width: 69px; height: 42px; background: url(../images/ic_star.png) center no-repeat; background-size: cover;
} 

.section_box.top:before { display: none; }
.section_box.top > h2 { position: relative; display: inline-block; text-shadow: 2px 1px 1px rgba(0,0,0,0.75); z-index: 1; }
.section_box.top > h2:before {
  content: ''; position: absolute; bottom: -8px; margin: 0 calc(-3.5vw - 24px); padding: 0 calc(3.5vw); 
  width: 100%; height: 38px; background-color: #7a94ff; z-index: -1;
}
.section_box.top > p { margin: 20px 0 30px; font-size: 24px; }
.slider .play_box .top_title { position: absolute; bottom: 0; right: 0; }

.sub .section_box.poster:before { height: 84%; background: #3d4462; }
.sub .poster .slider .play_box .top { top: inherit; bottom: 6.5%; }



/* ---------------------------------------- */
/* sub listen
/* ---------------------------------------- */
.listen_wrap { position: relative; display: block; width: 100%; min-height: 800px; z-index: 2; }
.listen_wrap:after { 
  content: ''; position: absolute; top: 0; left: 0; right: 0; width: 100%; height: 600px; z-index: -2; 
  background: -moz-linear-gradient(top, rgba(234,151,231,1) 0%, rgba(212,142,215,1) 7%, rgba(212,142,215,1) 64%, rgba(212,142,215,0) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(234,151,231,1) 0%,rgba(212,142,215,1) 7%,rgba(212,142,215,1) 64%,rgba(212,142,215,0) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(234,151,231,1) 0%,rgba(212,142,215,1) 7%,rgba(212,142,215,1) 64%,rgba(212,142,215,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ea97e7', endColorstr='#00d48ed7',GradientType=0 ); /* IE6-9 */
}

.swiper-container.listen { height: 460px; background-color: transparent; }
.listen .swiper-slide { padding: 30px calc(3.5vw + 10px); align-items: flex-start; }
.listen .swiper-slide:after { display: none; }

.album-info { 
  padding-right: 3.5vw; width: calc(100% - 410px); font-size: 18px; 
  color: #fff; font-weight: 400; font-family: 'Roboto'; 
}
.album-info > h2 { 
  position: relative; display: inline-block; font-family: 'Poppins'; font-size: 60px; 
  font-weight: 600; z-index: 1; 
}
.album-info > h2:before {
  content: ''; position: absolute; bottom: -9px; margin: 0 calc(-3.5vw - 10px); padding: 0 calc(3.5vw - 10px);
  width: 100%; height: 40px; background-color: #7a94ff; z-index: -1;
}
.album-info > h2 strong { font-size: 80px; color: #33384C; }
.album-info > h4 { margin: 35px 0 25px; font-size: 28px; font-weight: 300; line-height: 1.3; }
.album-info p { margin-bottom: 5px; opacity: 0.7; }
.album-info p span + span { margin-left: 10px; }
.album-info .dot span + span { position: relative; margin-left: 15px; }
.album-info .dot span + span:after { 
  content: ''; position: absolute; left: -7px; top: 8px; width: 3px; height: 3px; 
  background-color: #fff; border-radius: 50%; 
}

/* slide banner */
.swiper-slide .album-box { 
  width: 410px; height: 410px; 
  border: 5px solid rgba(255, 255, 255, 0.35); border-radius: 20px;
  /* display: grid; grid-template-columns: auto auto; */
}
.swiper-slide .album-box .img { border-radius: 16px; }
/* .swiper-slide .album-box .img { height: 150px; }
.swiper-slide .album-box .img:nth-child(1) { border-radius: 16px 0 0 0; }
.swiper-slide .album-box .img:nth-child(2) { border-radius: 0 16px 0 0; }
.swiper-slide .album-box .img:nth-child(3) { border-radius: 0 0 0 16px; }
.swiper-slide .album-box .img:nth-child(4) { border-radius: 0 0 16px 0; } */
.swiper-container-horizontal>.swiper-pagination-bullets, 
.swiper-pagination-custom, .swiper-pagination-fraction { bottom: 0px; }
.swiper-pagination-bullet { width: 10px; height: 10px; background: #fff; opacity: 0.5; }
.swiper-pagination-bullet-active { width: 25px; border-radius: 10px; opacity: 1; }

.banner_play_control { display: flex; gap: 10px; position: absolute; bottom: 20px; left: calc(3.5vw + 15px); }
.banner_play_control .btn_play {
  display: flex; align-items: center; justify-content: center; gap: 12px; color: #fff; font-size: 24px; line-height: 1;
  width: 150px; height: 40px; background: rgba(0,0,0, 0.5); border-radius: 50px; font-family: 'Lato';
}
.banner_play_control button i { display: inline-block; }
.listen_play { width: 16px; height: 18px; background-image: url("../images/listen/icon_banner_play.png"); }
.listen_play.pause { width: 14px; height: 18px; background-image: url("../images/listen/icon_banner_pause.png"); }
.listen_shuffle { width: 24px; height: 18px; background-image: url("../images/listen/icon_banner_shuffle.png"); }
.icon_more { margin-bottom: 3px; width: 19px; height: 6px; background-image: url("../images/listen/icon_banner_more.png"); }

.listen_shuffle:hover,
.listen_shuffle:active,
.listen_shuffle.active { background-image: url("../images/listen/icon_banner_shuffle_active.png"); }
.icon_more:hover,
.icon_more:active,
.icon_more.active { background-image: url("../images/listen/icon_banner_more_active.png"); }
.listen_favorite_active {width: 28px; height: 24px; background: url('../images/ic_favorite_active.png') center no-repeat; }

/* audio-player */
.audio-player { position: fixed; left: 0; bottom: 0; right: 0; width: 100%; height: 82px; z-index: 1000; }
.audio-player > div { 
  display: flex; padding: 1px calc(3.5vw + 24px) 0; width: 100%; height: 100%; 
  background: #33384C; border-top: 1px solid rgba(255, 255, 255, 0.35);
}
.player_info { 
  display: flex; gap: 15px; align-items: center; position: relative; padding: 10px 30px 10px 10px; 
  width: 40%; height: 81px; font-size: 16px; color: #fff; 
}
.player_info .img { width: 60px; height: 60px; }
.player_info .info_box { width: calc(100% - 75px); }
.player_info h2 { 
  font-weight: 400; text-overflow: ellipsis; 
  overflow: hidden; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; }
.player_info p { margin-top: 3px; opacity: 0.8; }

.audioplayer { 
  justify-content: space-between; margin: 0; padding: 0; width: 60%; height: 100%; 
  border: 0; border-radius: 0; background: #33384C; 
}
.audioplayer-playing .audioplayer-playpause,
.audioplayer:not(.audioplayer-playing) .audioplayer-playpause {
  width: 60px; height: 60px; border: 1px solid rgba(255,255,255,0.15); background: rgba(255,255,255,0.05);
}
.audioplayer-playing .audioplayer-playpause:hover,
.audioplayer:not(.audioplayer-playing) .audioplayer-playpause:hover { background: rgba(255,255,255,0.15); }
.audioplayer:not(.audioplayer-playing) .audioplayer-playpause a {
  margin-left: 4px; width: 30px; height: 30px; border: 0; background: url("../images/listen/icon_play.png") center no-repeat; 
}
.audioplayer-playing .audioplayer-playpause a {
  width: 14px; height: 25px; border: 0; background: url("../images/listen/icon_pause.png") center no-repeat; 
}
.audioplayer-playing .audioplayer-playpause a::before, 
.audioplayer-playing .audioplayer-playpause a::after {
  display: none; 
}
.audioplayer-prev-button {
  margin-right: 50px; width: 25px; height: 25px; border-radius: inherit; background: url("../images/listen/icon_prev.png") center no-repeat; 
}
.audioplayer-next-button {
  margin-left: 50px; width: 25px; height: 25px; border-radius: inherit; background: url("../images/listen/icon_next.png") center no-repeat; 
}
.audioplayer-bar {
  position: absolute; left: 0; top: -5px; width: calc(100% - 7vw - 48px);
  margin: 0; margin-left: calc(3.5vw + 24px); 
}
.audioplayer-bar::before { display: none; }
.audioplayer-bar-loaded { height: 3px; background-color: #fff; }
.audioplayer-bar-played { height: 3px; background: #ED98E9; }
.audioplayer-bar-played:after { background: #ED98E9; }
.audioplayer-playing .audioplayer-bar-played::after { border: 3px solid #ED98E9; }
.audioplayer:not(.audioplayer-playing) .audioplayer-bar-played::after,
.audioplayer-playing .audioplayer-bar-played::after { border-color: rgba(255,255,255,0.5); }
.audioplayer-volume-button { width: 34px; height: 27px; }
.audioplayer-volume-button a {
  width: 34px; height: 27px; background: url("../images/listen/icon_sound.png") center no-repeat;
}
.audioplayer-volume-button a:before,
.audioplayer-volume-button a:after { display: none; }
.audioplayer-volume-adjust > div {
  width: 100px; height: 5px; border-radius: 5px; background-color: rgba(255, 255, 255, 0.35);
}
.audioplayer-volume-adjust div div { height: 5px; border-radius: 5px; background-color: #fff; }


/* listen contents */
.contents_wrap[data-target="LISTEN"] { margin: 20px 0 0; padding: 0 calc(3.5vw + 13px); }
.contents_wrap[data-target="LISTEN"] > div { padding-top: 30px; border-top: 1px dotted rgba(255, 255, 255, 0.35); }
.contents_wrap[data-target="LISTEN"] .section_box > h2 { font-family: 'Roboto'; font-size: 28px; font-weight: 500; }

.contents_wrap[data-target="LISTEN"] .slick-slide { margin: 0px 30px 0 0; }
.slider .listen_box { 
  display: block;
  position: relative; 
  backface-visibility: hidden;
  transform: scale(1, 1) translateZ(0px);
  transition-duration: 300ms;
  z-index: 10;
  transition-property: transform, box-shadow;
  transition-timing-function: ease-out;
  -webkit-font-smoothing: subpixel-antialiased;
  color: #fff;
}
.slider .listen_box .img_box { 
  border-radius: 16px; background-color: #556193; 
}

/* contents mouse over action */
.slider .listen_box .img_box:hover, 
.slider .listen_box .img_box:focus, 
.slider .listen_box .img_box:focus-within {
  transform: scale(1.03, 1.03) translateZ(0px) translate3d(0px, 0px, 0px); 
  transition-duration: 300ms;
  transition-property: transform, box-shadow;
  transition-timing-function: ease-out;
}

.slider .listen_box .title_box { width: 100%; margin-top: 10px; font-family: 'Roboto'; }
.slider .listen_box .title_box h3 { margin-bottom: 0; font-size: 16px; font-weight: 400; text-overflow: ellipsis; overflow: hidden; white-space: nowrap; }
.slider .listen_box .title_box p { margin-top: 5px; font-size: 14px; opacity: 0.7; text-overflow: ellipsis; overflow: hidden; white-space: nowrap; }


.genre .slider .listen_box { text-align: center; text-decoration: none; }
.genre .slider .listen_box .album-box,
.genre .slider .listen_box .album-box .img { border-radius: 50%; }


.listen_box.listened .img_box:before { 
  content: ''; position: absolute; right: -18px; bottom: 35px;
  width: 38px; height: 38px; background-color: #fff; border-radius: 50%; z-index: 10;
} 
.listen_box.listened .img_box:after {
  content: ''; position: absolute; right: -11px; bottom: 44px; z-index: 11;
  width: 20px; height: 20px; background: url("../images/listen/icon_play_blue.png") center no-repeat;
}
.listen_box.listened .img_box:hover:before { bottom: -13px; }
.listen_box.listened .img_box:hover:after { right: -10.5px; bottom: -4px; }


/* listen detail */
.modal_wrap .modal_box.listen.pb80 { padding-bottom: 80px; }
.modal_wrap .modal_box.listen > div:after { 
  height: 650px; background: linear-gradient(to bottom, rgba(234, 151, 231, 1) 0%, rgba(212, 142, 215, 1) 64%, rgba(212, 142, 215, 0) 100%); 
}
.modal_wrap .listen .header_box { display: flex; width: 100%; padding: 40px 50px 30px; }
.modal_wrap .listen .header_box .album-box { 
  width: 300px; height: 300px; border: 5px solid rgba(255, 255, 255, 0.35); border-radius: 20px; 
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.35); overflow: hidden; z-index: 10;
}
.modal_wrap .listen .header_box .img { width: 100%; height: 100%; }
.modal_wrap .listen .header_box .album-info { position: relative; width: calc(100% - 300px); padding: 10px 30px 0 40px; }
.modal_wrap .listen .header_box .album-info h2 { margin-left: -5px; color: #33384C; font-size: 55px; font-weight: 800; }
.modal_wrap .listen .header_box .album-info h2:before { bottom: -5px; margin: 0 calc(-3vw); padding: 0 calc(2.5vw); background-color: #90A6FD; }
.modal_wrap .listen .header_box .album-info h4 { margin: 25px 0 15px; font-size: 20px; }
.modal_wrap .listen .header_box .album-info .banner_play_control { bottom: 0; left: 40px; }
.listen_favorite { width: 28px; height: 24px; background: url("../images/listen/icon_channel_heart.png") center no-repeat; }
.listen_favorite:hover,
.listen_favorite:active { background-image: url("../images/listen/icon_channel_heart_active.png"); }

.modal_wrap .listen .list_box { padding: 0px 50px 50px; }
.modal_wrap .listen .list_box .play_box { padding: 30px; background-color: rgba(0, 0, 0, 0.5); border-radius: 20px; }
.modal_wrap .listen .list_box .play_box li { 
  padding-bottom: 30px; margin-bottom: 30px; display: flex; align-items: center; justify-content: space-between; 
  gap: 30px; border-bottom: 1px dashed rgba(255, 255, 255, 0.35); cursor: pointer; 
}
.modal_wrap .listen .list_box .play_box li:last-child { padding-bottom: 0; margin-bottom: 0; border: 0; }
.modal_wrap .listen .list_box .play_box .album-box { width: 100px; height: 100px; }
.modal_wrap .listen .list_box .play_box .album-box .img  { width: 100%; height: 100%; border-radius: 50%; }
.modal_wrap .listen .list_box .play_box .info { width: calc(100% - 208px); }
.modal_wrap .listen .list_box .play_box h3 { margin-bottom: 10px; font-size: 26px; }
.modal_wrap .listen .list_box .play_box p { font-size: 20px; opacity: 0.5; }
.modal_wrap .listen .list_box .play_box p span { position: relative; margin-left: 10px; padding-left: 10px; }
.modal_wrap .listen .list_box .play_box p span:after { 
  content: ''; position: absolute; left: -5px; top: 11px; width: 5px; height: 5px; background-color: #fff; border-radius: 50%;
}
.modal_wrap .listen .list_box .play_box p span:first-child { margin: 0; padding: 0; }
.modal_wrap .listen .list_box .play_box p span:first-child:after { display: none; }
.modal_wrap .listen .list_box .play_box button { width: 48px; height: 48px; }

.listen_add { display: block; width: 100%; height: 100%; background: url("../images/listen/icon_channel_add.png") center no-repeat; opacity: 0.5; }
.listen_add:hover,
.listen_add:active { opacity: 1; }





.my_channel .slider .listen_box { text-align: center; }
.section_box > h2 > a .icon { display: inline-block; vertical-align: middle; }
.slider .listen_box .create { display: flex; align-items: center; justify-content: center; }
.slider .listen_box .create .icon { position: absolute;}
.icon_pencil { width: 12px; height: 12px; background-image: url("../images/listen/icon_pencil.png"); }
.icon_create { width: 80px; height: 80px; background-image: url("../images/listen/icon_create.png"); }

.section_box > h2 > a:hover .icon_pencil { background-image: url("../images/listen/icon_pencil_active.png"); }

/* manage channels */
.modal_wrap .modal_box .account_box.channel .title_box h1 { font-size: 48px; }
.term_box.channel { padding: 0 50px 45px; }
.term_box.channel .cont { padding: 22px 30px; height: 100%; }
.channel .cont > div { padding: 15px 5px !important; overflow: inherit !important; }
.channel .cont .btn_channel_box { display: flex; gap: 30px; height: 82px; padding: 0; }
.channel .cont .btn_channel_box button { 
  margin: 0; display: flex; gap: 10px; align-items: center; justify-content: center; 
  width: 50%; height: 100%; font-size: 18px; line-height: 1.3; 
}
.channel .cont .btn_channel_box button .btn { display: inline-block; width: 35px; height: 35px; }
.ic_create_channel { background-image: url("../images/listen/icon_create.png"); background-size: cover; }

.channel .cont .channel_box { margin-top: 30px; }
.channel .cont .channel_box > h2 { font-size: 32px; font-family: 'Roboto'; text-shadow: 2px 2px 1px rgba(0, 0, 0, 0.75); }
.channel .cont .channel_box section > div { 
  display: flex; justify-content: space-between; align-items: center; padding: 30px 0; border-top: 1px dashed rgba(255, 255, 255, 0.35); 
}
.channel .cont .channel_box section { padding-bottom: 0; border-top: 0; }
.channel .cont .channel_box section > div:first-child { padding-top: 0; border-top: 0; }
.channel .cont .channel_box section > div:last-child { padding-bottom: 0; }

.channel .cont .channel_box section > div > div { display: flex; align-items: center; gap: 30px; }
.channel section .img_box { width: 150px; height: 150px; border-radius: 10px; }
.modal_wrap .modal_box .account_box .channel_box section .title_box { margin: 0; text-align: left; }
.modal_wrap .modal_box .account_box .channel_box section .title_box h3 { margin-bottom: 15px; }

.channel .cont .channel_box section .more_opt_box { position: relative; }
.channel .cont .channel_box section .more_opt_box > a { 
  width: 60px; height: 38px; background: url("../images/listen/icon_more_horiz.png") center no-repeat; text-indent: -9999px; 
}
.channel .cont .channel_box section .opt_box { 
  display: none; position: absolute; right: 0; top: 50px; padding: 10px 20px; width: 280px; 
  background-color: #282C40; border-radius: 10px; z-index: 1;
}
.channel .cont .channel_box section .opt_box.action { display: block; }

.channel .cont .channel_box section .opt_box li {
  margin-left: 0; margin-bottom: 0px; padding-left: 0; list-style: none;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.35);
}
.channel .cont .channel_box section .opt_box li:last-child { border: 0; }
.channel .cont .channel_box section .opt_box li a { 
  padding: 10px 15px; text-decoration: none; display: flex; 
  align-items: center; gap: 10px; font-weight: 500; font-size: 20px;
}

.channel .cont .channel_box section .opt_box .btn { display: inline-block; width: 20px; height: 18px; border: 0; }
.ic_channel_remove { background: url("../images/listen/ic_channel_trash.png") center no-repeat !important;  }
.ic_channel_modify { background: url("../images/listen/ic_channel_edit.png") center no-repeat !important; }
.ic_channel_public { background: url("../images/listen/ic_channel_cloud.png") center no-repeat !important; }


.form_box.create_channel { padding: 0 60px 60px; font-weight: 300; }
.create_channel .desc { margin: 0 0 10px; text-align: center; font-size: 16px; }
.create_channel .select_box label { font-weight: 400; }

.create_channel.duplicate > div { display: flex; gap: 120px; }
.create_channel.duplicate form { width: 50%; }
.create_channel.duplicate .channel_list { 
  position: relative; width: 50%; padding: 18px; background-color: rgba(0,0,0, 0.5); border-radius: 8px; 
}
.create_channel.duplicate .channel_list:after { 
  content: ''; position: absolute; left: -60px; top: 0; width: 100%; height: 100%; border-left: 1px dashed rgba(255, 255, 255, 0.35); 
}
.create_channel.duplicate .channel_list > div { width: 100%; height: 340px; overflow-y: scroll; }
.create_channel.duplicate .cont > div::-webkit-scrollbar {
  width: 9px; background: transparent;
}
.create_channel.duplicate .cont > div::-webkit-scrollbar-thumb {
  background-color: #121524; border-radius: 9px; background-clip: padding-box; border: 2px solid transparent;
}
.create_channel.duplicate .cont > div::-webkit-scrollbar-track {
  background-color: #282f52; border-radius: 9px;
}

.create_channel.duplicate section { padding-right: 15px; }
.create_channel.duplicate section .img_box {
  position: relative; width: 80px; height: 80px; border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, .3); background-color: #7a88c4; 
}
.create_channel.duplicate section > a { display: block; padding: 15px 0; color: #fff; border-top: 1px dashed rgba(255, 255, 255, 0.35); }
.create_channel.duplicate section > a:first-child { padding-top: 0; border-top: 0; }
.create_channel.duplicate section > a:last-child { padding-bottom: 0; }
.create_channel.duplicate section > a > div { display: flex; align-items: center; gap: 15px; }
.create_channel.duplicate section > a h3 { margin-bottom: 10px !important; font-weight: 300; }
.create_channel.duplicate section .title_box p { font-weight: 300; font-size: 14px; opacity: 0.5; }

.create_channel.duplicate section .title_box p span { position: relative; margin-left: 10px; padding-left: 10px; }
.create_channel.duplicate section .title_box p span:after { 
  content: ''; position: absolute; left: -4px; top: 8px; width: 4px; height: 4px; background-color: #fff; border-radius: 50%;
}
.create_channel.duplicate section .title_box p span:first-child { margin: 0; padding: 0; }
.create_channel.duplicate section .title_box p span:first-child:after { display: none; }

.create_channel.duplicate .btn_box { text-align: center; justify-content: center; }
.create_channel.duplicate .btn_box .btn { width: 360px; }



/* ---------------------------------------- */
/* sub favorite
/* ---------------------------------------- */
.sub[data-target="FAVORITE"] .watching {
  margin: 70px calc(-3.5vw - 24px) 50px calc(-1.75vw - 12px); padding: 30px calc(3.5vw + 24px) 1px calc(1.75vw + 12px);
  border-radius: 22px 0 0 22px; background: url("../images/bg_pattern2.png");
}
.sub[data-target="FAVORITE"] .watching .slick-slide { opacity: 0; }
.sub[data-target="FAVORITE"] .watching .slick-active { opacity: 1; }
.sub[data-target="FAVORITE"] .watching .slick-dots li button:before { background: #fff; }

.list .slider { place-content: center flex-start; display: flex; -webkit-box-pack: start; flex-flow: wrap; margin: 0px 0px 0px -20px; }
.list .slider > div { margin: 20px 0px 0px 20px;  flex: 0 0 auto; width: calc(20% - 20px); }



/* ---------------------------------------- */
/* sub search
/* ---------------------------------------- */
.sub[data-target="SEARCH"] { padding-top: 130px; }
.search_box { 
  position: fixed; top: 99px; margin: 0 calc(-3.5vw - 24px); padding: 0 calc(3.5vw + 24px);
  width: 100%; height:99px; background-color: #263573; z-index: 100;
}
.search_box:after { 
  content: ''; position: absolute; left: calc(3.5vw + 24px); top: 50%; margin-top: -19px; width: 38px; height: 38px; 
  background: url(../images/ic_search_big.png) center no-repeat; background-size: cover; z-index: 120;
}
.search_box input { position: relative; padding: 0 60px; height: 100%; border: 0; line-height: 40px; font-size: 40px; }

.sub[data-target="SEARCH"] .section_box.search .contents-list { position: relative; min-height: 200px; }
.sub[data-target="SEARCH"] .section_box.search .contents-list:after { 
  content: ''; position: absolute; left: 0; top: 0; width: 100%; height: 100%;
  background: url(../images/ic_profile.png) center no-repeat; opacity: 0.5;
}
.sub[data-target="SEARCH"] .section_box.search .contents-list.active:after { display: none; }
.sub[data-target="SEARCH"] .section_box > h2 { position: relative; margin: 70px 0 30px; }
.sub[data-target="SEARCH"] .section_box > h2:before {
  content: ''; position: absolute; top: -18px; margin: 0 calc(-3.5vw - 24px) 0 calc(-1.75vw - 12px); padding: 0 calc(3.5vw + 24px) 0 calc(1.75vw + 12px);
  width: 100%; height: 60px; border-radius: 30px 0 0 30px; background-color: #263573; z-index: -1;
}



/* ---------------------------------------- */
/* etc
/* ---------------------------------------- */
.etc_box { padding-top: 90px; display: flex; align-items: center; justify-content: center; }
.etc_box > div { 
  position: relative; padding: 50px; width: 1200px; min-height: 500px; 
  background-color: rgba(0,0,0,.5); border-radius: 20px; 
}

.etc_box .term_box .cont {
  padding: 0; height: inherit; font-size: 18px; line-height: 24px;
  background-color: transparent; border-radius: inherit;
}
.etc_box .term_box .cont > div { padding: 0; overflow-y: inherit; }
.etc_box .faq_box { position: relative; display: flex; gap: 50px; font-size: 18px; }
.etc_box .faq_box .menu_list { width: 300px; }
.faq_box .menu_list ul { border: 1px solid rgba(255,255,255,0.3); }
.faq_box .menu_list li { width: 100%; border-bottom: 1px solid rgba(255,255,255,0.3); }
.faq_box .menu_list li:last-child { border-bottom: 0; }
.faq_box .menu_list li a { display: block; opacity: 0.5; line-height: 50px; vertical-align: middle; }
.faq_box .menu_list li .icon { display: inline-block; margin: 0 10px 0 15px; width: 40px; height: 40px; vertical-align: middle; }

.ic_payment { background-image: url('../images/ic_payment.png'); }
.ic_download { background-image: url('../images/ic_download.png'); }
.ic_points { background-image: url('../images/ic_points.png'); }
.ic_video { background-image: url('../images/ic_video.png'); }
.ic_access { background-image: url('../images/ic_access.png'); }
.ic_password { background-image: url('../images/ic_password.png'); }

.faq_box .menu_list li a:hover,
.faq_box .menu_list li a.active { font-weight: 600; color: #fff; background-color: #7a94ff; opacity: 1; }

.faq_list { width: calc(100% - 350px); margin-top: 5px; }
.faq_list h3 { display: none; margin-bottom: 15px; font-size: 22px; padding: 10px 0; border-bottom: 1px solid #fff; }

.faq_list li a { 
  position: relative; display: block; margin-bottom: 10px; padding: 6px 25px 16px; border-bottom: 1px dashed rgba(255, 255, 255, 0.3); 
}
.faq_list li a:before { content: 'Q.'; position: absolute; left: 0; top: 6px; }
.faq_list li a:after { 
  content: ''; position: absolute; right: 0; top: 10px; width: 25px; height: 25px; 
  background: url(../images/ic_arrow_down.png) center no-repeat; background-size: cover; 
}
.faq_list li p { display: none; padding: 5px 35px 40px 25px; font-weight: 300; line-height: 26px; }
.faq_list li a.active:after { background-image: url(../images/ic_arrow_up.png); }
.faq_list li a.active + p { display: block; }


.send_box { position: relative; padding: 0 20px; width: 100%; font-size: 18px; }
.send_box .form { display: flex; margin-top: 30px; gap: 70px; }
.send_box .form > div { width: 50%; }
.send_box .form dl { margin-bottom: 15px; }
.send_box .form dt { margin-bottom: 10px; font-weight: normal; }
.send_box .form textarea { min-height: 170px; line-height: 24px; }  
.send_box .form .ic_required { display: inline-block; width: 15px; height: 15px; vertical-align: top; }
.ic_required { background-image: url('../images/ic_required.png'); } 
.send_box .btn { margin-top: 30px; }
.send_box .btn_send { width: 300px; color: #2b2f44; font-size: 18px; line-height: 45px; background-color: #fff; border-radius: 4px; }




.etc_box .subscribe_box { padding: 50px 150px; text-align: center; }
.etc_box .subscribe_box .info h1 { font-size: 36px; }
.etc_box .subscribe_box .info h3 {font-weight: normal; line-height: 1.3; }
.etc_box .subscribe_box .info ul { display: inline-block; margin-left: 2%; width: 30%; }
.etc_box .subscribe_box .info li { position: relative; margin-bottom: 5px; padding-left: 15px; font-size: 16px; text-align: left; }
.etc_box .subscribe_box .info li:after { content: ''; position: absolute; left: 0px; top: 8px; width: 5px; height: 5px; background-color: #ff8aff; border-radius: 50%; }

.etc_box .subscribe_box .membership_box { margin: 50px 0 !important; gap: 50px; }
.etc_box .subscribe_box .membership_box label h3 { margin-top: 50px; font-size: 36px; font-weight: 600; line-height: 1; }
.etc_box .subscribe_box .membership_box label p, 
.etc_box .subscribe_box .membership_box label span { font-size: 18px; font-weight: 400; }
.etc_box .subscribe_box .membership_box label p { margin-bottom: 50px; }
.etc_box .subscribe_box .membership_box label h1 { font-size: 56px; }
.etc_box .subscribe_box .btn_submit { width: 300px; color: #2b2f44; font-size: 18px; line-height: 45px; background-color: #fff; border-radius: 4px; }



.etc_box.login > div { width: 500px; min-height: 300px; }
.login .form_box > form > div:first-child { margin-top: 0; }



/* ---------------------------------------- */
/* detail modal
/* ---------------------------------------- */
.modal_wrap { 
  display: flex; left: 0; top: 0; position: absolute; 
  justify-content: center; box-sizing: border-box; will-change: scroll-position; 
}
.modal_wrap.info { width: 100%; height: 100%; }
.modal_wrap .modal_box {
  position: absolute; color: #fff; font-size: 18px; 
  border-radius: 8px; background-color: transparent; will-change: transform; overflow: hidden;
  opacity: 0; left: -9999px; top: -9999px;
  transition-duration: 900ms; transition-timing-function: ease-out;
}
.modal_wrap .modal_box > div { position: relative; width: 100%; background: rgb(122,136,196,1); z-index: 2 }
.modal_wrap .modal_box > div:after { 
  content: ''; position: absolute; top: 0; left: 0; right: 0; width: 100%; height: 1300px; z-index: -1; 
  background: -moz-linear-gradient(top, rgba(234,151,231,1) 0%, rgba(212,142,215,1) 7%, rgba(212,142,215,1) 64%, rgba(212,142,215,0) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(234,151,231,1) 0%,rgba(212,142,215,1) 7%,rgba(212,142,215,1) 64%,rgba(212,142,215,0) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(234,151,231,1) 0%,rgba(212,142,215,1) 7%,rgba(212,142,215,1) 64%,rgba(212,142,215,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ea97e7', endColorstr='#00d48ed7',GradientType=0 ); /* IE6-9 */
}

.modal_wrap .modal_box .btn_close { position: absolute; right: 20px; top: 20px; width: 45px; height: 45px; z-index: 1000; }
.modal_wrap .modal_box .poster { position: relative; }
.modal_wrap .modal_box .poster:after { 
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; width: 100%; height: 45%; z-index: 2; 
  background: -moz-linear-gradient(top, rgba(122,188,255,0) 0%, rgba(212,142,215,1) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(122,188,255,0) 0%,rgba(212,142,215,1) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(122,188,255,0) 0%,rgba(212,142,215,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#007abcff', endColorstr='#ea97e7',GradientType=0 ); /* IE6-9 */
}
.modal_wrap .modal_box .img_box img { opacity: 0; }

.modal_wrap .modal_box .title_box { 
  position: relative; margin-top: -180px; padding: 15px 50px 15px 0; width: 100%; text-align: right; z-index: 100; 
  background: -moz-linear-gradient(left, rgba(121,148,255,0) 14%, rgba(121,148,255,0.27) 36%, rgba(121,148,255,0.74) 74%, rgba(121,148,255,1) 95%); /* FF3.6-15 */
background: -webkit-linear-gradient(left, rgba(121,148,255,0) 14%,rgba(121,148,255,0.27) 36%,rgba(121,148,255,0.74) 74%,rgba(121,148,255,1) 95%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to right, rgba(121,148,255,0) 14%,rgba(121,148,255,0.27) 36%,rgba(121,148,255,0.74) 74%,rgba(121,148,255,1) 95%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#007a88c4', endColorstr='#7a88c4',GradientType=1 ); /* IE6-9 */

}
.modal_wrap .modal_box .title_box h1 { font-size: 28px; text-shadow: 2px 1px 1px rgba(0,0,0,0.75); }

.modal_wrap .modal_box .info_box { position: relative; margin-top: 55px; width: 100%; padding: 40px; z-index: 100; }
.modal_wrap .modal_box .info_box > div { 
  position: relative; padding: 40px; width: 100%; min-height: 500px; 
  background-color: rgba(0,0,0,.5); border-radius: 20px 20px 0 0; 
}
.modal_box .info_box > div { position: relative; }
.modal_box .info_box .rating { 
  padding: 5px 10px; font-size: 14px; font-weight: 300; vertical-align: middle; border: 1px solid #fff; 
}
.modal_box .info_box .desc_box { display: flex; gap: 20px; align-items: end; }
.modal_box .info_box .desc_box > div:first-child { width: calc(100% - 285px); }
.modal_box .info_box .desc_box dl { display: flex; margin-top: 3px; width: 100%; }
.modal_box .info_box .desc_box dd { width: 100px; }
.modal_box .info_box .desc_box dt { width: calc(100% - 100px); }
.modal_box .info_box .desc_box .cont_btn_box { width: inherit; }
.modal_box .info_box .desc_box .cont_btn_box .btn_play { 
  position: relative; padding-left: 20px; width: 200px; height: 45px; color: #6e4a78; text-align: center; vertical-align: middle;
  line-height: 45px; font-size: 24px; font-style: normal; text-indent: inherit; background: #fff; border-radius: 4px; opacity: 0.85;
}
.modal_box .info_box .desc_box .cont_btn_box .btn_play:after { content: '▶'; position: absolute; top: -1px; left: 50%; margin-left: -45px; }
.modal_box .info_box .desc_box .cont_btn_box .btn_play:hover { opacity: 1; }
.modal_box .info_box hr { margin: 30px 0 25px; width: 100%; border-top: 1px solid #b7a5b8; border-bottom:  1px solid #372538; }
.modal_box .info_box .desc { font-weight: 300; text-align: justify; }
.modal_box .info_box .notice_box { 
  position: relative; margin: 30px 0; padding: 10px; width: 100%; font-size: 14px; color: rgba(255, 255, 255, 0.7);
  background-color: rgba(0,0,0, 0.3); border: 1px solid rgba(255,255,255,0.2); 
}
.modal_box .info_box .notice_box h3 { margin-bottom: 10px; }
.modal_box .info_box .cast_box { position: relative; margin: 30px 0; cursor: pointer; }
.cast_box h3 { display: inline-block; margin-bottom: 20px; padding: 5px 15px; color: rgba(0,0,0,0.8); background-color: #fff; border-radius: 4px; }
.cast_box li { display: inline-block; margin-bottom: 20px; width: calc(100% / 6 - 3px); text-align: center; }
.cast_box li .img_box { 
  display: inline-block; margin-bottom: 10px; width: 70px; height: 70px; 
  background-color: #7a88c4; border-radius: 50%; background-image: url(../images/ic_person.png);
}

.modal_box .info_box .btn_more { 
  width: 100%; color: rgba(255,255,255,0.5); font-size: 16px; line-height: 33px; 
  font-weight: 400; text-align: center; border: 1px solid rgba(255,255,255,0.4); 
}
.modal_box .info_box .btn_more:hover { color: rgba(255,255,255,1); border: 1px solid rgba(255,255,255,0.8); }
.modal_box .info_box .play_box { position: relative; margin-top: 30px; border-top: 1px dashed rgba(0,0,0,0.2); }
.modal_box .info_box .play_box li { display: flex; align-items: center; padding: 30px 0; border-bottom: 1px dashed rgba(0,0,0,.2); cursor: pointer; }
.modal_box .info_box .play_box li > div { position: relative; padding: 0 50px; }
.modal_box .info_box .play_box li > div:first-child { border-right: 1px solid rgba(0,0,0,.3); }
.modal_box .info_box .play_box li > div:first-child:after {
  content: ''; position: absolute; top: 0; right: -2px; width: 1px; height: 100%; background-color: rgba(255,255,255,.2); 
}
.modal_box .info_box .play_box li .img_box { width: 164px; border-radius: 4px; }
.modal_box .info_box .play_box li .img_box img { width: 100%; height: auto; }

.modal_box .info_box .play_box .progress_bar { left: inherit; top: 80px; width: calc(100% - 100px); padding: 0 7px; height: 6px; }
.modal_box .info_box .play_box .progress_bar .bar { border-radius: 6px; }

.modal_box .info_box .play_box h3 { margin-bottom: 10px; font-weight: 400; }
.modal_box .info_box .play_box h4 { margin-bottom: 10px; font-weight: 400; }
.modal_box .info_box .play_box p { font-size: 12px; font-weight: 300; line-height: 16px; opacity: 0.8; text-align: justify; }

.modal_box .info_box .play_box li:hover,
.modal_box .info_box .play_box li:focus,
.modal_box .info_box .play_box li:focus-within,
.modal_box .info_box .play_box li.active { background-color: rgba(0,0,0,.3); }

.modal_box .info_box .play_box li:hover .img_box:after,
.modal_box .info_box .play_box li:focus .img_box:after,
.modal_box .info_box .play_box li:focus-within .img_box:after,
.modal_box .info_box .play_box li.active .img_box:after { 
  content: ''; position: absolute; left: 0; top: 0; width: 100%; height: 100%; 
  background: url(../images/btn_play.png) center no-repeat; background-size: 45px;
}  



/* ---------------------------------------- */
/* login modal
/* ---------------------------------------- */
.modal_wrap .modal_box .account_box:after { display: none; }
.modal_wrap .modal_box .account_box .btn_close { top: -40px; }
.modal_wrap .modal_box .account_box .title_box { margin: 60px 0 40px; padding: 0; text-align: center; background: transparent; }
.modal_wrap .modal_box .account_box .title_box h1 { 
  position: relative; padding: 0 15px 0 12px; font-size: 38px; font-weight: 400; 
  text-shadow: inherit; border-bottom: 1px solid #fff; font-family: 'Poppins', sans-serif; 
}
.modal_wrap .modal_box .account_box .title_box h1:after {
  content: ''; position: absolute; bottom: -5px; right: -18px; 
  width: 33px; height: 20px; background: url(../images/ic_star.png) center no-repeat; background-size: cover;
}
.form_box { position: relative; padding: 0 80px 70px; width: 100%; }
.form_box form > div { position: relative; margin-top: 15px; }
.form_box .icon { position: absolute; right: 8px; top: 8px; width: 30px; height: 30px; cursor: pointer; }
.ic_eye { background-image: url(../images/ic_eye.png); }
.ic_eyeHide { background-image: url(../images/ic_eyeHide.png); }

.form_box .add_link { display: flex; margin-top: 10px; align-items: center; font-size: 14px; justify-content: space-between; }
.form_box .btn { width: 100%; height: 45px; color: #7a88c4; font-size: 18px; background-color: #fff; border-radius: 4px; }
.form_box .btn_box .btn { position: relative; margin-top: 5px; font-size: 14px; font-weight: 400; }
.form_box .btn_box .btn:after { content: ''; position: absolute; left: 10px; top: 10px; width: 45px; height: 45px; }
.ic_google { background: url(../images/ic_google.png) left 10px center no-repeat; }
.ic_facebook { background: url(../images/ic_facebook.png) left 10px center no-repeat; }
.ic_apple { background: url(../images/ic_apple.png) left 10px center no-repeat; }
.ic_amazon { background: url(../images/ic_amazon.png) left 10px center no-repeat; }

.form_box .add_info { margin-top: 10px; font-size: 14px; }
.form_box .add_info li { position: relative; padding-left: 10px; font-size: 12px; }
.form_box .add_info li:after { content: ''; position: absolute; left: 0; top: 5px; width: 4px; height: 4px; background-color: #fff; border-radius: 50%; }

.forgot .form_box { padding: 0 50px 70px; text-align: center; }
.forgot .form_box input,
.forgot .form_box > button { width: 80%; }

.form_box .btn_box.flex { display: flex; gap: 20px; }
.form_box .btn_box.flex .btn { width: 50%; }

.form_box .btn_box.password { padding: 0 10%; }
.form_box .btn_box.password .btn_back { width: 40%; }
.form_box .btn_box.password .btn_submit { width: 60%; font-weight: 600; }

.form_box .btn_box.login { padding: 0 10%; }
.form_box .btn_box.login .btn_submit { font-weight: 600; }

.membership .form_box,
.subscribe .form_box { padding: 0 45px 25px; }
.membership .form_box .btn_box.flex { gap: 20px; }

.membership_box { position: relative; margin: 50px 0 20px !important; display: flex; gap: 20px; text-align: center; }
.membership_box input { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.membership_box input[type="radio"] + label { position: relative; width: 50%; color: #fff; cursor: pointer; border-radius: 8px; background-color: rgba(0,0,0, 0.3); }
.membership_box input[type="radio"]:checked + label:before { 
  content: ''; position: absolute; left: 0; top: 0; width: calc(100% - 10px); height: calc(100% - 10px);
  border: 5px solid #fff; border-radius: 8px; 
}
.membership_box input[type="radio"]:checked + label:after {
  content: ''; position: absolute; left: 50%; top: -25px; margin-left: -25px; width: 50px; height: 50px;
  background: #fff url(../images/ic_checked.png) center no-repeat; background-size: cover; border-radius: 50%; 
}
.membership_box h3 { margin: 40px 0 30px; }
.membership_box h1 { margin-bottom: 30px; font-size: 36px; }
.membership_box p,
.membership_box span { font-size: 12px; font-weight: 300; }
.membership_box p { margin-bottom: 30px; color: #cbd5ff; }
.membership_box p span { color: #fff; }

.form_box > form > .zip_box input { width: 50%; }
.form_box > form > .card_box p { font-size: 14px; }
.form_box > form > .card_box > div { display: flex; gap: 10px; }
.form_box > form > .card_box input:nth-child(1) { width: 70%; }
.form_box > form > .card_box input:nth-child(2) { width: 30%; }

.form_box .validity_box > div { display: flex; gap: 10px; }
.form_box .validity_box > div > div { width: 50%; }
.form_box .validity_box p { font-size: 14px; }

.paymentadd .form_box { padding: 0 50px 70px; }

.form_box .coupon_box { margin-top: 15px; display: flex; gap: 10px; }
.form_box .coupon_box input { width: calc(100% - 110px); }
.form_box .coupon_box button { width: 100px; }

.paymentadd hr { margin: 20px 0 15px; border-top: 1px solid #fff; border-bottom: 0; }
.paymentadd dl { margin-top: 5px; display: flex; gap : 10px; justify-content: space-between; }
.paymentadd dl:first-child { margin-top: 15px; }
.paymentadd dd { font-size: 14px; color: rgba(255,255,255,0.7); }
.paymentadd dd span { margin-left: 10px; font-size: 16px; color: #fff; }
.paymentadd dt { text-align: right; }
.paymentadd .total { padding-top: 10px; border-top: 1px dashed rgba(255, 255, 255, 0.5)}
.paymentadd .total dd { font-weight: bold; color: #fff; }

.btn_back { color: #fff !important; background: rgba(0,0,0,0.5) !important; }




/* ---------------------------------------- */
/* terms modal
/* ---------------------------------------- */
.term_box { position: relative; padding: 0 50px 30px; text-align: justify; }
.term_box .cont { padding: 15px; height: 600px; font-size: 16px; font-weight: 300; line-height: 22px; background-color: rgba(0,0,0,.5); border-radius: 8px; }
.term_box .cont > div { padding: 15px; height: 100%; overflow-y: scroll; }
.term_box .cont > div::-webkit-scrollbar { width: 9px; background: transparent; }
.term_box .cont > div::-webkit-scrollbar-thumb { background-color: #121524; border-radius: 9px; background-clip: padding-box; border: 2px solid transparent; }
.term_box .cont > div::-webkit-scrollbar-track { background-color: #282f52; border-radius: 9px; }

.term_box h3 { margin-bottom: 25px; font-size: 20px; }
.term_box h4 { margin-top: 35px; margin-bottom: 20px; font-size: 18px; }
.term_box li { margin-left: 20px; margin-bottom: 25px; padding-left: 5px; list-style: lower-alpha; }
.term_box p { margin-bottom: 15px; }
.term_box li p { margin-bottom: 5px; }
.term_box a { text-decoration: underline; }

.term_box button {
  display: inline-block; margin-top: 10px;  width: 200px; color: #fff; line-height: 40px;
  background: rgba(0,0,0,.3); border-radius: 8px;
}
.term_box button:hover,
.term_box button:focus,
.term_box button:focus-within { background: rgba(0,0,0,.5); }


/* ---------------------------------------- */
/* account modal
/* ---------------------------------------- */
.term_box .noscroll { height: inherit; }
.term_box .noscroll > div { overflow: inherit; }
.term_box section { position: relative; padding: 30px 0; font-size: 18px; border-top: 1px dashed rgba(255, 255, 255, 0.2) }
.term_box section:nth-child(1) { padding-top: 0; border-top: 0; }
.term_box section h1 { margin-bottom: 10px; font-size: 18px; font-weight: 400; }
.term_box section h1 .icon { display: inline-block; margin-bottom: 4px; width: 24px; height: 24px; margin-right: 5px; vertical-align: middle; }

.ic_info { background-image: url('../images/ic_info.png'); }
.ic_membership { background-image: url('../images/ic_membership.png'); }
.ic_billing { background-image: url('../images/ic_billing.png'); }

.term_box section > div { display: flex; }
.term_box section .img_box { 
  position: relative; width: 156px; height: 156px; border: 1px solid rgba(0,0,0,.3);
  background-color: #7a88c4; background-image: url(../images/ic_profile.png); 
}
.term_box section .img_box .filebox { 
  position: absolute; left: 5px; bottom: 5px; width: 36px; height: 36px; 
  
}
.term_box section .img_box .filebox label {
  display: block; width: 100%; height: 100%; border-radius: 50%; background-color: rgba(0,0,0,.5); 
}
.term_box section .img_box .filebox label i { display: inline-block; width: 100%; height: 100%; }
.ic_camera { background-image: url('../images/ic_camera.png'); }

.term_box section .info { position: relative; width: 100%; }
.term_box section .img_box + .info { margin-left: 40px; width: calc(100% - 196px); }
.term_box section .line { margin-bottom: 0; padding-bottom: 20px; border-bottom: 1px solid rgba(255, 255, 255, 0.3) }
.term_box section .line + p { padding-top: 5px; border-top: 1px solid rgba(0,0,0, 0.3) }
 
.term_box section .info p,
.term_box section .info > div {  display: flex; margin-bottom: 0; align-items: center; justify-content: space-between; }
.term_box section .btn { 
  width: 200px; color: rgba(255,255,255,0.5); font-size: 14px; line-height: 33px; margin-top: 0;
  font-weight: 400; text-align: center; border: 1px solid rgba(255,255,255,0.4); background: transparent; border-radius: 0;
}
.term_box section .btn:hover { color: rgba(255,255,255,1); border: 1px solid rgba(255,255,255,0.8); }
.term_box section .info > div div { display: inline-block; width: calc(100% - 200px); }
.term_box section .info .password { display: inline-block; padding-top: 10px; letter-spacing: -1px; line-height: 0px; }
.term_box section .info .membership { display: inline-block; margin-left: 10px; padding: 0 15px; font-size: 14px; line-height: 28px; border: 1px solid #fff; }
.term_box section .info .btn_cancel { cursor: pointer; opacity: 0.6; }
.term_box section .info > div .plan_box { display: block; margin-top: 5px; width: 100%; }
.term_box section .info > div .plan_box span:first-child { margin-left: 0; }
.term_box section .billing_desc { position: relative; padding: 5px 20px; width: 100%; font-size: 14px; background-color: rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.37); }
.term_box section .billing_desc .date { color: #b8bdd3; }
.term_box section table { width: 100%; font-size: 14px; border-collapse: collapse; }
.term_box section table tr th { padding: 15px 0 5px; border-bottom: 1px solid rgba(255, 255, 255, 0.3); }
.term_box section table tr td { padding: 15px 0 5px; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.term_box section .btn_more { 
  margin-top: 0; width: 100%; color: rgba(255,255,255,0.5);
  font-size: 14px; line-height: 33px; font-weight: 400; text-align: center;
  border: 1px solid rgba(255,255,255,0.4); background: transparent; border-radius: 0;
}
.term_box section .btn_more:hover { color: rgba(255,255,255,1); border: 1px solid rgba(255,255,255,0.8); }


.term_box .list_box { position: relative; width: 100%; }
.term_box .list_box section .img_box {
  width: inherit; height: inherit; border: 0;
  background-color: inherit; background-image: inherit;
}
.list_box .list .slider > div { width: calc(25% - 20px); }
.list_box .list .slider > div > .play_box { width: 100%; }

.modal_wrap .modal_box .account_box .list_box .list .title_box {
  margin: 10px 0 0; padding: 0 0 0 12px; text-align: left; background: inherit;
}

.modal_wrap .modal_box .account_box .form_box form p { font-size: 14px; }
.modal_wrap .modal_box .account_box .form_box form li { margin-top: 5px; margin-left: 10%; }


.modal_wrap .modal_box .account_box .list_box .list.genre .title_box {
  text-align: center;
}


.term_box .list_box .btn,
.term_box .list_box .btn:hover { border: 0; }

.term_box .list_box .btn_play { background-image: url('../images/btn_play.png'); }
.term_box .list_box .btn_add { background-image: url('../images/btn_add.png'); }
.term_box .list_box .btn_remove { background-image: url('../images/btn_remove.png'); }
.term_box .list_box .btn_info { background-image: url('../images/btn_info.png'); }
.term_box .list_box .btn_close { background-image: url('../images/btn_close.png'); }
.term_box .list_box .btn_play:hover,
.term_box .list_box .btn_play:active { background-image: url('../images/btn_play_active.png'); }
.term_box .list_box .btn_add:hover,
.term_box .list_box .btn_add:active { background-image: url('../images/btn_add_active.png'); }
.term_box .list_box .btn_remove:hover,
.term_box .list_box .btn_remove:active { background-image: url('../images/btn_remove_active.png'); }
.term_box .list_box .btn_info:hover,
.term_box .list_box .btn_info:active { background-image: url('../images/btn_info_active.png'); }
.term_box .list_box .btn_close:hover,
.term_box .list_box .btn_close:active { background-image: url('../images/btn_close_active.png'); }

.term_box section .info .btn_cancel:hover,
.term_box section .info .btn_cancel:active { opacity: 1; }

.term_box section .info .btn_subscribe { color: #ee8fff; border-color: rgb(225 137 243); text-decoration: none; }





/* ---------------------------------------- */
/* video play
/* ---------------------------------------- */
.video_box { position: relative; display: none; }
.video_box .video-js { width: 0; height: 0; }

.video_box.active { 
  position: fixed; display: block; left: 0; top: 0; right: 0; bottom: 0; z-index: 10000;
}
.video_box.active > div { position: relative; width: 100%; height: 100%; }
.video_box.active .video-js { display: inline-block; width: 100%; height: 100%; }
.video_box .btn_close {
  display: none; width: 45px; height: 45px;
  position: absolute; top: 4%; right: 2%;
}
.video_box.active:hover .btn_close,
.video_box.active:active .btn_close { display: block; }



/* ---------------------------------------- */
/* download app guide
/* ---------------------------------------- */
.app_wrap {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0; width: 100%; height: 100%; 
  font-size: 16px; text-align: center; font-family: 'Roboto', sans-serif; font-weight: 300; 
  line-height: 1; background-color: #171a1d; z-index: 100000;  
}

.app_wrap .app_info_wrap { position: relative; height: 35%; }
.app_wrap .app_info_box { position: relative; padding: 5% 0; height: 100%; font-size: 4vw; color: #fff; }
.app_wrap .app_info_box p { opacity: 0.7; }
.app_wrap .logo_box { display: flex; align-items: end; height: 65%; }
.app_wrap .logo_box > div { width: 100%; }
.app_wrap .header_logo { width: 35%; background-image: url('../images/header_logo.png'); }
.app_wrap .header_logo img { opacity: 0; width: 100%; height: auto; }
.app_wrap .app_info_box .logo_box h3 { 
  margin: 7px 0 15px 33%; font-size: 6vw; opacity: 1; font-family: 'Lato', sans-serif; 
}
.app_wrap .btn_box {
  position: relative; width: 100%; height: 13%; 
  background: linear-gradient(to bottom, rgb(255,148,192) 0%,rgb(255,125,124) 100%);
}
.app_wrap .btn_box > div { 
  display: flex; width: 100%; height: 100%; align-items: center;
  background: url(../images/ic_app.png) left 80% bottom no-repeat; background-size: 23%; 
}
.app_wrap .btn_box a { position: relative; font-size: 6vw; color: #fff; font-weight: 300; }

.app_wrap .contents_box { position: relative; height: 52%; }
.app_wrap .contents_box .img { height: 100%; }
.app_wrap .contents_box .title_box { position: absolute; bottom: 10%; width: 100%; color: #fff; }
.app_wrap .contents_box .title_box p { 
  display: inline-block; padding: 10px; font-size: 6vw; font-weight: 600;
  border-radius: 5px; border: 1px solid rgba(255, 255, 255, 0.3); 
  background: linear-gradient(to bottom, rgba(0,0,0,0) 30%,rgba(0,0,0,0.45) 100%);
}



/* ---------------------------------------- */
/* 반응형
/* ---------------------------------------- */
@media screen and (max-width:1439px) {
  body { font-size: 1vw; }
  .header nav { padding: 0 36px; height: 80px; }
  .header nav .header_nav { font-size: 16px; gap: 70px; }
  .header nav .header_nav .header_logo { width: 150px; }
  .header nav .header_nav .icon { margin-top: -1px; }
  .header nav .account .img_box { width: 55px; height: 55px; }
  .header nav .account .account_list { top: 68px; padding: 7px 20px; width: 180px; font-size: 13px; }

  .footer_wrap { padding: 20px; }
  .footer_wrap .logo_wrap a { width: 180px; }
  .footer_wrap nav { margin-top: 25px; }
  .footer_wrap .social_box { margin: 22px 0 20px; }
  
  .swiper-container { margin-top: 80px; }
  .swiper-container .swiper-button-prev { left: 36px; }
  .swiper-container .swiper-button-next { right: 36px; }
  .swiper-container .pagination { width: 30px; height: 59px; }
  .swiper-container .info_box { padding: 25px; font-size: 16px; line-height: 22px; }

  .contents_wrap { margin: -80px 0 80px; padding: 0 36px; }
  .poster .slider .slick-slide { margin: 0px 130px 0 0; }
  .slick-prev { left: 35px; }
  .slick-next { right: 33px; }

  .section_box.banner { padding-right: 24px; }
  .banner .slider .play_box .cont_btn_box { bottom: 10%; }


  .contents_wrap.sub { margin: 80px 0; }
  .sub[data-target="SEARCH"] { padding-top: 100px; }


  .search_box { top: 80px; margin: 0 -36px; height: 80px; }
  .search_box:after { left: calc(3.5vw + 12px); margin-top: -15px; width: 30px; height: 30px; }
  .search_box input { padding: 0 34px; font-size: 30px; }

  .sub[data-target="SEARCH"] .section_box > h2:before { margin: 0 -36px 0 -18px; }

  .sub[data-target="FAVORITE"] .watching { margin: 70px -36px 50px -10px; padding: 30px 36px 1px 36px; }


  .swiper-container.listen { height: 360px; }
  .album-info { width: calc(100% - 310px); font-size: 16px; }
  .album-info > h2:before { bottom: 0px; height: 30px; }
  .album-info > h4 { margin: 20px 0; font-size: 24px; line-height: 1.2; }
  .banner_play_control { bottom: 5px; }
  .swiper-slide .album-box { width: 310px; height: 310px; }

}

@media screen and (max-width:1280px) {
  body { font-size: 1.2vw; }
  .header nav .header_nav { gap: 40px; }

  .swiper-container .slide-title,
  .swiper-container .info_box { width: 50%; }
  .swiper-container .slide-title { left: 15%; }

  .contents_wrap { margin: -30px 0 30px; }

  .poster .slider .slick-slide { margin-right: 110px; }

  .section_box.banner > h2 { font-size: 40px; }
  .section_box.banner > p { margin: 10px 0 20px; font-size: 16px; }

  .sub .slider .play_box .top_title img { width: 80%; }

  .sub[data-target="SEARCH"] .section_box.search { min-height: 500px; }
  .list .slider > div { width: calc(25% - 20px); }

  .swiper-container.listen { height: 320px; }
  .listen .swiper-slide { padding: 30px 1vw; }
  .album-info { font-size: 14px; }
  .album-info > h2 { font-size: 40px; }
  .album-info > h2 strong { font-size: 60px; }
  .album-info > h2:before { bottom: -5px; height: 25px; padding: 0 calc(3.5vw + 5px); }
  .album-info > h4 { font-size: 20px; }
  .swiper-slide .album-box { width: 260px; height: 260px; }

}
@media screen and (min-width: 1085px) {
  .header_nav a span {display: block;}
}
@media screen and (max-width:1084px) {
  body { font-size: 1.5vw; }
  .header nav { padding: 0 20px; height: 60px; }
  .header nav .header_nav .header_logo { width: 100px; }
  /*.header_nav a { text-indent: -9999px;}*iOS오류 중지*/
  .header_nav a span {display: none;}
  .header nav .header_nav .icon { margin-top: 0px; }
  .header_nav > .watch,
  .header_nav > .listen,
  .header_nav > .tvshows,
  .header_nav > .movie,
  .header_nav .mobile_list .search,
  .header_nav .mobile_list .favorite { display: block; }
  .header_nav .more { position: relative; display: none; margin-left: 10px; }
  .header_nav .mobile_list { 
    position: absolute; right: -130px; top: 49px; padding: 10px 30px; width: 160px;
    background-color: rgba(0,0,0,.8); border-radius: 8px;
  }
  .header_nav .mobile_list { top: 39px; }
  .header_nav .mobile_list li { line-height: 40px; }
  .header_nav .mobile_list a { text-indent: inherit; }

  .header nav .account .img_box { width: 45px; height: 45px; }

  .footer.fixed { position: fixed; bottom: 0; }
  .footer_wrap .logo_wrap a { width: 140px; }
  
  .swiper-container {  margin-top: 60px; }
  .swiper-container .swiper-button-prev { left: 20px; }
  .swiper-container .swiper-button-next { right: 20px; }
  .swiper-container .slide-title img { width: 80%; }
  .swiper-container .info_box { padding: 15px 25px; width: 60%; font-size: 14px; line-height: 18px; }
  .swiper-container .info_box h1 { margin-bottom: 15px; font-size: 26px; }
  .swiper-container .info_box h3 { margin-bottom: 10px; font-size: 14px; }
  .swiper-container .info_box dl { font-size: 14px; }
  .swiper-container .info_box dd { width: 80px; }
  .swiper-container .info_box hr { margin: 15px 0 10px; }

  .contents_wrap { margin: 10px 0 10px; padding: 0 20px; }
  .contents_wrap.safari { padding: 0 0 0 20px; }
  .sub[data-target="SEARCH"] { padding: 100px 20px 0; }

  .poster .slider .slick-slide { margin-right: 90px; }

  .poster .slider .play_box > div:hover .img_box:before, 
  .poster .slider .play_box > div:focus .img_box:before, 
  .poster .slider .play_box > div:focus-within .img_box:before {
    border: 3px solid #fff; top: -3px; left: -3px; 
    transform: scale(1.06, 1.04) translateZ(0px) translate3d(0px, 0px, 0px);
  }

  .modal_box .info_box p:nth-child(1) { margin-bottom: 10px; }
  .modal_box .info_box .cont_btn_box { top: 73px; }
  .modal_box .info_box .cont_btn_box .btn_play { width: 120px; font-size: 20px; }
  .modal_box .info_box .cont_btn_box .btn_play:after { margin-left: -37px; }

  .cast_box li { width: calc(100% / 4 - 3px); }
  .modal_box .info_box .play_box li > div { padding: 0 30px; }
  .modal_box .info_box .play_box .progress_bar { width: calc(100% - 60px); }

  .term_box { position: relative; padding: 0 20px; }

  
  .search_box { top: 60px; margin: 0 -20px; height: 60px; }
  .search_box:after { left: 24px; margin-top: -12px; width: 24px; height: 24px; }
  .search_box input { padding: 0; font-size: 26px; }


  .contents_wrap.sub { margin-top: 30px; }
  .sub > .title_box h1 { font-size: 60px; }
  .section_box.top > h2:before { padding: 0 calc(3.5vw + 4px); height: 28px; }

  .sub .slider .play_box .top_title { bottom: 5%; margin-right: 2.5vw; }
  .sub .slider .play_box .top_title img { width: 65%; }

  .sub > .title_box h1:after { right: -28px; width: 50px; height: 30px; }

  .sub .section_box.poster:before { height: 81%; }


  .sub[data-target="SEARCH"] .section_box > h2 { padding-left: 20px; }
  .sub[data-target="SEARCH"] .section_box > h2:before { margin: 0 -20px 0 -30px; }

  .sub[data-target="FAVORITE"] .watching { margin-top: 60px; }

  .etc_box { padding-top: 50px; }
  .etc_box > div { padding: 30px; }
  .send_box .form { gap: 30px; }

  .etc_box .faq_box { gap: 30px; }
  .etc_box .faq_box .menu_list { width: 230px; }
  .faq_list { width: calc(100% - 260px); }

  .etc_box .subscribe_box { padding: 50px; }
  .etc_box .subscribe_box .info ul { width: 40%; }


  .etc_box.login > div { min-height: inherit; }
}

@media screen and (max-width:768px) {
  .header nav .account { font-size: 14px; }
  .header nav .account .img_box { width: 40px; height: 40px; }
  .header nav .account .account_list { top: 50px; }

  .swiper-container .info_box { padding: 15px 25px; width: 70%; height: 60%; font-size: 12px; line-height: 14px; }
  .swiper-container .info_box h1 { margin-bottom: 0; }
  .swiper-container .info_box h3,
  .swiper-container .info_box dl { display: none; }
  .swiper-container .info_box .desc { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
  
  .cont_btn_box,
  .slider .play_box .cont_btn_box { gap: 5px; }
  .cont_btn_box .btn,
  .slider .play_box .cont_btn_box .btn { width: 35px; height: 35px; }

  .section_box.poster { padding: 20px calc(3.5vw + 24px); }

  .section_box.banner > h2 { font-size: 30px; }
  .section_box.banner > p { font-size: 14px; }

  .poster .slider .slick-slide { margin-right: 70px; }

  .modal_box .info_box .desc_box { display: block; gap: inherit; align-items: inherit; }
  .modal_box .info_box .desc_box > div:first-child { width: 100%; }
  .modal_box .info_box .desc_box .cont_btn_box { width: inherit; padding-top: 10px; }

  .modal_wrap .modal_box { font-size: 16px; }
  .modal_wrap .modal_box .info_box { margin-top: 25px; padding: 20px; }
  .modal_wrap .modal_box .info_box > div { padding: 17px 20px 20px; border-radius: 10px 10px 0 0; }
  .modal_box .info_box .cont_btn_box { top: 48px; right: 20px; }
  .modal_box .info_box hr { margin: 25px 0 16px; }

  .cast_box li { width: calc(100% / 3 - 3px); }
  .modal_box .info_box .play_box li > div { padding: 0 10px; }
  .modal_box .info_box .play_box .progress_bar { width: calc(100% - 20px); }
  .modal_box .info_box .play_box h3 { margin-bottom: 5px; font-size: 16px; }

  .sub .slider .play_box .top_title img { width: 50%; }
  .sub > .title_box h1 { font-size: 50px; }
  .section_box.top > h2:before { height: 22px; }

  .list .slider > div, 
  .list_box .list .slider > div { width: calc(100% / 3 - 20px); }

  .term_box section .info > div div { display: table-cell; }
  .term_box section .info .membership { margin: 5px 10px 0 0; }

  .search_box input { font-size: 22px; padding-left: 10px; }
  .sub[data-target="SEARCH"] .section_box.search { min-height: 350px; }

  .sub[data-target="FAVORITE"] .watching { margin-top: 50px; padding: 20px 26px 1px 34px; }
  .sub[data-target="FAVORITE"] .slick-dotted.slick-slider {  margin-bottom: 20px; }
  .sub[data-target="FAVORITE"] .slick-slide { margin: 0px 30px 0 0; }
  .sub[data-target="FAVORITE"] .slick-dots { padding: 0 36px; }

  .form_box { padding: 0 90px 50px; }


  .term_box section .btn { width: 144px; line-height: 30px; }
  .etc_box > div { padding: 25px 20px; }
  .etc_box .term_box .cont { font-size: 16px; line-height: 20px; }

  .etc_box .faq_box { gap: 20px; }
  .etc_box .faq_box .menu_list { width: auto; }
  .faq_box .menu_list li a { line-height: 45px; }
  .faq_box .menu_list li a span { display: none; }
  .faq_box .menu_list li .icon { margin: 0 6px; width: 35px; height: 35px; }
  .faq_list { width: calc(100% - 67px); }
  .faq_list h3 {  display: block; }
  .faq_list li a:after { top: 5px; }

  .send_box .btn { margin-top: 15px; }

  .modal_wrap .modal_box .account_box .title_box h1 { font-size: 32px; }

  .term_box section .billing_desc .date { display: block; margin-left: 0 !important; }
  .term_box section table tr td { font-size: 12px; }

  .etc_box .subscribe_box .info ul { width: 60%; }
  .etc_box .subscribe_box .membership_box { gap: 20px; }
  .etc_box .subscribe_box .membership_box label h3 { font-size: 26px; }
  .etc_box .subscribe_box .membership_box label h1 { font-size: 46px; margin-bottom: 20px; }
  .etc_box .subscribe_box .membership_box label p { font-size: 14px; }
}

@media screen and (max-width:640px) {
  .header_nav > .search,
  .header_nav > .favorite { display: block; }
  .header_nav .mobile_list { right: -30px; padding: 10px 20px; }
  .header_nav .mobile_list .search,
  .header_nav .mobile_list .favorite { display: block; }

  .swiper-slide { padding: 20px 0; }
  .swiper-slide:after { display: none; }
  .swiper-slide > .img { width: calc(100% - 40px); border-radius: 10px; border: 1px solid #7a88c4; box-shadow: 5px 5px 15px rgba(0,0,0,0.7); }
  .swiper-container .swiper-button-prev { left: 30px; }
  .swiper-container .swiper-button-next {  right: 30px; }
  .swiper-container .pagination { top: var(--swiper-navigation-top-offset,48%); width: 20px; height: 40px; }
  .swiper-container .slide-title { left: 10%; top: 10%; height: 55%; }
  .swiper-container .info_box { bottom: 20px; padding: 15px 15px; width: 80%; height: 105px; border-radius: 10px 10px 0 0; }
  .swiper-container .info_box h1 { font-size: 22px; } 
  .swiper-container .info_box .desc { display: none; }
  .swiper-container .info_box hr { margin: 10px 0 0px; }
  /* .slick-dots { display: none !important; } */
  .slick-dots { display: none !important; }
  .slick-dots li button:before { height: 100%; }
  .section_box.banner { padding: 20px 24px 20px calc(3.5vw + 24px); }

  .section_box > h2 { font-size: 20px; }
  .slick-dots li { width: 8px; height: 8px; }
  .ic_free { right: 4px; bottom: -19px; width: 24px; height: 24px; }

  .cont_btn_box { margin-top: 8px; }
  .cont_btn_box .btn, 
  .slider .play_box .cont_btn_box .btn { width: 30px; height: 30px; } 


  .poster .slider .slick-slide { margin-right: 100px; }

  .watching .slider .play_box > div:hover .cont_btn_box, 
  .watching .slider .play_box > div:focus .cont_btn_box, 
  .watching .slider .play_box > div:focus-within .cont_btn_box { left: 5px; bottom: inherit; top: -2px; }

  .watching .slider .play_box > div:hover .play_info_box:after, 
  .watching .slider .play_box > div:focus .play_info_box:after, 
  .watching .slider .play_box > div:focus-within .play_info_box:after { height: 100%; bottom: 0px; background: rgba(0,0,0,0.5) }


  .modal_wrap .modal_box .title_box { margin-top: -100px; padding: 8px 20px 10px 0; }
  .modal_wrap .modal_box .title_box h1 { font-size: 24px; }
  .modal_wrap .modal_box .info_box { margin-top: 10px; }

  .modal_box .info_box .cont_btn_box { position: relative; top: inherit; right: inherit; margin-top: 20px; gap: 10px; }
  .modal_box .info_box .cont_btn_box .btn_play { width: 50%; height: 42px; line-height: 40px; }
  .modal_box .info_box .cont_btn_box .btn_add,
  .modal_box .info_box .cont_btn_box .btn_remove { width: 42px; height: 42px; }
  .modal_box .info_box hr { margin: 20px 0 11px; }

  .cast_box li { width: calc(100% / 2 - 3px); } 
  .modal_box .info_box .play_box li { display: block; padding: 10px 0; }
  .modal_box .info_box .play_box li > div:first-child { border-right: 0; }
  .modal_box .info_box .play_box li > div:nth-child(2) { border-left: 0; margin-top: 10px; }
  .modal_box .info_box .play_box li .img_box { width: 100%; }
  .modal_box .info_box .play_box .progress_bar { width: calc(100% - 20px); top: inherit; bottom: 10px; }


  .slider .play_box .top_title { bottom: 15%; }
  .sub .slider .play_box .top_title img { width: 40%; }
  .sub .section_box.banner > h2 { font-size: 26px; }
  .sub .section_box.top > h2:before { bottom: -5px; height: 18px; padding: 0 calc(3.5vw + 10px); }

  .sub .section_box.poster:before { height: 80%; }
  .sub[data-target="SEARCH"] .section_box.search { min-height: 450px; }

  .search_box input { padding-left: 18px; font-size: 20px; }

  .term_box .cont > div { padding: 5px; }
  .etc_box .term_box .cont > div { padding: 20px; }
  .term_box section { padding: 15px 0; font-size: 14px; }
  .term_box section > div { display: block; }
  .term_box section .img_box { width: 120px; height: 120px; }
  .term_box section .img_box + .info { margin-top: 10px; margin-left: 0px; width: 100%; }
  .term_box section .line { padding-bottom: 0px; }
  .term_box section .line + p { padding-top: 0; }
  .term_box section .btn { line-height: 24px; font-size: 12px; }

  .term_box section .info > div div { width: calc(100% - 150px); }
  .term_box section .info .pr20 > span { font-size: 14px !important;}

  .term_box section .billing_desc { padding: 5px 10px; }
  .term_box section .billing_desc .date { display: block; margin-left: 0 !important; font-size: 13px; }
  .term_box section .info .membership { line-height: 24px; text-align: left; }

  .term_box section table,
  .term_box section table tbody,
  .term_box section table tr,
  .term_box section table td { position: relative; display: block; }
  .term_box section table thead { display: none; }
  .term_box section table tr td { padding: 10px 10px 10px 120px; font-size: 14px; line-height: 14px; }
  .term_box section table td:after {
    content: attr(data-label); position: absolute; left: 0px; top: 10px; color: #fff; 
  }
  .term_box section table tr td:last-child { border-bottom: 1px solid rgba(255, 255, 255, 0.5); }
  .term_box section table tr { margin-bottom: 10px; }
  .term_box section .btn_more { width: 100%; }

  .sub > .title_box h1 { margin-top: 60px; }
  .etc_box { display: block; padding-top: 30px; }
  .etc_box > div { width: 100%; border-radius: 12px; }

  .send_box .form { margin-top: 20px; display: block; gap: inherit; }
  .send_box .form > div { width: 100%; }
  .send_box .form dt { margin-bottom: 5px; }

  .faq_list { font-size: 16px; }


  .modal_wrap .modal_box.list_all .btn_close { width: 35px; height: 35px; }
  .modal_wrap .modal_box.list_all .account_box .btn_close { top: -25px; }
  .modal_wrap .modal_box.list_all .account_box .title_box { margin: 40px 0 20px; }
  .modal_wrap .modal_box.list_all .account_box .title_box h1 { font-size: 26px; }

  .etc_box .subscribe_box { padding: 25px; }
  .etc_box .subscribe_box .info ul { width: 60%; }
  .etc_box .subscribe_box .info h3 { font-size: 16px; }
  .etc_box .subscribe_box .info li { font-size: 14px; }
  .etc_box .subscribe_box .membership_box label h3 { margin-bottom: 25px; font-size: 22px; }
  .etc_box .subscribe_box .membership_box label p, 
  .etc_box .subscribe_box .membership_box label span { font-size: 14px; }
  .etc_box .subscribe_box .membership_box label h1 { font-size: 40px; margin-bottom: 10px; }

  .etc_box.login > div { width: inherit; }


}

@media screen and (max-width:540px) { 
  .poster .slider .slick-slide { margin-right: 80px; }

  .banner .slider { margin-right: -20px; }

  .play_box .progress_bar { bottom: -1px; height: 7px; }
  .play_box .progress_bar:after { bottom: 12px; font-size: 12px; }
  .watching .slider .play_box > div:hover .progress_bar, 
  .watching .slider .play_box > div:focus .progress_bar, 
  .watching .slider .play_box > div:focus-within .progress_bar { height: 7px; transform: scale(1, 1) translateZ(0px) translate3d(5px, -5px, 5px); }

  .modal_box .info_box dd { width: 80px; }

  .list .slider > div, 
  .list_box .list .slider > div { width: calc(50% - 20px); }

  .term_box section .btn_change { position: relative; text-indent: -9999px; width: 100px; }
  .term_box section .btn_change:after { content: 'Change'; position: absolute; width: 100%; top: 5%; left: 0; text-indent: 0; }


  .etc_box > div { padding: 20px 0px; }
  .etc_box .faq_box { padding: 20px; }

  .modal_wrap .modal_box .account_box .title_box { margin: 50px 0 30px; }
  .modal_wrap .modal_box .account_box .btn_close { top: -30px; }
  .modal_wrap .modal_box .account_box .title_box h1 { font-size: 32px; }

  .modal_wrap .modal_box.list_all .account_box .title_box h1 { font-size: 20px; }

  .modal_wrap .modal_box .account_box .form_box form li { margin-left: 5%; }


  .etc_box .subscribe_box .info h3 { font-size: 14px; }
  .etc_box .subscribe_box .membership_box label h3 { margin-top: 40px; margin-bottom: 15px; font-size: 20px; }
  .etc_box .subscribe_box .membership_box label p, 
  .etc_box .subscribe_box .membership_box label span { font-size: 12px; }
  .etc_box .subscribe_box .membership_box label h1 { font-size: 30px; }
  .etc_box .subscribe_box .membership_box label p { margin-bottom: 30px; }

  .etc_box.login > div { padding: 20px; }
  
}

@media screen and (max-width:480px) { 
  .header nav .header_nav { gap: 12px; }
  .header nav .account > ul { gap: 10px; }

  .swiper-container .slide-title { top: 24%; }
  .swiper-container .info_box { height: 22%; }
  .swiper-container .info_box hr,
  .swiper-container .info_box .cont_btn_box .btn_play,
  .swiper-container .info_box .cont_btn_box .btn_add { display: none; }
  .swiper-container .info_box h1 { font-size: 18px; }
  .swiper-container .info_box .cont_btn_box { position: absolute; top: 2px; right: 12px; }

  .section_box > h2 { font-size: 18px; }

  .cont_btn_box, 
  .slider .play_box .cont_btn_box { gap: 3px; }

  .poster .slider .slick-slide { margin-right: 60px; }

  .form_box { padding: 0 30px 30px; }
  .form_box .add_info li { line-height: 16px; }
  .form_box .add_info li:after { top: 7px; }

  .modal_wrap .modal_box .account_box .btn_close { top: -35px; right: 15px; width: 35px; height: 35px; }
  .modal_wrap .modal_box .account_box .title_box h1 { font-size: 28px; }
  .modal_wrap .modal_box .account_box .title_box h1:after { bottom: -3px; right: -16px; width: 30px; height: 18px; }
  .password .form_box { font-size: 13px; }
  .password .form_box input, 
  .password .form_box > button { width: 100%; }

  input[type=checkbox] + label:before { top: 1px; }
  input[type=checkbox]:checked + label:after { top: 4px; }

  .term_box .cont { padding: 10px; }
  .term_box .cont > div { padding: 10px 15px 10px 10px; }


  .sub > .title_box h1 { padding: 0 22px 0 12px; font-size: 40px; }
  .sub > .title_box h1:after { right: -18px; bottom: -5px; width: 40px; height: 24px; }

  .sub .section_box.poster:before { height: 77%; }

  .term_box section .info > div div { display: block; width: 100%; padding-right: 0 !important; }
  .term_box section .info .btn_subscribe {  margin-top: 5px; }

  .term_box section .info p { display: block; margin-top: 5px; }
  .term_box section .info p span { display: block; }
  .term_box section .line + p { margin-top: 0; }
  .term_box section .info .password + span { display: inline-block; }
  .term_box section .btn_change { margin-top: 5px; text-indent: 0; width: 100%; }
  .term_box section .btn_change:after { display: none; }

  .term_box section .billing_desc > span:first-child { display: block; margin-left: 0 !important; }
  .send_box .btn_send { width: 100%; }

  .ax5-ui-dialog { left: 20px !important; width: calc(100% - 40px) !important; }
  .ax5-ui-dialog .ax-dialog-body { padding: 20px; }
  .ax5-ui-dialog .ax-dialog-body .ax-dialog-msg { min-height: 160px; }

  .membership .form_box { padding: 0 30px 30px; }
  .membership_box { display: block; margin-top: 40px !important; }
  .membership_box input[type="radio"] + label { display: block; margin-bottom: 30px; width: 100%; padding: 10px; }
  .membership_box input[type="radio"]:checked + label:after { top: -20px; margin-left: -20px; width: 40px; height: 40px; }
  .membership_box h3 { margin: 25px 0 15px; }
  .membership_box h1 { margin-bottom: 10px; font-size: 30px; }

  .term_box section .info > div { display: block; }
  .term_box section .info .membership { margin-right: 5px; width: calc(50% - 7px); text-align: center; }
  .term_box section .info .btn_cancel { margin-left: 5px; margin-right: 0px; }
  
  .sub[data-target="SEARCH"] .section_box.search { min-height: 150px; }

}

@media screen and (max-width:395px) { 
  .etc_box .subscribe_box .btn_submit { width: 270px; }
  .paymentadd dd span {font-size: 13px;}
  .paymentadd .form_box {padding: 0 30px 70px;}
  .etc_box .subscribe_box .info ul { width: 80%; }
}

@media screen and (max-width:375px) {  
  .section_box > h2 { font-size: 15px; letter-spacing: -0.01px; }
  .section_box > h2 > a { margin-left: 10px; padding: 0px 6px; font-size: 11px; }

  .poster .slider .slick-slide { margin-right: 50px; }

  .term_box section .info .membership { margin-right: 0; width: 100%; }
  .term_box section .info .btn_cancel { margin-left: 0; }
  .term_box section .info .btn_subscribe { width: 100%; }

  .term_box section .info > div div.pr20 span.fs-16 { font-size: 12px !important; }

  .term_box section table tr td { padding-top: 35px; padding-left: 0; }
  .term_box section table td:after { color: rgba(255,255,255,0.6); }

  .modal_box .info_box .desc_box dl:nth-child(3) { display: inherit; margin-top: 10px; }
  .modal_box .info_box .desc_box dt { width: 100%; }
  .modal_box .info_box .desc_box .cont_btn_box { display: flex; justify-content: space-between; }
  
}
@media screen and (max-width: 325px) {
  .etc_box .subscribe_box .btn_submit { width: 232px;}
  .modal_wrap .modal_box .account_box .title_box h1 { font-size: 25px; }
  .paymentadd .form_box {padding: 0 10px 30px;}
  .etc_box .subscribe_box .info h1 { font-size: 30px; }
  .etc_box .subscribe_box .info ul { width: 100%;}
  .term_box section .info > div div.pr20 span.fs-16 { font-size: 10px !important; }
  
}

@media screen and (max-width:280px) { 
  .header nav .header_nav .header_logo { width: 80px; }
  .header nav {padding-left: 5px;}
}


/* ---------------------------------------- */
/* mobile
/* ---------------------------------------- */
body[device-type="mobile"] .slick-slide {
  margin: 0px 15px 0 0;
}
body[device-type="mobile"] .swiper {
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
}

body[device-type="mobile"] .swiper-slide {
  background-position: center;
  background-size: cover;
  width: 70%;
}

body[device-type="mobile"] .swiper-slide > .img {
  display: block;
  width: 100%;
}
body[device-type="mobile"] .swiper-container-3d .swiper-slide-shadow-right,
body[device-type="mobile"] .swiper-container-3d .swiper-slide-shadow-left {
  background-image: inherit;
}

body[device-type="mobile"] .swiper-container .pagination {
  display: none;
}


body[device-type="mobile"] .swiper-container .m_info_bg {
  position: absolute;
  left: 0;
  bottom: 20px;
  width: 100%;
}
body[device-type="mobile"] .swiper-container .m_info_bg img {
  width: 100%;
  height: auto;
}

body[device-type="mobile"] .swiper-container .info_box {
  left: 0;
  bottom: 20px;
  width: 100%;
  min-height: 23%;
  background: transparent;
}

body[device-type="mobile"] .swiper-container .info_box .genre_list {
  display: flex;
  gap: 5px;
}
body[device-type="mobile"] .swiper-container .info_box .genre_list span {
  margin-bottom: 7px;
  font-size: 3.5vw;
  padding: 4px 10px;
  background-color: rgba(0, 0, 0, .1);
  border-radius: 4px;
  font-family: 'Roboto', sans-serif;
}
body[device-type="mobile"] .swiper-container .info_box .m_title {
  display: flex;
  align-items: center;
  width: 55%;
  height: 57%;
  text-align: left;
}
body[device-type="mobile"] .swiper-container .info_box h1 {
  font-size: 5vw;
  /*line-height: 20px;*/
  font-family: 'Roboto';
  /*overflow: hidden;배너 글씨가 숨져져서*2025-03-01*/
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

body[device-type="mobile"] .swiper-container .info_box .cont_btn_box {
  top: inherit;
  bottom: 20px; 
}

body[device-type="mobile"] .swiper-container .info_box .cont_btn_box .btn_play {
  position: absolute; margin-top: -36%; display: block; padding: 12px 0; width: 40%; max-width: 150px; height: 130%;
  text-indent: inherit; font-style: normal; text-align: center; font-size: 17px; font-weight: 500; 
  font-family: 'Poppins', sans-serif; border-radius: 10px; background: #7a94ff;
}
body[device-type="mobile"] .swiper-container .info_box .cont_btn_box .btn_play:before {
  content: "Play";
  padding-left: 20px;
}
body[device-type="mobile"] .swiper-container .info_box .cont_btn_box .btn_play:after {
  content: '';
  position: absolute;
  left: calc(50% - 32px);
  top: 8px;
  width: 21px;
  height: 24px;
  background: url(../images/listen/icon_play.png) center no-repeat;
  background-size: 70%;
}
body[device-type="mobile"] .swiper-container .info_box .cont_btn_box .btn:last-child {
  margin-left: 3px;
}
/* mobile portrait Login Resiter */
.mobile-menu {
  display: none;
  width: 30px;
  height: 30px;
  background-image: url('../images/login_icon.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}
.header nav .account >.toggle-menu {
  display: none; position: absolute; top: 50px; right: 0; background-color: rgba(0, 0, 0, .8);
  border-radius: 5px; width: 120px; flex-direction: column; box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); padding: 10px;
}
.toggle-menu li {
  display: none; text-align: center; padding-bottom: 10px;
}
.toggle-menu li:last-child {
  padding-bottom: 0;
}
.toggle-menu li a {
  text-decoration: none; display: block; color: #fff;
}
@media screen and (max-width: 768px) and (orientation: portrait){
  .account .desktop-menu > li{
      display: none;
  }
  .mobile-menu {
      display: block;
  }
  .toggle-menu  > li {
      display: block;
  }
}