#event-comments {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 100px;
    border: none;
}

.event-comments-content-wrapper {
    width: 1200px;
}

.event-comments-content-wrapper .event-comments-title {
    margin: 0px 10px;
}

.event-comments-content-wrapper .event-comments-title a {
    display: none;
}

.view-event-comments {
    padding: 30px;
    background-color: #1B1B1B;
    min-width: 610px;
    border-radius: 8px;
}

.comment {
    max-width: 565px;
    background-color: #252525;
    border: 1px solid #2D2C2C;
}

.comment_mb {
    margin-bottom: 15px;
}

.comment.admin_note.wow.fadeIn {
    background-color: #1B1B1B !important;
    width: 100%;
    margin-left: 0px;
}

.comment .created {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid #2D2C2C;
    color: #929292;
}


.comment-footer {
    color: #929292;
    margin: 20px;
}

.comment-footer_min-height {
    min-height: 40px;
}

.comment-footer a {
    color: #76961f;
    text-decoration: underline;
    transition: all 0.3s linear;
}

.comment-footer a:hover {
    opacity: 0.7;
}

.comment .event-comment-wrapper {
    padding: 20px;
    border-bottom: 1px solid #2D2C2C;
}

.event-comment-wrapper_min-height {
    min-height: 120px;
}

.comment-text__short {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}

@media (max-width: 768px) {

    .comment-text__short {
        -webkit-line-clamp: 6;
    }

    .event-comment-wrapper_min-height {
        min-height: 160px;
    }
}

.event-comments-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.add-a-comment {
    margin-left: 40px;
    padding: 30px;
    background-color: #1B1B1B;
    width: 550px;
    border-radius: 8px;
    position: sticky;
    top: 0;
}

.add-a-comment form {
    display: flex;
    flex-direction: column;
}

.add-a-comment form input,
.add-a-comment form textarea {
    outline: none;
    border: none;
}

.add-a-comment form input[type=text],
.add-a-comment form input[type=email],
.add-a-comment form textarea {
    margin-bottom: 20px;
    padding: 13px 15px;
    background-color: #CCCCCC;
    color: #1B1B1B;
    font-family: var(--OpenSans);
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 130%;
    width: 100%;
}
