.recensione .recensione-stelle {
	font-size: 22px;
	color: gold;
}

.recensione .internal-wrap {
	position: relative;
	margin-bottom: 60px !important;

	@media (min-width: 992px) { 
		margin-bottom: 100px !important;
	}
}
.recensione .img-wrap {
	z-index: 1;
	position: relative;
}
.recensione .img-wrap img {
	min-height: 460px;
}
.recensione .img-wrap:after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.2);
}
.recensione .text-wrap {
	z-index: 2;
	padding: 17px 10px;
}
@media (min-width: 992px) {
	.recensione .text-wrap {
		padding: 35px 30px;
	}
}
.recensione .text-wrap .title {
	margin: 0;
	font-size: 40px;
}
@media (min-width: 1700px) {
	.recensione .text-wrap .title {
		font-size: 70px;
	}
}
.recensione .text-wrap .info-wrap div {
	padding-right: 30px;
}
.recensione .text-wrap .info-wrap div .key {
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 700;
	margin-bottom: 8px;
	width: -moz-max-content;
	width: max-content;
}
.recensione .text-wrap .info-wrap div .value {
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 300;
	width: -moz-max-content;
	width: max-content;
}
.recensione .text-wrap .the-content p {
	margin-bottom: 15px;
	font-size: 14px;
	font-weight: 300;
	line-height: 1.6em;
}
@media (min-width: 992px) {
	.recensione .text-wrap .the-content p {
		font-size: 16px;
	}
}
.recensione .text-wrap .the-content p:last-child {
	margin-bottom: -6px;
}

.recensione {
	width: 100%;
}
.recensione .hidden-info {
	opacity: 1;
	width: 100%;
	transition: opacity 300ms ease;
	transition-delay: 200ms;
}
@media (min-width: 1280px) {
	.recensione {
		width: 50%;
	}
}
.review-content-wrapper {
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
}
.review-content-wrapper .review-content {
	height: 90px;
	min-height: 90px;
	overflow: hidden;
	position: relative;
	transition: all 0.3s ease-in-out;

	@media (min-width: 1280px) {
		height: 100px;
		min-height: 100px;
	}
}
.review-content-wrapper .review-content::after {
	content: '';
	width: 100%;
	height: 30px;
	position: absolute;
	bottom: 0;
	background: rgb(0,0,0);
	background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
}
.review-content-wrapper .review-button {
	display: inline-flex;
	justify-content: center;
	padding-top: 24px;
}
.review-content-wrapper .review-button .btn-see-more {
	background-color: rgba(67, 67, 67, 0.54);
	position: relative;
	font-size: 14px;
	font-weight: 500;
	color: white;
	box-shadow: none;
	border: none;
	border-radius: 99px;
	padding: 12px 46px 12px 29px;
}
.review-content-wrapper .review-button .btn-see-more::after {
	content: '';
	position: absolute ;
	display: block;
	width: 10px;
	height: 15px;
	right: 25px;
	top: 0;
	bottom: 0;
	margin: auto;
	background: url('../../../assets/media/arrow-down-white.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100% auto;
	transition: all 0.3s ease-in-out;
}
.review-content-wrapper .review-button .btn-see-more.open::after {
	transform: rotate(180deg);
}