.testimonial-content {
	display: -webkit-box;
	-webkit-line-clamp: 3;       /* Limit to 3 lines */
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	opacity: 0.7;
}


@media only screen and (min-width: 800px) {
	.testimonial-card {
		border-radius: 8px;
		padding: 20px;
		height: 128px;
		border: 1px solid rgba(255, 255, 255, 0.40);
		background: rgba(255, 255, 255, 0.20);
		box-shadow: 1px 0px 1px 0px rgba(255, 255, 255, 0.22) inset;
	}

	.testimonial-content {
		text-align: center;
		font-size: 14px;
	}

	.testimonial-rating {
		margin-top: 12px;
	}
}

@media only screen and (max-width: 799px) {
	.testimonial-wrapper {
		background-color: var(--mobile-section-bg);
	}

	.testimonial {
		position: relative;
		width: 100%;
		height: 240px;
		overflow: hidden;
	}
	.testimonial-card {
		position: absolute;
		width: 85%;
		height: 100px;
		font-size: 0.24rem;
		transition: transform 0.5s ease-in;
		padding: 15px 20px;
		background: rgba(255, 255, 255, 0.20);
		box-shadow: 1px 0px 1px 0px rgba(255, 255, 255, 0.22) inset;
		opacity: 0;
		transform: translate(0, 260%);
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		justify-content: center;
	}

	.testimonial-rating {
		margin-top: 10px;
	}
	
	.testimonial-rating img {
		width: 15px;
		height: 15px;
	}

	.testimonial-left {
		opacity: 1;
		border-radius: 0px 8px 8px 0px;
		transform: translate(0, 0);
	}
	.testimonial-right {
		opacity: 1;
		border-radius: 8px 0 0 8px;
		transform: translate(20%, 120px);
	}
	.exit-left {
		opacity: 1;
		transform: translate(100px, -130px);
	}
	.move-left {
		opacity: 1;
		transform: translate(0, 0);
	}
	
	.enter-right {
		opacity: 1;
		transform: translate(20%, 120px);
		border-radius: 8px 0 0 8px;
	}
}
