<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.reviews-wrapper {

}
.reviews-wrapper.is-selected {
    display: inline-block;
    width: 100%;
}
    .review-name {
        display: block;
        width: 100%;
        font-size: 2em;
        text-align: center;
    }
    .list-reviews {
        display: flex;
        align-items: stretch;
        flex-direction: row;
        flex-wrap: wrap;
        list-style: none;
        padding: 0;
        margin: 0;
    }
        .item-review {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            text-align: center;
            min-height: 220px;
            min-width: 240px;
            max-width: 300px;
            padding: 8px 8px 25px 8px;

            border-radius: 5px;

            font-family: Helvetica, Arial, sans-serif;
        }
        li.item-review {
            width: calc(33% - 20px);
            margin: 10px !important;
            background-color: #fff !important;
            background-image: none !important;
            /* padding-left: 0 !important; */
            box-shadow: 0 0 4px rgba(0,0,0,.25);
        }
            .review-link,
            .rw-recent-wrapper {
                position: absolute;
                text-decoration: none;
                box-shadow: none !important;
                border-bottom: none !important;
            }
            .review-link {
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                z-index: 10;
            }
            .rw-recent-wrapper {
                top: 8px;
                right: 8px;
                z-index: 11;
            }
                .rw-has-recent {
                    width: 15px;
                    height: 20px;
                    transform-origin: 50% 50%;
                    transform: rotate(25deg);
                }
            .review-logo {
                max-width: 80%;
                height: 55px;
                border: none !important;
                padding: 0 !important;
                object-fit: contain;
            }
            .review-rating-wrapper {
                margin: 4px 0;
            }
                .rating-note {
                    font-size: 2em;
                    font-weight: bold;
                }
                .rating-separator {

                }
                .rating-max {

                }

            .review-stars {

            }
                .icon-star {
                    width: 18px;
                    height: 18px;
                    display: inline-block;
                }
                .icon-star.star--full {
                    fill: #fbc410;
                    stroke: #fbc410;
                }
                .icon-star.star--empty {
                    fill: #a4a4a4;
                    stroke: #a4a4a4;
                }
                .icon-star.start--half {
                    fill: #fbc410 !important;
                    stroke: #fbc410;
                }

            .review-counter {
                position: absolute;
                bottom: 0;
                left: 0;
                right: 0;
                padding: 5px;
                background-color: #c62328;
                color: #f4f4f4;
                border-radius: 0 0 5px 5px;
            }

@media (min-width: 1580px) {
    li.item-review {
        width: calc(25% - 20px);
    }
}

@media (max-width: 768px) {
    .item-review {
        justify-content: flex-start;
        min-height: 0;
        padding-bottom: 45px;
    }
    li.item-review {
        width: calc(50% - 10px);
        min-width: 0;
    }
    li.item-review:nth-child(odd) {
        margin-left: 0 !important;
    }
    li.item-review:nth-child(even) {
        margin-right: 0 !important;
    }
    .icon-star {
        width: 14px;
        height: 14px;
    }
    .rating-note {
        font-size: 1.5em;
    }
    .review-logo {
        max-width: 100%;
    }
}</pre></body></html>