@charset "UTF-8";

/* card_container
   ========================================================================== */

/* slider > *_card_slider.html */
.wrap_card_slider {
  margin-bottom: 30px;
}
.card_head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 6px 5px 3px 0;
  margin: 0 0 14px -10px;
}
.card_head h3 {
  font-size: 2.4rem;
  color: #fff;
}
.card_head .more_card {
  font-size: 1.4rem;
  color: #888;
}
.card_slider {
  margin: 0 -11px;
}
.event_banner_slider {
  margin-top: 50px;
}
.notice_banner_slider {
  color: #ddd;
  height: 50px;
  font-size: 1.6rem;
  background-color: #262626;
  display: flex;
  overflow: hidden;
  border-radius: 4px;
  align-items: center;
}
.notice_banner_slider .notice_banner {
  margin : 20px;
}
.notice_banner_slider .notice_banner a {
  display: block;
}

/* grid > *_card_grid.html */
.card_grid {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -11px;
}
.card_grid .poster_card {
  width: 20%;
  margin-bottom: 60px;
}
.card_grid .channel_card {
  width: 25%;
  margin-bottom: 60px;
}
.card_grid .clip_card {
  width: 25%;
  margin-bottom: 60px;
}
.card_grid .episode_card {
  width: 50%;
  margin-bottom: 60px;
}

/* card (poster_card / channel_card / clip_card / episode_card / event_banner)
   ========================================================================== */

/* poster_card.html */
.poster_card {
  padding: 0 11px;
}
.poster_card_img {
  height: 310px;
  border-radius: 4px;
  background: #000 no-repeat center / cover;
  position: relative;
  text-align: center;
  font-size: 30px;
  color: white;
  width: 219px;
  line-height: 1.5;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
}
.poster_card_img .labels{
  position: absolute;
  z-index: 30;
}
.poster_card_img .label_top_left {
  top : 8px;
  left: 8px;
}
.poster_card_img .label_top_right {
  top: 8px;
  right: 8px;
}
.poster_card_img .label_bottom {
  left: 50%;
  bottom: 2px;
  transform: translateX(-50%);
}
.labels span {
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  width: 86px;
  height: 18px;
  margin-bottom: 5px;
}
.labels .label_new {
  background-image: url("/imgs/labels/new.png");
}
.labels .label_fast {
  background-image: url("/imgs/labels/label_fast.png");
}
.labels .label_single {
  background-image: url("/imgs/labels/Individual.png");
}
.labels .label_only_adult {
  background-image: url("/imgs/labels/age_18.png");
  background-position: right;
  height: 22px;
}
.labels .label_first {
  background-image: url("/imgs/labels/moa_first_update.png");
  background-position: center;
  width: 120px;
  height: 18px;
}
.labels .label_exclusive {
  background-image: url("/imgs/labels/moa_exclusive_update.png");
  background-position: center;
  width: 120px;
  height: 18px;
}


.card_slider .poster_card_img,
.card_slider .clip_card_img {
  opacity: 0;
}
.slick-initialized .poster_card_img,
.slick-initialized .clip_card_img {
  opacity: 1;
}
.poster_card_title {
  font-size: 1.4rem;
  margin-top: 16px;
  color: #dedede;
}
.poster_card_title.ranking {
  display: flex;
  align-items: flex-end;
  position: relative;
  height: 52px;
  padding-left: 65px;
  margin-top: -20px;
}
.poster_card_title.ranking::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 80px;
  height: 52px;
  z-index: 31;
  background-repeat: no-repeat;
  background-position: left bottom;
}
.poster_card_title.ranking10 {
  padding-left: 90px;
}
.poster_card_title.ranking1::after {
  background-image: url("/imgs/numbers/number1.svg");
}
.poster_card_title.ranking2::after {
  background-image: url("/imgs/numbers/number2.svg");
}
.poster_card_title.ranking3::after {
  background-image: url("/imgs/numbers/number3.svg");
}
.poster_card_title.ranking4::after {
  background-image: url("/imgs/numbers/number4.svg");
}
.poster_card_title.ranking5::after {
  background-image: url("/imgs/numbers/number5.svg");
}
.poster_card_title.ranking6::after {
  background-image: url("/imgs/numbers/number6.svg");
}
.poster_card_title.ranking7::after {
  background-image: url("/imgs/numbers/number7.svg");
}
.poster_card_title.ranking8::after {
  background-image: url("/imgs/numbers/number8.svg");
}
.poster_card_title.ranking9::after {
  background-image: url("/imgs/numbers/number9.svg");
}
.poster_card_title.ranking10::after {
  background-image: url("/imgs/numbers/number10.svg");
}

/* channel_card.html */
.channel_card {
  padding: 0 11px;
}
.channel_card_img {
  height: 150px;
  border-radius: 4px;
  background: #000 no-repeat center / cover;
}
.channel_about {
  display: flex;
  margin-top: 16px;
}
.channel_brand_img {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #000 no-repeat center / cover;
}
.channel_card_info {
  width: calc(100% - 40px);
  margin-left: 8px;
}
.channel_card_info .channel_name {
  color: #888;
  font-size: 1.2rem;
}
.channel_card_info .broad_title {
  margin-top: 5px;
  color: #dedede;
  font-size: 1.4rem;
}

/* clip_card */
.clip_card {
  padding: 0 11px;
}
.clip_card_img {
  height: 150px;
  border-radius: 4px;
  background: #000 no-repeat center / cover;
  position: relative;
}
.clip_card_info {
  margin-top: 16px;
}
.toggle_zzim {
  display: flex;
  justify-content: space-between;
}
.clip_card_title {
  font-size: 1.4rem;
  color: #dedede;
}
.btn_zzim {
  flex-shrink: 0;
  margin-left: 30px;
  background-image: url("/imgs/icons/outline/24_heart.svg");
}
.btn_zzim.selected {
  background-image: url("/imgs/icons/fill/24_heart.svg");
}

.clip_title {
  margin-top: 8px;
  color: #888;
  font-size: 1.4rem;
}

/* event_banner.html */

.event_banner {
  padding: 0 11px;
}
.event_banner_img {
  height: 136px;
  border-radius: 4px;
  background: #000 no-repeat center / cover;
}

/* episode_card */
.episode_card {
  padding: 0 11px;
}
.episode_card_inner {
  display: flex;
}
.episode_card_img {
  width: 300px;
  height: 150px;
  border-radius: 4px;
  background: #000 no-repeat center / cover;
}
.episode_card_info {
  margin-left: 20px;
  color: #dedede;
}

/* 편성표 */
.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: 1.5rem;
  color: #888;
}
.next_broad .broad_time {
  margin-top: 16px;
  font-size: 1.2rem;
  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 50px 24px 20px;
  border: 1px solid #2f2f2f;
}
.next_broad .btn_alarm {
  position: absolute;
  top: 38px; right: 14px;
  width: 24px;
  height: 24px;
  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%);
}

.live_card_wrapper {
  display: flex;
  width: 100%;
  align-items: center;
  gap : 10px;
  margin-bottom : 20px;
}

.live_card_wrapper a{
  min-width: 280px;
}

.live_card_wrapper .next_broad {
  max-width: 75%;
  width : 75%;
  min-width: 75%;
}
