.comments {
    padding-top: 20px;
}

li{
    list-style: outside none none;
}

.comments__title {
    font-weight: bold;
    font-size: 22px;
    line-height: 32px;
    color: rgb(62, 62, 62);
    margin-bottom: 50px;
    position: relative;
}

.comments__title::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 3px;
    background: rgb(227, 227, 227) none repeat scroll 0% 0%;
    left: 0;
    bottom: -15px;
}

.comments__item {
    background: rgb(255, 255, 255) none repeat scroll 0% 0%;
    margin-bottom: 25px;
    border-radius: 20px;
    position: relative;
    padding: 20px 20px 20px 130px;

    border: 1px solid black;
}

@media (max-width: 767px) {
    .comments__item {
        padding: 10px;
    }
}

.comments__info {
    display: table;
    width: 100%;
}

.comments__ava {
    position: absolute;
    left: 20px;
    top: 20px;
}

@media (max-width: 767px) {
    .comments__ava {
        position: static;
        width: 80px;
        height: 80px;
        display: inline-block;
        margin-right: 15px;
    }
}

@media (max-width: 767px) and (max-width: 479px) {
    .comments__ava {
        width: 50px;
        height: 50px;
        margin-right: 10px;
    }
}

.comments__name {
    font-weight: 900;
    font-size: 18px;
    line-height: 32px;
    color: rgb(62, 62, 62);
}

@media (max-width: 767px) {
    .comments__name {
        display: inline-block;
        vertical-align: top;
        line-height: 80px;
    }
}

@media (max-width: 479px) {
    .comments__name {
        line-height: 50px;
    }
}

.comments__text {
    font-weight: normal;
    font-size: 18px;
    line-height: 32px;
    color: rgb(0, 0, 0);
    margin-bottom: 10px;
}

@media (max-width: 767px) {
    .comments__text {
        font-size: 18px;
        line-height: 28px;
        margin-bottom: 10px;
    }
}

.comments__img {
    margin-top: 5px;
    width: 300px;
}

.comments__date {
    font-style: italic;
    font-weight: 300;
    font-size: 18px;
    line-height: 32px;
    color: rgb(0, 0, 0);
}

@media (max-width: 767px) {
    .comments__date {
        font-size: 18px;
        line-height: 32px;
    }
}
