.commentparent{
    display: flex;
    flex-direction: column;
}

.comment{
    padding-top: 5px;
    padding-bottom: 5px;
    border-top: 1px solid var(--dark-bg-border);
    margin-left: 15px;
    overflow-y: hidden;
}
.comment.hidden{
    max-height: 1em;
}

.comment p{
    color: var(--dark-txt-color);
    word-break: break-word;
    margin-top: 10px;
    transition: opacity 0.2s ease-in-out;
    white-space: break-spaces;
}
.comment.hidden p{
    opacity: 0;
}
.comment .button-casing p {
	margin: auto;
}

.comment a{
    cursor: pointer;
    font-size: small;
    font-weight: 400;
    padding: 0;
    margin: 0;
    color: var(--dark-txt-accent);
    transition: color 0.2s ease-in-out;
    margin-left: 10px;
	
	-webkit-user-select: none;
 	-ms-user-select: none; 
	user-select: none;
}

.comment.hidden a, .comment.hidden sub{
    color: var(--dark-txt-hide);
}

.comment a:hover{
    color: var(--dark-txt-color);
}

.comment-input{
    overflow-y: hidden;
}
.comment-input.hidden{
    max-height: 0;
}
