@charset "UTF-8";


/* 공통 스타일 */
.video_info {
  position: relative;
  padding: 30px 0 40px;
}
.video_info > h5 {
  font-size: 3.6rem;
  color: #fff;
}
.video_info .wrap_meta {
  font-size: 2.0rem;
  color: #666;
}
.video_info .wrap_desc {
  font-size: 1.6rem;
  color: #666;
}
.etc {
  overflow: hidden;
  max-height: 0px;
  transition: max-height 0.5s ease;
  margin-top: 10px;
}
.etc.expand {
  max-height: 100px;
  transition: max-height 0.5s ease;
  margin-bottom: 13px;
}

.toggle_button {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  font-weight: bold;
  padding: 0;
  position: relative;
  /* margin-top: 15px; */
  padding-left:18px;
}
.toggle_button::before {
  content: "";
  width: 16px;
  height: 16px;
  background: url('/imgs/icons/fill/16_triangle_bottom.svg') no-repeat center;
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(203deg) brightness(108%) contrast(102%);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  margin-left:-18px;
}
.toggle_button.expand::before {
  transform: translateY(-55%) rotate(180deg);
}
.btn_group {
  display: flex;
  position: absolute;
  top: 30px; right: 0;
  font-size: 1.2rem;
  color: #888;
}
.btn_group > button {
  flex-shrink: 0;
}
.btn_group > button + button {
  margin-left: 30px;
}
.btn_group .icon_48 {
  display: inline-flex;
  justify-content: center;
  align-items: flex-end;
  width: 48px;
  height: 72px;
  background-position: center top;
}
.btn_group .icon_48.btn_vod { 
  width: 50px;
  white-space: nowrap;
}
.btn_zzim_lg { background-image: url('/imgs/icons/outline/48_heart.svg') }
.btn_zzim_lg.selected { background-image: url('/imgs/icons/fill/48_heart.svg') }
.btn_share { background-image: url('/imgs/icons/outline/48_share.svg') }
.btn_vod { background-image: url('/imgs/icons/outline/48_VOD.svg') }
.btn_group .btn_pay {
  width: 220px;
  background-color: transparent;
  border: 2px solid #f00;
  color: #f00;
}

.tab_list {
  display: flex;
  height: 56px;
  border-bottom: 1px solid #2f2f2f;
}
.detail_live .tab_list {
  margin: 0 50px 43px;
}
.tab_list {
  display: flex;
  height: 56px;
  border-bottom: 1px solid #2f2f2f;
}
.tab_list > li {
  padding: 14px 20px;
  font-size: 2.0rem;
  color: #666;
  cursor: pointer;
}
.tab_list > li.selected {
  border-bottom: 2px solid #f00;
  color: #dedede;
}





/* 시리즈 / 영화 상세뷰
   ========================================================================== */

.detail_vod .video_info {
  padding-right: 500px;
}
.detail_vod .wrap_meta {
  margin: 20px 0 40px; 
}
.detail_vod .wrap_desc p:nth-of-type(2) {
  margin: 8px 0;
}

.detail_vod .wrap_option {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.detail_vod .wrap_option .dropdown {
  margin-top: 40px;
}
.detail_vod .wrap_option .sort_by {
  display: flex;
  margin-top: 30px;
  font-size: 1.6rem;
  color: #666;
}
.detail_vod .wrap_option .sort_by span {
  cursor: pointer;
}
.detail_vod .wrap_option .sort_by span.selected {
  color: #dedede;
}
.detail_vod .wrap_option .sort_by > * + *{
  margin-left: 30px;
}

.detail_vod .wrap_iframe {
  position: relative;
}
.detail_vod .wrap_iframe .age_guide_wrap {
  position: absolute;
  z-index: 999;
  display: none;
  top: 0;
  left: 0;
  width: 100%;
  font-size: 18px;
  height: 150px;
  color: #fff;
  padding : 20px;
  background: linear-gradient(0deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.8) 100%);
}
.detail_vod .wrap_iframe .age_guide_wrap img {
  max-width: 44px;
  max-height: 44px;
}

