//
//  Common
//  _____________________________________________

& when (@media-common = true) {
    .catalog-product-view {
        .product-reviews-summary {
            float: none;
            margin-bottom: 8px;
            .rating-summary {
                margin-bottom: 4px;
            }
            a {
                display: inline-block;
                line-height: 1.1;
            }
            .reviews-actions {
                .lib-font-size(@pdp-reviews-actions__font-size);
                color: @djo-gray;
                margin-top: 0;
                .action {
                    &:not(:last-child) {
                        margin-right: 0;
                        &::after {
                            content: '|';
                            display: inline-block;
                            margin-left: 11px;
                            margin-right: 9px;
                        }
                    }

                }
            }
        }
    }
}


//
//  Mobile
//  _____________________________________________

.media-width(@extremum, @break) when (@extremum = 'max') and (@break = @screen__m) {
    .catalog-product-view {
        .product-reviews-summary {
            .rating-summary {
                display: block;
                margin-right: 0;
            }
        }
    }
}


//
//  Desktop
//  _____________________________________________

.media-width(@extremum, @break) when (@extremum = 'min') and (@break = @screen__m) {
    .catalog-product-view {
        .product-reviews-summary {
            .rating-summary {
                display: inline-block;
                margin-right: 11px;
            }
        }
    }
}
