
.img_wrapper {
    max-width: 100%;
    height: 10vw;
    display: flex;
    justify-content: left;
    padding-left: 15px;
    align-items: flex-start;
}


.img_wrapper img {
    max-width: 100%;
    max-height: 100%;
}
.review_slider_section .carousel-inner{
    text-align: left;
}
.review_title{
    font-weight: 800 !important;
    white-space: nowrap;    /* Prevent text from wrapping */
    overflow: hidden;       /* Hide any overflowing text */
    text-overflow: ellipsis;
    width: 250px;
}
.review_text {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 3em;
}
.reviewer{
    font-weight: 800 !important;
    color: rgb(121 121 121) !important
}
.review_slider_controls #rs_control_prev{
    display: flex;
    justify-content: left;
    left: 7px;
}
.review_slider_controls #rs_control_next{
    display: flex;
    justify-content: right;
    right: 7px;
}

@media screen and (min-width: 576px) {
    .review_slider_section .carousel-inner {
        display: flex;
    }
    .review_slider_inner .carousel-item {
        display: block;
        margin-right: 0;
        flex: 0 0 calc(100%/5);
    }
    .img_wrapper {
        height: 2vw;
        width: auto;
    }
}
.review_slider_inner .carousel-item {
    display: block;
}

.review_slider_section .carousel-inner {
    padding: 1rem;
}
.img_wrapper img{
    width: auto;
}

.card {
    margin: 0 .5rem;
}


@media screen and (max-width: 576px) {
    .review_slider_section .carousel-inner {
        display: flex;
        overflow-x: auto; /* Allow horizontal scrolling */
        
    }
    .carousel-item {
        flex: 0 0 100%; /* Each item takes up 100% of the width */
        margin-right: 0;
    }
    .img_wrapper {
        height: 20vw;
        width: auto; /* Adjust the height for mobile */
    }
}