.sub[name="comment"] {
    width: 100%;
    height: 100%;
    background-color: rgb(255 255 255 / 30%);
    position: fixed;
    top: 0;
    left: 0;
    transition: transform 0.1s ease-in-out;
    transform: translateY(100%);
}

.sub[name="comment"] .sub_child {
    width: 100%;
    height: calc(80% - 50px);
    padding: 50px 0 0px 0;
    display: flex;
    flex-direction: column;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #ffffff;
    transition: all 0.1s ease-in-out;
    overflow: auto;
    align-items: center;
    z-index: 1;
}

.sub[name="comment"] .sub_child .header_bar {
    padding: 0 0 0 10px;
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 0;
    left: 0;
}

.sub[name="comment"] .sub_child .header_bar .text {
    font-size: 20px;
    font-weight: bold;
    margin: 0px;
    display: flex;
    flex-direction: column;
}

.sub[name="comment"] .sub_child .header_bar .text span {
    font-size: 14px;
    font-weight: normal;
    color: #787878;
}

.sub[name="comment"] .sub_child .header_bar .close {
    padding: 10px 10px 10px 20px;
    cursor: pointer;
}

.sub[name="comment"] .sub_child[name="main"]>.content {
    width: -webkit-fill-available;
    height: -webkit-fill-available;
    margin: 0;
    padding: 20px 5px 20px 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 10px;
    overflow: auto;
}

.sub[name="comment"] .sub_child[name="main"]>.content .child {
    width: -webkit-fill-available;
    height: fit-content;
    padding: 0;
    display: flex;
    flex-direction: column;
    font-size: 16px;
}

.sub[name="comment"] .sub_child[name="main"]>.content .child>.row1 {
    width: -webkit-fill-available;
    height: fit-content;
    display: flex;
    flex-direction: row;
}

.sub[name="comment"] .sub_child[name="main"]>.content .child>.row1>.col1 {
    min-width: 45px;
    position: relative;
}

.sub[name="comment"] .sub_child[name="main"]>.content .child>.row1>.col1 .picture {
    width: 40px;
    height: 40px;
    border-radius: 20px;
    background: white;
    position: absolute;
}

.sub[name="comment"] .sub_child[name="main"]>.content .child[loading="true"]>.row1>.col1 .picture {
    background: #F2F2F7;
    overflow: hidden;
    position: relative;
    z-index: 0;
}

.sub[name="comment"] .sub_child[name="main"]>.content .child[loading="true"]>.row1>.col1 .picture::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 150%;
    height: 100%;
    background: linear-gradient(90deg in hsl shorter hue, #F2F2F7, #ffffff, #F2F2F7);
    animation: shimmer 1.5s infinite;
}

.sub[name="comment"] .sub_child[name="main"]>.content .child>.row1>.col1 .picture img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
}

.sub[name="comment"] .sub_child[name="main"]>.content .child[loading="true"]>.row1>.col1 .picture img {
    display: none;
}

.sub[name="comment"] .sub_child[name="main"]>.content .child>.row1>.col1 .line {
    display: none;
}

.sub[name="comment"] .sub_child[name="main"]>.content .child[reply="true"]>.row1>.col1 .line {
    display: block;
    width: -webkit-fill-available;
    height: 100%;
    margin: 0 0 0 40%;
    border: solid #D1D1D6;
    border-width: 0 0 0 2px;
}

.sub[name="comment"] .sub_child[name="main"]>.content .child[loading="true"]>.row1>.col1 .line {
    display: none;
}

.sub[name="comment"] .sub_child[name="main"]>.content .child>.row1>.col2 {
    width: -webkit-fill-available;
    height: fit-content;
    display: flex;
    flex-direction: column;
}

.sub[name="comment"] .sub_child[name="main"]>.content .child>.row1>.col2>.row1 {
    width: fit-content;
    height: fit-content;
    padding: 10px;
    border-radius: 10px;
    background-color: #F2F2F7;
}

.sub[name="comment"] .sub_child[name="main"]>.content .child[loading="true"]>.row1>.col2>.row1 {
    width: 80%;
    height: 30px;
    background: #F2F2F7;
    overflow: hidden;
    position: relative;
    z-index: 0;
}

