.product-reviews {
	padding: 20px 0;
	border-top: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
	font-family: 'Roboto', sans-serif;
}
.product-reviews .product-reviews__wrapper {
	display: flex;
	flex-direction: column-reverse;
	justify-content: space-between;
	gap: 20px;
}
.product-reviews .product-recommendations {
	border: none;
	margin: 0;
	padding: 0;
	text-align: left;
	flex-shrink: 0;
	position: relative;
}
.product-reviews .product-recommendations__title {
	margin: 0;
	padding: 0;
	text-transform: none;
	font-size: 22px;
}
.product-recommendations#product-review .product-recommendations__rating-line {
	padding: 5px 0;
	font-size: 16px;
	justify-content: flex-start;
	align-items: center;
	gap: 10px;
}
.product-recommendations .product-recommendations__form {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 10px;
}
.product-recommendations .product-recommendations__form .form-group {
	margin: 0;
	display: flex;
	width: calc(50% - 5px);
}
.product-recommendations .product-recommendations__form .form-group.text-group {
	width: 100%;
}
.product-reviews .product-recommendations .rating-option input[type="radio"] {
	display: none;
}
.product-reviews .product-recommendations .rating-option {
	margin-top: 5px;
}
.product-reviews .product-recommendations__form input[type="text"], .product-reviews .product-recommendations__form textarea {
	margin: 0;
}
.product-reviews .product-recommendations textarea {
	resize: none;
	min-height: 100px;
	padding: 10px;
	border: 1px solid #000;
}
.product-reviews .product-recommendations__form input[type="text"] {
	height: 40px;
	width: 100%;
	border: 1px solid #000;
	padding-left: 10px;
}
.product-reviews .product-recommendations__form input[type="submit"] {
	margin: 0;
}
.product-reviews .reviews-carousel {
	width: 100%;
	flex-grow: 1;
	overflow: hidden;
}
.reviews-carousel .glide-reviews, .reviews-carousel .review {
	height: 100%;
}
.reviews-carousel .review-info {
	display: flex;
	justify-content: space-between;
}
.reviews-carousel .text .quote{
	display: block;
	width: 50px;
	height: 50px;
	text-align: center;
}
.reviews-carousel .text {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 20px 0 0;
}
.reviews-carousel .glide {
	display: flex;
	height: 100%;
}
.reviews-carousel .glide__slides {
	display: flex;
	flex-wrap: nowrap;
	height: 100%;
}
.reviews-carousel .review {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.reviews-carousel .review .ratings {
	justify-content: center;
	padding: 0 0 5px;
}
.reviews-carousel .review-info {
	flex-direction: column;
	align-items: center;
}
.reviews-carousel .review-info .review-author {
	font-size: 14px;
}
.reviews-carousel .review-info .review-date {
	font-size: 11px;
}
.reviews-carousel .glide__arrows {
	position: absolute;
	bottom: 50px;
	display: flex;
	justify-content: space-between;
	width: 100%;
}
.reviews-carousel .glide__arrows button {
	border: none;
	background: none;
}
.reviews-carousel .glide__arrows img {
	width: 30px;
}
.product-recommendations .thanks {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #fff;
	z-index: 2;
	font-size: 18px;
	transition: all .5s ease;
	pointer-events: none;
	opacity: 0;
}
.product-recommendations .thanks.displayed {
	opacity: 1;
}
@media (min-width: 992px) {
	.product-reviews .reviews-carousel {
		max-width: 100%;
	}
	.product-reviews .product-reviews__wrapper {
		flex-direction: row;
		gap: 20px;
	}
	.product-reviews .product-recommendations__title {
		font-size: 30px;
	}
	.product-recommendations__rating-line {
		font-size: 18px;
	}
}
@media (min-width: 1200px) {
	#product-reviews.reviews-carousel .review {
		margin: 0;
		padding: 15px 0 0;
		flex: 0 0 auto;
	}
}

