.comment-wrapper {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    border: 1px solid #000000;
    border-radius: 3px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .6);
    margin-bottom: 10px;
}

.comment-title {
    position: relative;
    top : -0.85em;
    margin-left: 1em;
    display: inline;
    background-color: white;
    font-weight: 500;
}

.item-wrapper {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
}

.inner-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin: 7px 10px;
    width: 94%;
}

.commenter {
    text-align: right;
    padding-right: 30px;
    width: 100%;
    font-size: 13px;
}

.comment {
    text-align: center;
    font-style: italic;
    padding: 0 15px;
    width: 100%;
}

.vote-wrapper {
    display: flex;
    flex-wrap: wrap;
    width: 8%;
    align-items: center;
}

.up-arrow {
}

.vote-amount {
}

@media (max-width: 1230px) {
    .inner-wrapper {
        width: 90%;
    }

    .vote-wrapper {
        width: 10%;
    }
}