.googleReviews{
    width: 440px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}
    .googleReviews_header{
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: flex-end;
        gap: 20px;
    }
        .googleReviews_name{
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 10px;
            font-size: 24px;
        }
            .googleReviews_logo{
                float: left;
                height: 36px;
            }
            .googleReviews_place{
                float: left;
                font-size: 24px;
                font-weight: bold;
            }
        .googleReviews_rating{
            flex-shrink: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }
            .googleReviews_rating-score{
                font-size: 60px;
                font-weight: 700;
                line-height: 1;
            }
            .googleReviews_rating-stars{
                float: left;
                background: #dadce0;
                position: relative;
            }
                .googleReviews_rating-stars-value{
                    float: left;
                    height: 100%;
                    background: #f6b500;
                    position: absolute;
                    left: 0;
                    top: 0;
                    z-index: 1;
                }
                .googleReviews_rating-stars-mask{
                    float: left;
                    width: 70px;
                    position: relative;
                    z-index: 2;
                }
            .googleReviews_rating-total-reviews{
                line-height: 24px;
                color: #70757a;
                font-size: 12px;
            }
    .googleReviews_main{
        width: 440px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
        .googleReviews_reviews{
            display: flex;
            flex-direction: column;
            width: 100%;
            gap: 20px;
        }
            .googleReviews_reviews-title{
                float: left;
                font-size: 16px;
                font-weight: bold;
            }
            .googleReviews_reviews-items{
                position: relative;
                display: flex;
                align-items: center;
                gap: 20px;
            }
                .googleReviews_slider-wrapper{
                    align-items: center;
                }
                    .googleReviews_reviews-item{
                        width: 440px;
                        height: 280px;
                        display: flex;
                        flex-direction: column;
                        padding: 25px;
                        gap: 25px;
                        background: #fff;
                        border: 1px solid #dadce0;
                        border-radius: 20px;
                    }
                    .googleReviews_reviews-item:not(:last-child){
                        padding-bottom: 20px;
                        margin-bottom: 20px;
                        border-bottom: 1px solid #dadce0;
                    }
                        .googleReviews_reviews-item-header{
                            display: flex;
                            flex-direction: row;
                            align-items: center;
                            gap: 20px;
                        }
                            .googleReviews_reviews-item-author{
                                flex-grow: 1;
                                display: flex;
                                flex-direction: row;
                                align-items: center;
                                gap: 10px;
                                float: left;
                            }
                                .googleReviews_reviews-item-author-image{
                                    float: left;
                                    width: 40px;
                                }
                                .googleReviews_reviews-item-author-info{
                                    display: flex;
                                    flex-direction: column;
                                    float: left;
                                    font-size: 12px;
                                    line-height: 1.5;
                                }
                                    .googleReviews_reviews-item-author-name{
                                        float: left;
                                        font-weight: bold;
                                    }
                                    .googleReviews_reviews-item-author-time{
                                        float: left;
                                        color: #70757a;
                                    }
                            .googleReviews_reviews-item-rating{
                                flex-shrink: 0;
                                float: left;
                                font-size: 32px;
                                font-weight: 600;
                            }
                        .googleReviews_reviews-item-comment{
                            overflow: scroll;
                        }
        .googleReviews_link{
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: center;
            float: left;
            height: 40px;
            margin-top: 10px;
            border-radius: 20px;
            background: #1a73e8;
            transition: all .2s ease-in-out;
        }
        .googleReviews_link:hover{
            background: #1b66ca;
            box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.3),
                        0 1px 3px 1px rgba(60, 64, 67, 0.15);
        }
            .googleReviews_link-label{
                float: left;
                padding: 0 20px;
                color: #ffffff;
                font-size: 14px;
                font-weight: bold;
            }

.googleReviews_items-button{
    font-size: 28px;
    cursor: pointer;
    position: absolute;

    transition: all .2s ease-in-out;

    &.previous{
        left: -50px;
    }
    &.next{
        right: -50px;
    }

    &.swiper-button-disabled{
        opacity: 0.4;
        cursor: default;
    }
}

@media (max-width: 1024px) {

    .googleReviews{
        width: 100%;
        align-items: center;
        padding: 0;
        gap: 40px;
    }
        .googleReviews_rating-score {
            font-size: 48px;
        }
        .googleReviews_main{
            width: 100%;
            padding: 0 0 50px 0;
        }
            .googleReviews_items-button{
                &.previous{
                    bottom: -50px;
                    left: calc(50% - 50px);
                }
                &.next{
                    right: calc(50% - 50px);
                    bottom: -50px;
                }
            }
            .googleReviews_reviews-item{
                width: 100%;
            }

}