.comment-form form {
    display: flex;
    flex-flow: wrap row;
    justify-content: space-between;
    padding: 20px;
}

.comment-form form input {
    width: 49%;
    margin: 10px 0;
    height: 47px;
}

.comment-form form textarea {
    width: 49%;
    margin: 10px 0;
}

.comment-form form img {
    width: 49%;
    margin: 10px 0;
    border: 1px solid silver;
}

.comment-form form input[type=submit] {
    width: 100%;
    height: 47px;
}

.comment-widget {
    display: block;
}

.comment-item {
    display: flex;
    flex-flow: wrap column;
    justify-content: space-between;
}

.comment-meta {
    font-weight: 900;
}

.comment-meta-date {
    font-weight: 100;
    font-size: 12px;
}

.comment-meta-name {
    display: inline-block;
    padding: 20px 20px 0;
}

.comment-text {
    padding: 0 20px;
}

.comment-status {
    display: none;
    margin: 20px 20px 0;
    border: 1px solid silver;
    padding: 10px;
    background: white;
}

@media screen and (max-width: 640px) {
    .comment-form form {
        display: flex;
        flex-flow: wrap column;
        justify-content: space-between;
        padding: 20px;
    }
    
    .comment-form form input {
        width: 100%;
        margin: 10px 0;
        height: 47px;
    }
    
    .comment-form form textarea {
        width: 100%;
        margin: 10px 0;
    }
    
    .comment-form form img {
        width: 100%;
        margin: 10px 0;
    }
}