.strsip-reviews {
    & .arrow-slick {
        left: -25px;
        top: 0;
        transform: translate(0%, 0%);
        background: none;
        border: 1px solid #f3f3f3;
        border-radius: 2px;
        width: 30px;
        height: calc(100% - 30px);
        opacity: 1;
        &.arrow-slick-next {
            left: initial;
            right: -25px;
        }
    }
    .line {
        display: flex;
        align-items: center;
        padding: 15px;
        background: #f7f7f7;
        max-width: fit-content;
        border-radius: 10px;
        gap: 15px;
        line-height: 1;
        margin-bottom: 0.5rem;
        .overall_rating {
            flex-shrink: 1;
            display: flex;
            align-items: center;
            gap: 1rem;
            .rating {
                color: #4d4d4d;
                font-size: 3.2rem;
                line-height: 1;
                font-weight: 500;
            }
        }
        .image-wrapper {
            max-width: 150px;
            height: auto;
            padding: 0 0 0 15px;
            border-left: 1px solid #fff;
            a {
                display: block;
            }
            img {
                width: 100%;
                height: auto;
                max-width: 100%;
            }
        }
    }
    .stars {
        display: flex;
        align-items: center;
        gap: 5px;
        .active {
            background: url(./stars.svg) 50% 50%/cover no-repeat;
            width: 16px;
            height: 16px;
        }
    }
    .item-box-yarew {
        padding: 5px;
        .item {
            padding: 1rem;
            background: #f7f7f7;
            border-radius: 10px;
            min-height: 400px;
            .author {
                font-size: 1.1rem;
                font-weight: bold;
            }
            .star-wrapper {
                margin: 5px 0;
            }
            &.no_photo p.comment.scroll-shadows {
                max-height: 300px;
                height: 100%;
            }
            p.comment.scroll-shadows {
                overflow-y: auto;
                max-height: 200px;
                min-height: 200px;
                overflow-x: hidden;
                padding: 10px;
                background: #ffffff;
                border-radius: 10px;
            }
            p.comment.scroll-shadows::-webkit-scrollbar {
                width: 10px;
            }
            p.comment.scroll-shadows::-webkit-scrollbar-track {
                -webkit-box-shadow: 5px 5px 5px -1px rgba(34, 60, 80, 0.2) inset;
                background-color: #ffffff;
                border-radius: 10px;
            }
            p.comment.scroll-shadows::-webkit-scrollbar-thumb {
                border-radius: 10px;
                background: #c8c8c8;
                :hover {
                    background: #bcbcbc;
                }
            }
            .review_gallery {
                display: flex;
                align-items: flex-start;
                gap: 5px;
                .review_gallery_item {
                    border-radius: 10px;
                    aspect-ratio: 4 / 5;
                    overflow: hidden;
                    height: 90px;
                    a {
                        display: block;
                        width: 100%;
                        height: 100%;
                    }
                    img {
                        object-fit: cover;
                        height: 95px;
                    }
                    :hover {
                        opacity: 0.8;
                    }
                }
            }
        }
    }
}