
/*Homepage: Featured Providers Carousel*/
.slides-container-hpProviders {
	-ms-overflow-style: none; /* Internet Explorer 10+ */
	scrollbar-width: none; /* Firefox */
}
.slides-container-hpProviders::-webkit-scrollbar {
	display: none; /* Safari and Chrome */
}

.homePage-providersCarouselContainer {
    transition-property: all;
    transition-duration: 500ms;
    transition-timing-function: linear;
}
.homePage-provider {
    width: 200px;
    /*height: 150px;*/
    max-width: 100%;
}


/*Home Page: Featured Videos Carousel*/
.slides-container-hpVideos {
	-ms-overflow-style: none; /* Internet Explorer 10+ */
	scrollbar-width: none; /* Firefox */
}
.slides-container-hpVideos::-webkit-scrollbar {
	display: none; /* Safari and Chrome */
}

.providerPage-hpVideosCarouselContainer {
    transition-property: all;
    transition-duration: 500ms;
    transition-timing-function: linear;
}
.homePage-video {
    width: 200px;
    height: 356px;
    /*border-top-left-radius: 90px;*/
    /*border-top-right-radius: 90px;*/
    border-radius: 30px;
    cursor: pointer;
}

/*Provider Page: Videos Carousel*/
.slides-container-videos {
	-ms-overflow-style: none; /* Internet Explorer 10+ */
	scrollbar-width: none; /* Firefox */
}
.slides-container-videos::-webkit-scrollbar {
	display: none; /* Safari and Chrome */
}

.providerPage-videosCarouselContainer {
    transition-property: all;
    transition-duration: 500ms;
    transition-timing-function: linear;
}
.providerPage-video {
    width: 200px;
    height: 356px;
    /*border-top-left-radius: 90px;*/
    /*border-top-right-radius: 90px;*/
    border-radius: 30px;
    cursor: pointer;
}

/*Homepage: Featured Reviews Carousel*/
.slides-container-hpReviews {
	-ms-overflow-style: none; /* Internet Explorer 10+ */
	scrollbar-width: none; /* Firefox */
}
.slides-container-hpReviews::-webkit-scrollbar {
	display: none; /* Safari and Chrome */
}

.homePage-reviewsCarouselContainer {
    transition-property: all;
    transition-duration: 500ms;
    transition-timing-function: linear;
}
.homePage-review {
    width: 200px;
    /*height: 150px;*/
    max-width: 100%;
}

/*Provider Page: Reviews Carousel*/
.slides-container-reviews {
	-ms-overflow-style: none; /* Internet Explorer 10+ */
	scrollbar-width: none; /* Firefox */
}
.slides-container-reviews::-webkit-scrollbar {
	display: none; /* Safari and Chrome */
}

.providerPage-reviewsCarouselContainer {
    transition-property: all;
    transition-duration: 500ms;
    transition-timing-function: linear;
}
.providerPage-review {
    width: 200px;
    /*height: 150px;*/
    max-width: 100%;
}

.review-message-container {
    max-height: 7 * (1.2em); /* 4 lines * line-height (adjust as needed) */
    overflow: hidden;
    line-height: 1.2em; /* Adjust line-height to match your font size */
}

.review-message-text {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 7; /* Limit the number of lines to 4 */
    overflow: hidden;
}