/* Testimonial slider
------------------------------------ */

.testimonial-slider.fs-blog-carousel {
	position: relative;
	margin-bottom: 25px;
	.swiper-holder {
		background: #fff;
		//margin-top: 60px; // Reason for prepared an option on Testimonial slider element
	}
	img {
		max-width: 60%;
		//margin-top: -60px; // Reason for prepared an option on Testimonial slider element
	}
	.swiper-slider {
		position: relative;
	}
	blockquote {
		position: absolute;
		right: 10%;
		top: 50%;
		text-transform: uppercase;
		.translateY();
		padding-right: 30px;
		max-width: 50%;
		width: 380px;
		border: none;
		cite {
			border-bottom: 2px solid @color-1;
			display: inline-block;
			text-transform: none;
			padding-bottom: 10px;
			margin-bottom: 30px;
		}
		&:before {
			left: -80px;
			font-size: 160px;
			top: 96px;
		}
	}
	.fs-pager {
		span {
			font-size: 24px;
		}
		&:before,&:after {
			display: none;
		}
		width: 150px;
		position: absolute;
		bottom: 20px;
		right: 0;
		z-index: 900;
	}

	.swiper-button-prev.swiper-button-prev {
		left: -60px;
	}
	.swiper-button-next.swiper-button-next {
		right: -60px;
	}

	// responsive for testimonial slider
	@media screen and (max-width: 767px){

		blockquote{
			font-size: 20px;
			line-height: 1.4em;

			cite{
				margin-bottom: 14px;
			}
		}
	}

	@media screen and (max-width: 600px){
		blockquote{
			font-size: 9px;
			line-height: 1.4em;
			padding-right: 0px;
			text-transform: none;

			cite{
			    padding-bottom: 0px;
			    margin-bottom: 4px;
			    font-size: 12px;
			}
		}

		.fs-pager{
			bottom: -6px;
			width: 100px;

			span{
				font-size: 14px;
			}
		}
	}
	&.color-brand-bg {
		background: none !important;
		.swiper-holder {
			background: lighten(@color-brand, 10%);
		}
	}
}