.comments_add {
    width: 100%;
    /*max-width: 400px;*/
}

.send_form_field {
    width: 100%;
}

.send_form_field strong {
    display: block;
    margin: 15px 0px 5px 0px;
}

.send_form_field input, .send_form_field textarea {
    height: 45px;
    width: 100%;
    border: 1px #ddd solid;
    padding: 0px 15px;
    border-radius: 2px;
}

.send_form_field textarea {
    height: 100px;
    padding: 15px;
}

.send_form_field_d {
    display: none;
}

.send_form_submit input {
    height: 45px;
    width: 100%;
    padding: 0px 15px;
    border-radius: 2px;
    background: #0b6086;
    color: #ffffff;
    border: none;
    margin-top: 35px;
}


.rating-area {
    overflow: hidden;
    /*width: 265px;*/
    /*margin: 0 auto;*/
}
.rating-area:not(:checked) > input {
    display: none;
}
.rating-area:not(:checked) > label {
    float: right;
    width: 22px;
    padding: 0;
    cursor: pointer;
    font-size: 25px;
    line-height: 32px;
    color: lightgrey;
    text-shadow: 1px 1px #bbb;
}
.rating-area:not(:checked) > label:before {
    content: '★';
}
.rating-area > input:checked ~ label {
    color: #c83636;;
    text-shadow: 1px 1px #c60;
}
.rating-area:not(:checked) > label:hover,
.rating-area:not(:checked) > label:hover ~ label {
    color: #c83636;;
}
.rating-area > input:checked + label:hover,
.rating-area > input:checked + label:hover ~ label,
.rating-area > input:checked ~ label:hover,
.rating-area > input:checked ~ label:hover ~ label,
.rating-area > label:hover ~ input:checked ~ label {
    color: #c83636;;
    text-shadow: 1px 1px #c83636;;
}
.rate-area > label:active {
    position: relative;
}

.rating-mini {
    display: inline-block;
    font-size: 0;
}
.rating-mini span {
    padding: 0;
    font-size: 20px;
    line-height: 1;
    color: lightgrey;
}
.rating-mini > span:before {
    content: '★';
}
.rating-mini > span.active {
    color: gold;
}

input[type=text]::placeholder {
    color: rgb(0, 0, 0);
}
input[type=text]::-webkit-input-placeholder {
    color: rgb(0, 0, 0);
}
input[type=text]::-moz-placeholder {
    color: rgb(0, 0, 0);
}
input[type=text]:-moz-placeholder {
    color: rgb(0, 0, 0);
}
input[type=text]:-ms-input-placeholder {
    color: rgb(0, 0, 0);
}