.comments #id_ratings {
    margin-top: 0;
    height: 50px;
}

.comments__wrapper {
    display: flex;
    justify-content: center;
    background-color: grey;
}

.comments {
    display: flex;
    flex-flow: column nowrap;
    padding: 45px 30px;
    font-size: 16px;
}

.comments__container {
    margin-top: 40px;
}

/* FORM & RATINGS */
.comments__textarea,
.comments__input {
    border-radius: 4px;

    width: 100%;
    padding: 14px 12px;
    margin-bottom: 8px;
    border: none;
    line-height: 18px;
}

.comments__rating {
    display: flex;
    flex-flow : column nowrap;
    align-items: center;
    margin: 20px 0 25px;
}

.comments__rating-stars {
    display: flex;
    flex-flow : row-reverse nowrap;
    justify-content: flex-end;
    align-items: center;
}

.comments__rating-label {
    display: block;
    width: 1em;
    cursor: pointer;
    font-size: 18px;
    color: #EBEDF6;
    margin-right: 8px;
}

.comments__rating-label:before {
    content: '★';
}

.comments__rating-label:hover,
.comments__rating-label:hover ~ label {
    color: #5a52ff;
}

.comments__rating-input {
    display: none;
}

.comments__rating-input:checked ~ label {
    color: #5a52ff;
}