
.comment_send {
    background-image: url(../images/wb_icon.svg);
}
.comment_screen {
    width: 100%;
    height: calc(100% - 10px);
    overflow-y: auto;
    padding: 0 13px 10px;
    box-sizing: border-box;
}
.comment_screen::-webkit-scrollbar { width: 5px; background-color: #eee; }
.comment_screen::-webkit-scrollbar-thumb { background-color: #666; border-radius: 10px; background-clip: padding-box; border: 0px solid transparent; }
.comment_screen::-webkit-scrollbar-track  { background-color: #000; }
.comment_screen > .comment_list > li {
    margin-bottom: 10px;
}
.comment_list {
    width: 100%;
    height: auto;
}
.comment_list li {
    height: auto;
    padding: 10px;
    font-size: 15px;
    position: relative;
    background: #2c3033;
}
.info_cont {
    height: calc(100% - 190px);
}

.comment_cont .comment_btn.off {
    background-image: url(../images/wb_icon.svg);
}
.comment_face {
    display: block;
    width: 30px;
    height: 30px;
    background: url(../images/video_icon_infoface.svg);
    float: left;
    cursor: default;
}
.comment_id {
    color: #999;
    padding: 0 10px;
    display: inline-block;
    height: 30px;
    width: calc(100% - 30px);
    box-sizing: border-box;
    line-height: 30px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.comment_txt {
    color: rgb(211, 211, 211);
    padding: 5px;
}
.comment_date {
    font-size: 13px;
    color: #666;
    padding: 0 5px;
}
.reply_write {
    color: #999;
    font-size: 13px;
    padding: 0 20px 0 10px;
    float: right;
    background: url(../images/video_pen.svg) no-repeat right center;
}
.comment_list input {
    border: 0;
    outline: none;
    color: #999;
}
.reply_write_box {
    border-top: 1px dashed #444;
    margin-top: 10px;
    display: none;
}
.reply_write_box.on {
    display: block;
}
.replay_write3 {
    background: rgba(0,0,0,0.5);
    height: 40px;
    border-radius: 30px;
    margin: 10px 0 0;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
    color: #eee;
}
.replay_write4 {
    text-align: right;
    position: relative;
    width: 100%;
}
.secret_comment {
    position: absolute;
    left: 0;
    top: -2px;
    height: 30px;
}
.secret_comment > input {
    line-height: 30px;
    height: 30px;
    margin-right: 5px;
}
.secret_txt {
    color: #999;
    font-size: 13px;
    position: relative;
    top: -9px;
}
.replay_write4 > input {
    background: transparent;
    cursor: pointer;
    height: 30px;
    border: 0;
    outline: none;
    color: #999;
}
.replay_write4 > input:last-child {
    border-radius: 3px;
    transition: .3s;
}


@media (hover:hover) {
    .replay_write4 input:hover {
        color: #12a9ff;
    }
}

.reply_read {
    font-size: 13px;
    color: #12a9ff;
    display: block;
    padding: 0 5px;
    line-height: 30px;
}
.read {
    position: relative;
}
.read:before {
    content: '보기';
    padding-right: 10px;
}
.read.on:before {
    content: '숨기기';
}
.read:after {
    content: '';
    width: 3px; /* 사이즈 */
    height: 3px; /* 사이즈 */
    border-top: 1px solid #12a9ff; /* 선 두께 */
    border-right: 1px solid #12a9ff; /* 선 두께 */
    display: inline-block;
    transform: rotate(135deg); /* 각도 */
    position: absolute;
    top: 7px; /* 기본 0px 값으로 해주세요 */
    right: 0px; /* 기본 0px 값으로 해주세요 */
}
.read.on:after {
    transform: rotate(315deg); /* 각도 */
    top: 7px; /* 기본 0px 값으로 해주세요 */
}
.reply_reply {
    display: none;
}
.reply_reply.on {
    display: block;
}
.comment_list > li > .reply_read_box > .reply_reply > .reply_reply_list > li {
    border-bottom: 1px dashed #444;
    margin: 0;
}

.chat_window {
    padding: 10px;
}


/* 댓글 쓰기 */
.comment_window {
    width: 100%;
    height: 130px;
    padding: 0 13px;
    box-sizing: border-box;    
}
.comment_box {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
}
.nickname_title {
    font-size: 14px;
    color: #999;
    width: 100%;
    padding-left: 30px;
    box-sizing: border-box;
    display: inline-block;
    position: relative;
    line-height: 24px;
    height: 24px;
}
.nickname_title:before {
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    background: #ccc url(../images/icon_name.svg) no-repeat center/70%;
    border-radius: 50%;
    position: absolute;
    left: 0;
}
#nickname {
    border: 0;
    outline: none;
    height: 30px;
    padding: 0 10px;
    box-sizing: border-box;
    border-bottom: 1px solid #444;
    background: none;
    width: calc(100% - 80px);
    color: #eee;
}

.comment {
    margin: 10px 0;
}

.comment_box .replay_write3 {
    border: 0;
    outline: none;
}