.comment {
    position: relative;
    padding: 50px 0;
    border-bottom: 1px solid var(--grey);
}

.comment__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--gapNav);
    margin-bottom: 40px;
}

.comment__meta-item {
    display: flex;
    align-items: center;
    gap: var(--gap);
    width: auto;
}

.comment__meta-img {
    max-width: 21px;
}

.comment__title {
    font-size: 1.5625rem;
    font-weight: 800;
    text-transform: uppercase;
}

.comment__sort {
    color: var(--grey);
    font-size: 1.5625rem;
}

.comment__send {
    position: relative;
    width: 100%;
    margin-bottom: 60px;
}

.comment__new {
    display: none;
}

.comment__input {
    font-size: 1.3125rem;
    display: block;
    width: 100%;
    margin-bottom: 10px;
    padding: 25px 200px 25px 25px;
    border: none;
    border-radius: 150px;
}

.comment__input::placeholder {
    color: var(--grey);
    font-size: 1.3125rem;
}

.comment__send-list {
    position: absolute;
    top: 50%;
    right: 10px;
    display: flex;
    align-items: center;
    gap: var(--gap);
    width: auto;
    transform: translateY(-50%);
}

.comment__send-list-item {
    max-width: 30px;
    cursor: pointer;
}

.comment__btn {
    max-width: 50px;
}

.comment__admin {
    color: var(--grey);
    display: none;
    width: 100%;
    margin-bottom: 0;
}

.avatar_new {
    background-color: #ccc;
}

.avatar_new {
    background-color: #ccc;
}

.comment__item {
    width: auto;
    margin-top: 40px;
}

.comment__item_answer {
    margin-left: 100px;
    padding-left: 20px;
    border-left: 1px solid var(--grey);
}

.comment__info {
    display: flex;
    align-items: center;
    gap: var(--gapGeo);
    margin-bottom: 20px;
}

.comment__info_bottom {
    gap: var(--gapNav);
}

.comment-answer {
    margin-left: 60px;
}

.avatar {
    flex: 1 0 100%;
    background-color: var(--white);
    background-position: center;
    background-size: cover;
    width: 100%;
    max-width: 70px;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 50%;
}

.comment__name {
    font-family: var(--manrope);
    font-size: 1.125rem;
    font-weight: 800;
}

.comment-date {
    color: grey;
    font-family: var(--manrope);
    font-size: 1.125rem;
    text-decoration: none;
}

.comment__text {
    font-family: var(--lora);
    font-size: 1.375rem;
    margin-bottom: 30px;
}

.comment__btnAnswer {
    color: var(--grey);
    font-family: var(--manrope);
    font-size: 1.125rem;
    font-weight: 700;
    width: auto;
    cursor: pointer;
}

.comment__like,
.comment__dislike {
    color: var(--grey);
    font-family: var(--manrope);
    font-size: 1.3125rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
    width: auto;
}

.comment__svg {
    max-width: 20px;
    cursor: pointer;
}

.comment__item-img {
    max-width: 433px;
    margin-bottom: 50px;
}

@media screen and (max-width: 991px) {
    .comment__meta-item:last-child {
        display: none;
    }
}

@media screen and (max-width: 576px) {

    .comment {
        padding: 20px 0;
    }

    .comment__meta {
        margin-bottom: 20px;
    }

    .comment__send {
        margin-bottom: 20px;
    }

    .comment__input {
        padding: 15px 40px 15px 15px;
    }

    .comment__send-img {
        display: none;
    }

    .comment__item {
        margin-top: 20px;
    }

    .comment__info {
        flex-wrap: wrap;
        gap: 0 var(--gapGeo);
        margin-bottom: 10px;
    }

    .comment-date {
        width: 100%;
    }

    .comment__text {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .comment__item-img {
        margin-bottom: 10px;
    }

    .comment__btn {
        max-width: 30px;
    }

    .comment__btnAnswer {
        font-size: 1rem;
    }

    .avatar {
        max-width: 45px;
    }

    .comment__item_answer {
        margin-left: 30px;
    }

}
