/* Google Reviews Styles */
#avis-google {
	text-align: center;
	background-color: #eee;
	box-shadow: inset 0 0 3px rgba(0,0,0,0.03), inset 0 0 33px rgba(0,0,0,0.07);
}

#google-reviews {
    position: relative;
    overflow: hidden;
}

#average-rating {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2em;
    color: #333;
    background-color: #fff;
    padding: 10px 15px;
    border-radius: 8px;
    margin: 20px 0;
}

#average-stars {
    color: #FFD700;
    margin-right: 10px;
}

#average-stars {
    display: inline-block;
    font-size: 0;
}

.review-stars li {
    display: inline-block;
}

.review-stars .star,
#average-stars .star {
    display: inline-block;
    width: 24px;
    height: 24px;
    background-color: #ffa500;
    clip-path: polygon(
        50% 0%,
        61% 35%,
        98% 35%,
        68% 57%,
        79% 91%,
        50% 70%,
        21% 91%,
        32% 57%,
        2% 35%,
        39% 35%
    );
    margin-right: 4px;
    position: relative;
    top: 4px;
}

.review-stars .star {
    width: 18px;
    height: 18px;
}

.review-stars .star.inactive ,
#average-stars .star.inactive {
    background-color: #d3d3d3;
}

#average-rating-value {
    font-weight: bold;
    color: #333;
}

.review-item {
    border: solid 1px rgba(190, 190, 190, .35);
    padding: 20px;
    margin-bottom: 15px;
    max-width: 100%;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    text-align: center;
}

.review-img {
    display: inline-block;
    position: relative;
    width: 36px;
    height: 36px;
    top: 11px;
    right: 3px;
}

.swiper-pagination {
    position: relative;
    bottom: -10px !important;
}

.review-author {
    font-weight: bold;
}

.slick-dots {
    text-align: center;
    margin-top: 20px;
}

.slick-dots li {
    display: inline-block;
    margin: 0 5px;
}

.slick-dots .dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #bbb;
    border-radius: 50%;
    cursor: pointer;
}

.slick-dots .slick-active .dot {
    background-color: #717171;
}

.swiper-pagination-bullet-active {
	background: var(--extra-color);
}

@media (max-width: 768px) {
    #average-rating {
        flex-direction: column;
    }

    #average-rating a.btn {
        font-size: 16px;
        margin-top: 10px;
    }
}