.comment-zone {
    margin-left: 0;
    position: relative;
}

.comment-zone hr {
    margin-top: 0px;
}

.comment-zone p {
    font-size: 0.1em;
    margin-top: 10px;
    color: #e5d0ae;
    line-height: 0;
}

.comment-zone h2 {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.comment {
    display: inline-flex;
    align-items: center;
    background: none;
    gap: 10px;
    border-width: 1px;
    border-style: solid;
    border-color: #efefef50;
    border-radius: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
    width: 100%;
    animation: show-comment 0.5s ease forwards;
    z-index: 99;
    position: relative;
}

@keyframes show-comment {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.comment img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    margin-left: 10px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.comment h4 {
    font-size: 1.2em;
    padding-block-start: 0;
    padding-block-end: 0;
}

.comment p {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.comment pre {
    font-family: "CEFFontsCJK", sans-serif, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: block;
    white-space: pre-wrap;
    word-wrap: break-word;
    margin-top: 10px;
    margin-bottom: 10px;
    line-height: 1.2em;
}

.send {
    margin-top: 30px;
    margin-left: 2px;
    border-width: 1px;
    border-style: solid;
    border-color: #efefef50;
    border-radius: 8px;
}

.send p {
    font-size: 01em;
    margin-top: 12px;
    margin-bottom: 13px;
    margin-left: 20px;
    color: #e5d0ae;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.send h4 {
    margin-top: 15px;
    margin-bottom: 20px;
    margin-left: 20px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.send input {
    font-family: "CEFFontsCJK", sans-serif, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: bold;
    font-size: 1em;
    width: calc(100% - 20px);
    padding: 2px 2px;
    margin-top: 10px;
    margin-right: 20px;
    background: none;
    border: none;
    color: #efefef;
    outline: none;
    border: 1.5px solid #efefef80;
    border-radius: 4px;
}

.send input[type="text"]:focus {
    outline: none;
    border: 1.5px solid #efefef;
    border-radius: 4px;
}

.send textarea {
    font-family: "CEFFontsCJK", sans-serif, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: block;
    font-size: 1.1em;
    width: calc(100% - 40px);
    max-width: calc(100% - 40px);
    min-width: calc(100% - 40px);
    height: 80px;
    padding: 4px 4px;
    margin-top: 10px;
    margin-left: 20px;
    margin-right: 20px;
    background: none;
    border: none;
    color: #efefef;
    outline: none;
    border: 1.5px solid #efefef80;
    border-radius: 4px;
}

.send textarea:focus {
    outline: none;
    border: 1.5px solid #efefef;
    border-radius: 4px;
}

.send button {
    font-size: 0.9em;
    display: flex;
    margin-left: auto;
    margin-top: 5px;
    margin-right: 15px;
    margin-bottom: 10px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.error {
    margin-left: 20px;
    margin-top: 0;
    margin-right: 20px;
    margin-bottom: 20px;
    border-width: 1px;
    border-style: solid;
    border-color: #efefef50;
    border-radius: 8px;
    background: #ff000010;
}

.error p {
    color: #efefef;
    animation: show-comment 0.5s;
    line-height: 1.1em;
    margin-right: 20px;
}

.success {
    margin-left: 20px;
    margin-top: 0;
    margin-right: 20px;
    margin-bottom: 20px;
    border-width: 1px;
    border-style: solid;
    border-color: #efefef50;
    border-radius: 8px;
    background: #09ff0010;
}

.success p {
    color: #efefef;
    animation: show-comment 0.5s;
    line-height: 1.1em;
    margin-right: 20px;
}

.reply {
    margin-left: auto;
    margin-right: 10px;
    word-break: keep-all;
}

.ReplyComment {
    margin-top: 20px !important;
    margin-bottom: -5px !important;
    font-size: 0.9em !important;
}