#site-testimonials {
	padding: 60px 0px;
	background: var(--site-bg);
}

.site-testimonials-wrap {
	overflow: hidden;
}

.testimonials-info-wrap {
	height: 100%;
}

.testimonials-info {
	font-weight: 500;
	letter-spacing: 1px;
	background: var(--site-primary);
    padding: 20px 40px;
    color: #fff;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 20px;
    text-transform: uppercase;
}

.testimonials-container {
	margin: 0px 80px;
}

.testimonials-list {

}

.testimonials-list-item-wrap {
	padding-left: 10px;
    padding-right: 10px;
}

.testimonials-list-item {
	border-radius: 20px;
	padding: 34px;
	background: #fff;
	background: #D9EEAB;
}

.testimonials-list-item .author-name {
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.6px;
	text-align: center;
	color: var(--site-primary);
	margin-bottom: 10px;
}

.testimonials-list-item .author-body {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}

.testimonials-list-item .author-rating {
	text-align: center;
	margin-bottom: 20px;
}

.testimonials-list-item .author-stars-icon {
	color: var(--site-secondary);
	font-size: 16px;
}

.testimonials-list-item .author-date,
.testimonials-modal-wrap .author-date {
	text-align: right;
	margin-top: 30px;
	text-transform: uppercase;
	font-size: 12px;
}

.testimonials-list-item .author-date {
	background: #fff !important;
	border-radius: 50px !important;
	padding: 5px 10px !important;
	display: inline-block !important;
}

.testimonials-list-item .author-badge,
.testimonials-modal-wrap .author-badge {
	color: #0E1311;
	font-size: 13px;
	display: flex;
	align-items: center;
	margin-bottom: 20px;	
}

.testimonials-list-item .author-badge span,
.testimonials-modal-wrap .author-badge  span{
	font-size: 15px;
	margin-right: 4px;
}

.testimonials-container .testimonials-left-btn,
.testimonials-container .testimonials-right-btn {
	font-size: 24px;
    position: absolute;
    top: 0;
    bottom: 0;
    align-items: center;
    display: flex;
    cursor: pointer;
}

.testimonials-container .testimonials-left-btn {
    left: -50px;
}

.testimonials-container .testimonials-right-btn {
    right: -50px;	
}

.testimonials-info .info-title {
	font-weight: 700;
}

.testimonials-info .info-rating {
	margin: 15px 0px;
}

.testimonials-info .info-stars-icon {
	font-size: 22px;
	color: var(--site-secondary);
}

#testimonials-modal {
    background: rgba(0,0,0, 0.75);
    position: fixed;
    z-index: 9;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.testimonials-modal-wrap {
	padding: 40px;
	box-sizing: border-box;
	max-width: 640px;
    width: 100%;
    background: #fff;
    left: 0;
    right: 0;
    margin: 5% auto auto auto;    
}

.testimonials-modal-close {
	cursor: pointer;
	font-size: 34px;
    text-align: right;
    display: flex;
    justify-content: end;
}

.testimonials-modal-wrap .author-name {
	margin-bottom: 0px;
}

.testimonials-modal-wrap .author-stars-icon {
	color: var(--site-primary);	
	font-size: 19px;
}

.testimonials-modal-wrap .author-date {
	padding-top: 30px;
	border-top: 1px solid #eee;
	text-align: center;
}


@media (max-width: 980px) {
    #site-testimonials {
        padding: 40px 20px;
    }
}