.msg-container .container {
    columns: 1;
    column-gap: 20px;
    max-width: 100%;
    padding: 0;
}
.msg-container {
    margin: 25px 0 0;
}
.msg-container .container .box h3 {
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 5px;
}
.msg-container .box .author-info {
    display: flex;
    align-items: center;
}
.msg-container .box .author-info img {
    border-radius: 50%;
    margin-right: 10px;
    height: 40px;
    width: auto;
}
.msg-container .date {
    font-size: 12px;
    display: inline-block;
}
.msg-container .categ {
    font-size: 10px;
    display: inline-block;
    margin-bottom: 5px;
    background-color: #f9a430;
    padding: 5px;
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    margin-right: 10px;
}
.msg-container .dashboard-button {
    color: white !important;
}
textarea[name="comment"] {
    display: block;
    width: 100%;
}
.comment-reply-button{
    font-size: 16px;
    position: relative;
    cursor: pointer;
    margin: 0;
}
.msg-comment-section {
    margin: 15px 0 0;
}
.comment-reply-button::after{
    content: '';
    position: absolute;
    top: 0;
    right: 15px;
    width: 8px;
    height: 8px;
    display: block;
    border-bottom: 2px solid #000;
    border-right: 2px solid #000;
    bottom: 0;
    margin: auto;
    transform: rotate(45deg);
}
.comment-reply-button.open::after{
    transform: rotate(225deg);
}
h3.comment-reply-title {
    display: none;
}
div#maincenter > .center-content .report-project.box.postIt h2::after{
	display: none;
}
@media screen and (max-width: 1023px) {
    .msg-container .container {
        column-gap: 20px;
    }
}
@media screen and (max-width: 767px) {
    .msg-container .container {
        column-gap: 10px;
    }
}