.renaissance {
    .comment-widget {
        background-color: unset;
        padding: unset;

        .header {
            width: 100%;
            margin: unset;
            padding: 30px 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            border: unset;

            .title {
                font-family: var(--dec-font-family-ethereal);
                font-size: 30px;
            }
        }
    }
    
    .comment-instance {
        box-shadow: unset;
        --webkit-box-shadow: unset;

        .center-block {
            margin: auto;
            width: 80%;
            position: relative;

            .media-object-container {
                position:absolute;
                left: -56px;

                .media-object {
                    width: 46px;
                    height: 46px;
                    border-radius: 50%;
                    overflow: hidden;
                }
            }
            .media-body {
                border-radius: 10px;
                border: 2px solid var(--dec-gold);

                padding: 25px;
    
                .media-body-header {
                    display: flex;
                    flex-direction: row;
                    align-items: center;
                    margin-bottom: 10px;
                }
    
                .userName {
                    font-size: 20px;
                    font-weight: 600;
                }
    
                .com-text {
                    font-size: 16px;
                }
            }
        }


        &.testimonial {
            .center-block {
                .media-body {
                    .userName {
                        color: var(--dec-black) !important;
                    }
                }
            }
        }
    }

    @media (max-width: 768px /* @dec-breakpoint-mobile from variables-ren */) {
        .comment-widget {
            .header {
                .title {
                }
            }
        }
        
        .comment-instance {
            .center-block {
                margin: unset;
                width: 100%;

                .media-body {
                    padding: 16px;

                    .media-body-header {
                        gap: 8px;

                        .media-object-container {
                            position: static;

                            .media-object {
                                width: 20px;
                                height: 20px;
                            }
                        }

                        .userName {
                            font-size: 14px;
                            font-weight: 600;
                        }
                    }

                    .com-text {
                        font-size: 14px;
                    }
                }
            }
        }
    }
}

.comments-list{
    list-style-type: none;
    padding-left: 0;
}

.comments-list h4, .comments-list h4 * {
    color: #bbb;
}

.comments-list .comment-time {
    font-size: 11px;
}

.comments-list .admin-panel{
    border: solid 1px grey;
    padding: 5px;
}

.comments-list .comments-list{
    padding-left: 30px;
}

.comments-list.only-one .comments-list {
    padding-left: 0;
}

.comments-list .title-separator {
    height: 1px;
    width: 100%;
    background-color: #eee;
    margin-top: 6px;
    margin-bottom: 8px;
}

.comments-list li{
    box-sizing: border-box;
    margin: 5px 0;
    background: #FFFFFF;
    padding: 5px 0;
    -webkit-box-shadow: 1px 0px 3px rgba(0, 0, 0, 0.2);
    -moz-box-shadow:    1px 0px 3px rgba(0, 0, 0, 0.2);
    box-shadow:         1px 0px 3px rgba(0, 0, 0, 0.2);
}

.comments-list li.requires-approval{
	background-color: #fff2ef;
	border: 1px solid #930444;
}

.comments-list li.sensitive-data {
    background-color: #fff2ef;
    border: 1px solid #930444;
}

.comments-list li.sensitive-data div.header-info {
    width: 350px;
}

.comments-list li a.comment-inpage-anchor{
    padding-top: 80px;
}

.comments-list li.comment-highlight{
    background-color: #f5fcff;
    border: 1px solid #049cdb;
}

.clampText3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.comments-list .approval-heading,
.comments-list .sensitive-data-heading {
	color: #930444;
}

.comments-list .sensitive-data-message {
    margin-bottom: 5px;
}

.comments-list li .comment-header{
    font-weight: bold;
}

.commentParentPreview {
    cursor: pointer;
    border-left: 3px solid #00a0db;
    margin: 0 5px 5px 10px;
    padding: 5px;
    background-color: #e8f7fc;
    -webkit-border-top-left-radius: 2px;
    -webkit-border-bottom-left-radius: 2px;
    -moz-border-radius-topleft: 2px;
    -moz-border-radius-bottomleft: 2px;
    border-top-left-radius: 2px;
    border-bottom-left-radius: 2px;
}

.commentParentPreview:hover {
    background-color: #dcf2fa;
    border-left-color: #007fad;
}

.commentParentUser {
    font-size: 110%;
    font-weight: bold;
    color: #00a0db;
}

.linkPrevComment {
    text-align: right;
    font-size: 80%;
    margin-top: 8px;
    font-style: italic;
}

li.commentFocused {
    -webkit-box-shadow: 0 0 5px 1px #00A0DB;
    -moz-box-shadow: 0 0 5px 1px #00A0DB;
    box-shadow: 0 0 5px 1px #00A0DB;
}
.comment-footer {
    text-align: center;
    padding: 0 50px;
}
.comment-footer p.noComments {
    text-align: left;
}

.com-text {
    word-break: break-word;
}
.feedback {
    margin-bottom: 10px;
}
.feedback.has-errror {
    color: red;
}
textarea.disabled {
    background: #eee;
}

.com-tags {
    margin-top:10px;
    color: #bbb;
}

.com-tags a {
    color: #bbb;
}

.tags-selected {
    margin-left: 10px;
    color: #bbb;
}

.room-filters-selected {
    width: 100%;
}

.room-filter-selected {
    border: solid;
    border-width: 1px;
    border-radius: 15px;
    border-color: #767676;
    padding: 2px 20px;
    background-color: #fff;
    margin-right: 10px;
    color: #555;
    font-size: 13px;
}

.room-filter-selected .close-filter {
    position: relative;
    left: 10px;
}

a.delete-comment-file, a.delete-comment-file:hover {
    text-decoration: none;
}