.detail_vod .three_min_preview {
  position: absolute;
  left: .5%;
  bottom: 7.5%;
  text-align: center;
  line-height: 40px;
  width: 10%;
  height: 40px;
  font-size: 1.6rem;
  color: #fff;
  background-color: rgba(47, 47, 47, 0.7);
  opacity: 90%;
  z-index: 9999;
}

.detail_vod .skip_opening {
  position: absolute;
  right: .5%;
  bottom: 7.5%;
  width: 15%;
  height: 40px;
  font-size: 1.6rem;
  color: #fff;
  background-color: rgba(47, 47, 47, 0.7);
  opacity: 90%;
}

.auto_play span {
  position: relative;
  /* display: inline-flex;
  align-items: center; */
  padding-left: 56px;
  color: #fff;
  cursor: pointer;
}
.auto_play span::before,
.auto_play span::after {
  content: '';
  position: absolute;
}
.auto_play span::before {
  top: 4px; left: 2px;
  width: 20px; 
  height: 20px;
  border-radius: 50%;
  background-color: #dedede;
  z-index: 1;
  transition: left .5s;
}
.auto_play input[type="checkbox"]:checked + span::before {
  left: 22px;
}
.auto_play span::after {
  top: 2px; left: 0;
  width: 44px;
  height: 24px;
  border-radius: 18px;
  background-color: #666;
}
.auto_play input[type="checkbox"]:checked + span::after {
  background-color: #f00;
}


/* 영상 출력 영역 */
.l_grid {
  display: flex;
  flex-wrap: wrap;
  margin: 40px -10px 0;
}
.l_grid .vod_card {
  width: 50%;
  padding: 0 10px;
  margin-bottom: 40px;
}
.l_grid .vod_card > a {
  display: flex;
}
.l_grid .vod_card_img {
  flex-shrink: 0;
  position: relative;
  width: 218px;
  height: 124px;
  margin-right: 16px;
  border-radius: 4px;
  background: #000 no-repeat center / cover;
}
.l_grid .vod_card_img .preview_tag {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 10px; left: 10px;
  width: 40px;
  height: 20px;
  box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.2);
  background-color: #444;
  color: #fff;
}
.labels{
  position: absolute;
  z-index: 30;

}
.labels.label_top_right {
  top: 8px;
  right: 8px;
}
.labels .label_only_adult {
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  width: 86px;
  height: 18px;
  background-image: url("/imgs/labels/age_18.png");
  background-position: right;
  height: 22px;
}
.l_grid .vod_card_meta {
  margin-top: 6px;
  font-size: 1.4rem;
  color: #888;
}
.l_grid .vod_card_title {
  margin: 12px 0 16px;
  font-size: 1.6rem;
  color: #dedede;
}
.l_grid .vod_card_desc {
  font-size: 1.4rem;
  color: #666;
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}




/* 클립 상세뷰
   ========================================================================== */

.detail_clip .video_info {
  padding-right: 300px;
}


/* 실시간 상세뷰
   ========================================================================== */

.detail_vod.detail_live {
  padding: 40px 0 0;
}

.detail_live .wrap_iframe {
  display: flex;
  padding: 0 50px;
}
.detail_live iframe {
  flex-shrink: 0;
}
.detail_live .video_info {
  padding-left: 50px;
  padding-right: 250px;
  margin-right: 370px;
}
.detail_live .wrap_meta {
  margin-bottom: 0;
}
.detail_live .wrap_meta .time,.cp_grade {
  position: relative;
  margin-left: 16px;
  padding-left: 17px;
}
.detail_live .wrap_meta .time::after,.cp_grade::after {
  content: '';
  position: absolute;
  top: 8px; left: 0;
  width: 1px;
  height: 16px;
  background-color: #666;
}
.btn_calendar { background-image: url('/imgs/icons/outline/48_calendar.svg') }

