/* ------------------

read_say.css

--------------------- */

#read_say_wh {
    margin: 60px 0 105px;
}

/* say_header */
#say_header_10 {
    height: 70px;
    background-color: transparent;
    /* 수직중앙정렬----- */
    display: flex;
    align-items: center;
    /* ----------------- */
    color: #1f2937;
    padding: 0 15px;
}

#say_profile_photo_and_name_box_10 {
    display: flex;
    align-items: center;
    width: 50%;
}

#say_profile_photo_10 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    background-color: #efefef;
}

#name_10 {
    font-size: 13pt;
    margin-left: 10px;
    color: #1f2937;
}

#ellipsis_10 {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 70px;
    width: 50%;
}

/* say_content */
#say_content_10 {
    padding: 5px 20px 0 20px;
    background-color: transparent;
    word-break: break-all;
    font-size: 15pt;
    color: #1f2937;
}

/* say_photo */
#say_photo_bod_10 {
    position: relative;
    padding: 15px;
    background-color: transparent;
}

#protect_photo_10 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 777;
}

#say_photo_10 {
    width: 100%;
    display: block;
    border-radius: 16px;
}

/* say_footer */
.say_footer_10 {
    display: flex;
    align-items: center;
    background-color: transparent;
    border-bottom: 1px solid #efefef;
    height: 44px;
    margin: 0 0 10px 0;
    padding: 10px 15px 15px 15px;
}

.heart_and_reply_10 {
    display: flex;
    width: 50%;
    height: 100%;
    justify-content: flex-start;
    align-items: flex-end;
}

.heart_10 {
    margin: 0 0 0 4px;
    display: flex;
    align-items: flex-end;
}

.heart_10 > div, .reply_img_10 > div {
    width: 33px;
    height: 33px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18pt;
}

#heart_count_10 {
    font-size: 10pt;
    color: #9b9b9b;
}

.reply_img_10 {
    margin: 0 0 0 10px;
    display: flex;
    align-items: flex-end;
}

#reply_count_10 {
    font-size: 10pt;
    color: #9b9b9b;
}

.info_10 {
    display: flex;
    width: 50%;
    height: 100%;
    justify-content: flex-end;
    align-items: flex-end;
}

.info_10 div {
    font-size: 10pt;
}

.info_10 div:nth-child(2) {
    color: #c5434f;
    padding-left: 3px;
}

.info_10 div:nth-child(3) {
    padding-left: 10px;
}

.info_10 div:nth-child(4) {
    color: #849561;
    padding-left: 3px;
}

.reply_list_10 {
    width: 100%;
}

.reply_10 {
    display: flex;
    position: relative;
    border-radius: 16px;
    padding: 10px;
    background-color: #fde4ab;
    border: 2px solid #1f2937;
    margin: 10px 15px;
}

.red_light_10 {
    width: 10px;
    height: 10px;
    background: #ED0000;
    border-radius: 50%;
    position: absolute;
    top: 5px;
    left: 5px;
}

.reply_name_and_content_and_ellipsis_btn_and_status_box_10 {
    display: flex;
    align-items: center;
    width: 100%;
}

.reply_name_and_content_box_10 {
    width: 80%;
}

.reply_photo_10 {
    margin-right: 10px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    background-color: #efefef;
}

.reply_writer_name_10 {
    display: inline-block;
    padding: 0px 4px 2px 4px;
    font-size: 10pt;
    margin: 0 0 4px 0;
    background-color: #2e2f2a;
    color: #FFFFFF;
    border-radius: 7px;
}

.reply_content_10 {
    word-break: break-all;
    font-size: 13pt;
    color: #1f2937;
}

.reply_ellipsis_btn_and_status_box_10 {
    position: relative;
    width: 20%;
    height: 100%;
}

.reply_ellipsis_btn_10 {
    position: absolute;
    right: 0;
    top: 4px;
}

.reply_status_box_10 {
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.reply_status_10 {
    color: #849561;
    font-size: 9pt;
}

/* 댓글입력 */
#write_reply_box_10 {
    position: fixed;
    display: flex;
    align-items: center;
    left: 50%;
    transform: translateX(-50%);
    right: 0;
    bottom: 20px;
    width: 85%;
    max-width: 500px;
    height: 65px;
    min-height: 65px;
    padding: 0 16px;
    border-radius: 100px;

    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

#my_profile_photo_box_10 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 50px;
}

#my_profile_photo_10 {
    width: 33px;
    height: 33px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
}

#reply_textarea_box_10 {
    min-height: 40px;
    margin: 5px 5px;
}

#reply_border_box_10 {
    display: flex;
    min-height: 18px;
    padding: 10px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

#reply_textarea_10 {
    font-size: 13pt;
    line-height: 18px;
    width: 100%;
    height: 18px;
    padding: 0;
    margin: 0;
    border: none;
    resize: none;
    background: transparent;
    color: #1f2937;
}

#write_reply_btn_10 {
    display: block;
    width: 44px;
    height: 50px;
    color: #666;
    font-size: 13pt;
    line-height: 50px;
    text-align: center;
}