.sub[name="comment"] .sub_child[name="main"]>.content .child[loading="true"]>.row1>.col2>.row1::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 150%;
    height: 100%;
    background: linear-gradient(90deg in hsl shorter hue, #F2F2F7, #ffffff, #F2F2F7);
    animation: shimmer 1.5s infinite;
}

.sub[name="comment"] .sub_child[name="main"]>.content .child>.row1>.col2>.row1>.name {
    font-weight: bold;
    margin: 0 0 5px 0;
}

.sub[name="comment"] .sub_child[name="main"]>.content .child[loading="true"]>.row1>.col2>.row1>.name {
    display: none;
}

.sub[name="comment"] .sub_child[name="main"]>.content .child>.row1>.col2>.row1>.comment {
    width: -webkit-fill-available;
    white-space: pre-wrap;
}

.sub[name="comment"] .sub_child[name="main"]>.content .child>.row1>.col2>.row1>.comment span {
    font-weight: bold;
}

.sub[name="comment"] .sub_child[name="main"]>.content .child[loading="true"]>.row1>.col2>.row1>.comment {
    display: none;
}

.sub[name="comment"] .sub_child[name="main"]>.content .child>.row1>.col2>.row2 {
    width: -webkit-fill-available;
    height: fit-content;
    margin: 5px 0 0 10px;
    display: flex;
    column-gap: 20px;
}

.sub[name="comment"] .sub_child[name="main"]>.content .child[loading="true"]>.row1>.col2>.row2 {
    display: none;
}

.sub[name="comment"] .sub_child[name="main"]>.content .child>.row1>.col2>.row2>.time {
    font-size: 14px;
    color: #3c3c44cc;
}

.sub[name="comment"] .sub_child[name="main"]>.content .child>.row1>.col2>.row2>button[name="reply"] {
    cursor: pointer;
    border: none;
    background: transparent;
    font-size: 14px;
    font-weight: bold;
    color: #3c3c44cc;
}

.sub[name="comment"] .sub_child[name="main"]>.content .child>.row3 {
    display: none;
}

.sub[name="comment"] .sub_child[name="main"]>.content .child[reply="true"]>.row3 {
    width: -webkit-fill-available;
    height: fit-content;
    display: flex;
    flex-direction: row;
}

.sub[name="comment"] .sub_child[name="main"]>.content .child[loading="true"]>.row3 {
    display: none;
}

.sub[name="comment"] .sub_child[name="main"]>.content .child>.row3>.col1 {
    min-width: 45px;
}

.sub[name="comment"] .sub_child[name="main"]>.content .child>.row3>.col1 .line {
    width: -webkit-fill-available;
    height: 70%;
    margin: 0 0 0 40%;
    border: solid #D1D1D6;
    border-width: 0 0 2px 2px;
    border-radius: 0 0 0 10px;
}

.sub[name="comment"] .sub_child[name="main"]>.content .child>.row3>.col2 {
    width: -webkit-fill-available;
    height: fit-content;
    display: flex;
    flex-direction: column;
}

.sub[name="comment"] .sub_child[name="main"]>.content .child>.row3>.col2>button[name="more"] {
    width: fit-content;
    height: fit-content;
    margin: 10px 0 0 5px;
    color: #3c3c44cc;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    border: none;
    background-color: white;
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: 5px;
}

.sub[name="comment"] .sub_child[name="main"]>.content .child>.row3>.col2>button[name="more"] span {
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    position: relative;
    animation: loader_rotate 1s linear infinite;
}

.sub[name="comment"] .sub_child[name="main"]>.content .child>.row3>.col2>button[name="more"] span::before {
    content: "";
    box-sizing: border-box;
    position: absolute;
    inset: 0px;
    border-radius: 50%;
    border: 2px solid black;
    animation: loader_prixClipFix 1s linear infinite;
}

.sub[name="comment"] .sub_child[name="main"]>.content .child>.row2 {
    display: none;
}

.sub[name="comment"] .sub_child[name="main"]>.content .child[reply="true"]>.row2 {
    display: block;
    width: -webkit-fill-available;
    height: fit-content;
}

.sub[name="comment"] .sub_child[name="main"]>.content .child[loading="true"]>.row2 {
    display: none;
}

