.data-featherlight-gallery-comment {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
    margin-top: 4px;
}
.data-featherlight-gallery-comment img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    object-position: center;
    display: block;
    cursor: pointer;
    margin-right: 10px;
    margin-bottom: 6px;
}

.loading-box {
    display: block;
    height: 16px;
    margin: 0;
    position: relative;
    overflow: hidden;
    background-color: #e9e9e9;
    border-radius: 3px;
}

.loading-box::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transform: translateX(-100%);
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.2) 20%, rgba(255, 255, 255, 0.5) 60%, rgba(255, 255, 255, 0));
    animation: shimmer 1800ms infinite;
    pointer-events: none;
}

.data-featherlight-gallery {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.customer-loading-images span, .customer-loading-images img {
    margin-right: 10px;
}

@-webkit-keyframes shimmer {
    100% {
        transform: translateX(100%);
    }
}
@keyframes shimmer {
    100% {
        transform: translateX(100%);
    }
}

.comment_item {
    padding: 16px 0 8px;
}

.user_status {
    width: calc(100% - 160px);
    position: relative;
    z-index: 1;
    padding-left: 24px
}

.comment-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

@media (max-width: 1360px) {
    .user-info {
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 110px;
        min-width: 110px;
    }
}
.user-info .days {
    grid-area: cmDate;
    font-size: 12px;
    color: #999;
}


.user-info .from {
    font-size: 12px;
    text-align: center;
    color: #888;
}

.user-info .from span {
    color: #333;
}

.user-info {
    width: 160px;
    min-width: 160px;
    display: grid;
    grid-template-columns: 50px calc(100% - 60px);
    align-items: center;
    justify-content: flex-start;
    grid-column-gap: 10px;
    grid-template-areas:
    "cmAva cmName"
    "cmAva cmDate";
}

#box_comment .comment_item .user_status .left.txt_11 {
    font-size: 12px;
    padding: 5px 0 0;
    white-space: nowrap
}

#box_comment .comment_item .user_status .block_like_web {
    padding: 0;
    position: relative;
    font-size: 12px;
    color: #999;
}

.avatar-letter {
    grid-area: cmAva;
    border-radius: 60px;
    background: #d3d2d3;
    color: #919090;
    font-weight: 500;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 17px;
    font-weight: bold;
    user-select: none;
    overflow: hidden;
}

.nickname {
    grid-area: cmName;
    font-weight: bold;
    font-size: 14px;
    line-height: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.commenter-avata+.comment-text {
    display: block;
    width: calc(100% - 180px);
    padding-left: 20px;
}

