#reply-title {
    margin-bottom: 10px;
    display: none;
}

textarea#comment {
    min-height: 95px;
    height: 95px;
}

h3#reply-title {
    margin-bottom: 10px;
}

.rating-wrap {
    margin-top: 15px;
    margin-bottom: 15px;
}

label.lbl-rating {
    display: inline-block;
    float: left;
    padding-top: 2px;
    padding-right: 15px;
    font-size: 16px;
}

.dashicons.dashicons-star-filled {
    color: #fcd144;
}

.comments-rating {
    border: none;
    padding: 0;
    margin-left: 0;
}

.comments-rating label {
    display: inline-block;
}

.rating-container {
    display: flex;
    justify-content: flex-end;
    flex-direction: row-reverse;
    width: 11.5%;
}

.rating-container * {
    font-size: 1.4rem;
}

.rating-container>input {
    display: none;
}

.rating-container>input+label {
    /* only enough room for the star */
    font-family: 'dashicons';
    display: inline-block;
    overflow: hidden;
    text-indent: 9999px;
    width: 1em;
    white-space: nowrap;
    cursor: pointer;
    margin: 0;
}

.rating-container>input+label:before {
    display: inline-block;
    text-indent: -9999px;
    content: "\f154";
    color: #888;
}

.rating-container>input:checked~label:before,
.rating-container>input+label:hover~label:before,
.rating-container>input+label:hover:before {
    content: "\f155";
    color: #fcd144;
    text-shadow: 0 0 1px #ededed;
}

.rating-container>.star-cb-clear+label {
    text-indent: -9999px;
    width: .5em;
    margin-left: -.5em;
}

.rating-container>.star-cb-clear+label:before {
    width: .5em;
}

.rating-container:hover>input+label:before {
    content: "\f154";
    color: #888;
    text-shadow: none;
}

.rating-container:hover>input+label:hover~label:before,
.rating-container:hover>input+label:hover:before {
    content: "\f155";
    color: #fcd144;
    text-shadow: 0 0 1px #ededed;
}

.comment-respond .rating-container>.star-cb-clear+label,
.comment-respond .rating-container>input+label:before {
    text-indent: 9999px;
}

.comment-respond .rating-container>input+label {
    text-indent: -9999px;
}