.comments {
    background-color: #ececec;
    padding: 40px 0 60px;
    clear: both;
}
.comments__inner {
    width: 1420px;
    margin: auto;
    padding: 0 384px 0 320px;
}
.comments__title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 900;
    border-bottom: 1px solid #cdcdcd;
    padding-bottom: 20px;
}
.comments__comment {
    padding: 22px 0;
    border-bottom: 1px solid #cdcdcd;
}
.comments__comment-user-name {
    font-size: 14px;
    font-weight: bold;
}
.comments__comment-text {
    font-size: 16px;
}
.comments__comment-date {
    font-size: 14px;
    color: #999;
}
.comments__rating-section {
    display: inline-block;
    margin-left: 20px;
    font-size: 14px;
    color: #999;
}
.comments__comment-form-wrapper {
    margin: 30px 80px 0;
}
.comments__comment-form {
    text-align: right;
}
.comments__smile {
    display: inline-block;
    margin-top: -2px;
    width: 18px;
    height: 18px;
    vertical-align: middle;
    background: url(../img/smile.svg);
}
.comments__smile--positive {
    background: url(../img/smile-hovered.svg);
}
.comments__smile--negative {
    background: url(../img/smile-sad-hovered.svg);
}
.comments__rating-section:hover .comments__smile {
    display: none;
}
.comments__vote {
    width: 18px;
    height: 18px;
    margin-top: -2px;
    cursor: pointer;
    vertical-align: middle;
    display: none;
}
.comments__rating-section:hover .comments__vote {
    display: inline-block;
}
.comments__vote--down {
    background: url(../img/minus.svg);
}
.comments__vote--down:hover {
    background: url(../img/minus-hovered.svg);
}
.comments__vote--up {
    background: url(../img/plus.svg);
}
.comments__vote--up:hover {
    background: url(../img/plus-hovered.svg);
}
.comments__rating {
    padding: 0 3px;
    font-size: 16px;
}
.comments__rating--positive {
    color: #0ABC6E;
}
.comments__rating--negative {
    color: #ed4444;
}
.comments__vote:hover {
    border-color: #cea740;
    color: #cea740;
}
.comments__comment-form-textarea {
    display: block;
    width: 100%;
    height: 240px;
    border: 1px solid #bcbcbc;
    margin-bottom: 15px;
}
.comments__comment-form-submit {
    background-color: #cea740;
    color: #fff;
    border: none;
    font-size: 14px;
    width: 200px;
    height: 45px;
}
.comments__auth-suggestion {
    font-size: 14px;
    padding: 22px 0;
    text-align: center;
}
.comments__auth-suggestion a, .comments__auth-suggestion a:hover {
    color: #cea740;
}
@media (min-width: 1920px) {
    .comments__inner {
        width: 1900px;
        padding: 0 725px 0 340px;
    }
}
@media (min-width: 1366px) and (max-width: 1439px) {
    .comments__inner {
        width: 1346px;
    }
}
@media (min-width: 1280px) and (max-width: 1365px) {
    .comments__inner {
        width: 1260px;
        padding-left: 277px;
    }
}
@media (min-width: 1024px) and (max-width: 1279px) {
    .comments__inner {
        width: 1004px;
        padding-left: 42px;
    }
    .comments__comment-form-wrapper {
        margin: 30px 30px 0;
    }
}
@media (min-width: 768px) and (max-width: 1023px) {
    .comments__inner {
        width: 768px;
        padding: 0 42px;
    }
}
@media (max-width: 640px) {
    .comments__comment-form-wrapper {
        margin: 30px 30px 0;
    }
}
@media (min-width: 480px) and (max-width: 767px) {
    .comments__inner {
        width: 100%;
        padding: 0 42px;
    }
}
@media (max-width: 479px) {
    .comments__inner {
        width: 100%;
        padding: 0 10px;
    }
    .comments__comment-form-wrapper {
        margin: 10px 10px 0;
    }
}

