.reviews {
    background: transparent;

}
.review {
    display: grid !important;
    justify-content: stretch;
    grid-template-columns: repeat(3, minmax(100px, 1fr));
    gap: 20px;
}

@media (max-width: 700px) {
	.review {
		grid-template-columns: repeat(2, minmax(100px, 1fr));
	}
}

@media (max-width: 430px) {
	.review {
		grid-template-columns: repeat(1, minmax(100px, 1fr));
	}
}

.review__item {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    background-color: #ffffff;
    padding: 15px;
    border-width: 0px;
    border-color: transparent;
    border-radius: 10px;
    border-style: solid;
    box-shadow: 0 2px 2px 0 rgb(0 0 0 / 14%), 0 3px 1px -2px rgb(0 0 0 / 12%), 0 1px 5px 0 rgb(0 0 0 / 20%);
}

.review__item:nth-child(-n+6) {
    display: flex;
}

.review__item-block {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.review__item-header {
    text-align: left;
    display: flex;
    flex-wrap: nowrap;
    margin-bottom: 20px;
    height: 65px;
}

.review__item-icon {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: rgb(255, 255, 255);
    border-radius: 50%;
}

.review__item-icon img {
    border-radius: 50%;
    object-fit: cover;
	width: 100%;
    height: 100%;
}

.review__header-block {
    margin-left: 10px;
    display: flex;
    flex-direction: column;
}

.review__item-name {
    font-size: 14px;
    font-weight: 700;
}

.review__item-date {
    font-size: 12px;
}

.review__item-text {
    background: #F7F8FA;
    border-radius: 10px;
    padding: 10px;
    max-height: 110px;
    overflow-y: auto;
    overflow-x: hidden;
    height: 100%;
}

.review__item-text::-webkit-scrollbar {
  	width: 12px;
}

.review__item-text::-webkit-scrollbar-track {
  	background: transparent;
}

.review__item-text::-webkit-scrollbar-thumb {
	background-color: #D5D5D5;
    border-radius: 20px;
    border: 4px solid #F7F8FA;
}

.review__item-footer {
    min-height: 20px;
    display: flex;
    margin-top: 15px;
    /* margin: auto 0 0; */
    margin-top: max(15px, auto);
}

.review__footer-link {
    display: block;
    width: 56px;
    height: 20px;
	background: center / contain no-repeat url(/local/templates/hualian/components/bitrix/news.list/main-reviews-widget/review_2gis.svg);
}

.review__button {
	width: 200px;
    height: 50px;
    border-radius: 60px;
    background: #2086cf;
    font-size: 20px;
    color: #ffffff;
    border: none;
    padding: 0 25px;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
	margin: 20px auto;
}

.review__button:hover {
	opacity: 0.7;
}
