.testimonial-block {
	padding: 65px 0;
	position: relative;
	background-color: var(--pale-blue);
	overflow: hidden;
}

.testimonial-text h2 {
	padding-bottom: 15px;
}

.testimonial-text p {
	color: var(--dark);
}

.testimonial-text {
	margin-bottom: 20px;
}

.testimonial-slide-item {
	background-color: var(--white);
	padding: 40px 30px 35px;
	box-shadow: var(--box-shadow-15);
	border-radius: 10px;
	margin: auto 25px;
}

.js-testimonial-slider .slick-track {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
	padding-bottom: 20px;
}

.js-testimonial-slider {
	width: calc(100% + 40px);
	margin: 0 -20px;
	padding-bottom: 35px;
}

.testimonial-bg {
	position: absolute;
	bottom: 0;
	right: 0;
}

.testimonial-bg img {
    width: 1814px;
    height: 660px;
    max-width: unset;
}

.testimonial-content {
	position: relative;
	z-index: 1;
}

.testimonial-slide-item h4 {
	font-size: 18px;
	padding-bottom: 12px;
	color: var(--loyal-blue);
	text-transform: uppercase;
	font-weight: normal;
}

.testimonial-slide-item h5 {
	font-family: var(--primary-font);
	font-size: 17px;
	font-style: italic;
	font-weight: 400;
	color: var(--dark);
	padding-bottom: 0;
}

.testimonial-slide-item p {
	padding-bottom: 20px;
}

.testimonial-author-container{
    display: flex;
    position: relative;
    justify-content: flex-start;
    flex-direction: row;
}


.wysiwyg .testimonial-author-picture{
    margin-right: 20px;
    width: 150px;
    height: auto;
    display: block;
}

.testimonial-author-picture{
    margin-right: 20px;
    width: 30%;
    height: auto;
    display: block;
}

.testimonial-author-picture img{
    width: 100%;
    height: auto;
}

.testimonial-author-details{
    width: 70%;
    display: block;
}

@media (min-width: 768px){
	
	.js-testimonial-slider .slick-track {
		padding-bottom: 0;
	}

	.testimonial-slide-item {
		margin: auto 20px;
	}

	.testimonial-slide-item p {
	    padding-bottom: 26px;
	}

	.testimonial-slide-item {
	    padding: 40px;
	}

	.js-testimonial-slider {
	    padding-bottom: 0;
	}

	.testimonial-block {
	    padding: 65px 0 45px;
	}

	.testimonial-text p {
	    padding: 0 0 20px 0;
	}

	.js-testimonial-slider .slick-prev {
		left: -21px;
	}

	.js-testimonial-slider .slick-next {
		right: 0px;
	}


    .testimonial-author-picture{
        margin-right: 20px;
        width: 20%;
        height: auto;
        display: block;
    }

    .testimonial-author-details{
        width: 80%;
        display: block;
    }


}

@media (min-width: 1200px){
	.testimonial-wrapper {
		display: flex;
		align-items: center;
		justify-content: space-between;
	}

	.testimonial-text {
		width: 50%;
		margin-bottom: 0;
		max-width: 540px;
	}

	.js-testimonial-slider {
		width: 50%;
		padding: 0 45px;
	}

	.testimonial-block {
	    padding: 138px 0;
	}

	.testimonial-slide-item {
	    max-width: 533px;
	    display: block !important;
	}

	.js-testimonial-slider .slick-prev {
		left: 0;
	}

	.js-testimonial-slider .slick-next {
		right: 30px;
	}
}


/* Testimonial Listing */
.testimonial-listing-item {
    margin-bottom: 35px;
    background-color: var(--white);
    padding: 40px 30px 35px;
    box-shadow: var(--box-shadow-15);
    border-radius: 10px;
}

.testimonial-listing-item p {
	padding-bottom: 20px;
}

.testimonial-listing-item h4 {
    padding-bottom: 12px;
}

.testimonial-listing-item h5 {
    font-family: var(--primary-font);
    font-size: 17px;
    font-style: italic;
    font-weight: 400;
}

/* Load More Progress Bar */

.blog-listing__pagination,
.post-listing__pagination {
    text-align: center;
    margin-top: 50px;
}

.load-more__progress {
    margin-top: 15px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    height: 10px;
    border: 0;
    border-radius: 10px;
    min-width: 250px;
    overflow: hidden;
}
progress::-webkit-progress-bar,
progress::-webkit-progress-value,
progress::-moz-progress-bar {
    height: 10px;
    border: 0;
    border-radius: 0; 
}
progress::-webkit-progress-bar {
    background-color: #ddd;
}
progress::-webkit-progress-value {
    background-color: var(--loyal-blue); /* TODO: Please add a branded background color for progress bar value */
}

/* Loading Indicator */
.is-loading:before  {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 50px;
    height: 50px;
    border: 5px solid;
    border-color: #E3E3E3 #E3E3E3 transparent;
    border-radius: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-animation: simpleSpin 1.5s linear infinite;
    animation: simpleSpin 1.5s linear infinite;
}

/* Load More Button */
.load-more__btn {
    border: 0;
    display: block;
    margin: 20px auto auto;
    transition: var(--transition-ease);
}

.load-more__btn::before {
    transition: all 0.3s ease 0s;
	margin-top: 2px;
}

.load-more__btn.is-loading {
    position: relative;
    opacity: 0.6;
    cursor: not-allowed;
}

.load-more__btn.is-loading:before {
    width: 20px;
    height: 20px;
}

.load-more__btn.is-disabled {
    cursor: not-allowed;
    background-color: #4a4a4a;
}

.load-more__btn.is-disabled:hover {
    color: var(--white);
}
.load-more__btn.is-disabled:hover::before {
    right: 28px
}
@media (min-width: 768px) {
	.testimonial-listing-item p {
		padding-bottom: 26px;
	}
}