div.news-list
{
	word-wrap: break-word;
}
div.news-list img.preview_picture
{
	float:left;
	margin:0 4px 6px 0;
}
.news-date-time {
	color:#486DAA;
}
.item-rev {
    width: 305px;
    height: 235px;
    background-color: #fff;
    border-radius: 30px / 22px;
    padding: 20px 25px 15px;
	position: relative;
}
.item-title {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}
.line-rev-info {
    font-size: 11px;
    display: flex;
    justify-content: space-between;
    position: absolute;
    bottom: 20px;
    width: 83%;
	color: #898989;
}
.line-rev-info a {
    color: #898989;
    display: flex;
    align-items: center;
}
.stars {
    margin-top: -2px;
    display: flex;
}
.leave-where {
    display: flex;
    column-gap: 5px;
}
.review-carousel {
    display: flex;
    column-gap: 40px;
    flex-wrap: wrap;
    flex-direction: row;
}
.review-text {
    font-size: 14px;
    line-height: 17px;
}
.author-name {
    font-weight: 700;
}
.leave-where img{
	width: 11px;
    margin-left: 5px;
}
.review-carousel {
    display: flex;
    column-gap: 40px;
    flex-wrap: nowrap;
    overflow: hidden;
    position: relative;
    /* animation: scroll-rev 75s linear infinite; */
	width: max-content;
}
.review-items {
    overflow: hidden;
}
.review-carousel:hover {
    animation-play-state: paused; /* Остановка анимации при наведении */
}
@media screen and (max-width: 769px) {
    .item-rev {
        width: 47%;
        height: 206px;
        border-radius: 10px;
        padding: 15px;
        position: relative;
        box-shadow: 0px 0px 10px 0px #00000033;
    }
    .content-tab-rev.btn.review-btn.review-btn-mob {
        width: 100%;
        margin-bottom: 10px;
    }
    .stars img {
        width: 10px !important;
        height: 10px !important;
    }
    .author-name {
        font-size: 13px;
    }
    .item-title {
        align-items: center;
        margin-bottom: 0px;
    }
    .review-text {
        font-size: 10px;
        line-height: 10px;
    }
    .review-items {
        overflow: visible;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        row-gap: 20px;
        justify-content: center;/*space-between*/
        max-width: 100%;
        width: 100%;
        column-gap: 20px;
    }
    .line-rev-info {
        flex-direction: column;
    }
    .leave-where {
        text-transform: lowercase;
    }
    .leave-when {
        line-height: 7px;
    }
    .leave-where img {
        width: 8px !important;
        height: 8px !important;
    }
}
@media screen and (max-width: 371px) {
    .review-text {
        font-size: 9px;
        line-height: 9px;
    }
    .review-items {
        column-gap: 10px;
    }
    .item-rev {
        width: 47%;
        padding: 10px
    }
    .author-name {
        font-size: 12px;
    }
}
@keyframes scroll-rev {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

