.HomeReviewsTitle {
    margin-bottom: 10px;
    background: var(--card);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
    gap: 10px;
    height: 47px;
    padding: 6px 15px;
    position: relative;
}
.HomeReviewsTitle span {
    display: flex;
    gap: 5px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    color: var(--custom-text-color);
    align-items: center;
}
.HomeReviewsTitle span svg {
    width: 12px;
    height: auto;
    fill: var(--custom-text-color);
	margin-bottom: 1px;
}
.HomeReviewsTitle > div {
    display: flex;
    gap: 15px;
    align-items: center;
}
.HomeReviewsСontainer {
    display: grid;
	grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}
.HomeReviewsBlock1 {
    display: grid;
    background-color: var(--card);
    border-radius: var(--br-16);
    padding: 15px;
    align-content: space-between;
}
.HomeReviewsBlock2 {
    display: grid;
    gap: 10px;
    position: relative;
}
.HomeReviewsReview {
    position: relative;
    background-color: var(--card);
    border-radius: var(--br-16);
    padding: 10px;
}
.HomeReviewsScore {
    display: flex;
    gap: 15px;
    align-items: center;
}
.HomeReviewsScore > h1, .HomeReviewsScore > div > h3, .HomeReviewsScore > div > h6 {
    margin-bottom: 0;
}
.HomeReviewsScore > h1 {
    color: var(--span);
    border-radius: var(--br-8);
    text-align: center;
	margin: 0;
    width: 100px;
    background-color: var(--span-middle);
}
.HomeReviewsScore > div > h6 {
    margin-left: 1px;
    opacity: .5;
	font-size: 12px;
}
.HomeReviewsStar {
    width: 100px;
    margin-left: 3px;
    text-align: center;
    letter-spacing: 5px;
    color: var(--default-text-color);
}
.HomeReviewsStar span {
    opacity: .1;
}
.HomeReviewsStar > a.gold {
    color: var(--money);
}
.HomeReviewsAllInfo > div > a.gold {
    color: var(--money);
}
.HomeReviewsButton {
    display: flex;
    cursor: pointer;
    font-weight: var(--font-weight-5);
    color: var(--text-custom);
    background: var(--button);
    margin-top: 15px;
    justify-content: center;
    align-items: center;
    height: 40px;
    border-radius: var(--br-8);
    transition: var(--transition-duration);
	-webkit-user-drag: none;
	user-select: none;
}
.HomeReviewsButton:hover {
    background-color: var(--button-hover);
    color: var(--default-text-color);
}
.HomeReviewsAllInfo {
    display: grid;
    gap: 15px;
    grid-template-columns: 50px 1fr;
    align-items: center;
}
.HomeReviewsAllInfo > a > img {
    width: 50px;
    height: 50px;
    border-radius: var(--br-8);
    object-fit: cover;
}
.HomeReviewsAllInfo h4 {
    margin-bottom: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.HomeReviewsAllText {
    opacity: 1;
    font-size: 13px;
    color: var(--text-custom);
    margin: 10px 0px 15px 0px;
    padding: 5px 10px;
    height: 65px;
    white-space: pre-line;
    overflow: hidden;
    overflow-y: scroll;
	overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
    padding-right: 10px;
    border-radius: var(--br-8);
	background: var(--transparent-2-w);
	border: 1px solid var(--transparent-3-w);
}
.HomeReviewsAllText::-webkit-scrollbar {
    display: none;
}
.HomeReviewsAllTime {
    position: absolute;
    font-size: 10px;
    color: var(--text-custom);
    left: 50%;
    bottom: 5px;
    transform: translate(-50%, 0px);
	white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
@media (max-width: 900px) {
    .HomeReviewsСontainer {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 578px) {
    .HomeReviewsСontainer {
        grid-template-columns: 1fr;
    }
	.HomeReviewsReview:last-child {
		display: none;
	}
}
#next_reviews, #start_reviews {
    cursor: pointer;
    display: flex;
    border-radius: 6px;
    height: 30px;
    width: 30px;
    background-color: var(--button-color);
    align-items: center;
    justify-content: center;
    user-select: none;
    transition: .5;
}
#next_reviews:hover, #start_reviews:hover {
    background-color: var(--span-color);
}
#next_reviews svg, #start_reviews svg {
    fill: var(--default-text-color);
    height: 15px;
}
.HomeReviewsAllLike {
    display: flex;
    gap: 3px;
    position: absolute;
    font-size: 10px;
	color: var(--custom-text-color);
    right: 12px;
    bottom: 6px;
    cursor: pointer;
    align-items: center;
    transition: .5s;
	font-weight: 700;
}
.HomeReviewsAllLike svg {
    width: 10px;
    fill: var(--custom-text-color);
    transition: .5s;
	margin-bottom: 1px;
}
.HomeReviewsAllLike:hover {
    color: var(--red-color);
} 
.HomeReviewsAllLike:hover svg {
    fill: var(--red-color);
}
.HomeReviewsAllLike.like_red, .HomeReviewsAllLike.like_red svg {
    color: var(--red-color);
    fill: var(--red-color);
}
.HomeReviewsAllLike.like_red:hover {
    color: var(--custom-text-color);
} 
.HomeReviewsAllLike.like_red:hover svg {
    fill: var(--custom-text-color);
}