.customer_reviews_slider_section .star {
  background-color: var(--pri-color);
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4px;
  color: white !important;
}

.customer_reviews_slider_section .star::after {
  content: "";
  display: block;
  width: 17px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17' height='16' viewBox='0 0 17 16' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M10.3051 5.89621H16.6884L11.5473 9.55097L8.36923 11.7924L3.20313 15.4472L5.16506 9.55201L0 5.89621H6.38226L8.34419 0L10.3051 5.89621ZM11.9697 10.9152L8.34419 11.8154L13.4853 15.4941L11.9697 10.9132V10.9152Z' fill='%23ffffff'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

.customer_reviews_slider_section .swiper-button-next,.swiper-button-prev{
    top: 50%;
    transform: translateY(-50%);
}
.customer_reviews_slider_section .swiper-button-next::after,.swiper-button-prev::after{
    transform: scale(0.5)!important;
    color: var(--lightgrey-color);
}
.customer_reviews_slider_section .swiper-button-next{
    right: 30px;
    left: auto;
}
.customer_reviews_slider_section .swiper-button-prev{
    right: auto;
    left: 30px;
}
@media screen and (max-width:1024px){
   .customer_reviews_slider_section .swiper-button-next{
    right: 12px;
}
.customer_reviews_slider_section .swiper-button-prev{
    left: 12px;
} 
}
@media screen and (max-width:767px){
   .customer_reviews_slider_section .swiper-button-next{
    display: none;
}
.customer_reviews_slider_section .swiper-button-prev{
    display: none;
} 
}

.customer_reviews_slider_section .swiper-slide {
  height: auto;
}


/*  */
#read_all{
    position: relative;
    cursor: pointer;
}
#read_all #read_all_reviews_icon{
    opacity: 0;
    position: absolute;
    left: auto;
    right: 20px;
    margin-top: 2px;
}
#read_all{
    border-bottom: 2px solid transparent;
    color: var(--pri-color)!important;
    width: fit-content!important;
}
#read_all,#read_all *{
    transition: all 0.3s ease;
}

#read_all:hover{
    border-bottom: 2px solid var(--pri-color);
}
#read_all:hover #read_all_reviews_icon{
    opacity: 1;
    right: -25px;
}