/* profile detail container */
.profile__container {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 40px;
}

.profile__container .info__box {
  display: flex;
  flex-direction: row;
  padding-top: 60px;
}

.profile__container .info__box .image__box {
  flex: 1;
  display: flex;
  justify-content: flex-start;
  max-width: 260px;
}
.profile__container .info__box .image__box .profile__img {
  width: 210px;
  height: 210px;
  border-radius: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.profile__container .info__box .image__box img {
  width: 210px;
  height: 210px;
  border-radius: 50%;
}

.profile__container .info__box .caption__box {
  flex: 2;
  display: flex;
  flex-direction: column;
  position: relative;
  font-family: 'Nanum Gothic Coding', monospace;
  padding-left: 0px;
  min-width: 0;
}

.profile__container .info__box .caption__box .caption__header {
  width: 100%;
  display: flex;
  align-items: center;
}

.profile__container .info__box .caption__box .caption__header h1 {
  font-family: inherit;
  align-items: center;
  font-size: 26px;
  height: 30px;
  line-height: 30px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.profile__container .info__box .caption__box .caption__header .like__btn {
  display: flex;
  height: 40px;
  width: 40px;
  align-items: flex-start;
  justify-content: flex-end;
}

.profile__container .info__box .caption__box .caption__header .like__btn .like__img {
  cursor: pointer;
  width: 40px;
  height: 40px;
  background: url(/assets/cm/images/ico/icon_like_basic.png);
  background-size: 40px 40px;
  background-repeat: no-repeat;
  text-indent: -999em;
}

.profile__container .info__box .caption__box .caption__header .like__btn .like__img.active {
  background: url(/assets/cm/images/ico/icon_like_mint.png);
  background-size: 40px 40px;
  background-repeat: no-repeat;
}

.profile__container .info__box .caption__box .info__list {
  display: flex;
  width: 330px;
  height: 60px;
}
.profile__container .info__box .caption__box .info__list li {
  flex: 1;
  display: flex;
  align-items: center;
  height: inherit;
}

.profile__container .info__box .caption__box .info__list li span {
  font-size: 16px;
  font-family: 'Nanum Gothic Coding', monospace;
  line-height: 30px;
  color: #5c5c5c;
}

.profile__container .info__box .caption__box .info__list li em {
  font-style: normal;
  font-weight: bold;
  margin-left: 6px;
  color: #262626;
  font-style: normal;
  font-weight: bold;
  font-size: 18px;
  line-height: 18px;
  margin-left: 6px;
  color: #262626;
  height: 18px;
}

.profile__container .info__box .caption__box .intro__box {
  font-size: 16px;
}
.profile__container .info__box .caption__box .intro__box a {
  color: #1679c5;
  font-weight: bold;
}

.profile__container .m_intro__box {
  display: none;
  font-size: 14px;
}
.profile__container .m_intro__box a {
  color: #003569;
  font-weight: bold;
}

.video__container {
  margin-top: 20px;
  display: flex;
  width: 100%;
}

.video__container .item__box {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

/* common youtube*/
.thumbnail__overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  display: flex;
  flex-direction: column;
  height: 210px;
}

.thumbnail__overlay .thumbnail__img {
  width: 100%;
  height: 100%;
  position: absolute;
}

.thumbnail__overlay .info__box {
  height: 40px;
  width: 100%;
  display: flex;
  background: linear-gradient(to bottom, #949292, #00000000);
  align-items: center;
  padding-top: 10px;
  z-index: 100;
}
.thumbnail__overlay .info__box div {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: solid 1px transparent;
  overflow: hidden;
  box-sizing: border-box;
  margin: 0px 5px;
}

.thumbnail__overlay .info__box div img {
  width: 100%;
  height: 100%;
}

.thumbnail__overlay .info__box span {
  flex: 1;
  display: inline-block;
  align-items: center;
  color: #fff;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 14px;
}

.thumbnail__overlay .play__box {
  z-index: 100;
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.thumbnail__overlay .play__btn {
  text-indent: -999em;
  width: 45px;
  height: 31px;
  background-image: url(/assets/cm/images/base/youtube_social_icon_red.png);
  background-size: 45px 31px;
}

/* celeb component */
.celeb__item {
  display: flex;
  flex-direction: row;
  flex-grow: 1;
  width: 25%;
  height: auto;
  align-items: flex-start;
  margin-top: 30px;
  justify-content: center;
  max-width: 25%;
}

.celeb__item .celebSwiper__container {
  width: 100%;
  height: auto;
  position: relative;
  display: flex;
}
.celeb__item .profile__box {
  cursor: pointer;
  width: 210px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.celeb__item .celeb__img {
  width: 210px;
  height: 210px;
  border-radius: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.celeb__item .celeb__img.like {
  border-radius: 0;
}

.celeb__item .celeb__info {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
}

.celeb__item .celeb__info .name {
  font-weight: bold;
  font-size: 18px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  max-width: 100%;
  line-height: 20px;
  height: 20px;
  -webkit-line-clamp: 1;
}

.celeb__item .celeb__info .subscriber {
  color: #ccc;
  font-size: 15px;
  margin-top: 5px;
}

.celeb__item .celeb__info .subscriber::before {
  content: '구독자';
  margin-right: 5px;
}
.celeb__item .celeb__info .subscriber::after {
  content: '명';
  margin-left: -1px;
}

.celeb__item .celeb__info .like {
  color: #6f6f6f;
  font-size: 15px;
  height: 40px;
  position: relative;
  display: flex;
  align-items: center;
  padding-right: 10px;
}
.celeb__item .celeb__info .like::before {
  content: '';
  left: 0px;
  width: 40px;
  height: 40px;
  background: url(/assets/cm/images/ico/icon_like_mint.png);
  background-size: 40px 40px;
  background-repeat: no-repeat;
}

.celeb__item .video__box {
  flex: 1;
  display: flex;
  flex-direction: row;
}

/* search */
.celeb__item.search .celeb__info {
  overflow: hidden;
}

.celeb__item.search .celeb__info .name {
}

.celeb__item .celeb__info .intro {
  margin-top: 5px;
  opacity: 0.6;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: normal;
  width: 100%;
  line-height: 20px;
  max-height: 40px;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-align: center;
}

/* like  */
.celeb__item.like {
  width: 25%;
  max-width: 25%;
  position: relative;
}

.celeb__item.like .profile__box {
  width: 170px;
}

.celeb__item.like .profile__box input[type='checkbox'] {
  position: absolute;
  top: 0;
  left: 0;
  width: 25px;
  height: 25px;
}

.celeb__item.like .profile__box input[type='checkbox']::after {
  width: 25px;
  height: 25px;
}
.celeb__item.like .celeb__img {
  width: 170px;
  height: 170px;
}
.celeb__item.like .celeb__info {
  overflow: hidden;
}

.celeb__item.like .celeb__info .intro {
  margin-top: 5px;
  opacity: 0.6;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: normal;
  width: 100%;
  line-height: 20px;
  max-height: 40px;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-align: center;
}

.celeb__item.like .action__box {
  display: none;
}

.celeb__item.like .action__box .like__btn {
  cursor: pointer;
  width: 40px;
  height: 40px;
  background: url(/assets/cm/images/ico/icon_like_basic.png);
  background-size: 40px 40px;
  background-repeat: no-repeat;
  text-indent: -999em;
  opacity: 0.6;
}

.celeb__item.like .action__box .like__btn.active {
  background: url(/assets/cm/images/ico/icon_like_mint.png);
  background-size: 40px 40px;
  background-repeat: no-repeat;
}

@media (min-width: 320px) and (max-width: 480px) {
  /* cleb pofile container */
  .profile__container {
    width: 100%;
    margin-bottom: 20px;
  }

  .profile__container .info__box {
    padding-top: 20px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .profile__container .info__box .image__box {
    min-width: 130px;
  }
  .profile__container .info__box .image__box .profile__img {
    width: 130px;
    height: 130px;
    border-radius: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .profile__container .info__box .image__box img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
  }
  .profile__container .info__box .caption__box {
    padding-left: 10px;
    justify-content: center;
  }

  .profile__container .info__box .caption__box .caption__header {
    justify-content: center;
  }
  .profile__container .info__box .caption__box .caption__header h1 {
    font-size: 24px;
  }

  .profile__container .info__box .caption__box .info__list {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: auto;
    margin-top: 15px;
  }
  .profile__container .info__box .caption__box .info__list li {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .profile__container .info__box .caption__box .info__list li span {
    font-size: 14px;
    line-height: 20px;
    color: #999;
  }

  .profile__container .info__box .caption__box .info__list li em {
    font-size: 14px;
    line-height: 14px;
    height: 14px;
    margin: 0px;
    margin-top: 2px;
  }

  .profile__container .info__box .caption__box .intro__box {
    display: none;
  }
  .profile__container .m_intro__box {
    display: flex;
    padding: 0px 15px;
    margin-bottom: 20px;
    margin-top: 15px;
    flex-direction: column;
  }

  /* celeb component */
  .celeb__item {
    width: 50%;
    margin-top: 0px;
    padding: 10px 0px 10px 0px;
    max-width: 100%;
  }

  .celeb__item.search:first-child {
    margin-top: 0px;
  }

  .celeb__item:last-child {
    border-bottom: none;
  }
  .celeb__item .celebSwiper__container .swiper-wrapper .swiper-slide {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .celeb__item .video__box {
    height: 210px;
    max-height: 210px;
  }

  .celeb__item .profile__box {
    margin-top: 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .celeb__item.like .profile__box {
    margin-top: 0px;
  }

  .celeb__item.like .profile__box input[type='checkbox'] {
    display: none;
  }

  .celeb__item .celeb__img {
    width: 130px;
    height: 130px;
    border-radius: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .celeb__item .celeb__info .name {
    font-weight: bold;
    font-size: 16px;
  }

  .celeb__item .celeb__info .subscriber {
    font-size: 14px;
  }

  .celeb__item .videoCaption__box {
    padding: 0px 2px 0px 12px;
    height: 60px;
    width: 100%;
    display: flex;
    box-sizing: border-box;
    align-items: center;
  }

  .celeb__item .videoCaption__box .celeb__img {
    width: 40px;
    height: 40px;
    background-size: 40px 40px;
  }

  .celeb__item .videoCaption__box .celeb__info {
    margin-top: 0px;
    align-items: flex-start;
    padding-left: 15px;
  }

  .celeb__item .videoCaption__box .celeb__info .name {
    font-weight: bold;
    font-size: 14px;
  }

  .celeb__item .videoCaption__box .celeb__info .subscriber {
    color: #ccc;
    font-size: 14px;
    margin: 0px;
  }

  .celeb__item .videoCaption__box .like__box {
    display: flex;
    height: 40px;
    width: 40px;
    align-items: flex-start;
    justify-content: flex-end;
  }

  .celeb__item .videoCaption__box .like__box .like__img {
    cursor: pointer;
    width: 40px;
    height: 40px;
    background: url(/assets/cm/images/ico/icon_like_basic.png);
    background-size: 40px 40px;
    background-repeat: no-repeat;
    opacity: 0.7;
  }

  .celeb__item .videoCaption__box .like__box .like__img.active {
    background: url(/assets/cm/images/ico/icon_like_mint.png);
    background-size: 40px 40px;
    background-repeat: no-repeat;
    opacity: 1;
  }
  .celeb__item .celeb__swiper__pagination {
    text-align: center !important;
    position: absolute !important;
    z-index: 10 !important;
    bottom: -30px !important;
  }

  .celeb__item .swiper-pagination-bullet {
    width: 24px;
    height: 24px;
    background: url(/assets/cm/images/ico/icon_img_basic.png);
    background-size: 24px 24px;
    background-repeat: no-repeat;
    border-radius: 0px !important;
    opacity: 0.2 !important;
  }

  .celeb__item .swiper-pagination-bullet.swiper-pagination-bullet-active {
    opacity: 1 !important;
    background: url(/assets/cm/images/ico/icon_img_mint.png);
    background-size: 24px 24px;
  }

  .celeb__item .swiper-pagination-bullet.video {
    background: url(/assets/cm/images/ico/icon_video_basic.png);
    background-size: 24px 24px;
    background-repeat: no-repeat;
  }

  .celeb__item .swiper-pagination-bullet.video.swiper-pagination-bullet-active {
    background: url(/assets/cm/images/ico/icon_video_mint.png);
    background-size: 24px 24px;
  }

  /* search */
  .celeb__item.search {
    border-bottom: solid 1px #efefef;
    padding: 10px 0px;
  }

  .celeb__item.search:last-child {
    border-bottom: none;
  }
  .celeb__item.search .profile__box {
    flex-direction: row;
    width: 100%;
    padding: 0px 12px;
    margin-top: 0px;
  }
  .celeb__item.search .celeb__img {
    width: 60px;
    height: 60px;
  }
  .celeb__item.search .celeb__info {
    margin-top: 0px;
    align-items: flex-start;
    margin-left: 10px;
    justify-content: center;
  }
  .celeb__item .celeb__info .intro {
    margin-top: 0px;
    opacity: 0.6;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: normal;
    width: 100%;
    line-height: 20px;
    max-height: 20px;
    -webkit-line-clamp: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    margin-top: 5px;
    text-align: left;
  }

  /* like */
  .like-celeb__list {
    flex-wrap: none;
  }

  .celeb__item.like {
    border-bottom: solid 1px #efefef;
    padding: 10px 0px;
    width: 100%;
    max-width: 100%;
  }
  .celeb__item.like:first-child {
    margin-top: 0px;
  }
  .celeb__item.like:last-child {
    border-bottom: none;
  }
  .celeb__item.like .profile__box {
    flex-direction: row;
    width: 100%;
    padding: 0px 12px;
    align-items: center;
  }
  .celeb__item.like .celeb__img {
    width: 60px;
    height: 60px;
  }
  .celeb__item.like .celeb__info {
    margin-top: 0px;
    align-items: flex-start;
    margin-left: 10px;
    justify-content: center;
  }
  .celeb__item.like .celeb__info .intro {
    margin-top: 0px;
    opacity: 0.6;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: normal;
    width: 100%;
    line-height: 20px;
    max-height: 20px;
    -webkit-line-clamp: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    margin-top: 5px;
    text-align: left;
  }

  .celeb__item.like .action__box {
    position: relative;
    display: flex;
    height: 100%;
    width: 40px;
    align-items: flex-start;
    justify-content: flex-end;
    margin-right: -10px;
  }
  .celeb__item .celeb__img.like {
    border-radius: 100%;
  }
}