.sub[name="comment"] .sub_child[name="main"]>.content .child>.row2>.reply {
    width: -webkit-fill-available;
    height: fit-content;
    display: flex;
    flex-direction: row;
}

.sub[name="comment"] .sub_child[name="main"]>.content .child>.row2>.reply>.col1 {
    width: 50px;
}

.sub[name="comment"] .sub_child[name="main"]>.content .child>.row2>.reply>.col1 .line1 {
    width: -webkit-fill-available;
    height: 30px;
    margin: 0 0 0 40%;
    border: solid #D1D1D6;
    border-width: 0 0 2px 2px;
    border-radius: 0 0 0 10px;
}

.sub[name="comment"] .sub_child[name="main"]>.content .child>.row2>.reply>.col1 .line2 {
    display: block;
    width: -webkit-fill-available;
    height: calc(100% - 22px);
    margin: 0 0 0 40%;
    border: solid #D1D1D6;
    border-width: 0 0 0 2px;
    transform: translate(0, -10px);
}

.sub[name="comment"] .sub_child[name="main"]>.content .child>.row2>.reply>.col2 {
    width: -webkit-fill-available;
    height: fit-content;
    padding: 10px 0 0 0;
}

.sub[name="comment"] .sub_child[name="main"] .footer_bar {
    width: -webkit-fill-available;
    min-height: auto;
    padding: 10px 10px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
}

.sub[name="comment"] .sub_child[name="main"] .footer_bar .note {
    width: -webkit-fill-available;
    height: fit-content;
    margin: 0 0 5px 0;
    font-size: 14px;
    color: #3c3c44cc;
}

.sub[name="comment"] .sub_child[name="main"] .footer_bar .contai_input {
    width: -webkit-fill-available;
    height: fit-content;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
}

.sub[name="comment"] .sub_child[name="main"] .footer_bar .contai_input textarea {
    width: 100%;
    height: auto;
    max-height: 250px;
    padding: 10px;
    border: none;
    border-radius: 10px;
    background: #F3F4F6;
    font-size: 16px;
    text-wrap: nowrap;
    overflow: auto;
    line-height: 1.5;
    resize: none;
}

.sub[name="comment"] .sub_child[name="main"] .footer_bar button {
    width: fit-content;
    height: fit-content;
    border: none;
    background: transparent;
    font-size: 34px;
    color: #007AFF;
    font-variation-settings: 'FILL' 1;
    padding: 5px 0 5px 5px;
    margin: 0;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}

.sub[name="comment"] .sub_child[name="main"] .footer_bar>.send_loading {
    display: none;
}

.sub[name="comment"] .sub_child[name="main"] .footer_bar[status="processing"]>.send_loading {
    margin: 0 0 5px 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: 10px;
    font-size: 14px;
    color: #3c3c44cc;
}

.sub[name="comment"] .sub_child[name="main"] .footer_bar[status="processing"]>.send_loading span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    position: relative;
    animation: loader_rotate 1s linear infinite;
}

.sub[name="comment"] .sub_child[name="main"] .footer_bar[status="processing"]>.send_loading span::before {
    content: "";
    box-sizing: border-box;
    position: absolute;
    inset: 0px;
    border-radius: 50%;
    border: 2px solid black;
    animation: loader_prixClipFix 1s linear infinite;
}

.sub[name="comment"] .authen {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.sub[name="comment"] .authen .close {
    font-size: 28px;
    color: black;
    position: absolute;
    top: 5px;
    right: 5px;
    z-index: 1;
}

.sub[name="comment"] .authen.show {
    opacity: 1;
}

.sub[name="comment"] .authen .text {
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    line-height: 1.6;
}

.sub[name="comment"] .authen .contai {
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: center;
    margin: 30px 0 10px 0;
    column-gap: 20px;
}

.sub[name="comment"] .authen .contai button[name="login"] {
    width: 150px;
    height: 40px;
    border: none;
    border-radius: 10px;
    background-color: #0094F4;
    color: white;
    font-size: 16px;
}

.sub[name="comment"] .authen .contai button[name='register'] {
    width: 150px;
    height: 40px;
    border: none;
    background-color: #00C7BE;
    color: white;
    border-radius: 10px;
    font-size: 16px;
}

.sub[name="comment"] .authen .des {
    font-size: 14px;
    color: #787878;
    text-align: center;
}