.customer-ratings .stats--wrapper .bar {
                                background-color: #c5c5c5;
                                border-radius: 15px;
                                color: #fff;
                                content: "";
                                height: 20px;
                                margin: 0 20px 0 0;
                                position: relative;
                                width: 100%;
                                z-index: -1;
                            }

                            .stats--wrapper {
                                display: grid;
                                grid-template-columns: 3fr minmax(17%, .5fr);
                                grid-template-rows: repeat(auto-fill, minmax(25px, auto));
                                grid-column-gap: 20px;
                                grid-row-gap: 15px;
                                align-items: center;
                            }

                            .customer-ratings .stats--wrapper .bar:before {
                                color: #fff;
                                font-size: 14px;
                                font-weight: 600;
                                left: -16px;
                                position: absolute;
                                text-align: right;
                                top: calc(50% - 1px);
                                transform: translateY(-50%);
                                z-index: 1;
                            }

                            .customer-ratings .stats--wrapper .bar:after {
                                background-color: #195ca3;
                                border-radius: 15px;
                                content: "";
                                height: 100%;
                                left: 0;
                                position: absolute;
                                text-align: center;
                                top: 0;
                                z-index: -1;
                            }