.detail_live .wrap_card_grid {
  padding: 0 50px;
}

/* 채팅 */
.chat_position {
  position: relative;
}
.chat_container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: absolute;
  top: 0; right: 50px;
  flex: 1 0 300px;
  max-width: 300px;
  margin-left: 20px;
  border: solid 1px #2f2f2f;
}
.chat_notice {
  display: flex;
  position: absolute;
  top: 0; left: 0;
  z-index: 100;
  width: 100%;
  padding: 12px 14px 12px 16px;
  background-color: #212121;
}
.chat_notice > h6 {
  flex-shrink: 0;
  font-size: 1.6rem;
  line-height: 1.43;
  font-weight: 500;
  color: #dedede;
}
.chat_notice > p {
  margin-left: 8px;
  font-size: 1.4rem;
  line-height: 1.43;
  letter-spacing: -0.56px;
  color: #888;
}

.chat_gradient {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 200px;
  background-image: linear-gradient(to bottom, #141414 0%, rgba(20, 20, 20, 0) 100%);
}
.chat_list {
  flex-grow: 1;
  height: 411px;
  padding: 8px 20px;
  -ms-overflow-style: none; /* IE 스크롤바 hide 처리 */
  overflow-y: auto;
  background-image: linear-gradient(to bottom, #141414 0%, rgba(20, 20, 20, 0) 100%);
}
.chat_list::-webkit-scrollbar {
  display: none;
}
.chat_list > li {
  margin-top: 20px;
}
.chat_list > li:first-child {
  margin-top : 0;
}
.chat_nickname {
  font-size: 1.2rem;
  color: #888;
}
.chat_time {
  margin-left: 10px;
  font-size: 1.2rem;
  color: #666;
}
.chat_text {
  margin: 10px 0;
  font-size: 1.6rem;
  color: #dedede;
}
.chat_typing {
  display: flex;
  align-items: center;
  height: 70px;
  padding: 24px 30px;
  background-color: #212121;
}
.chat_typing .ipt_chat {
  border: 0;
  padding: 0 10px 0 0;
  outline: 0;
}
.chat_typing .btn_send { 
  background-image: url('/imgs/icons/outline/24_send.svg') 
}


/* 편성표 */
.next_broad > h5{
  display: flex;
  align-items: center;
  height: 54px;
  padding: 0 50px;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: -0.64px;
  color: #dedede;
}
.next_broad .broad_title {
  margin-left: 30px;
  color: #888;
}
.next_broad .broad_name {
  font-size: 2.0rem;
  color: #888;
}
.next_broad .broad_time {
  margin-top: 10px;
  font-size: 1.4rem;
  color: #666;
}
.next_broad .wrap_broad_slider {
  height: 182px;
  padding: 45px 50px 0;
  margin: 3px 0 26px;
  background-color: #212121;
}

.next_broad .broad_slider_items {
  position: relative;
  height: 104px;
  padding: 26px 68px 24px 20px;
  border: 1px solid #2f2f2f;
}
.next_broad .btn_alarm {
  position: absolute;
  top: 38px; right: 20px;
  background-image: url('/imgs/icons/outline/28_reservation.svg');
}
.next_broad .btn_alarm.active {
  background-image: url('/imgs/icons/outline/28_reservation_on.svg');
}
.next_broad .slick-prev {
  left: -48px;
  transform: translate(0, -60%) rotate(180deg);
}
.next_broad .slick-next {
  right: -48px;
  transform: translate(0, -60%);
}

/* 시청불가 안내 div */
.block_content {
  display: flex;
  background-color: #212121;
  justify-content: center;
  align-items: center;
  width: 860px;
  height: 483px;
}

.block_content_inner .block_content_desc {
  color: #fff;
  text-align: center;
}

.block_content_inner > h2 {
  font-size: 3.6rem;
  margin-bottom: 3.6rem;
}

.block_content_inner > p {
  font-size: 1.6rem;
  margin-bottom: .6rem
}