@charset "UTF-8";
.reviews-slider-wrapper {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.review-slide-list {
	box-sizing: border-box !important;
	padding: 48px;
	border: solid 2px #2a2e35;
	border-radius: 24px;
}
.review-slide-list__item {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.author {
	display: grid;
	grid-template-columns: 64px 1fr;
	grid-template-rows: auto;
	-moz-column-gap: 8px;
	column-gap: 8px;
	row-gap: 0;
}
.author__image-wrap {
	grid-row: span 2;
	width: 64px;
	height: 64px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	overflow: hidden;
}
.author__image-wrap_real {
	box-sizing: border-box;
	border: 2px solid #00ccad;
}
.author__image-wrap_fallback,
.author__image-wrap_bg-gradient {
	background-image: linear-gradient(90deg, #00ccad 0%, #52dcc7 100%);
	background-color: transparent;
}
.author__image-wrap_bg-classic {
	background-image: none;
}
.author__image {
	display: block;
}
.author__svg {
	display: block;
	width: 40px;
	height: 40px;
	fill: #fafaf9;
}
.author__company {
	text-transform: capitalize;
}

.author-title {
	align-self: end;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
}
.author-title__name,
.author-title__position {
	text-transform: capitalize;
	line-height: 1em !important;
}
.author-title__name::after {
	content: ', ';
	display: inline;
	padding: 0;
	margin: 0;
}

.rating {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 4px;
}
.rating__icon {
	width: 24px;
	height: 24px;
}
.rating__icon svg {
	display: block;
	width: 100%;
	height: 100%;
	fill: #00ccad;
}

.reviews-controls {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
}

.reviews-pagination {
	box-sizing: border-box;
	display: flex;
	gap: 8px;
	justify-content: flex-start;
	align-items: center;
	padding: 0 0 0 24px;
}
.reviews-pagination__item {
	width: 28px;
	height: 8px;
	border-radius: 4px;
	background-color: #a3ede1;
	transition: all 400ms ease-in-out;
	cursor: pointer;
}
.reviews-pagination__item_current {
	width: 80px;
	background-color: #00ccad;
}

.reviews-buttons {
	display: flex;
	gap: 24px;
}
.reviews-buttons__btn {
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 48px;
	height: 48px;
	padding: 0;
	background: #00ccad;
	border-radius: 50%;
}
.reviews-buttons__btn:hover {
	background: #52dcc7;
}
.reviews-buttons__btn svg {
	fill: #fafaf9;
	display: block;
	width: 24px;
	height: 24px;
}

.review__text {
	margin-bottom: 0 !important;
}

.review__text_res {
	text-align: right;
	font-weight: 700 !important;
}

.review-slide__rating {
	margin-top: 16px;
}
